From 4e7689d446f9f748a5a818ffecaf8294117b01eb Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 16 Sep 2026 13:03:20 +0000 Subject: [PATCH] cfscript: support a new expression as a function-listener target (#98) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `threadName = new Query():function( result, error ) { … };`. That completes the eleven forms in Lucee's Function Listeners recipe; the other ten landed in #96 and #97. The +591 this issue was parked on had expired. It was measured when new_expression could complete on the bare keyword `new`; requiring its arguments — shipped separately — removed that, and the same widening then measured +14. A cost taken before a related change is not evidence about after it. What actually blocked it was precedence, not size. With the target widened, `new Foo()` before a contested `:` is either a listener target or a ternary consequence, and only an open `?` tells them apart. The rule shipped in #87 sits at prec.right('call', …), and 'call' binds tighter than 'ternary', so the listener reading won inside `c ? new Foo() : obj` and that ternary stopped parsing — the failure every earlier attempt hit, including the +260 variant that restricted the listener side to a function literal. So the `new` target is a second arm below 'ternary', with the conflict [$.expression, $.function_listener_expression] that tree-sitter generate asks for. Where a `?` is open the ternary wins; where none is, nothing competes for the colon. The call-target arm keeps 'call' and is untouched. +53 parse states (5315 -> 5368). Corpus 640 -> 638 error nodes across 121 -> 120 files, FunctionListener.cfc going to zero and nothing regressing. `npm run treediff` reports zero changed trees in both grammars. The conflict was benchmarked, as a declared conflict must be: cfscript +1.0% against untouched controls spanning 4.2 points (cfml +2.5%, cfquery -1.7%), so inside the noise floor. That is what the prefix predicts — the conflict is live on a new_expression followed by `:` and nowhere else. Both ternary controls, `c ? new Foo() : obj` and `isNull(o) ? new() : o`, are pinned by a corpus test alongside the construct, because they are what every earlier attempt broke. Probe cfscript/function_listener_new.cfc flips to pass. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_0117EvdX3EgLgDevVNrWZ5hr --- CHANGELOG.md | 11 + LIMITATIONS.md | 15 +- cfscript/grammar.js | 34 +- cfscript/src/grammar.json | 109 +- cfscript/src/node-types.json | 4 + cfscript/src/parser.c | 742251 ++++++++++++++------------- cfscript/test/corpus/cfscript.txt | 83 + docs/FAILING-PATTERNS.md | 14 +- docs/TODO.md | 8 + test/probes/expected.json | 2 +- 10 files changed, 374250 insertions(+), 368281 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1af8ef1..7336f8f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ ## [Unreleased] +### cfscript +- **Support a `new` expression as a function-listener target** — `threadName = new Query():function( result, error ) { … };` ([#98](https://github.com/cfmleditor/tree-sitter-cfml/issues/98), Lucee `FunctionListener.cfc`). That completes the eleven forms in Lucee's [Function Listeners](https://docs.lucee.org/recipes/function-listeners.html) recipe; the other ten landed in #96 and #97. **+53 parse states**, one declared conflict, corpus **640 → 638 error nodes across 121 → 120 files**, zero changed trees in both grammars. Probe `cfscript/function_listener_new.cfc` flips to `pass`. + + **The `+591` this issue was parked on had expired.** It was measured when `new_expression` could complete on the bare keyword `new`; requiring its `arguments` — shipped separately — removed that, and the same widening then measured **+14**. A cost taken before a related change is not evidence about after it, which is the transferable part. + + **What actually blocked it was precedence, not size.** With the target widened, `new Foo()` before a contested `:` is either a listener target or a ternary consequence, and only an open `?` tells them apart. The rule shipped in #87 sits at `prec.right('call', …)`, and `'call'` binds tighter than `'ternary'`, so the listener reading won inside `c ? new Foo() : obj` and that ternary stopped parsing — the failure every earlier attempt hit, including the +260 variant that restricted the listener side to a function literal. + + So the `new` target is a **second arm below `'ternary'`**, with the conflict `[$.expression, $.function_listener_expression]` that `tree-sitter generate` asks for. Where a `?` is open the ternary wins; where none is, nothing competes for the colon. The call-target arm keeps `'call'` and is untouched. + + **The conflict was benchmarked, as a declared conflict must be.** cfscript moved **+1.0%** against untouched controls spanning 4.2 points (cfml +2.5%, cfquery −1.7%) — inside the noise floor, which is what the prefix predicts: the conflict is live on a `new_expression` followed by `:` and nowhere else. Both ternary controls are pinned by corpus tests, because they are what every earlier attempt broke. + ### cfml - **Fix a `<` that opens a run of template text** — `<- back` as the first non-whitespace on its line, `[<< Go Back]` straight after a tag ([#114](https://github.com/cfmleditor/tree-sitter-cfml/issues/114), ContentBox `filelisting.cfm`). **Corpus 648 → 640 error nodes across 124 → 121 files**, no change to `STATE_COUNT` in either grammar (scanner-only; all three `parser.c` are byte-identical), and the tree-shape diff reports **zero** changed files. Probe `cfml/lt_at_line_start.cfm` added, beside the existing mid-line `lt_in_text.cfm`. diff --git a/LIMITATIONS.md b/LIMITATIONS.md index 623617db..973bfb44 100644 --- a/LIMITATIONS.md +++ b/LIMITATIONS.md @@ -161,20 +161,15 @@ assessment, including how many files each affects and what fixing it would cost. - **The `${ … }` ordered-struct literal** — `animals = ${ Aardwolf: "…", aardvark: "…" };` ([#80](https://github.com/cfmleditor/tree-sitter-cfml/issues/80)). Filed as "the bracket form parses, the brace form does not", but the bracket form only appears to: see the misparse above. Supporting `${ … }` properly means introducing a real ordered-struct rule and deciding what `$[ … ]` should produce at the same time, since a `$` that is currently an ordinary identifier would have to stop being one. That is a design decision rather than a missing `choice` arm, which is why it was left. - **A numeric struct key by dot notation in write position — fixed** ([#86](https://github.com/cfmleditor/tree-sitter-cfml/issues/86)). `myNumb.4 = "4";` now yields an ordinary `member_expression` assignment. Kept here because the *cause* is the reusable part, and neither the issue nor the earlier note here had it. It is not the property rule: `identifier` is a permissive negated character class that matches `4` and `4b` quite happily, which is why the read position always worked. It is the **number** token. `.4` is a legal leading-dot float — `x = .5` is real CFML, Mura writes `imageQuality=.95` and Lucee has a ticket (LDEV4480) about treating `.0` as a number — so as the longer match it out-lexed `.` followed by a property wherever a number was *also* valid. At a statement head the `tag_statement` reading keeps a number valid, which is the whole of the difference: `var myNumb.4 = 1` and `a.b.4 = 1` both parsed on master, because `var` and the first `.` each commit the parser and take the tag reading out of play. The fix splits the leading-dot form into its own token at `prec(-1)`, so `.` wins wherever `.` is valid and the float wins everywhere a number literal actually appears. **+8 parse states, no new conflicts.** Note this also fixed a silent misparse the issue never mentioned: `myNumb.4.5 = "x"` was error-free and wrong, reading `myNumb` as a *tag name* and `4.5` as a member expression of the number `4`. - **A statement followed by a tag island — fixed** ([#118](https://github.com/cfmleditor/tree-sitter-cfml/issues/118)). `thread name="x" { … }` then a ` ``` ` block (Lucee LDEV4157) parses, and so does every other statement in front of a fence. Kept here because the entry it replaces named the wrong construct. It was filed, and recorded here, as a `thread`-specific gap — "each parses on its own; only the combination fails" — and `thread` had nothing to do with it. The fence never fired the **automatic semicolon**: `scan_automatic_semicolon` in `cfscript/src/scanner.c` descends from the JavaScript scanner, where a backtick opens a template literal and so must *not* take a semicolon in front of it, and that case survived the port. CFScript has no template literal, and its only backtick is the fence of a tag island — a statement of its own, never a continuation. So anything relying on insertion in front of a fence came out `MISSING ";"`: `thread name="t" { … }`, `lock { … }`, and a bare `var q = queryNew( "col" )`, which is the separate probe `cfscript/cfml_template_after_bare_statement.cfc` — the same cause, recorded twice as two unrelated symptoms. Deleting the case is the whole fix: **no change to `STATE_COUNT`** (scanner-only, `parser.c` byte-identical), corpus **654 → 648 error nodes across 127 → 124 files**, and the tree-shape diff reports **zero** changed files in both grammars. `common/scanner.h` carries the same inherited case and is deliberately left alone: the `cfml`/`cfquery` grammars have no ` ``` ` rule at all, so there the backtick is unreachable rather than wrong. -- **Function-listener callback on a `new` *target*** — `threadName = new Query():function( result, error ) { … };` ([#98](https://github.com/cfmleditor/tree-sitter-cfml/issues/98), split out of [#87](https://github.com/cfmleditor/tree-sitter-cfml/issues/87); probe `cfscript/function_listener_new.cfc`). The last of the eleven forms in Lucee's [Function Listeners](https://docs.lucee.org/recipes/function-listeners.html) recipe (`since` 6.1) that does not parse. **Correction to the entry this replaces:** that one said a `new` on *either* side was unsupported. The listener side — `mySuccess():new component { … }` and its no-listener variant — now parses. It was worth separating, because the two halves are not remotely the same price: +- **Function-listener callback on a `new` *target* — fixed** ([#98](https://github.com/cfmleditor/tree-sitter-cfml/issues/98), split out of [#87](https://github.com/cfmleditor/tree-sitter-cfml/issues/87)). `threadName = new Query():function( result, error ) { … };` parses, completing the eleven forms in Lucee's [Function Listeners](https://docs.lucee.org/recipes/function-listeners.html) recipe. **+53 parse states**, one declared conflict, corpus 640 → 638, zero changed trees. - | side | form | cost | - |---|---|---| - | listener | `f():new component { … }` | **+27 parse states (+0.5%), no conflicts** — shipped | - | target | `new Query():f(){ … }` | **+591 parse states (+11.3%), 2 conflicts** — not shipped | - - **Correction, from measuring it properly:** the cost is *not* about which side of the colon the `new` sits on. That was the obvious reading and it is wrong. Two controls, measured from the rule as shipped: widening the target with `subscript_expression` costs **+46** states, widening it with `new_expression` costs **+591**, and widening it with a `new_expression` whose `arguments` are **required** costs **−2**. Widening the target is cheap. What is expensive is admitting a rule that can complete on a **bare keyword**: `new_expression` has both its constructor and its arguments optional, so `new` alone is already a complete expression, and putting that before a contested `:` makes every state that can precede a colon carry the `New`-as-label and `New`-as-property-name readings as well. Remove the self-completion and the whole 591 disappears. Rejected on the same basis as [#75](https://github.com/cfmleditor/tree-sitter-cfml/issues/75): 2 corpus nodes in one file, against +2.4 MB of committed C that every binding compiles. + **This entry's cost figures were all measured before the fix that made them obsolete**, and the history is worth keeping because it is a lesson about *when* a measurement expires. The `+591` recorded here was taken when `new_expression` could complete on the bare keyword; requiring its `arguments` (shipped separately) removed that, and the same widening then measured **+14**. A number from before a related change is not evidence about after it. - **Correction, and one of the four narrowings has now shipped.** This entry previously said that requiring `new_expression`'s `arguments` "changes how `new` *lexes*" so that `isNull(o) ? new() : o` reads its consequence as a `call_expression`. **That was wrong.** Requiring the arguments *on its own* keeps that ternary correct, takes **16 states out** of the table (5274 → 5258), prunes three stale conflicts, and fixes the `new.foo` misparse — it is shipped. What actually breaks the ternary is the **combination**: admitting `new_expression` as a listener *target* makes `new():y` a competing reading of `? new() : y`, and the constructor-less form loses. The blocker is an interaction between the two halves, not a property of either. + **What actually blocked it was never table size.** With the target widened, `new Foo()` before a contested `:` is either a listener target or a ternary consequence, and only an open `?` tells them apart — which is precisely what GLR carries. The rule as shipped in #87 sat at `prec.right('call', …)`, and `'call'` binds tighter than `'ternary'`, so the listener reading won inside `c ? new Foo() : obj` and that ternary stopped parsing. Every attempt recorded here failed the same way, including the +260 variant that restricted the listener side to a function literal. - That reframing also names why it is hard. A constructor-less `new( … )` is **real CFML** — a call to a user-defined function named `new`, as in Slatwall's `BaseDAO`/`BaseService` and RustCFML's own `test_new_udf_dispatch_and_null_call.cfm` — so both readings genuinely have to survive. The natural fix is a listener target that requires a constructor, and that **cannot generate**: it collides with `new_expression` at every `new (`, five interpretations of `'New' • '('`, the ambiguous-prefix shape the cost table warns about. `prec.dynamic` on the arguments at 1, 2 and 4 does not move it either. + **The fix is a second arm at a lower precedence**, below `'ternary'`, plus the conflict `[$.expression, $.function_listener_expression]` that `tree-sitter generate` asks for. Where a `?` is open the ternary wins; where none is, nothing competes for the colon and the listener wins. The call-target arm keeps `'call'` and is untouched. Both ternary controls — `c ? new Foo() : obj` and `isNull(o) ? new() : o` — are pinned by corpus tests, because they are what every earlier attempt broke. - The other narrowings still stand as recorded: requiring the constructor *as well* saves 70 of the 591 but breaks `new()` outright; and confining the whole listener rule to statement and assignment position — the trick that made script-syntax tag calls affordable — came out **worse** at +669, because the rule then has to be spelled at each site. + **Reserving `new` stays ruled out** for the reasons recorded before: 395 `.new(` call sites across 160 corpus files, and Lucee's documented reserved-word list is `null`, `true`, `false`. - **`savecontent` as an expression** — `greeting = savecontent { writeOutput("hi") };` ([#82](https://github.com/cfmleditor/tree-sitter-cfml/issues/82), 3 Lucee files). Attempted. The statement form has no `savecontent` rule at all — it goes through the generic `tag_statement` as an ordinary identifier — so an expression form needs a `keyword('Savecontent')`, and that is the trap this file's own "keyword extraction is lexical" section describes. Adding it generates cleanly and costs only 31 states, then breaks the *working* statement form and every ordinary use of the word: `savecontent = 1`, `x = savecontent`, `x = savecontent.foo` and `savecontent()` all become ERRORs, and `npm test` fails. A `_reserved_identifier` entry does not rescue it, because the keyword out-lexes the identifier before the parser can reach the fallback. The non-keyword alternative — admitting `identifier statement_block` as an expression — is far too broad, since it is live at every identifier followed by `{`. - **`function` as a bare value** — `h = function.foo;`. `function` is accepted as an assignable name (`admin ... function="" ...`) and as a property diff --git a/cfscript/grammar.js b/cfscript/grammar.js index 7c1087b5..5eb62b59 100644 --- a/cfscript/grammar.js +++ b/cfscript/grammar.js @@ -134,6 +134,13 @@ module.exports = grammar({ ], conflicts: ($) => [ + // `x = new Foo() : cb` against `c ? new Foo() : x` — a `new` expression + // before a contested `:` is a listener target or a ternary consequence, + // and only the presence of an open `?` settles it, which is exactly what + // GLR carries. Live on `new_expression` followed by `:` and nowhere else; + // the benchmark puts the cost inside the noise floor, with the two + // untouched grammars spanning more than the subject moved (#98). + [$.expression, $.function_listener_expression], [$.object, $.object_pattern], [$.primary_expression, $.pattern], [$.assignment_expression, $.pattern], @@ -1234,11 +1241,28 @@ module.exports = grammar({ // and far commoner reading, so it wins; nothing else reaches a state where // both survive, because the ternary's own `:` is required and the listener // reading leaves it dangling. - function_listener_expression: ($) => prec.dynamic(-1, prec.right('call', seq( - field('target', $.call_expression), - ':', - field('listener', choice($.primary_expression, $.new_expression)), - ))), + function_listener_expression: ($) => prec.dynamic(-1, choice( + prec.right('call', seq( + field('target', $.call_expression), + ':', + field('listener', choice($.primary_expression, $.new_expression)), + )), + // `threadName = new Query():function( … ) { … };` — a listener on a + // component instantiation, the last of the eleven forms in Lucee's + // Function Listeners recipe (#98). + // + // It is a SEPARATE arm from the call target above, and its precedence is + // the whole reason. At 'call' — the precedence the call-target arm uses, + // which binds tighter than 'ternary' — the listener reading wins inside + // `c ? new Foo() : obj` and that ternary stops parsing. Below 'ternary' + // the ternary wins where a `?` is open, and the listener still wins + // where there is none, because then nothing competes for the colon. + prec.right('elvis', seq( + field('target', $.new_expression), + ':', + field('listener', choice($.primary_expression, $.new_expression)), + )), + )), member_expression: $ => prec('member', seq( field('object', choice($.expression, $.primary_expression)), diff --git a/cfscript/src/grammar.json b/cfscript/src/grammar.json index 8c5e5080..6d39e4ec 100644 --- a/cfscript/src/grammar.json +++ b/cfscript/src/grammar.json @@ -4025,42 +4025,85 @@ "type": "PREC_DYNAMIC", "value": -1, "content": { - "type": "PREC_RIGHT", - "value": "call", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "target", - "content": { - "type": "SYMBOL", - "name": "call_expression" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "listener", - "content": { - "type": "CHOICE", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "PREC_RIGHT", + "value": "call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "target", + "content": { "type": "SYMBOL", - "name": "primary_expression" - }, - { + "name": "call_expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "listener", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "new_expression" + } + ] + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": "elvis", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "target", + "content": { "type": "SYMBOL", "name": "new_expression" } - ] - } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "listener", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "new_expression" + } + ] + } + } + ] } - ] - } + } + ] } }, "member_expression": { @@ -10007,6 +10050,10 @@ } ], "conflicts": [ + [ + "expression", + "function_listener_expression" + ], [ "object", "object_pattern" diff --git a/cfscript/src/node-types.json b/cfscript/src/node-types.json index 3f9cf90d..dcfa995c 100644 --- a/cfscript/src/node-types.json +++ b/cfscript/src/node-types.json @@ -1641,6 +1641,10 @@ { "type": "call_expression", "named": true + }, + { + "type": "new_expression", + "named": true } ] } diff --git a/cfscript/src/parser.c b/cfscript/src/parser.c index ce0ab0aa..eb4a53bd 100644 --- a/cfscript/src/parser.c +++ b/cfscript/src/parser.c @@ -15,8 +15,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5315 -#define LARGE_STATE_COUNT 3821 +#define STATE_COUNT 5368 +#define LARGE_STATE_COUNT 3874 #define SYMBOL_COUNT 447 #define ALIAS_COUNT 6 #define TOKEN_COUNT 290 @@ -4033,230 +4033,230 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [61] = 54, [62] = 54, [63] = 63, - [64] = 64, + [64] = 63, [65] = 63, [66] = 63, [67] = 63, - [68] = 63, + [68] = 68, [69] = 63, [70] = 63, [71] = 71, - [72] = 72, - [73] = 73, + [72] = 63, + [73] = 63, [74] = 74, - [75] = 63, - [76] = 63, + [75] = 75, + [76] = 76, [77] = 77, - [78] = 77, - [79] = 79, - [80] = 80, - [81] = 80, + [78] = 78, + [79] = 77, + [80] = 78, + [81] = 81, [82] = 77, - [83] = 79, - [84] = 80, - [85] = 77, - [86] = 79, - [87] = 79, - [88] = 79, - [89] = 80, - [90] = 77, - [91] = 79, - [92] = 92, - [93] = 80, - [94] = 80, - [95] = 77, - [96] = 79, - [97] = 80, - [98] = 98, - [99] = 77, - [100] = 80, - [101] = 77, - [102] = 79, + [83] = 78, + [84] = 77, + [85] = 78, + [86] = 81, + [87] = 78, + [88] = 81, + [89] = 77, + [90] = 78, + [91] = 81, + [92] = 78, + [93] = 81, + [94] = 77, + [95] = 78, + [96] = 81, + [97] = 81, + [98] = 78, + [99] = 81, + [100] = 100, + [101] = 101, + [102] = 102, [103] = 77, - [104] = 79, - [105] = 105, - [106] = 79, + [104] = 78, + [105] = 81, + [106] = 77, [107] = 77, - [108] = 80, + [108] = 81, [109] = 109, - [110] = 110, - [111] = 111, - [112] = 111, + [110] = 109, + [111] = 109, + [112] = 112, [113] = 109, - [114] = 109, - [115] = 115, - [116] = 111, - [117] = 111, - [118] = 118, - [119] = 111, - [120] = 120, - [121] = 120, - [122] = 111, - [123] = 111, - [124] = 120, - [125] = 111, - [126] = 126, - [127] = 111, + [114] = 114, + [115] = 112, + [116] = 116, + [117] = 112, + [118] = 109, + [119] = 119, + [120] = 119, + [121] = 121, + [122] = 109, + [123] = 119, + [124] = 109, + [125] = 109, + [126] = 109, + [127] = 109, [128] = 128, [129] = 129, - [130] = 111, - [131] = 131, + [130] = 130, + [131] = 130, [132] = 132, - [133] = 111, - [134] = 111, - [135] = 128, - [136] = 111, - [137] = 128, - [138] = 111, - [139] = 139, - [140] = 111, + [133] = 109, + [134] = 109, + [135] = 109, + [136] = 130, + [137] = 109, + [138] = 138, + [139] = 109, + [140] = 140, [141] = 141, - [142] = 142, + [142] = 109, [143] = 143, - [144] = 111, - [145] = 111, - [146] = 146, - [147] = 131, - [148] = 146, - [149] = 111, - [150] = 143, - [151] = 143, - [152] = 111, - [153] = 115, - [154] = 111, - [155] = 143, - [156] = 111, - [157] = 157, - [158] = 111, - [159] = 157, - [160] = 111, - [161] = 111, - [162] = 111, - [163] = 111, - [164] = 111, - [165] = 111, - [166] = 111, - [167] = 111, - [168] = 157, + [144] = 143, + [145] = 109, + [146] = 116, + [147] = 109, + [148] = 143, + [149] = 109, + [150] = 109, + [151] = 109, + [152] = 152, + [153] = 109, + [154] = 154, + [155] = 109, + [156] = 156, + [157] = 109, + [158] = 143, + [159] = 152, + [160] = 140, + [161] = 109, + [162] = 109, + [163] = 109, + [164] = 109, + [165] = 109, + [166] = 109, + [167] = 138, + [168] = 152, [169] = 169, - [170] = 170, - [171] = 169, + [170] = 169, + [171] = 171, [172] = 169, - [173] = 170, + [173] = 171, [174] = 169, - [175] = 146, - [176] = 169, - [177] = 170, - [178] = 146, - [179] = 169, - [180] = 180, + [175] = 171, + [176] = 176, + [177] = 140, + [178] = 169, + [179] = 171, + [180] = 171, [181] = 169, - [182] = 146, - [183] = 169, - [184] = 169, - [185] = 169, - [186] = 169, - [187] = 170, - [188] = 169, - [189] = 170, - [190] = 169, - [191] = 180, - [192] = 146, - [193] = 180, - [194] = 169, - [195] = 169, - [196] = 170, - [197] = 180, - [198] = 169, - [199] = 169, - [200] = 111, - [201] = 111, - [202] = 111, - [203] = 111, - [204] = 111, - [205] = 111, - [206] = 111, - [207] = 111, + [182] = 176, + [183] = 171, + [184] = 171, + [185] = 140, + [186] = 171, + [187] = 171, + [188] = 171, + [189] = 140, + [190] = 140, + [191] = 171, + [192] = 171, + [193] = 176, + [194] = 171, + [195] = 171, + [196] = 171, + [197] = 171, + [198] = 176, + [199] = 171, + [200] = 109, + [201] = 109, + [202] = 109, + [203] = 109, + [204] = 109, + [205] = 109, + [206] = 109, + [207] = 109, [208] = 208, [209] = 209, - [210] = 210, - [211] = 211, + [210] = 109, + [211] = 109, [212] = 212, - [213] = 111, + [213] = 116, [214] = 214, [215] = 215, - [216] = 208, + [216] = 216, [217] = 217, - [218] = 218, - [219] = 219, + [218] = 109, + [219] = 109, [220] = 220, - [221] = 221, - [222] = 222, + [221] = 109, + [222] = 220, [223] = 223, - [224] = 224, - [225] = 209, - [226] = 111, - [227] = 211, - [228] = 212, - [229] = 214, - [230] = 209, - [231] = 231, - [232] = 217, - [233] = 218, - [234] = 219, - [235] = 111, - [236] = 111, - [237] = 220, - [238] = 221, - [239] = 222, - [240] = 223, - [241] = 224, - [242] = 208, - [243] = 243, + [224] = 215, + [225] = 225, + [226] = 226, + [227] = 209, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 220, + [232] = 232, + [233] = 215, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 223, + [238] = 238, + [239] = 220, + [240] = 215, + [241] = 214, + [242] = 232, + [243] = 208, [244] = 244, - [245] = 215, - [246] = 246, - [247] = 115, - [248] = 244, - [249] = 218, - [250] = 243, - [251] = 111, - [252] = 111, - [253] = 215, - [254] = 219, - [255] = 111, - [256] = 220, - [257] = 212, - [258] = 111, - [259] = 210, - [260] = 243, - [261] = 221, - [262] = 111, - [263] = 263, - [264] = 222, - [265] = 111, - [266] = 223, - [267] = 211, - [268] = 244, - [269] = 224, - [270] = 244, - [271] = 115, - [272] = 210, - [273] = 215, - [274] = 111, - [275] = 214, - [276] = 276, - [277] = 217, - [278] = 278, - [279] = 115, - [280] = 263, - [281] = 115, - [282] = 276, - [283] = 246, - [284] = 115, - [285] = 231, - [286] = 278, - [287] = 115, + [245] = 109, + [246] = 225, + [247] = 226, + [248] = 228, + [249] = 229, + [250] = 230, + [251] = 234, + [252] = 235, + [253] = 236, + [254] = 238, + [255] = 214, + [256] = 109, + [257] = 232, + [258] = 208, + [259] = 244, + [260] = 244, + [261] = 261, + [262] = 225, + [263] = 226, + [264] = 228, + [265] = 229, + [266] = 230, + [267] = 234, + [268] = 235, + [269] = 236, + [270] = 238, + [271] = 109, + [272] = 223, + [273] = 109, + [274] = 109, + [275] = 209, + [276] = 109, + [277] = 116, + [278] = 116, + [279] = 279, + [280] = 261, + [281] = 116, + [282] = 212, + [283] = 216, + [284] = 217, + [285] = 116, + [286] = 116, + [287] = 279, [288] = 288, [289] = 288, [290] = 288, @@ -4279,8 +4279,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [307] = 307, [308] = 308, [309] = 309, - [310] = 309, - [311] = 311, + [310] = 310, + [311] = 310, [312] = 312, [313] = 313, [314] = 313, @@ -4289,19 +4289,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [317] = 317, [318] = 318, [319] = 319, - [320] = 320, - [321] = 317, - [322] = 318, - [323] = 323, + [320] = 318, + [321] = 321, + [322] = 322, + [323] = 317, [324] = 319, [325] = 325, [326] = 325, [327] = 325, [328] = 325, - [329] = 325, + [329] = 329, [330] = 325, [331] = 325, - [332] = 332, + [332] = 325, [333] = 333, [334] = 334, [335] = 335, @@ -4309,169 +4309,169 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [337] = 337, [338] = 338, [339] = 339, - [340] = 340, + [340] = 339, [341] = 341, - [342] = 341, + [342] = 342, [343] = 343, [344] = 344, - [345] = 344, + [345] = 345, [346] = 346, - [347] = 341, - [348] = 348, + [347] = 334, + [348] = 335, [349] = 349, - [350] = 332, - [351] = 351, - [352] = 339, - [353] = 343, - [354] = 346, - [355] = 355, + [350] = 350, + [351] = 346, + [352] = 333, + [353] = 338, + [354] = 342, + [355] = 334, [356] = 335, - [357] = 344, - [358] = 348, - [359] = 349, - [360] = 332, - [361] = 351, - [362] = 339, - [363] = 343, - [364] = 346, - [365] = 355, - [366] = 335, - [367] = 348, - [368] = 349, - [369] = 355, - [370] = 338, - [371] = 371, + [357] = 336, + [358] = 337, + [359] = 338, + [360] = 339, + [361] = 361, + [362] = 362, + [363] = 361, + [364] = 336, + [365] = 346, + [366] = 366, + [367] = 333, + [368] = 368, + [369] = 369, + [370] = 349, + [371] = 337, [372] = 372, [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 351, + [374] = 349, + [375] = 368, + [376] = 342, + [377] = 368, [378] = 378, [379] = 379, [380] = 380, [381] = 381, [382] = 382, [383] = 317, - [384] = 318, - [385] = 319, - [386] = 317, - [387] = 318, + [384] = 317, + [385] = 318, + [386] = 318, + [387] = 319, [388] = 319, - [389] = 334, - [390] = 340, - [391] = 391, - [392] = 392, - [393] = 337, - [394] = 333, - [395] = 338, - [396] = 391, - [397] = 397, - [398] = 373, - [399] = 391, - [400] = 372, - [401] = 374, - [402] = 391, - [403] = 336, - [404] = 391, - [405] = 375, - [406] = 391, - [407] = 391, - [408] = 391, - [409] = 376, - [410] = 392, - [411] = 338, - [412] = 391, - [413] = 371, - [414] = 392, + [389] = 329, + [390] = 361, + [391] = 373, + [392] = 341, + [393] = 343, + [394] = 394, + [395] = 345, + [396] = 362, + [397] = 366, + [398] = 394, + [399] = 344, + [400] = 369, + [401] = 394, + [402] = 402, + [403] = 372, + [404] = 394, + [405] = 402, + [406] = 394, + [407] = 407, + [408] = 394, + [409] = 394, + [410] = 350, + [411] = 402, + [412] = 361, + [413] = 394, + [414] = 394, [415] = 415, [416] = 416, [417] = 417, - [418] = 418, - [419] = 263, + [418] = 212, + [419] = 419, [420] = 420, - [421] = 276, - [422] = 422, - [423] = 420, + [421] = 421, + [422] = 421, + [423] = 423, [424] = 424, - [425] = 420, - [426] = 420, - [427] = 420, - [428] = 428, - [429] = 420, - [430] = 430, - [431] = 431, + [425] = 415, + [426] = 421, + [427] = 427, + [428] = 421, + [429] = 421, + [430] = 421, + [431] = 421, [432] = 432, - [433] = 420, - [434] = 415, - [435] = 416, + [433] = 416, + [434] = 421, + [435] = 421, [436] = 436, - [437] = 420, - [438] = 420, - [439] = 246, - [440] = 440, + [437] = 437, + [438] = 216, + [439] = 439, + [440] = 217, [441] = 417, [442] = 442, - [443] = 263, + [443] = 443, [444] = 444, [445] = 445, [446] = 446, [447] = 447, [448] = 448, [449] = 449, - [450] = 450, + [450] = 419, [451] = 451, [452] = 452, - [453] = 451, + [453] = 453, [454] = 454, [455] = 455, [456] = 456, - [457] = 418, + [457] = 457, [458] = 458, [459] = 459, - [460] = 448, - [461] = 461, + [460] = 460, + [461] = 212, [462] = 462, [463] = 463, [464] = 464, [465] = 465, - [466] = 466, - [467] = 432, + [466] = 456, + [467] = 467, [468] = 468, [469] = 469, - [470] = 470, + [470] = 462, [471] = 471, [472] = 472, [473] = 473, [474] = 474, [475] = 475, [476] = 476, - [477] = 428, + [477] = 477, [478] = 478, [479] = 479, - [480] = 480, + [480] = 427, [481] = 481, - [482] = 263, - [483] = 115, + [482] = 482, + [483] = 483, [484] = 484, - [485] = 485, + [485] = 432, [486] = 486, [487] = 487, - [488] = 488, + [488] = 423, [489] = 489, [490] = 490, - [491] = 276, - [492] = 468, - [493] = 246, - [494] = 424, - [495] = 478, - [496] = 479, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, [497] = 497, [498] = 498, [499] = 499, - [500] = 500, + [500] = 212, [501] = 501, - [502] = 502, + [502] = 116, [503] = 503, [504] = 504, [505] = 505, @@ -4479,12 +4479,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [507] = 507, [508] = 508, [509] = 509, - [510] = 422, + [510] = 510, [511] = 511, - [512] = 512, + [512] = 217, [513] = 513, [514] = 514, - [515] = 431, + [515] = 515, [516] = 516, [517] = 517, [518] = 518, @@ -4494,48 +4494,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [522] = 522, [523] = 523, [524] = 524, - [525] = 436, + [525] = 216, [526] = 526, [527] = 527, [528] = 528, [529] = 529, [530] = 530, [531] = 531, - [532] = 276, + [532] = 532, [533] = 533, - [534] = 534, - [535] = 535, + [534] = 216, + [535] = 217, [536] = 536, [537] = 537, [538] = 538, [539] = 539, [540] = 540, - [541] = 541, - [542] = 542, + [541] = 491, + [542] = 492, [543] = 543, [544] = 544, - [545] = 545, + [545] = 436, [546] = 546, [547] = 547, [548] = 548, [549] = 549, - [550] = 246, + [550] = 439, [551] = 551, - [552] = 430, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, + [552] = 552, + [553] = 420, + [554] = 424, + [555] = 528, + [556] = 437, [557] = 557, - [558] = 263, - [559] = 337, - [560] = 440, + [558] = 558, + [559] = 559, + [560] = 560, [561] = 561, - [562] = 263, + [562] = 562, [563] = 563, [564] = 564, - [565] = 565, - [566] = 566, + [565] = 419, + [566] = 212, [567] = 567, [568] = 568, [569] = 569, @@ -4546,33 +4546,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [574] = 574, [575] = 575, [576] = 576, - [577] = 418, - [578] = 276, - [579] = 246, - [580] = 580, - [581] = 567, - [582] = 582, - [583] = 583, - [584] = 584, + [577] = 571, + [578] = 578, + [579] = 579, + [580] = 212, + [581] = 581, + [582] = 344, + [583] = 216, + [584] = 217, [585] = 585, [586] = 586, [587] = 587, [588] = 588, - [589] = 462, + [589] = 589, [590] = 590, [591] = 591, [592] = 592, [593] = 593, - [594] = 442, - [595] = 454, + [594] = 594, + [595] = 595, [596] = 596, - [597] = 475, + [597] = 597, [598] = 598, [599] = 599, - [600] = 450, + [600] = 600, [601] = 601, - [602] = 452, - [603] = 451, + [602] = 602, + [603] = 603, [604] = 604, [605] = 605, [606] = 606, @@ -4590,31 +4590,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [618] = 618, [619] = 619, [620] = 620, - [621] = 456, + [621] = 621, [622] = 622, [623] = 623, [624] = 624, - [625] = 276, + [625] = 625, [626] = 626, [627] = 627, [628] = 628, [629] = 629, [630] = 630, - [631] = 459, + [631] = 631, [632] = 632, [633] = 633, [634] = 634, [635] = 635, - [636] = 458, + [636] = 427, [637] = 637, [638] = 638, - [639] = 444, + [639] = 639, [640] = 640, [641] = 641, [642] = 642, [643] = 643, [644] = 644, - [645] = 445, + [645] = 645, [646] = 646, [647] = 647, [648] = 648, @@ -4630,376 +4630,376 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [658] = 658, [659] = 659, [660] = 660, - [661] = 464, - [662] = 447, + [661] = 661, + [662] = 662, [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 449, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 246, - [676] = 451, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 470, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 448, - [686] = 686, - [687] = 463, - [688] = 688, - [689] = 263, - [690] = 465, - [691] = 422, - [692] = 455, - [693] = 115, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 446, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, + [664] = 463, + [665] = 464, + [666] = 454, + [667] = 460, + [668] = 467, + [669] = 469, + [670] = 462, + [671] = 471, + [672] = 472, + [673] = 216, + [674] = 474, + [675] = 458, + [676] = 442, + [677] = 476, + [678] = 452, + [679] = 453, + [680] = 477, + [681] = 459, + [682] = 217, + [683] = 444, + [684] = 446, + [685] = 456, + [686] = 457, + [687] = 465, + [688] = 473, + [689] = 475, + [690] = 455, + [691] = 447, + [692] = 448, + [693] = 449, + [694] = 451, + [695] = 454, + [696] = 460, + [697] = 462, + [698] = 456, + [699] = 443, + [700] = 212, + [701] = 445, + [702] = 116, + [703] = 468, [704] = 704, [705] = 705, [706] = 706, - [707] = 461, - [708] = 448, + [707] = 707, + [708] = 708, [709] = 709, [710] = 710, [711] = 711, [712] = 712, [713] = 713, - [714] = 542, - [715] = 469, - [716] = 512, - [717] = 521, - [718] = 522, - [719] = 544, - [720] = 499, - [721] = 488, - [722] = 545, - [723] = 547, - [724] = 548, - [725] = 526, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 725, [726] = 726, - [727] = 523, - [728] = 534, - [729] = 497, - [730] = 527, - [731] = 551, - [732] = 475, - [733] = 489, - [734] = 514, - [735] = 528, - [736] = 537, - [737] = 529, - [738] = 517, - [739] = 484, - [740] = 538, - [741] = 500, - [742] = 501, - [743] = 498, - [744] = 476, - [745] = 480, - [746] = 502, - [747] = 503, - [748] = 486, - [749] = 504, - [750] = 506, - [751] = 470, - [752] = 507, - [753] = 485, - [754] = 530, - [755] = 508, - [756] = 516, - [757] = 509, - [758] = 540, - [759] = 478, - [760] = 546, - [761] = 549, - [762] = 543, - [763] = 531, - [764] = 524, - [765] = 541, - [766] = 533, - [767] = 479, - [768] = 468, - [769] = 518, - [770] = 511, - [771] = 474, - [772] = 276, - [773] = 246, - [774] = 466, - [775] = 490, - [776] = 513, - [777] = 471, - [778] = 472, - [779] = 473, - [780] = 519, - [781] = 520, - [782] = 535, - [783] = 487, - [784] = 478, + [727] = 727, + [728] = 728, + [729] = 217, + [730] = 497, + [731] = 499, + [732] = 501, + [733] = 503, + [734] = 504, + [735] = 505, + [736] = 506, + [737] = 518, + [738] = 519, + [739] = 520, + [740] = 521, + [741] = 522, + [742] = 523, + [743] = 524, + [744] = 539, + [745] = 530, + [746] = 486, + [747] = 547, + [748] = 478, + [749] = 481, + [750] = 498, + [751] = 552, + [752] = 511, + [753] = 532, + [754] = 533, + [755] = 536, + [756] = 538, + [757] = 540, + [758] = 543, + [759] = 491, + [760] = 492, + [761] = 528, + [762] = 513, + [763] = 544, + [764] = 496, + [765] = 549, + [766] = 507, + [767] = 508, + [768] = 216, + [769] = 491, + [770] = 492, + [771] = 528, + [772] = 483, + [773] = 514, + [774] = 774, + [775] = 515, + [776] = 551, + [777] = 490, + [778] = 494, + [779] = 529, + [780] = 484, + [781] = 531, + [782] = 516, + [783] = 517, + [784] = 548, [785] = 479, - [786] = 468, - [787] = 536, - [788] = 539, - [789] = 570, - [790] = 263, - [791] = 276, - [792] = 418, - [793] = 573, - [794] = 337, + [786] = 487, + [787] = 493, + [788] = 495, + [789] = 509, + [790] = 510, + [791] = 526, + [792] = 527, + [793] = 537, + [794] = 546, [795] = 568, - [796] = 575, - [797] = 569, - [798] = 574, - [799] = 580, - [800] = 564, - [801] = 561, - [802] = 571, - [803] = 576, - [804] = 566, - [805] = 565, - [806] = 572, - [807] = 263, - [808] = 563, - [809] = 246, - [810] = 606, - [811] = 706, - [812] = 582, - [813] = 615, - [814] = 616, - [815] = 617, - [816] = 583, - [817] = 619, - [818] = 620, - [819] = 622, - [820] = 246, - [821] = 623, - [822] = 624, - [823] = 475, - [824] = 684, - [825] = 627, - [826] = 584, - [827] = 585, - [828] = 628, - [829] = 592, - [830] = 601, - [831] = 618, - [832] = 626, - [833] = 629, - [834] = 586, - [835] = 630, - [836] = 632, - [837] = 587, - [838] = 634, - [839] = 635, - [840] = 637, - [841] = 638, - [842] = 698, - [843] = 640, - [844] = 641, - [845] = 642, - [846] = 658, - [847] = 696, - [848] = 643, - [849] = 644, - [850] = 646, - [851] = 647, - [852] = 648, - [853] = 649, - [854] = 590, - [855] = 650, - [856] = 683, - [857] = 651, - [858] = 652, - [859] = 653, - [860] = 422, - [861] = 713, - [862] = 655, - [863] = 656, - [864] = 657, - [865] = 659, - [866] = 705, - [867] = 663, - [868] = 664, - [869] = 665, - [870] = 666, - [871] = 667, - [872] = 668, - [873] = 669, - [874] = 670, - [875] = 672, - [876] = 673, - [877] = 674, - [878] = 677, - [879] = 678, - [880] = 679, - [881] = 680, - [882] = 682, - [883] = 596, - [884] = 598, - [885] = 700, - [886] = 701, - [887] = 702, - [888] = 704, - [889] = 695, - [890] = 614, - [891] = 633, - [892] = 699, - [893] = 588, - [894] = 711, - [895] = 591, - [896] = 593, - [897] = 686, - [898] = 688, - [899] = 694, - [900] = 276, - [901] = 709, - [902] = 710, - [903] = 599, - [904] = 604, - [905] = 605, - [906] = 607, - [907] = 613, - [908] = 654, - [909] = 608, - [910] = 609, - [911] = 610, - [912] = 470, - [913] = 611, - [914] = 703, - [915] = 612, - [916] = 712, - [917] = 660, - [918] = 918, - [919] = 919, - [920] = 918, - [921] = 919, - [922] = 918, - [923] = 919, - [924] = 919, - [925] = 918, - [926] = 918, - [927] = 918, - [928] = 918, - [929] = 918, - [930] = 918, - [931] = 918, - [932] = 918, - [933] = 918, - [934] = 918, - [935] = 918, - [936] = 918, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 941, - [944] = 941, + [796] = 569, + [797] = 564, + [798] = 581, + [799] = 570, + [800] = 562, + [801] = 573, + [802] = 212, + [803] = 419, + [804] = 217, + [805] = 567, + [806] = 212, + [807] = 575, + [808] = 576, + [809] = 578, + [810] = 579, + [811] = 344, + [812] = 563, + [813] = 216, + [814] = 574, + [815] = 572, + [816] = 590, + [817] = 591, + [818] = 652, + [819] = 653, + [820] = 654, + [821] = 655, + [822] = 592, + [823] = 593, + [824] = 594, + [825] = 586, + [826] = 712, + [827] = 595, + [828] = 596, + [829] = 597, + [830] = 598, + [831] = 659, + [832] = 216, + [833] = 634, + [834] = 587, + [835] = 589, + [836] = 588, + [837] = 599, + [838] = 460, + [839] = 217, + [840] = 707, + [841] = 607, + [842] = 600, + [843] = 715, + [844] = 608, + [845] = 648, + [846] = 661, + [847] = 716, + [848] = 609, + [849] = 610, + [850] = 611, + [851] = 612, + [852] = 601, + [853] = 662, + [854] = 663, + [855] = 602, + [856] = 613, + [857] = 614, + [858] = 615, + [859] = 708, + [860] = 616, + [861] = 717, + [862] = 617, + [863] = 718, + [864] = 719, + [865] = 603, + [866] = 618, + [867] = 619, + [868] = 620, + [869] = 621, + [870] = 427, + [871] = 714, + [872] = 623, + [873] = 624, + [874] = 709, + [875] = 625, + [876] = 626, + [877] = 627, + [878] = 604, + [879] = 628, + [880] = 710, + [881] = 629, + [882] = 630, + [883] = 631, + [884] = 632, + [885] = 605, + [886] = 633, + [887] = 711, + [888] = 720, + [889] = 721, + [890] = 722, + [891] = 454, + [892] = 637, + [893] = 638, + [894] = 639, + [895] = 641, + [896] = 643, + [897] = 644, + [898] = 645, + [899] = 646, + [900] = 647, + [901] = 649, + [902] = 650, + [903] = 651, + [904] = 656, + [905] = 657, + [906] = 658, + [907] = 723, + [908] = 660, + [909] = 728, + [910] = 640, + [911] = 706, + [912] = 724, + [913] = 606, + [914] = 725, + [915] = 585, + [916] = 705, + [917] = 642, + [918] = 726, + [919] = 727, + [920] = 704, + [921] = 635, + [922] = 713, + [923] = 622, + [924] = 924, + [925] = 925, + [926] = 924, + [927] = 924, + [928] = 925, + [929] = 924, + [930] = 924, + [931] = 924, + [932] = 924, + [933] = 924, + [934] = 924, + [935] = 924, + [936] = 925, + [937] = 924, + [938] = 924, + [939] = 924, + [940] = 924, + [941] = 925, + [942] = 924, + [943] = 943, + [944] = 944, [945] = 945, - [946] = 941, - [947] = 941, + [946] = 945, + [947] = 945, [948] = 948, - [949] = 941, - [950] = 941, - [951] = 941, + [949] = 949, + [950] = 950, + [951] = 945, [952] = 952, [953] = 953, - [954] = 948, - [955] = 948, + [954] = 954, + [955] = 945, [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 957, - [963] = 957, - [964] = 959, - [965] = 956, + [957] = 953, + [958] = 945, + [959] = 945, + [960] = 945, + [961] = 953, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 965, [966] = 966, - [967] = 959, + [967] = 967, [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 973, + [969] = 967, + [970] = 967, + [971] = 963, + [972] = 963, + [973] = 962, [974] = 974, [975] = 975, - [976] = 969, - [977] = 975, - [978] = 971, - [979] = 969, + [976] = 976, + [977] = 977, + [978] = 974, + [979] = 979, [980] = 975, [981] = 981, [982] = 982, - [983] = 970, - [984] = 968, - [985] = 973, - [986] = 974, - [987] = 971, - [988] = 972, - [989] = 982, - [990] = 970, - [991] = 968, - [992] = 972, - [993] = 973, + [983] = 976, + [984] = 984, + [985] = 985, + [986] = 985, + [987] = 987, + [988] = 984, + [989] = 985, + [990] = 979, + [991] = 981, + [992] = 982, + [993] = 977, [994] = 974, - [995] = 982, - [996] = 699, - [997] = 633, - [998] = 711, - [999] = 999, - [1000] = 1000, - [1001] = 591, - [1002] = 999, - [1003] = 694, - [1004] = 695, + [995] = 979, + [996] = 975, + [997] = 981, + [998] = 982, + [999] = 976, + [1000] = 984, + [1001] = 977, + [1002] = 656, + [1003] = 1003, + [1004] = 1004, [1005] = 1005, - [1006] = 1006, - [1007] = 686, - [1008] = 700, - [1009] = 704, - [1010] = 701, - [1011] = 702, - [1012] = 1000, - [1013] = 593, - [1014] = 709, - [1015] = 710, - [1016] = 1000, - [1017] = 688, - [1018] = 1000, - [1019] = 1019, - [1020] = 999, - [1021] = 588, - [1022] = 1022, - [1023] = 1023, - [1024] = 614, - [1025] = 1025, - [1026] = 1026, - [1027] = 1027, + [1006] = 657, + [1007] = 646, + [1008] = 1008, + [1009] = 647, + [1010] = 644, + [1011] = 1011, + [1012] = 637, + [1013] = 638, + [1014] = 639, + [1015] = 650, + [1016] = 1004, + [1017] = 1008, + [1018] = 1018, + [1019] = 660, + [1020] = 651, + [1021] = 728, + [1022] = 641, + [1023] = 1008, + [1024] = 649, + [1025] = 658, + [1026] = 645, + [1027] = 643, [1028] = 1028, - [1029] = 1029, - [1030] = 1030, + [1029] = 1004, + [1030] = 1008, [1031] = 1031, [1032] = 1032, [1033] = 1033, @@ -5025,7 +5025,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1053] = 1053, [1054] = 1054, [1055] = 1055, - [1056] = 1056, + [1056] = 1035, [1057] = 1057, [1058] = 1058, [1059] = 1059, @@ -5062,7 +5062,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1090] = 1090, [1091] = 1091, [1092] = 1092, - [1093] = 1093, + [1093] = 1057, [1094] = 1094, [1095] = 1095, [1096] = 1096, @@ -5106,4184 +5106,4237 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 1137, + [1137] = 1035, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, - [1142] = 1138, + [1142] = 1142, [1143] = 1143, - [1144] = 1138, - [1145] = 1143, - [1146] = 1143, - [1147] = 1138, - [1148] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, [1149] = 1149, - [1150] = 1150, + [1150] = 1057, [1151] = 1151, [1152] = 1152, - [1153] = 337, + [1153] = 1095, [1154] = 1154, [1155] = 1155, [1156] = 1156, - [1157] = 1157, - [1158] = 1158, + [1157] = 1035, + [1158] = 1057, [1159] = 1159, [1160] = 1160, - [1161] = 1151, + [1161] = 1161, [1162] = 1162, [1163] = 1163, [1164] = 1164, [1165] = 1165, - [1166] = 1151, - [1167] = 1167, + [1166] = 1166, + [1167] = 344, [1168] = 1168, - [1169] = 1169, + [1169] = 1095, [1170] = 1170, [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 1174, - [1177] = 1175, + [1176] = 1176, + [1177] = 1177, [1178] = 1178, - [1179] = 1174, - [1180] = 1175, - [1181] = 1181, - [1182] = 1182, - [1183] = 1172, - [1184] = 1173, - [1185] = 1181, - [1186] = 1186, - [1187] = 1182, - [1188] = 1178, - [1189] = 1172, - [1190] = 1173, - [1191] = 1186, - [1192] = 1181, - [1193] = 1186, - [1194] = 1182, - [1195] = 1178, - [1196] = 1173, - [1197] = 1181, - [1198] = 1182, - [1199] = 1178, - [1200] = 1181, - [1201] = 1182, - [1202] = 1178, - [1203] = 1181, - [1204] = 1182, - [1205] = 1178, - [1206] = 1181, - [1207] = 1182, - [1208] = 1178, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, + [1179] = 1179, + [1180] = 1180, + [1181] = 1178, + [1182] = 1179, + [1183] = 1180, + [1184] = 1184, + [1185] = 1185, + [1186] = 1179, + [1187] = 1180, + [1188] = 1188, + [1189] = 1189, + [1190] = 1184, + [1191] = 1191, + [1192] = 1188, + [1193] = 1185, + [1194] = 1189, + [1195] = 1184, + [1196] = 1191, + [1197] = 1188, + [1198] = 1185, + [1199] = 1189, + [1200] = 1178, + [1201] = 1184, + [1202] = 1191, + [1203] = 1185, + [1204] = 1189, + [1205] = 1191, + [1206] = 1185, + [1207] = 1189, + [1208] = 1191, + [1209] = 1191, + [1210] = 1185, + [1211] = 1189, + [1212] = 1191, + [1213] = 1185, + [1214] = 1189, [1215] = 1215, - [1216] = 1215, + [1216] = 1216, [1217] = 1217, [1218] = 1218, - [1219] = 1211, - [1220] = 1213, - [1221] = 1214, - [1222] = 1215, - [1223] = 1223, - [1224] = 1211, - [1225] = 1213, - [1226] = 1214, - [1227] = 1215, - [1228] = 1212, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1218, + [1224] = 1224, + [1225] = 1217, + [1226] = 1218, + [1227] = 1219, + [1228] = 1217, [1229] = 1229, - [1230] = 1211, - [1231] = 1213, - [1232] = 1214, - [1233] = 1215, - [1234] = 1234, - [1235] = 1229, - [1236] = 1236, + [1230] = 1221, + [1231] = 1224, + [1232] = 1224, + [1233] = 1217, + [1234] = 1218, + [1235] = 1219, + [1236] = 1220, [1237] = 1237, - [1238] = 1238, - [1239] = 1239, - [1240] = 1236, - [1241] = 1239, - [1242] = 1238, - [1243] = 1211, - [1244] = 1244, - [1245] = 1213, - [1246] = 1246, + [1238] = 1222, + [1239] = 1218, + [1240] = 1240, + [1241] = 1241, + [1242] = 1224, + [1243] = 1243, + [1244] = 1217, + [1245] = 1218, + [1246] = 1216, [1247] = 1247, - [1248] = 1248, - [1249] = 1211, - [1250] = 1214, - [1251] = 1210, - [1252] = 1217, - [1253] = 1209, - [1254] = 1234, - [1255] = 1246, - [1256] = 1237, - [1257] = 1210, + [1248] = 1219, + [1249] = 1240, + [1250] = 1250, + [1251] = 1251, + [1252] = 1224, + [1253] = 1241, + [1254] = 1254, + [1255] = 1229, + [1256] = 1254, + [1257] = 1217, [1258] = 1215, - [1259] = 1218, - [1260] = 1214, - [1261] = 1244, - [1262] = 1211, - [1263] = 1213, - [1264] = 1214, - [1265] = 1244, - [1266] = 1212, - [1267] = 1215, - [1268] = 1218, - [1269] = 1229, - [1270] = 1236, - [1271] = 1239, - [1272] = 1238, - [1273] = 1248, - [1274] = 1217, - [1275] = 1209, - [1276] = 1234, - [1277] = 1246, - [1278] = 1237, - [1279] = 1213, - [1280] = 1248, - [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1283, - [1285] = 1285, - [1286] = 1286, - [1287] = 1281, + [1259] = 1247, + [1260] = 1217, + [1261] = 1218, + [1262] = 1243, + [1263] = 1224, + [1264] = 1251, + [1265] = 1216, + [1266] = 1220, + [1267] = 1221, + [1268] = 1222, + [1269] = 1251, + [1270] = 1219, + [1271] = 1215, + [1272] = 1219, + [1273] = 1273, + [1274] = 1240, + [1275] = 1250, + [1276] = 1250, + [1277] = 1277, + [1278] = 1247, + [1279] = 1241, + [1280] = 1229, + [1281] = 1254, + [1282] = 1224, + [1283] = 1243, + [1284] = 1277, + [1285] = 1219, + [1286] = 1277, + [1287] = 1287, [1288] = 1288, [1289] = 1289, - [1290] = 1283, + [1290] = 1290, [1291] = 1291, - [1292] = 1282, + [1292] = 1292, [1293] = 1293, [1294] = 1294, - [1295] = 1291, - [1296] = 1296, - [1297] = 1281, - [1298] = 1281, - [1299] = 1291, - [1300] = 1281, - [1301] = 1301, - [1302] = 1281, + [1295] = 1294, + [1296] = 1289, + [1297] = 1297, + [1298] = 1298, + [1299] = 1289, + [1300] = 1300, + [1301] = 1292, + [1302] = 1294, [1303] = 1303, [1304] = 1304, - [1305] = 1305, - [1306] = 1283, + [1305] = 1292, + [1306] = 1294, [1307] = 1307, - [1308] = 1308, - [1309] = 1291, - [1310] = 1307, + [1308] = 1289, + [1309] = 1309, + [1310] = 1310, [1311] = 1311, - [1312] = 1312, - [1313] = 1283, + [1312] = 1294, + [1313] = 1289, [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1317, + [1317] = 1292, [1318] = 1318, [1319] = 1319, - [1320] = 1320, - [1321] = 1321, + [1320] = 1314, + [1321] = 1309, [1322] = 1322, - [1323] = 1281, - [1324] = 1324, - [1325] = 1301, - [1326] = 1291, + [1323] = 1294, + [1324] = 1288, + [1325] = 1325, + [1326] = 1289, [1327] = 1327, - [1328] = 1328, - [1329] = 1329, - [1330] = 1304, + [1328] = 1292, + [1329] = 1292, + [1330] = 1330, [1331] = 1331, - [1332] = 1304, - [1333] = 1333, + [1332] = 1332, + [1333] = 1289, [1334] = 1334, - [1335] = 1335, - [1336] = 1336, + [1335] = 1288, + [1336] = 1294, [1337] = 1337, - [1338] = 1338, + [1338] = 1288, [1339] = 1339, - [1340] = 1304, - [1341] = 1282, - [1342] = 1342, - [1343] = 1304, - [1344] = 1283, - [1345] = 1304, - [1346] = 1304, - [1347] = 1283, - [1348] = 1335, - [1349] = 1281, + [1340] = 1340, + [1341] = 1341, + [1342] = 1292, + [1343] = 1294, + [1344] = 1289, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1332, [1350] = 1350, - [1351] = 1304, - [1352] = 1352, - [1353] = 1283, - [1354] = 1333, - [1355] = 1291, - [1356] = 1291, - [1357] = 1357, - [1358] = 1281, - [1359] = 1359, - [1360] = 1360, + [1351] = 1351, + [1352] = 1292, + [1353] = 1292, + [1354] = 1288, + [1355] = 1355, + [1356] = 1288, + [1357] = 1292, + [1358] = 1294, + [1359] = 1289, + [1360] = 1289, [1361] = 1361, - [1362] = 1304, - [1363] = 1283, - [1364] = 1281, + [1362] = 1289, + [1363] = 1363, + [1364] = 1288, [1365] = 1365, [1366] = 1366, - [1367] = 1291, - [1368] = 1304, - [1369] = 1283, - [1370] = 1281, - [1371] = 1291, - [1372] = 1291, - [1373] = 1291, + [1367] = 1288, + [1368] = 1368, + [1369] = 1369, + [1370] = 1288, + [1371] = 1293, + [1372] = 1372, + [1373] = 1373, [1374] = 1374, - [1375] = 1335, - [1376] = 1376, + [1375] = 1289, + [1376] = 1325, [1377] = 1377, - [1378] = 1319, - [1379] = 1333, - [1380] = 1380, - [1381] = 1381, + [1378] = 1378, + [1379] = 1331, + [1380] = 1332, + [1381] = 1309, [1382] = 1382, [1383] = 1383, [1384] = 1384, - [1385] = 1283, - [1386] = 1291, + [1385] = 1385, + [1386] = 1325, [1387] = 1387, - [1388] = 1319, - [1389] = 1333, - [1390] = 1283, - [1391] = 1391, - [1392] = 1291, - [1393] = 1291, - [1394] = 1333, - [1395] = 1395, + [1388] = 1388, + [1389] = 1292, + [1390] = 1331, + [1391] = 1332, + [1392] = 1331, + [1393] = 1294, + [1394] = 1394, + [1395] = 1292, [1396] = 1396, - [1397] = 1397, - [1398] = 1304, - [1399] = 1281, - [1400] = 1283, - [1401] = 1304, - [1402] = 1402, - [1403] = 1403, + [1397] = 1332, + [1398] = 1398, + [1399] = 1399, + [1400] = 1288, + [1401] = 1292, + [1402] = 1294, + [1403] = 1294, [1404] = 1404, - [1405] = 1281, + [1405] = 1405, [1406] = 1406, - [1407] = 1407, - [1408] = 1408, - [1409] = 1301, - [1410] = 1304, - [1411] = 1319, - [1412] = 1412, - [1413] = 1412, + [1407] = 1289, + [1408] = 1288, + [1409] = 1288, + [1410] = 1410, + [1411] = 1411, + [1412] = 1293, + [1413] = 1294, [1414] = 1414, [1415] = 1415, [1416] = 1416, [1417] = 1417, - [1418] = 1418, + [1418] = 1416, [1419] = 1419, [1420] = 1420, [1421] = 1421, [1422] = 1422, - [1423] = 1415, - [1424] = 1416, + [1423] = 1423, + [1424] = 1424, [1425] = 1425, - [1426] = 1416, + [1426] = 1426, [1427] = 1427, - [1428] = 1425, + [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, [1432] = 1432, - [1433] = 1431, - [1434] = 1430, + [1433] = 1433, + [1434] = 1434, [1435] = 1435, - [1436] = 1436, - [1437] = 1436, + [1436] = 1434, + [1437] = 1437, [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1417, - [1448] = 1418, - [1449] = 1419, - [1450] = 1420, - [1451] = 1421, - [1452] = 1422, - [1453] = 1415, - [1454] = 1416, - [1455] = 1425, - [1456] = 1431, - [1457] = 1430, - [1458] = 1436, - [1459] = 1438, - [1460] = 1439, - [1461] = 1440, - [1462] = 1442, - [1463] = 1443, - [1464] = 1444, - [1465] = 1445, - [1466] = 1446, - [1467] = 1417, - [1468] = 1418, - [1469] = 1419, - [1470] = 1420, - [1471] = 1421, - [1472] = 1422, - [1473] = 1416, - [1474] = 1425, - [1475] = 1430, - [1476] = 1436, - [1477] = 1430, - [1478] = 1436, - [1479] = 1479, - [1480] = 1425, - [1481] = 1425, - [1482] = 1431, - [1483] = 1438, - [1484] = 1484, - [1485] = 1439, - [1486] = 1440, - [1487] = 1441, - [1488] = 1442, - [1489] = 1443, - [1490] = 1444, - [1491] = 1430, - [1492] = 1445, - [1493] = 1431, - [1494] = 1436, - [1495] = 1446, - [1496] = 1436, - [1497] = 1417, - [1498] = 1418, - [1499] = 1419, - [1500] = 1438, - [1501] = 1439, - [1502] = 1440, - [1503] = 1442, - [1504] = 1443, - [1505] = 1444, - [1506] = 1445, - [1507] = 1446, - [1508] = 1417, - [1509] = 1418, - [1510] = 1419, - [1511] = 1420, - [1512] = 1421, - [1513] = 1422, - [1514] = 1415, - [1515] = 1416, - [1516] = 1420, - [1517] = 1421, - [1518] = 1422, - [1519] = 1415, - [1520] = 1416, - [1521] = 1521, - [1522] = 1438, - [1523] = 1439, - [1524] = 1440, - [1525] = 1442, - [1526] = 1443, - [1527] = 1444, - [1528] = 1445, - [1529] = 1446, - [1530] = 1417, - [1531] = 1418, - [1532] = 1419, + [1441] = 1417, + [1442] = 1416, + [1443] = 1419, + [1444] = 1420, + [1445] = 1421, + [1446] = 1422, + [1447] = 1423, + [1448] = 1424, + [1449] = 1425, + [1450] = 1426, + [1451] = 1427, + [1452] = 1428, + [1453] = 1429, + [1454] = 1430, + [1455] = 1431, + [1456] = 1432, + [1457] = 1457, + [1458] = 1434, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1434, + [1463] = 1463, + [1464] = 1439, + [1465] = 1465, + [1466] = 1438, + [1467] = 1467, + [1468] = 1437, + [1469] = 1457, + [1470] = 1470, + [1471] = 1465, + [1472] = 1472, + [1473] = 1473, + [1474] = 1440, + [1475] = 1417, + [1476] = 1435, + [1477] = 1416, + [1478] = 1478, + [1479] = 1419, + [1480] = 1420, + [1481] = 1421, + [1482] = 1422, + [1483] = 1440, + [1484] = 1417, + [1485] = 1416, + [1486] = 1419, + [1487] = 1420, + [1488] = 1421, + [1489] = 1422, + [1490] = 1423, + [1491] = 1424, + [1492] = 1425, + [1493] = 1426, + [1494] = 1427, + [1495] = 1428, + [1496] = 1429, + [1497] = 1423, + [1498] = 1430, + [1499] = 1431, + [1500] = 1432, + [1501] = 1424, + [1502] = 1425, + [1503] = 1503, + [1504] = 1460, + [1505] = 1461, + [1506] = 1463, + [1507] = 1426, + [1508] = 1427, + [1509] = 1509, + [1510] = 1510, + [1511] = 1434, + [1512] = 1428, + [1513] = 1429, + [1514] = 1438, + [1515] = 1430, + [1516] = 1472, + [1517] = 1431, + [1518] = 1518, + [1519] = 1435, + [1520] = 1438, + [1521] = 1472, + [1522] = 1435, + [1523] = 1440, + [1524] = 1417, + [1525] = 1416, + [1526] = 1478, + [1527] = 1419, + [1528] = 1420, + [1529] = 1421, + [1530] = 1422, + [1531] = 1423, + [1532] = 1424, [1533] = 1425, - [1534] = 1534, - [1535] = 1420, - [1536] = 1421, - [1537] = 1422, - [1538] = 1415, - [1539] = 1416, - [1540] = 1431, - [1541] = 1541, - [1542] = 1425, - [1543] = 1543, - [1544] = 1431, - [1545] = 1484, - [1546] = 1438, - [1547] = 1439, - [1548] = 1431, - [1549] = 1430, - [1550] = 1436, - [1551] = 1438, - [1552] = 1439, - [1553] = 1440, - [1554] = 1442, - [1555] = 1443, - [1556] = 1444, - [1557] = 1445, - [1558] = 1446, - [1559] = 1417, - [1560] = 1418, - [1561] = 1419, - [1562] = 1420, - [1563] = 1421, - [1564] = 1422, - [1565] = 1415, - [1566] = 1416, - [1567] = 1425, - [1568] = 1430, - [1569] = 1436, - [1570] = 1440, - [1571] = 1479, - [1572] = 1438, - [1573] = 1439, - [1574] = 1440, - [1575] = 1484, - [1576] = 1576, - [1577] = 1442, - [1578] = 1578, - [1579] = 1443, - [1580] = 1430, - [1581] = 1436, - [1582] = 1444, - [1583] = 1445, - [1584] = 1446, - [1585] = 1417, - [1586] = 1438, - [1587] = 1439, - [1588] = 1440, - [1589] = 1442, - [1590] = 1443, - [1591] = 1444, - [1592] = 1445, - [1593] = 1446, - [1594] = 1417, - [1595] = 1418, - [1596] = 1419, - [1597] = 1420, - [1598] = 1421, - [1599] = 1422, - [1600] = 1418, - [1601] = 1416, - [1602] = 1419, - [1603] = 1420, - [1604] = 1421, - [1605] = 1422, - [1606] = 1442, - [1607] = 1443, - [1608] = 1415, - [1609] = 1416, - [1610] = 1425, - [1611] = 1431, - [1612] = 1430, - [1613] = 1444, - [1614] = 1436, - [1615] = 1438, - [1616] = 1439, - [1617] = 1440, - [1618] = 1442, - [1619] = 1443, - [1620] = 1444, - [1621] = 1445, - [1622] = 1446, - [1623] = 1417, - [1624] = 1418, - [1625] = 1419, - [1626] = 1420, - [1627] = 1421, - [1628] = 1422, - [1629] = 1415, - [1630] = 1416, - [1631] = 1425, - [1632] = 1430, - [1633] = 1436, - [1634] = 1425, - [1635] = 1479, - [1636] = 1484, - [1637] = 1445, - [1638] = 1446, - [1639] = 1425, - [1640] = 1430, - [1641] = 1436, - [1642] = 1642, - [1643] = 1417, - [1644] = 1418, - [1645] = 1438, - [1646] = 1439, - [1647] = 1440, - [1648] = 1442, - [1649] = 1443, - [1650] = 1444, - [1651] = 1445, - [1652] = 1446, - [1653] = 1417, - [1654] = 1418, - [1655] = 1419, - [1656] = 1420, - [1657] = 1421, - [1658] = 1422, - [1659] = 1416, - [1660] = 1425, - [1661] = 1431, - [1662] = 1430, - [1663] = 1436, - [1664] = 1438, - [1665] = 1439, - [1666] = 1440, - [1667] = 1442, - [1668] = 1443, - [1669] = 1444, - [1670] = 1445, - [1671] = 1446, - [1672] = 1417, - [1673] = 1418, - [1674] = 1419, - [1675] = 1420, - [1676] = 1421, - [1677] = 1422, + [1534] = 1426, + [1535] = 1427, + [1536] = 1428, + [1537] = 1429, + [1538] = 1430, + [1539] = 1431, + [1540] = 1432, + [1541] = 1434, + [1542] = 1438, + [1543] = 1472, + [1544] = 1435, + [1545] = 1440, + [1546] = 1417, + [1547] = 1416, + [1548] = 1419, + [1549] = 1420, + [1550] = 1421, + [1551] = 1422, + [1552] = 1423, + [1553] = 1424, + [1554] = 1425, + [1555] = 1426, + [1556] = 1427, + [1557] = 1428, + [1558] = 1429, + [1559] = 1432, + [1560] = 1440, + [1561] = 1434, + [1562] = 1472, + [1563] = 1417, + [1564] = 1435, + [1565] = 1416, + [1566] = 1419, + [1567] = 1420, + [1568] = 1421, + [1569] = 1422, + [1570] = 1423, + [1571] = 1424, + [1572] = 1439, + [1573] = 1425, + [1574] = 1426, + [1575] = 1427, + [1576] = 1428, + [1577] = 1429, + [1578] = 1438, + [1579] = 1430, + [1580] = 1431, + [1581] = 1432, + [1582] = 1457, + [1583] = 1438, + [1584] = 1472, + [1585] = 1435, + [1586] = 1586, + [1587] = 1440, + [1588] = 1417, + [1589] = 1416, + [1590] = 1419, + [1591] = 1420, + [1592] = 1421, + [1593] = 1422, + [1594] = 1423, + [1595] = 1424, + [1596] = 1425, + [1597] = 1426, + [1598] = 1427, + [1599] = 1428, + [1600] = 1429, + [1601] = 1430, + [1602] = 1431, + [1603] = 1432, + [1604] = 1432, + [1605] = 1472, + [1606] = 1472, + [1607] = 1435, + [1608] = 1608, + [1609] = 1434, + [1610] = 1440, + [1611] = 1417, + [1612] = 1416, + [1613] = 1478, + [1614] = 1419, + [1615] = 1420, + [1616] = 1421, + [1617] = 1422, + [1618] = 1423, + [1619] = 1424, + [1620] = 1425, + [1621] = 1426, + [1622] = 1427, + [1623] = 1428, + [1624] = 1438, + [1625] = 1472, + [1626] = 1435, + [1627] = 1440, + [1628] = 1417, + [1629] = 1416, + [1630] = 1419, + [1631] = 1420, + [1632] = 1421, + [1633] = 1422, + [1634] = 1423, + [1635] = 1424, + [1636] = 1425, + [1637] = 1426, + [1638] = 1427, + [1639] = 1428, + [1640] = 1429, + [1641] = 1430, + [1642] = 1431, + [1643] = 1432, + [1644] = 1434, + [1645] = 1472, + [1646] = 1435, + [1647] = 1429, + [1648] = 1439, + [1649] = 1430, + [1650] = 1431, + [1651] = 1457, + [1652] = 1432, + [1653] = 1472, + [1654] = 1435, + [1655] = 1434, + [1656] = 1440, + [1657] = 1417, + [1658] = 1416, + [1659] = 1419, + [1660] = 1420, + [1661] = 1421, + [1662] = 1422, + [1663] = 1423, + [1664] = 1424, + [1665] = 1425, + [1666] = 1426, + [1667] = 1427, + [1668] = 1428, + [1669] = 1429, + [1670] = 1432, + [1671] = 1671, + [1672] = 1434, + [1673] = 1438, + [1674] = 1472, + [1675] = 1435, + [1676] = 1440, + [1677] = 1417, [1678] = 1416, - [1679] = 1425, - [1680] = 1419, - [1681] = 1479, - [1682] = 1479, - [1683] = 1683, - [1684] = 1484, - [1685] = 1685, - [1686] = 1412, - [1687] = 1687, - [1688] = 1431, - [1689] = 1420, - [1690] = 1421, - [1691] = 1430, - [1692] = 1422, - [1693] = 1431, - [1694] = 1430, - [1695] = 1436, - [1696] = 1438, - [1697] = 1439, - [1698] = 1440, - [1699] = 1442, - [1700] = 1443, - [1701] = 1444, - [1702] = 1445, - [1703] = 1446, - [1704] = 1417, - [1705] = 1418, - [1706] = 1419, - [1707] = 1420, - [1708] = 1421, - [1709] = 1422, - [1710] = 1416, - [1711] = 1425, - [1712] = 1479, - [1713] = 1484, - [1714] = 1436, - [1715] = 1415, - [1716] = 1438, - [1717] = 1717, - [1718] = 1416, - [1719] = 1439, - [1720] = 1543, - [1721] = 1440, - [1722] = 1441, - [1723] = 1479, - [1724] = 1578, - [1725] = 1725, - [1726] = 1484, - [1727] = 1438, - [1728] = 1439, - [1729] = 1415, - [1730] = 1442, - [1731] = 1443, - [1732] = 1444, - [1733] = 1445, - [1734] = 1442, - [1735] = 1446, - [1736] = 1417, - [1737] = 1479, - [1738] = 1418, - [1739] = 1419, - [1740] = 1420, - [1741] = 1484, - [1742] = 1421, - [1743] = 1422, - [1744] = 1415, - [1745] = 1416, - [1746] = 1443, - [1747] = 1431, - [1748] = 1425, - [1749] = 1444, - [1750] = 1479, - [1751] = 1430, - [1752] = 1479, - [1753] = 1479, - [1754] = 1479, - [1755] = 1479, - [1756] = 1479, - [1757] = 1479, - [1758] = 1758, - [1759] = 1479, - [1760] = 1430, - [1761] = 1479, - [1762] = 1431, - [1763] = 1479, - [1764] = 1479, - [1765] = 1479, - [1766] = 1445, - [1767] = 1767, - [1768] = 1436, - [1769] = 1446, - [1770] = 1479, - [1771] = 1521, - [1772] = 1432, - [1773] = 1417, - [1774] = 1431, - [1775] = 1484, - [1776] = 1430, - [1777] = 1576, - [1778] = 1436, - [1779] = 1418, - [1780] = 1431, - [1781] = 1781, - [1782] = 1412, - [1783] = 1438, - [1784] = 1439, - [1785] = 1440, - [1786] = 1438, - [1787] = 1442, - [1788] = 1443, - [1789] = 1444, - [1790] = 1445, - [1791] = 1446, - [1792] = 1417, - [1793] = 1418, - [1794] = 1419, - [1795] = 1420, - [1796] = 1421, - [1797] = 1422, - [1798] = 1415, - [1799] = 1414, - [1800] = 1416, - [1801] = 1439, - [1802] = 1717, - [1803] = 1419, - [1804] = 1430, - [1805] = 1425, - [1806] = 1431, - [1807] = 1430, - [1808] = 1440, - [1809] = 1436, - [1810] = 1442, - [1811] = 1438, - [1812] = 1439, - [1813] = 1440, - [1814] = 1442, - [1815] = 1443, - [1816] = 1444, - [1817] = 1445, - [1818] = 1446, - [1819] = 1417, - [1820] = 1418, - [1821] = 1419, - [1822] = 1420, - [1823] = 1421, - [1824] = 1422, - [1825] = 1416, - [1826] = 1443, - [1827] = 1425, - [1828] = 1431, - [1829] = 1438, - [1830] = 1439, - [1831] = 1440, - [1832] = 1442, - [1833] = 1443, - [1834] = 1444, - [1835] = 1445, - [1836] = 1446, - [1837] = 1417, - [1838] = 1418, - [1839] = 1419, - [1840] = 1420, - [1841] = 1421, - [1842] = 1422, - [1843] = 1416, - [1844] = 1425, - [1845] = 1430, - [1846] = 1436, - [1847] = 1431, - [1848] = 1438, - [1849] = 1439, - [1850] = 1440, - [1851] = 1442, - [1852] = 1443, - [1853] = 1444, - [1854] = 1445, - [1855] = 1446, - [1856] = 1417, - [1857] = 1418, - [1858] = 1419, - [1859] = 1420, - [1860] = 1421, - [1861] = 1422, - [1862] = 1416, - [1863] = 1425, - [1864] = 1431, + [1679] = 1419, + [1680] = 1420, + [1681] = 1421, + [1682] = 1422, + [1683] = 1423, + [1684] = 1424, + [1685] = 1425, + [1686] = 1426, + [1687] = 1427, + [1688] = 1428, + [1689] = 1429, + [1690] = 1430, + [1691] = 1431, + [1692] = 1432, + [1693] = 1434, + [1694] = 1472, + [1695] = 1435, + [1696] = 1439, + [1697] = 1457, + [1698] = 1438, + [1699] = 1699, + [1700] = 1472, + [1701] = 1435, + [1702] = 1472, + [1703] = 1438, + [1704] = 1440, + [1705] = 1417, + [1706] = 1416, + [1707] = 1419, + [1708] = 1420, + [1709] = 1421, + [1710] = 1422, + [1711] = 1423, + [1712] = 1424, + [1713] = 1425, + [1714] = 1426, + [1715] = 1427, + [1716] = 1428, + [1717] = 1429, + [1718] = 1432, + [1719] = 1460, + [1720] = 1435, + [1721] = 1434, + [1722] = 1438, + [1723] = 1472, + [1724] = 1435, + [1725] = 1440, + [1726] = 1417, + [1727] = 1416, + [1728] = 1419, + [1729] = 1420, + [1730] = 1421, + [1731] = 1422, + [1732] = 1423, + [1733] = 1424, + [1734] = 1425, + [1735] = 1426, + [1736] = 1427, + [1737] = 1428, + [1738] = 1429, + [1739] = 1432, + [1740] = 1434, + [1741] = 1440, + [1742] = 1417, + [1743] = 1439, + [1744] = 1416, + [1745] = 1419, + [1746] = 1420, + [1747] = 1457, + [1748] = 1421, + [1749] = 1422, + [1750] = 1440, + [1751] = 1424, + [1752] = 1425, + [1753] = 1426, + [1754] = 1427, + [1755] = 1428, + [1756] = 1429, + [1757] = 1430, + [1758] = 1431, + [1759] = 1432, + [1760] = 1467, + [1761] = 1438, + [1762] = 1472, + [1763] = 1435, + [1764] = 1440, + [1765] = 1417, + [1766] = 1416, + [1767] = 1419, + [1768] = 1420, + [1769] = 1421, + [1770] = 1422, + [1771] = 1423, + [1772] = 1424, + [1773] = 1425, + [1774] = 1426, + [1775] = 1427, + [1776] = 1428, + [1777] = 1429, + [1778] = 1432, + [1779] = 1434, + [1780] = 1439, + [1781] = 1457, + [1782] = 1439, + [1783] = 1457, + [1784] = 1784, + [1785] = 1439, + [1786] = 1434, + [1787] = 1457, + [1788] = 1439, + [1789] = 1438, + [1790] = 1439, + [1791] = 1439, + [1792] = 1439, + [1793] = 1434, + [1794] = 1439, + [1795] = 1440, + [1796] = 1439, + [1797] = 1417, + [1798] = 1416, + [1799] = 1439, + [1800] = 1419, + [1801] = 1420, + [1802] = 1439, + [1803] = 1421, + [1804] = 1439, + [1805] = 1422, + [1806] = 1439, + [1807] = 1423, + [1808] = 1439, + [1809] = 1424, + [1810] = 1425, + [1811] = 1426, + [1812] = 1427, + [1813] = 1428, + [1814] = 1429, + [1815] = 1815, + [1816] = 1439, + [1817] = 1608, + [1818] = 1430, + [1819] = 1431, + [1820] = 1438, + [1821] = 1432, + [1822] = 1472, + [1823] = 1823, + [1824] = 1435, + [1825] = 1473, + [1826] = 1440, + [1827] = 1417, + [1828] = 1416, + [1829] = 1419, + [1830] = 1420, + [1831] = 1421, + [1832] = 1422, + [1833] = 1423, + [1834] = 1424, + [1835] = 1425, + [1836] = 1426, + [1837] = 1427, + [1838] = 1428, + [1839] = 1429, + [1840] = 1430, + [1841] = 1431, + [1842] = 1518, + [1843] = 1432, + [1844] = 1434, + [1845] = 1438, + [1846] = 1472, + [1847] = 1435, + [1848] = 1440, + [1849] = 1417, + [1850] = 1416, + [1851] = 1419, + [1852] = 1420, + [1853] = 1421, + [1854] = 1422, + [1855] = 1423, + [1856] = 1424, + [1857] = 1425, + [1858] = 1426, + [1859] = 1427, + [1860] = 1428, + [1861] = 1429, + [1862] = 1432, + [1863] = 1863, + [1864] = 1434, [1865] = 1438, - [1866] = 1439, - [1867] = 1440, - [1868] = 1442, - [1869] = 1443, - [1870] = 1444, - [1871] = 1445, - [1872] = 1446, - [1873] = 1417, - [1874] = 1418, - [1875] = 1419, - [1876] = 1420, - [1877] = 1421, - [1878] = 1422, - [1879] = 1416, - [1880] = 1425, - [1881] = 1881, - [1882] = 1444, - [1883] = 1436, - [1884] = 1479, - [1885] = 1717, - [1886] = 1445, - [1887] = 1431, - [1888] = 1430, + [1866] = 1440, + [1867] = 1417, + [1868] = 1416, + [1869] = 1419, + [1870] = 1420, + [1871] = 1421, + [1872] = 1422, + [1873] = 1423, + [1874] = 1424, + [1875] = 1425, + [1876] = 1426, + [1877] = 1427, + [1878] = 1428, + [1879] = 1429, + [1880] = 1432, + [1881] = 1434, + [1882] = 1472, + [1883] = 1435, + [1884] = 1438, + [1885] = 1440, + [1886] = 1417, + [1887] = 1416, + [1888] = 1419, [1889] = 1420, - [1890] = 1436, - [1891] = 1446, - [1892] = 1438, - [1893] = 1439, - [1894] = 1440, - [1895] = 1442, - [1896] = 1443, - [1897] = 1444, - [1898] = 1445, - [1899] = 1446, - [1900] = 1417, - [1901] = 1418, - [1902] = 1419, - [1903] = 1420, - [1904] = 1421, - [1905] = 1422, - [1906] = 1415, - [1907] = 1416, - [1908] = 1421, - [1909] = 1425, - [1910] = 1415, - [1911] = 1430, - [1912] = 1436, - [1913] = 1415, - [1914] = 1430, - [1915] = 1436, - [1916] = 1438, - [1917] = 1439, - [1918] = 1479, - [1919] = 1432, - [1920] = 1440, - [1921] = 1442, - [1922] = 1431, - [1923] = 1443, - [1924] = 1444, - [1925] = 1438, - [1926] = 1439, - [1927] = 1412, - [1928] = 1440, - [1929] = 1415, - [1930] = 1414, - [1931] = 1442, - [1932] = 1443, - [1933] = 1444, - [1934] = 1445, - [1935] = 1425, - [1936] = 1446, - [1937] = 1479, + [1890] = 1421, + [1891] = 1422, + [1892] = 1423, + [1893] = 1424, + [1894] = 1425, + [1895] = 1426, + [1896] = 1427, + [1897] = 1428, + [1898] = 1429, + [1899] = 1432, + [1900] = 1434, + [1901] = 1438, + [1902] = 1440, + [1903] = 1417, + [1904] = 1416, + [1905] = 1419, + [1906] = 1420, + [1907] = 1421, + [1908] = 1422, + [1909] = 1423, + [1910] = 1424, + [1911] = 1425, + [1912] = 1426, + [1913] = 1427, + [1914] = 1428, + [1915] = 1429, + [1916] = 1432, + [1917] = 1434, + [1918] = 1439, + [1919] = 1465, + [1920] = 1438, + [1921] = 1472, + [1922] = 1435, + [1923] = 1440, + [1924] = 1417, + [1925] = 1419, + [1926] = 1420, + [1927] = 1421, + [1928] = 1422, + [1929] = 1423, + [1930] = 1424, + [1931] = 1425, + [1932] = 1426, + [1933] = 1427, + [1934] = 1428, + [1935] = 1429, + [1936] = 1430, + [1937] = 1431, [1938] = 1432, - [1939] = 1431, - [1940] = 1417, - [1941] = 1418, - [1942] = 1419, - [1943] = 1412, - [1944] = 1420, - [1945] = 1415, - [1946] = 1421, - [1947] = 1422, - [1948] = 1445, - [1949] = 1432, - [1950] = 1415, - [1951] = 1412, - [1952] = 1416, - [1953] = 1446, - [1954] = 1417, - [1955] = 1422, - [1956] = 1418, - [1957] = 1432, - [1958] = 1412, - [1959] = 1419, - [1960] = 1431, - [1961] = 1432, - [1962] = 1412, - [1963] = 1420, - [1964] = 1432, - [1965] = 1412, - [1966] = 1432, - [1967] = 1412, - [1968] = 1432, - [1969] = 1412, - [1970] = 1432, - [1971] = 1412, - [1972] = 1412, - [1973] = 1412, - [1974] = 1412, - [1975] = 1412, - [1976] = 1412, - [1977] = 1412, - [1978] = 1576, - [1979] = 1412, - [1980] = 1781, - [1981] = 1881, - [1982] = 1412, - [1983] = 1415, - [1984] = 1415, - [1985] = 1415, - [1986] = 1415, - [1987] = 1415, - [1988] = 1421, - [1989] = 1422, - [1990] = 1412, - [1991] = 1412, - [1992] = 1412, - [1993] = 1440, - [1994] = 1994, - [1995] = 1995, - [1996] = 1995, - [1997] = 1995, - [1998] = 1998, - [1999] = 1998, - [2000] = 1998, - [2001] = 1998, - [2002] = 1998, - [2003] = 1998, - [2004] = 1998, - [2005] = 1998, - [2006] = 1998, - [2007] = 2007, - [2008] = 2007, - [2009] = 2007, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2011, - [2014] = 2014, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2018, - [2020] = 2018, - [2021] = 2018, - [2022] = 2018, + [1939] = 1434, + [1940] = 1430, + [1941] = 1431, + [1942] = 1472, + [1943] = 1435, + [1944] = 1438, + [1945] = 1430, + [1946] = 1431, + [1947] = 1472, + [1948] = 1435, + [1949] = 1434, + [1950] = 1439, + [1951] = 1608, + [1952] = 1472, + [1953] = 1438, + [1954] = 1473, + [1955] = 1430, + [1956] = 1431, + [1957] = 1518, + [1958] = 1435, + [1959] = 1438, + [1960] = 1439, + [1961] = 1608, + [1962] = 1438, + [1963] = 1671, + [1964] = 1473, + [1965] = 1430, + [1966] = 1431, + [1967] = 1608, + [1968] = 1440, + [1969] = 1473, + [1970] = 1417, + [1971] = 1416, + [1972] = 1419, + [1973] = 1420, + [1974] = 1421, + [1975] = 1608, + [1976] = 1473, + [1977] = 1422, + [1978] = 1423, + [1979] = 1424, + [1980] = 1425, + [1981] = 1608, + [1982] = 1473, + [1983] = 1426, + [1984] = 1427, + [1985] = 1428, + [1986] = 1608, + [1987] = 1473, + [1988] = 1608, + [1989] = 1473, + [1990] = 1608, + [1991] = 1473, + [1992] = 1608, + [1993] = 1473, + [1994] = 1473, + [1995] = 1473, + [1996] = 1473, + [1997] = 1473, + [1998] = 1473, + [1999] = 1473, + [2000] = 1473, + [2001] = 1473, + [2002] = 1429, + [2003] = 1430, + [2004] = 1431, + [2005] = 1473, + [2006] = 1430, + [2007] = 1431, + [2008] = 1430, + [2009] = 1431, + [2010] = 1430, + [2011] = 1431, + [2012] = 1430, + [2013] = 1431, + [2014] = 1430, + [2015] = 1431, + [2016] = 1432, + [2017] = 1473, + [2018] = 1473, + [2019] = 1473, + [2020] = 1473, + [2021] = 1423, + [2022] = 2022, [2023] = 2023, - [2024] = 2018, - [2025] = 2018, - [2026] = 2018, - [2027] = 2018, - [2028] = 2028, - [2029] = 2028, - [2030] = 2030, - [2031] = 2028, - [2032] = 2030, - [2033] = 2030, - [2034] = 373, - [2035] = 375, - [2036] = 2036, - [2037] = 333, - [2038] = 376, - [2039] = 374, - [2040] = 336, - [2041] = 334, - [2042] = 371, - [2043] = 372, - [2044] = 337, + [2024] = 2023, + [2025] = 2023, + [2026] = 2026, + [2027] = 2026, + [2028] = 2026, + [2029] = 2026, + [2030] = 2026, + [2031] = 2026, + [2032] = 2026, + [2033] = 2026, + [2034] = 2026, + [2035] = 2035, + [2036] = 2035, + [2037] = 2035, + [2038] = 2038, + [2039] = 2039, + [2040] = 2038, + [2041] = 2041, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, [2045] = 2045, [2046] = 2046, - [2047] = 2047, - [2048] = 2045, - [2049] = 2049, - [2050] = 2047, - [2051] = 2047, - [2052] = 2052, - [2053] = 2045, + [2047] = 2046, + [2048] = 2046, + [2049] = 2046, + [2050] = 2050, + [2051] = 2046, + [2052] = 2046, + [2053] = 2046, [2054] = 2046, [2055] = 2046, - [2056] = 2047, - [2057] = 2046, - [2058] = 2045, - [2059] = 2046, - [2060] = 2045, - [2061] = 2061, - [2062] = 2047, - [2063] = 2045, - [2064] = 2046, - [2065] = 2045, - [2066] = 2047, - [2067] = 2047, - [2068] = 2046, - [2069] = 2046, - [2070] = 2045, - [2071] = 2046, - [2072] = 2047, - [2073] = 2045, - [2074] = 2047, - [2075] = 317, - [2076] = 455, - [2077] = 317, + [2056] = 2056, + [2057] = 2057, + [2058] = 2056, + [2059] = 2057, + [2060] = 2057, + [2061] = 2056, + [2062] = 362, + [2063] = 2063, + [2064] = 366, + [2065] = 350, + [2066] = 344, + [2067] = 369, + [2068] = 372, + [2069] = 341, + [2070] = 343, + [2071] = 373, + [2072] = 345, + [2073] = 2073, + [2074] = 2074, + [2075] = 2074, + [2076] = 2076, + [2077] = 2077, [2078] = 2078, - [2079] = 374, - [2080] = 2080, - [2081] = 2080, - [2082] = 2082, - [2083] = 2083, - [2084] = 371, - [2085] = 319, - [2086] = 376, - [2087] = 2087, - [2088] = 317, - [2089] = 2089, - [2090] = 2090, - [2091] = 463, - [2092] = 2092, - [2093] = 2093, - [2094] = 318, - [2095] = 2080, - [2096] = 318, - [2097] = 2080, - [2098] = 2098, - [2099] = 372, - [2100] = 375, - [2101] = 319, - [2102] = 2080, - [2103] = 319, - [2104] = 318, + [2079] = 2078, + [2080] = 2078, + [2081] = 2081, + [2082] = 2078, + [2083] = 2074, + [2084] = 2081, + [2085] = 2074, + [2086] = 2078, + [2087] = 2074, + [2088] = 2078, + [2089] = 2081, + [2090] = 2081, + [2091] = 2074, + [2092] = 2081, + [2093] = 2074, + [2094] = 2074, + [2095] = 2081, + [2096] = 2078, + [2097] = 2074, + [2098] = 2078, + [2099] = 2081, + [2100] = 2078, + [2101] = 2081, + [2102] = 2081, + [2103] = 2103, + [2104] = 319, [2105] = 2105, - [2106] = 2080, - [2107] = 2080, - [2108] = 2108, - [2109] = 373, + [2106] = 329, + [2107] = 2107, + [2108] = 317, + [2109] = 2109, [2110] = 2110, - [2111] = 340, - [2112] = 317, - [2113] = 319, - [2114] = 317, - [2115] = 318, - [2116] = 340, - [2117] = 333, - [2118] = 337, - [2119] = 334, - [2120] = 319, - [2121] = 2121, - [2122] = 317, - [2123] = 319, - [2124] = 318, - [2125] = 338, - [2126] = 340, - [2127] = 2127, + [2111] = 2111, + [2112] = 2109, + [2113] = 443, + [2114] = 2114, + [2115] = 445, + [2116] = 369, + [2117] = 2109, + [2118] = 372, + [2119] = 2109, + [2120] = 318, + [2121] = 319, + [2122] = 2122, + [2123] = 373, + [2124] = 341, + [2125] = 343, + [2126] = 2109, + [2127] = 345, [2128] = 2128, - [2129] = 340, + [2129] = 329, [2130] = 2130, - [2131] = 338, - [2132] = 683, + [2131] = 2131, + [2132] = 317, [2133] = 318, - [2134] = 336, - [2135] = 2135, + [2134] = 319, + [2135] = 2109, [2136] = 2136, [2137] = 317, [2138] = 2138, - [2139] = 318, - [2140] = 601, - [2141] = 618, - [2142] = 626, - [2143] = 2143, - [2144] = 2144, - [2145] = 2143, - [2146] = 2146, + [2139] = 2109, + [2140] = 318, + [2141] = 319, + [2142] = 634, + [2143] = 317, + [2144] = 318, + [2145] = 319, + [2146] = 344, [2147] = 2147, [2148] = 2148, - [2149] = 684, - [2150] = 318, - [2151] = 2147, - [2152] = 319, - [2153] = 338, - [2154] = 2154, - [2155] = 2155, + [2149] = 329, + [2150] = 366, + [2151] = 317, + [2152] = 318, + [2153] = 319, + [2154] = 361, + [2155] = 350, [2156] = 2156, - [2157] = 317, - [2158] = 2158, - [2159] = 317, - [2160] = 318, - [2161] = 338, - [2162] = 319, - [2163] = 319, - [2164] = 703, - [2165] = 2165, - [2166] = 2166, - [2167] = 2148, - [2168] = 705, - [2169] = 706, - [2170] = 658, - [2171] = 2155, - [2172] = 319, - [2173] = 2147, - [2174] = 2174, - [2175] = 317, - [2176] = 2166, - [2177] = 2177, - [2178] = 2143, - [2179] = 319, - [2180] = 319, - [2181] = 2148, - [2182] = 317, - [2183] = 318, - [2184] = 318, - [2185] = 698, - [2186] = 2138, - [2187] = 2144, - [2188] = 317, - [2189] = 318, - [2190] = 319, + [2157] = 2157, + [2158] = 362, + [2159] = 329, + [2160] = 361, + [2161] = 2161, + [2162] = 317, + [2163] = 2163, + [2164] = 318, + [2165] = 655, + [2166] = 319, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 317, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2169, + [2175] = 2175, + [2176] = 2176, + [2177] = 318, + [2178] = 2167, + [2179] = 659, + [2180] = 317, + [2181] = 319, + [2182] = 319, + [2183] = 2183, + [2184] = 317, + [2185] = 2171, + [2186] = 652, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 318, [2191] = 319, - [2192] = 317, - [2193] = 318, - [2194] = 317, - [2195] = 318, - [2196] = 319, - [2197] = 2146, - [2198] = 318, - [2199] = 592, - [2200] = 2200, - [2201] = 696, - [2202] = 317, - [2203] = 317, - [2204] = 2121, - [2205] = 319, - [2206] = 2108, - [2207] = 2087, - [2208] = 2144, - [2209] = 317, - [2210] = 2090, - [2211] = 2211, - [2212] = 2144, - [2213] = 2098, - [2214] = 317, - [2215] = 2166, - [2216] = 2216, - [2217] = 318, - [2218] = 2078, - [2219] = 319, - [2220] = 319, - [2221] = 319, + [2192] = 2192, + [2193] = 2187, + [2194] = 2173, + [2195] = 317, + [2196] = 640, + [2197] = 361, + [2198] = 653, + [2199] = 2168, + [2200] = 361, + [2201] = 2187, + [2202] = 318, + [2203] = 319, + [2204] = 2176, + [2205] = 585, + [2206] = 317, + [2207] = 642, + [2208] = 318, + [2209] = 319, + [2210] = 654, + [2211] = 317, + [2212] = 318, + [2213] = 2175, + [2214] = 318, + [2215] = 2168, + [2216] = 318, + [2217] = 319, + [2218] = 648, + [2219] = 662, + [2220] = 317, + [2221] = 318, [2222] = 319, - [2223] = 317, - [2224] = 318, - [2225] = 318, - [2226] = 2089, - [2227] = 2082, - [2228] = 319, - [2229] = 338, - [2230] = 2230, - [2231] = 2216, - [2232] = 318, + [2223] = 2176, + [2224] = 2224, + [2225] = 663, + [2226] = 2226, + [2227] = 317, + [2228] = 318, + [2229] = 319, + [2230] = 317, + [2231] = 319, + [2232] = 329, [2233] = 318, - [2234] = 317, - [2235] = 2138, - [2236] = 318, - [2237] = 2138, - [2238] = 317, - [2239] = 319, - [2240] = 317, - [2241] = 318, - [2242] = 2242, - [2243] = 319, - [2244] = 2166, - [2245] = 318, - [2246] = 2127, - [2247] = 2247, - [2248] = 317, + [2234] = 2234, + [2235] = 319, + [2236] = 2157, + [2237] = 2237, + [2238] = 2128, + [2239] = 361, + [2240] = 2138, + [2241] = 329, + [2242] = 329, + [2243] = 2243, + [2244] = 317, + [2245] = 317, + [2246] = 318, + [2247] = 319, + [2248] = 2131, [2249] = 318, [2250] = 319, [2251] = 317, - [2252] = 338, - [2253] = 2092, - [2254] = 336, - [2255] = 2155, - [2256] = 2146, - [2257] = 337, - [2258] = 338, - [2259] = 340, - [2260] = 333, - [2261] = 334, - [2262] = 371, - [2263] = 372, - [2264] = 373, - [2265] = 374, - [2266] = 375, - [2267] = 376, - [2268] = 338, - [2269] = 337, - [2270] = 340, - [2271] = 338, - [2272] = 340, - [2273] = 340, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, - [2277] = 371, - [2278] = 338, - [2279] = 373, - [2280] = 374, - [2281] = 375, - [2282] = 376, - [2283] = 2275, - [2284] = 336, - [2285] = 2285, - [2286] = 333, - [2287] = 334, - [2288] = 338, - [2289] = 2155, - [2290] = 2146, - [2291] = 2291, - [2292] = 2291, - [2293] = 2276, - [2294] = 2285, - [2295] = 2275, - [2296] = 338, - [2297] = 2155, - [2298] = 2146, - [2299] = 2155, - [2300] = 2146, - [2301] = 338, - [2302] = 2285, - [2303] = 2275, - [2304] = 338, - [2305] = 372, - [2306] = 2306, - [2307] = 319, - [2308] = 317, - [2309] = 318, - [2310] = 2291, - [2311] = 371, + [2252] = 318, + [2253] = 319, + [2254] = 317, + [2255] = 317, + [2256] = 319, + [2257] = 317, + [2258] = 318, + [2259] = 319, + [2260] = 2171, + [2261] = 2156, + [2262] = 2111, + [2263] = 2263, + [2264] = 329, + [2265] = 2110, + [2266] = 361, + [2267] = 2169, + [2268] = 2175, + [2269] = 317, + [2270] = 318, + [2271] = 319, + [2272] = 317, + [2273] = 318, + [2274] = 319, + [2275] = 2171, + [2276] = 2237, + [2277] = 2103, + [2278] = 317, + [2279] = 318, + [2280] = 2105, + [2281] = 2281, + [2282] = 2169, + [2283] = 2175, + [2284] = 2130, + [2285] = 318, + [2286] = 361, + [2287] = 2287, + [2288] = 2167, + [2289] = 2173, + [2290] = 350, + [2291] = 373, + [2292] = 362, + [2293] = 2293, + [2294] = 329, + [2295] = 366, + [2296] = 2296, + [2297] = 341, + [2298] = 343, + [2299] = 345, + [2300] = 361, + [2301] = 2167, + [2302] = 2173, + [2303] = 344, + [2304] = 2293, + [2305] = 362, + [2306] = 2296, + [2307] = 361, + [2308] = 366, + [2309] = 361, + [2310] = 372, + [2311] = 369, [2312] = 372, - [2313] = 373, - [2314] = 374, - [2315] = 375, - [2316] = 376, - [2317] = 337, - [2318] = 319, - [2319] = 317, - [2320] = 318, - [2321] = 338, - [2322] = 371, - [2323] = 372, - [2324] = 319, - [2325] = 317, - [2326] = 318, - [2327] = 373, - [2328] = 319, - [2329] = 317, - [2330] = 318, - [2331] = 374, - [2332] = 319, - [2333] = 317, - [2334] = 318, - [2335] = 319, - [2336] = 317, - [2337] = 318, - [2338] = 340, - [2339] = 340, - [2340] = 338, - [2341] = 375, - [2342] = 376, - [2343] = 2216, - [2344] = 2276, - [2345] = 336, - [2346] = 2276, - [2347] = 340, - [2348] = 338, - [2349] = 338, - [2350] = 338, - [2351] = 333, - [2352] = 2306, - [2353] = 334, - [2354] = 338, - [2355] = 338, - [2356] = 318, - [2357] = 319, - [2358] = 2291, - [2359] = 318, - [2360] = 317, + [2313] = 2167, + [2314] = 2293, + [2315] = 2315, + [2316] = 373, + [2317] = 341, + [2318] = 2173, + [2319] = 361, + [2320] = 343, + [2321] = 345, + [2322] = 350, + [2323] = 344, + [2324] = 361, + [2325] = 329, + [2326] = 361, + [2327] = 2293, + [2328] = 369, + [2329] = 361, + [2330] = 2167, + [2331] = 2315, + [2332] = 2173, + [2333] = 2333, + [2334] = 2333, + [2335] = 2333, + [2336] = 361, + [2337] = 317, + [2338] = 318, + [2339] = 319, + [2340] = 361, + [2341] = 317, + [2342] = 318, + [2343] = 319, + [2344] = 2237, + [2345] = 350, + [2346] = 362, + [2347] = 366, + [2348] = 317, + [2349] = 318, + [2350] = 319, + [2351] = 317, + [2352] = 318, + [2353] = 319, + [2354] = 2315, + [2355] = 369, + [2356] = 372, + [2357] = 373, + [2358] = 341, + [2359] = 343, + [2360] = 345, [2361] = 318, - [2362] = 2362, - [2363] = 2362, - [2364] = 319, - [2365] = 317, - [2366] = 318, - [2367] = 2291, - [2368] = 2291, - [2369] = 319, - [2370] = 2362, - [2371] = 2362, - [2372] = 319, - [2373] = 317, - [2374] = 317, - [2375] = 338, - [2376] = 338, - [2377] = 340, - [2378] = 338, - [2379] = 338, - [2380] = 2306, - [2381] = 2381, - [2382] = 2381, - [2383] = 2381, - [2384] = 2381, - [2385] = 2381, - [2386] = 2381, - [2387] = 338, - [2388] = 2381, - [2389] = 2381, - [2390] = 2381, - [2391] = 2381, - [2392] = 2381, - [2393] = 2381, - [2394] = 2381, - [2395] = 2381, - [2396] = 2381, - [2397] = 338, - [2398] = 338, - [2399] = 2381, - [2400] = 2381, - [2401] = 2381, - [2402] = 2381, - [2403] = 115, - [2404] = 2404, - [2405] = 246, - [2406] = 115, - [2407] = 263, - [2408] = 276, - [2409] = 450, - [2410] = 461, - [2411] = 455, - [2412] = 463, - [2413] = 2413, - [2414] = 469, - [2415] = 2415, - [2416] = 461, - [2417] = 231, - [2418] = 440, - [2419] = 474, - [2420] = 463, - [2421] = 455, - [2422] = 440, - [2423] = 445, - [2424] = 444, - [2425] = 115, - [2426] = 462, - [2427] = 462, - [2428] = 263, - [2429] = 115, - [2430] = 444, - [2431] = 459, - [2432] = 449, - [2433] = 451, - [2434] = 447, - [2435] = 442, - [2436] = 449, - [2437] = 454, - [2438] = 452, - [2439] = 456, - [2440] = 445, - [2441] = 446, - [2442] = 450, - [2443] = 448, - [2444] = 458, - [2445] = 451, - [2446] = 452, - [2447] = 465, - [2448] = 464, - [2449] = 447, - [2450] = 458, - [2451] = 517, - [2452] = 468, - [2453] = 276, - [2454] = 466, - [2455] = 535, - [2456] = 536, - [2457] = 549, - [2458] = 537, - [2459] = 469, - [2460] = 538, - [2461] = 539, - [2462] = 551, - [2463] = 540, - [2464] = 541, - [2465] = 458, - [2466] = 542, - [2467] = 246, - [2468] = 478, - [2469] = 479, - [2470] = 465, - [2471] = 464, - [2472] = 544, - [2473] = 545, - [2474] = 546, - [2475] = 547, - [2476] = 548, - [2477] = 549, - [2478] = 551, - [2479] = 514, - [2480] = 526, - [2481] = 514, - [2482] = 476, - [2483] = 459, - [2484] = 536, - [2485] = 524, - [2486] = 445, - [2487] = 480, - [2488] = 486, - [2489] = 446, - [2490] = 516, - [2491] = 278, - [2492] = 537, - [2493] = 527, - [2494] = 543, - [2495] = 538, - [2496] = 471, - [2497] = 472, - [2498] = 473, - [2499] = 468, - [2500] = 528, - [2501] = 524, - [2502] = 517, - [2503] = 472, - [2504] = 522, - [2505] = 473, - [2506] = 529, - [2507] = 115, - [2508] = 476, - [2509] = 478, - [2510] = 527, - [2511] = 478, - [2512] = 479, - [2513] = 479, - [2514] = 468, - [2515] = 468, - [2516] = 530, - [2517] = 548, - [2518] = 480, - [2519] = 486, - [2520] = 470, - [2521] = 446, - [2522] = 458, - [2523] = 518, - [2524] = 529, - [2525] = 519, - [2526] = 531, - [2527] = 520, - [2528] = 539, - [2529] = 466, - [2530] = 456, - [2531] = 526, - [2532] = 540, - [2533] = 541, - [2534] = 530, - [2535] = 531, - [2536] = 478, - [2537] = 448, - [2538] = 475, - [2539] = 542, - [2540] = 445, - [2541] = 535, - [2542] = 448, - [2543] = 516, - [2544] = 523, - [2545] = 478, - [2546] = 528, - [2547] = 533, - [2548] = 543, - [2549] = 534, - [2550] = 479, - [2551] = 533, - [2552] = 478, - [2553] = 544, - [2554] = 448, - [2555] = 479, - [2556] = 545, - [2557] = 468, - [2558] = 444, - [2559] = 546, - [2560] = 449, - [2561] = 470, - [2562] = 451, - [2563] = 534, - [2564] = 451, - [2565] = 474, - [2566] = 479, - [2567] = 518, - [2568] = 468, - [2569] = 442, - [2570] = 519, - [2571] = 520, - [2572] = 475, - [2573] = 471, - [2574] = 547, - [2575] = 521, - [2576] = 522, - [2577] = 454, - [2578] = 523, - [2579] = 521, - [2580] = 2580, - [2581] = 500, - [2582] = 501, - [2583] = 502, - [2584] = 503, - [2585] = 504, - [2586] = 506, - [2587] = 507, - [2588] = 508, - [2589] = 511, - [2590] = 451, - [2591] = 446, - [2592] = 440, - [2593] = 446, - [2594] = 455, - [2595] = 498, - [2596] = 499, - [2597] = 2597, - [2598] = 463, - [2599] = 484, - [2600] = 485, - [2601] = 509, - [2602] = 2602, - [2603] = 451, - [2604] = 497, - [2605] = 440, - [2606] = 512, - [2607] = 461, - [2608] = 513, - [2609] = 487, - [2610] = 488, - [2611] = 448, - [2612] = 489, - [2613] = 490, + [2362] = 319, + [2363] = 317, + [2364] = 318, + [2365] = 319, + [2366] = 2315, + [2367] = 369, + [2368] = 372, + [2369] = 361, + [2370] = 2370, + [2371] = 373, + [2372] = 361, + [2373] = 361, + [2374] = 341, + [2375] = 361, + [2376] = 344, + [2377] = 343, + [2378] = 345, + [2379] = 2370, + [2380] = 2296, + [2381] = 361, + [2382] = 329, + [2383] = 317, + [2384] = 2384, + [2385] = 317, + [2386] = 319, + [2387] = 2384, + [2388] = 318, + [2389] = 318, + [2390] = 319, + [2391] = 319, + [2392] = 2384, + [2393] = 2296, + [2394] = 2384, + [2395] = 317, + [2396] = 317, + [2397] = 318, + [2398] = 319, + [2399] = 318, + [2400] = 317, + [2401] = 2296, + [2402] = 2296, + [2403] = 2370, + [2404] = 361, + [2405] = 361, + [2406] = 329, + [2407] = 361, + [2408] = 361, + [2409] = 2409, + [2410] = 2409, + [2411] = 2409, + [2412] = 2409, + [2413] = 2409, + [2414] = 2409, + [2415] = 361, + [2416] = 361, + [2417] = 2409, + [2418] = 2409, + [2419] = 2409, + [2420] = 2409, + [2421] = 2409, + [2422] = 2409, + [2423] = 2409, + [2424] = 2409, + [2425] = 2409, + [2426] = 2409, + [2427] = 2409, + [2428] = 361, + [2429] = 2409, + [2430] = 2409, + [2431] = 116, + [2432] = 2432, + [2433] = 212, + [2434] = 217, + [2435] = 216, + [2436] = 116, + [2437] = 443, + [2438] = 445, + [2439] = 455, + [2440] = 467, + [2441] = 437, + [2442] = 2442, + [2443] = 513, + [2444] = 261, + [2445] = 443, + [2446] = 2446, + [2447] = 511, + [2448] = 437, + [2449] = 445, + [2450] = 455, + [2451] = 465, + [2452] = 447, + [2453] = 451, + [2454] = 449, + [2455] = 464, + [2456] = 116, + [2457] = 462, + [2458] = 472, + [2459] = 452, + [2460] = 453, + [2461] = 467, + [2462] = 448, + [2463] = 453, + [2464] = 462, + [2465] = 475, + [2466] = 460, + [2467] = 463, + [2468] = 468, + [2469] = 465, + [2470] = 454, + [2471] = 212, + [2472] = 458, + [2473] = 477, + [2474] = 477, + [2475] = 449, + [2476] = 474, + [2477] = 442, + [2478] = 447, + [2479] = 469, + [2480] = 471, + [2481] = 444, + [2482] = 116, + [2483] = 446, + [2484] = 456, + [2485] = 476, + [2486] = 473, + [2487] = 459, + [2488] = 463, + [2489] = 469, + [2490] = 464, + [2491] = 532, + [2492] = 514, + [2493] = 493, + [2494] = 456, + [2495] = 457, + [2496] = 537, + [2497] = 444, + [2498] = 532, + [2499] = 528, + [2500] = 463, + [2501] = 494, + [2502] = 529, + [2503] = 217, + [2504] = 492, + [2505] = 528, + [2506] = 492, + [2507] = 216, + [2508] = 495, + [2509] = 533, + [2510] = 528, + [2511] = 491, + [2512] = 516, + [2513] = 449, + [2514] = 527, + [2515] = 452, + [2516] = 437, + [2517] = 508, + [2518] = 538, + [2519] = 442, + [2520] = 540, + [2521] = 462, + [2522] = 517, + [2523] = 543, + [2524] = 526, + [2525] = 551, + [2526] = 474, + [2527] = 468, + [2528] = 546, + [2529] = 538, + [2530] = 540, + [2531] = 487, + [2532] = 544, + [2533] = 543, + [2534] = 475, + [2535] = 447, + [2536] = 462, + [2537] = 456, + [2538] = 528, + [2539] = 459, + [2540] = 548, + [2541] = 468, + [2542] = 533, + [2543] = 451, + [2544] = 481, + [2545] = 490, + [2546] = 491, + [2547] = 494, + [2548] = 498, + [2549] = 446, + [2550] = 536, + [2551] = 492, + [2552] = 530, + [2553] = 514, + [2554] = 510, + [2555] = 516, + [2556] = 492, + [2557] = 447, + [2558] = 536, + [2559] = 476, + [2560] = 531, + [2561] = 491, + [2562] = 529, + [2563] = 515, + [2564] = 548, + [2565] = 492, + [2566] = 531, + [2567] = 479, + [2568] = 528, + [2569] = 508, + [2570] = 279, + [2571] = 544, + [2572] = 537, + [2573] = 549, + [2574] = 484, + [2575] = 513, + [2576] = 549, + [2577] = 517, + [2578] = 495, + [2579] = 491, + [2580] = 484, + [2581] = 551, + [2582] = 530, + [2583] = 509, + [2584] = 528, + [2585] = 464, + [2586] = 491, + [2587] = 527, + [2588] = 511, + [2589] = 472, + [2590] = 507, + [2591] = 526, + [2592] = 498, + [2593] = 510, + [2594] = 454, + [2595] = 493, + [2596] = 509, + [2597] = 458, + [2598] = 515, + [2599] = 507, + [2600] = 449, + [2601] = 479, + [2602] = 491, + [2603] = 481, + [2604] = 490, + [2605] = 487, + [2606] = 492, + [2607] = 437, + [2608] = 473, + [2609] = 471, + [2610] = 460, + [2611] = 116, + [2612] = 546, + [2613] = 456, [2614] = 448, - [2615] = 2615, - [2616] = 2616, - [2617] = 489, - [2618] = 490, - [2619] = 2619, - [2620] = 497, - [2621] = 498, - [2622] = 456, - [2623] = 499, - [2624] = 500, - [2625] = 501, - [2626] = 502, - [2627] = 458, - [2628] = 503, - [2629] = 445, - [2630] = 2630, - [2631] = 504, - [2632] = 2616, - [2633] = 2633, - [2634] = 506, - [2635] = 2635, - [2636] = 507, - [2637] = 508, - [2638] = 459, - [2639] = 451, - [2640] = 2640, - [2641] = 458, - [2642] = 444, - [2643] = 445, - [2644] = 448, - [2645] = 2616, - [2646] = 2633, - [2647] = 2635, - [2648] = 446, - [2649] = 511, - [2650] = 446, - [2651] = 440, - [2652] = 464, - [2653] = 2653, - [2654] = 2654, - [2655] = 449, - [2656] = 463, - [2657] = 463, - [2658] = 2616, - [2659] = 2633, - [2660] = 263, - [2661] = 455, - [2662] = 458, - [2663] = 444, - [2664] = 458, - [2665] = 2616, - [2666] = 2633, - [2667] = 447, - [2668] = 445, - [2669] = 2616, - [2670] = 2633, - [2671] = 446, - [2672] = 2616, - [2673] = 2633, - [2674] = 2633, - [2675] = 2616, - [2676] = 2633, - [2677] = 449, - [2678] = 2616, - [2679] = 2633, - [2680] = 452, - [2681] = 2616, - [2682] = 464, - [2683] = 442, - [2684] = 2616, - [2685] = 447, - [2686] = 2640, - [2687] = 2616, - [2688] = 485, - [2689] = 2616, - [2690] = 448, - [2691] = 452, - [2692] = 2616, - [2693] = 462, - [2694] = 459, - [2695] = 451, - [2696] = 2696, - [2697] = 2616, - [2698] = 446, - [2699] = 459, - [2700] = 2635, - [2701] = 2633, - [2702] = 451, - [2703] = 513, - [2704] = 451, - [2705] = 2616, - [2706] = 2696, - [2707] = 445, - [2708] = 487, - [2709] = 2709, - [2710] = 451, - [2711] = 488, - [2712] = 448, - [2713] = 444, - [2714] = 455, - [2715] = 2635, - [2716] = 449, - [2717] = 2616, - [2718] = 2635, - [2719] = 489, - [2720] = 2633, - [2721] = 490, - [2722] = 2630, - [2723] = 497, - [2724] = 498, - [2725] = 2619, - [2726] = 499, - [2727] = 500, - [2728] = 501, - [2729] = 2635, - [2730] = 502, - [2731] = 451, - [2732] = 503, - [2733] = 504, - [2734] = 506, - [2735] = 507, - [2736] = 450, - [2737] = 2635, - [2738] = 508, - [2739] = 2633, - [2740] = 511, - [2741] = 465, - [2742] = 509, - [2743] = 454, - [2744] = 461, - [2745] = 465, - [2746] = 484, - [2747] = 456, - [2748] = 115, - [2749] = 512, - [2750] = 2635, - [2751] = 2616, - [2752] = 513, - [2753] = 487, - [2754] = 2633, - [2755] = 450, - [2756] = 442, - [2757] = 451, - [2758] = 448, - [2759] = 454, - [2760] = 488, - [2761] = 462, - [2762] = 2762, - [2763] = 451, - [2764] = 448, - [2765] = 448, - [2766] = 448, - [2767] = 2616, - [2768] = 448, - [2769] = 2633, - [2770] = 512, - [2771] = 512, - [2772] = 2772, - [2773] = 2773, - [2774] = 469, - [2775] = 2775, - [2776] = 484, - [2777] = 470, - [2778] = 485, - [2779] = 2779, - [2780] = 509, - [2781] = 2781, + [2615] = 462, + [2616] = 455, + [2617] = 456, + [2618] = 2618, + [2619] = 443, + [2620] = 483, + [2621] = 486, + [2622] = 499, + [2623] = 501, + [2624] = 503, + [2625] = 504, + [2626] = 505, + [2627] = 506, + [2628] = 518, + [2629] = 519, + [2630] = 520, + [2631] = 457, + [2632] = 522, + [2633] = 523, + [2634] = 524, + [2635] = 539, + [2636] = 547, + [2637] = 552, + [2638] = 462, + [2639] = 2639, + [2640] = 445, + [2641] = 457, + [2642] = 2642, + [2643] = 2643, + [2644] = 496, + [2645] = 497, + [2646] = 478, + [2647] = 468, + [2648] = 437, + [2649] = 468, + [2650] = 456, + [2651] = 521, + [2652] = 2652, + [2653] = 505, + [2654] = 506, + [2655] = 518, + [2656] = 519, + [2657] = 520, + [2658] = 521, + [2659] = 522, + [2660] = 523, + [2661] = 524, + [2662] = 539, + [2663] = 2663, + [2664] = 547, + [2665] = 552, + [2666] = 2666, + [2667] = 473, + [2668] = 475, + [2669] = 468, + [2670] = 455, + [2671] = 503, + [2672] = 462, + [2673] = 116, + [2674] = 468, + [2675] = 443, + [2676] = 463, + [2677] = 445, + [2678] = 464, + [2679] = 504, + [2680] = 447, + [2681] = 474, + [2682] = 448, + [2683] = 449, + [2684] = 451, + [2685] = 456, + [2686] = 2652, + [2687] = 505, + [2688] = 2688, + [2689] = 506, + [2690] = 518, + [2691] = 519, + [2692] = 520, + [2693] = 521, + [2694] = 522, + [2695] = 523, + [2696] = 524, + [2697] = 539, + [2698] = 547, + [2699] = 552, + [2700] = 499, + [2701] = 467, + [2702] = 456, + [2703] = 473, + [2704] = 2663, + [2705] = 475, + [2706] = 454, + [2707] = 501, + [2708] = 447, + [2709] = 457, + [2710] = 460, + [2711] = 449, + [2712] = 458, + [2713] = 462, + [2714] = 442, + [2715] = 468, + [2716] = 476, + [2717] = 2717, + [2718] = 2663, + [2719] = 447, + [2720] = 449, + [2721] = 456, + [2722] = 2688, + [2723] = 2652, + [2724] = 2688, + [2725] = 2663, + [2726] = 2726, + [2727] = 443, + [2728] = 452, + [2729] = 445, + [2730] = 453, + [2731] = 468, + [2732] = 477, + [2733] = 459, + [2734] = 2652, + [2735] = 483, + [2736] = 2688, + [2737] = 2663, + [2738] = 447, + [2739] = 2666, + [2740] = 2740, + [2741] = 444, + [2742] = 446, + [2743] = 2652, + [2744] = 2688, + [2745] = 2663, + [2746] = 2652, + [2747] = 496, + [2748] = 486, + [2749] = 2652, + [2750] = 2688, + [2751] = 2652, + [2752] = 2688, + [2753] = 448, + [2754] = 2652, + [2755] = 2688, + [2756] = 449, + [2757] = 497, + [2758] = 2652, + [2759] = 2688, + [2760] = 451, + [2761] = 2652, + [2762] = 2688, + [2763] = 2652, + [2764] = 2688, + [2765] = 2652, + [2766] = 2652, + [2767] = 2652, + [2768] = 2652, + [2769] = 2688, + [2770] = 2652, + [2771] = 2771, + [2772] = 212, + [2773] = 462, + [2774] = 2663, + [2775] = 465, + [2776] = 2717, + [2777] = 478, + [2778] = 463, + [2779] = 463, + [2780] = 464, + [2781] = 454, [2782] = 2782, [2783] = 2783, - [2784] = 468, - [2785] = 2709, - [2786] = 465, - [2787] = 2619, - [2788] = 475, - [2789] = 263, - [2790] = 115, - [2791] = 2791, - [2792] = 2783, - [2793] = 517, - [2794] = 518, - [2795] = 2775, - [2796] = 461, - [2797] = 459, - [2798] = 521, - [2799] = 512, - [2800] = 522, - [2801] = 523, - [2802] = 524, - [2803] = 2773, - [2804] = 2791, - [2805] = 2772, - [2806] = 513, - [2807] = 526, - [2808] = 527, - [2809] = 2775, - [2810] = 528, - [2811] = 512, - [2812] = 513, - [2813] = 487, - [2814] = 488, - [2815] = 489, - [2816] = 2779, - [2817] = 490, - [2818] = 497, - [2819] = 498, - [2820] = 499, - [2821] = 500, - [2822] = 501, - [2823] = 502, - [2824] = 503, - [2825] = 504, - [2826] = 506, - [2827] = 507, - [2828] = 508, - [2829] = 2781, - [2830] = 2782, - [2831] = 511, - [2832] = 487, - [2833] = 488, - [2834] = 529, - [2835] = 489, + [2784] = 2784, + [2785] = 2652, + [2786] = 2726, + [2787] = 474, + [2788] = 456, + [2789] = 460, + [2790] = 483, + [2791] = 2688, + [2792] = 486, + [2793] = 467, + [2794] = 469, + [2795] = 462, + [2796] = 464, + [2797] = 471, + [2798] = 469, + [2799] = 472, + [2800] = 462, + [2801] = 462, + [2802] = 2652, + [2803] = 2688, + [2804] = 2663, + [2805] = 474, + [2806] = 499, + [2807] = 2771, + [2808] = 458, + [2809] = 442, + [2810] = 476, + [2811] = 501, + [2812] = 465, + [2813] = 462, + [2814] = 452, + [2815] = 453, + [2816] = 477, + [2817] = 459, + [2818] = 471, + [2819] = 462, + [2820] = 456, + [2821] = 456, + [2822] = 444, + [2823] = 456, + [2824] = 457, + [2825] = 446, + [2826] = 503, + [2827] = 504, + [2828] = 456, + [2829] = 457, + [2830] = 457, + [2831] = 472, + [2832] = 2832, + [2833] = 2833, + [2834] = 497, + [2835] = 2835, [2836] = 2836, - [2837] = 490, - [2838] = 497, - [2839] = 498, - [2840] = 499, - [2841] = 530, - [2842] = 500, - [2843] = 501, - [2844] = 531, - [2845] = 502, - [2846] = 503, - [2847] = 504, - [2848] = 506, - [2849] = 507, - [2850] = 478, - [2851] = 533, - [2852] = 479, - [2853] = 508, - [2854] = 444, - [2855] = 466, - [2856] = 2762, - [2857] = 535, - [2858] = 536, - [2859] = 449, - [2860] = 537, - [2861] = 538, - [2862] = 539, - [2863] = 540, - [2864] = 541, - [2865] = 542, - [2866] = 2772, - [2867] = 2783, - [2868] = 544, - [2869] = 2869, - [2870] = 545, - [2871] = 547, - [2872] = 548, - [2873] = 551, - [2874] = 514, - [2875] = 2775, - [2876] = 442, - [2877] = 476, - [2878] = 480, - [2879] = 2879, - [2880] = 486, - [2881] = 516, - [2882] = 2779, - [2883] = 454, - [2884] = 543, - [2885] = 471, - [2886] = 472, - [2887] = 473, - [2888] = 519, - [2889] = 520, - [2890] = 2781, - [2891] = 2782, - [2892] = 446, - [2893] = 511, - [2894] = 463, - [2895] = 2783, - [2896] = 2775, - [2897] = 2779, - [2898] = 534, - [2899] = 484, - [2900] = 455, - [2901] = 2781, - [2902] = 2782, - [2903] = 485, - [2904] = 517, - [2905] = 518, - [2906] = 519, - [2907] = 520, - [2908] = 458, - [2909] = 521, - [2910] = 522, - [2911] = 450, - [2912] = 523, - [2913] = 524, - [2914] = 452, - [2915] = 464, - [2916] = 526, - [2917] = 527, - [2918] = 2775, - [2919] = 2779, - [2920] = 447, - [2921] = 2781, - [2922] = 2782, - [2923] = 528, - [2924] = 509, - [2925] = 546, - [2926] = 549, - [2927] = 529, - [2928] = 445, - [2929] = 530, - [2930] = 531, - [2931] = 474, - [2932] = 2791, - [2933] = 533, - [2934] = 534, - [2935] = 448, - [2936] = 2779, - [2937] = 2781, - [2938] = 2782, - [2939] = 466, - [2940] = 535, - [2941] = 536, - [2942] = 448, - [2943] = 537, - [2944] = 2775, - [2945] = 538, - [2946] = 451, - [2947] = 539, - [2948] = 540, - [2949] = 541, - [2950] = 263, - [2951] = 470, - [2952] = 475, - [2953] = 542, - [2954] = 2775, - [2955] = 448, - [2956] = 115, - [2957] = 451, - [2958] = 463, - [2959] = 276, - [2960] = 478, - [2961] = 479, - [2962] = 468, - [2963] = 2775, - [2964] = 455, - [2965] = 469, - [2966] = 2775, - [2967] = 246, - [2968] = 2775, - [2969] = 446, - [2970] = 2775, - [2971] = 478, - [2972] = 479, - [2973] = 2775, - [2974] = 2775, - [2975] = 461, - [2976] = 2775, - [2977] = 448, - [2978] = 544, - [2979] = 2775, - [2980] = 545, - [2981] = 468, - [2982] = 2775, - [2983] = 458, - [2984] = 546, - [2985] = 547, - [2986] = 548, - [2987] = 549, - [2988] = 551, - [2989] = 514, - [2990] = 445, - [2991] = 478, - [2992] = 479, - [2993] = 2781, - [2994] = 2782, - [2995] = 476, - [2996] = 480, - [2997] = 486, - [2998] = 516, - [2999] = 456, - [3000] = 543, - [3001] = 471, - [3002] = 451, - [3003] = 468, - [3004] = 472, - [3005] = 3005, - [3006] = 3006, - [3007] = 487, - [3008] = 488, - [3009] = 489, - [3010] = 490, - [3011] = 497, - [3012] = 498, - [3013] = 499, - [3014] = 500, - [3015] = 501, - [3016] = 502, - [3017] = 503, - [3018] = 504, - [3019] = 506, - [3020] = 507, - [3021] = 508, - [3022] = 511, - [3023] = 2615, - [3024] = 473, - [3025] = 512, - [3026] = 513, - [3027] = 2630, - [3028] = 474, - [3029] = 513, - [3030] = 487, - [3031] = 488, - [3032] = 489, - [3033] = 490, - [3034] = 497, - [3035] = 498, - [3036] = 499, - [3037] = 500, - [3038] = 501, - [3039] = 502, - [3040] = 503, - [3041] = 504, - [3042] = 506, - [3043] = 507, - [3044] = 508, - [3045] = 511, - [3046] = 276, - [3047] = 246, - [3048] = 478, - [3049] = 479, - [3050] = 468, - [3051] = 478, - [3052] = 446, - [3053] = 479, - [3054] = 3054, - [3055] = 468, - [3056] = 462, - [3057] = 3057, - [3058] = 451, - [3059] = 451, - [3060] = 2630, - [3061] = 2783, - [3062] = 484, - [3063] = 485, - [3064] = 509, - [3065] = 2775, - [3066] = 448, - [3067] = 451, - [3068] = 2879, - [3069] = 451, - [3070] = 2773, - [3071] = 2779, - [3072] = 2775, - [3073] = 548, - [3074] = 542, - [3075] = 3075, - [3076] = 3076, - [3077] = 3077, - [3078] = 3078, - [3079] = 3079, - [3080] = 3080, - [3081] = 3081, - [3082] = 3082, - [3083] = 474, - [3084] = 3084, - [3085] = 3085, - [3086] = 3086, - [3087] = 3087, - [3088] = 3075, - [3089] = 3089, - [3090] = 3090, - [3091] = 513, - [3092] = 3092, - [3093] = 3085, - [3094] = 3094, - [3095] = 3095, - [3096] = 2619, - [3097] = 3097, - [3098] = 3098, - [3099] = 520, - [3100] = 468, - [3101] = 512, - [3102] = 535, - [3103] = 3090, - [3104] = 3104, - [3105] = 513, - [3106] = 3080, - [3107] = 3081, - [3108] = 536, - [3109] = 3085, - [3110] = 469, - [3111] = 533, - [3112] = 3112, - [3113] = 487, - [3114] = 3114, - [3115] = 470, - [3116] = 487, - [3117] = 488, - [3118] = 3118, - [3119] = 488, - [3120] = 489, - [3121] = 3121, - [3122] = 3097, - [3123] = 489, - [3124] = 490, - [3125] = 497, - [3126] = 3075, - [3127] = 498, - [3128] = 499, - [3129] = 3129, - [3130] = 526, - [3131] = 3090, - [3132] = 500, - [3133] = 501, - [3134] = 502, - [3135] = 503, - [3136] = 3136, - [3137] = 504, - [3138] = 490, - [3139] = 3139, - [3140] = 506, - [3141] = 3085, - [3142] = 507, - [3143] = 3097, - [3144] = 519, - [3145] = 3136, - [3146] = 508, - [3147] = 3080, - [3148] = 3081, - [3149] = 497, - [3150] = 3150, - [3151] = 498, - [3152] = 3152, + [2837] = 474, + [2838] = 2838, + [2839] = 458, + [2840] = 442, + [2841] = 478, + [2842] = 476, + [2843] = 2618, + [2844] = 481, + [2845] = 531, + [2846] = 498, + [2847] = 536, + [2848] = 537, + [2849] = 2849, + [2850] = 460, + [2851] = 510, + [2852] = 2852, + [2853] = 2838, + [2854] = 2849, + [2855] = 511, + [2856] = 483, + [2857] = 478, + [2858] = 2835, + [2859] = 548, + [2860] = 452, + [2861] = 453, + [2862] = 479, + [2863] = 477, + [2864] = 459, + [2865] = 2849, + [2866] = 2833, + [2867] = 469, + [2868] = 462, + [2869] = 2836, + [2870] = 2870, + [2871] = 486, + [2872] = 2849, + [2873] = 2784, + [2874] = 2835, + [2875] = 2875, + [2876] = 2876, + [2877] = 2836, + [2878] = 2875, + [2879] = 2849, + [2880] = 530, + [2881] = 2881, + [2882] = 538, + [2883] = 444, + [2884] = 446, + [2885] = 540, + [2886] = 2849, + [2887] = 487, + [2888] = 456, + [2889] = 116, + [2890] = 479, + [2891] = 2849, + [2892] = 462, + [2893] = 443, + [2894] = 2849, + [2895] = 216, + [2896] = 491, + [2897] = 2849, + [2898] = 2849, + [2899] = 492, + [2900] = 528, + [2901] = 455, + [2902] = 2849, + [2903] = 549, + [2904] = 496, + [2905] = 2849, + [2906] = 445, + [2907] = 513, + [2908] = 2849, + [2909] = 447, + [2910] = 497, + [2911] = 217, + [2912] = 2876, + [2913] = 456, + [2914] = 2833, + [2915] = 462, + [2916] = 449, + [2917] = 543, + [2918] = 478, + [2919] = 499, + [2920] = 487, + [2921] = 501, + [2922] = 2922, + [2923] = 2923, + [2924] = 503, + [2925] = 2925, + [2926] = 532, + [2927] = 504, + [2928] = 505, + [2929] = 506, + [2930] = 518, + [2931] = 2931, + [2932] = 2835, + [2933] = 2836, + [2934] = 537, + [2935] = 519, + [2936] = 520, + [2937] = 493, + [2938] = 521, + [2939] = 522, + [2940] = 523, + [2941] = 524, + [2942] = 539, + [2943] = 2666, + [2944] = 547, + [2945] = 468, + [2946] = 495, + [2947] = 2740, + [2948] = 493, + [2949] = 457, + [2950] = 2833, + [2951] = 2870, + [2952] = 513, + [2953] = 491, + [2954] = 492, + [2955] = 496, + [2956] = 499, + [2957] = 501, + [2958] = 503, + [2959] = 504, + [2960] = 505, + [2961] = 506, + [2962] = 518, + [2963] = 519, + [2964] = 520, + [2965] = 521, + [2966] = 522, + [2967] = 523, + [2968] = 524, + [2969] = 539, + [2970] = 547, + [2971] = 552, + [2972] = 2849, + [2973] = 511, + [2974] = 468, + [2975] = 471, + [2976] = 473, + [2977] = 443, + [2978] = 483, + [2979] = 486, + [2980] = 475, + [2981] = 456, + [2982] = 495, + [2983] = 457, + [2984] = 212, + [2985] = 116, + [2986] = 2838, + [2987] = 2832, + [2988] = 483, + [2989] = 486, + [2990] = 499, + [2991] = 501, + [2992] = 503, + [2993] = 504, + [2994] = 505, + [2995] = 506, + [2996] = 484, + [2997] = 519, + [2998] = 520, + [2999] = 521, + [3000] = 522, + [3001] = 523, + [3002] = 524, + [3003] = 539, + [3004] = 547, + [3005] = 552, + [3006] = 468, + [3007] = 2849, + [3008] = 462, + [3009] = 544, + [3010] = 552, + [3011] = 465, + [3012] = 2838, + [3013] = 507, + [3014] = 508, + [3015] = 455, + [3016] = 2838, + [3017] = 2833, + [3018] = 514, + [3019] = 515, + [3020] = 546, + [3021] = 516, + [3022] = 517, + [3023] = 2835, + [3024] = 526, + [3025] = 527, + [3026] = 2836, + [3027] = 462, + [3028] = 2870, + [3029] = 507, + [3030] = 508, + [3031] = 2875, + [3032] = 509, + [3033] = 2876, + [3034] = 510, + [3035] = 2849, + [3036] = 514, + [3037] = 530, + [3038] = 2849, + [3039] = 515, + [3040] = 528, + [3041] = 454, + [3042] = 532, + [3043] = 516, + [3044] = 533, + [3045] = 517, + [3046] = 491, + [3047] = 536, + [3048] = 2849, + [3049] = 2835, + [3050] = 492, + [3051] = 2666, + [3052] = 483, + [3053] = 548, + [3054] = 491, + [3055] = 486, + [3056] = 463, + [3057] = 538, + [3058] = 540, + [3059] = 543, + [3060] = 499, + [3061] = 501, + [3062] = 503, + [3063] = 2833, + [3064] = 504, + [3065] = 505, + [3066] = 506, + [3067] = 518, + [3068] = 519, + [3069] = 520, + [3070] = 521, + [3071] = 522, + [3072] = 523, + [3073] = 524, + [3074] = 539, + [3075] = 492, + [3076] = 547, + [3077] = 2836, + [3078] = 445, + [3079] = 464, + [3080] = 544, + [3081] = 546, + [3082] = 212, + [3083] = 549, + [3084] = 467, + [3085] = 472, + [3086] = 2835, + [3087] = 2836, + [3088] = 447, + [3089] = 528, + [3090] = 496, + [3091] = 2771, + [3092] = 552, + [3093] = 497, + [3094] = 456, + [3095] = 457, + [3096] = 462, + [3097] = 551, + [3098] = 526, + [3099] = 451, + [3100] = 527, + [3101] = 481, + [3102] = 216, + [3103] = 490, + [3104] = 494, + [3105] = 217, + [3106] = 491, + [3107] = 462, + [3108] = 551, + [3109] = 490, + [3110] = 494, + [3111] = 529, + [3112] = 492, + [3113] = 528, + [3114] = 484, + [3115] = 448, + [3116] = 491, + [3117] = 457, + [3118] = 531, + [3119] = 449, + [3120] = 492, + [3121] = 528, + [3122] = 498, + [3123] = 533, + [3124] = 528, + [3125] = 529, + [3126] = 2849, + [3127] = 509, + [3128] = 456, + [3129] = 457, + [3130] = 2833, + [3131] = 518, + [3132] = 457, + [3133] = 487, + [3134] = 493, + [3135] = 495, + [3136] = 491, + [3137] = 3137, + [3138] = 3138, + [3139] = 511, + [3140] = 457, + [3141] = 3141, + [3142] = 526, + [3143] = 509, + [3144] = 510, + [3145] = 3138, + [3146] = 527, + [3147] = 492, + [3148] = 483, + [3149] = 3149, + [3150] = 3137, + [3151] = 486, + [3152] = 3137, [3153] = 3153, - [3154] = 512, - [3155] = 513, - [3156] = 487, - [3157] = 488, - [3158] = 489, - [3159] = 490, - [3160] = 497, - [3161] = 498, - [3162] = 499, - [3163] = 500, - [3164] = 501, - [3165] = 502, - [3166] = 503, - [3167] = 504, - [3168] = 506, - [3169] = 507, - [3170] = 508, - [3171] = 544, - [3172] = 511, - [3173] = 499, - [3174] = 475, - [3175] = 500, - [3176] = 501, - [3177] = 3090, - [3178] = 3178, - [3179] = 511, - [3180] = 502, - [3181] = 3090, - [3182] = 545, - [3183] = 546, - [3184] = 547, - [3185] = 3085, - [3186] = 549, - [3187] = 503, - [3188] = 3188, - [3189] = 3085, - [3190] = 478, - [3191] = 479, - [3192] = 3097, - [3193] = 551, - [3194] = 3080, - [3195] = 504, - [3196] = 3081, - [3197] = 506, - [3198] = 507, - [3199] = 3097, - [3200] = 514, - [3201] = 527, - [3202] = 476, - [3203] = 445, - [3204] = 469, - [3205] = 3090, - [3206] = 480, - [3207] = 486, - [3208] = 508, - [3209] = 528, - [3210] = 3085, - [3211] = 516, - [3212] = 521, - [3213] = 446, - [3214] = 543, - [3215] = 522, - [3216] = 509, - [3217] = 534, - [3218] = 3129, - [3219] = 3219, - [3220] = 3080, - [3221] = 3090, - [3222] = 458, - [3223] = 445, - [3224] = 3224, - [3225] = 3081, - [3226] = 3085, - [3227] = 3227, - [3228] = 3228, - [3229] = 3090, - [3230] = 3080, - [3231] = 3081, - [3232] = 511, - [3233] = 3085, - [3234] = 3234, - [3235] = 471, - [3236] = 3090, - [3237] = 3085, - [3238] = 472, - [3239] = 473, - [3240] = 3090, - [3241] = 3234, - [3242] = 474, - [3243] = 3085, - [3244] = 3085, - [3245] = 3245, - [3246] = 519, - [3247] = 3085, + [3154] = 3154, + [3155] = 3137, + [3156] = 457, + [3157] = 3138, + [3158] = 3158, + [3159] = 3159, + [3160] = 499, + [3161] = 501, + [3162] = 503, + [3163] = 3163, + [3164] = 504, + [3165] = 505, + [3166] = 520, + [3167] = 506, + [3168] = 518, + [3169] = 519, + [3170] = 520, + [3171] = 521, + [3172] = 522, + [3173] = 523, + [3174] = 524, + [3175] = 539, + [3176] = 3163, + [3177] = 547, + [3178] = 513, + [3179] = 521, + [3180] = 216, + [3181] = 3181, + [3182] = 518, + [3183] = 3183, + [3184] = 552, + [3185] = 522, + [3186] = 3186, + [3187] = 217, + [3188] = 478, + [3189] = 3181, + [3190] = 3183, + [3191] = 3191, + [3192] = 3192, + [3193] = 3193, + [3194] = 483, + [3195] = 486, + [3196] = 499, + [3197] = 501, + [3198] = 503, + [3199] = 504, + [3200] = 505, + [3201] = 506, + [3202] = 518, + [3203] = 528, + [3204] = 552, + [3205] = 519, + [3206] = 520, + [3207] = 521, + [3208] = 522, + [3209] = 523, + [3210] = 524, + [3211] = 539, + [3212] = 547, + [3213] = 3213, + [3214] = 523, + [3215] = 3215, + [3216] = 552, + [3217] = 475, + [3218] = 3218, + [3219] = 468, + [3220] = 3220, + [3221] = 3221, + [3222] = 3222, + [3223] = 3220, + [3224] = 3218, + [3225] = 530, + [3226] = 483, + [3227] = 3221, + [3228] = 486, + [3229] = 3229, + [3230] = 499, + [3231] = 3231, + [3232] = 501, + [3233] = 456, + [3234] = 483, + [3235] = 503, + [3236] = 3163, + [3237] = 496, + [3238] = 3192, + [3239] = 504, + [3240] = 2771, + [3241] = 486, + [3242] = 505, + [3243] = 3215, + [3244] = 497, + [3245] = 506, + [3246] = 518, + [3247] = 519, [3248] = 520, - [3249] = 3078, - [3250] = 511, - [3251] = 276, - [3252] = 485, - [3253] = 517, - [3254] = 3098, - [3255] = 246, - [3256] = 3256, - [3257] = 3245, - [3258] = 3258, - [3259] = 3080, - [3260] = 3078, - [3261] = 3261, - [3262] = 484, - [3263] = 3263, - [3264] = 537, - [3265] = 518, - [3266] = 468, - [3267] = 3267, - [3268] = 3081, - [3269] = 3098, - [3270] = 512, - [3271] = 513, - [3272] = 3272, - [3273] = 487, - [3274] = 488, - [3275] = 489, - [3276] = 490, - [3277] = 497, - [3278] = 498, - [3279] = 499, - [3280] = 500, - [3281] = 501, - [3282] = 502, - [3283] = 503, - [3284] = 504, - [3285] = 506, - [3286] = 507, - [3287] = 508, - [3288] = 3152, + [3249] = 521, + [3250] = 522, + [3251] = 523, + [3252] = 524, + [3253] = 539, + [3254] = 547, + [3255] = 524, + [3256] = 552, + [3257] = 491, + [3258] = 492, + [3259] = 513, + [3260] = 507, + [3261] = 508, + [3262] = 497, + [3263] = 532, + [3264] = 491, + [3265] = 492, + [3266] = 528, + [3267] = 509, + [3268] = 3268, + [3269] = 533, + [3270] = 510, + [3271] = 3271, + [3272] = 536, + [3273] = 499, + [3274] = 501, + [3275] = 503, + [3276] = 504, + [3277] = 505, + [3278] = 506, + [3279] = 518, + [3280] = 519, + [3281] = 520, + [3282] = 521, + [3283] = 522, + [3284] = 523, + [3285] = 524, + [3286] = 539, + [3287] = 547, + [3288] = 552, [3289] = 3289, - [3290] = 511, - [3291] = 485, - [3292] = 529, - [3293] = 3118, - [3294] = 448, - [3295] = 478, - [3296] = 2619, - [3297] = 3245, - [3298] = 479, + [3290] = 483, + [3291] = 486, + [3292] = 3292, + [3293] = 499, + [3294] = 478, + [3295] = 3295, + [3296] = 3138, + [3297] = 3137, + [3298] = 3298, [3299] = 3299, - [3300] = 3300, - [3301] = 538, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3136, + [3300] = 501, + [3301] = 3181, + [3302] = 539, + [3303] = 3183, + [3304] = 537, + [3305] = 528, [3306] = 3306, - [3307] = 3307, - [3308] = 3308, - [3309] = 3309, - [3310] = 487, - [3311] = 488, - [3312] = 489, - [3313] = 490, - [3314] = 497, - [3315] = 498, - [3316] = 499, - [3317] = 500, - [3318] = 501, - [3319] = 502, - [3320] = 503, - [3321] = 504, - [3322] = 506, - [3323] = 507, - [3324] = 508, - [3325] = 511, - [3326] = 512, - [3327] = 513, - [3328] = 3328, + [3307] = 3163, + [3308] = 483, + [3309] = 3137, + [3310] = 503, + [3311] = 3163, + [3312] = 504, + [3313] = 3159, + [3314] = 3314, + [3315] = 2771, + [3316] = 3316, + [3317] = 505, + [3318] = 3318, + [3319] = 538, + [3320] = 3320, + [3321] = 3181, + [3322] = 3322, + [3323] = 506, + [3324] = 3268, + [3325] = 3183, + [3326] = 518, + [3327] = 511, + [3328] = 540, [3329] = 3329, - [3330] = 3330, + [3330] = 543, [3331] = 3331, - [3332] = 3075, + [3332] = 3332, [3333] = 3333, [3334] = 3334, - [3335] = 3335, - [3336] = 3090, - [3337] = 3337, - [3338] = 539, - [3339] = 540, - [3340] = 3234, - [3341] = 478, - [3342] = 479, - [3343] = 468, - [3344] = 3118, - [3345] = 3289, - [3346] = 509, + [3335] = 544, + [3336] = 3268, + [3337] = 3138, + [3338] = 3338, + [3339] = 546, + [3340] = 3340, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 549, + [3345] = 3222, + [3346] = 3346, [3347] = 3347, [3348] = 3348, - [3349] = 2619, - [3350] = 3350, - [3351] = 541, - [3352] = 3352, - [3353] = 3353, - [3354] = 530, - [3355] = 458, + [3349] = 3349, + [3350] = 519, + [3351] = 3351, + [3352] = 520, + [3353] = 3154, + [3354] = 3138, + [3355] = 521, [3356] = 3356, [3357] = 3357, - [3358] = 3085, + [3358] = 522, [3359] = 3359, - [3360] = 3075, - [3361] = 531, - [3362] = 512, - [3363] = 523, - [3364] = 3364, - [3365] = 466, - [3366] = 3152, - [3367] = 3289, - [3368] = 448, - [3369] = 484, - [3370] = 452, - [3371] = 484, - [3372] = 485, - [3373] = 509, - [3374] = 448, - [3375] = 487, - [3376] = 488, - [3377] = 489, - [3378] = 490, - [3379] = 497, - [3380] = 498, - [3381] = 499, - [3382] = 3090, - [3383] = 500, - [3384] = 501, - [3385] = 502, - [3386] = 503, - [3387] = 504, - [3388] = 506, - [3389] = 507, - [3390] = 3390, - [3391] = 508, - [3392] = 3299, - [3393] = 512, - [3394] = 3263, - [3395] = 513, - [3396] = 524, - [3397] = 3397, - [3398] = 3118, - [3399] = 3121, + [3360] = 523, + [3361] = 3181, + [3362] = 524, + [3363] = 3183, + [3364] = 3137, + [3365] = 539, + [3366] = 3138, + [3367] = 3367, + [3368] = 514, + [3369] = 547, + [3370] = 3213, + [3371] = 3371, + [3372] = 3215, + [3373] = 456, + [3374] = 3374, + [3375] = 3375, + [3376] = 3137, + [3377] = 515, + [3378] = 3138, + [3379] = 3379, + [3380] = 3268, + [3381] = 3381, + [3382] = 3181, + [3383] = 3163, + [3384] = 505, + [3385] = 469, + [3386] = 496, + [3387] = 497, + [3388] = 478, + [3389] = 456, + [3390] = 3138, + [3391] = 3137, + [3392] = 3213, + [3393] = 469, + [3394] = 3183, + [3395] = 3222, + [3396] = 516, + [3397] = 517, + [3398] = 3137, + [3399] = 551, [3400] = 3400, - [3401] = 3097, - [3402] = 3121, - [3403] = 3097, - [3404] = 3404, - [3405] = 3263, - [3406] = 3406, - [3407] = 3129, - [3408] = 3408, - [3409] = 452, + [3401] = 3401, + [3402] = 481, + [3403] = 490, + [3404] = 494, + [3405] = 498, + [3406] = 3181, + [3407] = 3138, + [3408] = 3183, + [3409] = 3348, [3410] = 3410, [3411] = 3411, [3412] = 3412, - [3413] = 2653, - [3414] = 451, + [3413] = 3192, + [3414] = 529, [3415] = 3415, - [3416] = 2654, - [3417] = 502, - [3418] = 3418, - [3419] = 3419, - [3420] = 490, - [3421] = 3421, - [3422] = 497, - [3423] = 3423, + [3416] = 3416, + [3417] = 3417, + [3418] = 3137, + [3419] = 3220, + [3420] = 3268, + [3421] = 484, + [3422] = 3221, + [3423] = 3351, [3424] = 3424, - [3425] = 3411, - [3426] = 487, - [3427] = 3427, + [3425] = 3149, + [3426] = 3218, + [3427] = 3351, [3428] = 3428, - [3429] = 3429, - [3430] = 3421, - [3431] = 498, - [3432] = 513, - [3433] = 3433, - [3434] = 3434, - [3435] = 499, - [3436] = 3411, + [3429] = 3154, + [3430] = 3430, + [3431] = 3431, + [3432] = 3138, + [3433] = 552, + [3434] = 486, + [3435] = 506, + [3436] = 547, [3437] = 3437, - [3438] = 3438, + [3438] = 3137, [3439] = 3439, - [3440] = 451, - [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 3445, - [3446] = 3424, - [3447] = 3447, - [3448] = 3448, - [3449] = 503, - [3450] = 3450, - [3451] = 3451, - [3452] = 3452, - [3453] = 3411, - [3454] = 3424, - [3455] = 3455, - [3456] = 3428, - [3457] = 3457, + [3440] = 531, + [3441] = 499, + [3442] = 501, + [3443] = 2771, + [3444] = 3222, + [3445] = 519, + [3446] = 3446, + [3447] = 3138, + [3448] = 3348, + [3449] = 3137, + [3450] = 3163, + [3451] = 3149, + [3452] = 548, + [3453] = 3453, + [3454] = 503, + [3455] = 504, + [3456] = 479, + [3457] = 3137, [3458] = 3458, - [3459] = 3429, + [3459] = 496, [3460] = 3460, - [3461] = 3461, - [3462] = 511, - [3463] = 3463, - [3464] = 3421, + [3461] = 3141, + [3462] = 3462, + [3463] = 457, + [3464] = 3464, [3465] = 3465, - [3466] = 451, - [3467] = 508, - [3468] = 488, - [3469] = 501, + [3466] = 522, + [3467] = 520, + [3468] = 3468, + [3469] = 3469, [3470] = 3470, [3471] = 3471, [3472] = 3472, [3473] = 3473, - [3474] = 500, - [3475] = 3442, + [3474] = 3462, + [3475] = 2832, [3476] = 3476, - [3477] = 501, - [3478] = 502, - [3479] = 3479, - [3480] = 512, - [3481] = 513, - [3482] = 487, - [3483] = 488, - [3484] = 489, - [3485] = 490, - [3486] = 497, - [3487] = 498, - [3488] = 499, - [3489] = 500, - [3490] = 501, - [3491] = 502, - [3492] = 503, - [3493] = 504, - [3494] = 506, - [3495] = 507, - [3496] = 508, - [3497] = 511, - [3498] = 3442, - [3499] = 3421, - [3500] = 3500, - [3501] = 3501, - [3502] = 508, - [3503] = 500, - [3504] = 511, - [3505] = 3411, + [3477] = 3470, + [3478] = 504, + [3479] = 3462, + [3480] = 3480, + [3481] = 3481, + [3482] = 3482, + [3483] = 3483, + [3484] = 3484, + [3485] = 523, + [3486] = 3486, + [3487] = 3486, + [3488] = 3473, + [3489] = 3489, + [3490] = 3490, + [3491] = 3491, + [3492] = 3480, + [3493] = 547, + [3494] = 505, + [3495] = 499, + [3496] = 506, + [3497] = 3473, + [3498] = 3498, + [3499] = 3470, + [3500] = 462, + [3501] = 501, + [3502] = 3502, + [3503] = 3503, + [3504] = 3484, + [3505] = 3469, [3506] = 3506, - [3507] = 3411, - [3508] = 3428, + [3507] = 3480, + [3508] = 3332, [3509] = 3509, - [3510] = 504, - [3511] = 3511, - [3512] = 3421, - [3513] = 512, - [3514] = 3410, - [3515] = 3515, - [3516] = 3463, - [3517] = 3411, - [3518] = 3518, + [3510] = 3510, + [3511] = 518, + [3512] = 2782, + [3513] = 3513, + [3514] = 499, + [3515] = 3470, + [3516] = 483, + [3517] = 3517, + [3518] = 501, [3519] = 3519, - [3520] = 3520, - [3521] = 3411, - [3522] = 3522, - [3523] = 3523, - [3524] = 3411, - [3525] = 498, - [3526] = 3429, - [3527] = 3463, - [3528] = 3410, - [3529] = 506, - [3530] = 3411, - [3531] = 3421, - [3532] = 503, - [3533] = 504, - [3534] = 507, - [3535] = 3535, - [3536] = 3536, - [3537] = 3461, - [3538] = 3428, - [3539] = 3539, - [3540] = 3421, - [3541] = 3411, - [3542] = 3428, - [3543] = 3543, - [3544] = 3544, - [3545] = 512, + [3520] = 3472, + [3521] = 3473, + [3522] = 3486, + [3523] = 3469, + [3524] = 3486, + [3525] = 3525, + [3526] = 3473, + [3527] = 3469, + [3528] = 3484, + [3529] = 3462, + [3530] = 552, + [3531] = 3470, + [3532] = 3532, + [3533] = 3460, + [3534] = 3470, + [3535] = 521, + [3536] = 462, + [3537] = 3537, + [3538] = 503, + [3539] = 3486, + [3540] = 2925, + [3541] = 3525, + [3542] = 3542, + [3543] = 3473, + [3544] = 3473, + [3545] = 3542, [3546] = 3546, - [3547] = 3547, - [3548] = 3421, - [3549] = 2879, - [3550] = 3428, - [3551] = 487, - [3552] = 3438, - [3553] = 506, - [3554] = 488, - [3555] = 507, - [3556] = 499, - [3557] = 489, - [3558] = 3544, - [3559] = 3178, - [3560] = 489, - [3561] = 448, - [3562] = 2836, - [3563] = 3461, - [3564] = 3564, - [3565] = 513, + [3547] = 524, + [3548] = 3548, + [3549] = 486, + [3550] = 3550, + [3551] = 3473, + [3552] = 3552, + [3553] = 3553, + [3554] = 3554, + [3555] = 552, + [3556] = 2783, + [3557] = 486, + [3558] = 3470, + [3559] = 3559, + [3560] = 3486, + [3561] = 3561, + [3562] = 504, + [3563] = 505, + [3564] = 506, + [3565] = 518, [3566] = 3566, - [3567] = 451, - [3568] = 3568, - [3569] = 448, - [3570] = 490, - [3571] = 497, + [3567] = 3472, + [3568] = 547, + [3569] = 3470, + [3570] = 462, + [3571] = 539, [3572] = 3572, - [3573] = 3438, - [3574] = 3574, + [3573] = 3573, + [3574] = 3462, [3575] = 3575, - [3576] = 3267, - [3577] = 3428, - [3578] = 3411, - [3579] = 3579, - [3580] = 507, - [3581] = 508, - [3582] = 3579, - [3583] = 3267, - [3584] = 3584, - [3585] = 511, - [3586] = 3579, - [3587] = 448, - [3588] = 3584, + [3576] = 3576, + [3577] = 456, + [3578] = 3525, + [3579] = 519, + [3580] = 3460, + [3581] = 520, + [3582] = 3582, + [3583] = 3583, + [3584] = 3462, + [3585] = 3585, + [3586] = 3469, + [3587] = 3587, + [3588] = 521, [3589] = 3589, - [3590] = 512, - [3591] = 513, - [3592] = 3579, - [3593] = 487, - [3594] = 488, - [3595] = 489, - [3596] = 3584, - [3597] = 490, - [3598] = 497, - [3599] = 498, - [3600] = 499, - [3601] = 500, - [3602] = 501, - [3603] = 502, - [3604] = 503, - [3605] = 504, - [3606] = 506, - [3607] = 507, - [3608] = 508, - [3609] = 3584, - [3610] = 511, - [3611] = 509, - [3612] = 512, - [3613] = 513, - [3614] = 3614, - [3615] = 3615, - [3616] = 3616, - [3617] = 462, + [3590] = 522, + [3591] = 3591, + [3592] = 3542, + [3593] = 3593, + [3594] = 523, + [3595] = 524, + [3596] = 3462, + [3597] = 3597, + [3598] = 3470, + [3599] = 3470, + [3600] = 3600, + [3601] = 483, + [3602] = 486, + [3603] = 499, + [3604] = 3604, + [3605] = 501, + [3606] = 503, + [3607] = 504, + [3608] = 505, + [3609] = 506, + [3610] = 518, + [3611] = 3611, + [3612] = 3486, + [3613] = 519, + [3614] = 520, + [3615] = 521, + [3616] = 522, + [3617] = 523, [3618] = 3618, - [3619] = 3615, - [3620] = 3620, - [3621] = 3621, - [3622] = 3308, - [3623] = 3579, - [3624] = 462, - [3625] = 3625, - [3626] = 3579, - [3627] = 3625, - [3628] = 3584, - [3629] = 3614, - [3630] = 3615, - [3631] = 451, - [3632] = 451, - [3633] = 3579, - [3634] = 3584, - [3635] = 3614, - [3636] = 3625, - [3637] = 451, - [3638] = 3638, - [3639] = 3625, + [3619] = 524, + [3620] = 539, + [3621] = 3470, + [3622] = 456, + [3623] = 457, + [3624] = 3624, + [3625] = 547, + [3626] = 539, + [3627] = 519, + [3628] = 552, + [3629] = 3469, + [3630] = 3589, + [3631] = 3631, + [3632] = 483, + [3633] = 3469, + [3634] = 462, + [3635] = 3635, + [3636] = 3636, + [3637] = 3637, + [3638] = 3470, + [3639] = 3589, [3640] = 3640, - [3641] = 462, - [3642] = 462, - [3643] = 3579, - [3644] = 3625, - [3645] = 3584, - [3646] = 3614, - [3647] = 3584, - [3648] = 452, - [3649] = 484, - [3650] = 3579, - [3651] = 3625, - [3652] = 462, - [3653] = 485, - [3654] = 3579, - [3655] = 3579, - [3656] = 3625, - [3657] = 3584, - [3658] = 3584, - [3659] = 3614, + [3641] = 3641, + [3642] = 3471, + [3643] = 3643, + [3644] = 503, + [3645] = 505, + [3646] = 3646, + [3647] = 3647, + [3648] = 3648, + [3649] = 496, + [3650] = 497, + [3651] = 465, + [3652] = 3647, + [3653] = 3653, + [3654] = 478, + [3655] = 465, + [3656] = 3647, + [3657] = 3653, + [3658] = 3658, + [3659] = 3659, [3660] = 3660, - [3661] = 452, - [3662] = 3584, - [3663] = 3614, - [3664] = 452, - [3665] = 448, - [3666] = 484, - [3667] = 513, - [3668] = 485, - [3669] = 509, - [3670] = 487, - [3671] = 3579, - [3672] = 488, - [3673] = 489, - [3674] = 490, - [3675] = 3584, - [3676] = 497, - [3677] = 498, - [3678] = 499, - [3679] = 500, - [3680] = 501, - [3681] = 462, - [3682] = 502, - [3683] = 503, - [3684] = 504, - [3685] = 506, - [3686] = 3584, - [3687] = 448, - [3688] = 3584, - [3689] = 3614, - [3690] = 3579, - [3691] = 3579, - [3692] = 2836, + [3661] = 483, + [3662] = 486, + [3663] = 499, + [3664] = 501, + [3665] = 503, + [3666] = 504, + [3667] = 505, + [3668] = 506, + [3669] = 518, + [3670] = 519, + [3671] = 520, + [3672] = 521, + [3673] = 522, + [3674] = 523, + [3675] = 524, + [3676] = 539, + [3677] = 547, + [3678] = 552, + [3679] = 3679, + [3680] = 465, + [3681] = 3647, + [3682] = 3653, + [3683] = 462, + [3684] = 462, + [3685] = 465, + [3686] = 3647, + [3687] = 3653, + [3688] = 465, + [3689] = 3653, + [3690] = 3647, + [3691] = 3653, + [3692] = 3647, [3693] = 3693, - [3694] = 3693, - [3695] = 3695, - [3696] = 3693, - [3697] = 512, - [3698] = 513, - [3699] = 487, - [3700] = 488, - [3701] = 489, - [3702] = 3693, - [3703] = 490, - [3704] = 507, - [3705] = 497, - [3706] = 498, - [3707] = 499, - [3708] = 3708, - [3709] = 500, - [3710] = 501, - [3711] = 502, + [3694] = 3647, + [3695] = 3653, + [3696] = 3647, + [3697] = 3697, + [3698] = 3647, + [3699] = 3653, + [3700] = 3647, + [3701] = 3653, + [3702] = 3653, + [3703] = 3703, + [3704] = 3158, + [3705] = 462, + [3706] = 469, + [3707] = 457, + [3708] = 2925, + [3709] = 3703, + [3710] = 499, + [3711] = 501, [3712] = 503, [3713] = 504, - [3714] = 3714, - [3715] = 512, - [3716] = 513, - [3717] = 3714, - [3718] = 487, - [3719] = 488, - [3720] = 489, - [3721] = 490, - [3722] = 3722, - [3723] = 497, - [3724] = 498, - [3725] = 499, - [3726] = 500, - [3727] = 3714, - [3728] = 3693, - [3729] = 501, - [3730] = 502, - [3731] = 503, - [3732] = 504, - [3733] = 506, - [3734] = 507, - [3735] = 508, - [3736] = 511, - [3737] = 506, - [3738] = 3693, - [3739] = 498, - [3740] = 507, - [3741] = 508, - [3742] = 500, - [3743] = 511, - [3744] = 3714, - [3745] = 501, - [3746] = 3714, - [3747] = 499, - [3748] = 3693, - [3749] = 3714, - [3750] = 497, - [3751] = 3714, - [3752] = 3693, - [3753] = 3693, - [3754] = 489, - [3755] = 508, - [3756] = 3756, - [3757] = 3693, - [3758] = 3693, - [3759] = 3759, - [3760] = 512, - [3761] = 3693, - [3762] = 3693, - [3763] = 3693, - [3764] = 3693, - [3765] = 3693, - [3766] = 502, - [3767] = 511, - [3768] = 484, - [3769] = 513, - [3770] = 3693, - [3771] = 485, - [3772] = 3714, - [3773] = 3693, - [3774] = 3693, - [3775] = 3714, - [3776] = 3693, - [3777] = 3693, - [3778] = 509, - [3779] = 3693, - [3780] = 3714, - [3781] = 503, - [3782] = 504, - [3783] = 487, - [3784] = 488, - [3785] = 3714, - [3786] = 506, - [3787] = 490, - [3788] = 3693, - [3789] = 3693, - [3790] = 3790, - [3791] = 512, - [3792] = 3790, - [3793] = 513, - [3794] = 3790, - [3795] = 487, - [3796] = 488, - [3797] = 3790, - [3798] = 489, - [3799] = 490, - [3800] = 497, - [3801] = 498, - [3802] = 3802, - [3803] = 3790, + [3714] = 506, + [3715] = 518, + [3716] = 519, + [3717] = 520, + [3718] = 521, + [3719] = 522, + [3720] = 523, + [3721] = 524, + [3722] = 539, + [3723] = 547, + [3724] = 552, + [3725] = 483, + [3726] = 486, + [3727] = 3332, + [3728] = 469, + [3729] = 465, + [3730] = 3647, + [3731] = 469, + [3732] = 456, + [3733] = 457, + [3734] = 496, + [3735] = 486, + [3736] = 497, + [3737] = 478, + [3738] = 3653, + [3739] = 3703, + [3740] = 456, + [3741] = 457, + [3742] = 456, + [3743] = 3653, + [3744] = 3744, + [3745] = 486, + [3746] = 501, + [3747] = 503, + [3748] = 3748, + [3749] = 504, + [3750] = 505, + [3751] = 3744, + [3752] = 506, + [3753] = 518, + [3754] = 3748, + [3755] = 3748, + [3756] = 519, + [3757] = 520, + [3758] = 3744, + [3759] = 521, + [3760] = 3760, + [3761] = 522, + [3762] = 3748, + [3763] = 523, + [3764] = 524, + [3765] = 3744, + [3766] = 3748, + [3767] = 539, + [3768] = 547, + [3769] = 3744, + [3770] = 3748, + [3771] = 552, + [3772] = 3744, + [3773] = 552, + [3774] = 3744, + [3775] = 3744, + [3776] = 3744, + [3777] = 3744, + [3778] = 3748, + [3779] = 3744, + [3780] = 3744, + [3781] = 457, + [3782] = 3748, + [3783] = 3744, + [3784] = 496, + [3785] = 497, + [3786] = 478, + [3787] = 483, + [3788] = 486, + [3789] = 499, + [3790] = 501, + [3791] = 504, + [3792] = 505, + [3793] = 506, + [3794] = 518, + [3795] = 519, + [3796] = 520, + [3797] = 521, + [3798] = 522, + [3799] = 523, + [3800] = 524, + [3801] = 539, + [3802] = 547, + [3803] = 552, [3804] = 499, - [3805] = 3790, - [3806] = 3790, - [3807] = 500, - [3808] = 501, - [3809] = 3790, - [3810] = 502, - [3811] = 3790, - [3812] = 3790, - [3813] = 3813, - [3814] = 3814, - [3815] = 503, - [3816] = 504, - [3817] = 506, - [3818] = 507, - [3819] = 508, - [3820] = 511, + [3805] = 501, + [3806] = 3806, + [3807] = 503, + [3808] = 504, + [3809] = 505, + [3810] = 506, + [3811] = 518, + [3812] = 519, + [3813] = 3744, + [3814] = 520, + [3815] = 521, + [3816] = 522, + [3817] = 523, + [3818] = 524, + [3819] = 539, + [3820] = 3744, [3821] = 3821, [3822] = 3822, - [3823] = 3823, - [3824] = 3824, - [3825] = 3825, - [3826] = 3826, - [3827] = 3827, - [3828] = 3828, + [3823] = 547, + [3824] = 3748, + [3825] = 3744, + [3826] = 3744, + [3827] = 3744, + [3828] = 3744, [3829] = 3829, - [3830] = 3830, - [3831] = 3831, - [3832] = 3832, - [3833] = 3833, - [3834] = 3834, - [3835] = 3835, - [3836] = 3836, - [3837] = 3837, - [3838] = 3838, - [3839] = 3839, - [3840] = 3840, - [3841] = 3841, - [3842] = 3842, - [3843] = 3843, - [3844] = 454, - [3845] = 442, - [3846] = 3846, - [3847] = 3847, - [3848] = 3848, - [3849] = 465, - [3850] = 3850, - [3851] = 3851, - [3852] = 3851, - [3853] = 3850, - [3854] = 3851, - [3855] = 3850, + [3830] = 3748, + [3831] = 483, + [3832] = 3744, + [3833] = 3744, + [3834] = 486, + [3835] = 3744, + [3836] = 3744, + [3837] = 3744, + [3838] = 499, + [3839] = 3748, + [3840] = 457, + [3841] = 483, + [3842] = 503, + [3843] = 503, + [3844] = 505, + [3845] = 506, + [3846] = 518, + [3847] = 519, + [3848] = 520, + [3849] = 521, + [3850] = 522, + [3851] = 523, + [3852] = 524, + [3853] = 539, + [3854] = 547, + [3855] = 552, [3856] = 3856, [3857] = 3857, - [3858] = 3858, - [3859] = 2012, - [3860] = 2010, - [3861] = 3861, - [3862] = 3861, - [3863] = 3861, - [3864] = 2015, - [3865] = 3865, - [3866] = 3866, - [3867] = 3867, - [3868] = 3868, - [3869] = 3865, - [3870] = 3868, - [3871] = 3868, - [3872] = 3867, - [3873] = 3867, - [3874] = 3865, - [3875] = 3858, + [3858] = 504, + [3859] = 3859, + [3860] = 3859, + [3861] = 3859, + [3862] = 3859, + [3863] = 3859, + [3864] = 3859, + [3865] = 3859, + [3866] = 3859, + [3867] = 483, + [3868] = 3859, + [3869] = 486, + [3870] = 499, + [3871] = 501, + [3872] = 3872, + [3873] = 3859, + [3874] = 3874, + [3875] = 3875, [3876] = 3876, - [3877] = 3876, - [3878] = 3876, - [3879] = 3876, - [3880] = 3876, - [3881] = 3876, - [3882] = 416, - [3883] = 3876, - [3884] = 3876, - [3885] = 3876, - [3886] = 3876, - [3887] = 415, - [3888] = 3876, - [3889] = 3876, - [3890] = 3876, - [3891] = 418, - [3892] = 3876, - [3893] = 3876, - [3894] = 3876, - [3895] = 3876, - [3896] = 3876, - [3897] = 3876, - [3898] = 3876, - [3899] = 3876, - [3900] = 3876, - [3901] = 3876, - [3902] = 3876, - [3903] = 263, - [3904] = 417, - [3905] = 246, - [3906] = 276, - [3907] = 428, - [3908] = 422, - [3909] = 424, - [3910] = 432, - [3911] = 436, - [3912] = 430, - [3913] = 431, - [3914] = 3914, - [3915] = 3915, - [3916] = 455, - [3917] = 3917, - [3918] = 3915, - [3919] = 3919, - [3920] = 3915, - [3921] = 463, - [3922] = 3922, + [3877] = 3877, + [3878] = 3878, + [3879] = 3879, + [3880] = 3880, + [3881] = 3881, + [3882] = 3882, + [3883] = 3883, + [3884] = 3884, + [3885] = 3885, + [3886] = 3886, + [3887] = 3887, + [3888] = 3888, + [3889] = 3889, + [3890] = 3890, + [3891] = 3891, + [3892] = 3892, + [3893] = 3893, + [3894] = 3894, + [3895] = 3895, + [3896] = 3896, + [3897] = 448, + [3898] = 451, + [3899] = 3899, + [3900] = 3900, + [3901] = 473, + [3902] = 3902, + [3903] = 3903, + [3904] = 3903, + [3905] = 3905, + [3906] = 3905, + [3907] = 3903, + [3908] = 3905, + [3909] = 3909, + [3910] = 3910, + [3911] = 3911, + [3912] = 3912, + [3913] = 2039, + [3914] = 3912, + [3915] = 2041, + [3916] = 3912, + [3917] = 2042, + [3918] = 3918, + [3919] = 3918, + [3920] = 3920, + [3921] = 3921, + [3922] = 3918, [3923] = 3923, - [3924] = 3924, - [3925] = 3923, - [3926] = 3923, - [3927] = 3927, - [3928] = 3928, + [3924] = 3923, + [3925] = 3920, + [3926] = 3920, + [3927] = 3923, + [3928] = 3911, [3929] = 3929, - [3930] = 3930, - [3931] = 3930, - [3932] = 3922, - [3933] = 3928, - [3934] = 3930, - [3935] = 3935, - [3936] = 3928, + [3930] = 3929, + [3931] = 416, + [3932] = 3929, + [3933] = 3929, + [3934] = 212, + [3935] = 3929, + [3936] = 3929, [3937] = 3929, - [3938] = 3922, - [3939] = 3924, - [3940] = 3917, - [3941] = 3941, - [3942] = 3930, - [3943] = 3924, + [3938] = 3929, + [3939] = 3929, + [3940] = 415, + [3941] = 3929, + [3942] = 3929, + [3943] = 3929, [3944] = 3929, - [3945] = 3924, - [3946] = 3914, - [3947] = 3947, - [3948] = 3948, - [3949] = 3949, - [3950] = 3950, - [3951] = 3951, - [3952] = 3952, - [3953] = 3953, - [3954] = 3954, - [3955] = 3955, - [3956] = 3956, - [3957] = 3955, - [3958] = 3958, - [3959] = 3959, - [3960] = 3956, - [3961] = 3954, - [3962] = 3958, - [3963] = 3963, - [3964] = 3964, - [3965] = 3959, - [3966] = 3959, - [3967] = 3959, - [3968] = 3955, - [3969] = 3956, - [3970] = 3970, - [3971] = 3955, - [3972] = 276, - [3973] = 3963, - [3974] = 3954, - [3975] = 3963, - [3976] = 3958, - [3977] = 3956, - [3978] = 3964, + [3945] = 3929, + [3946] = 3929, + [3947] = 3929, + [3948] = 419, + [3949] = 3929, + [3950] = 3929, + [3951] = 3929, + [3952] = 3929, + [3953] = 3929, + [3954] = 3929, + [3955] = 3929, + [3956] = 3929, + [3957] = 217, + [3958] = 216, + [3959] = 417, + [3960] = 423, + [3961] = 427, + [3962] = 436, + [3963] = 439, + [3964] = 420, + [3965] = 424, + [3966] = 432, + [3967] = 3967, + [3968] = 443, + [3969] = 3969, + [3970] = 445, + [3971] = 3971, + [3972] = 3971, + [3973] = 3973, + [3974] = 3971, + [3975] = 3975, + [3976] = 3976, + [3977] = 3975, + [3978] = 3975, [3979] = 3979, [3980] = 3980, - [3981] = 3963, + [3981] = 3981, [3982] = 3982, - [3983] = 3970, - [3984] = 3959, - [3985] = 3956, - [3986] = 3954, - [3987] = 3955, - [3988] = 3970, - [3989] = 246, - [3990] = 3954, - [3991] = 3963, - [3992] = 3956, - [3993] = 3959, - [3994] = 3954, - [3995] = 3963, - [3996] = 3979, - [3997] = 3955, - [3998] = 3963, - [3999] = 3956, - [4000] = 3963, - [4001] = 3963, - [4002] = 3959, - [4003] = 3955, - [4004] = 3955, + [3983] = 3969, + [3984] = 3976, + [3985] = 3985, + [3986] = 3979, + [3987] = 3976, + [3988] = 3979, + [3989] = 3985, + [3990] = 3990, + [3991] = 3975, + [3992] = 3990, + [3993] = 3980, + [3994] = 3985, + [3995] = 3995, + [3996] = 3980, + [3997] = 3967, + [3998] = 3990, + [3999] = 3980, + [4000] = 4000, + [4001] = 4001, + [4002] = 4002, + [4003] = 4003, + [4004] = 4004, [4005] = 4005, - [4006] = 3959, - [4007] = 3954, - [4008] = 3956, - [4009] = 3954, - [4010] = 561, + [4006] = 4006, + [4007] = 4007, + [4008] = 4008, + [4009] = 4009, + [4010] = 4010, [4011] = 4011, - [4012] = 3963, - [4013] = 3956, - [4014] = 3959, - [4015] = 3955, - [4016] = 3980, - [4017] = 3955, - [4018] = 3954, - [4019] = 3963, - [4020] = 3959, - [4021] = 337, - [4022] = 3954, - [4023] = 3954, - [4024] = 3954, - [4025] = 3963, - [4026] = 3956, - [4027] = 3955, - [4028] = 3979, - [4029] = 3956, - [4030] = 3956, - [4031] = 3963, - [4032] = 3959, - [4033] = 3959, - [4034] = 3954, - [4035] = 4011, - [4036] = 4036, - [4037] = 3955, - [4038] = 3955, - [4039] = 3956, - [4040] = 3956, - [4041] = 3954, - [4042] = 3980, - [4043] = 3955, - [4044] = 4011, - [4045] = 3963, - [4046] = 3956, - [4047] = 4047, - [4048] = 3964, - [4049] = 3954, - [4050] = 263, - [4051] = 3963, - [4052] = 3955, - [4053] = 573, - [4054] = 4054, - [4055] = 4055, - [4056] = 4056, - [4057] = 4057, - [4058] = 4058, - [4059] = 4059, - [4060] = 4060, - [4061] = 4061, - [4062] = 4057, - [4063] = 4056, - [4064] = 4056, - [4065] = 4065, - [4066] = 4066, - [4067] = 4067, - [4068] = 4065, - [4069] = 4057, - [4070] = 4070, - [4071] = 4071, - [4072] = 4057, - [4073] = 4073, - [4074] = 4074, - [4075] = 4057, - [4076] = 567, - [4077] = 4057, - [4078] = 4055, - [4079] = 4058, - [4080] = 4057, - [4081] = 4057, - [4082] = 4082, - [4083] = 4083, - [4084] = 4057, - [4085] = 4073, - [4086] = 4057, - [4087] = 4087, - [4088] = 4074, - [4089] = 4089, - [4090] = 4057, - [4091] = 4057, - [4092] = 4057, - [4093] = 4065, - [4094] = 4094, - [4095] = 4057, - [4096] = 4057, - [4097] = 4074, - [4098] = 4055, - [4099] = 4058, - [4100] = 4082, - [4101] = 4083, - [4102] = 4059, - [4103] = 4082, - [4104] = 4104, - [4105] = 4083, - [4106] = 4057, - [4107] = 4059, - [4108] = 4054, - [4109] = 4087, - [4110] = 4110, - [4111] = 563, - [4112] = 564, + [4012] = 4007, + [4013] = 4008, + [4014] = 4014, + [4015] = 4011, + [4016] = 4016, + [4017] = 4014, + [4018] = 4009, + [4019] = 4010, + [4020] = 4020, + [4021] = 4007, + [4022] = 4008, + [4023] = 217, + [4024] = 4009, + [4025] = 4025, + [4026] = 4026, + [4027] = 4010, + [4028] = 4007, + [4029] = 4008, + [4030] = 4030, + [4031] = 4010, + [4032] = 4011, + [4033] = 4033, + [4034] = 4034, + [4035] = 4035, + [4036] = 4009, + [4037] = 581, + [4038] = 4009, + [4039] = 4010, + [4040] = 4020, + [4041] = 4016, + [4042] = 4010, + [4043] = 4011, + [4044] = 4009, + [4045] = 4016, + [4046] = 4007, + [4047] = 4007, + [4048] = 4008, + [4049] = 4007, + [4050] = 4010, + [4051] = 4011, + [4052] = 4008, + [4053] = 4009, + [4054] = 4008, + [4055] = 4011, + [4056] = 4008, + [4057] = 4007, + [4058] = 4008, + [4059] = 216, + [4060] = 4011, + [4061] = 4009, + [4062] = 4010, + [4063] = 4009, + [4064] = 4011, + [4065] = 4009, + [4066] = 4010, + [4067] = 4007, + [4068] = 4007, + [4069] = 4026, + [4070] = 4008, + [4071] = 4008, + [4072] = 4009, + [4073] = 4011, + [4074] = 4011, + [4075] = 4075, + [4076] = 4010, + [4077] = 4011, + [4078] = 4026, + [4079] = 4009, + [4080] = 4010, + [4081] = 344, + [4082] = 4010, + [4083] = 4034, + [4084] = 4014, + [4085] = 4007, + [4086] = 4035, + [4087] = 4007, + [4088] = 4008, + [4089] = 4007, + [4090] = 4008, + [4091] = 4020, + [4092] = 4011, + [4093] = 4034, + [4094] = 4009, + [4095] = 4010, + [4096] = 4035, + [4097] = 4009, + [4098] = 4010, + [4099] = 4009, + [4100] = 4010, + [4101] = 212, + [4102] = 4007, + [4103] = 4008, + [4104] = 4008, + [4105] = 4007, + [4106] = 568, + [4107] = 563, + [4108] = 4108, + [4109] = 4109, + [4110] = 4108, + [4111] = 4111, + [4112] = 4112, [4113] = 4113, - [4114] = 565, - [4115] = 566, + [4114] = 4114, + [4115] = 4115, [4116] = 4116, - [4117] = 4089, - [4118] = 568, - [4119] = 569, - [4120] = 580, - [4121] = 570, - [4122] = 571, - [4123] = 572, + [4117] = 4117, + [4118] = 4113, + [4119] = 4119, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 4120, [4124] = 4124, - [4125] = 574, - [4126] = 4057, - [4127] = 4087, - [4128] = 4128, - [4129] = 4057, - [4130] = 4073, - [4131] = 4131, - [4132] = 4089, - [4133] = 4059, - [4134] = 575, - [4135] = 4054, - [4136] = 576, - [4137] = 4057, - [4138] = 4138, + [4125] = 4116, + [4126] = 4126, + [4127] = 4127, + [4128] = 4113, + [4129] = 569, + [4130] = 570, + [4131] = 4113, + [4132] = 4115, + [4133] = 4113, + [4134] = 4113, + [4135] = 4120, + [4136] = 4121, + [4137] = 4114, + [4138] = 4115, [4139] = 4139, [4140] = 4140, - [4141] = 4138, - [4142] = 608, - [4143] = 609, - [4144] = 610, - [4145] = 4139, - [4146] = 4140, - [4147] = 470, - [4148] = 700, - [4149] = 4139, - [4150] = 4140, - [4151] = 701, + [4141] = 575, + [4142] = 4142, + [4143] = 567, + [4144] = 576, + [4145] = 4122, + [4146] = 4146, + [4147] = 578, + [4148] = 4148, + [4149] = 579, + [4150] = 4117, + [4151] = 572, [4152] = 4152, - [4153] = 702, - [4154] = 611, - [4155] = 703, - [4156] = 612, - [4157] = 4157, - [4158] = 704, - [4159] = 4159, - [4160] = 4160, - [4161] = 4161, + [4153] = 4112, + [4154] = 4154, + [4155] = 4114, + [4156] = 4127, + [4157] = 4116, + [4158] = 4122, + [4159] = 571, + [4160] = 4152, + [4161] = 4127, [4162] = 4162, - [4163] = 4157, - [4164] = 4139, - [4165] = 4140, - [4166] = 4166, - [4167] = 613, - [4168] = 4168, - [4169] = 705, - [4170] = 706, - [4171] = 582, - [4172] = 615, - [4173] = 616, - [4174] = 4161, - [4175] = 4138, - [4176] = 617, - [4177] = 619, - [4178] = 620, - [4179] = 622, - [4180] = 4139, - [4181] = 4140, - [4182] = 4157, - [4183] = 4183, - [4184] = 4184, - [4185] = 596, - [4186] = 4159, - [4187] = 4161, - [4188] = 4188, - [4189] = 695, - [4190] = 614, - [4191] = 623, - [4192] = 633, - [4193] = 699, - [4194] = 588, - [4195] = 4195, - [4196] = 711, - [4197] = 591, - [4198] = 593, - [4199] = 599, - [4200] = 624, - [4201] = 475, - [4202] = 684, - [4203] = 627, - [4204] = 4204, - [4205] = 686, - [4206] = 688, - [4207] = 694, - [4208] = 709, - [4209] = 710, - [4210] = 628, - [4211] = 4211, - [4212] = 4183, - [4213] = 592, - [4214] = 601, + [4163] = 4113, + [4164] = 4113, + [4165] = 4108, + [4166] = 4121, + [4167] = 573, + [4168] = 4113, + [4169] = 4113, + [4170] = 4170, + [4171] = 4126, + [4172] = 574, + [4173] = 4126, + [4174] = 4113, + [4175] = 4117, + [4176] = 4176, + [4177] = 4113, + [4178] = 4113, + [4179] = 4113, + [4180] = 4180, + [4181] = 4127, + [4182] = 4113, + [4183] = 564, + [4184] = 4113, + [4185] = 4113, + [4186] = 4113, + [4187] = 562, + [4188] = 4152, + [4189] = 4113, + [4190] = 4112, + [4191] = 715, + [4192] = 4192, + [4193] = 4193, + [4194] = 4194, + [4195] = 4192, + [4196] = 4194, + [4197] = 4192, + [4198] = 4198, + [4199] = 4199, + [4200] = 4200, + [4201] = 4201, + [4202] = 4202, + [4203] = 4203, + [4204] = 713, + [4205] = 714, + [4206] = 4201, + [4207] = 4199, + [4208] = 4208, + [4209] = 4209, + [4210] = 4203, + [4211] = 4201, + [4212] = 637, + [4213] = 638, + [4214] = 4214, [4215] = 4215, - [4216] = 618, - [4217] = 4217, - [4218] = 4218, - [4219] = 626, - [4220] = 629, - [4221] = 630, - [4222] = 632, - [4223] = 4139, - [4224] = 4140, - [4225] = 712, - [4226] = 683, - [4227] = 634, - [4228] = 635, - [4229] = 4229, - [4230] = 4229, - [4231] = 4231, - [4232] = 4232, - [4233] = 598, - [4234] = 4161, - [4235] = 654, - [4236] = 4236, - [4237] = 637, - [4238] = 638, - [4239] = 698, - [4240] = 4204, - [4241] = 4211, - [4242] = 640, - [4243] = 641, - [4244] = 642, - [4245] = 658, - [4246] = 696, - [4247] = 643, - [4248] = 644, - [4249] = 463, - [4250] = 4138, - [4251] = 646, - [4252] = 647, - [4253] = 4253, - [4254] = 648, + [4216] = 4216, + [4217] = 643, + [4218] = 716, + [4219] = 717, + [4220] = 718, + [4221] = 4221, + [4222] = 719, + [4223] = 4223, + [4224] = 4224, + [4225] = 720, + [4226] = 4226, + [4227] = 721, + [4228] = 722, + [4229] = 454, + [4230] = 4230, + [4231] = 723, + [4232] = 640, + [4233] = 724, + [4234] = 725, + [4235] = 4235, + [4236] = 585, + [4237] = 642, + [4238] = 726, + [4239] = 443, + [4240] = 727, + [4241] = 704, + [4242] = 635, + [4243] = 4243, + [4244] = 661, + [4245] = 644, + [4246] = 586, + [4247] = 587, + [4248] = 645, + [4249] = 646, + [4250] = 647, + [4251] = 4226, + [4252] = 4194, + [4253] = 4192, + [4254] = 639, [4255] = 649, - [4256] = 650, - [4257] = 651, - [4258] = 652, - [4259] = 653, - [4260] = 604, - [4261] = 713, - [4262] = 605, - [4263] = 655, + [4256] = 4256, + [4257] = 4257, + [4258] = 4258, + [4259] = 650, + [4260] = 4201, + [4261] = 651, + [4262] = 4262, + [4263] = 4221, [4264] = 4264, - [4265] = 455, - [4266] = 656, - [4267] = 657, - [4268] = 659, - [4269] = 583, - [4270] = 660, - [4271] = 663, - [4272] = 606, - [4273] = 4273, - [4274] = 664, - [4275] = 665, - [4276] = 666, - [4277] = 667, - [4278] = 668, - [4279] = 669, - [4280] = 4139, - [4281] = 4140, - [4282] = 670, - [4283] = 672, - [4284] = 673, - [4285] = 4139, - [4286] = 4140, - [4287] = 4287, - [4288] = 4288, - [4289] = 674, - [4290] = 607, - [4291] = 4161, - [4292] = 4292, - [4293] = 4159, - [4294] = 4211, - [4295] = 4295, - [4296] = 4139, - [4297] = 4140, - [4298] = 4161, - [4299] = 584, - [4300] = 585, - [4301] = 586, - [4302] = 587, - [4303] = 677, - [4304] = 678, - [4305] = 4305, - [4306] = 590, - [4307] = 4139, - [4308] = 4140, - [4309] = 679, - [4310] = 680, - [4311] = 682, - [4312] = 4217, - [4313] = 4183, - [4314] = 4161, - [4315] = 4217, - [4316] = 4316, - [4317] = 4159, - [4318] = 4318, - [4319] = 4166, - [4320] = 4320, - [4321] = 4318, + [4265] = 588, + [4266] = 4266, + [4267] = 705, + [4268] = 445, + [4269] = 634, + [4270] = 641, + [4271] = 4271, + [4272] = 589, + [4273] = 460, + [4274] = 706, + [4275] = 4194, + [4276] = 648, + [4277] = 590, + [4278] = 4278, + [4279] = 591, + [4280] = 652, + [4281] = 653, + [4282] = 654, + [4283] = 655, + [4284] = 592, + [4285] = 593, + [4286] = 594, + [4287] = 595, + [4288] = 596, + [4289] = 597, + [4290] = 598, + [4291] = 659, + [4292] = 599, + [4293] = 600, + [4294] = 4194, + [4295] = 601, + [4296] = 662, + [4297] = 663, + [4298] = 602, + [4299] = 4214, + [4300] = 4203, + [4301] = 4266, + [4302] = 4192, + [4303] = 603, + [4304] = 4194, + [4305] = 4192, + [4306] = 604, + [4307] = 605, + [4308] = 656, + [4309] = 606, + [4310] = 607, + [4311] = 608, + [4312] = 657, + [4313] = 4313, + [4314] = 4194, + [4315] = 4192, + [4316] = 609, + [4317] = 610, + [4318] = 611, + [4319] = 658, + [4320] = 612, + [4321] = 4201, [4322] = 4322, - [4323] = 4323, - [4324] = 469, - [4325] = 4325, + [4323] = 613, + [4324] = 614, + [4325] = 615, [4326] = 4326, - [4327] = 4327, - [4328] = 4328, - [4329] = 4328, - [4330] = 4330, - [4331] = 4331, - [4332] = 4328, - [4333] = 4320, - [4334] = 4334, - [4335] = 4335, - [4336] = 4336, - [4337] = 4326, - [4338] = 4328, - [4339] = 4326, - [4340] = 4328, - [4341] = 4326, - [4342] = 4335, - [4343] = 4343, - [4344] = 4326, - [4345] = 4320, - [4346] = 3917, - [4347] = 4325, - [4348] = 4152, - [4349] = 4349, - [4350] = 4350, - [4351] = 4320, - [4352] = 4352, - [4353] = 4353, - [4354] = 4325, - [4355] = 4355, - [4356] = 4320, - [4357] = 4327, - [4358] = 4322, - [4359] = 4320, - [4360] = 4335, - [4361] = 4336, - [4362] = 4350, - [4363] = 4325, - [4364] = 4320, - [4365] = 469, - [4366] = 4336, - [4367] = 4322, - [4368] = 4368, - [4369] = 3914, - [4370] = 4322, - [4371] = 4327, - [4372] = 4328, - [4373] = 4322, - [4374] = 4325, - [4375] = 4336, + [4327] = 616, + [4328] = 617, + [4329] = 618, + [4330] = 619, + [4331] = 620, + [4332] = 621, + [4333] = 4199, + [4334] = 622, + [4335] = 623, + [4336] = 4203, + [4337] = 624, + [4338] = 4201, + [4339] = 625, + [4340] = 4214, + [4341] = 626, + [4342] = 627, + [4343] = 4201, + [4344] = 660, + [4345] = 628, + [4346] = 728, + [4347] = 629, + [4348] = 630, + [4349] = 631, + [4350] = 632, + [4351] = 707, + [4352] = 633, + [4353] = 4194, + [4354] = 4192, + [4355] = 4194, + [4356] = 4192, + [4357] = 4266, + [4358] = 4194, + [4359] = 4192, + [4360] = 4360, + [4361] = 708, + [4362] = 4243, + [4363] = 709, + [4364] = 710, + [4365] = 4264, + [4366] = 711, + [4367] = 4243, + [4368] = 712, + [4369] = 4264, + [4370] = 4266, + [4371] = 4371, + [4372] = 4372, + [4373] = 4373, + [4374] = 4374, + [4375] = 4375, [4376] = 4376, - [4377] = 4325, - [4378] = 4322, + [4377] = 4371, + [4378] = 4378, [4379] = 4379, - [4380] = 4322, - [4381] = 4368, - [4382] = 4330, - [4383] = 4353, - [4384] = 4384, - [4385] = 4355, - [4386] = 4350, + [4380] = 4380, + [4381] = 4372, + [4382] = 4372, + [4383] = 4383, + [4384] = 4373, + [4385] = 4235, + [4386] = 4386, [4387] = 4387, - [4388] = 4388, - [4389] = 4168, - [4390] = 4326, - [4391] = 4368, - [4392] = 4328, - [4393] = 4322, - [4394] = 4394, - [4395] = 4326, - [4396] = 4330, - [4397] = 4353, - [4398] = 4355, - [4399] = 4325, - [4400] = 4379, - [4401] = 4401, + [4388] = 3967, + [4389] = 4383, + [4390] = 4390, + [4391] = 4391, + [4392] = 4373, + [4393] = 4379, + [4394] = 4373, + [4395] = 4230, + [4396] = 4387, + [4397] = 4397, + [4398] = 4398, + [4399] = 4399, + [4400] = 4376, + [4401] = 4383, [4402] = 4402, - [4403] = 4403, - [4404] = 4402, - [4405] = 4405, - [4406] = 4402, - [4407] = 4379, - [4408] = 4402, - [4409] = 4409, - [4410] = 4410, - [4411] = 4334, - [4412] = 4412, - [4413] = 4402, - [4414] = 4410, - [4415] = 4415, - [4416] = 4402, + [4403] = 513, + [4404] = 4372, + [4405] = 4379, + [4406] = 4376, + [4407] = 4372, + [4408] = 4373, + [4409] = 4379, + [4410] = 4376, + [4411] = 4411, + [4412] = 4373, + [4413] = 4413, + [4414] = 513, + [4415] = 4371, + [4416] = 4383, [4417] = 4417, - [4418] = 4402, - [4419] = 4402, - [4420] = 4420, - [4421] = 4402, - [4422] = 4422, + [4418] = 4376, + [4419] = 4419, + [4420] = 4383, + [4421] = 3969, + [4422] = 4378, [4423] = 4423, - [4424] = 4409, + [4424] = 4413, [4425] = 4425, - [4426] = 4426, - [4427] = 4410, - [4428] = 4409, - [4429] = 4402, - [4430] = 4430, - [4431] = 4431, - [4432] = 4423, - [4433] = 4415, - [4434] = 4409, - [4435] = 4409, - [4436] = 4436, - [4437] = 337, - [4438] = 463, - [4439] = 4415, - [4440] = 4430, - [4441] = 4441, - [4442] = 4402, - [4443] = 4403, - [4444] = 4402, - [4445] = 4409, - [4446] = 4402, - [4447] = 4402, - [4448] = 4448, - [4449] = 4401, - [4450] = 4162, - [4451] = 4409, - [4452] = 4423, - [4453] = 4436, - [4454] = 4409, - [4455] = 4409, - [4456] = 4401, - [4457] = 4402, - [4458] = 4403, + [4426] = 4380, + [4427] = 4375, + [4428] = 4417, + [4429] = 4417, + [4430] = 4372, + [4431] = 4425, + [4432] = 4432, + [4433] = 4387, + [4434] = 4376, + [4435] = 4378, + [4436] = 4413, + [4437] = 4437, + [4438] = 4425, + [4439] = 4380, + [4440] = 4373, + [4441] = 4193, + [4442] = 4390, + [4443] = 4419, + [4444] = 4383, + [4445] = 4376, + [4446] = 4390, + [4447] = 4379, + [4448] = 4379, + [4449] = 4383, + [4450] = 4372, + [4451] = 4383, + [4452] = 4387, + [4453] = 4379, + [4454] = 4454, + [4455] = 4455, + [4456] = 4456, + [4457] = 4457, + [4458] = 4458, [4459] = 4459, - [4460] = 4415, - [4461] = 4402, - [4462] = 4401, - [4463] = 4403, + [4460] = 4460, + [4461] = 443, + [4462] = 4462, + [4463] = 4463, [4464] = 4464, - [4465] = 4409, - [4466] = 4402, + [4465] = 4456, + [4466] = 4456, [4467] = 4467, - [4468] = 4448, - [4469] = 4464, - [4470] = 4402, - [4471] = 4471, - [4472] = 4472, - [4473] = 4448, - [4474] = 4318, - [4475] = 4402, - [4476] = 4402, - [4477] = 4430, - [4478] = 4402, - [4479] = 4436, - [4480] = 4459, - [4481] = 463, - [4482] = 4426, - [4483] = 4483, - [4484] = 4402, - [4485] = 4441, - [4486] = 4486, - [4487] = 455, - [4488] = 4488, - [4489] = 4420, - [4490] = 4426, - [4491] = 4471, - [4492] = 4410, + [4468] = 4456, + [4469] = 4463, + [4470] = 4470, + [4471] = 344, + [4472] = 4470, + [4473] = 4458, + [4474] = 4463, + [4475] = 4455, + [4476] = 4476, + [4477] = 4477, + [4478] = 4457, + [4479] = 4456, + [4480] = 4456, + [4481] = 4476, + [4482] = 4463, + [4483] = 4456, + [4484] = 4484, + [4485] = 4485, + [4486] = 4463, + [4487] = 4487, + [4488] = 4463, + [4489] = 4463, + [4490] = 4463, + [4491] = 4491, + [4492] = 4454, [4493] = 4493, [4494] = 4494, - [4495] = 4409, - [4496] = 4493, - [4497] = 4402, - [4498] = 440, - [4499] = 4436, - [4500] = 4318, - [4501] = 4464, - [4502] = 4402, - [4503] = 4409, - [4504] = 4166, - [4505] = 4184, - [4506] = 4409, - [4507] = 455, - [4508] = 4508, - [4509] = 4409, - [4510] = 4510, - [4511] = 4379, - [4512] = 4402, - [4513] = 4467, - [4514] = 4459, - [4515] = 4467, - [4516] = 4516, - [4517] = 4441, - [4518] = 4467, - [4519] = 4426, - [4520] = 4409, - [4521] = 4494, - [4522] = 4430, - [4523] = 4412, - [4524] = 4402, - [4525] = 4420, - [4526] = 4494, - [4527] = 4402, + [4495] = 4495, + [4496] = 4494, + [4497] = 4463, + [4498] = 4463, + [4499] = 4456, + [4500] = 4462, + [4501] = 445, + [4502] = 4456, + [4503] = 4456, + [4504] = 4470, + [4505] = 4456, + [4506] = 4455, + [4507] = 4507, + [4508] = 4487, + [4509] = 4477, + [4510] = 4456, + [4511] = 4460, + [4512] = 4456, + [4513] = 443, + [4514] = 4202, + [4515] = 4515, + [4516] = 4456, + [4517] = 4476, + [4518] = 4456, + [4519] = 4493, + [4520] = 445, + [4521] = 4521, + [4522] = 4522, + [4523] = 4523, + [4524] = 4460, + [4525] = 4525, + [4526] = 4463, + [4527] = 4463, [4528] = 4528, - [4529] = 4529, - [4530] = 4409, - [4531] = 4459, - [4532] = 4409, - [4533] = 4409, - [4534] = 4534, - [4535] = 4402, - [4536] = 4536, - [4537] = 4510, - [4538] = 4402, - [4539] = 4534, - [4540] = 4493, - [4541] = 4402, - [4542] = 4510, - [4543] = 4402, - [4544] = 4402, - [4545] = 4534, - [4546] = 4409, + [4529] = 4419, + [4530] = 4462, + [4531] = 4437, + [4532] = 4484, + [4533] = 4456, + [4534] = 4256, + [4535] = 4456, + [4536] = 4494, + [4537] = 4456, + [4538] = 4457, + [4539] = 4460, + [4540] = 4375, + [4541] = 4463, + [4542] = 4456, + [4543] = 4458, + [4544] = 4522, + [4545] = 4456, + [4546] = 4546, [4547] = 4547, - [4548] = 4548, - [4549] = 2089, - [4550] = 4550, - [4551] = 4551, - [4552] = 4552, - [4553] = 4553, - [4554] = 4554, - [4555] = 4555, - [4556] = 4556, - [4557] = 4557, - [4558] = 4558, + [4548] = 4463, + [4549] = 4487, + [4550] = 4493, + [4551] = 4456, + [4552] = 4457, + [4553] = 4458, + [4554] = 4456, + [4555] = 4463, + [4556] = 4456, + [4557] = 4456, + [4558] = 4456, [4559] = 4559, - [4560] = 4560, - [4561] = 463, - [4562] = 4562, - [4563] = 4563, - [4564] = 4564, - [4565] = 2012, - [4566] = 4566, - [4567] = 4567, - [4568] = 4562, - [4569] = 4566, - [4570] = 4570, - [4571] = 4547, - [4572] = 4548, - [4573] = 4573, - [4574] = 4558, - [4575] = 4560, - [4576] = 4576, - [4577] = 4577, + [4560] = 4477, + [4561] = 4463, + [4562] = 4528, + [4563] = 4456, + [4564] = 4454, + [4565] = 4515, + [4566] = 4487, + [4567] = 4493, + [4568] = 4464, + [4569] = 437, + [4570] = 4375, + [4571] = 4477, + [4572] = 4456, + [4573] = 4470, + [4574] = 4456, + [4575] = 4419, + [4576] = 4455, + [4577] = 4456, [4578] = 4578, [4579] = 4579, - [4580] = 4580, + [4580] = 4515, [4581] = 4581, [4582] = 4582, - [4583] = 4583, - [4584] = 4584, - [4585] = 4585, - [4586] = 4586, - [4587] = 2078, - [4588] = 4550, - [4589] = 4589, - [4590] = 4563, - [4591] = 4580, - [4592] = 4583, - [4593] = 4593, - [4594] = 4594, - [4595] = 4584, - [4596] = 4564, - [4597] = 4597, - [4598] = 4598, - [4599] = 4599, + [4583] = 4523, + [4584] = 4528, + [4585] = 4456, + [4586] = 4464, + [4587] = 4456, + [4588] = 4588, + [4589] = 4463, + [4590] = 4463, + [4591] = 4476, + [4592] = 4193, + [4593] = 4559, + [4594] = 4467, + [4595] = 4522, + [4596] = 4463, + [4597] = 4559, + [4598] = 4467, + [4599] = 4456, [4600] = 4600, - [4601] = 4573, - [4602] = 4566, - [4603] = 4589, - [4604] = 2090, - [4605] = 4567, - [4606] = 4585, - [4607] = 4562, - [4608] = 4570, + [4601] = 4601, + [4602] = 4602, + [4603] = 4603, + [4604] = 4256, + [4605] = 4605, + [4606] = 4606, + [4607] = 4600, + [4608] = 4608, [4609] = 4609, - [4610] = 4558, - [4611] = 4589, - [4612] = 4560, - [4613] = 4580, - [4614] = 4563, - [4615] = 4564, + [4610] = 4600, + [4611] = 4611, + [4612] = 4612, + [4613] = 4613, + [4614] = 4614, + [4615] = 4615, [4616] = 4616, - [4617] = 4558, - [4618] = 4560, - [4619] = 4619, - [4620] = 4619, - [4621] = 469, + [4617] = 4611, + [4618] = 4618, + [4619] = 2110, + [4620] = 4606, + [4621] = 4602, [4622] = 4622, - [4623] = 4584, - [4624] = 4486, - [4625] = 4553, - [4626] = 440, - [4627] = 4558, - [4628] = 4560, - [4629] = 4563, - [4630] = 4564, - [4631] = 4550, - [4632] = 4566, - [4633] = 4567, - [4634] = 4589, - [4635] = 4635, - [4636] = 4598, - [4637] = 4562, - [4638] = 4550, - [4639] = 4597, - [4640] = 4558, - [4641] = 4564, - [4642] = 4566, - [4643] = 4643, - [4644] = 4584, + [4623] = 445, + [4624] = 4624, + [4625] = 4611, + [4626] = 4626, + [4627] = 4627, + [4628] = 4628, + [4629] = 4629, + [4630] = 4600, + [4631] = 4631, + [4632] = 4632, + [4633] = 4633, + [4634] = 4626, + [4635] = 4626, + [4636] = 4612, + [4637] = 4525, + [4638] = 4638, + [4639] = 4618, + [4640] = 4640, + [4641] = 4611, + [4642] = 4642, + [4643] = 2111, + [4644] = 4605, [4645] = 4645, - [4646] = 4600, - [4647] = 4567, - [4648] = 4562, - [4649] = 2010, + [4646] = 2131, + [4647] = 4647, + [4648] = 4606, + [4649] = 4649, [4650] = 4650, - [4651] = 4567, + [4651] = 4651, [4652] = 4652, - [4653] = 4562, - [4654] = 4584, - [4655] = 4573, - [4656] = 4600, - [4657] = 4589, - [4658] = 4598, - [4659] = 4594, - [4660] = 4580, - [4661] = 4661, - [4662] = 4573, - [4663] = 4584, - [4664] = 4600, - [4665] = 461, - [4666] = 4583, - [4667] = 4573, - [4668] = 4668, - [4669] = 4668, + [4653] = 4653, + [4654] = 4606, + [4655] = 4655, + [4656] = 4656, + [4657] = 4657, + [4658] = 4658, + [4659] = 4650, + [4660] = 4660, + [4661] = 4626, + [4662] = 4662, + [4663] = 4612, + [4664] = 4664, + [4665] = 4613, + [4666] = 4618, + [4667] = 4609, + [4668] = 4640, + [4669] = 4664, [4670] = 4670, - [4671] = 4599, + [4671] = 4671, [4672] = 4672, - [4673] = 4661, - [4674] = 4674, - [4675] = 4563, - [4676] = 2087, - [4677] = 4564, - [4678] = 4599, - [4679] = 2098, - [4680] = 4581, - [4681] = 4553, - [4682] = 4682, - [4683] = 4683, - [4684] = 4674, - [4685] = 4685, - [4686] = 4567, - [4687] = 4687, - [4688] = 4688, - [4689] = 2108, - [4690] = 4562, - [4691] = 4619, - [4692] = 4584, - [4693] = 4598, - [4694] = 4599, - [4695] = 4674, - [4696] = 4550, - [4697] = 4589, - [4698] = 4417, - [4699] = 4567, - [4700] = 4570, - [4701] = 4547, - [4702] = 4580, - [4703] = 4579, - [4704] = 4583, - [4705] = 4550, - [4706] = 4581, - [4707] = 4582, - [4708] = 4593, - [4709] = 4594, - [4710] = 4589, - [4711] = 4597, - [4712] = 4712, - [4713] = 4598, - [4714] = 4599, - [4715] = 4715, - [4716] = 4162, - [4717] = 4584, - [4718] = 4718, - [4719] = 4719, - [4720] = 4720, - [4721] = 4580, - [4722] = 4558, - [4723] = 455, - [4724] = 4583, - [4725] = 4560, - [4726] = 4593, - [4727] = 2092, - [4728] = 4563, - [4729] = 4564, - [4730] = 4558, - [4731] = 4560, - [4732] = 4732, - [4733] = 4563, - [4734] = 4564, - [4735] = 4643, - [4736] = 4566, - [4737] = 4567, + [4673] = 4633, + [4674] = 4609, + [4675] = 4675, + [4676] = 4676, + [4677] = 4626, + [4678] = 4678, + [4679] = 4679, + [4680] = 4602, + [4681] = 4633, + [4682] = 4679, + [4683] = 4202, + [4684] = 4650, + [4685] = 4611, + [4686] = 4650, + [4687] = 4626, + [4688] = 4600, + [4689] = 4664, + [4690] = 4651, + [4691] = 2128, + [4692] = 4692, + [4693] = 4652, + [4694] = 4626, + [4695] = 4633, + [4696] = 4602, + [4697] = 4671, + [4698] = 2041, + [4699] = 4652, + [4700] = 4652, + [4701] = 4670, + [4702] = 4605, + [4703] = 4703, + [4704] = 4645, + [4705] = 4612, + [4706] = 4609, + [4707] = 4671, + [4708] = 4507, + [4709] = 4655, + [4710] = 4649, + [4711] = 4656, + [4712] = 437, + [4713] = 4633, + [4714] = 4657, + [4715] = 4664, + [4716] = 4652, + [4717] = 4613, + [4718] = 4671, + [4719] = 4633, + [4720] = 4670, + [4721] = 2138, + [4722] = 4664, + [4723] = 4723, + [4724] = 4629, + [4725] = 4675, + [4726] = 4655, + [4727] = 4652, + [4728] = 4655, + [4729] = 4657, + [4730] = 455, + [4731] = 2105, + [4732] = 4670, + [4733] = 4628, + [4734] = 4671, + [4735] = 4735, + [4736] = 4657, + [4737] = 513, [4738] = 4738, - [4739] = 4562, - [4740] = 4740, + [4739] = 4609, + [4740] = 4679, [4741] = 4741, - [4742] = 4184, + [4742] = 2130, [4743] = 4743, - [4744] = 4668, - [4745] = 4745, - [4746] = 4582, - [4747] = 4550, - [4748] = 4589, - [4749] = 4598, - [4750] = 4600, - [4751] = 4580, - [4752] = 4583, - [4753] = 4599, - [4754] = 4600, - [4755] = 4661, - [4756] = 4566, - [4757] = 4643, - [4758] = 4584, - [4759] = 4600, - [4760] = 4567, - [4761] = 4580, - [4762] = 2082, - [4763] = 4562, - [4764] = 4573, - [4765] = 4573, - [4766] = 4598, - [4767] = 4767, - [4768] = 474, - [4769] = 4745, - [4770] = 4599, - [4771] = 4583, - [4772] = 4767, - [4773] = 4548, - [4774] = 4774, - [4775] = 4745, - [4776] = 4767, - [4777] = 4472, - [4778] = 4778, - [4779] = 4779, - [4780] = 4780, + [4744] = 511, + [4745] = 4650, + [4746] = 4746, + [4747] = 4653, + [4748] = 4650, + [4749] = 4664, + [4750] = 4750, + [4751] = 4655, + [4752] = 4675, + [4753] = 4606, + [4754] = 4581, + [4755] = 4657, + [4756] = 4613, + [4757] = 4658, + [4758] = 4676, + [4759] = 4606, + [4760] = 4612, + [4761] = 4676, + [4762] = 4650, + [4763] = 4763, + [4764] = 4764, + [4765] = 4670, + [4766] = 4657, + [4767] = 4609, + [4768] = 4611, + [4769] = 2103, + [4770] = 4670, + [4771] = 4670, + [4772] = 4653, + [4773] = 4626, + [4774] = 4600, + [4775] = 4640, + [4776] = 4612, + [4777] = 4613, + [4778] = 4613, + [4779] = 4626, + [4780] = 4650, [4781] = 4781, - [4782] = 4782, - [4783] = 4783, - [4784] = 4784, + [4782] = 4613, + [4783] = 4655, + [4784] = 4602, [4785] = 4785, - [4786] = 4786, - [4787] = 4787, - [4788] = 4788, + [4786] = 4650, + [4787] = 4664, + [4788] = 4655, [4789] = 4789, - [4790] = 4790, - [4791] = 4791, + [4790] = 4652, + [4791] = 2039, [4792] = 4792, [4793] = 4793, - [4794] = 4794, - [4795] = 4786, - [4796] = 4796, + [4794] = 4609, + [4795] = 4671, + [4796] = 4633, [4797] = 4797, - [4798] = 4798, - [4799] = 4799, - [4800] = 4799, - [4801] = 4801, + [4798] = 443, + [4799] = 4656, + [4800] = 4652, + [4801] = 4602, [4802] = 4802, - [4803] = 4803, - [4804] = 4804, - [4805] = 4805, + [4803] = 4614, + [4804] = 4671, + [4805] = 4657, [4806] = 4806, - [4807] = 4807, - [4808] = 4808, - [4809] = 4809, - [4810] = 4810, - [4811] = 4811, - [4812] = 4812, - [4813] = 4813, - [4814] = 4814, - [4815] = 4815, - [4816] = 4816, - [4817] = 4816, + [4807] = 4703, + [4808] = 4611, + [4809] = 4606, + [4810] = 4672, + [4811] = 4629, + [4812] = 4600, + [4813] = 4631, + [4814] = 4612, + [4815] = 4613, + [4816] = 4658, + [4817] = 4645, [4818] = 4818, - [4819] = 4819, - [4820] = 4820, + [4819] = 4614, + [4820] = 4649, [4821] = 4821, - [4822] = 4822, - [4823] = 4823, - [4824] = 4824, - [4825] = 4825, - [4826] = 4826, - [4827] = 4827, + [4822] = 4606, + [4823] = 4602, + [4824] = 4611, + [4825] = 4611, + [4826] = 4672, + [4827] = 4628, [4828] = 4828, - [4829] = 4829, - [4830] = 4830, - [4831] = 4781, + [4829] = 4631, + [4830] = 4633, + [4831] = 4831, [4832] = 4832, [4833] = 4833, [4834] = 4834, [4835] = 4835, - [4836] = 4094, + [4836] = 4836, [4837] = 4837, [4838] = 4838, - [4839] = 4786, + [4839] = 4839, [4840] = 4840, - [4841] = 534, - [4842] = 4786, + [4841] = 4841, + [4842] = 4842, [4843] = 4843, [4844] = 4844, - [4845] = 4794, + [4845] = 4845, [4846] = 4846, - [4847] = 4847, + [4847] = 4834, [4848] = 4848, - [4849] = 4849, - [4850] = 4830, + [4849] = 4839, + [4850] = 4850, [4851] = 4851, [4852] = 4852, [4853] = 4853, - [4854] = 4785, - [4855] = 4786, + [4854] = 4854, + [4855] = 4855, [4856] = 4856, - [4857] = 4849, - [4858] = 4786, + [4857] = 4857, + [4858] = 4858, [4859] = 4859, - [4860] = 4827, + [4860] = 4860, [4861] = 4861, - [4862] = 4862, - [4863] = 4863, - [4864] = 4833, - [4865] = 4814, - [4866] = 4779, + [4862] = 4581, + [4863] = 4111, + [4864] = 4857, + [4865] = 4865, + [4866] = 4853, [4867] = 4867, - [4868] = 4868, - [4869] = 4786, + [4868] = 4837, + [4869] = 4838, [4870] = 4870, [4871] = 4871, - [4872] = 4791, + [4872] = 4872, [4873] = 4873, [4874] = 4874, - [4875] = 4788, - [4876] = 4849, - [4877] = 4809, - [4878] = 2015, - [4879] = 4816, - [4880] = 4786, - [4881] = 4785, + [4875] = 4875, + [4876] = 4876, + [4877] = 4834, + [4878] = 4878, + [4879] = 4879, + [4880] = 4842, + [4881] = 4844, [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 4778, - [4886] = 4886, - [4887] = 4827, + [4885] = 4839, + [4886] = 4856, + [4887] = 4857, [4888] = 4888, - [4889] = 4822, + [4889] = 4889, [4890] = 4890, [4891] = 4891, [4892] = 4892, - [4893] = 4786, + [4893] = 4857, [4894] = 4894, - [4895] = 4891, + [4895] = 4895, [4896] = 4896, [4897] = 4897, [4898] = 4898, [4899] = 4899, - [4900] = 4900, - [4901] = 4874, - [4902] = 4851, + [4900] = 4870, + [4901] = 4901, + [4902] = 4870, [4903] = 4903, - [4904] = 4867, + [4904] = 4904, [4905] = 4905, - [4906] = 4853, - [4907] = 4779, + [4906] = 4906, + [4907] = 4907, [4908] = 4908, - [4909] = 4783, - [4910] = 4843, - [4911] = 4871, + [4909] = 4909, + [4910] = 4910, + [4911] = 4911, [4912] = 4912, - [4913] = 4780, - [4914] = 4914, + [4913] = 4853, + [4914] = 4857, [4915] = 4915, [4916] = 4916, [4917] = 4917, [4918] = 4918, - [4919] = 4919, - [4920] = 4883, - [4921] = 4792, + [4919] = 4853, + [4920] = 4920, + [4921] = 4921, [4922] = 4922, - [4923] = 4791, - [4924] = 4924, - [4925] = 4925, + [4923] = 4923, + [4924] = 4839, + [4925] = 4857, [4926] = 4926, - [4927] = 4816, - [4928] = 4884, - [4929] = 4929, - [4930] = 4930, - [4931] = 4778, - [4932] = 4883, - [4933] = 4863, - [4934] = 4853, + [4927] = 4927, + [4928] = 4928, + [4929] = 4857, + [4930] = 4921, + [4931] = 537, + [4932] = 451, + [4933] = 4933, + [4934] = 4934, [4935] = 4935, [4936] = 4936, [4937] = 4937, - [4938] = 4794, - [4939] = 4833, - [4940] = 4786, + [4938] = 4938, + [4939] = 4939, + [4940] = 4853, [4941] = 4941, - [4942] = 418, + [4942] = 4915, [4943] = 4943, [4944] = 4944, - [4945] = 4785, - [4946] = 442, - [4947] = 4924, - [4948] = 4883, - [4949] = 4778, - [4950] = 4849, - [4951] = 4794, - [4952] = 4952, - [4953] = 4953, - [4954] = 4822, - [4955] = 4955, - [4956] = 4883, - [4957] = 4843, - [4958] = 4861, - [4959] = 4846, - [4960] = 4863, - [4961] = 4786, - [4962] = 4862, - [4963] = 4472, - [4964] = 4794, - [4965] = 4883, - [4966] = 4966, - [4967] = 4786, + [4945] = 4945, + [4946] = 4946, + [4947] = 4947, + [4948] = 4948, + [4949] = 4949, + [4950] = 4950, + [4951] = 4857, + [4952] = 4937, + [4953] = 4926, + [4954] = 4857, + [4955] = 4837, + [4956] = 4956, + [4957] = 4957, + [4958] = 4851, + [4959] = 4950, + [4960] = 4960, + [4961] = 4961, + [4962] = 4865, + [4963] = 4945, + [4964] = 4842, + [4965] = 4965, + [4966] = 4857, + [4967] = 4846, [4968] = 4968, - [4969] = 4896, - [4970] = 4970, - [4971] = 4814, - [4972] = 4780, - [4973] = 4798, + [4969] = 4969, + [4970] = 4927, + [4971] = 4969, + [4972] = 4845, + [4973] = 4973, [4974] = 4974, - [4975] = 4975, - [4976] = 4807, - [4977] = 4955, - [4978] = 546, - [4979] = 4862, - [4980] = 4786, - [4981] = 4903, - [4982] = 4955, - [4983] = 4792, + [4975] = 4937, + [4976] = 4976, + [4977] = 4857, + [4978] = 4957, + [4979] = 4876, + [4980] = 4891, + [4981] = 4895, + [4982] = 4896, + [4983] = 4904, [4984] = 4984, [4985] = 4985, - [4986] = 4809, + [4986] = 4960, [4987] = 4987, - [4988] = 4780, - [4989] = 4989, - [4990] = 4966, - [4991] = 4796, + [4988] = 4865, + [4989] = 4839, + [4990] = 4921, + [4991] = 4857, [4992] = 4992, - [4993] = 4796, - [4994] = 4966, - [4995] = 4794, - [4996] = 4996, - [4997] = 4781, - [4998] = 4998, - [4999] = 4999, - [5000] = 4783, - [5001] = 4846, - [5002] = 4790, - [5003] = 4891, - [5004] = 4861, - [5005] = 5005, - [5006] = 4807, - [5007] = 4999, - [5008] = 4883, - [5009] = 4789, - [5010] = 4861, - [5011] = 4871, - [5012] = 5012, - [5013] = 5005, - [5014] = 4830, - [5015] = 4953, - [5016] = 4905, - [5017] = 4884, - [5018] = 454, - [5019] = 4896, - [5020] = 4794, - [5021] = 4791, - [5022] = 5022, - [5023] = 4924, - [5024] = 4788, - [5025] = 4789, - [5026] = 5026, - [5027] = 4874, - [5028] = 549, - [5029] = 4851, - [5030] = 4903, - [5031] = 4862, - [5032] = 4856, + [4993] = 4956, + [4994] = 4994, + [4995] = 4973, + [4996] = 4926, + [4997] = 4992, + [4998] = 4957, + [4999] = 4927, + [5000] = 4865, + [5001] = 5001, + [5002] = 5002, + [5003] = 4851, + [5004] = 4846, + [5005] = 4969, + [5006] = 4943, + [5007] = 4846, + [5008] = 4968, + [5009] = 4969, + [5010] = 4856, + [5011] = 4837, + [5012] = 4838, + [5013] = 4873, + [5014] = 4845, + [5015] = 4878, + [5016] = 4838, + [5017] = 5017, + [5018] = 4965, + [5019] = 4846, + [5020] = 5020, + [5021] = 4870, + [5022] = 448, + [5023] = 4976, + [5024] = 4874, + [5025] = 4853, + [5026] = 4846, + [5027] = 4973, + [5028] = 4915, + [5029] = 5029, + [5030] = 4974, + [5031] = 4846, + [5032] = 4935, [5033] = 5033, - [5034] = 4999, - [5035] = 4802, - [5036] = 4838, - [5037] = 4847, - [5038] = 4867, - [5039] = 4783, - [5040] = 4790, - [5041] = 5041, - [5042] = 4838, - [5043] = 5043, - [5044] = 4790, - [5045] = 5045, - [5046] = 4856, - [5047] = 4802, - [5048] = 4798, - [5049] = 4849, - [5050] = 4847, - [5051] = 5005, - [5052] = 4799, - [5053] = 4905, - [5054] = 4856, - [5055] = 4856, - [5056] = 4856, - [5057] = 4856, - [5058] = 4807, - [5059] = 5059, - [5060] = 5060, - [5061] = 5061, - [5062] = 5062, - [5063] = 5063, - [5064] = 5064, - [5065] = 5065, - [5066] = 5066, - [5067] = 5065, + [5034] = 481, + [5035] = 4976, + [5036] = 5036, + [5037] = 498, + [5038] = 419, + [5039] = 4876, + [5040] = 4891, + [5041] = 4895, + [5042] = 4896, + [5043] = 4956, + [5044] = 4904, + [5045] = 4984, + [5046] = 4985, + [5047] = 5020, + [5048] = 4947, + [5049] = 4937, + [5050] = 4994, + [5051] = 4961, + [5052] = 4957, + [5053] = 4857, + [5054] = 5054, + [5055] = 5055, + [5056] = 4961, + [5057] = 4943, + [5058] = 4948, + [5059] = 4945, + [5060] = 4935, + [5061] = 4947, + [5062] = 4948, + [5063] = 4844, + [5064] = 4973, + [5065] = 4968, + [5066] = 5033, + [5067] = 4984, [5068] = 5068, - [5069] = 5069, - [5070] = 5070, - [5071] = 5071, - [5072] = 5063, - [5073] = 5070, - [5074] = 5074, - [5075] = 5075, - [5076] = 5066, + [5069] = 4960, + [5070] = 2042, + [5071] = 5020, + [5072] = 5072, + [5073] = 5073, + [5074] = 4994, + [5075] = 4985, + [5076] = 5076, [5077] = 5077, - [5078] = 5059, - [5079] = 5079, - [5080] = 5059, - [5081] = 5065, + [5078] = 5036, + [5079] = 5033, + [5080] = 5036, + [5081] = 5081, [5082] = 5082, - [5083] = 5059, - [5084] = 5084, + [5083] = 4950, + [5084] = 4965, [5085] = 5085, [5086] = 5086, - [5087] = 5069, - [5088] = 5065, - [5089] = 5082, - [5090] = 5074, + [5087] = 5087, + [5088] = 5088, + [5089] = 4853, + [5090] = 4987, [5091] = 5091, - [5092] = 5092, + [5092] = 4987, [5093] = 5093, [5094] = 5094, [5095] = 5095, - [5096] = 5096, - [5097] = 5097, - [5098] = 5059, - [5099] = 5099, - [5100] = 5100, - [5101] = 5063, - [5102] = 5070, + [5096] = 4873, + [5097] = 4874, + [5098] = 5098, + [5099] = 4851, + [5100] = 4987, + [5101] = 4974, + [5102] = 4878, [5103] = 5103, - [5104] = 5104, + [5104] = 4921, [5105] = 5105, [5106] = 5106, - [5107] = 5082, - [5108] = 5108, - [5109] = 5109, - [5110] = 5110, + [5107] = 5107, + [5108] = 4987, + [5109] = 4987, + [5110] = 4987, [5111] = 5111, [5112] = 5112, - [5113] = 5066, + [5113] = 5113, [5114] = 5114, [5115] = 5115, [5116] = 5116, - [5117] = 5082, - [5118] = 5059, + [5117] = 5117, + [5118] = 5117, [5119] = 5119, - [5120] = 5105, - [5121] = 5074, + [5120] = 5120, + [5121] = 5114, [5122] = 5122, [5123] = 5123, - [5124] = 5124, - [5125] = 4740, + [5124] = 5117, + [5125] = 5125, [5126] = 5126, - [5127] = 5063, - [5128] = 5070, + [5127] = 5127, + [5128] = 5128, [5129] = 5129, - [5130] = 5108, + [5130] = 5130, [5131] = 5131, - [5132] = 5132, - [5133] = 5066, - [5134] = 5082, - [5135] = 5082, - [5136] = 5074, - [5137] = 5084, - [5138] = 5138, - [5139] = 5084, + [5132] = 5117, + [5133] = 5133, + [5134] = 5125, + [5135] = 5125, + [5136] = 5136, + [5137] = 5137, + [5138] = 5114, + [5139] = 5125, [5140] = 5140, - [5141] = 5063, - [5142] = 5070, - [5143] = 5143, - [5144] = 5143, + [5141] = 5141, + [5142] = 5142, + [5143] = 5123, + [5144] = 5114, [5145] = 5145, - [5146] = 5066, + [5146] = 5146, [5147] = 5147, - [5148] = 5105, + [5148] = 5112, [5149] = 5149, - [5150] = 5110, - [5151] = 5151, - [5152] = 5105, - [5153] = 5082, - [5154] = 5063, - [5155] = 5070, - [5156] = 5143, - [5157] = 5157, - [5158] = 5066, - [5159] = 5104, - [5160] = 5060, + [5150] = 5114, + [5151] = 5112, + [5152] = 5115, + [5153] = 5153, + [5154] = 5154, + [5155] = 5155, + [5156] = 5114, + [5157] = 5129, + [5158] = 5155, + [5159] = 5159, + [5160] = 5160, [5161] = 5161, - [5162] = 5162, - [5163] = 5082, - [5164] = 5164, - [5165] = 5143, - [5166] = 5082, - [5167] = 5059, + [5162] = 4615, + [5163] = 5163, + [5164] = 5154, + [5165] = 5114, + [5166] = 5141, + [5167] = 5142, [5168] = 5168, [5169] = 5169, - [5170] = 5082, - [5171] = 5171, - [5172] = 5172, - [5173] = 5112, - [5174] = 5174, - [5175] = 5082, + [5170] = 5170, + [5171] = 5141, + [5172] = 5115, + [5173] = 5114, + [5174] = 5114, + [5175] = 5175, [5176] = 5176, - [5177] = 5082, - [5178] = 5074, - [5179] = 5179, - [5180] = 5110, - [5181] = 5104, - [5182] = 5182, - [5183] = 5143, + [5177] = 4785, + [5178] = 5178, + [5179] = 5115, + [5180] = 5141, + [5181] = 5142, + [5182] = 5117, + [5183] = 5129, [5184] = 5184, - [5185] = 5082, - [5186] = 5082, - [5187] = 5091, - [5188] = 5059, - [5189] = 5110, - [5190] = 5149, - [5191] = 5104, - [5192] = 5082, - [5193] = 5061, - [5194] = 5194, + [5185] = 5115, + [5186] = 5114, + [5187] = 5153, + [5188] = 5141, + [5189] = 5142, + [5190] = 5117, + [5191] = 5191, + [5192] = 5129, + [5193] = 5141, + [5194] = 5142, [5195] = 5195, - [5196] = 5196, - [5197] = 5065, + [5196] = 5142, + [5197] = 5115, [5198] = 5198, [5199] = 5199, - [5200] = 5182, - [5201] = 5201, - [5202] = 5202, - [5203] = 5066, - [5204] = 5204, - [5205] = 5060, + [5200] = 5200, + [5201] = 5113, + [5202] = 5114, + [5203] = 5123, + [5204] = 5113, + [5205] = 5205, [5206] = 5206, - [5207] = 5204, - [5208] = 5091, - [5209] = 5195, - [5210] = 5082, + [5207] = 5120, + [5208] = 5208, + [5209] = 5209, + [5210] = 5210, [5211] = 5211, - [5212] = 5059, - [5213] = 5105, - [5214] = 5201, - [5215] = 4774, + [5212] = 5212, + [5213] = 5115, + [5214] = 5114, + [5215] = 5155, [5216] = 5216, - [5217] = 5217, - [5218] = 5082, - [5219] = 5202, - [5220] = 5082, - [5221] = 5221, - [5222] = 5059, - [5223] = 5169, - [5224] = 5110, - [5225] = 5225, - [5226] = 5082, - [5227] = 5227, - [5228] = 4635, - [5229] = 5194, - [5230] = 5230, + [5217] = 5125, + [5218] = 5145, + [5219] = 5112, + [5220] = 5126, + [5221] = 5153, + [5222] = 5200, + [5223] = 5113, + [5224] = 5224, + [5225] = 5114, + [5226] = 5226, + [5227] = 5145, + [5228] = 5228, + [5229] = 5212, + [5230] = 5114, [5231] = 5231, [5232] = 5232, - [5233] = 5108, - [5234] = 5082, - [5235] = 5235, - [5236] = 5066, - [5237] = 5074, - [5238] = 5143, - [5239] = 5082, + [5233] = 5233, + [5234] = 5234, + [5235] = 5200, + [5236] = 5236, + [5237] = 5114, + [5238] = 5145, + [5239] = 5199, [5240] = 5240, - [5241] = 5110, - [5242] = 5242, - [5243] = 5243, - [5244] = 5108, - [5245] = 5245, - [5246] = 5065, - [5247] = 5247, - [5248] = 5216, - [5249] = 5151, - [5250] = 5149, - [5251] = 5061, + [5241] = 5178, + [5242] = 5184, + [5243] = 5117, + [5244] = 5244, + [5245] = 5145, + [5246] = 5114, + [5247] = 5117, + [5248] = 5248, + [5249] = 5136, + [5250] = 5112, + [5251] = 5251, [5252] = 5252, - [5253] = 5243, - [5254] = 5182, - [5255] = 5201, - [5256] = 5202, - [5257] = 5074, - [5258] = 5204, - [5259] = 5164, - [5260] = 5082, - [5261] = 5195, - [5262] = 5262, - [5263] = 5263, - [5264] = 5243, - [5265] = 5216, - [5266] = 5169, - [5267] = 5267, - [5268] = 5104, - [5269] = 5201, - [5270] = 5202, - [5271] = 5138, - [5272] = 5201, - [5273] = 5202, - [5274] = 5201, - [5275] = 5202, - [5276] = 5201, - [5277] = 5202, - [5278] = 5184, - [5279] = 5065, - [5280] = 5059, - [5281] = 5281, + [5253] = 5253, + [5254] = 5240, + [5255] = 5112, + [5256] = 5256, + [5257] = 5114, + [5258] = 5258, + [5259] = 5259, + [5260] = 5113, + [5261] = 5145, + [5262] = 5209, + [5263] = 5115, + [5264] = 4741, + [5265] = 5265, + [5266] = 5114, + [5267] = 5125, + [5268] = 5123, + [5269] = 5114, + [5270] = 5112, + [5271] = 5155, + [5272] = 5272, + [5273] = 5129, + [5274] = 5117, + [5275] = 5125, + [5276] = 5113, + [5277] = 5277, + [5278] = 5278, + [5279] = 5141, + [5280] = 5280, + [5281] = 5142, [5282] = 5282, [5283] = 5283, - [5284] = 5284, - [5285] = 5063, - [5286] = 5070, - [5287] = 5108, - [5288] = 5082, - [5289] = 5105, - [5290] = 5069, - [5291] = 5108, - [5292] = 5110, + [5284] = 5120, + [5285] = 5285, + [5286] = 5123, + [5287] = 5123, + [5288] = 5288, + [5289] = 5199, + [5290] = 5244, + [5291] = 5224, + [5292] = 5155, [5293] = 5293, - [5294] = 5108, + [5294] = 5294, [5295] = 5295, [5296] = 5296, - [5297] = 5297, - [5298] = 5099, - [5299] = 5082, - [5300] = 5300, - [5301] = 5105, - [5302] = 5302, - [5303] = 5065, - [5304] = 5112, - [5305] = 5099, - [5306] = 5184, - [5307] = 5151, - [5308] = 5194, - [5309] = 5059, - [5310] = 5143, - [5311] = 5164, - [5312] = 5312, - [5313] = 5104, - [5314] = 5104, + [5297] = 5114, + [5298] = 5114, + [5299] = 5233, + [5300] = 5256, + [5301] = 5301, + [5302] = 5240, + [5303] = 5178, + [5304] = 5184, + [5305] = 5305, + [5306] = 5244, + [5307] = 5307, + [5308] = 5308, + [5309] = 5136, + [5310] = 5310, + [5311] = 5233, + [5312] = 5208, + [5313] = 5256, + [5314] = 5314, + [5315] = 5315, + [5316] = 5170, + [5317] = 5114, + [5318] = 5178, + [5319] = 5184, + [5320] = 5154, + [5321] = 5178, + [5322] = 5184, + [5323] = 5178, + [5324] = 5184, + [5325] = 5178, + [5326] = 5184, + [5327] = 5327, + [5328] = 5212, + [5329] = 5129, + [5330] = 5129, + [5331] = 5331, + [5332] = 5216, + [5333] = 5333, + [5334] = 5145, + [5335] = 5335, + [5336] = 5114, + [5337] = 5236, + [5338] = 5126, + [5339] = 5339, + [5340] = 5216, + [5341] = 5117, + [5342] = 5342, + [5343] = 5170, + [5344] = 5113, + [5345] = 5345, + [5346] = 5224, + [5347] = 5347, + [5348] = 5209, + [5349] = 5155, + [5350] = 5350, + [5351] = 5351, + [5352] = 5117, + [5353] = 5123, + [5354] = 5354, + [5355] = 5355, + [5356] = 5356, + [5357] = 5155, + [5358] = 5140, + [5359] = 5359, + [5360] = 5114, + [5361] = 5117, + [5362] = 5208, + [5363] = 5363, + [5364] = 5112, + [5365] = 5365, + [5366] = 5236, + [5367] = 5367, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -20369,25 +20422,25 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 3, .external_lex_state = 4}, [62] = {.lex_state = 3, .external_lex_state = 4}, [63] = {.lex_state = 5, .external_lex_state = 3}, - [64] = {.lex_state = 389, .external_lex_state = 2}, + [64] = {.lex_state = 5, .external_lex_state = 3}, [65] = {.lex_state = 5, .external_lex_state = 3}, [66] = {.lex_state = 5, .external_lex_state = 3}, [67] = {.lex_state = 5, .external_lex_state = 3}, - [68] = {.lex_state = 5, .external_lex_state = 3}, + [68] = {.lex_state = 389, .external_lex_state = 2}, [69] = {.lex_state = 5, .external_lex_state = 3}, [70] = {.lex_state = 5, .external_lex_state = 3}, [71] = {.lex_state = 389, .external_lex_state = 2}, - [72] = {.lex_state = 389, .external_lex_state = 2}, - [73] = {.lex_state = 389, .external_lex_state = 2}, + [72] = {.lex_state = 5, .external_lex_state = 3}, + [73] = {.lex_state = 5, .external_lex_state = 3}, [74] = {.lex_state = 389, .external_lex_state = 2}, - [75] = {.lex_state = 5, .external_lex_state = 3}, - [76] = {.lex_state = 5, .external_lex_state = 3}, - [77] = {.lex_state = 389, .external_lex_state = 2}, + [75] = {.lex_state = 389, .external_lex_state = 2}, + [76] = {.lex_state = 389, .external_lex_state = 2}, + [77] = {.lex_state = 4, .external_lex_state = 3}, [78] = {.lex_state = 389, .external_lex_state = 2}, - [79] = {.lex_state = 389, .external_lex_state = 2}, - [80] = {.lex_state = 4, .external_lex_state = 3}, - [81] = {.lex_state = 4, .external_lex_state = 3}, - [82] = {.lex_state = 389, .external_lex_state = 2}, + [79] = {.lex_state = 4, .external_lex_state = 3}, + [80] = {.lex_state = 389, .external_lex_state = 2}, + [81] = {.lex_state = 389, .external_lex_state = 2}, + [82] = {.lex_state = 4, .external_lex_state = 3}, [83] = {.lex_state = 389, .external_lex_state = 2}, [84] = {.lex_state = 4, .external_lex_state = 3}, [85] = {.lex_state = 389, .external_lex_state = 2}, @@ -20397,77 +20450,77 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [89] = {.lex_state = 4, .external_lex_state = 3}, [90] = {.lex_state = 389, .external_lex_state = 2}, [91] = {.lex_state = 389, .external_lex_state = 2}, - [92] = {.lex_state = 7, .external_lex_state = 5}, - [93] = {.lex_state = 4, .external_lex_state = 3}, + [92] = {.lex_state = 389, .external_lex_state = 2}, + [93] = {.lex_state = 389, .external_lex_state = 2}, [94] = {.lex_state = 4, .external_lex_state = 3}, [95] = {.lex_state = 389, .external_lex_state = 2}, [96] = {.lex_state = 389, .external_lex_state = 2}, - [97] = {.lex_state = 4, .external_lex_state = 3}, + [97] = {.lex_state = 389, .external_lex_state = 2}, [98] = {.lex_state = 389, .external_lex_state = 2}, [99] = {.lex_state = 389, .external_lex_state = 2}, - [100] = {.lex_state = 4, .external_lex_state = 3}, + [100] = {.lex_state = 7, .external_lex_state = 5}, [101] = {.lex_state = 389, .external_lex_state = 2}, - [102] = {.lex_state = 389, .external_lex_state = 2}, - [103] = {.lex_state = 389, .external_lex_state = 2}, + [102] = {.lex_state = 6, .external_lex_state = 3}, + [103] = {.lex_state = 4, .external_lex_state = 3}, [104] = {.lex_state = 389, .external_lex_state = 2}, - [105] = {.lex_state = 6, .external_lex_state = 3}, - [106] = {.lex_state = 389, .external_lex_state = 2}, - [107] = {.lex_state = 389, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 3}, - [109] = {.lex_state = 3, .external_lex_state = 4}, - [110] = {.lex_state = 7, .external_lex_state = 3}, + [105] = {.lex_state = 389, .external_lex_state = 2}, + [106] = {.lex_state = 4, .external_lex_state = 3}, + [107] = {.lex_state = 4, .external_lex_state = 3}, + [108] = {.lex_state = 389, .external_lex_state = 2}, + [109] = {.lex_state = 6, .external_lex_state = 3}, + [110] = {.lex_state = 6, .external_lex_state = 3}, [111] = {.lex_state = 6, .external_lex_state = 3}, - [112] = {.lex_state = 6, .external_lex_state = 3}, - [113] = {.lex_state = 3, .external_lex_state = 4}, - [114] = {.lex_state = 3, .external_lex_state = 4}, - [115] = {.lex_state = 381, .external_lex_state = 6}, - [116] = {.lex_state = 6, .external_lex_state = 3}, - [117] = {.lex_state = 6, .external_lex_state = 3}, - [118] = {.lex_state = 6, .external_lex_state = 5}, - [119] = {.lex_state = 4, .external_lex_state = 5}, + [112] = {.lex_state = 3, .external_lex_state = 4}, + [113] = {.lex_state = 6, .external_lex_state = 3}, + [114] = {.lex_state = 7, .external_lex_state = 3}, + [115] = {.lex_state = 3, .external_lex_state = 4}, + [116] = {.lex_state = 381, .external_lex_state = 6}, + [117] = {.lex_state = 3, .external_lex_state = 4}, + [118] = {.lex_state = 4, .external_lex_state = 5}, + [119] = {.lex_state = 5, .external_lex_state = 3}, [120] = {.lex_state = 5, .external_lex_state = 3}, - [121] = {.lex_state = 5, .external_lex_state = 3}, + [121] = {.lex_state = 6, .external_lex_state = 5}, [122] = {.lex_state = 4, .external_lex_state = 5}, - [123] = {.lex_state = 4, .external_lex_state = 5}, - [124] = {.lex_state = 5, .external_lex_state = 3}, + [123] = {.lex_state = 5, .external_lex_state = 3}, + [124] = {.lex_state = 4, .external_lex_state = 5}, [125] = {.lex_state = 4, .external_lex_state = 5}, - [126] = {.lex_state = 4, .external_lex_state = 5}, + [126] = {.lex_state = 4, .external_lex_state = 4}, [127] = {.lex_state = 4, .external_lex_state = 3}, - [128] = {.lex_state = 4, .external_lex_state = 3}, - [129] = {.lex_state = 389, .external_lex_state = 2}, + [128] = {.lex_state = 4, .external_lex_state = 5}, + [129] = {.lex_state = 4, .external_lex_state = 3}, [130] = {.lex_state = 4, .external_lex_state = 3}, - [131] = {.lex_state = 4, .external_lex_state = 7}, - [132] = {.lex_state = 4, .external_lex_state = 3}, - [133] = {.lex_state = 4, .external_lex_state = 4}, - [134] = {.lex_state = 4, .external_lex_state = 3}, + [131] = {.lex_state = 4, .external_lex_state = 3}, + [132] = {.lex_state = 389, .external_lex_state = 2}, + [133] = {.lex_state = 4, .external_lex_state = 3}, + [134] = {.lex_state = 4, .external_lex_state = 4}, [135] = {.lex_state = 4, .external_lex_state = 3}, [136] = {.lex_state = 4, .external_lex_state = 3}, [137] = {.lex_state = 4, .external_lex_state = 3}, - [138] = {.lex_state = 4, .external_lex_state = 4}, - [139] = {.lex_state = 389, .external_lex_state = 2}, - [140] = {.lex_state = 4, .external_lex_state = 4}, + [138] = {.lex_state = 4, .external_lex_state = 7}, + [139] = {.lex_state = 4, .external_lex_state = 5}, + [140] = {.lex_state = 4, .external_lex_state = 7}, [141] = {.lex_state = 389, .external_lex_state = 2}, - [142] = {.lex_state = 389, .external_lex_state = 2}, - [143] = {.lex_state = 4, .external_lex_state = 5}, - [144] = {.lex_state = 4, .external_lex_state = 3}, - [145] = {.lex_state = 4, .external_lex_state = 3}, - [146] = {.lex_state = 4, .external_lex_state = 7}, - [147] = {.lex_state = 4, .external_lex_state = 5}, - [148] = {.lex_state = 4, .external_lex_state = 7}, + [142] = {.lex_state = 4, .external_lex_state = 3}, + [143] = {.lex_state = 4, .external_lex_state = 7}, + [144] = {.lex_state = 4, .external_lex_state = 7}, + [145] = {.lex_state = 4, .external_lex_state = 5}, + [146] = {.lex_state = 382, .external_lex_state = 6}, + [147] = {.lex_state = 4, .external_lex_state = 3}, + [148] = {.lex_state = 4, .external_lex_state = 5}, [149] = {.lex_state = 4, .external_lex_state = 3}, - [150] = {.lex_state = 4, .external_lex_state = 7}, + [150] = {.lex_state = 4, .external_lex_state = 3}, [151] = {.lex_state = 4, .external_lex_state = 7}, - [152] = {.lex_state = 4, .external_lex_state = 5}, - [153] = {.lex_state = 382, .external_lex_state = 6}, - [154] = {.lex_state = 4, .external_lex_state = 3}, - [155] = {.lex_state = 4, .external_lex_state = 5}, - [156] = {.lex_state = 4, .external_lex_state = 7}, - [157] = {.lex_state = 5, .external_lex_state = 3}, - [158] = {.lex_state = 4, .external_lex_state = 7}, + [152] = {.lex_state = 5, .external_lex_state = 3}, + [153] = {.lex_state = 4, .external_lex_state = 7}, + [154] = {.lex_state = 389, .external_lex_state = 2}, + [155] = {.lex_state = 4, .external_lex_state = 4}, + [156] = {.lex_state = 389, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 4}, + [158] = {.lex_state = 4, .external_lex_state = 5}, [159] = {.lex_state = 5, .external_lex_state = 3}, [160] = {.lex_state = 4, .external_lex_state = 7}, [161] = {.lex_state = 4, .external_lex_state = 7}, - [162] = {.lex_state = 4, .external_lex_state = 4}, + [162] = {.lex_state = 4, .external_lex_state = 7}, [163] = {.lex_state = 4, .external_lex_state = 4}, [164] = {.lex_state = 4, .external_lex_state = 4}, [165] = {.lex_state = 4, .external_lex_state = 5}, @@ -20480,109 +20533,109 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [172] = {.lex_state = 389, .external_lex_state = 2}, [173] = {.lex_state = 389, .external_lex_state = 2}, [174] = {.lex_state = 389, .external_lex_state = 2}, - [175] = {.lex_state = 4, .external_lex_state = 5}, - [176] = {.lex_state = 389, .external_lex_state = 2}, - [177] = {.lex_state = 389, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 5}, + [175] = {.lex_state = 389, .external_lex_state = 2}, + [176] = {.lex_state = 5, .external_lex_state = 4}, + [177] = {.lex_state = 4, .external_lex_state = 5}, + [178] = {.lex_state = 389, .external_lex_state = 2}, [179] = {.lex_state = 389, .external_lex_state = 2}, - [180] = {.lex_state = 5, .external_lex_state = 4}, + [180] = {.lex_state = 389, .external_lex_state = 2}, [181] = {.lex_state = 389, .external_lex_state = 2}, - [182] = {.lex_state = 4, .external_lex_state = 5}, + [182] = {.lex_state = 5, .external_lex_state = 4}, [183] = {.lex_state = 389, .external_lex_state = 2}, [184] = {.lex_state = 389, .external_lex_state = 2}, - [185] = {.lex_state = 389, .external_lex_state = 2}, + [185] = {.lex_state = 4, .external_lex_state = 5}, [186] = {.lex_state = 389, .external_lex_state = 2}, [187] = {.lex_state = 389, .external_lex_state = 2}, [188] = {.lex_state = 389, .external_lex_state = 2}, - [189] = {.lex_state = 389, .external_lex_state = 2}, - [190] = {.lex_state = 389, .external_lex_state = 2}, - [191] = {.lex_state = 5, .external_lex_state = 4}, - [192] = {.lex_state = 4, .external_lex_state = 5}, + [189] = {.lex_state = 4, .external_lex_state = 5}, + [190] = {.lex_state = 4, .external_lex_state = 5}, + [191] = {.lex_state = 389, .external_lex_state = 2}, + [192] = {.lex_state = 389, .external_lex_state = 2}, [193] = {.lex_state = 5, .external_lex_state = 4}, [194] = {.lex_state = 389, .external_lex_state = 2}, [195] = {.lex_state = 389, .external_lex_state = 2}, [196] = {.lex_state = 389, .external_lex_state = 2}, - [197] = {.lex_state = 5, .external_lex_state = 4}, - [198] = {.lex_state = 389, .external_lex_state = 2}, + [197] = {.lex_state = 389, .external_lex_state = 2}, + [198] = {.lex_state = 5, .external_lex_state = 4}, [199] = {.lex_state = 389, .external_lex_state = 2}, - [200] = {.lex_state = 4, .external_lex_state = 5}, + [200] = {.lex_state = 4, .external_lex_state = 8}, [201] = {.lex_state = 4, .external_lex_state = 8}, [202] = {.lex_state = 4, .external_lex_state = 5}, [203] = {.lex_state = 4, .external_lex_state = 8}, - [204] = {.lex_state = 4, .external_lex_state = 8}, - [205] = {.lex_state = 4, .external_lex_state = 5}, + [204] = {.lex_state = 4, .external_lex_state = 5}, + [205] = {.lex_state = 4, .external_lex_state = 8}, [206] = {.lex_state = 4, .external_lex_state = 5}, - [207] = {.lex_state = 4, .external_lex_state = 8}, + [207] = {.lex_state = 4, .external_lex_state = 5}, [208] = {.lex_state = 389, .external_lex_state = 2}, [209] = {.lex_state = 389, .external_lex_state = 2}, - [210] = {.lex_state = 389, .external_lex_state = 2}, - [211] = {.lex_state = 389, .external_lex_state = 2}, - [212] = {.lex_state = 389, .external_lex_state = 2}, - [213] = {.lex_state = 4, .external_lex_state = 5}, + [210] = {.lex_state = 4, .external_lex_state = 5}, + [211] = {.lex_state = 4, .external_lex_state = 5}, + [212] = {.lex_state = 383, .external_lex_state = 6}, + [213] = {.lex_state = 383, .external_lex_state = 6}, [214] = {.lex_state = 389, .external_lex_state = 2}, [215] = {.lex_state = 5, .external_lex_state = 4}, - [216] = {.lex_state = 389, .external_lex_state = 2}, - [217] = {.lex_state = 389, .external_lex_state = 2}, - [218] = {.lex_state = 389, .external_lex_state = 2}, - [219] = {.lex_state = 389, .external_lex_state = 2}, - [220] = {.lex_state = 389, .external_lex_state = 2}, - [221] = {.lex_state = 389, .external_lex_state = 2}, - [222] = {.lex_state = 389, .external_lex_state = 2}, + [216] = {.lex_state = 383, .external_lex_state = 6}, + [217] = {.lex_state = 383, .external_lex_state = 6}, + [218] = {.lex_state = 4, .external_lex_state = 5}, + [219] = {.lex_state = 4, .external_lex_state = 5}, + [220] = {.lex_state = 5, .external_lex_state = 3}, + [221] = {.lex_state = 4, .external_lex_state = 5}, + [222] = {.lex_state = 5, .external_lex_state = 3}, [223] = {.lex_state = 389, .external_lex_state = 2}, - [224] = {.lex_state = 389, .external_lex_state = 2}, + [224] = {.lex_state = 5, .external_lex_state = 4}, [225] = {.lex_state = 389, .external_lex_state = 2}, - [226] = {.lex_state = 4, .external_lex_state = 5}, + [226] = {.lex_state = 389, .external_lex_state = 2}, [227] = {.lex_state = 389, .external_lex_state = 2}, [228] = {.lex_state = 389, .external_lex_state = 2}, [229] = {.lex_state = 389, .external_lex_state = 2}, [230] = {.lex_state = 389, .external_lex_state = 2}, - [231] = {.lex_state = 383, .external_lex_state = 6}, + [231] = {.lex_state = 5, .external_lex_state = 3}, [232] = {.lex_state = 389, .external_lex_state = 2}, - [233] = {.lex_state = 389, .external_lex_state = 2}, + [233] = {.lex_state = 5, .external_lex_state = 4}, [234] = {.lex_state = 389, .external_lex_state = 2}, - [235] = {.lex_state = 4, .external_lex_state = 5}, - [236] = {.lex_state = 4, .external_lex_state = 5}, + [235] = {.lex_state = 389, .external_lex_state = 2}, + [236] = {.lex_state = 389, .external_lex_state = 2}, [237] = {.lex_state = 389, .external_lex_state = 2}, [238] = {.lex_state = 389, .external_lex_state = 2}, - [239] = {.lex_state = 389, .external_lex_state = 2}, - [240] = {.lex_state = 389, .external_lex_state = 2}, + [239] = {.lex_state = 5, .external_lex_state = 3}, + [240] = {.lex_state = 5, .external_lex_state = 4}, [241] = {.lex_state = 389, .external_lex_state = 2}, [242] = {.lex_state = 389, .external_lex_state = 2}, [243] = {.lex_state = 389, .external_lex_state = 2}, - [244] = {.lex_state = 5, .external_lex_state = 3}, - [245] = {.lex_state = 5, .external_lex_state = 4}, - [246] = {.lex_state = 383, .external_lex_state = 6}, - [247] = {.lex_state = 383, .external_lex_state = 6}, - [248] = {.lex_state = 5, .external_lex_state = 3}, + [244] = {.lex_state = 389, .external_lex_state = 2}, + [245] = {.lex_state = 4, .external_lex_state = 5}, + [246] = {.lex_state = 389, .external_lex_state = 2}, + [247] = {.lex_state = 389, .external_lex_state = 2}, + [248] = {.lex_state = 389, .external_lex_state = 2}, [249] = {.lex_state = 389, .external_lex_state = 2}, [250] = {.lex_state = 389, .external_lex_state = 2}, - [251] = {.lex_state = 4, .external_lex_state = 5}, - [252] = {.lex_state = 4, .external_lex_state = 5}, - [253] = {.lex_state = 5, .external_lex_state = 4}, + [251] = {.lex_state = 389, .external_lex_state = 2}, + [252] = {.lex_state = 389, .external_lex_state = 2}, + [253] = {.lex_state = 389, .external_lex_state = 2}, [254] = {.lex_state = 389, .external_lex_state = 2}, - [255] = {.lex_state = 4, .external_lex_state = 5}, - [256] = {.lex_state = 389, .external_lex_state = 2}, + [255] = {.lex_state = 389, .external_lex_state = 2}, + [256] = {.lex_state = 4, .external_lex_state = 5}, [257] = {.lex_state = 389, .external_lex_state = 2}, - [258] = {.lex_state = 4, .external_lex_state = 5}, + [258] = {.lex_state = 389, .external_lex_state = 2}, [259] = {.lex_state = 389, .external_lex_state = 2}, [260] = {.lex_state = 389, .external_lex_state = 2}, - [261] = {.lex_state = 389, .external_lex_state = 2}, - [262] = {.lex_state = 4, .external_lex_state = 5}, - [263] = {.lex_state = 383, .external_lex_state = 6}, + [261] = {.lex_state = 383, .external_lex_state = 6}, + [262] = {.lex_state = 389, .external_lex_state = 2}, + [263] = {.lex_state = 389, .external_lex_state = 2}, [264] = {.lex_state = 389, .external_lex_state = 2}, - [265] = {.lex_state = 4, .external_lex_state = 5}, + [265] = {.lex_state = 389, .external_lex_state = 2}, [266] = {.lex_state = 389, .external_lex_state = 2}, [267] = {.lex_state = 389, .external_lex_state = 2}, - [268] = {.lex_state = 5, .external_lex_state = 3}, + [268] = {.lex_state = 389, .external_lex_state = 2}, [269] = {.lex_state = 389, .external_lex_state = 2}, - [270] = {.lex_state = 5, .external_lex_state = 3}, - [271] = {.lex_state = 383, .external_lex_state = 6}, + [270] = {.lex_state = 389, .external_lex_state = 2}, + [271] = {.lex_state = 4, .external_lex_state = 5}, [272] = {.lex_state = 389, .external_lex_state = 2}, - [273] = {.lex_state = 5, .external_lex_state = 4}, + [273] = {.lex_state = 4, .external_lex_state = 5}, [274] = {.lex_state = 4, .external_lex_state = 5}, [275] = {.lex_state = 389, .external_lex_state = 2}, - [276] = {.lex_state = 383, .external_lex_state = 6}, - [277] = {.lex_state = 389, .external_lex_state = 2}, + [276] = {.lex_state = 4, .external_lex_state = 5}, + [277] = {.lex_state = 383, .external_lex_state = 6}, [278] = {.lex_state = 383, .external_lex_state = 6}, [279] = {.lex_state = 383, .external_lex_state = 6}, [280] = {.lex_state = 384, .external_lex_state = 6}, @@ -20634,58 +20687,58 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [326] = {.lex_state = 18, .external_lex_state = 9}, [327] = {.lex_state = 18, .external_lex_state = 9}, [328] = {.lex_state = 18, .external_lex_state = 9}, - [329] = {.lex_state = 18, .external_lex_state = 9}, + [329] = {.lex_state = 5, .external_lex_state = 4}, [330] = {.lex_state = 18, .external_lex_state = 9}, [331] = {.lex_state = 18, .external_lex_state = 9}, - [332] = {.lex_state = 19, .external_lex_state = 10}, - [333] = {.lex_state = 5, .external_lex_state = 4}, - [334] = {.lex_state = 5, .external_lex_state = 4}, - [335] = {.lex_state = 18, .external_lex_state = 9}, - [336] = {.lex_state = 5, .external_lex_state = 4}, - [337] = {.lex_state = 5, .external_lex_state = 4}, - [338] = {.lex_state = 5, .external_lex_state = 4}, - [339] = {.lex_state = 19, .external_lex_state = 10}, - [340] = {.lex_state = 5, .external_lex_state = 4}, - [341] = {.lex_state = 18, .external_lex_state = 9}, - [342] = {.lex_state = 18, .external_lex_state = 9}, - [343] = {.lex_state = 18, .external_lex_state = 9}, - [344] = {.lex_state = 19, .external_lex_state = 10}, - [345] = {.lex_state = 19, .external_lex_state = 10}, + [332] = {.lex_state = 18, .external_lex_state = 9}, + [333] = {.lex_state = 19, .external_lex_state = 10}, + [334] = {.lex_state = 18, .external_lex_state = 9}, + [335] = {.lex_state = 19, .external_lex_state = 10}, + [336] = {.lex_state = 18, .external_lex_state = 9}, + [337] = {.lex_state = 18, .external_lex_state = 9}, + [338] = {.lex_state = 18, .external_lex_state = 9}, + [339] = {.lex_state = 18, .external_lex_state = 9}, + [340] = {.lex_state = 18, .external_lex_state = 9}, + [341] = {.lex_state = 5, .external_lex_state = 4}, + [342] = {.lex_state = 19, .external_lex_state = 10}, + [343] = {.lex_state = 5, .external_lex_state = 4}, + [344] = {.lex_state = 5, .external_lex_state = 4}, + [345] = {.lex_state = 5, .external_lex_state = 4}, [346] = {.lex_state = 18, .external_lex_state = 9}, [347] = {.lex_state = 18, .external_lex_state = 9}, [348] = {.lex_state = 19, .external_lex_state = 10}, - [349] = {.lex_state = 18, .external_lex_state = 9}, - [350] = {.lex_state = 19, .external_lex_state = 10}, + [349] = {.lex_state = 19, .external_lex_state = 10}, + [350] = {.lex_state = 5, .external_lex_state = 4}, [351] = {.lex_state = 18, .external_lex_state = 9}, [352] = {.lex_state = 19, .external_lex_state = 10}, [353] = {.lex_state = 18, .external_lex_state = 9}, - [354] = {.lex_state = 18, .external_lex_state = 9}, + [354] = {.lex_state = 19, .external_lex_state = 10}, [355] = {.lex_state = 18, .external_lex_state = 9}, - [356] = {.lex_state = 18, .external_lex_state = 9}, - [357] = {.lex_state = 19, .external_lex_state = 10}, - [358] = {.lex_state = 19, .external_lex_state = 10}, + [356] = {.lex_state = 19, .external_lex_state = 10}, + [357] = {.lex_state = 18, .external_lex_state = 9}, + [358] = {.lex_state = 18, .external_lex_state = 9}, [359] = {.lex_state = 18, .external_lex_state = 9}, - [360] = {.lex_state = 19, .external_lex_state = 10}, - [361] = {.lex_state = 18, .external_lex_state = 9}, - [362] = {.lex_state = 19, .external_lex_state = 10}, - [363] = {.lex_state = 18, .external_lex_state = 9}, + [360] = {.lex_state = 18, .external_lex_state = 9}, + [361] = {.lex_state = 5, .external_lex_state = 4}, + [362] = {.lex_state = 5, .external_lex_state = 4}, + [363] = {.lex_state = 5, .external_lex_state = 4}, [364] = {.lex_state = 18, .external_lex_state = 9}, [365] = {.lex_state = 18, .external_lex_state = 9}, - [366] = {.lex_state = 18, .external_lex_state = 9}, + [366] = {.lex_state = 5, .external_lex_state = 4}, [367] = {.lex_state = 19, .external_lex_state = 10}, [368] = {.lex_state = 18, .external_lex_state = 9}, - [369] = {.lex_state = 18, .external_lex_state = 9}, - [370] = {.lex_state = 5, .external_lex_state = 4}, - [371] = {.lex_state = 5, .external_lex_state = 4}, + [369] = {.lex_state = 5, .external_lex_state = 4}, + [370] = {.lex_state = 19, .external_lex_state = 10}, + [371] = {.lex_state = 18, .external_lex_state = 9}, [372] = {.lex_state = 5, .external_lex_state = 4}, [373] = {.lex_state = 5, .external_lex_state = 4}, - [374] = {.lex_state = 5, .external_lex_state = 4}, - [375] = {.lex_state = 5, .external_lex_state = 4}, - [376] = {.lex_state = 5, .external_lex_state = 4}, + [374] = {.lex_state = 19, .external_lex_state = 10}, + [375] = {.lex_state = 18, .external_lex_state = 9}, + [376] = {.lex_state = 19, .external_lex_state = 10}, [377] = {.lex_state = 18, .external_lex_state = 9}, - [378] = {.lex_state = 19, .external_lex_state = 10}, + [378] = {.lex_state = 18, .external_lex_state = 9}, [379] = {.lex_state = 19, .external_lex_state = 10}, - [380] = {.lex_state = 18, .external_lex_state = 9}, + [380] = {.lex_state = 19, .external_lex_state = 10}, [381] = {.lex_state = 19, .external_lex_state = 10}, [382] = {.lex_state = 19, .external_lex_state = 10}, [383] = {.lex_state = 5, .external_lex_state = 5}, @@ -20696,110 +20749,110 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [388] = {.lex_state = 5, .external_lex_state = 5}, [389] = {.lex_state = 5, .external_lex_state = 5}, [390] = {.lex_state = 5, .external_lex_state = 5}, - [391] = {.lex_state = 26, .external_lex_state = 11}, - [392] = {.lex_state = 18, .external_lex_state = 9}, + [391] = {.lex_state = 5, .external_lex_state = 5}, + [392] = {.lex_state = 5, .external_lex_state = 5}, [393] = {.lex_state = 5, .external_lex_state = 5}, - [394] = {.lex_state = 5, .external_lex_state = 5}, + [394] = {.lex_state = 26, .external_lex_state = 11}, [395] = {.lex_state = 5, .external_lex_state = 5}, - [396] = {.lex_state = 26, .external_lex_state = 11}, - [397] = {.lex_state = 18, .external_lex_state = 9}, - [398] = {.lex_state = 5, .external_lex_state = 5}, - [399] = {.lex_state = 26, .external_lex_state = 11}, + [396] = {.lex_state = 5, .external_lex_state = 5}, + [397] = {.lex_state = 5, .external_lex_state = 5}, + [398] = {.lex_state = 26, .external_lex_state = 11}, + [399] = {.lex_state = 5, .external_lex_state = 5}, [400] = {.lex_state = 5, .external_lex_state = 5}, - [401] = {.lex_state = 5, .external_lex_state = 5}, - [402] = {.lex_state = 26, .external_lex_state = 11}, + [401] = {.lex_state = 26, .external_lex_state = 11}, + [402] = {.lex_state = 18, .external_lex_state = 9}, [403] = {.lex_state = 5, .external_lex_state = 5}, [404] = {.lex_state = 26, .external_lex_state = 11}, - [405] = {.lex_state = 5, .external_lex_state = 5}, + [405] = {.lex_state = 18, .external_lex_state = 9}, [406] = {.lex_state = 26, .external_lex_state = 11}, - [407] = {.lex_state = 26, .external_lex_state = 11}, + [407] = {.lex_state = 18, .external_lex_state = 9}, [408] = {.lex_state = 26, .external_lex_state = 11}, - [409] = {.lex_state = 5, .external_lex_state = 5}, - [410] = {.lex_state = 18, .external_lex_state = 9}, - [411] = {.lex_state = 5, .external_lex_state = 5}, - [412] = {.lex_state = 26, .external_lex_state = 11}, - [413] = {.lex_state = 5, .external_lex_state = 5}, - [414] = {.lex_state = 18, .external_lex_state = 9}, + [409] = {.lex_state = 26, .external_lex_state = 11}, + [410] = {.lex_state = 5, .external_lex_state = 5}, + [411] = {.lex_state = 18, .external_lex_state = 9}, + [412] = {.lex_state = 5, .external_lex_state = 5}, + [413] = {.lex_state = 26, .external_lex_state = 11}, + [414] = {.lex_state = 26, .external_lex_state = 11}, [415] = {.lex_state = 390, .external_lex_state = 2}, [416] = {.lex_state = 390, .external_lex_state = 2}, [417] = {.lex_state = 390, .external_lex_state = 2}, [418] = {.lex_state = 390, .external_lex_state = 12}, [419] = {.lex_state = 390, .external_lex_state = 12}, - [420] = {.lex_state = 25, .external_lex_state = 11}, - [421] = {.lex_state = 390, .external_lex_state = 2}, - [422] = {.lex_state = 390, .external_lex_state = 2}, - [423] = {.lex_state = 25, .external_lex_state = 11}, + [420] = {.lex_state = 390, .external_lex_state = 2}, + [421] = {.lex_state = 25, .external_lex_state = 11}, + [422] = {.lex_state = 25, .external_lex_state = 11}, + [423] = {.lex_state = 390, .external_lex_state = 2}, [424] = {.lex_state = 390, .external_lex_state = 2}, - [425] = {.lex_state = 25, .external_lex_state = 11}, + [425] = {.lex_state = 391, .external_lex_state = 2}, [426] = {.lex_state = 25, .external_lex_state = 11}, - [427] = {.lex_state = 25, .external_lex_state = 11}, - [428] = {.lex_state = 390, .external_lex_state = 2}, + [427] = {.lex_state = 390, .external_lex_state = 2}, + [428] = {.lex_state = 25, .external_lex_state = 11}, [429] = {.lex_state = 25, .external_lex_state = 11}, - [430] = {.lex_state = 390, .external_lex_state = 2}, - [431] = {.lex_state = 390, .external_lex_state = 2}, + [430] = {.lex_state = 25, .external_lex_state = 11}, + [431] = {.lex_state = 25, .external_lex_state = 11}, [432] = {.lex_state = 390, .external_lex_state = 2}, - [433] = {.lex_state = 25, .external_lex_state = 11}, - [434] = {.lex_state = 391, .external_lex_state = 2}, - [435] = {.lex_state = 391, .external_lex_state = 2}, + [433] = {.lex_state = 391, .external_lex_state = 2}, + [434] = {.lex_state = 25, .external_lex_state = 11}, + [435] = {.lex_state = 25, .external_lex_state = 11}, [436] = {.lex_state = 390, .external_lex_state = 2}, - [437] = {.lex_state = 25, .external_lex_state = 11}, - [438] = {.lex_state = 25, .external_lex_state = 11}, + [437] = {.lex_state = 8, .external_lex_state = 4}, + [438] = {.lex_state = 390, .external_lex_state = 2}, [439] = {.lex_state = 390, .external_lex_state = 2}, - [440] = {.lex_state = 8, .external_lex_state = 4}, + [440] = {.lex_state = 390, .external_lex_state = 2}, [441] = {.lex_state = 391, .external_lex_state = 2}, [442] = {.lex_state = 8, .external_lex_state = 4}, - [443] = {.lex_state = 391, .external_lex_state = 12}, + [443] = {.lex_state = 8, .external_lex_state = 4}, [444] = {.lex_state = 8, .external_lex_state = 4}, [445] = {.lex_state = 8, .external_lex_state = 4}, [446] = {.lex_state = 8, .external_lex_state = 4}, [447] = {.lex_state = 8, .external_lex_state = 4}, [448] = {.lex_state = 8, .external_lex_state = 4}, [449] = {.lex_state = 8, .external_lex_state = 4}, - [450] = {.lex_state = 8, .external_lex_state = 4}, + [450] = {.lex_state = 391, .external_lex_state = 12}, [451] = {.lex_state = 8, .external_lex_state = 4}, [452] = {.lex_state = 8, .external_lex_state = 4}, [453] = {.lex_state = 8, .external_lex_state = 4}, [454] = {.lex_state = 8, .external_lex_state = 4}, [455] = {.lex_state = 8, .external_lex_state = 4}, [456] = {.lex_state = 8, .external_lex_state = 4}, - [457] = {.lex_state = 391, .external_lex_state = 12}, + [457] = {.lex_state = 8, .external_lex_state = 4}, [458] = {.lex_state = 8, .external_lex_state = 4}, - [459] = {.lex_state = 9, .external_lex_state = 4}, + [459] = {.lex_state = 8, .external_lex_state = 4}, [460] = {.lex_state = 8, .external_lex_state = 4}, - [461] = {.lex_state = 8, .external_lex_state = 4}, + [461] = {.lex_state = 391, .external_lex_state = 12}, [462] = {.lex_state = 8, .external_lex_state = 4}, [463] = {.lex_state = 8, .external_lex_state = 4}, [464] = {.lex_state = 8, .external_lex_state = 4}, [465] = {.lex_state = 8, .external_lex_state = 4}, [466] = {.lex_state = 8, .external_lex_state = 4}, - [467] = {.lex_state = 391, .external_lex_state = 2}, + [467] = {.lex_state = 8, .external_lex_state = 4}, [468] = {.lex_state = 8, .external_lex_state = 4}, [469] = {.lex_state = 8, .external_lex_state = 4}, [470] = {.lex_state = 8, .external_lex_state = 4}, [471] = {.lex_state = 8, .external_lex_state = 4}, [472] = {.lex_state = 8, .external_lex_state = 4}, [473] = {.lex_state = 8, .external_lex_state = 4}, - [474] = {.lex_state = 8, .external_lex_state = 4}, + [474] = {.lex_state = 9, .external_lex_state = 4}, [475] = {.lex_state = 8, .external_lex_state = 4}, [476] = {.lex_state = 8, .external_lex_state = 4}, - [477] = {.lex_state = 391, .external_lex_state = 2}, + [477] = {.lex_state = 8, .external_lex_state = 4}, [478] = {.lex_state = 8, .external_lex_state = 4}, [479] = {.lex_state = 8, .external_lex_state = 4}, - [480] = {.lex_state = 8, .external_lex_state = 4}, + [480] = {.lex_state = 391, .external_lex_state = 2}, [481] = {.lex_state = 8, .external_lex_state = 4}, [482] = {.lex_state = 8, .external_lex_state = 4}, [483] = {.lex_state = 8, .external_lex_state = 4}, [484] = {.lex_state = 8, .external_lex_state = 4}, - [485] = {.lex_state = 8, .external_lex_state = 4}, + [485] = {.lex_state = 391, .external_lex_state = 2}, [486] = {.lex_state = 8, .external_lex_state = 4}, [487] = {.lex_state = 8, .external_lex_state = 4}, - [488] = {.lex_state = 8, .external_lex_state = 4}, + [488] = {.lex_state = 391, .external_lex_state = 2}, [489] = {.lex_state = 8, .external_lex_state = 4}, [490] = {.lex_state = 8, .external_lex_state = 4}, [491] = {.lex_state = 8, .external_lex_state = 4}, [492] = {.lex_state = 8, .external_lex_state = 4}, [493] = {.lex_state = 8, .external_lex_state = 4}, - [494] = {.lex_state = 391, .external_lex_state = 2}, + [494] = {.lex_state = 8, .external_lex_state = 4}, [495] = {.lex_state = 8, .external_lex_state = 4}, [496] = {.lex_state = 8, .external_lex_state = 4}, [497] = {.lex_state = 8, .external_lex_state = 4}, @@ -20815,12 +20868,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [507] = {.lex_state = 8, .external_lex_state = 4}, [508] = {.lex_state = 8, .external_lex_state = 4}, [509] = {.lex_state = 8, .external_lex_state = 4}, - [510] = {.lex_state = 391, .external_lex_state = 2}, + [510] = {.lex_state = 8, .external_lex_state = 4}, [511] = {.lex_state = 8, .external_lex_state = 4}, - [512] = {.lex_state = 8, .external_lex_state = 4}, + [512] = {.lex_state = 391, .external_lex_state = 2}, [513] = {.lex_state = 8, .external_lex_state = 4}, [514] = {.lex_state = 8, .external_lex_state = 4}, - [515] = {.lex_state = 391, .external_lex_state = 2}, + [515] = {.lex_state = 8, .external_lex_state = 4}, [516] = {.lex_state = 8, .external_lex_state = 4}, [517] = {.lex_state = 8, .external_lex_state = 4}, [518] = {.lex_state = 8, .external_lex_state = 4}, @@ -20830,16 +20883,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [522] = {.lex_state = 8, .external_lex_state = 4}, [523] = {.lex_state = 8, .external_lex_state = 4}, [524] = {.lex_state = 8, .external_lex_state = 4}, - [525] = {.lex_state = 391, .external_lex_state = 2}, + [525] = {.lex_state = 8, .external_lex_state = 4}, [526] = {.lex_state = 8, .external_lex_state = 4}, [527] = {.lex_state = 8, .external_lex_state = 4}, [528] = {.lex_state = 8, .external_lex_state = 4}, [529] = {.lex_state = 8, .external_lex_state = 4}, [530] = {.lex_state = 8, .external_lex_state = 4}, [531] = {.lex_state = 8, .external_lex_state = 4}, - [532] = {.lex_state = 391, .external_lex_state = 2}, + [532] = {.lex_state = 8, .external_lex_state = 4}, [533] = {.lex_state = 8, .external_lex_state = 4}, - [534] = {.lex_state = 8, .external_lex_state = 4}, + [534] = {.lex_state = 391, .external_lex_state = 2}, [535] = {.lex_state = 8, .external_lex_state = 4}, [536] = {.lex_state = 8, .external_lex_state = 4}, [537] = {.lex_state = 8, .external_lex_state = 4}, @@ -20850,65 +20903,65 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 8, .external_lex_state = 4}, [543] = {.lex_state = 8, .external_lex_state = 4}, [544] = {.lex_state = 8, .external_lex_state = 4}, - [545] = {.lex_state = 8, .external_lex_state = 4}, + [545] = {.lex_state = 391, .external_lex_state = 2}, [546] = {.lex_state = 8, .external_lex_state = 4}, [547] = {.lex_state = 8, .external_lex_state = 4}, [548] = {.lex_state = 8, .external_lex_state = 4}, [549] = {.lex_state = 8, .external_lex_state = 4}, [550] = {.lex_state = 391, .external_lex_state = 2}, [551] = {.lex_state = 8, .external_lex_state = 4}, - [552] = {.lex_state = 391, .external_lex_state = 2}, - [553] = {.lex_state = 8, .external_lex_state = 4}, - [554] = {.lex_state = 8, .external_lex_state = 4}, + [552] = {.lex_state = 8, .external_lex_state = 4}, + [553] = {.lex_state = 391, .external_lex_state = 2}, + [554] = {.lex_state = 391, .external_lex_state = 2}, [555] = {.lex_state = 8, .external_lex_state = 4}, - [556] = {.lex_state = 8, .external_lex_state = 4}, + [556] = {.lex_state = 8, .external_lex_state = 5}, [557] = {.lex_state = 8, .external_lex_state = 4}, - [558] = {.lex_state = 392, .external_lex_state = 12}, - [559] = {.lex_state = 392, .external_lex_state = 12}, - [560] = {.lex_state = 8, .external_lex_state = 5}, - [561] = {.lex_state = 392, .external_lex_state = 12}, + [558] = {.lex_state = 8, .external_lex_state = 4}, + [559] = {.lex_state = 8, .external_lex_state = 4}, + [560] = {.lex_state = 8, .external_lex_state = 4}, + [561] = {.lex_state = 8, .external_lex_state = 4}, [562] = {.lex_state = 392, .external_lex_state = 12}, [563] = {.lex_state = 392, .external_lex_state = 12}, [564] = {.lex_state = 392, .external_lex_state = 12}, [565] = {.lex_state = 392, .external_lex_state = 12}, [566] = {.lex_state = 392, .external_lex_state = 12}, - [567] = {.lex_state = 392, .external_lex_state = 2}, + [567] = {.lex_state = 392, .external_lex_state = 12}, [568] = {.lex_state = 392, .external_lex_state = 12}, [569] = {.lex_state = 392, .external_lex_state = 12}, [570] = {.lex_state = 392, .external_lex_state = 12}, - [571] = {.lex_state = 392, .external_lex_state = 12}, + [571] = {.lex_state = 392, .external_lex_state = 2}, [572] = {.lex_state = 392, .external_lex_state = 12}, [573] = {.lex_state = 392, .external_lex_state = 12}, [574] = {.lex_state = 392, .external_lex_state = 12}, [575] = {.lex_state = 392, .external_lex_state = 12}, [576] = {.lex_state = 392, .external_lex_state = 12}, - [577] = {.lex_state = 392, .external_lex_state = 12}, + [577] = {.lex_state = 392, .external_lex_state = 2}, [578] = {.lex_state = 392, .external_lex_state = 12}, [579] = {.lex_state = 392, .external_lex_state = 12}, [580] = {.lex_state = 392, .external_lex_state = 12}, - [581] = {.lex_state = 392, .external_lex_state = 2}, - [582] = {.lex_state = 392, .external_lex_state = 2}, - [583] = {.lex_state = 392, .external_lex_state = 2}, - [584] = {.lex_state = 392, .external_lex_state = 2}, + [581] = {.lex_state = 392, .external_lex_state = 12}, + [582] = {.lex_state = 392, .external_lex_state = 12}, + [583] = {.lex_state = 392, .external_lex_state = 12}, + [584] = {.lex_state = 392, .external_lex_state = 12}, [585] = {.lex_state = 392, .external_lex_state = 2}, [586] = {.lex_state = 392, .external_lex_state = 2}, [587] = {.lex_state = 392, .external_lex_state = 2}, [588] = {.lex_state = 392, .external_lex_state = 2}, - [589] = {.lex_state = 8, .external_lex_state = 5}, + [589] = {.lex_state = 392, .external_lex_state = 2}, [590] = {.lex_state = 392, .external_lex_state = 2}, [591] = {.lex_state = 392, .external_lex_state = 2}, [592] = {.lex_state = 392, .external_lex_state = 2}, [593] = {.lex_state = 392, .external_lex_state = 2}, - [594] = {.lex_state = 8, .external_lex_state = 5}, - [595] = {.lex_state = 8, .external_lex_state = 5}, + [594] = {.lex_state = 392, .external_lex_state = 2}, + [595] = {.lex_state = 392, .external_lex_state = 2}, [596] = {.lex_state = 392, .external_lex_state = 2}, [597] = {.lex_state = 392, .external_lex_state = 2}, [598] = {.lex_state = 392, .external_lex_state = 2}, [599] = {.lex_state = 392, .external_lex_state = 2}, - [600] = {.lex_state = 8, .external_lex_state = 5}, + [600] = {.lex_state = 392, .external_lex_state = 2}, [601] = {.lex_state = 392, .external_lex_state = 2}, - [602] = {.lex_state = 8, .external_lex_state = 5}, - [603] = {.lex_state = 8, .external_lex_state = 5}, + [602] = {.lex_state = 392, .external_lex_state = 2}, + [603] = {.lex_state = 392, .external_lex_state = 2}, [604] = {.lex_state = 392, .external_lex_state = 2}, [605] = {.lex_state = 392, .external_lex_state = 2}, [606] = {.lex_state = 392, .external_lex_state = 2}, @@ -20926,7 +20979,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [618] = {.lex_state = 392, .external_lex_state = 2}, [619] = {.lex_state = 392, .external_lex_state = 2}, [620] = {.lex_state = 392, .external_lex_state = 2}, - [621] = {.lex_state = 8, .external_lex_state = 5}, + [621] = {.lex_state = 392, .external_lex_state = 2}, [622] = {.lex_state = 392, .external_lex_state = 2}, [623] = {.lex_state = 392, .external_lex_state = 2}, [624] = {.lex_state = 392, .external_lex_state = 2}, @@ -20936,21 +20989,21 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [628] = {.lex_state = 392, .external_lex_state = 2}, [629] = {.lex_state = 392, .external_lex_state = 2}, [630] = {.lex_state = 392, .external_lex_state = 2}, - [631] = {.lex_state = 9, .external_lex_state = 5}, + [631] = {.lex_state = 392, .external_lex_state = 2}, [632] = {.lex_state = 392, .external_lex_state = 2}, [633] = {.lex_state = 392, .external_lex_state = 2}, [634] = {.lex_state = 392, .external_lex_state = 2}, [635] = {.lex_state = 392, .external_lex_state = 2}, - [636] = {.lex_state = 8, .external_lex_state = 5}, + [636] = {.lex_state = 392, .external_lex_state = 2}, [637] = {.lex_state = 392, .external_lex_state = 2}, [638] = {.lex_state = 392, .external_lex_state = 2}, - [639] = {.lex_state = 8, .external_lex_state = 5}, + [639] = {.lex_state = 392, .external_lex_state = 2}, [640] = {.lex_state = 392, .external_lex_state = 2}, [641] = {.lex_state = 392, .external_lex_state = 2}, [642] = {.lex_state = 392, .external_lex_state = 2}, [643] = {.lex_state = 392, .external_lex_state = 2}, [644] = {.lex_state = 392, .external_lex_state = 2}, - [645] = {.lex_state = 8, .external_lex_state = 5}, + [645] = {.lex_state = 392, .external_lex_state = 2}, [646] = {.lex_state = 392, .external_lex_state = 2}, [647] = {.lex_state = 392, .external_lex_state = 2}, [648] = {.lex_state = 392, .external_lex_state = 2}, @@ -20966,74 +21019,74 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [658] = {.lex_state = 392, .external_lex_state = 2}, [659] = {.lex_state = 392, .external_lex_state = 2}, [660] = {.lex_state = 392, .external_lex_state = 2}, - [661] = {.lex_state = 8, .external_lex_state = 5}, - [662] = {.lex_state = 8, .external_lex_state = 5}, + [661] = {.lex_state = 392, .external_lex_state = 2}, + [662] = {.lex_state = 392, .external_lex_state = 2}, [663] = {.lex_state = 392, .external_lex_state = 2}, - [664] = {.lex_state = 392, .external_lex_state = 2}, - [665] = {.lex_state = 392, .external_lex_state = 2}, + [664] = {.lex_state = 8, .external_lex_state = 5}, + [665] = {.lex_state = 8, .external_lex_state = 5}, [666] = {.lex_state = 392, .external_lex_state = 2}, [667] = {.lex_state = 392, .external_lex_state = 2}, - [668] = {.lex_state = 392, .external_lex_state = 2}, - [669] = {.lex_state = 392, .external_lex_state = 2}, - [670] = {.lex_state = 392, .external_lex_state = 2}, + [668] = {.lex_state = 8, .external_lex_state = 5}, + [669] = {.lex_state = 8, .external_lex_state = 5}, + [670] = {.lex_state = 8, .external_lex_state = 5}, [671] = {.lex_state = 8, .external_lex_state = 5}, - [672] = {.lex_state = 392, .external_lex_state = 2}, + [672] = {.lex_state = 8, .external_lex_state = 5}, [673] = {.lex_state = 392, .external_lex_state = 2}, - [674] = {.lex_state = 392, .external_lex_state = 2}, - [675] = {.lex_state = 392, .external_lex_state = 2}, + [674] = {.lex_state = 9, .external_lex_state = 5}, + [675] = {.lex_state = 8, .external_lex_state = 5}, [676] = {.lex_state = 8, .external_lex_state = 5}, - [677] = {.lex_state = 392, .external_lex_state = 2}, - [678] = {.lex_state = 392, .external_lex_state = 2}, - [679] = {.lex_state = 392, .external_lex_state = 2}, - [680] = {.lex_state = 392, .external_lex_state = 2}, - [681] = {.lex_state = 392, .external_lex_state = 2}, + [677] = {.lex_state = 8, .external_lex_state = 5}, + [678] = {.lex_state = 8, .external_lex_state = 5}, + [679] = {.lex_state = 8, .external_lex_state = 5}, + [680] = {.lex_state = 8, .external_lex_state = 5}, + [681] = {.lex_state = 8, .external_lex_state = 5}, [682] = {.lex_state = 392, .external_lex_state = 2}, - [683] = {.lex_state = 392, .external_lex_state = 2}, - [684] = {.lex_state = 392, .external_lex_state = 2}, + [683] = {.lex_state = 8, .external_lex_state = 5}, + [684] = {.lex_state = 8, .external_lex_state = 5}, [685] = {.lex_state = 8, .external_lex_state = 5}, - [686] = {.lex_state = 392, .external_lex_state = 2}, + [686] = {.lex_state = 8, .external_lex_state = 5}, [687] = {.lex_state = 8, .external_lex_state = 5}, - [688] = {.lex_state = 392, .external_lex_state = 2}, - [689] = {.lex_state = 8, .external_lex_state = 3}, + [688] = {.lex_state = 8, .external_lex_state = 5}, + [689] = {.lex_state = 8, .external_lex_state = 5}, [690] = {.lex_state = 8, .external_lex_state = 5}, - [691] = {.lex_state = 392, .external_lex_state = 2}, + [691] = {.lex_state = 8, .external_lex_state = 5}, [692] = {.lex_state = 8, .external_lex_state = 5}, - [693] = {.lex_state = 8, .external_lex_state = 3}, - [694] = {.lex_state = 392, .external_lex_state = 2}, - [695] = {.lex_state = 392, .external_lex_state = 2}, - [696] = {.lex_state = 392, .external_lex_state = 2}, + [693] = {.lex_state = 8, .external_lex_state = 5}, + [694] = {.lex_state = 8, .external_lex_state = 5}, + [695] = {.lex_state = 8, .external_lex_state = 5}, + [696] = {.lex_state = 8, .external_lex_state = 5}, [697] = {.lex_state = 8, .external_lex_state = 5}, - [698] = {.lex_state = 392, .external_lex_state = 2}, - [699] = {.lex_state = 392, .external_lex_state = 2}, - [700] = {.lex_state = 392, .external_lex_state = 2}, - [701] = {.lex_state = 392, .external_lex_state = 2}, - [702] = {.lex_state = 392, .external_lex_state = 2}, - [703] = {.lex_state = 392, .external_lex_state = 2}, + [698] = {.lex_state = 8, .external_lex_state = 5}, + [699] = {.lex_state = 8, .external_lex_state = 5}, + [700] = {.lex_state = 8, .external_lex_state = 3}, + [701] = {.lex_state = 8, .external_lex_state = 5}, + [702] = {.lex_state = 8, .external_lex_state = 3}, + [703] = {.lex_state = 8, .external_lex_state = 5}, [704] = {.lex_state = 392, .external_lex_state = 2}, [705] = {.lex_state = 392, .external_lex_state = 2}, [706] = {.lex_state = 392, .external_lex_state = 2}, - [707] = {.lex_state = 8, .external_lex_state = 5}, - [708] = {.lex_state = 8, .external_lex_state = 5}, + [707] = {.lex_state = 392, .external_lex_state = 2}, + [708] = {.lex_state = 392, .external_lex_state = 2}, [709] = {.lex_state = 392, .external_lex_state = 2}, [710] = {.lex_state = 392, .external_lex_state = 2}, [711] = {.lex_state = 392, .external_lex_state = 2}, [712] = {.lex_state = 392, .external_lex_state = 2}, [713] = {.lex_state = 392, .external_lex_state = 2}, - [714] = {.lex_state = 8, .external_lex_state = 5}, - [715] = {.lex_state = 8, .external_lex_state = 5}, - [716] = {.lex_state = 8, .external_lex_state = 5}, - [717] = {.lex_state = 8, .external_lex_state = 5}, - [718] = {.lex_state = 8, .external_lex_state = 5}, - [719] = {.lex_state = 8, .external_lex_state = 5}, - [720] = {.lex_state = 8, .external_lex_state = 5}, - [721] = {.lex_state = 8, .external_lex_state = 5}, - [722] = {.lex_state = 8, .external_lex_state = 5}, - [723] = {.lex_state = 8, .external_lex_state = 5}, - [724] = {.lex_state = 8, .external_lex_state = 5}, - [725] = {.lex_state = 8, .external_lex_state = 5}, - [726] = {.lex_state = 8, .external_lex_state = 5}, - [727] = {.lex_state = 8, .external_lex_state = 5}, - [728] = {.lex_state = 8, .external_lex_state = 5}, + [714] = {.lex_state = 392, .external_lex_state = 2}, + [715] = {.lex_state = 392, .external_lex_state = 2}, + [716] = {.lex_state = 392, .external_lex_state = 2}, + [717] = {.lex_state = 392, .external_lex_state = 2}, + [718] = {.lex_state = 392, .external_lex_state = 2}, + [719] = {.lex_state = 392, .external_lex_state = 2}, + [720] = {.lex_state = 392, .external_lex_state = 2}, + [721] = {.lex_state = 392, .external_lex_state = 2}, + [722] = {.lex_state = 392, .external_lex_state = 2}, + [723] = {.lex_state = 392, .external_lex_state = 2}, + [724] = {.lex_state = 392, .external_lex_state = 2}, + [725] = {.lex_state = 392, .external_lex_state = 2}, + [726] = {.lex_state = 392, .external_lex_state = 2}, + [727] = {.lex_state = 392, .external_lex_state = 2}, + [728] = {.lex_state = 392, .external_lex_state = 2}, [729] = {.lex_state = 8, .external_lex_state = 5}, [730] = {.lex_state = 8, .external_lex_state = 5}, [731] = {.lex_state = 8, .external_lex_state = 5}, @@ -21094,12 +21147,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [786] = {.lex_state = 8, .external_lex_state = 5}, [787] = {.lex_state = 8, .external_lex_state = 5}, [788] = {.lex_state = 8, .external_lex_state = 5}, - [789] = {.lex_state = 389, .external_lex_state = 12}, - [790] = {.lex_state = 389, .external_lex_state = 12}, - [791] = {.lex_state = 389, .external_lex_state = 12}, - [792] = {.lex_state = 389, .external_lex_state = 12}, - [793] = {.lex_state = 389, .external_lex_state = 12}, - [794] = {.lex_state = 389, .external_lex_state = 12}, + [789] = {.lex_state = 8, .external_lex_state = 5}, + [790] = {.lex_state = 8, .external_lex_state = 5}, + [791] = {.lex_state = 8, .external_lex_state = 5}, + [792] = {.lex_state = 8, .external_lex_state = 5}, + [793] = {.lex_state = 8, .external_lex_state = 5}, + [794] = {.lex_state = 8, .external_lex_state = 5}, [795] = {.lex_state = 389, .external_lex_state = 12}, [796] = {.lex_state = 389, .external_lex_state = 12}, [797] = {.lex_state = 389, .external_lex_state = 12}, @@ -21115,12 +21168,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [807] = {.lex_state = 389, .external_lex_state = 12}, [808] = {.lex_state = 389, .external_lex_state = 12}, [809] = {.lex_state = 389, .external_lex_state = 12}, - [810] = {.lex_state = 389, .external_lex_state = 2}, - [811] = {.lex_state = 389, .external_lex_state = 2}, - [812] = {.lex_state = 389, .external_lex_state = 2}, - [813] = {.lex_state = 389, .external_lex_state = 2}, - [814] = {.lex_state = 389, .external_lex_state = 2}, - [815] = {.lex_state = 389, .external_lex_state = 2}, + [810] = {.lex_state = 389, .external_lex_state = 12}, + [811] = {.lex_state = 389, .external_lex_state = 12}, + [812] = {.lex_state = 389, .external_lex_state = 12}, + [813] = {.lex_state = 389, .external_lex_state = 12}, + [814] = {.lex_state = 389, .external_lex_state = 12}, + [815] = {.lex_state = 389, .external_lex_state = 12}, [816] = {.lex_state = 389, .external_lex_state = 2}, [817] = {.lex_state = 389, .external_lex_state = 2}, [818] = {.lex_state = 389, .external_lex_state = 2}, @@ -21223,12 +21276,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [915] = {.lex_state = 389, .external_lex_state = 2}, [916] = {.lex_state = 389, .external_lex_state = 2}, [917] = {.lex_state = 389, .external_lex_state = 2}, - [918] = {.lex_state = 18, .external_lex_state = 9}, - [919] = {.lex_state = 18, .external_lex_state = 9}, - [920] = {.lex_state = 18, .external_lex_state = 9}, - [921] = {.lex_state = 18, .external_lex_state = 9}, - [922] = {.lex_state = 18, .external_lex_state = 9}, - [923] = {.lex_state = 18, .external_lex_state = 9}, + [918] = {.lex_state = 389, .external_lex_state = 2}, + [919] = {.lex_state = 389, .external_lex_state = 2}, + [920] = {.lex_state = 389, .external_lex_state = 2}, + [921] = {.lex_state = 389, .external_lex_state = 2}, + [922] = {.lex_state = 389, .external_lex_state = 2}, + [923] = {.lex_state = 389, .external_lex_state = 2}, [924] = {.lex_state = 18, .external_lex_state = 9}, [925] = {.lex_state = 18, .external_lex_state = 9}, [926] = {.lex_state = 18, .external_lex_state = 9}, @@ -21243,42 +21296,42 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [935] = {.lex_state = 18, .external_lex_state = 9}, [936] = {.lex_state = 18, .external_lex_state = 9}, [937] = {.lex_state = 18, .external_lex_state = 9}, - [938] = {.lex_state = 389, .external_lex_state = 2}, - [939] = {.lex_state = 389, .external_lex_state = 2}, - [940] = {.lex_state = 389, .external_lex_state = 2}, + [938] = {.lex_state = 18, .external_lex_state = 9}, + [939] = {.lex_state = 18, .external_lex_state = 9}, + [940] = {.lex_state = 18, .external_lex_state = 9}, [941] = {.lex_state = 18, .external_lex_state = 9}, - [942] = {.lex_state = 389, .external_lex_state = 2}, + [942] = {.lex_state = 18, .external_lex_state = 9}, [943] = {.lex_state = 18, .external_lex_state = 9}, - [944] = {.lex_state = 18, .external_lex_state = 9}, - [945] = {.lex_state = 389, .external_lex_state = 2}, + [944] = {.lex_state = 389, .external_lex_state = 2}, + [945] = {.lex_state = 18, .external_lex_state = 9}, [946] = {.lex_state = 18, .external_lex_state = 9}, [947] = {.lex_state = 18, .external_lex_state = 9}, - [948] = {.lex_state = 18, .external_lex_state = 9}, - [949] = {.lex_state = 18, .external_lex_state = 9}, - [950] = {.lex_state = 18, .external_lex_state = 9}, + [948] = {.lex_state = 389, .external_lex_state = 2}, + [949] = {.lex_state = 389, .external_lex_state = 2}, + [950] = {.lex_state = 389, .external_lex_state = 2}, [951] = {.lex_state = 18, .external_lex_state = 9}, [952] = {.lex_state = 389, .external_lex_state = 2}, - [953] = {.lex_state = 389, .external_lex_state = 2}, - [954] = {.lex_state = 18, .external_lex_state = 9}, + [953] = {.lex_state = 18, .external_lex_state = 9}, + [954] = {.lex_state = 389, .external_lex_state = 2}, [955] = {.lex_state = 18, .external_lex_state = 9}, - [956] = {.lex_state = 18, .external_lex_state = 9}, - [957] = {.lex_state = 18, .external_lex_state = 13}, + [956] = {.lex_state = 389, .external_lex_state = 2}, + [957] = {.lex_state = 18, .external_lex_state = 9}, [958] = {.lex_state = 18, .external_lex_state = 9}, - [959] = {.lex_state = 18, .external_lex_state = 13}, + [959] = {.lex_state = 18, .external_lex_state = 9}, [960] = {.lex_state = 18, .external_lex_state = 9}, [961] = {.lex_state = 18, .external_lex_state = 9}, - [962] = {.lex_state = 18, .external_lex_state = 13}, + [962] = {.lex_state = 18, .external_lex_state = 9}, [963] = {.lex_state = 18, .external_lex_state = 13}, - [964] = {.lex_state = 18, .external_lex_state = 13}, + [964] = {.lex_state = 18, .external_lex_state = 9}, [965] = {.lex_state = 18, .external_lex_state = 9}, [966] = {.lex_state = 18, .external_lex_state = 9}, [967] = {.lex_state = 18, .external_lex_state = 13}, - [968] = {.lex_state = 18, .external_lex_state = 13}, + [968] = {.lex_state = 18, .external_lex_state = 9}, [969] = {.lex_state = 18, .external_lex_state = 13}, [970] = {.lex_state = 18, .external_lex_state = 13}, [971] = {.lex_state = 18, .external_lex_state = 13}, [972] = {.lex_state = 18, .external_lex_state = 13}, - [973] = {.lex_state = 18, .external_lex_state = 13}, + [973] = {.lex_state = 18, .external_lex_state = 9}, [974] = {.lex_state = 18, .external_lex_state = 13}, [975] = {.lex_state = 18, .external_lex_state = 13}, [976] = {.lex_state = 18, .external_lex_state = 13}, @@ -21286,13 +21339,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [978] = {.lex_state = 18, .external_lex_state = 13}, [979] = {.lex_state = 18, .external_lex_state = 13}, [980] = {.lex_state = 18, .external_lex_state = 13}, - [981] = {.lex_state = 18, .external_lex_state = 9}, + [981] = {.lex_state = 18, .external_lex_state = 13}, [982] = {.lex_state = 18, .external_lex_state = 13}, [983] = {.lex_state = 18, .external_lex_state = 13}, [984] = {.lex_state = 18, .external_lex_state = 13}, [985] = {.lex_state = 18, .external_lex_state = 13}, [986] = {.lex_state = 18, .external_lex_state = 13}, - [987] = {.lex_state = 18, .external_lex_state = 13}, + [987] = {.lex_state = 18, .external_lex_state = 9}, [988] = {.lex_state = 18, .external_lex_state = 13}, [989] = {.lex_state = 18, .external_lex_state = 13}, [990] = {.lex_state = 18, .external_lex_state = 13}, @@ -21301,46 +21354,46 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [993] = {.lex_state = 18, .external_lex_state = 13}, [994] = {.lex_state = 18, .external_lex_state = 13}, [995] = {.lex_state = 18, .external_lex_state = 13}, - [996] = {.lex_state = 389, .external_lex_state = 2}, - [997] = {.lex_state = 389, .external_lex_state = 2}, - [998] = {.lex_state = 389, .external_lex_state = 2}, + [996] = {.lex_state = 18, .external_lex_state = 13}, + [997] = {.lex_state = 18, .external_lex_state = 13}, + [998] = {.lex_state = 18, .external_lex_state = 13}, [999] = {.lex_state = 18, .external_lex_state = 13}, [1000] = {.lex_state = 18, .external_lex_state = 13}, - [1001] = {.lex_state = 389, .external_lex_state = 2}, - [1002] = {.lex_state = 18, .external_lex_state = 13}, + [1001] = {.lex_state = 18, .external_lex_state = 13}, + [1002] = {.lex_state = 389, .external_lex_state = 2}, [1003] = {.lex_state = 389, .external_lex_state = 2}, - [1004] = {.lex_state = 389, .external_lex_state = 2}, - [1005] = {.lex_state = 18, .external_lex_state = 13}, + [1004] = {.lex_state = 18, .external_lex_state = 13}, + [1005] = {.lex_state = 18, .external_lex_state = 14}, [1006] = {.lex_state = 389, .external_lex_state = 2}, [1007] = {.lex_state = 389, .external_lex_state = 2}, - [1008] = {.lex_state = 389, .external_lex_state = 2}, + [1008] = {.lex_state = 18, .external_lex_state = 13}, [1009] = {.lex_state = 389, .external_lex_state = 2}, [1010] = {.lex_state = 389, .external_lex_state = 2}, - [1011] = {.lex_state = 389, .external_lex_state = 2}, - [1012] = {.lex_state = 18, .external_lex_state = 13}, + [1011] = {.lex_state = 18, .external_lex_state = 13}, + [1012] = {.lex_state = 389, .external_lex_state = 2}, [1013] = {.lex_state = 389, .external_lex_state = 2}, [1014] = {.lex_state = 389, .external_lex_state = 2}, [1015] = {.lex_state = 389, .external_lex_state = 2}, [1016] = {.lex_state = 18, .external_lex_state = 13}, - [1017] = {.lex_state = 389, .external_lex_state = 2}, - [1018] = {.lex_state = 18, .external_lex_state = 13}, + [1017] = {.lex_state = 18, .external_lex_state = 13}, + [1018] = {.lex_state = 389, .external_lex_state = 2}, [1019] = {.lex_state = 389, .external_lex_state = 2}, - [1020] = {.lex_state = 18, .external_lex_state = 13}, + [1020] = {.lex_state = 389, .external_lex_state = 2}, [1021] = {.lex_state = 389, .external_lex_state = 2}, - [1022] = {.lex_state = 18, .external_lex_state = 14}, - [1023] = {.lex_state = 389, .external_lex_state = 2}, + [1022] = {.lex_state = 389, .external_lex_state = 2}, + [1023] = {.lex_state = 18, .external_lex_state = 13}, [1024] = {.lex_state = 389, .external_lex_state = 2}, [1025] = {.lex_state = 389, .external_lex_state = 2}, [1026] = {.lex_state = 389, .external_lex_state = 2}, [1027] = {.lex_state = 389, .external_lex_state = 2}, [1028] = {.lex_state = 389, .external_lex_state = 2}, - [1029] = {.lex_state = 389, .external_lex_state = 2}, - [1030] = {.lex_state = 389, .external_lex_state = 2}, + [1029] = {.lex_state = 18, .external_lex_state = 13}, + [1030] = {.lex_state = 18, .external_lex_state = 13}, [1031] = {.lex_state = 389, .external_lex_state = 2}, [1032] = {.lex_state = 389, .external_lex_state = 2}, [1033] = {.lex_state = 389, .external_lex_state = 2}, [1034] = {.lex_state = 389, .external_lex_state = 2}, - [1035] = {.lex_state = 389, .external_lex_state = 2}, + [1035] = {.lex_state = 18, .external_lex_state = 13}, [1036] = {.lex_state = 389, .external_lex_state = 2}, [1037] = {.lex_state = 389, .external_lex_state = 2}, [1038] = {.lex_state = 389, .external_lex_state = 2}, @@ -21361,8 +21414,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1053] = {.lex_state = 389, .external_lex_state = 2}, [1054] = {.lex_state = 389, .external_lex_state = 2}, [1055] = {.lex_state = 389, .external_lex_state = 2}, - [1056] = {.lex_state = 389, .external_lex_state = 2}, - [1057] = {.lex_state = 389, .external_lex_state = 2}, + [1056] = {.lex_state = 18, .external_lex_state = 13}, + [1057] = {.lex_state = 18, .external_lex_state = 13}, [1058] = {.lex_state = 389, .external_lex_state = 2}, [1059] = {.lex_state = 389, .external_lex_state = 2}, [1060] = {.lex_state = 389, .external_lex_state = 2}, @@ -21396,15 +21449,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1088] = {.lex_state = 389, .external_lex_state = 2}, [1089] = {.lex_state = 389, .external_lex_state = 2}, [1090] = {.lex_state = 389, .external_lex_state = 2}, - [1091] = {.lex_state = 389, .external_lex_state = 2}, + [1091] = {.lex_state = 18, .external_lex_state = 9}, [1092] = {.lex_state = 389, .external_lex_state = 2}, - [1093] = {.lex_state = 389, .external_lex_state = 2}, + [1093] = {.lex_state = 18, .external_lex_state = 13}, [1094] = {.lex_state = 389, .external_lex_state = 2}, - [1095] = {.lex_state = 389, .external_lex_state = 2}, + [1095] = {.lex_state = 18, .external_lex_state = 9}, [1096] = {.lex_state = 389, .external_lex_state = 2}, [1097] = {.lex_state = 389, .external_lex_state = 2}, [1098] = {.lex_state = 389, .external_lex_state = 2}, - [1099] = {.lex_state = 389, .external_lex_state = 2}, + [1099] = {.lex_state = 18, .external_lex_state = 13}, [1100] = {.lex_state = 389, .external_lex_state = 2}, [1101] = {.lex_state = 389, .external_lex_state = 2}, [1102] = {.lex_state = 389, .external_lex_state = 2}, @@ -21423,7 +21476,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1115] = {.lex_state = 389, .external_lex_state = 2}, [1116] = {.lex_state = 389, .external_lex_state = 2}, [1117] = {.lex_state = 389, .external_lex_state = 2}, - [1118] = {.lex_state = 389, .external_lex_state = 2}, + [1118] = {.lex_state = 18, .external_lex_state = 13}, [1119] = {.lex_state = 389, .external_lex_state = 2}, [1120] = {.lex_state = 389, .external_lex_state = 2}, [1121] = {.lex_state = 389, .external_lex_state = 2}, @@ -21442,56 +21495,56 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1134] = {.lex_state = 389, .external_lex_state = 2}, [1135] = {.lex_state = 389, .external_lex_state = 2}, [1136] = {.lex_state = 389, .external_lex_state = 2}, - [1137] = {.lex_state = 389, .external_lex_state = 2}, - [1138] = {.lex_state = 18, .external_lex_state = 13}, - [1139] = {.lex_state = 18, .external_lex_state = 9}, + [1137] = {.lex_state = 18, .external_lex_state = 13}, + [1138] = {.lex_state = 389, .external_lex_state = 2}, + [1139] = {.lex_state = 389, .external_lex_state = 2}, [1140] = {.lex_state = 389, .external_lex_state = 2}, [1141] = {.lex_state = 389, .external_lex_state = 2}, - [1142] = {.lex_state = 18, .external_lex_state = 13}, - [1143] = {.lex_state = 18, .external_lex_state = 13}, - [1144] = {.lex_state = 18, .external_lex_state = 13}, - [1145] = {.lex_state = 18, .external_lex_state = 13}, - [1146] = {.lex_state = 18, .external_lex_state = 13}, - [1147] = {.lex_state = 18, .external_lex_state = 13}, - [1148] = {.lex_state = 18, .external_lex_state = 13}, - [1149] = {.lex_state = 18, .external_lex_state = 9}, - [1150] = {.lex_state = 389, .external_lex_state = 2}, - [1151] = {.lex_state = 18, .external_lex_state = 9}, + [1142] = {.lex_state = 18, .external_lex_state = 9}, + [1143] = {.lex_state = 389, .external_lex_state = 2}, + [1144] = {.lex_state = 389, .external_lex_state = 2}, + [1145] = {.lex_state = 389, .external_lex_state = 2}, + [1146] = {.lex_state = 389, .external_lex_state = 2}, + [1147] = {.lex_state = 389, .external_lex_state = 2}, + [1148] = {.lex_state = 389, .external_lex_state = 2}, + [1149] = {.lex_state = 389, .external_lex_state = 2}, + [1150] = {.lex_state = 18, .external_lex_state = 13}, + [1151] = {.lex_state = 389, .external_lex_state = 2}, [1152] = {.lex_state = 389, .external_lex_state = 2}, - [1153] = {.lex_state = 389, .external_lex_state = 2}, - [1154] = {.lex_state = 18, .external_lex_state = 13}, + [1153] = {.lex_state = 18, .external_lex_state = 9}, + [1154] = {.lex_state = 389, .external_lex_state = 2}, [1155] = {.lex_state = 389, .external_lex_state = 2}, [1156] = {.lex_state = 389, .external_lex_state = 2}, [1157] = {.lex_state = 18, .external_lex_state = 13}, - [1158] = {.lex_state = 389, .external_lex_state = 2}, + [1158] = {.lex_state = 18, .external_lex_state = 13}, [1159] = {.lex_state = 389, .external_lex_state = 2}, [1160] = {.lex_state = 389, .external_lex_state = 2}, - [1161] = {.lex_state = 18, .external_lex_state = 9}, + [1161] = {.lex_state = 389, .external_lex_state = 2}, [1162] = {.lex_state = 389, .external_lex_state = 2}, [1163] = {.lex_state = 389, .external_lex_state = 2}, [1164] = {.lex_state = 389, .external_lex_state = 2}, [1165] = {.lex_state = 389, .external_lex_state = 2}, - [1166] = {.lex_state = 18, .external_lex_state = 9}, + [1166] = {.lex_state = 389, .external_lex_state = 2}, [1167] = {.lex_state = 389, .external_lex_state = 2}, [1168] = {.lex_state = 389, .external_lex_state = 2}, - [1169] = {.lex_state = 389, .external_lex_state = 2}, + [1169] = {.lex_state = 18, .external_lex_state = 9}, [1170] = {.lex_state = 389, .external_lex_state = 2}, [1171] = {.lex_state = 389, .external_lex_state = 2}, - [1172] = {.lex_state = 18, .external_lex_state = 9}, - [1173] = {.lex_state = 18, .external_lex_state = 9}, - [1174] = {.lex_state = 18, .external_lex_state = 15}, - [1175] = {.lex_state = 18, .external_lex_state = 9}, - [1176] = {.lex_state = 18, .external_lex_state = 15}, - [1177] = {.lex_state = 18, .external_lex_state = 9}, + [1172] = {.lex_state = 389, .external_lex_state = 2}, + [1173] = {.lex_state = 389, .external_lex_state = 2}, + [1174] = {.lex_state = 389, .external_lex_state = 2}, + [1175] = {.lex_state = 389, .external_lex_state = 2}, + [1176] = {.lex_state = 389, .external_lex_state = 2}, + [1177] = {.lex_state = 389, .external_lex_state = 2}, [1178] = {.lex_state = 18, .external_lex_state = 9}, [1179] = {.lex_state = 18, .external_lex_state = 15}, [1180] = {.lex_state = 18, .external_lex_state = 9}, [1181] = {.lex_state = 18, .external_lex_state = 9}, - [1182] = {.lex_state = 18, .external_lex_state = 9}, + [1182] = {.lex_state = 18, .external_lex_state = 15}, [1183] = {.lex_state = 18, .external_lex_state = 9}, [1184] = {.lex_state = 18, .external_lex_state = 9}, [1185] = {.lex_state = 18, .external_lex_state = 9}, - [1186] = {.lex_state = 18, .external_lex_state = 9}, + [1186] = {.lex_state = 18, .external_lex_state = 15}, [1187] = {.lex_state = 18, .external_lex_state = 9}, [1188] = {.lex_state = 18, .external_lex_state = 9}, [1189] = {.lex_state = 18, .external_lex_state = 9}, @@ -21762,7 +21815,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1454] = {.lex_state = 18, .external_lex_state = 9}, [1455] = {.lex_state = 18, .external_lex_state = 9}, [1456] = {.lex_state = 18, .external_lex_state = 9}, - [1457] = {.lex_state = 18, .external_lex_state = 9}, + [1457] = {.lex_state = 34, .external_lex_state = 11}, [1458] = {.lex_state = 18, .external_lex_state = 9}, [1459] = {.lex_state = 18, .external_lex_state = 9}, [1460] = {.lex_state = 18, .external_lex_state = 9}, @@ -21774,7 +21827,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1466] = {.lex_state = 18, .external_lex_state = 9}, [1467] = {.lex_state = 18, .external_lex_state = 9}, [1468] = {.lex_state = 18, .external_lex_state = 9}, - [1469] = {.lex_state = 18, .external_lex_state = 9}, + [1469] = {.lex_state = 34, .external_lex_state = 11}, [1470] = {.lex_state = 18, .external_lex_state = 9}, [1471] = {.lex_state = 18, .external_lex_state = 9}, [1472] = {.lex_state = 18, .external_lex_state = 9}, @@ -21789,7 +21842,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1481] = {.lex_state = 18, .external_lex_state = 9}, [1482] = {.lex_state = 18, .external_lex_state = 9}, [1483] = {.lex_state = 18, .external_lex_state = 9}, - [1484] = {.lex_state = 34, .external_lex_state = 11}, + [1484] = {.lex_state = 18, .external_lex_state = 9}, [1485] = {.lex_state = 18, .external_lex_state = 9}, [1486] = {.lex_state = 18, .external_lex_state = 9}, [1487] = {.lex_state = 18, .external_lex_state = 9}, @@ -21850,7 +21903,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1542] = {.lex_state = 18, .external_lex_state = 9}, [1543] = {.lex_state = 18, .external_lex_state = 9}, [1544] = {.lex_state = 18, .external_lex_state = 9}, - [1545] = {.lex_state = 34, .external_lex_state = 11}, + [1545] = {.lex_state = 18, .external_lex_state = 9}, [1546] = {.lex_state = 18, .external_lex_state = 9}, [1547] = {.lex_state = 18, .external_lex_state = 9}, [1548] = {.lex_state = 18, .external_lex_state = 9}, @@ -21880,14 +21933,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1572] = {.lex_state = 18, .external_lex_state = 9}, [1573] = {.lex_state = 18, .external_lex_state = 9}, [1574] = {.lex_state = 18, .external_lex_state = 9}, - [1575] = {.lex_state = 34, .external_lex_state = 11}, + [1575] = {.lex_state = 18, .external_lex_state = 9}, [1576] = {.lex_state = 18, .external_lex_state = 9}, [1577] = {.lex_state = 18, .external_lex_state = 9}, [1578] = {.lex_state = 18, .external_lex_state = 9}, [1579] = {.lex_state = 18, .external_lex_state = 9}, [1580] = {.lex_state = 18, .external_lex_state = 9}, [1581] = {.lex_state = 18, .external_lex_state = 9}, - [1582] = {.lex_state = 18, .external_lex_state = 9}, + [1582] = {.lex_state = 34, .external_lex_state = 11}, [1583] = {.lex_state = 18, .external_lex_state = 9}, [1584] = {.lex_state = 18, .external_lex_state = 9}, [1585] = {.lex_state = 18, .external_lex_state = 9}, @@ -21941,7 +21994,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1633] = {.lex_state = 18, .external_lex_state = 9}, [1634] = {.lex_state = 18, .external_lex_state = 9}, [1635] = {.lex_state = 18, .external_lex_state = 9}, - [1636] = {.lex_state = 34, .external_lex_state = 11}, + [1636] = {.lex_state = 18, .external_lex_state = 9}, [1637] = {.lex_state = 18, .external_lex_state = 9}, [1638] = {.lex_state = 18, .external_lex_state = 9}, [1639] = {.lex_state = 18, .external_lex_state = 9}, @@ -21956,7 +22009,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1648] = {.lex_state = 18, .external_lex_state = 9}, [1649] = {.lex_state = 18, .external_lex_state = 9}, [1650] = {.lex_state = 18, .external_lex_state = 9}, - [1651] = {.lex_state = 18, .external_lex_state = 9}, + [1651] = {.lex_state = 34, .external_lex_state = 11}, [1652] = {.lex_state = 18, .external_lex_state = 9}, [1653] = {.lex_state = 18, .external_lex_state = 9}, [1654] = {.lex_state = 18, .external_lex_state = 9}, @@ -21989,7 +22042,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1681] = {.lex_state = 18, .external_lex_state = 9}, [1682] = {.lex_state = 18, .external_lex_state = 9}, [1683] = {.lex_state = 18, .external_lex_state = 9}, - [1684] = {.lex_state = 34, .external_lex_state = 11}, + [1684] = {.lex_state = 18, .external_lex_state = 9}, [1685] = {.lex_state = 18, .external_lex_state = 9}, [1686] = {.lex_state = 18, .external_lex_state = 9}, [1687] = {.lex_state = 18, .external_lex_state = 9}, @@ -22002,7 +22055,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1694] = {.lex_state = 18, .external_lex_state = 9}, [1695] = {.lex_state = 18, .external_lex_state = 9}, [1696] = {.lex_state = 18, .external_lex_state = 9}, - [1697] = {.lex_state = 18, .external_lex_state = 9}, + [1697] = {.lex_state = 34, .external_lex_state = 11}, [1698] = {.lex_state = 18, .external_lex_state = 9}, [1699] = {.lex_state = 18, .external_lex_state = 9}, [1700] = {.lex_state = 18, .external_lex_state = 9}, @@ -22018,7 +22071,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1710] = {.lex_state = 18, .external_lex_state = 9}, [1711] = {.lex_state = 18, .external_lex_state = 9}, [1712] = {.lex_state = 18, .external_lex_state = 9}, - [1713] = {.lex_state = 34, .external_lex_state = 11}, + [1713] = {.lex_state = 18, .external_lex_state = 9}, [1714] = {.lex_state = 18, .external_lex_state = 9}, [1715] = {.lex_state = 18, .external_lex_state = 9}, [1716] = {.lex_state = 18, .external_lex_state = 9}, @@ -22031,7 +22084,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1723] = {.lex_state = 18, .external_lex_state = 9}, [1724] = {.lex_state = 18, .external_lex_state = 9}, [1725] = {.lex_state = 18, .external_lex_state = 9}, - [1726] = {.lex_state = 34, .external_lex_state = 11}, + [1726] = {.lex_state = 18, .external_lex_state = 9}, [1727] = {.lex_state = 18, .external_lex_state = 9}, [1728] = {.lex_state = 18, .external_lex_state = 9}, [1729] = {.lex_state = 18, .external_lex_state = 9}, @@ -22046,13 +22099,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1738] = {.lex_state = 18, .external_lex_state = 9}, [1739] = {.lex_state = 18, .external_lex_state = 9}, [1740] = {.lex_state = 18, .external_lex_state = 9}, - [1741] = {.lex_state = 34, .external_lex_state = 11}, + [1741] = {.lex_state = 18, .external_lex_state = 9}, [1742] = {.lex_state = 18, .external_lex_state = 9}, [1743] = {.lex_state = 18, .external_lex_state = 9}, [1744] = {.lex_state = 18, .external_lex_state = 9}, [1745] = {.lex_state = 18, .external_lex_state = 9}, [1746] = {.lex_state = 18, .external_lex_state = 9}, - [1747] = {.lex_state = 18, .external_lex_state = 9}, + [1747] = {.lex_state = 34, .external_lex_state = 11}, [1748] = {.lex_state = 18, .external_lex_state = 9}, [1749] = {.lex_state = 18, .external_lex_state = 9}, [1750] = {.lex_state = 18, .external_lex_state = 9}, @@ -22080,19 +22133,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1772] = {.lex_state = 18, .external_lex_state = 9}, [1773] = {.lex_state = 18, .external_lex_state = 9}, [1774] = {.lex_state = 18, .external_lex_state = 9}, - [1775] = {.lex_state = 34, .external_lex_state = 11}, + [1775] = {.lex_state = 18, .external_lex_state = 9}, [1776] = {.lex_state = 18, .external_lex_state = 9}, [1777] = {.lex_state = 18, .external_lex_state = 9}, [1778] = {.lex_state = 18, .external_lex_state = 9}, [1779] = {.lex_state = 18, .external_lex_state = 9}, [1780] = {.lex_state = 18, .external_lex_state = 9}, - [1781] = {.lex_state = 18, .external_lex_state = 9}, + [1781] = {.lex_state = 34, .external_lex_state = 11}, [1782] = {.lex_state = 18, .external_lex_state = 9}, - [1783] = {.lex_state = 18, .external_lex_state = 9}, + [1783] = {.lex_state = 34, .external_lex_state = 11}, [1784] = {.lex_state = 18, .external_lex_state = 9}, [1785] = {.lex_state = 18, .external_lex_state = 9}, [1786] = {.lex_state = 18, .external_lex_state = 9}, - [1787] = {.lex_state = 18, .external_lex_state = 9}, + [1787] = {.lex_state = 34, .external_lex_state = 11}, [1788] = {.lex_state = 18, .external_lex_state = 9}, [1789] = {.lex_state = 18, .external_lex_state = 9}, [1790] = {.lex_state = 18, .external_lex_state = 9}, @@ -22299,563 +22352,563 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1991] = {.lex_state = 18, .external_lex_state = 9}, [1992] = {.lex_state = 18, .external_lex_state = 9}, [1993] = {.lex_state = 18, .external_lex_state = 9}, - [1994] = {.lex_state = 34, .external_lex_state = 11}, - [1995] = {.lex_state = 34, .external_lex_state = 11}, - [1996] = {.lex_state = 34, .external_lex_state = 11}, - [1997] = {.lex_state = 34, .external_lex_state = 11}, - [1998] = {.lex_state = 34, .external_lex_state = 11}, - [1999] = {.lex_state = 34, .external_lex_state = 11}, - [2000] = {.lex_state = 34, .external_lex_state = 11}, - [2001] = {.lex_state = 34, .external_lex_state = 11}, - [2002] = {.lex_state = 34, .external_lex_state = 11}, - [2003] = {.lex_state = 34, .external_lex_state = 11}, - [2004] = {.lex_state = 34, .external_lex_state = 11}, - [2005] = {.lex_state = 34, .external_lex_state = 11}, - [2006] = {.lex_state = 34, .external_lex_state = 11}, - [2007] = {.lex_state = 34, .external_lex_state = 11}, - [2008] = {.lex_state = 34, .external_lex_state = 11}, - [2009] = {.lex_state = 34, .external_lex_state = 11}, - [2010] = {.lex_state = 17, .external_lex_state = 10}, - [2011] = {.lex_state = 19, .external_lex_state = 10}, - [2012] = {.lex_state = 17, .external_lex_state = 10}, - [2013] = {.lex_state = 19, .external_lex_state = 10}, - [2014] = {.lex_state = 19, .external_lex_state = 10}, - [2015] = {.lex_state = 17, .external_lex_state = 10}, - [2016] = {.lex_state = 19, .external_lex_state = 10}, - [2017] = {.lex_state = 29, .external_lex_state = 16}, - [2018] = {.lex_state = 33, .external_lex_state = 17}, - [2019] = {.lex_state = 33, .external_lex_state = 17}, - [2020] = {.lex_state = 33, .external_lex_state = 17}, - [2021] = {.lex_state = 33, .external_lex_state = 17}, - [2022] = {.lex_state = 33, .external_lex_state = 17}, - [2023] = {.lex_state = 35, .external_lex_state = 16}, - [2024] = {.lex_state = 33, .external_lex_state = 17}, - [2025] = {.lex_state = 33, .external_lex_state = 17}, - [2026] = {.lex_state = 33, .external_lex_state = 17}, - [2027] = {.lex_state = 33, .external_lex_state = 17}, - [2028] = {.lex_state = 33, .external_lex_state = 17}, - [2029] = {.lex_state = 33, .external_lex_state = 17}, - [2030] = {.lex_state = 33, .external_lex_state = 17}, - [2031] = {.lex_state = 33, .external_lex_state = 17}, - [2032] = {.lex_state = 33, .external_lex_state = 17}, - [2033] = {.lex_state = 33, .external_lex_state = 17}, - [2034] = {.lex_state = 29, .external_lex_state = 16}, - [2035] = {.lex_state = 29, .external_lex_state = 16}, - [2036] = {.lex_state = 36, .external_lex_state = 16}, - [2037] = {.lex_state = 29, .external_lex_state = 16}, - [2038] = {.lex_state = 29, .external_lex_state = 16}, - [2039] = {.lex_state = 29, .external_lex_state = 16}, - [2040] = {.lex_state = 29, .external_lex_state = 16}, - [2041] = {.lex_state = 29, .external_lex_state = 16}, - [2042] = {.lex_state = 29, .external_lex_state = 16}, - [2043] = {.lex_state = 29, .external_lex_state = 16}, - [2044] = {.lex_state = 29, .external_lex_state = 16}, - [2045] = {.lex_state = 29, .external_lex_state = 11}, - [2046] = {.lex_state = 29, .external_lex_state = 11}, - [2047] = {.lex_state = 29, .external_lex_state = 11}, - [2048] = {.lex_state = 29, .external_lex_state = 11}, - [2049] = {.lex_state = 29, .external_lex_state = 11}, - [2050] = {.lex_state = 29, .external_lex_state = 11}, - [2051] = {.lex_state = 29, .external_lex_state = 11}, - [2052] = {.lex_state = 29, .external_lex_state = 11}, - [2053] = {.lex_state = 29, .external_lex_state = 11}, - [2054] = {.lex_state = 29, .external_lex_state = 11}, - [2055] = {.lex_state = 29, .external_lex_state = 11}, - [2056] = {.lex_state = 29, .external_lex_state = 11}, - [2057] = {.lex_state = 29, .external_lex_state = 11}, - [2058] = {.lex_state = 29, .external_lex_state = 11}, - [2059] = {.lex_state = 29, .external_lex_state = 11}, - [2060] = {.lex_state = 29, .external_lex_state = 11}, - [2061] = {.lex_state = 29, .external_lex_state = 11}, - [2062] = {.lex_state = 29, .external_lex_state = 11}, - [2063] = {.lex_state = 29, .external_lex_state = 11}, - [2064] = {.lex_state = 29, .external_lex_state = 11}, - [2065] = {.lex_state = 29, .external_lex_state = 11}, - [2066] = {.lex_state = 29, .external_lex_state = 11}, - [2067] = {.lex_state = 29, .external_lex_state = 11}, - [2068] = {.lex_state = 29, .external_lex_state = 11}, - [2069] = {.lex_state = 29, .external_lex_state = 11}, - [2070] = {.lex_state = 29, .external_lex_state = 11}, - [2071] = {.lex_state = 29, .external_lex_state = 11}, - [2072] = {.lex_state = 29, .external_lex_state = 11}, + [1994] = {.lex_state = 18, .external_lex_state = 9}, + [1995] = {.lex_state = 18, .external_lex_state = 9}, + [1996] = {.lex_state = 18, .external_lex_state = 9}, + [1997] = {.lex_state = 18, .external_lex_state = 9}, + [1998] = {.lex_state = 18, .external_lex_state = 9}, + [1999] = {.lex_state = 18, .external_lex_state = 9}, + [2000] = {.lex_state = 18, .external_lex_state = 9}, + [2001] = {.lex_state = 18, .external_lex_state = 9}, + [2002] = {.lex_state = 18, .external_lex_state = 9}, + [2003] = {.lex_state = 18, .external_lex_state = 9}, + [2004] = {.lex_state = 18, .external_lex_state = 9}, + [2005] = {.lex_state = 18, .external_lex_state = 9}, + [2006] = {.lex_state = 18, .external_lex_state = 9}, + [2007] = {.lex_state = 18, .external_lex_state = 9}, + [2008] = {.lex_state = 18, .external_lex_state = 9}, + [2009] = {.lex_state = 18, .external_lex_state = 9}, + [2010] = {.lex_state = 18, .external_lex_state = 9}, + [2011] = {.lex_state = 18, .external_lex_state = 9}, + [2012] = {.lex_state = 18, .external_lex_state = 9}, + [2013] = {.lex_state = 18, .external_lex_state = 9}, + [2014] = {.lex_state = 18, .external_lex_state = 9}, + [2015] = {.lex_state = 18, .external_lex_state = 9}, + [2016] = {.lex_state = 18, .external_lex_state = 9}, + [2017] = {.lex_state = 18, .external_lex_state = 9}, + [2018] = {.lex_state = 18, .external_lex_state = 9}, + [2019] = {.lex_state = 18, .external_lex_state = 9}, + [2020] = {.lex_state = 18, .external_lex_state = 9}, + [2021] = {.lex_state = 18, .external_lex_state = 9}, + [2022] = {.lex_state = 34, .external_lex_state = 11}, + [2023] = {.lex_state = 34, .external_lex_state = 11}, + [2024] = {.lex_state = 34, .external_lex_state = 11}, + [2025] = {.lex_state = 34, .external_lex_state = 11}, + [2026] = {.lex_state = 34, .external_lex_state = 11}, + [2027] = {.lex_state = 34, .external_lex_state = 11}, + [2028] = {.lex_state = 34, .external_lex_state = 11}, + [2029] = {.lex_state = 34, .external_lex_state = 11}, + [2030] = {.lex_state = 34, .external_lex_state = 11}, + [2031] = {.lex_state = 34, .external_lex_state = 11}, + [2032] = {.lex_state = 34, .external_lex_state = 11}, + [2033] = {.lex_state = 34, .external_lex_state = 11}, + [2034] = {.lex_state = 34, .external_lex_state = 11}, + [2035] = {.lex_state = 34, .external_lex_state = 11}, + [2036] = {.lex_state = 34, .external_lex_state = 11}, + [2037] = {.lex_state = 34, .external_lex_state = 11}, + [2038] = {.lex_state = 19, .external_lex_state = 10}, + [2039] = {.lex_state = 17, .external_lex_state = 10}, + [2040] = {.lex_state = 19, .external_lex_state = 10}, + [2041] = {.lex_state = 17, .external_lex_state = 10}, + [2042] = {.lex_state = 17, .external_lex_state = 10}, + [2043] = {.lex_state = 19, .external_lex_state = 10}, + [2044] = {.lex_state = 19, .external_lex_state = 10}, + [2045] = {.lex_state = 29, .external_lex_state = 16}, + [2046] = {.lex_state = 33, .external_lex_state = 17}, + [2047] = {.lex_state = 33, .external_lex_state = 17}, + [2048] = {.lex_state = 33, .external_lex_state = 17}, + [2049] = {.lex_state = 33, .external_lex_state = 17}, + [2050] = {.lex_state = 35, .external_lex_state = 16}, + [2051] = {.lex_state = 33, .external_lex_state = 17}, + [2052] = {.lex_state = 33, .external_lex_state = 17}, + [2053] = {.lex_state = 33, .external_lex_state = 17}, + [2054] = {.lex_state = 33, .external_lex_state = 17}, + [2055] = {.lex_state = 33, .external_lex_state = 17}, + [2056] = {.lex_state = 33, .external_lex_state = 17}, + [2057] = {.lex_state = 33, .external_lex_state = 17}, + [2058] = {.lex_state = 33, .external_lex_state = 17}, + [2059] = {.lex_state = 33, .external_lex_state = 17}, + [2060] = {.lex_state = 33, .external_lex_state = 17}, + [2061] = {.lex_state = 33, .external_lex_state = 17}, + [2062] = {.lex_state = 29, .external_lex_state = 16}, + [2063] = {.lex_state = 36, .external_lex_state = 16}, + [2064] = {.lex_state = 29, .external_lex_state = 16}, + [2065] = {.lex_state = 29, .external_lex_state = 16}, + [2066] = {.lex_state = 29, .external_lex_state = 16}, + [2067] = {.lex_state = 29, .external_lex_state = 16}, + [2068] = {.lex_state = 29, .external_lex_state = 16}, + [2069] = {.lex_state = 29, .external_lex_state = 16}, + [2070] = {.lex_state = 29, .external_lex_state = 16}, + [2071] = {.lex_state = 29, .external_lex_state = 16}, + [2072] = {.lex_state = 29, .external_lex_state = 16}, [2073] = {.lex_state = 29, .external_lex_state = 11}, [2074] = {.lex_state = 29, .external_lex_state = 11}, [2075] = {.lex_state = 29, .external_lex_state = 11}, - [2076] = {.lex_state = 18, .external_lex_state = 13}, + [2076] = {.lex_state = 29, .external_lex_state = 11}, [2077] = {.lex_state = 29, .external_lex_state = 11}, - [2078] = {.lex_state = 18, .external_lex_state = 13}, + [2078] = {.lex_state = 29, .external_lex_state = 11}, [2079] = {.lex_state = 29, .external_lex_state = 11}, - [2080] = {.lex_state = 33, .external_lex_state = 18}, - [2081] = {.lex_state = 33, .external_lex_state = 18}, - [2082] = {.lex_state = 18, .external_lex_state = 13}, - [2083] = {.lex_state = 18, .external_lex_state = 13}, + [2080] = {.lex_state = 29, .external_lex_state = 11}, + [2081] = {.lex_state = 29, .external_lex_state = 11}, + [2082] = {.lex_state = 29, .external_lex_state = 11}, + [2083] = {.lex_state = 29, .external_lex_state = 11}, [2084] = {.lex_state = 29, .external_lex_state = 11}, [2085] = {.lex_state = 29, .external_lex_state = 11}, [2086] = {.lex_state = 29, .external_lex_state = 11}, - [2087] = {.lex_state = 18, .external_lex_state = 13}, + [2087] = {.lex_state = 29, .external_lex_state = 11}, [2088] = {.lex_state = 29, .external_lex_state = 11}, - [2089] = {.lex_state = 18, .external_lex_state = 13}, - [2090] = {.lex_state = 18, .external_lex_state = 13}, - [2091] = {.lex_state = 18, .external_lex_state = 13}, - [2092] = {.lex_state = 18, .external_lex_state = 13}, - [2093] = {.lex_state = 18, .external_lex_state = 13}, + [2089] = {.lex_state = 29, .external_lex_state = 11}, + [2090] = {.lex_state = 29, .external_lex_state = 11}, + [2091] = {.lex_state = 29, .external_lex_state = 11}, + [2092] = {.lex_state = 29, .external_lex_state = 11}, + [2093] = {.lex_state = 29, .external_lex_state = 11}, [2094] = {.lex_state = 29, .external_lex_state = 11}, - [2095] = {.lex_state = 33, .external_lex_state = 18}, + [2095] = {.lex_state = 29, .external_lex_state = 11}, [2096] = {.lex_state = 29, .external_lex_state = 11}, - [2097] = {.lex_state = 33, .external_lex_state = 18}, - [2098] = {.lex_state = 18, .external_lex_state = 13}, + [2097] = {.lex_state = 29, .external_lex_state = 11}, + [2098] = {.lex_state = 29, .external_lex_state = 11}, [2099] = {.lex_state = 29, .external_lex_state = 11}, [2100] = {.lex_state = 29, .external_lex_state = 11}, [2101] = {.lex_state = 29, .external_lex_state = 11}, - [2102] = {.lex_state = 33, .external_lex_state = 18}, - [2103] = {.lex_state = 29, .external_lex_state = 11}, + [2102] = {.lex_state = 29, .external_lex_state = 11}, + [2103] = {.lex_state = 18, .external_lex_state = 13}, [2104] = {.lex_state = 29, .external_lex_state = 11}, [2105] = {.lex_state = 18, .external_lex_state = 13}, - [2106] = {.lex_state = 33, .external_lex_state = 18}, - [2107] = {.lex_state = 33, .external_lex_state = 18}, - [2108] = {.lex_state = 18, .external_lex_state = 13}, - [2109] = {.lex_state = 29, .external_lex_state = 11}, + [2106] = {.lex_state = 29, .external_lex_state = 11}, + [2107] = {.lex_state = 18, .external_lex_state = 13}, + [2108] = {.lex_state = 29, .external_lex_state = 11}, + [2109] = {.lex_state = 33, .external_lex_state = 18}, [2110] = {.lex_state = 18, .external_lex_state = 13}, - [2111] = {.lex_state = 29, .external_lex_state = 11}, - [2112] = {.lex_state = 29, .external_lex_state = 16}, - [2113] = {.lex_state = 29, .external_lex_state = 16}, - [2114] = {.lex_state = 29, .external_lex_state = 16}, - [2115] = {.lex_state = 29, .external_lex_state = 16}, - [2116] = {.lex_state = 29, .external_lex_state = 16}, - [2117] = {.lex_state = 29, .external_lex_state = 11}, + [2111] = {.lex_state = 18, .external_lex_state = 13}, + [2112] = {.lex_state = 33, .external_lex_state = 18}, + [2113] = {.lex_state = 18, .external_lex_state = 13}, + [2114] = {.lex_state = 18, .external_lex_state = 13}, + [2115] = {.lex_state = 18, .external_lex_state = 13}, + [2116] = {.lex_state = 29, .external_lex_state = 11}, + [2117] = {.lex_state = 33, .external_lex_state = 18}, [2118] = {.lex_state = 29, .external_lex_state = 11}, - [2119] = {.lex_state = 29, .external_lex_state = 11}, - [2120] = {.lex_state = 29, .external_lex_state = 16}, - [2121] = {.lex_state = 33, .external_lex_state = 19}, - [2122] = {.lex_state = 29, .external_lex_state = 16}, - [2123] = {.lex_state = 29, .external_lex_state = 16}, - [2124] = {.lex_state = 29, .external_lex_state = 16}, + [2119] = {.lex_state = 33, .external_lex_state = 18}, + [2120] = {.lex_state = 29, .external_lex_state = 11}, + [2121] = {.lex_state = 29, .external_lex_state = 11}, + [2122] = {.lex_state = 18, .external_lex_state = 13}, + [2123] = {.lex_state = 29, .external_lex_state = 11}, + [2124] = {.lex_state = 29, .external_lex_state = 11}, [2125] = {.lex_state = 29, .external_lex_state = 11}, - [2126] = {.lex_state = 29, .external_lex_state = 11}, - [2127] = {.lex_state = 33, .external_lex_state = 19}, - [2128] = {.lex_state = 29, .external_lex_state = 16}, - [2129] = {.lex_state = 29, .external_lex_state = 16}, - [2130] = {.lex_state = 29, .external_lex_state = 16}, - [2131] = {.lex_state = 29, .external_lex_state = 16}, - [2132] = {.lex_state = 18, .external_lex_state = 9}, - [2133] = {.lex_state = 29, .external_lex_state = 16}, + [2126] = {.lex_state = 33, .external_lex_state = 18}, + [2127] = {.lex_state = 29, .external_lex_state = 11}, + [2128] = {.lex_state = 18, .external_lex_state = 13}, + [2129] = {.lex_state = 29, .external_lex_state = 11}, + [2130] = {.lex_state = 18, .external_lex_state = 13}, + [2131] = {.lex_state = 18, .external_lex_state = 13}, + [2132] = {.lex_state = 29, .external_lex_state = 11}, + [2133] = {.lex_state = 29, .external_lex_state = 11}, [2134] = {.lex_state = 29, .external_lex_state = 11}, - [2135] = {.lex_state = 29, .external_lex_state = 16}, - [2136] = {.lex_state = 29, .external_lex_state = 11}, - [2137] = {.lex_state = 33, .external_lex_state = 17}, - [2138] = {.lex_state = 33, .external_lex_state = 19}, - [2139] = {.lex_state = 29, .external_lex_state = 11}, - [2140] = {.lex_state = 18, .external_lex_state = 9}, - [2141] = {.lex_state = 18, .external_lex_state = 9}, + [2135] = {.lex_state = 33, .external_lex_state = 18}, + [2136] = {.lex_state = 18, .external_lex_state = 13}, + [2137] = {.lex_state = 29, .external_lex_state = 11}, + [2138] = {.lex_state = 18, .external_lex_state = 13}, + [2139] = {.lex_state = 33, .external_lex_state = 18}, + [2140] = {.lex_state = 29, .external_lex_state = 11}, + [2141] = {.lex_state = 29, .external_lex_state = 16}, [2142] = {.lex_state = 18, .external_lex_state = 9}, - [2143] = {.lex_state = 29, .external_lex_state = 11}, - [2144] = {.lex_state = 33, .external_lex_state = 19}, - [2145] = {.lex_state = 29, .external_lex_state = 11}, - [2146] = {.lex_state = 33, .external_lex_state = 19}, - [2147] = {.lex_state = 29, .external_lex_state = 11}, + [2143] = {.lex_state = 29, .external_lex_state = 16}, + [2144] = {.lex_state = 29, .external_lex_state = 16}, + [2145] = {.lex_state = 29, .external_lex_state = 16}, + [2146] = {.lex_state = 29, .external_lex_state = 11}, + [2147] = {.lex_state = 29, .external_lex_state = 16}, [2148] = {.lex_state = 29, .external_lex_state = 11}, - [2149] = {.lex_state = 18, .external_lex_state = 9}, - [2150] = {.lex_state = 33, .external_lex_state = 19}, - [2151] = {.lex_state = 29, .external_lex_state = 11}, - [2152] = {.lex_state = 33, .external_lex_state = 19}, - [2153] = {.lex_state = 29, .external_lex_state = 11}, - [2154] = {.lex_state = 29, .external_lex_state = 16}, - [2155] = {.lex_state = 33, .external_lex_state = 19}, - [2156] = {.lex_state = 29, .external_lex_state = 11}, - [2157] = {.lex_state = 29, .external_lex_state = 11}, - [2158] = {.lex_state = 29, .external_lex_state = 16}, - [2159] = {.lex_state = 33, .external_lex_state = 19}, - [2160] = {.lex_state = 29, .external_lex_state = 11}, - [2161] = {.lex_state = 29, .external_lex_state = 11}, - [2162] = {.lex_state = 33, .external_lex_state = 19}, - [2163] = {.lex_state = 33, .external_lex_state = 17}, - [2164] = {.lex_state = 18, .external_lex_state = 9}, - [2165] = {.lex_state = 33, .external_lex_state = 19}, + [2149] = {.lex_state = 29, .external_lex_state = 16}, + [2150] = {.lex_state = 29, .external_lex_state = 11}, + [2151] = {.lex_state = 29, .external_lex_state = 16}, + [2152] = {.lex_state = 29, .external_lex_state = 16}, + [2153] = {.lex_state = 29, .external_lex_state = 16}, + [2154] = {.lex_state = 29, .external_lex_state = 11}, + [2155] = {.lex_state = 29, .external_lex_state = 11}, + [2156] = {.lex_state = 33, .external_lex_state = 19}, + [2157] = {.lex_state = 33, .external_lex_state = 19}, + [2158] = {.lex_state = 29, .external_lex_state = 11}, + [2159] = {.lex_state = 29, .external_lex_state = 16}, + [2160] = {.lex_state = 29, .external_lex_state = 16}, + [2161] = {.lex_state = 29, .external_lex_state = 16}, + [2162] = {.lex_state = 29, .external_lex_state = 16}, + [2163] = {.lex_state = 29, .external_lex_state = 16}, + [2164] = {.lex_state = 29, .external_lex_state = 16}, + [2165] = {.lex_state = 18, .external_lex_state = 9}, [2166] = {.lex_state = 33, .external_lex_state = 19}, - [2167] = {.lex_state = 29, .external_lex_state = 11}, - [2168] = {.lex_state = 18, .external_lex_state = 9}, - [2169] = {.lex_state = 18, .external_lex_state = 9}, - [2170] = {.lex_state = 18, .external_lex_state = 9}, + [2167] = {.lex_state = 33, .external_lex_state = 19}, + [2168] = {.lex_state = 29, .external_lex_state = 11}, + [2169] = {.lex_state = 33, .external_lex_state = 19}, + [2170] = {.lex_state = 33, .external_lex_state = 19}, [2171] = {.lex_state = 33, .external_lex_state = 19}, [2172] = {.lex_state = 29, .external_lex_state = 11}, - [2173] = {.lex_state = 29, .external_lex_state = 11}, - [2174] = {.lex_state = 29, .external_lex_state = 16}, - [2175] = {.lex_state = 29, .external_lex_state = 11}, - [2176] = {.lex_state = 33, .external_lex_state = 19}, - [2177] = {.lex_state = 29, .external_lex_state = 11}, - [2178] = {.lex_state = 29, .external_lex_state = 11}, - [2179] = {.lex_state = 29, .external_lex_state = 11}, + [2173] = {.lex_state = 33, .external_lex_state = 19}, + [2174] = {.lex_state = 33, .external_lex_state = 19}, + [2175] = {.lex_state = 33, .external_lex_state = 19}, + [2176] = {.lex_state = 29, .external_lex_state = 11}, + [2177] = {.lex_state = 33, .external_lex_state = 19}, + [2178] = {.lex_state = 33, .external_lex_state = 19}, + [2179] = {.lex_state = 18, .external_lex_state = 9}, [2180] = {.lex_state = 29, .external_lex_state = 11}, [2181] = {.lex_state = 29, .external_lex_state = 11}, [2182] = {.lex_state = 29, .external_lex_state = 11}, - [2183] = {.lex_state = 33, .external_lex_state = 17}, + [2183] = {.lex_state = 29, .external_lex_state = 16}, [2184] = {.lex_state = 29, .external_lex_state = 11}, - [2185] = {.lex_state = 18, .external_lex_state = 9}, - [2186] = {.lex_state = 33, .external_lex_state = 19}, - [2187] = {.lex_state = 33, .external_lex_state = 19}, - [2188] = {.lex_state = 33, .external_lex_state = 19}, - [2189] = {.lex_state = 33, .external_lex_state = 19}, - [2190] = {.lex_state = 33, .external_lex_state = 17}, - [2191] = {.lex_state = 33, .external_lex_state = 19}, + [2185] = {.lex_state = 33, .external_lex_state = 19}, + [2186] = {.lex_state = 18, .external_lex_state = 9}, + [2187] = {.lex_state = 29, .external_lex_state = 11}, + [2188] = {.lex_state = 29, .external_lex_state = 16}, + [2189] = {.lex_state = 29, .external_lex_state = 16}, + [2190] = {.lex_state = 29, .external_lex_state = 11}, + [2191] = {.lex_state = 29, .external_lex_state = 11}, [2192] = {.lex_state = 33, .external_lex_state = 19}, - [2193] = {.lex_state = 33, .external_lex_state = 19}, - [2194] = {.lex_state = 33, .external_lex_state = 17}, - [2195] = {.lex_state = 33, .external_lex_state = 17}, - [2196] = {.lex_state = 33, .external_lex_state = 17}, - [2197] = {.lex_state = 33, .external_lex_state = 19}, - [2198] = {.lex_state = 33, .external_lex_state = 17}, - [2199] = {.lex_state = 18, .external_lex_state = 9}, + [2193] = {.lex_state = 29, .external_lex_state = 11}, + [2194] = {.lex_state = 33, .external_lex_state = 19}, + [2195] = {.lex_state = 29, .external_lex_state = 11}, + [2196] = {.lex_state = 18, .external_lex_state = 9}, + [2197] = {.lex_state = 29, .external_lex_state = 11}, + [2198] = {.lex_state = 18, .external_lex_state = 9}, + [2199] = {.lex_state = 29, .external_lex_state = 11}, [2200] = {.lex_state = 29, .external_lex_state = 11}, - [2201] = {.lex_state = 18, .external_lex_state = 9}, + [2201] = {.lex_state = 29, .external_lex_state = 11}, [2202] = {.lex_state = 33, .external_lex_state = 17}, - [2203] = {.lex_state = 29, .external_lex_state = 16}, - [2204] = {.lex_state = 29, .external_lex_state = 16}, - [2205] = {.lex_state = 33, .external_lex_state = 18}, - [2206] = {.lex_state = 18, .external_lex_state = 9}, + [2203] = {.lex_state = 33, .external_lex_state = 17}, + [2204] = {.lex_state = 29, .external_lex_state = 11}, + [2205] = {.lex_state = 18, .external_lex_state = 9}, + [2206] = {.lex_state = 33, .external_lex_state = 17}, [2207] = {.lex_state = 18, .external_lex_state = 9}, - [2208] = {.lex_state = 29, .external_lex_state = 16}, - [2209] = {.lex_state = 33, .external_lex_state = 18}, + [2208] = {.lex_state = 33, .external_lex_state = 17}, + [2209] = {.lex_state = 33, .external_lex_state = 17}, [2210] = {.lex_state = 18, .external_lex_state = 9}, - [2211] = {.lex_state = 29, .external_lex_state = 11}, - [2212] = {.lex_state = 29, .external_lex_state = 16}, - [2213] = {.lex_state = 18, .external_lex_state = 9}, - [2214] = {.lex_state = 33, .external_lex_state = 18}, - [2215] = {.lex_state = 29, .external_lex_state = 16}, - [2216] = {.lex_state = 33, .external_lex_state = 16}, - [2217] = {.lex_state = 29, .external_lex_state = 16}, + [2211] = {.lex_state = 33, .external_lex_state = 19}, + [2212] = {.lex_state = 29, .external_lex_state = 11}, + [2213] = {.lex_state = 33, .external_lex_state = 19}, + [2214] = {.lex_state = 33, .external_lex_state = 19}, + [2215] = {.lex_state = 29, .external_lex_state = 11}, + [2216] = {.lex_state = 29, .external_lex_state = 11}, + [2217] = {.lex_state = 33, .external_lex_state = 19}, [2218] = {.lex_state = 18, .external_lex_state = 9}, - [2219] = {.lex_state = 29, .external_lex_state = 11}, - [2220] = {.lex_state = 33, .external_lex_state = 18}, - [2221] = {.lex_state = 29, .external_lex_state = 11}, - [2222] = {.lex_state = 29, .external_lex_state = 16}, + [2219] = {.lex_state = 18, .external_lex_state = 9}, + [2220] = {.lex_state = 33, .external_lex_state = 19}, + [2221] = {.lex_state = 33, .external_lex_state = 19}, + [2222] = {.lex_state = 33, .external_lex_state = 19}, [2223] = {.lex_state = 29, .external_lex_state = 11}, - [2224] = {.lex_state = 33, .external_lex_state = 18}, - [2225] = {.lex_state = 29, .external_lex_state = 11}, - [2226] = {.lex_state = 18, .external_lex_state = 9}, - [2227] = {.lex_state = 18, .external_lex_state = 9}, - [2228] = {.lex_state = 29, .external_lex_state = 11}, - [2229] = {.lex_state = 29, .external_lex_state = 16}, - [2230] = {.lex_state = 29, .external_lex_state = 16}, - [2231] = {.lex_state = 33, .external_lex_state = 16}, - [2232] = {.lex_state = 33, .external_lex_state = 18}, - [2233] = {.lex_state = 29, .external_lex_state = 16}, - [2234] = {.lex_state = 29, .external_lex_state = 11}, - [2235] = {.lex_state = 29, .external_lex_state = 16}, - [2236] = {.lex_state = 29, .external_lex_state = 11}, - [2237] = {.lex_state = 29, .external_lex_state = 16}, - [2238] = {.lex_state = 29, .external_lex_state = 11}, - [2239] = {.lex_state = 33, .external_lex_state = 18}, - [2240] = {.lex_state = 33, .external_lex_state = 18}, - [2241] = {.lex_state = 33, .external_lex_state = 18}, - [2242] = {.lex_state = 29, .external_lex_state = 16}, - [2243] = {.lex_state = 29, .external_lex_state = 16}, - [2244] = {.lex_state = 29, .external_lex_state = 16}, - [2245] = {.lex_state = 29, .external_lex_state = 11}, + [2224] = {.lex_state = 29, .external_lex_state = 11}, + [2225] = {.lex_state = 18, .external_lex_state = 9}, + [2226] = {.lex_state = 29, .external_lex_state = 11}, + [2227] = {.lex_state = 33, .external_lex_state = 17}, + [2228] = {.lex_state = 33, .external_lex_state = 17}, + [2229] = {.lex_state = 33, .external_lex_state = 17}, + [2230] = {.lex_state = 33, .external_lex_state = 17}, + [2231] = {.lex_state = 33, .external_lex_state = 18}, + [2232] = {.lex_state = 33, .external_lex_state = 17}, + [2233] = {.lex_state = 33, .external_lex_state = 18}, + [2234] = {.lex_state = 29, .external_lex_state = 16}, + [2235] = {.lex_state = 33, .external_lex_state = 18}, + [2236] = {.lex_state = 29, .external_lex_state = 16}, + [2237] = {.lex_state = 33, .external_lex_state = 16}, + [2238] = {.lex_state = 18, .external_lex_state = 9}, + [2239] = {.lex_state = 29, .external_lex_state = 16}, + [2240] = {.lex_state = 18, .external_lex_state = 9}, + [2241] = {.lex_state = 33, .external_lex_state = 19}, + [2242] = {.lex_state = 33, .external_lex_state = 17}, + [2243] = {.lex_state = 29, .external_lex_state = 11}, + [2244] = {.lex_state = 29, .external_lex_state = 11}, + [2245] = {.lex_state = 29, .external_lex_state = 16}, [2246] = {.lex_state = 29, .external_lex_state = 16}, - [2247] = {.lex_state = 18, .external_lex_state = 9}, - [2248] = {.lex_state = 29, .external_lex_state = 16}, - [2249] = {.lex_state = 29, .external_lex_state = 16}, - [2250] = {.lex_state = 29, .external_lex_state = 16}, - [2251] = {.lex_state = 29, .external_lex_state = 16}, - [2252] = {.lex_state = 29, .external_lex_state = 16}, - [2253] = {.lex_state = 18, .external_lex_state = 9}, - [2254] = {.lex_state = 33, .external_lex_state = 17}, - [2255] = {.lex_state = 29, .external_lex_state = 16}, + [2247] = {.lex_state = 29, .external_lex_state = 16}, + [2248] = {.lex_state = 18, .external_lex_state = 9}, + [2249] = {.lex_state = 29, .external_lex_state = 11}, + [2250] = {.lex_state = 29, .external_lex_state = 11}, + [2251] = {.lex_state = 29, .external_lex_state = 11}, + [2252] = {.lex_state = 29, .external_lex_state = 11}, + [2253] = {.lex_state = 29, .external_lex_state = 11}, + [2254] = {.lex_state = 29, .external_lex_state = 16}, + [2255] = {.lex_state = 33, .external_lex_state = 18}, [2256] = {.lex_state = 29, .external_lex_state = 16}, - [2257] = {.lex_state = 33, .external_lex_state = 19}, - [2258] = {.lex_state = 33, .external_lex_state = 19}, - [2259] = {.lex_state = 33, .external_lex_state = 19}, - [2260] = {.lex_state = 33, .external_lex_state = 17}, - [2261] = {.lex_state = 33, .external_lex_state = 17}, - [2262] = {.lex_state = 33, .external_lex_state = 17}, - [2263] = {.lex_state = 33, .external_lex_state = 17}, - [2264] = {.lex_state = 33, .external_lex_state = 17}, - [2265] = {.lex_state = 33, .external_lex_state = 17}, - [2266] = {.lex_state = 33, .external_lex_state = 17}, - [2267] = {.lex_state = 33, .external_lex_state = 17}, - [2268] = {.lex_state = 33, .external_lex_state = 17}, - [2269] = {.lex_state = 33, .external_lex_state = 17}, - [2270] = {.lex_state = 33, .external_lex_state = 19}, - [2271] = {.lex_state = 33, .external_lex_state = 17}, - [2272] = {.lex_state = 33, .external_lex_state = 17}, - [2273] = {.lex_state = 33, .external_lex_state = 17}, - [2274] = {.lex_state = 29, .external_lex_state = 11}, + [2257] = {.lex_state = 29, .external_lex_state = 11}, + [2258] = {.lex_state = 29, .external_lex_state = 11}, + [2259] = {.lex_state = 29, .external_lex_state = 11}, + [2260] = {.lex_state = 29, .external_lex_state = 16}, + [2261] = {.lex_state = 29, .external_lex_state = 16}, + [2262] = {.lex_state = 18, .external_lex_state = 9}, + [2263] = {.lex_state = 29, .external_lex_state = 16}, + [2264] = {.lex_state = 33, .external_lex_state = 19}, + [2265] = {.lex_state = 18, .external_lex_state = 9}, + [2266] = {.lex_state = 29, .external_lex_state = 16}, + [2267] = {.lex_state = 29, .external_lex_state = 16}, + [2268] = {.lex_state = 29, .external_lex_state = 16}, + [2269] = {.lex_state = 29, .external_lex_state = 16}, + [2270] = {.lex_state = 29, .external_lex_state = 16}, + [2271] = {.lex_state = 29, .external_lex_state = 16}, + [2272] = {.lex_state = 33, .external_lex_state = 18}, + [2273] = {.lex_state = 33, .external_lex_state = 18}, + [2274] = {.lex_state = 33, .external_lex_state = 18}, [2275] = {.lex_state = 29, .external_lex_state = 16}, - [2276] = {.lex_state = 33, .external_lex_state = 19}, - [2277] = {.lex_state = 33, .external_lex_state = 19}, - [2278] = {.lex_state = 33, .external_lex_state = 17}, - [2279] = {.lex_state = 33, .external_lex_state = 19}, - [2280] = {.lex_state = 33, .external_lex_state = 19}, - [2281] = {.lex_state = 33, .external_lex_state = 19}, - [2282] = {.lex_state = 33, .external_lex_state = 19}, + [2276] = {.lex_state = 33, .external_lex_state = 16}, + [2277] = {.lex_state = 18, .external_lex_state = 9}, + [2278] = {.lex_state = 33, .external_lex_state = 18}, + [2279] = {.lex_state = 33, .external_lex_state = 18}, + [2280] = {.lex_state = 18, .external_lex_state = 9}, + [2281] = {.lex_state = 18, .external_lex_state = 9}, + [2282] = {.lex_state = 29, .external_lex_state = 16}, [2283] = {.lex_state = 29, .external_lex_state = 16}, - [2284] = {.lex_state = 33, .external_lex_state = 19}, - [2285] = {.lex_state = 29, .external_lex_state = 11}, - [2286] = {.lex_state = 33, .external_lex_state = 19}, - [2287] = {.lex_state = 33, .external_lex_state = 19}, - [2288] = {.lex_state = 33, .external_lex_state = 19}, + [2284] = {.lex_state = 18, .external_lex_state = 9}, + [2285] = {.lex_state = 29, .external_lex_state = 16}, + [2286] = {.lex_state = 33, .external_lex_state = 17}, + [2287] = {.lex_state = 29, .external_lex_state = 11}, + [2288] = {.lex_state = 29, .external_lex_state = 16}, [2289] = {.lex_state = 29, .external_lex_state = 16}, - [2290] = {.lex_state = 29, .external_lex_state = 16}, + [2290] = {.lex_state = 33, .external_lex_state = 17}, [2291] = {.lex_state = 33, .external_lex_state = 19}, - [2292] = {.lex_state = 33, .external_lex_state = 19}, - [2293] = {.lex_state = 33, .external_lex_state = 19}, - [2294] = {.lex_state = 29, .external_lex_state = 11}, - [2295] = {.lex_state = 29, .external_lex_state = 16}, - [2296] = {.lex_state = 29, .external_lex_state = 11}, - [2297] = {.lex_state = 29, .external_lex_state = 16}, - [2298] = {.lex_state = 29, .external_lex_state = 16}, - [2299] = {.lex_state = 29, .external_lex_state = 16}, - [2300] = {.lex_state = 29, .external_lex_state = 16}, - [2301] = {.lex_state = 29, .external_lex_state = 11}, - [2302] = {.lex_state = 29, .external_lex_state = 11}, - [2303] = {.lex_state = 29, .external_lex_state = 16}, - [2304] = {.lex_state = 33, .external_lex_state = 19}, + [2292] = {.lex_state = 33, .external_lex_state = 17}, + [2293] = {.lex_state = 29, .external_lex_state = 16}, + [2294] = {.lex_state = 33, .external_lex_state = 18}, + [2295] = {.lex_state = 33, .external_lex_state = 17}, + [2296] = {.lex_state = 33, .external_lex_state = 19}, + [2297] = {.lex_state = 33, .external_lex_state = 19}, + [2298] = {.lex_state = 33, .external_lex_state = 19}, + [2299] = {.lex_state = 33, .external_lex_state = 19}, + [2300] = {.lex_state = 33, .external_lex_state = 19}, + [2301] = {.lex_state = 29, .external_lex_state = 16}, + [2302] = {.lex_state = 29, .external_lex_state = 16}, + [2303] = {.lex_state = 33, .external_lex_state = 17}, + [2304] = {.lex_state = 29, .external_lex_state = 16}, [2305] = {.lex_state = 33, .external_lex_state = 19}, - [2306] = {.lex_state = 33, .external_lex_state = 16}, - [2307] = {.lex_state = 29, .external_lex_state = 16}, - [2308] = {.lex_state = 29, .external_lex_state = 16}, - [2309] = {.lex_state = 29, .external_lex_state = 16}, - [2310] = {.lex_state = 29, .external_lex_state = 16}, - [2311] = {.lex_state = 33, .external_lex_state = 16}, - [2312] = {.lex_state = 33, .external_lex_state = 16}, - [2313] = {.lex_state = 33, .external_lex_state = 16}, - [2314] = {.lex_state = 33, .external_lex_state = 16}, - [2315] = {.lex_state = 33, .external_lex_state = 16}, - [2316] = {.lex_state = 33, .external_lex_state = 16}, - [2317] = {.lex_state = 33, .external_lex_state = 18}, + [2306] = {.lex_state = 33, .external_lex_state = 19}, + [2307] = {.lex_state = 29, .external_lex_state = 11}, + [2308] = {.lex_state = 33, .external_lex_state = 19}, + [2309] = {.lex_state = 29, .external_lex_state = 11}, + [2310] = {.lex_state = 33, .external_lex_state = 19}, + [2311] = {.lex_state = 33, .external_lex_state = 17}, + [2312] = {.lex_state = 33, .external_lex_state = 17}, + [2313] = {.lex_state = 29, .external_lex_state = 16}, + [2314] = {.lex_state = 29, .external_lex_state = 16}, + [2315] = {.lex_state = 33, .external_lex_state = 19}, + [2316] = {.lex_state = 33, .external_lex_state = 17}, + [2317] = {.lex_state = 33, .external_lex_state = 17}, [2318] = {.lex_state = 29, .external_lex_state = 16}, - [2319] = {.lex_state = 29, .external_lex_state = 16}, - [2320] = {.lex_state = 29, .external_lex_state = 16}, - [2321] = {.lex_state = 29, .external_lex_state = 11}, - [2322] = {.lex_state = 33, .external_lex_state = 18}, - [2323] = {.lex_state = 33, .external_lex_state = 18}, - [2324] = {.lex_state = 29, .external_lex_state = 16}, - [2325] = {.lex_state = 29, .external_lex_state = 16}, - [2326] = {.lex_state = 29, .external_lex_state = 16}, - [2327] = {.lex_state = 33, .external_lex_state = 18}, - [2328] = {.lex_state = 29, .external_lex_state = 16}, - [2329] = {.lex_state = 29, .external_lex_state = 16}, + [2319] = {.lex_state = 33, .external_lex_state = 19}, + [2320] = {.lex_state = 33, .external_lex_state = 17}, + [2321] = {.lex_state = 33, .external_lex_state = 17}, + [2322] = {.lex_state = 33, .external_lex_state = 19}, + [2323] = {.lex_state = 33, .external_lex_state = 19}, + [2324] = {.lex_state = 33, .external_lex_state = 17}, + [2325] = {.lex_state = 33, .external_lex_state = 18}, + [2326] = {.lex_state = 33, .external_lex_state = 19}, + [2327] = {.lex_state = 29, .external_lex_state = 16}, + [2328] = {.lex_state = 33, .external_lex_state = 19}, + [2329] = {.lex_state = 33, .external_lex_state = 17}, [2330] = {.lex_state = 29, .external_lex_state = 16}, - [2331] = {.lex_state = 33, .external_lex_state = 18}, + [2331] = {.lex_state = 33, .external_lex_state = 19}, [2332] = {.lex_state = 29, .external_lex_state = 16}, - [2333] = {.lex_state = 29, .external_lex_state = 16}, - [2334] = {.lex_state = 29, .external_lex_state = 16}, - [2335] = {.lex_state = 29, .external_lex_state = 16}, - [2336] = {.lex_state = 29, .external_lex_state = 16}, + [2333] = {.lex_state = 29, .external_lex_state = 11}, + [2334] = {.lex_state = 29, .external_lex_state = 11}, + [2335] = {.lex_state = 29, .external_lex_state = 11}, + [2336] = {.lex_state = 29, .external_lex_state = 11}, [2337] = {.lex_state = 29, .external_lex_state = 16}, - [2338] = {.lex_state = 33, .external_lex_state = 18}, - [2339] = {.lex_state = 29, .external_lex_state = 11}, - [2340] = {.lex_state = 33, .external_lex_state = 18}, - [2341] = {.lex_state = 33, .external_lex_state = 18}, - [2342] = {.lex_state = 33, .external_lex_state = 18}, - [2343] = {.lex_state = 33, .external_lex_state = 16}, - [2344] = {.lex_state = 29, .external_lex_state = 16}, + [2338] = {.lex_state = 29, .external_lex_state = 16}, + [2339] = {.lex_state = 29, .external_lex_state = 16}, + [2340] = {.lex_state = 29, .external_lex_state = 11}, + [2341] = {.lex_state = 29, .external_lex_state = 16}, + [2342] = {.lex_state = 29, .external_lex_state = 16}, + [2343] = {.lex_state = 29, .external_lex_state = 16}, + [2344] = {.lex_state = 33, .external_lex_state = 16}, [2345] = {.lex_state = 33, .external_lex_state = 18}, - [2346] = {.lex_state = 29, .external_lex_state = 16}, + [2346] = {.lex_state = 33, .external_lex_state = 18}, [2347] = {.lex_state = 33, .external_lex_state = 18}, [2348] = {.lex_state = 29, .external_lex_state = 16}, [2349] = {.lex_state = 29, .external_lex_state = 16}, - [2350] = {.lex_state = 29, .external_lex_state = 11}, - [2351] = {.lex_state = 33, .external_lex_state = 18}, - [2352] = {.lex_state = 33, .external_lex_state = 16}, - [2353] = {.lex_state = 33, .external_lex_state = 18}, - [2354] = {.lex_state = 33, .external_lex_state = 18}, - [2355] = {.lex_state = 33, .external_lex_state = 18}, - [2356] = {.lex_state = 29, .external_lex_state = 16}, - [2357] = {.lex_state = 29, .external_lex_state = 16}, - [2358] = {.lex_state = 29, .external_lex_state = 16}, - [2359] = {.lex_state = 29, .external_lex_state = 16}, - [2360] = {.lex_state = 29, .external_lex_state = 16}, + [2350] = {.lex_state = 29, .external_lex_state = 16}, + [2351] = {.lex_state = 29, .external_lex_state = 16}, + [2352] = {.lex_state = 29, .external_lex_state = 16}, + [2353] = {.lex_state = 29, .external_lex_state = 16}, + [2354] = {.lex_state = 29, .external_lex_state = 16}, + [2355] = {.lex_state = 33, .external_lex_state = 16}, + [2356] = {.lex_state = 33, .external_lex_state = 16}, + [2357] = {.lex_state = 33, .external_lex_state = 16}, + [2358] = {.lex_state = 33, .external_lex_state = 16}, + [2359] = {.lex_state = 33, .external_lex_state = 16}, + [2360] = {.lex_state = 33, .external_lex_state = 16}, [2361] = {.lex_state = 29, .external_lex_state = 16}, - [2362] = {.lex_state = 29, .external_lex_state = 11}, - [2363] = {.lex_state = 29, .external_lex_state = 11}, + [2362] = {.lex_state = 29, .external_lex_state = 16}, + [2363] = {.lex_state = 29, .external_lex_state = 16}, [2364] = {.lex_state = 29, .external_lex_state = 16}, [2365] = {.lex_state = 29, .external_lex_state = 16}, [2366] = {.lex_state = 29, .external_lex_state = 16}, - [2367] = {.lex_state = 29, .external_lex_state = 16}, - [2368] = {.lex_state = 29, .external_lex_state = 16}, + [2367] = {.lex_state = 33, .external_lex_state = 18}, + [2368] = {.lex_state = 33, .external_lex_state = 18}, [2369] = {.lex_state = 29, .external_lex_state = 16}, - [2370] = {.lex_state = 29, .external_lex_state = 11}, - [2371] = {.lex_state = 29, .external_lex_state = 11}, - [2372] = {.lex_state = 29, .external_lex_state = 16}, + [2370] = {.lex_state = 33, .external_lex_state = 16}, + [2371] = {.lex_state = 33, .external_lex_state = 18}, + [2372] = {.lex_state = 33, .external_lex_state = 18}, [2373] = {.lex_state = 29, .external_lex_state = 16}, - [2374] = {.lex_state = 29, .external_lex_state = 16}, - [2375] = {.lex_state = 29, .external_lex_state = 16}, - [2376] = {.lex_state = 29, .external_lex_state = 16}, - [2377] = {.lex_state = 29, .external_lex_state = 16}, - [2378] = {.lex_state = 29, .external_lex_state = 16}, - [2379] = {.lex_state = 29, .external_lex_state = 16}, - [2380] = {.lex_state = 33, .external_lex_state = 16}, - [2381] = {.lex_state = 45}, - [2382] = {.lex_state = 45}, - [2383] = {.lex_state = 45}, - [2384] = {.lex_state = 45}, - [2385] = {.lex_state = 45}, - [2386] = {.lex_state = 45}, - [2387] = {.lex_state = 29, .external_lex_state = 16}, - [2388] = {.lex_state = 45}, - [2389] = {.lex_state = 45}, - [2390] = {.lex_state = 45}, - [2391] = {.lex_state = 45}, - [2392] = {.lex_state = 45}, - [2393] = {.lex_state = 45}, - [2394] = {.lex_state = 45}, - [2395] = {.lex_state = 45}, - [2396] = {.lex_state = 45}, + [2374] = {.lex_state = 33, .external_lex_state = 18}, + [2375] = {.lex_state = 33, .external_lex_state = 18}, + [2376] = {.lex_state = 33, .external_lex_state = 18}, + [2377] = {.lex_state = 33, .external_lex_state = 18}, + [2378] = {.lex_state = 33, .external_lex_state = 18}, + [2379] = {.lex_state = 33, .external_lex_state = 16}, + [2380] = {.lex_state = 29, .external_lex_state = 16}, + [2381] = {.lex_state = 33, .external_lex_state = 18}, + [2382] = {.lex_state = 29, .external_lex_state = 11}, + [2383] = {.lex_state = 29, .external_lex_state = 16}, + [2384] = {.lex_state = 29, .external_lex_state = 11}, + [2385] = {.lex_state = 29, .external_lex_state = 16}, + [2386] = {.lex_state = 29, .external_lex_state = 16}, + [2387] = {.lex_state = 29, .external_lex_state = 11}, + [2388] = {.lex_state = 29, .external_lex_state = 16}, + [2389] = {.lex_state = 29, .external_lex_state = 16}, + [2390] = {.lex_state = 29, .external_lex_state = 16}, + [2391] = {.lex_state = 29, .external_lex_state = 16}, + [2392] = {.lex_state = 29, .external_lex_state = 11}, + [2393] = {.lex_state = 29, .external_lex_state = 16}, + [2394] = {.lex_state = 29, .external_lex_state = 11}, + [2395] = {.lex_state = 29, .external_lex_state = 16}, + [2396] = {.lex_state = 29, .external_lex_state = 16}, [2397] = {.lex_state = 29, .external_lex_state = 16}, [2398] = {.lex_state = 29, .external_lex_state = 16}, - [2399] = {.lex_state = 45}, - [2400] = {.lex_state = 45}, - [2401] = {.lex_state = 45}, - [2402] = {.lex_state = 45}, - [2403] = {.lex_state = 30, .external_lex_state = 11}, - [2404] = {.lex_state = 45}, - [2405] = {.lex_state = 30, .external_lex_state = 11}, - [2406] = {.lex_state = 30, .external_lex_state = 11}, - [2407] = {.lex_state = 30, .external_lex_state = 11}, - [2408] = {.lex_state = 30, .external_lex_state = 11}, - [2409] = {.lex_state = 30, .external_lex_state = 16}, - [2410] = {.lex_state = 30, .external_lex_state = 16}, - [2411] = {.lex_state = 30, .external_lex_state = 16}, - [2412] = {.lex_state = 30, .external_lex_state = 16}, + [2399] = {.lex_state = 29, .external_lex_state = 16}, + [2400] = {.lex_state = 29, .external_lex_state = 16}, + [2401] = {.lex_state = 29, .external_lex_state = 16}, + [2402] = {.lex_state = 29, .external_lex_state = 16}, + [2403] = {.lex_state = 33, .external_lex_state = 16}, + [2404] = {.lex_state = 29, .external_lex_state = 16}, + [2405] = {.lex_state = 29, .external_lex_state = 16}, + [2406] = {.lex_state = 29, .external_lex_state = 16}, + [2407] = {.lex_state = 29, .external_lex_state = 16}, + [2408] = {.lex_state = 29, .external_lex_state = 16}, + [2409] = {.lex_state = 45}, + [2410] = {.lex_state = 45}, + [2411] = {.lex_state = 45}, + [2412] = {.lex_state = 45}, [2413] = {.lex_state = 45}, - [2414] = {.lex_state = 30, .external_lex_state = 11}, - [2415] = {.lex_state = 45}, - [2416] = {.lex_state = 30, .external_lex_state = 11}, - [2417] = {.lex_state = 30, .external_lex_state = 11}, - [2418] = {.lex_state = 30, .external_lex_state = 11}, - [2419] = {.lex_state = 30, .external_lex_state = 11}, - [2420] = {.lex_state = 30, .external_lex_state = 11}, - [2421] = {.lex_state = 30, .external_lex_state = 11}, - [2422] = {.lex_state = 30, .external_lex_state = 16}, - [2423] = {.lex_state = 30, .external_lex_state = 11}, - [2424] = {.lex_state = 30, .external_lex_state = 11}, - [2425] = {.lex_state = 30, .external_lex_state = 11}, - [2426] = {.lex_state = 30, .external_lex_state = 16}, - [2427] = {.lex_state = 30, .external_lex_state = 11}, - [2428] = {.lex_state = 30, .external_lex_state = 11}, - [2429] = {.lex_state = 30, .external_lex_state = 11}, - [2430] = {.lex_state = 30, .external_lex_state = 16}, - [2431] = {.lex_state = 31, .external_lex_state = 16}, - [2432] = {.lex_state = 30, .external_lex_state = 16}, - [2433] = {.lex_state = 30, .external_lex_state = 16}, - [2434] = {.lex_state = 30, .external_lex_state = 16}, + [2414] = {.lex_state = 45}, + [2415] = {.lex_state = 29, .external_lex_state = 16}, + [2416] = {.lex_state = 29, .external_lex_state = 16}, + [2417] = {.lex_state = 45}, + [2418] = {.lex_state = 45}, + [2419] = {.lex_state = 45}, + [2420] = {.lex_state = 45}, + [2421] = {.lex_state = 45}, + [2422] = {.lex_state = 45}, + [2423] = {.lex_state = 45}, + [2424] = {.lex_state = 45}, + [2425] = {.lex_state = 45}, + [2426] = {.lex_state = 45}, + [2427] = {.lex_state = 45}, + [2428] = {.lex_state = 29, .external_lex_state = 16}, + [2429] = {.lex_state = 45}, + [2430] = {.lex_state = 45}, + [2431] = {.lex_state = 30, .external_lex_state = 11}, + [2432] = {.lex_state = 45}, + [2433] = {.lex_state = 30, .external_lex_state = 11}, + [2434] = {.lex_state = 30, .external_lex_state = 11}, [2435] = {.lex_state = 30, .external_lex_state = 11}, [2436] = {.lex_state = 30, .external_lex_state = 11}, - [2437] = {.lex_state = 30, .external_lex_state = 11}, - [2438] = {.lex_state = 30, .external_lex_state = 11}, - [2439] = {.lex_state = 30, .external_lex_state = 11}, - [2440] = {.lex_state = 30, .external_lex_state = 11}, + [2437] = {.lex_state = 30, .external_lex_state = 16}, + [2438] = {.lex_state = 30, .external_lex_state = 16}, + [2439] = {.lex_state = 30, .external_lex_state = 16}, + [2440] = {.lex_state = 30, .external_lex_state = 16}, [2441] = {.lex_state = 30, .external_lex_state = 11}, - [2442] = {.lex_state = 30, .external_lex_state = 11}, + [2442] = {.lex_state = 45}, [2443] = {.lex_state = 30, .external_lex_state = 11}, [2444] = {.lex_state = 30, .external_lex_state = 11}, [2445] = {.lex_state = 30, .external_lex_state = 11}, - [2446] = {.lex_state = 30, .external_lex_state = 16}, + [2446] = {.lex_state = 45}, [2447] = {.lex_state = 30, .external_lex_state = 11}, - [2448] = {.lex_state = 30, .external_lex_state = 11}, + [2448] = {.lex_state = 30, .external_lex_state = 16}, [2449] = {.lex_state = 30, .external_lex_state = 11}, [2450] = {.lex_state = 30, .external_lex_state = 11}, - [2451] = {.lex_state = 30, .external_lex_state = 16}, + [2451] = {.lex_state = 30, .external_lex_state = 11}, [2452] = {.lex_state = 30, .external_lex_state = 11}, - [2453] = {.lex_state = 30, .external_lex_state = 16}, - [2454] = {.lex_state = 30, .external_lex_state = 16}, - [2455] = {.lex_state = 30, .external_lex_state = 16}, - [2456] = {.lex_state = 30, .external_lex_state = 16}, - [2457] = {.lex_state = 30, .external_lex_state = 11}, - [2458] = {.lex_state = 30, .external_lex_state = 16}, - [2459] = {.lex_state = 30, .external_lex_state = 16}, - [2460] = {.lex_state = 30, .external_lex_state = 16}, - [2461] = {.lex_state = 30, .external_lex_state = 16}, + [2453] = {.lex_state = 30, .external_lex_state = 11}, + [2454] = {.lex_state = 30, .external_lex_state = 11}, + [2455] = {.lex_state = 30, .external_lex_state = 11}, + [2456] = {.lex_state = 30, .external_lex_state = 11}, + [2457] = {.lex_state = 30, .external_lex_state = 16}, + [2458] = {.lex_state = 30, .external_lex_state = 11}, + [2459] = {.lex_state = 30, .external_lex_state = 11}, + [2460] = {.lex_state = 30, .external_lex_state = 11}, + [2461] = {.lex_state = 30, .external_lex_state = 11}, [2462] = {.lex_state = 30, .external_lex_state = 11}, [2463] = {.lex_state = 30, .external_lex_state = 16}, - [2464] = {.lex_state = 30, .external_lex_state = 16}, - [2465] = {.lex_state = 30, .external_lex_state = 16}, - [2466] = {.lex_state = 30, .external_lex_state = 16}, - [2467] = {.lex_state = 30, .external_lex_state = 16}, - [2468] = {.lex_state = 30, .external_lex_state = 16}, + [2464] = {.lex_state = 30, .external_lex_state = 11}, + [2465] = {.lex_state = 30, .external_lex_state = 11}, + [2466] = {.lex_state = 30, .external_lex_state = 11}, + [2467] = {.lex_state = 30, .external_lex_state = 11}, + [2468] = {.lex_state = 30, .external_lex_state = 11}, [2469] = {.lex_state = 30, .external_lex_state = 16}, - [2470] = {.lex_state = 30, .external_lex_state = 16}, - [2471] = {.lex_state = 30, .external_lex_state = 16}, - [2472] = {.lex_state = 30, .external_lex_state = 16}, - [2473] = {.lex_state = 30, .external_lex_state = 16}, + [2470] = {.lex_state = 30, .external_lex_state = 11}, + [2471] = {.lex_state = 30, .external_lex_state = 11}, + [2472] = {.lex_state = 30, .external_lex_state = 11}, + [2473] = {.lex_state = 30, .external_lex_state = 11}, [2474] = {.lex_state = 30, .external_lex_state = 16}, - [2475] = {.lex_state = 30, .external_lex_state = 16}, - [2476] = {.lex_state = 30, .external_lex_state = 16}, - [2477] = {.lex_state = 30, .external_lex_state = 16}, - [2478] = {.lex_state = 30, .external_lex_state = 16}, - [2479] = {.lex_state = 30, .external_lex_state = 16}, - [2480] = {.lex_state = 30, .external_lex_state = 16}, + [2475] = {.lex_state = 30, .external_lex_state = 11}, + [2476] = {.lex_state = 31, .external_lex_state = 16}, + [2477] = {.lex_state = 30, .external_lex_state = 11}, + [2478] = {.lex_state = 30, .external_lex_state = 11}, + [2479] = {.lex_state = 30, .external_lex_state = 11}, + [2480] = {.lex_state = 30, .external_lex_state = 11}, [2481] = {.lex_state = 30, .external_lex_state = 11}, - [2482] = {.lex_state = 30, .external_lex_state = 16}, - [2483] = {.lex_state = 40, .external_lex_state = 11}, + [2482] = {.lex_state = 30, .external_lex_state = 11}, + [2483] = {.lex_state = 30, .external_lex_state = 11}, [2484] = {.lex_state = 30, .external_lex_state = 11}, [2485] = {.lex_state = 30, .external_lex_state = 11}, - [2486] = {.lex_state = 30, .external_lex_state = 16}, - [2487] = {.lex_state = 30, .external_lex_state = 16}, + [2486] = {.lex_state = 30, .external_lex_state = 11}, + [2487] = {.lex_state = 30, .external_lex_state = 11}, [2488] = {.lex_state = 30, .external_lex_state = 16}, [2489] = {.lex_state = 30, .external_lex_state = 16}, - [2490] = {.lex_state = 30, .external_lex_state = 11}, + [2490] = {.lex_state = 30, .external_lex_state = 16}, [2491] = {.lex_state = 30, .external_lex_state = 11}, - [2492] = {.lex_state = 30, .external_lex_state = 11}, - [2493] = {.lex_state = 30, .external_lex_state = 16}, - [2494] = {.lex_state = 30, .external_lex_state = 16}, + [2492] = {.lex_state = 30, .external_lex_state = 16}, + [2493] = {.lex_state = 30, .external_lex_state = 11}, + [2494] = {.lex_state = 30, .external_lex_state = 11}, [2495] = {.lex_state = 30, .external_lex_state = 11}, [2496] = {.lex_state = 30, .external_lex_state = 16}, [2497] = {.lex_state = 30, .external_lex_state = 16}, [2498] = {.lex_state = 30, .external_lex_state = 16}, [2499] = {.lex_state = 30, .external_lex_state = 16}, - [2500] = {.lex_state = 30, .external_lex_state = 16}, + [2500] = {.lex_state = 30, .external_lex_state = 11}, [2501] = {.lex_state = 30, .external_lex_state = 16}, - [2502] = {.lex_state = 30, .external_lex_state = 11}, - [2503] = {.lex_state = 30, .external_lex_state = 11}, - [2504] = {.lex_state = 30, .external_lex_state = 11}, + [2502] = {.lex_state = 30, .external_lex_state = 16}, + [2503] = {.lex_state = 30, .external_lex_state = 16}, + [2504] = {.lex_state = 30, .external_lex_state = 16}, [2505] = {.lex_state = 30, .external_lex_state = 11}, [2506] = {.lex_state = 30, .external_lex_state = 11}, - [2507] = {.lex_state = 30, .external_lex_state = 11}, - [2508] = {.lex_state = 30, .external_lex_state = 11}, - [2509] = {.lex_state = 30, .external_lex_state = 11}, - [2510] = {.lex_state = 30, .external_lex_state = 11}, + [2507] = {.lex_state = 30, .external_lex_state = 16}, + [2508] = {.lex_state = 30, .external_lex_state = 16}, + [2509] = {.lex_state = 30, .external_lex_state = 16}, + [2510] = {.lex_state = 30, .external_lex_state = 16}, [2511] = {.lex_state = 30, .external_lex_state = 16}, [2512] = {.lex_state = 30, .external_lex_state = 16}, - [2513] = {.lex_state = 30, .external_lex_state = 11}, + [2513] = {.lex_state = 30, .external_lex_state = 16}, [2514] = {.lex_state = 30, .external_lex_state = 11}, - [2515] = {.lex_state = 30, .external_lex_state = 11}, - [2516] = {.lex_state = 30, .external_lex_state = 11}, + [2515] = {.lex_state = 30, .external_lex_state = 16}, + [2516] = {.lex_state = 37, .external_lex_state = 19}, [2517] = {.lex_state = 30, .external_lex_state = 11}, - [2518] = {.lex_state = 30, .external_lex_state = 11}, - [2519] = {.lex_state = 30, .external_lex_state = 11}, - [2520] = {.lex_state = 30, .external_lex_state = 11}, + [2518] = {.lex_state = 30, .external_lex_state = 16}, + [2519] = {.lex_state = 30, .external_lex_state = 16}, + [2520] = {.lex_state = 30, .external_lex_state = 16}, [2521] = {.lex_state = 30, .external_lex_state = 11}, - [2522] = {.lex_state = 30, .external_lex_state = 16}, - [2523] = {.lex_state = 30, .external_lex_state = 11}, - [2524] = {.lex_state = 30, .external_lex_state = 16}, + [2522] = {.lex_state = 30, .external_lex_state = 11}, + [2523] = {.lex_state = 30, .external_lex_state = 16}, + [2524] = {.lex_state = 30, .external_lex_state = 11}, [2525] = {.lex_state = 30, .external_lex_state = 11}, - [2526] = {.lex_state = 30, .external_lex_state = 11}, - [2527] = {.lex_state = 30, .external_lex_state = 11}, - [2528] = {.lex_state = 30, .external_lex_state = 11}, + [2526] = {.lex_state = 40, .external_lex_state = 11}, + [2527] = {.lex_state = 30, .external_lex_state = 16}, + [2528] = {.lex_state = 30, .external_lex_state = 16}, [2529] = {.lex_state = 30, .external_lex_state = 11}, - [2530] = {.lex_state = 30, .external_lex_state = 16}, + [2530] = {.lex_state = 30, .external_lex_state = 11}, [2531] = {.lex_state = 30, .external_lex_state = 11}, [2532] = {.lex_state = 30, .external_lex_state = 11}, [2533] = {.lex_state = 30, .external_lex_state = 11}, [2534] = {.lex_state = 30, .external_lex_state = 16}, [2535] = {.lex_state = 30, .external_lex_state = 16}, - [2536] = {.lex_state = 30, .external_lex_state = 16}, + [2536] = {.lex_state = 30, .external_lex_state = 11}, [2537] = {.lex_state = 30, .external_lex_state = 11}, [2538] = {.lex_state = 30, .external_lex_state = 11}, - [2539] = {.lex_state = 30, .external_lex_state = 11}, + [2539] = {.lex_state = 30, .external_lex_state = 16}, [2540] = {.lex_state = 30, .external_lex_state = 16}, [2541] = {.lex_state = 30, .external_lex_state = 11}, - [2542] = {.lex_state = 30, .external_lex_state = 16}, + [2542] = {.lex_state = 30, .external_lex_state = 11}, [2543] = {.lex_state = 30, .external_lex_state = 16}, [2544] = {.lex_state = 30, .external_lex_state = 11}, [2545] = {.lex_state = 30, .external_lex_state = 11}, - [2546] = {.lex_state = 30, .external_lex_state = 11}, + [2546] = {.lex_state = 30, .external_lex_state = 16}, [2547] = {.lex_state = 30, .external_lex_state = 11}, [2548] = {.lex_state = 30, .external_lex_state = 11}, - [2549] = {.lex_state = 30, .external_lex_state = 11}, - [2550] = {.lex_state = 30, .external_lex_state = 11}, + [2549] = {.lex_state = 30, .external_lex_state = 16}, + [2550] = {.lex_state = 30, .external_lex_state = 16}, [2551] = {.lex_state = 30, .external_lex_state = 16}, [2552] = {.lex_state = 30, .external_lex_state = 11}, [2553] = {.lex_state = 30, .external_lex_state = 11}, @@ -22864,7 +22917,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2556] = {.lex_state = 30, .external_lex_state = 11}, [2557] = {.lex_state = 30, .external_lex_state = 16}, [2558] = {.lex_state = 30, .external_lex_state = 11}, - [2559] = {.lex_state = 30, .external_lex_state = 11}, + [2559] = {.lex_state = 30, .external_lex_state = 16}, [2560] = {.lex_state = 30, .external_lex_state = 11}, [2561] = {.lex_state = 30, .external_lex_state = 16}, [2562] = {.lex_state = 30, .external_lex_state = 11}, @@ -22873,924 +22926,924 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2565] = {.lex_state = 30, .external_lex_state = 16}, [2566] = {.lex_state = 30, .external_lex_state = 16}, [2567] = {.lex_state = 30, .external_lex_state = 16}, - [2568] = {.lex_state = 30, .external_lex_state = 16}, + [2568] = {.lex_state = 30, .external_lex_state = 11}, [2569] = {.lex_state = 30, .external_lex_state = 16}, - [2570] = {.lex_state = 30, .external_lex_state = 16}, + [2570] = {.lex_state = 30, .external_lex_state = 11}, [2571] = {.lex_state = 30, .external_lex_state = 16}, - [2572] = {.lex_state = 30, .external_lex_state = 16}, + [2572] = {.lex_state = 30, .external_lex_state = 11}, [2573] = {.lex_state = 30, .external_lex_state = 11}, [2574] = {.lex_state = 30, .external_lex_state = 11}, [2575] = {.lex_state = 30, .external_lex_state = 16}, [2576] = {.lex_state = 30, .external_lex_state = 16}, [2577] = {.lex_state = 30, .external_lex_state = 16}, - [2578] = {.lex_state = 30, .external_lex_state = 16}, + [2578] = {.lex_state = 30, .external_lex_state = 11}, [2579] = {.lex_state = 30, .external_lex_state = 11}, [2580] = {.lex_state = 30, .external_lex_state = 16}, - [2581] = {.lex_state = 30, .external_lex_state = 11}, - [2582] = {.lex_state = 30, .external_lex_state = 11}, + [2581] = {.lex_state = 30, .external_lex_state = 16}, + [2582] = {.lex_state = 30, .external_lex_state = 16}, [2583] = {.lex_state = 30, .external_lex_state = 11}, - [2584] = {.lex_state = 30, .external_lex_state = 11}, + [2584] = {.lex_state = 30, .external_lex_state = 16}, [2585] = {.lex_state = 30, .external_lex_state = 11}, [2586] = {.lex_state = 30, .external_lex_state = 11}, - [2587] = {.lex_state = 30, .external_lex_state = 11}, - [2588] = {.lex_state = 30, .external_lex_state = 11}, - [2589] = {.lex_state = 30, .external_lex_state = 11}, + [2587] = {.lex_state = 30, .external_lex_state = 16}, + [2588] = {.lex_state = 30, .external_lex_state = 16}, + [2589] = {.lex_state = 30, .external_lex_state = 16}, [2590] = {.lex_state = 30, .external_lex_state = 16}, [2591] = {.lex_state = 30, .external_lex_state = 16}, - [2592] = {.lex_state = 37, .external_lex_state = 17}, + [2592] = {.lex_state = 30, .external_lex_state = 16}, [2593] = {.lex_state = 30, .external_lex_state = 16}, - [2594] = {.lex_state = 37, .external_lex_state = 19}, - [2595] = {.lex_state = 30, .external_lex_state = 11}, - [2596] = {.lex_state = 30, .external_lex_state = 11}, - [2597] = {.lex_state = 30, .external_lex_state = 11}, - [2598] = {.lex_state = 37, .external_lex_state = 19}, + [2594] = {.lex_state = 30, .external_lex_state = 16}, + [2595] = {.lex_state = 30, .external_lex_state = 16}, + [2596] = {.lex_state = 30, .external_lex_state = 16}, + [2597] = {.lex_state = 30, .external_lex_state = 16}, + [2598] = {.lex_state = 30, .external_lex_state = 11}, [2599] = {.lex_state = 30, .external_lex_state = 11}, - [2600] = {.lex_state = 30, .external_lex_state = 11}, + [2600] = {.lex_state = 30, .external_lex_state = 16}, [2601] = {.lex_state = 30, .external_lex_state = 11}, - [2602] = {.lex_state = 44}, + [2602] = {.lex_state = 30, .external_lex_state = 11}, [2603] = {.lex_state = 30, .external_lex_state = 16}, - [2604] = {.lex_state = 30, .external_lex_state = 11}, - [2605] = {.lex_state = 37, .external_lex_state = 19}, + [2604] = {.lex_state = 30, .external_lex_state = 16}, + [2605] = {.lex_state = 30, .external_lex_state = 16}, [2606] = {.lex_state = 30, .external_lex_state = 11}, - [2607] = {.lex_state = 37, .external_lex_state = 19}, - [2608] = {.lex_state = 30, .external_lex_state = 11}, - [2609] = {.lex_state = 30, .external_lex_state = 11}, - [2610] = {.lex_state = 30, .external_lex_state = 11}, - [2611] = {.lex_state = 30, .external_lex_state = 16}, + [2607] = {.lex_state = 37, .external_lex_state = 17}, + [2608] = {.lex_state = 30, .external_lex_state = 16}, + [2609] = {.lex_state = 30, .external_lex_state = 16}, + [2610] = {.lex_state = 30, .external_lex_state = 16}, + [2611] = {.lex_state = 30, .external_lex_state = 11}, [2612] = {.lex_state = 30, .external_lex_state = 11}, - [2613] = {.lex_state = 30, .external_lex_state = 11}, + [2613] = {.lex_state = 30, .external_lex_state = 16}, [2614] = {.lex_state = 30, .external_lex_state = 16}, - [2615] = {.lex_state = 37, .external_lex_state = 19}, - [2616] = {.lex_state = 44}, + [2615] = {.lex_state = 30, .external_lex_state = 16}, + [2616] = {.lex_state = 37, .external_lex_state = 19}, [2617] = {.lex_state = 30, .external_lex_state = 16}, - [2618] = {.lex_state = 30, .external_lex_state = 16}, + [2618] = {.lex_state = 37, .external_lex_state = 19}, [2619] = {.lex_state = 37, .external_lex_state = 19}, - [2620] = {.lex_state = 30, .external_lex_state = 16}, - [2621] = {.lex_state = 30, .external_lex_state = 16}, - [2622] = {.lex_state = 37, .external_lex_state = 19}, - [2623] = {.lex_state = 30, .external_lex_state = 16}, - [2624] = {.lex_state = 30, .external_lex_state = 16}, - [2625] = {.lex_state = 30, .external_lex_state = 16}, - [2626] = {.lex_state = 30, .external_lex_state = 16}, - [2627] = {.lex_state = 37, .external_lex_state = 19}, - [2628] = {.lex_state = 30, .external_lex_state = 16}, - [2629] = {.lex_state = 37, .external_lex_state = 19}, - [2630] = {.lex_state = 37, .external_lex_state = 19}, + [2620] = {.lex_state = 30, .external_lex_state = 11}, + [2621] = {.lex_state = 30, .external_lex_state = 11}, + [2622] = {.lex_state = 30, .external_lex_state = 11}, + [2623] = {.lex_state = 30, .external_lex_state = 11}, + [2624] = {.lex_state = 30, .external_lex_state = 11}, + [2625] = {.lex_state = 30, .external_lex_state = 11}, + [2626] = {.lex_state = 30, .external_lex_state = 11}, + [2627] = {.lex_state = 30, .external_lex_state = 11}, + [2628] = {.lex_state = 30, .external_lex_state = 11}, + [2629] = {.lex_state = 30, .external_lex_state = 11}, + [2630] = {.lex_state = 30, .external_lex_state = 11}, [2631] = {.lex_state = 30, .external_lex_state = 16}, - [2632] = {.lex_state = 44}, - [2633] = {.lex_state = 30, .external_lex_state = 16}, - [2634] = {.lex_state = 30, .external_lex_state = 16}, - [2635] = {.lex_state = 30, .external_lex_state = 16}, - [2636] = {.lex_state = 30, .external_lex_state = 16}, - [2637] = {.lex_state = 30, .external_lex_state = 16}, - [2638] = {.lex_state = 38, .external_lex_state = 19}, - [2639] = {.lex_state = 37, .external_lex_state = 17}, - [2640] = {.lex_state = 37, .external_lex_state = 11}, - [2641] = {.lex_state = 37, .external_lex_state = 17}, - [2642] = {.lex_state = 37, .external_lex_state = 19}, - [2643] = {.lex_state = 37, .external_lex_state = 17}, - [2644] = {.lex_state = 37, .external_lex_state = 17}, - [2645] = {.lex_state = 44}, - [2646] = {.lex_state = 30, .external_lex_state = 16}, + [2632] = {.lex_state = 30, .external_lex_state = 11}, + [2633] = {.lex_state = 30, .external_lex_state = 11}, + [2634] = {.lex_state = 30, .external_lex_state = 11}, + [2635] = {.lex_state = 30, .external_lex_state = 11}, + [2636] = {.lex_state = 30, .external_lex_state = 11}, + [2637] = {.lex_state = 30, .external_lex_state = 11}, + [2638] = {.lex_state = 30, .external_lex_state = 16}, + [2639] = {.lex_state = 30, .external_lex_state = 16}, + [2640] = {.lex_state = 37, .external_lex_state = 19}, + [2641] = {.lex_state = 30, .external_lex_state = 11}, + [2642] = {.lex_state = 44}, + [2643] = {.lex_state = 30, .external_lex_state = 11}, + [2644] = {.lex_state = 30, .external_lex_state = 11}, + [2645] = {.lex_state = 30, .external_lex_state = 11}, + [2646] = {.lex_state = 30, .external_lex_state = 11}, [2647] = {.lex_state = 30, .external_lex_state = 16}, - [2648] = {.lex_state = 37, .external_lex_state = 19}, + [2648] = {.lex_state = 37, .external_lex_state = 18}, [2649] = {.lex_state = 30, .external_lex_state = 16}, - [2650] = {.lex_state = 37, .external_lex_state = 19}, - [2651] = {.lex_state = 37, .external_lex_state = 18}, - [2652] = {.lex_state = 37, .external_lex_state = 17}, + [2650] = {.lex_state = 30, .external_lex_state = 16}, + [2651] = {.lex_state = 30, .external_lex_state = 11}, + [2652] = {.lex_state = 44}, [2653] = {.lex_state = 30, .external_lex_state = 11}, [2654] = {.lex_state = 30, .external_lex_state = 11}, - [2655] = {.lex_state = 37, .external_lex_state = 19}, - [2656] = {.lex_state = 37, .external_lex_state = 11}, - [2657] = {.lex_state = 37, .external_lex_state = 17}, - [2658] = {.lex_state = 44}, - [2659] = {.lex_state = 30, .external_lex_state = 16}, - [2660] = {.lex_state = 37, .external_lex_state = 20}, - [2661] = {.lex_state = 37, .external_lex_state = 17}, - [2662] = {.lex_state = 37, .external_lex_state = 17}, - [2663] = {.lex_state = 37, .external_lex_state = 17}, - [2664] = {.lex_state = 37, .external_lex_state = 19}, - [2665] = {.lex_state = 44}, - [2666] = {.lex_state = 30, .external_lex_state = 16}, + [2655] = {.lex_state = 30, .external_lex_state = 11}, + [2656] = {.lex_state = 30, .external_lex_state = 11}, + [2657] = {.lex_state = 30, .external_lex_state = 11}, + [2658] = {.lex_state = 30, .external_lex_state = 11}, + [2659] = {.lex_state = 30, .external_lex_state = 11}, + [2660] = {.lex_state = 30, .external_lex_state = 11}, + [2661] = {.lex_state = 30, .external_lex_state = 11}, + [2662] = {.lex_state = 30, .external_lex_state = 11}, + [2663] = {.lex_state = 30, .external_lex_state = 16}, + [2664] = {.lex_state = 30, .external_lex_state = 11}, + [2665] = {.lex_state = 30, .external_lex_state = 11}, + [2666] = {.lex_state = 37, .external_lex_state = 19}, [2667] = {.lex_state = 37, .external_lex_state = 17}, [2668] = {.lex_state = 37, .external_lex_state = 17}, - [2669] = {.lex_state = 44}, - [2670] = {.lex_state = 30, .external_lex_state = 16}, - [2671] = {.lex_state = 37, .external_lex_state = 17}, - [2672] = {.lex_state = 44}, - [2673] = {.lex_state = 30, .external_lex_state = 16}, - [2674] = {.lex_state = 30, .external_lex_state = 16}, - [2675] = {.lex_state = 44}, - [2676] = {.lex_state = 30, .external_lex_state = 16}, - [2677] = {.lex_state = 37, .external_lex_state = 17}, - [2678] = {.lex_state = 44}, + [2669] = {.lex_state = 37, .external_lex_state = 19}, + [2670] = {.lex_state = 37, .external_lex_state = 17}, + [2671] = {.lex_state = 30, .external_lex_state = 16}, + [2672] = {.lex_state = 37, .external_lex_state = 17}, + [2673] = {.lex_state = 37, .external_lex_state = 20}, + [2674] = {.lex_state = 37, .external_lex_state = 19}, + [2675] = {.lex_state = 37, .external_lex_state = 11}, + [2676] = {.lex_state = 30, .external_lex_state = 11}, + [2677] = {.lex_state = 37, .external_lex_state = 11}, + [2678] = {.lex_state = 30, .external_lex_state = 11}, [2679] = {.lex_state = 30, .external_lex_state = 16}, - [2680] = {.lex_state = 37, .external_lex_state = 17}, - [2681] = {.lex_state = 44}, - [2682] = {.lex_state = 37, .external_lex_state = 19}, + [2680] = {.lex_state = 37, .external_lex_state = 19}, + [2681] = {.lex_state = 38, .external_lex_state = 19}, + [2682] = {.lex_state = 37, .external_lex_state = 17}, [2683] = {.lex_state = 37, .external_lex_state = 19}, - [2684] = {.lex_state = 44}, - [2685] = {.lex_state = 37, .external_lex_state = 19}, - [2686] = {.lex_state = 37, .external_lex_state = 19}, - [2687] = {.lex_state = 44}, + [2684] = {.lex_state = 37, .external_lex_state = 17}, + [2685] = {.lex_state = 37, .external_lex_state = 17}, + [2686] = {.lex_state = 44}, + [2687] = {.lex_state = 30, .external_lex_state = 16}, [2688] = {.lex_state = 30, .external_lex_state = 16}, - [2689] = {.lex_state = 44}, - [2690] = {.lex_state = 37, .external_lex_state = 19}, - [2691] = {.lex_state = 37, .external_lex_state = 19}, - [2692] = {.lex_state = 44}, - [2693] = {.lex_state = 37, .external_lex_state = 17}, - [2694] = {.lex_state = 38, .external_lex_state = 17}, - [2695] = {.lex_state = 30, .external_lex_state = 11}, + [2689] = {.lex_state = 30, .external_lex_state = 16}, + [2690] = {.lex_state = 30, .external_lex_state = 16}, + [2691] = {.lex_state = 30, .external_lex_state = 16}, + [2692] = {.lex_state = 30, .external_lex_state = 16}, + [2693] = {.lex_state = 30, .external_lex_state = 16}, + [2694] = {.lex_state = 30, .external_lex_state = 16}, + [2695] = {.lex_state = 30, .external_lex_state = 16}, [2696] = {.lex_state = 30, .external_lex_state = 16}, - [2697] = {.lex_state = 44}, - [2698] = {.lex_state = 37, .external_lex_state = 19}, - [2699] = {.lex_state = 31, .external_lex_state = 11}, + [2697] = {.lex_state = 30, .external_lex_state = 16}, + [2698] = {.lex_state = 30, .external_lex_state = 16}, + [2699] = {.lex_state = 30, .external_lex_state = 16}, [2700] = {.lex_state = 30, .external_lex_state = 16}, - [2701] = {.lex_state = 30, .external_lex_state = 16}, + [2701] = {.lex_state = 37, .external_lex_state = 19}, [2702] = {.lex_state = 37, .external_lex_state = 19}, - [2703] = {.lex_state = 30, .external_lex_state = 11}, - [2704] = {.lex_state = 37, .external_lex_state = 17}, - [2705] = {.lex_state = 44}, - [2706] = {.lex_state = 30, .external_lex_state = 11}, - [2707] = {.lex_state = 37, .external_lex_state = 19}, - [2708] = {.lex_state = 30, .external_lex_state = 11}, - [2709] = {.lex_state = 30, .external_lex_state = 11}, - [2710] = {.lex_state = 37, .external_lex_state = 19}, - [2711] = {.lex_state = 30, .external_lex_state = 11}, + [2703] = {.lex_state = 37, .external_lex_state = 19}, + [2704] = {.lex_state = 30, .external_lex_state = 16}, + [2705] = {.lex_state = 37, .external_lex_state = 19}, + [2706] = {.lex_state = 37, .external_lex_state = 17}, + [2707] = {.lex_state = 30, .external_lex_state = 16}, + [2708] = {.lex_state = 37, .external_lex_state = 17}, + [2709] = {.lex_state = 30, .external_lex_state = 16}, + [2710] = {.lex_state = 37, .external_lex_state = 17}, + [2711] = {.lex_state = 37, .external_lex_state = 17}, [2712] = {.lex_state = 37, .external_lex_state = 19}, - [2713] = {.lex_state = 30, .external_lex_state = 11}, - [2714] = {.lex_state = 37, .external_lex_state = 11}, - [2715] = {.lex_state = 30, .external_lex_state = 16}, - [2716] = {.lex_state = 30, .external_lex_state = 11}, - [2717] = {.lex_state = 44}, + [2713] = {.lex_state = 37, .external_lex_state = 17}, + [2714] = {.lex_state = 37, .external_lex_state = 19}, + [2715] = {.lex_state = 37, .external_lex_state = 19}, + [2716] = {.lex_state = 37, .external_lex_state = 19}, + [2717] = {.lex_state = 30, .external_lex_state = 16}, [2718] = {.lex_state = 30, .external_lex_state = 16}, - [2719] = {.lex_state = 30, .external_lex_state = 11}, - [2720] = {.lex_state = 30, .external_lex_state = 16}, - [2721] = {.lex_state = 30, .external_lex_state = 11}, - [2722] = {.lex_state = 37, .external_lex_state = 19}, - [2723] = {.lex_state = 30, .external_lex_state = 11}, - [2724] = {.lex_state = 30, .external_lex_state = 11}, - [2725] = {.lex_state = 37, .external_lex_state = 19}, - [2726] = {.lex_state = 30, .external_lex_state = 11}, - [2727] = {.lex_state = 30, .external_lex_state = 11}, - [2728] = {.lex_state = 30, .external_lex_state = 11}, - [2729] = {.lex_state = 30, .external_lex_state = 16}, - [2730] = {.lex_state = 30, .external_lex_state = 11}, - [2731] = {.lex_state = 30, .external_lex_state = 11}, - [2732] = {.lex_state = 30, .external_lex_state = 11}, - [2733] = {.lex_state = 30, .external_lex_state = 11}, - [2734] = {.lex_state = 30, .external_lex_state = 11}, - [2735] = {.lex_state = 30, .external_lex_state = 11}, - [2736] = {.lex_state = 37, .external_lex_state = 17}, + [2719] = {.lex_state = 37, .external_lex_state = 17}, + [2720] = {.lex_state = 37, .external_lex_state = 17}, + [2721] = {.lex_state = 37, .external_lex_state = 17}, + [2722] = {.lex_state = 30, .external_lex_state = 16}, + [2723] = {.lex_state = 44}, + [2724] = {.lex_state = 30, .external_lex_state = 16}, + [2725] = {.lex_state = 30, .external_lex_state = 16}, + [2726] = {.lex_state = 37, .external_lex_state = 11}, + [2727] = {.lex_state = 37, .external_lex_state = 17}, + [2728] = {.lex_state = 37, .external_lex_state = 19}, + [2729] = {.lex_state = 37, .external_lex_state = 17}, + [2730] = {.lex_state = 37, .external_lex_state = 19}, + [2731] = {.lex_state = 37, .external_lex_state = 17}, + [2732] = {.lex_state = 37, .external_lex_state = 19}, + [2733] = {.lex_state = 37, .external_lex_state = 19}, + [2734] = {.lex_state = 44}, + [2735] = {.lex_state = 30, .external_lex_state = 16}, + [2736] = {.lex_state = 30, .external_lex_state = 16}, [2737] = {.lex_state = 30, .external_lex_state = 16}, - [2738] = {.lex_state = 30, .external_lex_state = 11}, - [2739] = {.lex_state = 30, .external_lex_state = 16}, + [2738] = {.lex_state = 37, .external_lex_state = 19}, + [2739] = {.lex_state = 37, .external_lex_state = 19}, [2740] = {.lex_state = 30, .external_lex_state = 11}, - [2741] = {.lex_state = 37, .external_lex_state = 17}, - [2742] = {.lex_state = 30, .external_lex_state = 16}, - [2743] = {.lex_state = 37, .external_lex_state = 19}, - [2744] = {.lex_state = 37, .external_lex_state = 17}, - [2745] = {.lex_state = 37, .external_lex_state = 19}, - [2746] = {.lex_state = 30, .external_lex_state = 16}, - [2747] = {.lex_state = 37, .external_lex_state = 17}, - [2748] = {.lex_state = 37, .external_lex_state = 20}, - [2749] = {.lex_state = 30, .external_lex_state = 16}, + [2741] = {.lex_state = 37, .external_lex_state = 19}, + [2742] = {.lex_state = 37, .external_lex_state = 19}, + [2743] = {.lex_state = 44}, + [2744] = {.lex_state = 30, .external_lex_state = 16}, + [2745] = {.lex_state = 30, .external_lex_state = 16}, + [2746] = {.lex_state = 44}, + [2747] = {.lex_state = 30, .external_lex_state = 16}, + [2748] = {.lex_state = 30, .external_lex_state = 16}, + [2749] = {.lex_state = 44}, [2750] = {.lex_state = 30, .external_lex_state = 16}, [2751] = {.lex_state = 44}, [2752] = {.lex_state = 30, .external_lex_state = 16}, - [2753] = {.lex_state = 30, .external_lex_state = 16}, - [2754] = {.lex_state = 30, .external_lex_state = 16}, - [2755] = {.lex_state = 37, .external_lex_state = 19}, - [2756] = {.lex_state = 37, .external_lex_state = 17}, - [2757] = {.lex_state = 37, .external_lex_state = 19}, - [2758] = {.lex_state = 37, .external_lex_state = 19}, - [2759] = {.lex_state = 37, .external_lex_state = 17}, - [2760] = {.lex_state = 30, .external_lex_state = 16}, - [2761] = {.lex_state = 37, .external_lex_state = 19}, - [2762] = {.lex_state = 30, .external_lex_state = 11}, - [2763] = {.lex_state = 37, .external_lex_state = 17}, - [2764] = {.lex_state = 37, .external_lex_state = 17}, - [2765] = {.lex_state = 37, .external_lex_state = 17}, - [2766] = {.lex_state = 30, .external_lex_state = 11}, + [2753] = {.lex_state = 37, .external_lex_state = 19}, + [2754] = {.lex_state = 44}, + [2755] = {.lex_state = 30, .external_lex_state = 16}, + [2756] = {.lex_state = 37, .external_lex_state = 19}, + [2757] = {.lex_state = 30, .external_lex_state = 16}, + [2758] = {.lex_state = 44}, + [2759] = {.lex_state = 30, .external_lex_state = 16}, + [2760] = {.lex_state = 37, .external_lex_state = 19}, + [2761] = {.lex_state = 44}, + [2762] = {.lex_state = 30, .external_lex_state = 16}, + [2763] = {.lex_state = 44}, + [2764] = {.lex_state = 30, .external_lex_state = 16}, + [2765] = {.lex_state = 44}, + [2766] = {.lex_state = 44}, [2767] = {.lex_state = 44}, - [2768] = {.lex_state = 30, .external_lex_state = 11}, + [2768] = {.lex_state = 44}, [2769] = {.lex_state = 30, .external_lex_state = 16}, - [2770] = {.lex_state = 30, .external_lex_state = 11}, - [2771] = {.lex_state = 37, .external_lex_state = 17}, - [2772] = {.lex_state = 30, .external_lex_state = 11}, + [2770] = {.lex_state = 44}, + [2771] = {.lex_state = 37, .external_lex_state = 19}, + [2772] = {.lex_state = 37, .external_lex_state = 20}, [2773] = {.lex_state = 30, .external_lex_state = 11}, - [2774] = {.lex_state = 37, .external_lex_state = 19}, - [2775] = {.lex_state = 44}, + [2774] = {.lex_state = 30, .external_lex_state = 16}, + [2775] = {.lex_state = 37, .external_lex_state = 17}, [2776] = {.lex_state = 30, .external_lex_state = 11}, - [2777] = {.lex_state = 37, .external_lex_state = 19}, - [2778] = {.lex_state = 30, .external_lex_state = 11}, - [2779] = {.lex_state = 30, .external_lex_state = 16}, - [2780] = {.lex_state = 30, .external_lex_state = 11}, - [2781] = {.lex_state = 30, .external_lex_state = 16}, - [2782] = {.lex_state = 30, .external_lex_state = 16}, + [2777] = {.lex_state = 30, .external_lex_state = 16}, + [2778] = {.lex_state = 37, .external_lex_state = 17}, + [2779] = {.lex_state = 37, .external_lex_state = 19}, + [2780] = {.lex_state = 37, .external_lex_state = 19}, + [2781] = {.lex_state = 37, .external_lex_state = 19}, + [2782] = {.lex_state = 30, .external_lex_state = 11}, [2783] = {.lex_state = 30, .external_lex_state = 11}, - [2784] = {.lex_state = 37, .external_lex_state = 19}, - [2785] = {.lex_state = 30, .external_lex_state = 16}, - [2786] = {.lex_state = 37, .external_lex_state = 18}, - [2787] = {.lex_state = 30, .external_lex_state = 16}, + [2784] = {.lex_state = 30, .external_lex_state = 11}, + [2785] = {.lex_state = 44}, + [2786] = {.lex_state = 37, .external_lex_state = 19}, + [2787] = {.lex_state = 31, .external_lex_state = 11}, [2788] = {.lex_state = 37, .external_lex_state = 19}, - [2789] = {.lex_state = 37, .external_lex_state = 17}, - [2790] = {.lex_state = 37, .external_lex_state = 17}, - [2791] = {.lex_state = 30, .external_lex_state = 11}, + [2789] = {.lex_state = 37, .external_lex_state = 19}, + [2790] = {.lex_state = 30, .external_lex_state = 11}, + [2791] = {.lex_state = 30, .external_lex_state = 16}, [2792] = {.lex_state = 30, .external_lex_state = 11}, [2793] = {.lex_state = 37, .external_lex_state = 17}, [2794] = {.lex_state = 37, .external_lex_state = 17}, - [2795] = {.lex_state = 44}, - [2796] = {.lex_state = 37, .external_lex_state = 16}, - [2797] = {.lex_state = 38, .external_lex_state = 18}, - [2798] = {.lex_state = 37, .external_lex_state = 17}, - [2799] = {.lex_state = 30, .external_lex_state = 16}, - [2800] = {.lex_state = 37, .external_lex_state = 17}, - [2801] = {.lex_state = 37, .external_lex_state = 17}, - [2802] = {.lex_state = 37, .external_lex_state = 17}, - [2803] = {.lex_state = 30, .external_lex_state = 11}, - [2804] = {.lex_state = 30, .external_lex_state = 11}, - [2805] = {.lex_state = 30, .external_lex_state = 11}, - [2806] = {.lex_state = 30, .external_lex_state = 16}, - [2807] = {.lex_state = 37, .external_lex_state = 17}, + [2795] = {.lex_state = 37, .external_lex_state = 19}, + [2796] = {.lex_state = 37, .external_lex_state = 17}, + [2797] = {.lex_state = 37, .external_lex_state = 17}, + [2798] = {.lex_state = 37, .external_lex_state = 19}, + [2799] = {.lex_state = 37, .external_lex_state = 17}, + [2800] = {.lex_state = 30, .external_lex_state = 11}, + [2801] = {.lex_state = 37, .external_lex_state = 19}, + [2802] = {.lex_state = 44}, + [2803] = {.lex_state = 30, .external_lex_state = 16}, + [2804] = {.lex_state = 30, .external_lex_state = 16}, + [2805] = {.lex_state = 38, .external_lex_state = 17}, + [2806] = {.lex_state = 30, .external_lex_state = 11}, + [2807] = {.lex_state = 37, .external_lex_state = 19}, [2808] = {.lex_state = 37, .external_lex_state = 17}, - [2809] = {.lex_state = 44}, + [2809] = {.lex_state = 37, .external_lex_state = 17}, [2810] = {.lex_state = 37, .external_lex_state = 17}, [2811] = {.lex_state = 30, .external_lex_state = 11}, - [2812] = {.lex_state = 30, .external_lex_state = 11}, - [2813] = {.lex_state = 30, .external_lex_state = 11}, - [2814] = {.lex_state = 30, .external_lex_state = 11}, - [2815] = {.lex_state = 30, .external_lex_state = 11}, - [2816] = {.lex_state = 30, .external_lex_state = 16}, - [2817] = {.lex_state = 30, .external_lex_state = 11}, - [2818] = {.lex_state = 30, .external_lex_state = 11}, - [2819] = {.lex_state = 30, .external_lex_state = 11}, - [2820] = {.lex_state = 30, .external_lex_state = 11}, + [2812] = {.lex_state = 37, .external_lex_state = 19}, + [2813] = {.lex_state = 37, .external_lex_state = 19}, + [2814] = {.lex_state = 37, .external_lex_state = 17}, + [2815] = {.lex_state = 37, .external_lex_state = 17}, + [2816] = {.lex_state = 37, .external_lex_state = 17}, + [2817] = {.lex_state = 37, .external_lex_state = 17}, + [2818] = {.lex_state = 37, .external_lex_state = 19}, + [2819] = {.lex_state = 37, .external_lex_state = 17}, + [2820] = {.lex_state = 37, .external_lex_state = 17}, [2821] = {.lex_state = 30, .external_lex_state = 11}, - [2822] = {.lex_state = 30, .external_lex_state = 11}, + [2822] = {.lex_state = 37, .external_lex_state = 17}, [2823] = {.lex_state = 30, .external_lex_state = 11}, [2824] = {.lex_state = 30, .external_lex_state = 11}, - [2825] = {.lex_state = 30, .external_lex_state = 11}, + [2825] = {.lex_state = 37, .external_lex_state = 17}, [2826] = {.lex_state = 30, .external_lex_state = 11}, [2827] = {.lex_state = 30, .external_lex_state = 11}, - [2828] = {.lex_state = 30, .external_lex_state = 11}, - [2829] = {.lex_state = 30, .external_lex_state = 16}, - [2830] = {.lex_state = 30, .external_lex_state = 16}, - [2831] = {.lex_state = 30, .external_lex_state = 11}, - [2832] = {.lex_state = 30, .external_lex_state = 16}, + [2828] = {.lex_state = 37, .external_lex_state = 19}, + [2829] = {.lex_state = 37, .external_lex_state = 19}, + [2830] = {.lex_state = 37, .external_lex_state = 17}, + [2831] = {.lex_state = 37, .external_lex_state = 19}, + [2832] = {.lex_state = 37, .external_lex_state = 16}, [2833] = {.lex_state = 30, .external_lex_state = 16}, [2834] = {.lex_state = 37, .external_lex_state = 17}, [2835] = {.lex_state = 30, .external_lex_state = 16}, [2836] = {.lex_state = 30, .external_lex_state = 16}, - [2837] = {.lex_state = 30, .external_lex_state = 16}, - [2838] = {.lex_state = 30, .external_lex_state = 16}, - [2839] = {.lex_state = 30, .external_lex_state = 16}, - [2840] = {.lex_state = 30, .external_lex_state = 16}, + [2837] = {.lex_state = 38, .external_lex_state = 18}, + [2838] = {.lex_state = 30, .external_lex_state = 11}, + [2839] = {.lex_state = 37, .external_lex_state = 18}, + [2840] = {.lex_state = 37, .external_lex_state = 18}, [2841] = {.lex_state = 37, .external_lex_state = 17}, - [2842] = {.lex_state = 30, .external_lex_state = 16}, + [2842] = {.lex_state = 37, .external_lex_state = 18}, [2843] = {.lex_state = 30, .external_lex_state = 16}, [2844] = {.lex_state = 37, .external_lex_state = 17}, - [2845] = {.lex_state = 30, .external_lex_state = 16}, - [2846] = {.lex_state = 30, .external_lex_state = 16}, - [2847] = {.lex_state = 30, .external_lex_state = 16}, - [2848] = {.lex_state = 30, .external_lex_state = 16}, - [2849] = {.lex_state = 30, .external_lex_state = 16}, - [2850] = {.lex_state = 37, .external_lex_state = 19}, + [2845] = {.lex_state = 37, .external_lex_state = 19}, + [2846] = {.lex_state = 37, .external_lex_state = 17}, + [2847] = {.lex_state = 37, .external_lex_state = 19}, + [2848] = {.lex_state = 37, .external_lex_state = 19}, + [2849] = {.lex_state = 44}, + [2850] = {.lex_state = 37, .external_lex_state = 18}, [2851] = {.lex_state = 37, .external_lex_state = 17}, - [2852] = {.lex_state = 37, .external_lex_state = 19}, - [2853] = {.lex_state = 30, .external_lex_state = 16}, - [2854] = {.lex_state = 37, .external_lex_state = 18}, + [2852] = {.lex_state = 30, .external_lex_state = 16}, + [2853] = {.lex_state = 30, .external_lex_state = 11}, + [2854] = {.lex_state = 44}, [2855] = {.lex_state = 37, .external_lex_state = 17}, [2856] = {.lex_state = 30, .external_lex_state = 16}, - [2857] = {.lex_state = 37, .external_lex_state = 17}, - [2858] = {.lex_state = 37, .external_lex_state = 17}, - [2859] = {.lex_state = 37, .external_lex_state = 18}, - [2860] = {.lex_state = 37, .external_lex_state = 17}, - [2861] = {.lex_state = 37, .external_lex_state = 17}, + [2857] = {.lex_state = 37, .external_lex_state = 19}, + [2858] = {.lex_state = 30, .external_lex_state = 16}, + [2859] = {.lex_state = 37, .external_lex_state = 19}, + [2860] = {.lex_state = 37, .external_lex_state = 18}, + [2861] = {.lex_state = 37, .external_lex_state = 18}, [2862] = {.lex_state = 37, .external_lex_state = 17}, - [2863] = {.lex_state = 37, .external_lex_state = 17}, - [2864] = {.lex_state = 37, .external_lex_state = 17}, - [2865] = {.lex_state = 37, .external_lex_state = 17}, - [2866] = {.lex_state = 30, .external_lex_state = 11}, - [2867] = {.lex_state = 30, .external_lex_state = 11}, - [2868] = {.lex_state = 37, .external_lex_state = 17}, + [2863] = {.lex_state = 37, .external_lex_state = 18}, + [2864] = {.lex_state = 37, .external_lex_state = 18}, + [2865] = {.lex_state = 44}, + [2866] = {.lex_state = 30, .external_lex_state = 16}, + [2867] = {.lex_state = 37, .external_lex_state = 18}, + [2868] = {.lex_state = 30, .external_lex_state = 16}, [2869] = {.lex_state = 30, .external_lex_state = 16}, - [2870] = {.lex_state = 37, .external_lex_state = 17}, - [2871] = {.lex_state = 37, .external_lex_state = 17}, - [2872] = {.lex_state = 37, .external_lex_state = 17}, - [2873] = {.lex_state = 37, .external_lex_state = 17}, - [2874] = {.lex_state = 37, .external_lex_state = 17}, - [2875] = {.lex_state = 44}, - [2876] = {.lex_state = 37, .external_lex_state = 18}, - [2877] = {.lex_state = 37, .external_lex_state = 17}, - [2878] = {.lex_state = 37, .external_lex_state = 17}, - [2879] = {.lex_state = 37, .external_lex_state = 16}, - [2880] = {.lex_state = 37, .external_lex_state = 17}, - [2881] = {.lex_state = 37, .external_lex_state = 17}, - [2882] = {.lex_state = 30, .external_lex_state = 16}, + [2870] = {.lex_state = 30, .external_lex_state = 11}, + [2871] = {.lex_state = 30, .external_lex_state = 16}, + [2872] = {.lex_state = 44}, + [2873] = {.lex_state = 30, .external_lex_state = 16}, + [2874] = {.lex_state = 30, .external_lex_state = 16}, + [2875] = {.lex_state = 30, .external_lex_state = 11}, + [2876] = {.lex_state = 30, .external_lex_state = 11}, + [2877] = {.lex_state = 30, .external_lex_state = 16}, + [2878] = {.lex_state = 30, .external_lex_state = 11}, + [2879] = {.lex_state = 44}, + [2880] = {.lex_state = 37, .external_lex_state = 19}, + [2881] = {.lex_state = 44}, + [2882] = {.lex_state = 37, .external_lex_state = 19}, [2883] = {.lex_state = 37, .external_lex_state = 18}, - [2884] = {.lex_state = 37, .external_lex_state = 17}, - [2885] = {.lex_state = 37, .external_lex_state = 17}, - [2886] = {.lex_state = 37, .external_lex_state = 17}, + [2884] = {.lex_state = 37, .external_lex_state = 18}, + [2885] = {.lex_state = 37, .external_lex_state = 19}, + [2886] = {.lex_state = 44}, [2887] = {.lex_state = 37, .external_lex_state = 17}, - [2888] = {.lex_state = 37, .external_lex_state = 17}, + [2888] = {.lex_state = 37, .external_lex_state = 18}, [2889] = {.lex_state = 37, .external_lex_state = 17}, - [2890] = {.lex_state = 30, .external_lex_state = 16}, - [2891] = {.lex_state = 30, .external_lex_state = 16}, - [2892] = {.lex_state = 30, .external_lex_state = 16}, - [2893] = {.lex_state = 30, .external_lex_state = 16}, - [2894] = {.lex_state = 37, .external_lex_state = 18}, - [2895] = {.lex_state = 30, .external_lex_state = 11}, - [2896] = {.lex_state = 44}, - [2897] = {.lex_state = 30, .external_lex_state = 16}, - [2898] = {.lex_state = 37, .external_lex_state = 17}, - [2899] = {.lex_state = 37, .external_lex_state = 17}, - [2900] = {.lex_state = 37, .external_lex_state = 18}, - [2901] = {.lex_state = 30, .external_lex_state = 16}, - [2902] = {.lex_state = 30, .external_lex_state = 16}, - [2903] = {.lex_state = 37, .external_lex_state = 17}, - [2904] = {.lex_state = 37, .external_lex_state = 19}, - [2905] = {.lex_state = 37, .external_lex_state = 19}, - [2906] = {.lex_state = 37, .external_lex_state = 19}, - [2907] = {.lex_state = 37, .external_lex_state = 19}, - [2908] = {.lex_state = 37, .external_lex_state = 18}, - [2909] = {.lex_state = 37, .external_lex_state = 19}, - [2910] = {.lex_state = 37, .external_lex_state = 19}, - [2911] = {.lex_state = 37, .external_lex_state = 18}, - [2912] = {.lex_state = 37, .external_lex_state = 19}, - [2913] = {.lex_state = 37, .external_lex_state = 19}, - [2914] = {.lex_state = 37, .external_lex_state = 18}, - [2915] = {.lex_state = 37, .external_lex_state = 18}, - [2916] = {.lex_state = 37, .external_lex_state = 19}, + [2890] = {.lex_state = 37, .external_lex_state = 19}, + [2891] = {.lex_state = 44}, + [2892] = {.lex_state = 37, .external_lex_state = 18}, + [2893] = {.lex_state = 37, .external_lex_state = 16}, + [2894] = {.lex_state = 44}, + [2895] = {.lex_state = 37, .external_lex_state = 19}, + [2896] = {.lex_state = 37, .external_lex_state = 19}, + [2897] = {.lex_state = 44}, + [2898] = {.lex_state = 44}, + [2899] = {.lex_state = 37, .external_lex_state = 19}, + [2900] = {.lex_state = 37, .external_lex_state = 19}, + [2901] = {.lex_state = 37, .external_lex_state = 18}, + [2902] = {.lex_state = 44}, + [2903] = {.lex_state = 37, .external_lex_state = 19}, + [2904] = {.lex_state = 30, .external_lex_state = 11}, + [2905] = {.lex_state = 44}, + [2906] = {.lex_state = 37, .external_lex_state = 16}, + [2907] = {.lex_state = 37, .external_lex_state = 17}, + [2908] = {.lex_state = 44}, + [2909] = {.lex_state = 37, .external_lex_state = 18}, + [2910] = {.lex_state = 30, .external_lex_state = 11}, + [2911] = {.lex_state = 37, .external_lex_state = 19}, + [2912] = {.lex_state = 30, .external_lex_state = 11}, + [2913] = {.lex_state = 37, .external_lex_state = 18}, + [2914] = {.lex_state = 30, .external_lex_state = 16}, + [2915] = {.lex_state = 30, .external_lex_state = 11}, + [2916] = {.lex_state = 37, .external_lex_state = 18}, [2917] = {.lex_state = 37, .external_lex_state = 19}, - [2918] = {.lex_state = 44}, + [2918] = {.lex_state = 30, .external_lex_state = 11}, [2919] = {.lex_state = 30, .external_lex_state = 16}, - [2920] = {.lex_state = 37, .external_lex_state = 18}, + [2920] = {.lex_state = 37, .external_lex_state = 19}, [2921] = {.lex_state = 30, .external_lex_state = 16}, - [2922] = {.lex_state = 30, .external_lex_state = 16}, - [2923] = {.lex_state = 37, .external_lex_state = 19}, - [2924] = {.lex_state = 37, .external_lex_state = 17}, - [2925] = {.lex_state = 37, .external_lex_state = 17}, - [2926] = {.lex_state = 37, .external_lex_state = 17}, - [2927] = {.lex_state = 37, .external_lex_state = 19}, - [2928] = {.lex_state = 37, .external_lex_state = 18}, - [2929] = {.lex_state = 37, .external_lex_state = 19}, - [2930] = {.lex_state = 37, .external_lex_state = 19}, - [2931] = {.lex_state = 37, .external_lex_state = 17}, - [2932] = {.lex_state = 30, .external_lex_state = 11}, - [2933] = {.lex_state = 37, .external_lex_state = 19}, - [2934] = {.lex_state = 37, .external_lex_state = 19}, - [2935] = {.lex_state = 37, .external_lex_state = 18}, + [2922] = {.lex_state = 37, .external_lex_state = 16}, + [2923] = {.lex_state = 37, .external_lex_state = 16}, + [2924] = {.lex_state = 30, .external_lex_state = 16}, + [2925] = {.lex_state = 30, .external_lex_state = 16}, + [2926] = {.lex_state = 37, .external_lex_state = 19}, + [2927] = {.lex_state = 30, .external_lex_state = 16}, + [2928] = {.lex_state = 30, .external_lex_state = 16}, + [2929] = {.lex_state = 30, .external_lex_state = 16}, + [2930] = {.lex_state = 30, .external_lex_state = 16}, + [2931] = {.lex_state = 30, .external_lex_state = 16}, + [2932] = {.lex_state = 30, .external_lex_state = 16}, + [2933] = {.lex_state = 30, .external_lex_state = 16}, + [2934] = {.lex_state = 37, .external_lex_state = 17}, + [2935] = {.lex_state = 30, .external_lex_state = 16}, [2936] = {.lex_state = 30, .external_lex_state = 16}, - [2937] = {.lex_state = 30, .external_lex_state = 16}, + [2937] = {.lex_state = 37, .external_lex_state = 19}, [2938] = {.lex_state = 30, .external_lex_state = 16}, - [2939] = {.lex_state = 37, .external_lex_state = 19}, - [2940] = {.lex_state = 37, .external_lex_state = 19}, - [2941] = {.lex_state = 37, .external_lex_state = 19}, - [2942] = {.lex_state = 30, .external_lex_state = 11}, - [2943] = {.lex_state = 37, .external_lex_state = 19}, - [2944] = {.lex_state = 44}, - [2945] = {.lex_state = 37, .external_lex_state = 19}, - [2946] = {.lex_state = 37, .external_lex_state = 18}, - [2947] = {.lex_state = 37, .external_lex_state = 19}, - [2948] = {.lex_state = 37, .external_lex_state = 19}, - [2949] = {.lex_state = 37, .external_lex_state = 19}, - [2950] = {.lex_state = 37, .external_lex_state = 17}, - [2951] = {.lex_state = 37, .external_lex_state = 17}, - [2952] = {.lex_state = 37, .external_lex_state = 17}, + [2939] = {.lex_state = 30, .external_lex_state = 16}, + [2940] = {.lex_state = 30, .external_lex_state = 16}, + [2941] = {.lex_state = 30, .external_lex_state = 16}, + [2942] = {.lex_state = 30, .external_lex_state = 16}, + [2943] = {.lex_state = 30, .external_lex_state = 16}, + [2944] = {.lex_state = 30, .external_lex_state = 16}, + [2945] = {.lex_state = 37, .external_lex_state = 18}, + [2946] = {.lex_state = 37, .external_lex_state = 19}, + [2947] = {.lex_state = 30, .external_lex_state = 16}, + [2948] = {.lex_state = 37, .external_lex_state = 17}, + [2949] = {.lex_state = 37, .external_lex_state = 17}, + [2950] = {.lex_state = 30, .external_lex_state = 16}, + [2951] = {.lex_state = 30, .external_lex_state = 11}, + [2952] = {.lex_state = 37, .external_lex_state = 19}, [2953] = {.lex_state = 37, .external_lex_state = 19}, - [2954] = {.lex_state = 44}, - [2955] = {.lex_state = 37, .external_lex_state = 18}, - [2956] = {.lex_state = 37, .external_lex_state = 17}, - [2957] = {.lex_state = 30, .external_lex_state = 16}, - [2958] = {.lex_state = 37, .external_lex_state = 16}, + [2954] = {.lex_state = 37, .external_lex_state = 19}, + [2955] = {.lex_state = 37, .external_lex_state = 17}, + [2956] = {.lex_state = 37, .external_lex_state = 19}, + [2957] = {.lex_state = 37, .external_lex_state = 19}, + [2958] = {.lex_state = 37, .external_lex_state = 19}, [2959] = {.lex_state = 37, .external_lex_state = 19}, [2960] = {.lex_state = 37, .external_lex_state = 19}, [2961] = {.lex_state = 37, .external_lex_state = 19}, [2962] = {.lex_state = 37, .external_lex_state = 19}, - [2963] = {.lex_state = 44}, - [2964] = {.lex_state = 37, .external_lex_state = 16}, - [2965] = {.lex_state = 37, .external_lex_state = 17}, - [2966] = {.lex_state = 44}, + [2963] = {.lex_state = 37, .external_lex_state = 19}, + [2964] = {.lex_state = 37, .external_lex_state = 19}, + [2965] = {.lex_state = 37, .external_lex_state = 19}, + [2966] = {.lex_state = 37, .external_lex_state = 19}, [2967] = {.lex_state = 37, .external_lex_state = 19}, - [2968] = {.lex_state = 44}, - [2969] = {.lex_state = 37, .external_lex_state = 18}, - [2970] = {.lex_state = 44}, + [2968] = {.lex_state = 37, .external_lex_state = 19}, + [2969] = {.lex_state = 37, .external_lex_state = 19}, + [2970] = {.lex_state = 37, .external_lex_state = 19}, [2971] = {.lex_state = 37, .external_lex_state = 19}, - [2972] = {.lex_state = 37, .external_lex_state = 19}, - [2973] = {.lex_state = 44}, - [2974] = {.lex_state = 44}, + [2972] = {.lex_state = 44}, + [2973] = {.lex_state = 37, .external_lex_state = 19}, + [2974] = {.lex_state = 30, .external_lex_state = 16}, [2975] = {.lex_state = 37, .external_lex_state = 18}, - [2976] = {.lex_state = 44}, + [2976] = {.lex_state = 37, .external_lex_state = 18}, [2977] = {.lex_state = 37, .external_lex_state = 18}, [2978] = {.lex_state = 37, .external_lex_state = 19}, - [2979] = {.lex_state = 44}, - [2980] = {.lex_state = 37, .external_lex_state = 19}, - [2981] = {.lex_state = 37, .external_lex_state = 17}, - [2982] = {.lex_state = 44}, - [2983] = {.lex_state = 37, .external_lex_state = 18}, - [2984] = {.lex_state = 37, .external_lex_state = 19}, - [2985] = {.lex_state = 37, .external_lex_state = 19}, - [2986] = {.lex_state = 37, .external_lex_state = 19}, - [2987] = {.lex_state = 37, .external_lex_state = 19}, - [2988] = {.lex_state = 37, .external_lex_state = 19}, - [2989] = {.lex_state = 37, .external_lex_state = 19}, - [2990] = {.lex_state = 37, .external_lex_state = 18}, + [2979] = {.lex_state = 37, .external_lex_state = 19}, + [2980] = {.lex_state = 37, .external_lex_state = 18}, + [2981] = {.lex_state = 30, .external_lex_state = 11}, + [2982] = {.lex_state = 37, .external_lex_state = 17}, + [2983] = {.lex_state = 37, .external_lex_state = 19}, + [2984] = {.lex_state = 37, .external_lex_state = 17}, + [2985] = {.lex_state = 37, .external_lex_state = 17}, + [2986] = {.lex_state = 30, .external_lex_state = 11}, + [2987] = {.lex_state = 37, .external_lex_state = 16}, + [2988] = {.lex_state = 37, .external_lex_state = 17}, + [2989] = {.lex_state = 37, .external_lex_state = 17}, + [2990] = {.lex_state = 37, .external_lex_state = 17}, [2991] = {.lex_state = 37, .external_lex_state = 17}, [2992] = {.lex_state = 37, .external_lex_state = 17}, - [2993] = {.lex_state = 30, .external_lex_state = 16}, - [2994] = {.lex_state = 30, .external_lex_state = 16}, - [2995] = {.lex_state = 37, .external_lex_state = 19}, + [2993] = {.lex_state = 37, .external_lex_state = 17}, + [2994] = {.lex_state = 37, .external_lex_state = 17}, + [2995] = {.lex_state = 37, .external_lex_state = 17}, [2996] = {.lex_state = 37, .external_lex_state = 19}, - [2997] = {.lex_state = 37, .external_lex_state = 19}, - [2998] = {.lex_state = 37, .external_lex_state = 19}, - [2999] = {.lex_state = 37, .external_lex_state = 18}, - [3000] = {.lex_state = 37, .external_lex_state = 19}, - [3001] = {.lex_state = 37, .external_lex_state = 19}, - [3002] = {.lex_state = 30, .external_lex_state = 11}, - [3003] = {.lex_state = 37, .external_lex_state = 19}, - [3004] = {.lex_state = 37, .external_lex_state = 19}, - [3005] = {.lex_state = 37, .external_lex_state = 16}, - [3006] = {.lex_state = 37, .external_lex_state = 16}, - [3007] = {.lex_state = 37, .external_lex_state = 19}, - [3008] = {.lex_state = 37, .external_lex_state = 19}, + [2997] = {.lex_state = 37, .external_lex_state = 17}, + [2998] = {.lex_state = 37, .external_lex_state = 17}, + [2999] = {.lex_state = 37, .external_lex_state = 17}, + [3000] = {.lex_state = 37, .external_lex_state = 17}, + [3001] = {.lex_state = 37, .external_lex_state = 17}, + [3002] = {.lex_state = 37, .external_lex_state = 17}, + [3003] = {.lex_state = 37, .external_lex_state = 17}, + [3004] = {.lex_state = 37, .external_lex_state = 17}, + [3005] = {.lex_state = 37, .external_lex_state = 17}, + [3006] = {.lex_state = 30, .external_lex_state = 11}, + [3007] = {.lex_state = 44}, + [3008] = {.lex_state = 37, .external_lex_state = 18}, [3009] = {.lex_state = 37, .external_lex_state = 19}, - [3010] = {.lex_state = 37, .external_lex_state = 19}, - [3011] = {.lex_state = 37, .external_lex_state = 19}, - [3012] = {.lex_state = 37, .external_lex_state = 19}, - [3013] = {.lex_state = 37, .external_lex_state = 19}, - [3014] = {.lex_state = 37, .external_lex_state = 19}, - [3015] = {.lex_state = 37, .external_lex_state = 19}, - [3016] = {.lex_state = 37, .external_lex_state = 19}, - [3017] = {.lex_state = 37, .external_lex_state = 19}, - [3018] = {.lex_state = 37, .external_lex_state = 19}, - [3019] = {.lex_state = 37, .external_lex_state = 19}, + [3010] = {.lex_state = 30, .external_lex_state = 16}, + [3011] = {.lex_state = 37, .external_lex_state = 18}, + [3012] = {.lex_state = 30, .external_lex_state = 11}, + [3013] = {.lex_state = 37, .external_lex_state = 17}, + [3014] = {.lex_state = 37, .external_lex_state = 17}, + [3015] = {.lex_state = 37, .external_lex_state = 16}, + [3016] = {.lex_state = 30, .external_lex_state = 11}, + [3017] = {.lex_state = 30, .external_lex_state = 16}, + [3018] = {.lex_state = 37, .external_lex_state = 17}, + [3019] = {.lex_state = 37, .external_lex_state = 17}, [3020] = {.lex_state = 37, .external_lex_state = 19}, - [3021] = {.lex_state = 37, .external_lex_state = 19}, - [3022] = {.lex_state = 37, .external_lex_state = 19}, + [3021] = {.lex_state = 37, .external_lex_state = 17}, + [3022] = {.lex_state = 37, .external_lex_state = 17}, [3023] = {.lex_state = 30, .external_lex_state = 16}, - [3024] = {.lex_state = 37, .external_lex_state = 19}, - [3025] = {.lex_state = 37, .external_lex_state = 19}, - [3026] = {.lex_state = 37, .external_lex_state = 19}, + [3024] = {.lex_state = 37, .external_lex_state = 17}, + [3025] = {.lex_state = 37, .external_lex_state = 17}, + [3026] = {.lex_state = 30, .external_lex_state = 16}, [3027] = {.lex_state = 30, .external_lex_state = 16}, - [3028] = {.lex_state = 37, .external_lex_state = 19}, - [3029] = {.lex_state = 37, .external_lex_state = 17}, - [3030] = {.lex_state = 37, .external_lex_state = 17}, - [3031] = {.lex_state = 37, .external_lex_state = 17}, - [3032] = {.lex_state = 37, .external_lex_state = 17}, - [3033] = {.lex_state = 37, .external_lex_state = 17}, - [3034] = {.lex_state = 37, .external_lex_state = 17}, - [3035] = {.lex_state = 37, .external_lex_state = 17}, - [3036] = {.lex_state = 37, .external_lex_state = 17}, + [3028] = {.lex_state = 30, .external_lex_state = 11}, + [3029] = {.lex_state = 37, .external_lex_state = 19}, + [3030] = {.lex_state = 37, .external_lex_state = 19}, + [3031] = {.lex_state = 30, .external_lex_state = 11}, + [3032] = {.lex_state = 37, .external_lex_state = 19}, + [3033] = {.lex_state = 30, .external_lex_state = 11}, + [3034] = {.lex_state = 37, .external_lex_state = 19}, + [3035] = {.lex_state = 44}, + [3036] = {.lex_state = 37, .external_lex_state = 19}, [3037] = {.lex_state = 37, .external_lex_state = 17}, - [3038] = {.lex_state = 37, .external_lex_state = 17}, - [3039] = {.lex_state = 37, .external_lex_state = 17}, + [3038] = {.lex_state = 44}, + [3039] = {.lex_state = 37, .external_lex_state = 19}, [3040] = {.lex_state = 37, .external_lex_state = 17}, - [3041] = {.lex_state = 37, .external_lex_state = 17}, + [3041] = {.lex_state = 37, .external_lex_state = 18}, [3042] = {.lex_state = 37, .external_lex_state = 17}, - [3043] = {.lex_state = 37, .external_lex_state = 17}, + [3043] = {.lex_state = 37, .external_lex_state = 19}, [3044] = {.lex_state = 37, .external_lex_state = 17}, - [3045] = {.lex_state = 37, .external_lex_state = 17}, - [3046] = {.lex_state = 37, .external_lex_state = 17}, + [3045] = {.lex_state = 37, .external_lex_state = 19}, + [3046] = {.lex_state = 37, .external_lex_state = 19}, [3047] = {.lex_state = 37, .external_lex_state = 17}, - [3048] = {.lex_state = 37, .external_lex_state = 17}, - [3049] = {.lex_state = 37, .external_lex_state = 17}, - [3050] = {.lex_state = 37, .external_lex_state = 17}, - [3051] = {.lex_state = 37, .external_lex_state = 17}, + [3048] = {.lex_state = 44}, + [3049] = {.lex_state = 30, .external_lex_state = 16}, + [3050] = {.lex_state = 37, .external_lex_state = 19}, + [3051] = {.lex_state = 30, .external_lex_state = 16}, [3052] = {.lex_state = 30, .external_lex_state = 11}, [3053] = {.lex_state = 37, .external_lex_state = 17}, - [3054] = {.lex_state = 30, .external_lex_state = 16}, - [3055] = {.lex_state = 37, .external_lex_state = 17}, + [3054] = {.lex_state = 37, .external_lex_state = 17}, + [3055] = {.lex_state = 30, .external_lex_state = 11}, [3056] = {.lex_state = 37, .external_lex_state = 18}, - [3057] = {.lex_state = 44}, - [3058] = {.lex_state = 30, .external_lex_state = 16}, - [3059] = {.lex_state = 37, .external_lex_state = 18}, - [3060] = {.lex_state = 30, .external_lex_state = 16}, + [3057] = {.lex_state = 37, .external_lex_state = 17}, + [3058] = {.lex_state = 37, .external_lex_state = 17}, + [3059] = {.lex_state = 37, .external_lex_state = 17}, + [3060] = {.lex_state = 30, .external_lex_state = 11}, [3061] = {.lex_state = 30, .external_lex_state = 11}, - [3062] = {.lex_state = 37, .external_lex_state = 19}, - [3063] = {.lex_state = 37, .external_lex_state = 19}, - [3064] = {.lex_state = 37, .external_lex_state = 19}, - [3065] = {.lex_state = 44}, + [3062] = {.lex_state = 30, .external_lex_state = 11}, + [3063] = {.lex_state = 30, .external_lex_state = 16}, + [3064] = {.lex_state = 30, .external_lex_state = 11}, + [3065] = {.lex_state = 30, .external_lex_state = 11}, [3066] = {.lex_state = 30, .external_lex_state = 11}, [3067] = {.lex_state = 30, .external_lex_state = 11}, - [3068] = {.lex_state = 37, .external_lex_state = 16}, - [3069] = {.lex_state = 37, .external_lex_state = 18}, + [3068] = {.lex_state = 30, .external_lex_state = 11}, + [3069] = {.lex_state = 30, .external_lex_state = 11}, [3070] = {.lex_state = 30, .external_lex_state = 11}, - [3071] = {.lex_state = 30, .external_lex_state = 16}, - [3072] = {.lex_state = 44}, - [3073] = {.lex_state = 37, .external_lex_state = 18}, - [3074] = {.lex_state = 37, .external_lex_state = 18}, - [3075] = {.lex_state = 30, .external_lex_state = 11}, - [3076] = {.lex_state = 30, .external_lex_state = 16}, + [3071] = {.lex_state = 30, .external_lex_state = 11}, + [3072] = {.lex_state = 30, .external_lex_state = 11}, + [3073] = {.lex_state = 30, .external_lex_state = 11}, + [3074] = {.lex_state = 30, .external_lex_state = 11}, + [3075] = {.lex_state = 37, .external_lex_state = 17}, + [3076] = {.lex_state = 30, .external_lex_state = 11}, [3077] = {.lex_state = 30, .external_lex_state = 16}, - [3078] = {.lex_state = 30, .external_lex_state = 16}, - [3079] = {.lex_state = 30, .external_lex_state = 16}, - [3080] = {.lex_state = 30, .external_lex_state = 16}, - [3081] = {.lex_state = 30, .external_lex_state = 16}, - [3082] = {.lex_state = 30, .external_lex_state = 16}, - [3083] = {.lex_state = 37, .external_lex_state = 16}, - [3084] = {.lex_state = 30, .external_lex_state = 16}, - [3085] = {.lex_state = 30, .external_lex_state = 16}, + [3078] = {.lex_state = 37, .external_lex_state = 18}, + [3079] = {.lex_state = 37, .external_lex_state = 18}, + [3080] = {.lex_state = 37, .external_lex_state = 17}, + [3081] = {.lex_state = 37, .external_lex_state = 17}, + [3082] = {.lex_state = 37, .external_lex_state = 17}, + [3083] = {.lex_state = 37, .external_lex_state = 17}, + [3084] = {.lex_state = 37, .external_lex_state = 18}, + [3085] = {.lex_state = 37, .external_lex_state = 18}, [3086] = {.lex_state = 30, .external_lex_state = 16}, [3087] = {.lex_state = 30, .external_lex_state = 16}, - [3088] = {.lex_state = 30, .external_lex_state = 11}, - [3089] = {.lex_state = 30, .external_lex_state = 16}, - [3090] = {.lex_state = 30, .external_lex_state = 16}, - [3091] = {.lex_state = 30, .external_lex_state = 11}, - [3092] = {.lex_state = 30, .external_lex_state = 16}, - [3093] = {.lex_state = 30, .external_lex_state = 16}, - [3094] = {.lex_state = 30, .external_lex_state = 16}, - [3095] = {.lex_state = 30, .external_lex_state = 16}, - [3096] = {.lex_state = 30, .external_lex_state = 16}, - [3097] = {.lex_state = 30, .external_lex_state = 16}, - [3098] = {.lex_state = 30, .external_lex_state = 16}, + [3088] = {.lex_state = 37, .external_lex_state = 18}, + [3089] = {.lex_state = 37, .external_lex_state = 19}, + [3090] = {.lex_state = 37, .external_lex_state = 19}, + [3091] = {.lex_state = 30, .external_lex_state = 16}, + [3092] = {.lex_state = 30, .external_lex_state = 11}, + [3093] = {.lex_state = 37, .external_lex_state = 19}, + [3094] = {.lex_state = 30, .external_lex_state = 11}, + [3095] = {.lex_state = 30, .external_lex_state = 11}, + [3096] = {.lex_state = 30, .external_lex_state = 11}, + [3097] = {.lex_state = 37, .external_lex_state = 19}, + [3098] = {.lex_state = 37, .external_lex_state = 19}, [3099] = {.lex_state = 37, .external_lex_state = 18}, - [3100] = {.lex_state = 37, .external_lex_state = 18}, - [3101] = {.lex_state = 37, .external_lex_state = 17}, - [3102] = {.lex_state = 37, .external_lex_state = 18}, - [3103] = {.lex_state = 30, .external_lex_state = 16}, - [3104] = {.lex_state = 30, .external_lex_state = 16}, + [3100] = {.lex_state = 37, .external_lex_state = 19}, + [3101] = {.lex_state = 37, .external_lex_state = 19}, + [3102] = {.lex_state = 37, .external_lex_state = 17}, + [3103] = {.lex_state = 37, .external_lex_state = 19}, + [3104] = {.lex_state = 37, .external_lex_state = 19}, [3105] = {.lex_state = 37, .external_lex_state = 17}, - [3106] = {.lex_state = 30, .external_lex_state = 16}, - [3107] = {.lex_state = 30, .external_lex_state = 16}, - [3108] = {.lex_state = 37, .external_lex_state = 18}, - [3109] = {.lex_state = 30, .external_lex_state = 16}, - [3110] = {.lex_state = 37, .external_lex_state = 18}, - [3111] = {.lex_state = 37, .external_lex_state = 18}, - [3112] = {.lex_state = 30, .external_lex_state = 16}, - [3113] = {.lex_state = 30, .external_lex_state = 11}, - [3114] = {.lex_state = 30, .external_lex_state = 16}, + [3106] = {.lex_state = 37, .external_lex_state = 17}, + [3107] = {.lex_state = 37, .external_lex_state = 18}, + [3108] = {.lex_state = 37, .external_lex_state = 17}, + [3109] = {.lex_state = 37, .external_lex_state = 17}, + [3110] = {.lex_state = 37, .external_lex_state = 17}, + [3111] = {.lex_state = 37, .external_lex_state = 17}, + [3112] = {.lex_state = 37, .external_lex_state = 17}, + [3113] = {.lex_state = 37, .external_lex_state = 17}, + [3114] = {.lex_state = 37, .external_lex_state = 17}, [3115] = {.lex_state = 37, .external_lex_state = 18}, [3116] = {.lex_state = 37, .external_lex_state = 17}, - [3117] = {.lex_state = 37, .external_lex_state = 17}, - [3118] = {.lex_state = 30, .external_lex_state = 11}, - [3119] = {.lex_state = 30, .external_lex_state = 11}, - [3120] = {.lex_state = 30, .external_lex_state = 11}, - [3121] = {.lex_state = 30, .external_lex_state = 11}, - [3122] = {.lex_state = 30, .external_lex_state = 16}, - [3123] = {.lex_state = 37, .external_lex_state = 17}, - [3124] = {.lex_state = 37, .external_lex_state = 17}, - [3125] = {.lex_state = 37, .external_lex_state = 17}, - [3126] = {.lex_state = 30, .external_lex_state = 11}, + [3117] = {.lex_state = 30, .external_lex_state = 11}, + [3118] = {.lex_state = 37, .external_lex_state = 17}, + [3119] = {.lex_state = 37, .external_lex_state = 18}, + [3120] = {.lex_state = 37, .external_lex_state = 17}, + [3121] = {.lex_state = 37, .external_lex_state = 17}, + [3122] = {.lex_state = 37, .external_lex_state = 19}, + [3123] = {.lex_state = 37, .external_lex_state = 19}, + [3124] = {.lex_state = 37, .external_lex_state = 19}, + [3125] = {.lex_state = 37, .external_lex_state = 19}, + [3126] = {.lex_state = 44}, [3127] = {.lex_state = 37, .external_lex_state = 17}, - [3128] = {.lex_state = 37, .external_lex_state = 17}, - [3129] = {.lex_state = 30, .external_lex_state = 11}, - [3130] = {.lex_state = 37, .external_lex_state = 18}, - [3131] = {.lex_state = 30, .external_lex_state = 16}, - [3132] = {.lex_state = 37, .external_lex_state = 17}, - [3133] = {.lex_state = 37, .external_lex_state = 17}, - [3134] = {.lex_state = 37, .external_lex_state = 17}, - [3135] = {.lex_state = 37, .external_lex_state = 17}, - [3136] = {.lex_state = 30, .external_lex_state = 11}, - [3137] = {.lex_state = 37, .external_lex_state = 17}, - [3138] = {.lex_state = 30, .external_lex_state = 11}, - [3139] = {.lex_state = 30, .external_lex_state = 16}, - [3140] = {.lex_state = 37, .external_lex_state = 17}, - [3141] = {.lex_state = 30, .external_lex_state = 16}, - [3142] = {.lex_state = 37, .external_lex_state = 17}, - [3143] = {.lex_state = 30, .external_lex_state = 16}, - [3144] = {.lex_state = 37, .external_lex_state = 18}, - [3145] = {.lex_state = 30, .external_lex_state = 11}, - [3146] = {.lex_state = 37, .external_lex_state = 17}, - [3147] = {.lex_state = 30, .external_lex_state = 16}, - [3148] = {.lex_state = 30, .external_lex_state = 16}, - [3149] = {.lex_state = 30, .external_lex_state = 11}, + [3128] = {.lex_state = 37, .external_lex_state = 18}, + [3129] = {.lex_state = 37, .external_lex_state = 18}, + [3130] = {.lex_state = 30, .external_lex_state = 16}, + [3131] = {.lex_state = 37, .external_lex_state = 17}, + [3132] = {.lex_state = 30, .external_lex_state = 16}, + [3133] = {.lex_state = 37, .external_lex_state = 18}, + [3134] = {.lex_state = 37, .external_lex_state = 18}, + [3135] = {.lex_state = 37, .external_lex_state = 18}, + [3136] = {.lex_state = 37, .external_lex_state = 18}, + [3137] = {.lex_state = 30, .external_lex_state = 16}, + [3138] = {.lex_state = 30, .external_lex_state = 16}, + [3139] = {.lex_state = 37, .external_lex_state = 18}, + [3140] = {.lex_state = 30, .external_lex_state = 11}, + [3141] = {.lex_state = 37, .external_lex_state = 19}, + [3142] = {.lex_state = 37, .external_lex_state = 18}, + [3143] = {.lex_state = 37, .external_lex_state = 16}, + [3144] = {.lex_state = 37, .external_lex_state = 16}, + [3145] = {.lex_state = 30, .external_lex_state = 16}, + [3146] = {.lex_state = 37, .external_lex_state = 18}, + [3147] = {.lex_state = 37, .external_lex_state = 18}, + [3148] = {.lex_state = 30, .external_lex_state = 11}, + [3149] = {.lex_state = 30, .external_lex_state = 16}, [3150] = {.lex_state = 30, .external_lex_state = 16}, [3151] = {.lex_state = 30, .external_lex_state = 11}, [3152] = {.lex_state = 30, .external_lex_state = 16}, [3153] = {.lex_state = 30, .external_lex_state = 16}, - [3154] = {.lex_state = 30, .external_lex_state = 16}, + [3154] = {.lex_state = 30, .external_lex_state = 11}, [3155] = {.lex_state = 30, .external_lex_state = 16}, - [3156] = {.lex_state = 30, .external_lex_state = 16}, + [3156] = {.lex_state = 37, .external_lex_state = 18}, [3157] = {.lex_state = 30, .external_lex_state = 16}, [3158] = {.lex_state = 30, .external_lex_state = 16}, - [3159] = {.lex_state = 30, .external_lex_state = 16}, - [3160] = {.lex_state = 30, .external_lex_state = 16}, - [3161] = {.lex_state = 30, .external_lex_state = 16}, - [3162] = {.lex_state = 30, .external_lex_state = 16}, + [3159] = {.lex_state = 37, .external_lex_state = 16}, + [3160] = {.lex_state = 30, .external_lex_state = 11}, + [3161] = {.lex_state = 30, .external_lex_state = 11}, + [3162] = {.lex_state = 30, .external_lex_state = 11}, [3163] = {.lex_state = 30, .external_lex_state = 16}, - [3164] = {.lex_state = 30, .external_lex_state = 16}, - [3165] = {.lex_state = 30, .external_lex_state = 16}, - [3166] = {.lex_state = 30, .external_lex_state = 16}, - [3167] = {.lex_state = 30, .external_lex_state = 16}, - [3168] = {.lex_state = 30, .external_lex_state = 16}, - [3169] = {.lex_state = 30, .external_lex_state = 16}, - [3170] = {.lex_state = 30, .external_lex_state = 16}, - [3171] = {.lex_state = 37, .external_lex_state = 18}, - [3172] = {.lex_state = 30, .external_lex_state = 16}, + [3164] = {.lex_state = 30, .external_lex_state = 11}, + [3165] = {.lex_state = 30, .external_lex_state = 11}, + [3166] = {.lex_state = 37, .external_lex_state = 19}, + [3167] = {.lex_state = 30, .external_lex_state = 11}, + [3168] = {.lex_state = 30, .external_lex_state = 11}, + [3169] = {.lex_state = 30, .external_lex_state = 11}, + [3170] = {.lex_state = 30, .external_lex_state = 11}, + [3171] = {.lex_state = 30, .external_lex_state = 11}, + [3172] = {.lex_state = 30, .external_lex_state = 11}, [3173] = {.lex_state = 30, .external_lex_state = 11}, - [3174] = {.lex_state = 37, .external_lex_state = 18}, + [3174] = {.lex_state = 30, .external_lex_state = 11}, [3175] = {.lex_state = 30, .external_lex_state = 11}, - [3176] = {.lex_state = 30, .external_lex_state = 11}, - [3177] = {.lex_state = 30, .external_lex_state = 16}, - [3178] = {.lex_state = 37, .external_lex_state = 19}, - [3179] = {.lex_state = 37, .external_lex_state = 17}, - [3180] = {.lex_state = 30, .external_lex_state = 11}, + [3176] = {.lex_state = 30, .external_lex_state = 16}, + [3177] = {.lex_state = 30, .external_lex_state = 11}, + [3178] = {.lex_state = 37, .external_lex_state = 16}, + [3179] = {.lex_state = 37, .external_lex_state = 19}, + [3180] = {.lex_state = 37, .external_lex_state = 18}, [3181] = {.lex_state = 30, .external_lex_state = 16}, - [3182] = {.lex_state = 37, .external_lex_state = 18}, - [3183] = {.lex_state = 37, .external_lex_state = 18}, - [3184] = {.lex_state = 37, .external_lex_state = 18}, - [3185] = {.lex_state = 30, .external_lex_state = 16}, - [3186] = {.lex_state = 37, .external_lex_state = 18}, - [3187] = {.lex_state = 30, .external_lex_state = 11}, - [3188] = {.lex_state = 30, .external_lex_state = 16}, + [3182] = {.lex_state = 37, .external_lex_state = 19}, + [3183] = {.lex_state = 30, .external_lex_state = 16}, + [3184] = {.lex_state = 37, .external_lex_state = 19}, + [3185] = {.lex_state = 37, .external_lex_state = 19}, + [3186] = {.lex_state = 30, .external_lex_state = 16}, + [3187] = {.lex_state = 37, .external_lex_state = 18}, + [3188] = {.lex_state = 30, .external_lex_state = 11}, [3189] = {.lex_state = 30, .external_lex_state = 16}, - [3190] = {.lex_state = 37, .external_lex_state = 18}, - [3191] = {.lex_state = 37, .external_lex_state = 18}, + [3190] = {.lex_state = 30, .external_lex_state = 16}, + [3191] = {.lex_state = 30, .external_lex_state = 16}, [3192] = {.lex_state = 30, .external_lex_state = 16}, - [3193] = {.lex_state = 37, .external_lex_state = 18}, - [3194] = {.lex_state = 30, .external_lex_state = 16}, + [3193] = {.lex_state = 30, .external_lex_state = 16}, + [3194] = {.lex_state = 30, .external_lex_state = 11}, [3195] = {.lex_state = 30, .external_lex_state = 11}, - [3196] = {.lex_state = 30, .external_lex_state = 16}, + [3196] = {.lex_state = 30, .external_lex_state = 11}, [3197] = {.lex_state = 30, .external_lex_state = 11}, [3198] = {.lex_state = 30, .external_lex_state = 11}, - [3199] = {.lex_state = 30, .external_lex_state = 16}, - [3200] = {.lex_state = 37, .external_lex_state = 18}, - [3201] = {.lex_state = 37, .external_lex_state = 18}, - [3202] = {.lex_state = 37, .external_lex_state = 18}, - [3203] = {.lex_state = 30, .external_lex_state = 16}, - [3204] = {.lex_state = 37, .external_lex_state = 16}, - [3205] = {.lex_state = 30, .external_lex_state = 16}, - [3206] = {.lex_state = 37, .external_lex_state = 18}, - [3207] = {.lex_state = 37, .external_lex_state = 18}, + [3199] = {.lex_state = 30, .external_lex_state = 11}, + [3200] = {.lex_state = 30, .external_lex_state = 11}, + [3201] = {.lex_state = 30, .external_lex_state = 11}, + [3202] = {.lex_state = 30, .external_lex_state = 11}, + [3203] = {.lex_state = 37, .external_lex_state = 18}, + [3204] = {.lex_state = 30, .external_lex_state = 11}, + [3205] = {.lex_state = 30, .external_lex_state = 11}, + [3206] = {.lex_state = 30, .external_lex_state = 11}, + [3207] = {.lex_state = 30, .external_lex_state = 11}, [3208] = {.lex_state = 30, .external_lex_state = 11}, - [3209] = {.lex_state = 37, .external_lex_state = 18}, - [3210] = {.lex_state = 30, .external_lex_state = 16}, - [3211] = {.lex_state = 37, .external_lex_state = 18}, - [3212] = {.lex_state = 37, .external_lex_state = 18}, + [3209] = {.lex_state = 30, .external_lex_state = 11}, + [3210] = {.lex_state = 30, .external_lex_state = 11}, + [3211] = {.lex_state = 30, .external_lex_state = 11}, + [3212] = {.lex_state = 30, .external_lex_state = 11}, [3213] = {.lex_state = 30, .external_lex_state = 16}, - [3214] = {.lex_state = 37, .external_lex_state = 18}, - [3215] = {.lex_state = 37, .external_lex_state = 18}, + [3214] = {.lex_state = 37, .external_lex_state = 19}, + [3215] = {.lex_state = 30, .external_lex_state = 16}, [3216] = {.lex_state = 30, .external_lex_state = 11}, - [3217] = {.lex_state = 37, .external_lex_state = 18}, - [3218] = {.lex_state = 30, .external_lex_state = 11}, - [3219] = {.lex_state = 30, .external_lex_state = 11}, + [3217] = {.lex_state = 30, .external_lex_state = 16}, + [3218] = {.lex_state = 30, .external_lex_state = 16}, + [3219] = {.lex_state = 30, .external_lex_state = 16}, [3220] = {.lex_state = 30, .external_lex_state = 16}, [3221] = {.lex_state = 30, .external_lex_state = 16}, - [3222] = {.lex_state = 30, .external_lex_state = 16}, + [3222] = {.lex_state = 30, .external_lex_state = 11}, [3223] = {.lex_state = 30, .external_lex_state = 16}, [3224] = {.lex_state = 30, .external_lex_state = 16}, - [3225] = {.lex_state = 30, .external_lex_state = 16}, + [3225] = {.lex_state = 37, .external_lex_state = 18}, [3226] = {.lex_state = 30, .external_lex_state = 16}, [3227] = {.lex_state = 30, .external_lex_state = 16}, [3228] = {.lex_state = 30, .external_lex_state = 16}, [3229] = {.lex_state = 30, .external_lex_state = 16}, [3230] = {.lex_state = 30, .external_lex_state = 16}, [3231] = {.lex_state = 30, .external_lex_state = 16}, - [3232] = {.lex_state = 37, .external_lex_state = 19}, + [3232] = {.lex_state = 30, .external_lex_state = 16}, [3233] = {.lex_state = 30, .external_lex_state = 16}, - [3234] = {.lex_state = 30, .external_lex_state = 16}, - [3235] = {.lex_state = 37, .external_lex_state = 18}, + [3234] = {.lex_state = 37, .external_lex_state = 19}, + [3235] = {.lex_state = 30, .external_lex_state = 16}, [3236] = {.lex_state = 30, .external_lex_state = 16}, - [3237] = {.lex_state = 30, .external_lex_state = 16}, - [3238] = {.lex_state = 37, .external_lex_state = 18}, - [3239] = {.lex_state = 37, .external_lex_state = 18}, + [3237] = {.lex_state = 37, .external_lex_state = 18}, + [3238] = {.lex_state = 30, .external_lex_state = 16}, + [3239] = {.lex_state = 30, .external_lex_state = 16}, [3240] = {.lex_state = 30, .external_lex_state = 16}, - [3241] = {.lex_state = 30, .external_lex_state = 16}, - [3242] = {.lex_state = 37, .external_lex_state = 18}, + [3241] = {.lex_state = 37, .external_lex_state = 19}, + [3242] = {.lex_state = 30, .external_lex_state = 16}, [3243] = {.lex_state = 30, .external_lex_state = 16}, - [3244] = {.lex_state = 30, .external_lex_state = 16}, + [3244] = {.lex_state = 37, .external_lex_state = 18}, [3245] = {.lex_state = 30, .external_lex_state = 16}, - [3246] = {.lex_state = 37, .external_lex_state = 16}, + [3246] = {.lex_state = 30, .external_lex_state = 16}, [3247] = {.lex_state = 30, .external_lex_state = 16}, - [3248] = {.lex_state = 37, .external_lex_state = 16}, + [3248] = {.lex_state = 30, .external_lex_state = 16}, [3249] = {.lex_state = 30, .external_lex_state = 16}, - [3250] = {.lex_state = 30, .external_lex_state = 11}, - [3251] = {.lex_state = 37, .external_lex_state = 18}, - [3252] = {.lex_state = 37, .external_lex_state = 18}, - [3253] = {.lex_state = 37, .external_lex_state = 18}, + [3250] = {.lex_state = 30, .external_lex_state = 16}, + [3251] = {.lex_state = 30, .external_lex_state = 16}, + [3252] = {.lex_state = 30, .external_lex_state = 16}, + [3253] = {.lex_state = 30, .external_lex_state = 16}, [3254] = {.lex_state = 30, .external_lex_state = 16}, - [3255] = {.lex_state = 37, .external_lex_state = 18}, + [3255] = {.lex_state = 37, .external_lex_state = 19}, [3256] = {.lex_state = 30, .external_lex_state = 16}, - [3257] = {.lex_state = 30, .external_lex_state = 16}, - [3258] = {.lex_state = 44}, - [3259] = {.lex_state = 30, .external_lex_state = 16}, - [3260] = {.lex_state = 30, .external_lex_state = 16}, - [3261] = {.lex_state = 30, .external_lex_state = 16}, + [3257] = {.lex_state = 37, .external_lex_state = 18}, + [3258] = {.lex_state = 37, .external_lex_state = 18}, + [3259] = {.lex_state = 37, .external_lex_state = 18}, + [3260] = {.lex_state = 37, .external_lex_state = 18}, + [3261] = {.lex_state = 37, .external_lex_state = 18}, [3262] = {.lex_state = 30, .external_lex_state = 11}, - [3263] = {.lex_state = 30, .external_lex_state = 16}, + [3263] = {.lex_state = 37, .external_lex_state = 18}, [3264] = {.lex_state = 37, .external_lex_state = 18}, [3265] = {.lex_state = 37, .external_lex_state = 18}, [3266] = {.lex_state = 37, .external_lex_state = 18}, - [3267] = {.lex_state = 37, .external_lex_state = 17}, - [3268] = {.lex_state = 30, .external_lex_state = 16}, - [3269] = {.lex_state = 30, .external_lex_state = 16}, - [3270] = {.lex_state = 30, .external_lex_state = 11}, - [3271] = {.lex_state = 30, .external_lex_state = 11}, - [3272] = {.lex_state = 30, .external_lex_state = 16}, - [3273] = {.lex_state = 30, .external_lex_state = 11}, - [3274] = {.lex_state = 30, .external_lex_state = 11}, - [3275] = {.lex_state = 30, .external_lex_state = 11}, - [3276] = {.lex_state = 30, .external_lex_state = 11}, - [3277] = {.lex_state = 30, .external_lex_state = 11}, - [3278] = {.lex_state = 30, .external_lex_state = 11}, - [3279] = {.lex_state = 30, .external_lex_state = 11}, - [3280] = {.lex_state = 30, .external_lex_state = 11}, - [3281] = {.lex_state = 30, .external_lex_state = 11}, - [3282] = {.lex_state = 30, .external_lex_state = 11}, - [3283] = {.lex_state = 30, .external_lex_state = 11}, - [3284] = {.lex_state = 30, .external_lex_state = 11}, - [3285] = {.lex_state = 30, .external_lex_state = 11}, - [3286] = {.lex_state = 30, .external_lex_state = 11}, - [3287] = {.lex_state = 30, .external_lex_state = 11}, - [3288] = {.lex_state = 30, .external_lex_state = 16}, + [3267] = {.lex_state = 37, .external_lex_state = 18}, + [3268] = {.lex_state = 30, .external_lex_state = 11}, + [3269] = {.lex_state = 37, .external_lex_state = 18}, + [3270] = {.lex_state = 37, .external_lex_state = 18}, + [3271] = {.lex_state = 30, .external_lex_state = 16}, + [3272] = {.lex_state = 37, .external_lex_state = 18}, + [3273] = {.lex_state = 37, .external_lex_state = 18}, + [3274] = {.lex_state = 37, .external_lex_state = 18}, + [3275] = {.lex_state = 37, .external_lex_state = 18}, + [3276] = {.lex_state = 37, .external_lex_state = 18}, + [3277] = {.lex_state = 37, .external_lex_state = 18}, + [3278] = {.lex_state = 37, .external_lex_state = 18}, + [3279] = {.lex_state = 37, .external_lex_state = 18}, + [3280] = {.lex_state = 37, .external_lex_state = 18}, + [3281] = {.lex_state = 37, .external_lex_state = 18}, + [3282] = {.lex_state = 37, .external_lex_state = 18}, + [3283] = {.lex_state = 37, .external_lex_state = 18}, + [3284] = {.lex_state = 37, .external_lex_state = 18}, + [3285] = {.lex_state = 37, .external_lex_state = 18}, + [3286] = {.lex_state = 37, .external_lex_state = 18}, + [3287] = {.lex_state = 37, .external_lex_state = 18}, + [3288] = {.lex_state = 37, .external_lex_state = 18}, [3289] = {.lex_state = 30, .external_lex_state = 16}, - [3290] = {.lex_state = 30, .external_lex_state = 11}, - [3291] = {.lex_state = 30, .external_lex_state = 11}, - [3292] = {.lex_state = 37, .external_lex_state = 18}, - [3293] = {.lex_state = 30, .external_lex_state = 11}, - [3294] = {.lex_state = 30, .external_lex_state = 16}, - [3295] = {.lex_state = 37, .external_lex_state = 18}, + [3290] = {.lex_state = 37, .external_lex_state = 18}, + [3291] = {.lex_state = 37, .external_lex_state = 18}, + [3292] = {.lex_state = 30, .external_lex_state = 16}, + [3293] = {.lex_state = 37, .external_lex_state = 17}, + [3294] = {.lex_state = 37, .external_lex_state = 18}, + [3295] = {.lex_state = 44}, [3296] = {.lex_state = 30, .external_lex_state = 16}, [3297] = {.lex_state = 30, .external_lex_state = 16}, - [3298] = {.lex_state = 37, .external_lex_state = 18}, - [3299] = {.lex_state = 37, .external_lex_state = 16}, - [3300] = {.lex_state = 30, .external_lex_state = 16}, - [3301] = {.lex_state = 37, .external_lex_state = 18}, - [3302] = {.lex_state = 30, .external_lex_state = 11}, + [3298] = {.lex_state = 30, .external_lex_state = 16}, + [3299] = {.lex_state = 30, .external_lex_state = 16}, + [3300] = {.lex_state = 37, .external_lex_state = 17}, + [3301] = {.lex_state = 30, .external_lex_state = 16}, + [3302] = {.lex_state = 37, .external_lex_state = 19}, [3303] = {.lex_state = 30, .external_lex_state = 16}, - [3304] = {.lex_state = 30, .external_lex_state = 16}, - [3305] = {.lex_state = 30, .external_lex_state = 11}, - [3306] = {.lex_state = 30, .external_lex_state = 11}, + [3304] = {.lex_state = 37, .external_lex_state = 18}, + [3305] = {.lex_state = 37, .external_lex_state = 18}, + [3306] = {.lex_state = 30, .external_lex_state = 16}, [3307] = {.lex_state = 30, .external_lex_state = 16}, - [3308] = {.lex_state = 30, .external_lex_state = 16}, + [3308] = {.lex_state = 37, .external_lex_state = 17}, [3309] = {.lex_state = 30, .external_lex_state = 16}, - [3310] = {.lex_state = 37, .external_lex_state = 18}, - [3311] = {.lex_state = 37, .external_lex_state = 18}, - [3312] = {.lex_state = 37, .external_lex_state = 18}, - [3313] = {.lex_state = 37, .external_lex_state = 18}, - [3314] = {.lex_state = 37, .external_lex_state = 18}, - [3315] = {.lex_state = 37, .external_lex_state = 18}, - [3316] = {.lex_state = 37, .external_lex_state = 18}, - [3317] = {.lex_state = 37, .external_lex_state = 18}, - [3318] = {.lex_state = 37, .external_lex_state = 18}, + [3310] = {.lex_state = 37, .external_lex_state = 17}, + [3311] = {.lex_state = 30, .external_lex_state = 16}, + [3312] = {.lex_state = 37, .external_lex_state = 17}, + [3313] = {.lex_state = 37, .external_lex_state = 16}, + [3314] = {.lex_state = 30, .external_lex_state = 16}, + [3315] = {.lex_state = 30, .external_lex_state = 16}, + [3316] = {.lex_state = 30, .external_lex_state = 16}, + [3317] = {.lex_state = 37, .external_lex_state = 17}, + [3318] = {.lex_state = 30, .external_lex_state = 16}, [3319] = {.lex_state = 37, .external_lex_state = 18}, - [3320] = {.lex_state = 37, .external_lex_state = 18}, - [3321] = {.lex_state = 37, .external_lex_state = 18}, - [3322] = {.lex_state = 37, .external_lex_state = 18}, - [3323] = {.lex_state = 37, .external_lex_state = 18}, - [3324] = {.lex_state = 37, .external_lex_state = 18}, - [3325] = {.lex_state = 37, .external_lex_state = 18}, - [3326] = {.lex_state = 37, .external_lex_state = 18}, - [3327] = {.lex_state = 37, .external_lex_state = 18}, - [3328] = {.lex_state = 30, .external_lex_state = 16}, + [3320] = {.lex_state = 30, .external_lex_state = 16}, + [3321] = {.lex_state = 30, .external_lex_state = 16}, + [3322] = {.lex_state = 30, .external_lex_state = 16}, + [3323] = {.lex_state = 37, .external_lex_state = 17}, + [3324] = {.lex_state = 30, .external_lex_state = 11}, + [3325] = {.lex_state = 30, .external_lex_state = 16}, + [3326] = {.lex_state = 37, .external_lex_state = 17}, + [3327] = {.lex_state = 37, .external_lex_state = 16}, + [3328] = {.lex_state = 37, .external_lex_state = 18}, [3329] = {.lex_state = 30, .external_lex_state = 16}, - [3330] = {.lex_state = 30, .external_lex_state = 16}, + [3330] = {.lex_state = 37, .external_lex_state = 18}, [3331] = {.lex_state = 30, .external_lex_state = 16}, - [3332] = {.lex_state = 30, .external_lex_state = 11}, - [3333] = {.lex_state = 44}, + [3332] = {.lex_state = 37, .external_lex_state = 17}, + [3333] = {.lex_state = 30, .external_lex_state = 16}, [3334] = {.lex_state = 30, .external_lex_state = 16}, - [3335] = {.lex_state = 30, .external_lex_state = 16}, - [3336] = {.lex_state = 30, .external_lex_state = 16}, + [3335] = {.lex_state = 37, .external_lex_state = 18}, + [3336] = {.lex_state = 30, .external_lex_state = 11}, [3337] = {.lex_state = 30, .external_lex_state = 16}, - [3338] = {.lex_state = 37, .external_lex_state = 18}, + [3338] = {.lex_state = 30, .external_lex_state = 16}, [3339] = {.lex_state = 37, .external_lex_state = 18}, [3340] = {.lex_state = 30, .external_lex_state = 16}, - [3341] = {.lex_state = 37, .external_lex_state = 18}, - [3342] = {.lex_state = 37, .external_lex_state = 18}, - [3343] = {.lex_state = 37, .external_lex_state = 18}, - [3344] = {.lex_state = 30, .external_lex_state = 11}, - [3345] = {.lex_state = 30, .external_lex_state = 16}, - [3346] = {.lex_state = 37, .external_lex_state = 18}, + [3341] = {.lex_state = 30, .external_lex_state = 16}, + [3342] = {.lex_state = 30, .external_lex_state = 11}, + [3343] = {.lex_state = 30, .external_lex_state = 16}, + [3344] = {.lex_state = 37, .external_lex_state = 18}, + [3345] = {.lex_state = 30, .external_lex_state = 11}, + [3346] = {.lex_state = 30, .external_lex_state = 16}, [3347] = {.lex_state = 30, .external_lex_state = 16}, - [3348] = {.lex_state = 30, .external_lex_state = 16}, + [3348] = {.lex_state = 30, .external_lex_state = 11}, [3349] = {.lex_state = 30, .external_lex_state = 16}, - [3350] = {.lex_state = 30, .external_lex_state = 16}, - [3351] = {.lex_state = 37, .external_lex_state = 18}, - [3352] = {.lex_state = 30, .external_lex_state = 16}, - [3353] = {.lex_state = 44}, - [3354] = {.lex_state = 37, .external_lex_state = 18}, - [3355] = {.lex_state = 30, .external_lex_state = 16}, + [3350] = {.lex_state = 37, .external_lex_state = 17}, + [3351] = {.lex_state = 30, .external_lex_state = 11}, + [3352] = {.lex_state = 37, .external_lex_state = 17}, + [3353] = {.lex_state = 30, .external_lex_state = 11}, + [3354] = {.lex_state = 30, .external_lex_state = 16}, + [3355] = {.lex_state = 37, .external_lex_state = 17}, [3356] = {.lex_state = 30, .external_lex_state = 16}, [3357] = {.lex_state = 30, .external_lex_state = 16}, - [3358] = {.lex_state = 30, .external_lex_state = 16}, - [3359] = {.lex_state = 30, .external_lex_state = 16}, - [3360] = {.lex_state = 30, .external_lex_state = 11}, - [3361] = {.lex_state = 37, .external_lex_state = 18}, - [3362] = {.lex_state = 37, .external_lex_state = 19}, - [3363] = {.lex_state = 37, .external_lex_state = 18}, + [3358] = {.lex_state = 37, .external_lex_state = 17}, + [3359] = {.lex_state = 30, .external_lex_state = 11}, + [3360] = {.lex_state = 37, .external_lex_state = 17}, + [3361] = {.lex_state = 30, .external_lex_state = 16}, + [3362] = {.lex_state = 37, .external_lex_state = 17}, + [3363] = {.lex_state = 30, .external_lex_state = 16}, [3364] = {.lex_state = 30, .external_lex_state = 16}, - [3365] = {.lex_state = 37, .external_lex_state = 18}, + [3365] = {.lex_state = 37, .external_lex_state = 17}, [3366] = {.lex_state = 30, .external_lex_state = 16}, [3367] = {.lex_state = 30, .external_lex_state = 16}, - [3368] = {.lex_state = 30, .external_lex_state = 16}, - [3369] = {.lex_state = 37, .external_lex_state = 18}, + [3368] = {.lex_state = 37, .external_lex_state = 18}, + [3369] = {.lex_state = 37, .external_lex_state = 17}, [3370] = {.lex_state = 30, .external_lex_state = 16}, - [3371] = {.lex_state = 30, .external_lex_state = 16}, + [3371] = {.lex_state = 30, .external_lex_state = 11}, [3372] = {.lex_state = 30, .external_lex_state = 16}, [3373] = {.lex_state = 30, .external_lex_state = 16}, - [3374] = {.lex_state = 30, .external_lex_state = 16}, - [3375] = {.lex_state = 37, .external_lex_state = 19}, - [3376] = {.lex_state = 37, .external_lex_state = 19}, - [3377] = {.lex_state = 37, .external_lex_state = 19}, - [3378] = {.lex_state = 37, .external_lex_state = 19}, - [3379] = {.lex_state = 37, .external_lex_state = 19}, - [3380] = {.lex_state = 37, .external_lex_state = 19}, - [3381] = {.lex_state = 37, .external_lex_state = 19}, + [3374] = {.lex_state = 44}, + [3375] = {.lex_state = 30, .external_lex_state = 16}, + [3376] = {.lex_state = 30, .external_lex_state = 16}, + [3377] = {.lex_state = 37, .external_lex_state = 18}, + [3378] = {.lex_state = 30, .external_lex_state = 16}, + [3379] = {.lex_state = 30, .external_lex_state = 16}, + [3380] = {.lex_state = 30, .external_lex_state = 11}, + [3381] = {.lex_state = 44}, [3382] = {.lex_state = 30, .external_lex_state = 16}, - [3383] = {.lex_state = 37, .external_lex_state = 19}, + [3383] = {.lex_state = 30, .external_lex_state = 16}, [3384] = {.lex_state = 37, .external_lex_state = 19}, - [3385] = {.lex_state = 37, .external_lex_state = 19}, - [3386] = {.lex_state = 37, .external_lex_state = 19}, - [3387] = {.lex_state = 37, .external_lex_state = 19}, - [3388] = {.lex_state = 37, .external_lex_state = 19}, - [3389] = {.lex_state = 37, .external_lex_state = 19}, + [3385] = {.lex_state = 30, .external_lex_state = 16}, + [3386] = {.lex_state = 30, .external_lex_state = 16}, + [3387] = {.lex_state = 30, .external_lex_state = 16}, + [3388] = {.lex_state = 30, .external_lex_state = 16}, + [3389] = {.lex_state = 30, .external_lex_state = 16}, [3390] = {.lex_state = 30, .external_lex_state = 16}, - [3391] = {.lex_state = 37, .external_lex_state = 19}, - [3392] = {.lex_state = 37, .external_lex_state = 16}, - [3393] = {.lex_state = 30, .external_lex_state = 11}, + [3391] = {.lex_state = 30, .external_lex_state = 16}, + [3392] = {.lex_state = 30, .external_lex_state = 16}, + [3393] = {.lex_state = 30, .external_lex_state = 16}, [3394] = {.lex_state = 30, .external_lex_state = 16}, - [3395] = {.lex_state = 37, .external_lex_state = 19}, + [3395] = {.lex_state = 30, .external_lex_state = 11}, [3396] = {.lex_state = 37, .external_lex_state = 18}, - [3397] = {.lex_state = 30, .external_lex_state = 16}, - [3398] = {.lex_state = 30, .external_lex_state = 11}, - [3399] = {.lex_state = 30, .external_lex_state = 11}, + [3397] = {.lex_state = 37, .external_lex_state = 18}, + [3398] = {.lex_state = 30, .external_lex_state = 16}, + [3399] = {.lex_state = 37, .external_lex_state = 18}, [3400] = {.lex_state = 30, .external_lex_state = 16}, [3401] = {.lex_state = 30, .external_lex_state = 16}, - [3402] = {.lex_state = 30, .external_lex_state = 11}, - [3403] = {.lex_state = 30, .external_lex_state = 16}, - [3404] = {.lex_state = 30, .external_lex_state = 16}, - [3405] = {.lex_state = 30, .external_lex_state = 16}, + [3402] = {.lex_state = 37, .external_lex_state = 18}, + [3403] = {.lex_state = 37, .external_lex_state = 18}, + [3404] = {.lex_state = 37, .external_lex_state = 18}, + [3405] = {.lex_state = 37, .external_lex_state = 18}, [3406] = {.lex_state = 30, .external_lex_state = 16}, - [3407] = {.lex_state = 30, .external_lex_state = 11}, + [3407] = {.lex_state = 30, .external_lex_state = 16}, [3408] = {.lex_state = 30, .external_lex_state = 16}, - [3409] = {.lex_state = 30, .external_lex_state = 16}, + [3409] = {.lex_state = 30, .external_lex_state = 11}, [3410] = {.lex_state = 30, .external_lex_state = 16}, [3411] = {.lex_state = 30, .external_lex_state = 16}, [3412] = {.lex_state = 30, .external_lex_state = 16}, - [3413] = {.lex_state = 30, .external_lex_state = 11}, - [3414] = {.lex_state = 30, .external_lex_state = 16}, + [3413] = {.lex_state = 30, .external_lex_state = 16}, + [3414] = {.lex_state = 37, .external_lex_state = 18}, [3415] = {.lex_state = 30, .external_lex_state = 16}, - [3416] = {.lex_state = 30, .external_lex_state = 11}, - [3417] = {.lex_state = 30, .external_lex_state = 11}, + [3416] = {.lex_state = 30, .external_lex_state = 16}, + [3417] = {.lex_state = 30, .external_lex_state = 16}, [3418] = {.lex_state = 30, .external_lex_state = 16}, [3419] = {.lex_state = 30, .external_lex_state = 16}, - [3420] = {.lex_state = 37, .external_lex_state = 18}, - [3421] = {.lex_state = 30, .external_lex_state = 16}, - [3422] = {.lex_state = 37, .external_lex_state = 18}, - [3423] = {.lex_state = 44}, + [3420] = {.lex_state = 30, .external_lex_state = 11}, + [3421] = {.lex_state = 37, .external_lex_state = 18}, + [3422] = {.lex_state = 30, .external_lex_state = 16}, + [3423] = {.lex_state = 30, .external_lex_state = 11}, [3424] = {.lex_state = 30, .external_lex_state = 16}, [3425] = {.lex_state = 30, .external_lex_state = 16}, - [3426] = {.lex_state = 37, .external_lex_state = 18}, - [3427] = {.lex_state = 30, .external_lex_state = 16}, + [3426] = {.lex_state = 30, .external_lex_state = 16}, + [3427] = {.lex_state = 30, .external_lex_state = 11}, [3428] = {.lex_state = 30, .external_lex_state = 16}, - [3429] = {.lex_state = 30, .external_lex_state = 16}, + [3429] = {.lex_state = 30, .external_lex_state = 11}, [3430] = {.lex_state = 30, .external_lex_state = 16}, - [3431] = {.lex_state = 37, .external_lex_state = 18}, - [3432] = {.lex_state = 30, .external_lex_state = 11}, - [3433] = {.lex_state = 30, .external_lex_state = 16}, - [3434] = {.lex_state = 30, .external_lex_state = 16}, - [3435] = {.lex_state = 37, .external_lex_state = 18}, - [3436] = {.lex_state = 30, .external_lex_state = 16}, + [3431] = {.lex_state = 30, .external_lex_state = 16}, + [3432] = {.lex_state = 30, .external_lex_state = 16}, + [3433] = {.lex_state = 37, .external_lex_state = 17}, + [3434] = {.lex_state = 37, .external_lex_state = 17}, + [3435] = {.lex_state = 37, .external_lex_state = 19}, + [3436] = {.lex_state = 37, .external_lex_state = 19}, [3437] = {.lex_state = 30, .external_lex_state = 16}, [3438] = {.lex_state = 30, .external_lex_state = 16}, [3439] = {.lex_state = 30, .external_lex_state = 16}, - [3440] = {.lex_state = 30, .external_lex_state = 16}, - [3441] = {.lex_state = 30, .external_lex_state = 16}, - [3442] = {.lex_state = 30, .external_lex_state = 16}, + [3440] = {.lex_state = 37, .external_lex_state = 18}, + [3441] = {.lex_state = 37, .external_lex_state = 19}, + [3442] = {.lex_state = 37, .external_lex_state = 19}, [3443] = {.lex_state = 30, .external_lex_state = 16}, - [3444] = {.lex_state = 44}, - [3445] = {.lex_state = 30, .external_lex_state = 16}, + [3444] = {.lex_state = 30, .external_lex_state = 11}, + [3445] = {.lex_state = 37, .external_lex_state = 19}, [3446] = {.lex_state = 30, .external_lex_state = 16}, [3447] = {.lex_state = 30, .external_lex_state = 16}, - [3448] = {.lex_state = 30, .external_lex_state = 16}, - [3449] = {.lex_state = 30, .external_lex_state = 11}, + [3448] = {.lex_state = 30, .external_lex_state = 11}, + [3449] = {.lex_state = 30, .external_lex_state = 16}, [3450] = {.lex_state = 30, .external_lex_state = 16}, [3451] = {.lex_state = 30, .external_lex_state = 16}, - [3452] = {.lex_state = 30, .external_lex_state = 16}, + [3452] = {.lex_state = 37, .external_lex_state = 18}, [3453] = {.lex_state = 30, .external_lex_state = 16}, - [3454] = {.lex_state = 30, .external_lex_state = 16}, - [3455] = {.lex_state = 30, .external_lex_state = 16}, - [3456] = {.lex_state = 30, .external_lex_state = 16}, + [3454] = {.lex_state = 37, .external_lex_state = 19}, + [3455] = {.lex_state = 37, .external_lex_state = 19}, + [3456] = {.lex_state = 37, .external_lex_state = 18}, [3457] = {.lex_state = 30, .external_lex_state = 16}, [3458] = {.lex_state = 30, .external_lex_state = 16}, - [3459] = {.lex_state = 30, .external_lex_state = 16}, + [3459] = {.lex_state = 30, .external_lex_state = 11}, [3460] = {.lex_state = 30, .external_lex_state = 16}, [3461] = {.lex_state = 30, .external_lex_state = 16}, - [3462] = {.lex_state = 37, .external_lex_state = 18}, + [3462] = {.lex_state = 30, .external_lex_state = 16}, [3463] = {.lex_state = 30, .external_lex_state = 16}, [3464] = {.lex_state = 30, .external_lex_state = 16}, [3465] = {.lex_state = 30, .external_lex_state = 16}, - [3466] = {.lex_state = 30, .external_lex_state = 16}, + [3466] = {.lex_state = 30, .external_lex_state = 11}, [3467] = {.lex_state = 30, .external_lex_state = 11}, - [3468] = {.lex_state = 37, .external_lex_state = 18}, - [3469] = {.lex_state = 30, .external_lex_state = 11}, - [3470] = {.lex_state = 45}, + [3468] = {.lex_state = 30, .external_lex_state = 16}, + [3469] = {.lex_state = 30, .external_lex_state = 16}, + [3470] = {.lex_state = 30, .external_lex_state = 16}, [3471] = {.lex_state = 30, .external_lex_state = 16}, - [3472] = {.lex_state = 30, .external_lex_state = 11}, + [3472] = {.lex_state = 30, .external_lex_state = 16}, [3473] = {.lex_state = 30, .external_lex_state = 16}, - [3474] = {.lex_state = 37, .external_lex_state = 18}, - [3475] = {.lex_state = 30, .external_lex_state = 16}, + [3474] = {.lex_state = 30, .external_lex_state = 16}, + [3475] = {.lex_state = 37, .external_lex_state = 16}, [3476] = {.lex_state = 30, .external_lex_state = 16}, - [3477] = {.lex_state = 37, .external_lex_state = 18}, - [3478] = {.lex_state = 37, .external_lex_state = 18}, + [3477] = {.lex_state = 30, .external_lex_state = 16}, + [3478] = {.lex_state = 30, .external_lex_state = 11}, [3479] = {.lex_state = 30, .external_lex_state = 16}, [3480] = {.lex_state = 30, .external_lex_state = 16}, [3481] = {.lex_state = 30, .external_lex_state = 16}, - [3482] = {.lex_state = 30, .external_lex_state = 16}, + [3482] = {.lex_state = 45}, [3483] = {.lex_state = 30, .external_lex_state = 16}, [3484] = {.lex_state = 30, .external_lex_state = 16}, - [3485] = {.lex_state = 30, .external_lex_state = 16}, + [3485] = {.lex_state = 30, .external_lex_state = 11}, [3486] = {.lex_state = 30, .external_lex_state = 16}, [3487] = {.lex_state = 30, .external_lex_state = 16}, [3488] = {.lex_state = 30, .external_lex_state = 16}, @@ -23798,109 +23851,109 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3490] = {.lex_state = 30, .external_lex_state = 16}, [3491] = {.lex_state = 30, .external_lex_state = 16}, [3492] = {.lex_state = 30, .external_lex_state = 16}, - [3493] = {.lex_state = 30, .external_lex_state = 16}, - [3494] = {.lex_state = 30, .external_lex_state = 16}, - [3495] = {.lex_state = 30, .external_lex_state = 16}, - [3496] = {.lex_state = 30, .external_lex_state = 16}, + [3493] = {.lex_state = 37, .external_lex_state = 18}, + [3494] = {.lex_state = 30, .external_lex_state = 11}, + [3495] = {.lex_state = 30, .external_lex_state = 11}, + [3496] = {.lex_state = 30, .external_lex_state = 11}, [3497] = {.lex_state = 30, .external_lex_state = 16}, [3498] = {.lex_state = 30, .external_lex_state = 16}, [3499] = {.lex_state = 30, .external_lex_state = 16}, [3500] = {.lex_state = 30, .external_lex_state = 16}, - [3501] = {.lex_state = 30, .external_lex_state = 16}, - [3502] = {.lex_state = 37, .external_lex_state = 18}, - [3503] = {.lex_state = 30, .external_lex_state = 11}, - [3504] = {.lex_state = 30, .external_lex_state = 11}, + [3501] = {.lex_state = 30, .external_lex_state = 11}, + [3502] = {.lex_state = 30, .external_lex_state = 16}, + [3503] = {.lex_state = 30, .external_lex_state = 16}, + [3504] = {.lex_state = 30, .external_lex_state = 16}, [3505] = {.lex_state = 30, .external_lex_state = 16}, [3506] = {.lex_state = 30, .external_lex_state = 16}, [3507] = {.lex_state = 30, .external_lex_state = 16}, - [3508] = {.lex_state = 30, .external_lex_state = 16}, - [3509] = {.lex_state = 30, .external_lex_state = 16}, - [3510] = {.lex_state = 30, .external_lex_state = 11}, - [3511] = {.lex_state = 30, .external_lex_state = 16}, - [3512] = {.lex_state = 30, .external_lex_state = 16}, - [3513] = {.lex_state = 30, .external_lex_state = 11}, - [3514] = {.lex_state = 30, .external_lex_state = 16}, + [3508] = {.lex_state = 37, .external_lex_state = 18}, + [3509] = {.lex_state = 44}, + [3510] = {.lex_state = 30, .external_lex_state = 16}, + [3511] = {.lex_state = 30, .external_lex_state = 11}, + [3512] = {.lex_state = 30, .external_lex_state = 11}, + [3513] = {.lex_state = 30, .external_lex_state = 16}, + [3514] = {.lex_state = 37, .external_lex_state = 18}, [3515] = {.lex_state = 30, .external_lex_state = 16}, - [3516] = {.lex_state = 30, .external_lex_state = 16}, - [3517] = {.lex_state = 30, .external_lex_state = 16}, - [3518] = {.lex_state = 30, .external_lex_state = 16}, + [3516] = {.lex_state = 37, .external_lex_state = 18}, + [3517] = {.lex_state = 44}, + [3518] = {.lex_state = 37, .external_lex_state = 18}, [3519] = {.lex_state = 30, .external_lex_state = 16}, [3520] = {.lex_state = 30, .external_lex_state = 16}, [3521] = {.lex_state = 30, .external_lex_state = 16}, [3522] = {.lex_state = 30, .external_lex_state = 16}, [3523] = {.lex_state = 30, .external_lex_state = 16}, [3524] = {.lex_state = 30, .external_lex_state = 16}, - [3525] = {.lex_state = 30, .external_lex_state = 11}, + [3525] = {.lex_state = 30, .external_lex_state = 16}, [3526] = {.lex_state = 30, .external_lex_state = 16}, [3527] = {.lex_state = 30, .external_lex_state = 16}, [3528] = {.lex_state = 30, .external_lex_state = 16}, - [3529] = {.lex_state = 30, .external_lex_state = 11}, - [3530] = {.lex_state = 30, .external_lex_state = 16}, + [3529] = {.lex_state = 30, .external_lex_state = 16}, + [3530] = {.lex_state = 30, .external_lex_state = 11}, [3531] = {.lex_state = 30, .external_lex_state = 16}, - [3532] = {.lex_state = 37, .external_lex_state = 18}, - [3533] = {.lex_state = 37, .external_lex_state = 18}, - [3534] = {.lex_state = 30, .external_lex_state = 11}, - [3535] = {.lex_state = 30, .external_lex_state = 16}, + [3532] = {.lex_state = 30, .external_lex_state = 16}, + [3533] = {.lex_state = 30, .external_lex_state = 16}, + [3534] = {.lex_state = 30, .external_lex_state = 16}, + [3535] = {.lex_state = 30, .external_lex_state = 11}, [3536] = {.lex_state = 30, .external_lex_state = 16}, [3537] = {.lex_state = 30, .external_lex_state = 16}, - [3538] = {.lex_state = 30, .external_lex_state = 16}, + [3538] = {.lex_state = 30, .external_lex_state = 11}, [3539] = {.lex_state = 30, .external_lex_state = 16}, - [3540] = {.lex_state = 30, .external_lex_state = 16}, + [3540] = {.lex_state = 30, .external_lex_state = 11}, [3541] = {.lex_state = 30, .external_lex_state = 16}, [3542] = {.lex_state = 30, .external_lex_state = 16}, [3543] = {.lex_state = 30, .external_lex_state = 16}, [3544] = {.lex_state = 30, .external_lex_state = 16}, - [3545] = {.lex_state = 37, .external_lex_state = 18}, + [3545] = {.lex_state = 30, .external_lex_state = 16}, [3546] = {.lex_state = 30, .external_lex_state = 16}, - [3547] = {.lex_state = 30, .external_lex_state = 16}, + [3547] = {.lex_state = 30, .external_lex_state = 11}, [3548] = {.lex_state = 30, .external_lex_state = 16}, - [3549] = {.lex_state = 37, .external_lex_state = 16}, + [3549] = {.lex_state = 37, .external_lex_state = 18}, [3550] = {.lex_state = 30, .external_lex_state = 16}, - [3551] = {.lex_state = 30, .external_lex_state = 11}, + [3551] = {.lex_state = 30, .external_lex_state = 16}, [3552] = {.lex_state = 30, .external_lex_state = 16}, - [3553] = {.lex_state = 37, .external_lex_state = 18}, - [3554] = {.lex_state = 30, .external_lex_state = 11}, + [3553] = {.lex_state = 30, .external_lex_state = 16}, + [3554] = {.lex_state = 30, .external_lex_state = 16}, [3555] = {.lex_state = 37, .external_lex_state = 18}, [3556] = {.lex_state = 30, .external_lex_state = 11}, - [3557] = {.lex_state = 37, .external_lex_state = 18}, + [3557] = {.lex_state = 30, .external_lex_state = 11}, [3558] = {.lex_state = 30, .external_lex_state = 16}, [3559] = {.lex_state = 30, .external_lex_state = 16}, - [3560] = {.lex_state = 30, .external_lex_state = 11}, + [3560] = {.lex_state = 30, .external_lex_state = 16}, [3561] = {.lex_state = 30, .external_lex_state = 16}, - [3562] = {.lex_state = 30, .external_lex_state = 11}, - [3563] = {.lex_state = 30, .external_lex_state = 16}, - [3564] = {.lex_state = 30, .external_lex_state = 16}, + [3562] = {.lex_state = 37, .external_lex_state = 18}, + [3563] = {.lex_state = 37, .external_lex_state = 18}, + [3564] = {.lex_state = 37, .external_lex_state = 18}, [3565] = {.lex_state = 37, .external_lex_state = 18}, [3566] = {.lex_state = 30, .external_lex_state = 16}, [3567] = {.lex_state = 30, .external_lex_state = 16}, - [3568] = {.lex_state = 30, .external_lex_state = 16}, + [3568] = {.lex_state = 30, .external_lex_state = 11}, [3569] = {.lex_state = 30, .external_lex_state = 16}, - [3570] = {.lex_state = 30, .external_lex_state = 11}, + [3570] = {.lex_state = 30, .external_lex_state = 16}, [3571] = {.lex_state = 30, .external_lex_state = 11}, [3572] = {.lex_state = 30, .external_lex_state = 16}, [3573] = {.lex_state = 30, .external_lex_state = 16}, [3574] = {.lex_state = 30, .external_lex_state = 16}, [3575] = {.lex_state = 30, .external_lex_state = 16}, - [3576] = {.lex_state = 37, .external_lex_state = 18}, + [3576] = {.lex_state = 30, .external_lex_state = 16}, [3577] = {.lex_state = 30, .external_lex_state = 16}, [3578] = {.lex_state = 30, .external_lex_state = 16}, - [3579] = {.lex_state = 30, .external_lex_state = 16}, + [3579] = {.lex_state = 37, .external_lex_state = 18}, [3580] = {.lex_state = 30, .external_lex_state = 16}, - [3581] = {.lex_state = 30, .external_lex_state = 16}, + [3581] = {.lex_state = 37, .external_lex_state = 18}, [3582] = {.lex_state = 30, .external_lex_state = 16}, - [3583] = {.lex_state = 30, .external_lex_state = 16}, + [3583] = {.lex_state = 30, .external_lex_state = 11}, [3584] = {.lex_state = 30, .external_lex_state = 16}, [3585] = {.lex_state = 30, .external_lex_state = 16}, [3586] = {.lex_state = 30, .external_lex_state = 16}, [3587] = {.lex_state = 30, .external_lex_state = 16}, - [3588] = {.lex_state = 30, .external_lex_state = 16}, + [3588] = {.lex_state = 37, .external_lex_state = 18}, [3589] = {.lex_state = 30, .external_lex_state = 16}, - [3590] = {.lex_state = 30, .external_lex_state = 16}, + [3590] = {.lex_state = 37, .external_lex_state = 18}, [3591] = {.lex_state = 30, .external_lex_state = 16}, [3592] = {.lex_state = 30, .external_lex_state = 16}, [3593] = {.lex_state = 30, .external_lex_state = 16}, - [3594] = {.lex_state = 30, .external_lex_state = 16}, - [3595] = {.lex_state = 30, .external_lex_state = 16}, + [3594] = {.lex_state = 37, .external_lex_state = 18}, + [3595] = {.lex_state = 37, .external_lex_state = 18}, [3596] = {.lex_state = 30, .external_lex_state = 16}, [3597] = {.lex_state = 30, .external_lex_state = 16}, [3598] = {.lex_state = 30, .external_lex_state = 16}, @@ -23920,24 +23973,24 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3612] = {.lex_state = 30, .external_lex_state = 16}, [3613] = {.lex_state = 30, .external_lex_state = 16}, [3614] = {.lex_state = 30, .external_lex_state = 16}, - [3615] = {.lex_state = 30, .external_lex_state = 11}, + [3615] = {.lex_state = 30, .external_lex_state = 16}, [3616] = {.lex_state = 30, .external_lex_state = 16}, [3617] = {.lex_state = 30, .external_lex_state = 16}, [3618] = {.lex_state = 30, .external_lex_state = 16}, - [3619] = {.lex_state = 30, .external_lex_state = 11}, + [3619] = {.lex_state = 30, .external_lex_state = 16}, [3620] = {.lex_state = 30, .external_lex_state = 16}, [3621] = {.lex_state = 30, .external_lex_state = 16}, [3622] = {.lex_state = 30, .external_lex_state = 16}, [3623] = {.lex_state = 30, .external_lex_state = 16}, [3624] = {.lex_state = 30, .external_lex_state = 16}, [3625] = {.lex_state = 30, .external_lex_state = 16}, - [3626] = {.lex_state = 30, .external_lex_state = 16}, - [3627] = {.lex_state = 30, .external_lex_state = 16}, + [3626] = {.lex_state = 37, .external_lex_state = 18}, + [3627] = {.lex_state = 30, .external_lex_state = 11}, [3628] = {.lex_state = 30, .external_lex_state = 16}, [3629] = {.lex_state = 30, .external_lex_state = 16}, - [3630] = {.lex_state = 30, .external_lex_state = 11}, + [3630] = {.lex_state = 30, .external_lex_state = 16}, [3631] = {.lex_state = 30, .external_lex_state = 16}, - [3632] = {.lex_state = 30, .external_lex_state = 16}, + [3632] = {.lex_state = 30, .external_lex_state = 11}, [3633] = {.lex_state = 30, .external_lex_state = 16}, [3634] = {.lex_state = 30, .external_lex_state = 16}, [3635] = {.lex_state = 30, .external_lex_state = 16}, @@ -23949,7 +24002,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3641] = {.lex_state = 30, .external_lex_state = 16}, [3642] = {.lex_state = 30, .external_lex_state = 16}, [3643] = {.lex_state = 30, .external_lex_state = 16}, - [3644] = {.lex_state = 30, .external_lex_state = 16}, + [3644] = {.lex_state = 37, .external_lex_state = 18}, [3645] = {.lex_state = 30, .external_lex_state = 16}, [3646] = {.lex_state = 30, .external_lex_state = 16}, [3647] = {.lex_state = 30, .external_lex_state = 16}, @@ -24008,13 +24061,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3700] = {.lex_state = 30, .external_lex_state = 16}, [3701] = {.lex_state = 30, .external_lex_state = 16}, [3702] = {.lex_state = 30, .external_lex_state = 16}, - [3703] = {.lex_state = 30, .external_lex_state = 16}, + [3703] = {.lex_state = 30, .external_lex_state = 11}, [3704] = {.lex_state = 30, .external_lex_state = 16}, [3705] = {.lex_state = 30, .external_lex_state = 16}, [3706] = {.lex_state = 30, .external_lex_state = 16}, [3707] = {.lex_state = 30, .external_lex_state = 16}, [3708] = {.lex_state = 30, .external_lex_state = 16}, - [3709] = {.lex_state = 30, .external_lex_state = 16}, + [3709] = {.lex_state = 30, .external_lex_state = 11}, [3710] = {.lex_state = 30, .external_lex_state = 16}, [3711] = {.lex_state = 30, .external_lex_state = 16}, [3712] = {.lex_state = 30, .external_lex_state = 16}, @@ -24044,7 +24097,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3736] = {.lex_state = 30, .external_lex_state = 16}, [3737] = {.lex_state = 30, .external_lex_state = 16}, [3738] = {.lex_state = 30, .external_lex_state = 16}, - [3739] = {.lex_state = 30, .external_lex_state = 16}, + [3739] = {.lex_state = 30, .external_lex_state = 11}, [3740] = {.lex_state = 30, .external_lex_state = 16}, [3741] = {.lex_state = 30, .external_lex_state = 16}, [3742] = {.lex_state = 30, .external_lex_state = 16}, @@ -24107,7 +24160,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3799] = {.lex_state = 30, .external_lex_state = 16}, [3800] = {.lex_state = 30, .external_lex_state = 16}, [3801] = {.lex_state = 30, .external_lex_state = 16}, - [3802] = {.lex_state = 44}, + [3802] = {.lex_state = 30, .external_lex_state = 16}, [3803] = {.lex_state = 30, .external_lex_state = 16}, [3804] = {.lex_state = 30, .external_lex_state = 16}, [3805] = {.lex_state = 30, .external_lex_state = 16}, @@ -24118,793 +24171,793 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3810] = {.lex_state = 30, .external_lex_state = 16}, [3811] = {.lex_state = 30, .external_lex_state = 16}, [3812] = {.lex_state = 30, .external_lex_state = 16}, - [3813] = {.lex_state = 44}, - [3814] = {.lex_state = 44}, + [3813] = {.lex_state = 30, .external_lex_state = 16}, + [3814] = {.lex_state = 30, .external_lex_state = 16}, [3815] = {.lex_state = 30, .external_lex_state = 16}, [3816] = {.lex_state = 30, .external_lex_state = 16}, [3817] = {.lex_state = 30, .external_lex_state = 16}, [3818] = {.lex_state = 30, .external_lex_state = 16}, [3819] = {.lex_state = 30, .external_lex_state = 16}, [3820] = {.lex_state = 30, .external_lex_state = 16}, - [3821] = {.lex_state = 44}, - [3822] = {.lex_state = 44}, - [3823] = {.lex_state = 44}, - [3824] = {.lex_state = 44}, - [3825] = {.lex_state = 44}, - [3826] = {.lex_state = 44}, - [3827] = {.lex_state = 44}, - [3828] = {.lex_state = 44}, - [3829] = {.lex_state = 44}, - [3830] = {.lex_state = 44}, - [3831] = {.lex_state = 44}, - [3832] = {.lex_state = 44}, - [3833] = {.lex_state = 44}, - [3834] = {.lex_state = 44}, - [3835] = {.lex_state = 44}, - [3836] = {.lex_state = 44}, - [3837] = {.lex_state = 44}, - [3838] = {.lex_state = 44}, - [3839] = {.lex_state = 44}, - [3840] = {.lex_state = 44}, - [3841] = {.lex_state = 43}, - [3842] = {.lex_state = 43}, - [3843] = {.lex_state = 45}, - [3844] = {.lex_state = 45}, - [3845] = {.lex_state = 45}, - [3846] = {.lex_state = 45}, - [3847] = {.lex_state = 45}, - [3848] = {.lex_state = 45}, - [3849] = {.lex_state = 45}, - [3850] = {.lex_state = 63}, - [3851] = {.lex_state = 63}, - [3852] = {.lex_state = 63}, - [3853] = {.lex_state = 63}, - [3854] = {.lex_state = 63}, - [3855] = {.lex_state = 63}, - [3856] = {.lex_state = 63}, - [3857] = {.lex_state = 63}, - [3858] = {.lex_state = 63}, - [3859] = {.lex_state = 53}, - [3860] = {.lex_state = 53}, - [3861] = {.lex_state = 53}, - [3862] = {.lex_state = 53}, - [3863] = {.lex_state = 53}, - [3864] = {.lex_state = 53}, - [3865] = {.lex_state = 29}, - [3866] = {.lex_state = 29}, - [3867] = {.lex_state = 29}, - [3868] = {.lex_state = 29}, - [3869] = {.lex_state = 29}, - [3870] = {.lex_state = 29}, - [3871] = {.lex_state = 29}, - [3872] = {.lex_state = 29}, - [3873] = {.lex_state = 29}, - [3874] = {.lex_state = 29}, - [3875] = {.lex_state = 29}, - [3876] = {.lex_state = 5}, - [3877] = {.lex_state = 5}, - [3878] = {.lex_state = 5}, - [3879] = {.lex_state = 5}, - [3880] = {.lex_state = 5}, - [3881] = {.lex_state = 5}, - [3882] = {.lex_state = 30}, - [3883] = {.lex_state = 5}, - [3884] = {.lex_state = 5}, - [3885] = {.lex_state = 5}, - [3886] = {.lex_state = 5}, - [3887] = {.lex_state = 30}, - [3888] = {.lex_state = 5}, - [3889] = {.lex_state = 5}, - [3890] = {.lex_state = 5}, - [3891] = {.lex_state = 30, .external_lex_state = 21}, - [3892] = {.lex_state = 5}, - [3893] = {.lex_state = 5}, - [3894] = {.lex_state = 5}, - [3895] = {.lex_state = 5}, - [3896] = {.lex_state = 5}, - [3897] = {.lex_state = 5}, - [3898] = {.lex_state = 5}, - [3899] = {.lex_state = 5}, - [3900] = {.lex_state = 5}, - [3901] = {.lex_state = 5}, - [3902] = {.lex_state = 5}, - [3903] = {.lex_state = 30, .external_lex_state = 21}, - [3904] = {.lex_state = 30}, - [3905] = {.lex_state = 30}, - [3906] = {.lex_state = 30}, - [3907] = {.lex_state = 30}, - [3908] = {.lex_state = 30}, - [3909] = {.lex_state = 30}, - [3910] = {.lex_state = 30}, - [3911] = {.lex_state = 30}, - [3912] = {.lex_state = 30}, - [3913] = {.lex_state = 30}, + [3821] = {.lex_state = 30, .external_lex_state = 16}, + [3822] = {.lex_state = 30, .external_lex_state = 16}, + [3823] = {.lex_state = 30, .external_lex_state = 16}, + [3824] = {.lex_state = 30, .external_lex_state = 16}, + [3825] = {.lex_state = 30, .external_lex_state = 16}, + [3826] = {.lex_state = 30, .external_lex_state = 16}, + [3827] = {.lex_state = 30, .external_lex_state = 16}, + [3828] = {.lex_state = 30, .external_lex_state = 16}, + [3829] = {.lex_state = 30, .external_lex_state = 16}, + [3830] = {.lex_state = 30, .external_lex_state = 16}, + [3831] = {.lex_state = 30, .external_lex_state = 16}, + [3832] = {.lex_state = 30, .external_lex_state = 16}, + [3833] = {.lex_state = 30, .external_lex_state = 16}, + [3834] = {.lex_state = 30, .external_lex_state = 16}, + [3835] = {.lex_state = 30, .external_lex_state = 16}, + [3836] = {.lex_state = 30, .external_lex_state = 16}, + [3837] = {.lex_state = 30, .external_lex_state = 16}, + [3838] = {.lex_state = 30, .external_lex_state = 16}, + [3839] = {.lex_state = 30, .external_lex_state = 16}, + [3840] = {.lex_state = 30, .external_lex_state = 16}, + [3841] = {.lex_state = 30, .external_lex_state = 16}, + [3842] = {.lex_state = 30, .external_lex_state = 16}, + [3843] = {.lex_state = 30, .external_lex_state = 16}, + [3844] = {.lex_state = 30, .external_lex_state = 16}, + [3845] = {.lex_state = 30, .external_lex_state = 16}, + [3846] = {.lex_state = 30, .external_lex_state = 16}, + [3847] = {.lex_state = 30, .external_lex_state = 16}, + [3848] = {.lex_state = 30, .external_lex_state = 16}, + [3849] = {.lex_state = 30, .external_lex_state = 16}, + [3850] = {.lex_state = 30, .external_lex_state = 16}, + [3851] = {.lex_state = 30, .external_lex_state = 16}, + [3852] = {.lex_state = 30, .external_lex_state = 16}, + [3853] = {.lex_state = 30, .external_lex_state = 16}, + [3854] = {.lex_state = 30, .external_lex_state = 16}, + [3855] = {.lex_state = 30, .external_lex_state = 16}, + [3856] = {.lex_state = 44}, + [3857] = {.lex_state = 44}, + [3858] = {.lex_state = 30, .external_lex_state = 16}, + [3859] = {.lex_state = 30, .external_lex_state = 16}, + [3860] = {.lex_state = 30, .external_lex_state = 16}, + [3861] = {.lex_state = 30, .external_lex_state = 16}, + [3862] = {.lex_state = 30, .external_lex_state = 16}, + [3863] = {.lex_state = 30, .external_lex_state = 16}, + [3864] = {.lex_state = 30, .external_lex_state = 16}, + [3865] = {.lex_state = 30, .external_lex_state = 16}, + [3866] = {.lex_state = 30, .external_lex_state = 16}, + [3867] = {.lex_state = 30, .external_lex_state = 16}, + [3868] = {.lex_state = 30, .external_lex_state = 16}, + [3869] = {.lex_state = 30, .external_lex_state = 16}, + [3870] = {.lex_state = 30, .external_lex_state = 16}, + [3871] = {.lex_state = 30, .external_lex_state = 16}, + [3872] = {.lex_state = 44}, + [3873] = {.lex_state = 30, .external_lex_state = 16}, + [3874] = {.lex_state = 44}, + [3875] = {.lex_state = 44}, + [3876] = {.lex_state = 44}, + [3877] = {.lex_state = 44}, + [3878] = {.lex_state = 44}, + [3879] = {.lex_state = 44}, + [3880] = {.lex_state = 44}, + [3881] = {.lex_state = 44}, + [3882] = {.lex_state = 44}, + [3883] = {.lex_state = 44}, + [3884] = {.lex_state = 44}, + [3885] = {.lex_state = 44}, + [3886] = {.lex_state = 44}, + [3887] = {.lex_state = 44}, + [3888] = {.lex_state = 44}, + [3889] = {.lex_state = 44}, + [3890] = {.lex_state = 44}, + [3891] = {.lex_state = 44}, + [3892] = {.lex_state = 44}, + [3893] = {.lex_state = 44}, + [3894] = {.lex_state = 43}, + [3895] = {.lex_state = 45}, + [3896] = {.lex_state = 43}, + [3897] = {.lex_state = 45}, + [3898] = {.lex_state = 45}, + [3899] = {.lex_state = 45}, + [3900] = {.lex_state = 45}, + [3901] = {.lex_state = 45}, + [3902] = {.lex_state = 45}, + [3903] = {.lex_state = 63}, + [3904] = {.lex_state = 63}, + [3905] = {.lex_state = 63}, + [3906] = {.lex_state = 63}, + [3907] = {.lex_state = 63}, + [3908] = {.lex_state = 63}, + [3909] = {.lex_state = 63}, + [3910] = {.lex_state = 63}, + [3911] = {.lex_state = 63}, + [3912] = {.lex_state = 53}, + [3913] = {.lex_state = 53}, [3914] = {.lex_state = 53}, - [3915] = {.lex_state = 49}, - [3916] = {.lex_state = 49}, + [3915] = {.lex_state = 53}, + [3916] = {.lex_state = 53}, [3917] = {.lex_state = 53}, - [3918] = {.lex_state = 49}, - [3919] = {.lex_state = 53, .external_lex_state = 21}, - [3920] = {.lex_state = 49}, - [3921] = {.lex_state = 49}, - [3922] = {.lex_state = 49}, - [3923] = {.lex_state = 49}, - [3924] = {.lex_state = 49}, - [3925] = {.lex_state = 49}, - [3926] = {.lex_state = 49}, - [3927] = {.lex_state = 52}, - [3928] = {.lex_state = 54}, - [3929] = {.lex_state = 54}, - [3930] = {.lex_state = 49, .external_lex_state = 21}, - [3931] = {.lex_state = 49, .external_lex_state = 21}, - [3932] = {.lex_state = 49}, - [3933] = {.lex_state = 54}, - [3934] = {.lex_state = 49, .external_lex_state = 21}, - [3935] = {.lex_state = 49, .external_lex_state = 22}, - [3936] = {.lex_state = 54}, - [3937] = {.lex_state = 54}, - [3938] = {.lex_state = 49}, - [3939] = {.lex_state = 49}, - [3940] = {.lex_state = 53, .external_lex_state = 21}, - [3941] = {.lex_state = 49}, - [3942] = {.lex_state = 49, .external_lex_state = 21}, - [3943] = {.lex_state = 49}, - [3944] = {.lex_state = 54}, - [3945] = {.lex_state = 49}, - [3946] = {.lex_state = 53, .external_lex_state = 21}, - [3947] = {.lex_state = 53, .external_lex_state = 21}, - [3948] = {.lex_state = 53, .external_lex_state = 21}, - [3949] = {.lex_state = 53, .external_lex_state = 21}, - [3950] = {.lex_state = 53, .external_lex_state = 21}, - [3951] = {.lex_state = 53, .external_lex_state = 21}, - [3952] = {.lex_state = 53, .external_lex_state = 21}, - [3953] = {.lex_state = 53, .external_lex_state = 21}, - [3954] = {.lex_state = 42}, - [3955] = {.lex_state = 42}, - [3956] = {.lex_state = 50}, - [3957] = {.lex_state = 42}, - [3958] = {.lex_state = 49, .external_lex_state = 23}, - [3959] = {.lex_state = 49}, - [3960] = {.lex_state = 50}, - [3961] = {.lex_state = 42}, - [3962] = {.lex_state = 49, .external_lex_state = 23}, - [3963] = {.lex_state = 50}, - [3964] = {.lex_state = 49, .external_lex_state = 23}, - [3965] = {.lex_state = 49}, - [3966] = {.lex_state = 49}, - [3967] = {.lex_state = 49}, - [3968] = {.lex_state = 42}, - [3969] = {.lex_state = 50}, - [3970] = {.lex_state = 49, .external_lex_state = 23}, - [3971] = {.lex_state = 42}, - [3972] = {.lex_state = 29, .external_lex_state = 21}, - [3973] = {.lex_state = 50}, - [3974] = {.lex_state = 42}, - [3975] = {.lex_state = 50}, - [3976] = {.lex_state = 49, .external_lex_state = 23}, - [3977] = {.lex_state = 50}, - [3978] = {.lex_state = 49, .external_lex_state = 23}, - [3979] = {.lex_state = 51}, - [3980] = {.lex_state = 49, .external_lex_state = 23}, - [3981] = {.lex_state = 50}, - [3982] = {.lex_state = 50}, - [3983] = {.lex_state = 49, .external_lex_state = 23}, - [3984] = {.lex_state = 49}, - [3985] = {.lex_state = 50}, - [3986] = {.lex_state = 42}, - [3987] = {.lex_state = 42}, - [3988] = {.lex_state = 49, .external_lex_state = 23}, - [3989] = {.lex_state = 29, .external_lex_state = 21}, - [3990] = {.lex_state = 42}, - [3991] = {.lex_state = 50}, - [3992] = {.lex_state = 50}, + [3918] = {.lex_state = 29}, + [3919] = {.lex_state = 29}, + [3920] = {.lex_state = 29}, + [3921] = {.lex_state = 29}, + [3922] = {.lex_state = 29}, + [3923] = {.lex_state = 29}, + [3924] = {.lex_state = 29}, + [3925] = {.lex_state = 29}, + [3926] = {.lex_state = 29}, + [3927] = {.lex_state = 29}, + [3928] = {.lex_state = 29}, + [3929] = {.lex_state = 5}, + [3930] = {.lex_state = 5}, + [3931] = {.lex_state = 30}, + [3932] = {.lex_state = 5}, + [3933] = {.lex_state = 5}, + [3934] = {.lex_state = 30, .external_lex_state = 21}, + [3935] = {.lex_state = 5}, + [3936] = {.lex_state = 5}, + [3937] = {.lex_state = 5}, + [3938] = {.lex_state = 5}, + [3939] = {.lex_state = 5}, + [3940] = {.lex_state = 30}, + [3941] = {.lex_state = 5}, + [3942] = {.lex_state = 5}, + [3943] = {.lex_state = 5}, + [3944] = {.lex_state = 5}, + [3945] = {.lex_state = 5}, + [3946] = {.lex_state = 5}, + [3947] = {.lex_state = 5}, + [3948] = {.lex_state = 30, .external_lex_state = 21}, + [3949] = {.lex_state = 5}, + [3950] = {.lex_state = 5}, + [3951] = {.lex_state = 5}, + [3952] = {.lex_state = 5}, + [3953] = {.lex_state = 5}, + [3954] = {.lex_state = 5}, + [3955] = {.lex_state = 5}, + [3956] = {.lex_state = 5}, + [3957] = {.lex_state = 30}, + [3958] = {.lex_state = 30}, + [3959] = {.lex_state = 30}, + [3960] = {.lex_state = 30}, + [3961] = {.lex_state = 30}, + [3962] = {.lex_state = 30}, + [3963] = {.lex_state = 30}, + [3964] = {.lex_state = 30}, + [3965] = {.lex_state = 30}, + [3966] = {.lex_state = 30}, + [3967] = {.lex_state = 53}, + [3968] = {.lex_state = 49}, + [3969] = {.lex_state = 53}, + [3970] = {.lex_state = 49}, + [3971] = {.lex_state = 49}, + [3972] = {.lex_state = 49}, + [3973] = {.lex_state = 53, .external_lex_state = 21}, + [3974] = {.lex_state = 49}, + [3975] = {.lex_state = 49, .external_lex_state = 21}, + [3976] = {.lex_state = 54}, + [3977] = {.lex_state = 49, .external_lex_state = 21}, + [3978] = {.lex_state = 49, .external_lex_state = 21}, + [3979] = {.lex_state = 54}, + [3980] = {.lex_state = 49}, + [3981] = {.lex_state = 49}, + [3982] = {.lex_state = 49, .external_lex_state = 22}, + [3983] = {.lex_state = 53, .external_lex_state = 21}, + [3984] = {.lex_state = 54}, + [3985] = {.lex_state = 49}, + [3986] = {.lex_state = 54}, + [3987] = {.lex_state = 54}, + [3988] = {.lex_state = 54}, + [3989] = {.lex_state = 49}, + [3990] = {.lex_state = 49}, + [3991] = {.lex_state = 49, .external_lex_state = 21}, + [3992] = {.lex_state = 49}, [3993] = {.lex_state = 49}, - [3994] = {.lex_state = 42}, - [3995] = {.lex_state = 50}, - [3996] = {.lex_state = 51}, - [3997] = {.lex_state = 42}, - [3998] = {.lex_state = 50}, - [3999] = {.lex_state = 50}, - [4000] = {.lex_state = 50}, - [4001] = {.lex_state = 50}, - [4002] = {.lex_state = 49}, - [4003] = {.lex_state = 42}, - [4004] = {.lex_state = 42}, - [4005] = {.lex_state = 49, .external_lex_state = 22}, - [4006] = {.lex_state = 49}, + [3994] = {.lex_state = 49}, + [3995] = {.lex_state = 52}, + [3996] = {.lex_state = 49}, + [3997] = {.lex_state = 53, .external_lex_state = 21}, + [3998] = {.lex_state = 49}, + [3999] = {.lex_state = 49}, + [4000] = {.lex_state = 53, .external_lex_state = 21}, + [4001] = {.lex_state = 53, .external_lex_state = 21}, + [4002] = {.lex_state = 53, .external_lex_state = 21}, + [4003] = {.lex_state = 53, .external_lex_state = 21}, + [4004] = {.lex_state = 53, .external_lex_state = 21}, + [4005] = {.lex_state = 53, .external_lex_state = 21}, + [4006] = {.lex_state = 53, .external_lex_state = 21}, [4007] = {.lex_state = 42}, [4008] = {.lex_state = 50}, [4009] = {.lex_state = 42}, - [4010] = {.lex_state = 29, .external_lex_state = 21}, + [4010] = {.lex_state = 50}, [4011] = {.lex_state = 49}, - [4012] = {.lex_state = 50}, + [4012] = {.lex_state = 42}, [4013] = {.lex_state = 50}, - [4014] = {.lex_state = 49}, - [4015] = {.lex_state = 42}, + [4014] = {.lex_state = 49, .external_lex_state = 23}, + [4015] = {.lex_state = 49}, [4016] = {.lex_state = 49, .external_lex_state = 23}, - [4017] = {.lex_state = 42}, + [4017] = {.lex_state = 49, .external_lex_state = 23}, [4018] = {.lex_state = 42}, [4019] = {.lex_state = 50}, - [4020] = {.lex_state = 49}, - [4021] = {.lex_state = 29, .external_lex_state = 21}, - [4022] = {.lex_state = 42}, - [4023] = {.lex_state = 42}, + [4020] = {.lex_state = 49, .external_lex_state = 23}, + [4021] = {.lex_state = 42}, + [4022] = {.lex_state = 50}, + [4023] = {.lex_state = 29, .external_lex_state = 21}, [4024] = {.lex_state = 42}, - [4025] = {.lex_state = 50}, - [4026] = {.lex_state = 50}, - [4027] = {.lex_state = 42}, - [4028] = {.lex_state = 51}, + [4025] = {.lex_state = 49}, + [4026] = {.lex_state = 49, .external_lex_state = 23}, + [4027] = {.lex_state = 50}, + [4028] = {.lex_state = 42}, [4029] = {.lex_state = 50}, - [4030] = {.lex_state = 50}, + [4030] = {.lex_state = 42}, [4031] = {.lex_state = 50}, [4032] = {.lex_state = 49}, - [4033] = {.lex_state = 49}, - [4034] = {.lex_state = 42}, + [4033] = {.lex_state = 50}, + [4034] = {.lex_state = 51}, [4035] = {.lex_state = 49}, [4036] = {.lex_state = 42}, - [4037] = {.lex_state = 42}, + [4037] = {.lex_state = 29, .external_lex_state = 21}, [4038] = {.lex_state = 42}, [4039] = {.lex_state = 50}, - [4040] = {.lex_state = 50}, - [4041] = {.lex_state = 42}, - [4042] = {.lex_state = 49, .external_lex_state = 23}, - [4043] = {.lex_state = 42}, - [4044] = {.lex_state = 49}, - [4045] = {.lex_state = 50}, - [4046] = {.lex_state = 50}, - [4047] = {.lex_state = 49}, - [4048] = {.lex_state = 49, .external_lex_state = 23}, + [4040] = {.lex_state = 49, .external_lex_state = 23}, + [4041] = {.lex_state = 49, .external_lex_state = 23}, + [4042] = {.lex_state = 50}, + [4043] = {.lex_state = 49}, + [4044] = {.lex_state = 42}, + [4045] = {.lex_state = 49, .external_lex_state = 23}, + [4046] = {.lex_state = 42}, + [4047] = {.lex_state = 42}, + [4048] = {.lex_state = 50}, [4049] = {.lex_state = 42}, - [4050] = {.lex_state = 29, .external_lex_state = 21}, - [4051] = {.lex_state = 50}, - [4052] = {.lex_state = 42}, - [4053] = {.lex_state = 29, .external_lex_state = 21}, - [4054] = {.lex_state = 49, .external_lex_state = 24}, - [4055] = {.lex_state = 49, .external_lex_state = 23}, - [4056] = {.lex_state = 49, .external_lex_state = 23}, - [4057] = {.lex_state = 389}, - [4058] = {.lex_state = 49, .external_lex_state = 23}, - [4059] = {.lex_state = 49, .external_lex_state = 23}, - [4060] = {.lex_state = 54}, - [4061] = {.lex_state = 53, .external_lex_state = 21}, - [4062] = {.lex_state = 389}, - [4063] = {.lex_state = 49, .external_lex_state = 23}, - [4064] = {.lex_state = 49, .external_lex_state = 23}, - [4065] = {.lex_state = 49, .external_lex_state = 24}, - [4066] = {.lex_state = 54}, - [4067] = {.lex_state = 49}, - [4068] = {.lex_state = 49, .external_lex_state = 24}, - [4069] = {.lex_state = 389}, - [4070] = {.lex_state = 49, .external_lex_state = 23}, - [4071] = {.lex_state = 49, .external_lex_state = 21}, - [4072] = {.lex_state = 389}, - [4073] = {.lex_state = 49, .external_lex_state = 23}, - [4074] = {.lex_state = 49, .external_lex_state = 23}, - [4075] = {.lex_state = 389}, - [4076] = {.lex_state = 29}, - [4077] = {.lex_state = 389}, + [4050] = {.lex_state = 50}, + [4051] = {.lex_state = 49}, + [4052] = {.lex_state = 50}, + [4053] = {.lex_state = 42}, + [4054] = {.lex_state = 50}, + [4055] = {.lex_state = 49}, + [4056] = {.lex_state = 50}, + [4057] = {.lex_state = 42}, + [4058] = {.lex_state = 50}, + [4059] = {.lex_state = 29, .external_lex_state = 21}, + [4060] = {.lex_state = 49}, + [4061] = {.lex_state = 42}, + [4062] = {.lex_state = 50}, + [4063] = {.lex_state = 42}, + [4064] = {.lex_state = 49}, + [4065] = {.lex_state = 42}, + [4066] = {.lex_state = 50}, + [4067] = {.lex_state = 42}, + [4068] = {.lex_state = 42}, + [4069] = {.lex_state = 49, .external_lex_state = 23}, + [4070] = {.lex_state = 50}, + [4071] = {.lex_state = 50}, + [4072] = {.lex_state = 42}, + [4073] = {.lex_state = 49}, + [4074] = {.lex_state = 49}, + [4075] = {.lex_state = 49, .external_lex_state = 22}, + [4076] = {.lex_state = 50}, + [4077] = {.lex_state = 49}, [4078] = {.lex_state = 49, .external_lex_state = 23}, - [4079] = {.lex_state = 49, .external_lex_state = 23}, - [4080] = {.lex_state = 389}, - [4081] = {.lex_state = 389}, - [4082] = {.lex_state = 49, .external_lex_state = 23}, - [4083] = {.lex_state = 49, .external_lex_state = 23}, - [4084] = {.lex_state = 389}, - [4085] = {.lex_state = 49, .external_lex_state = 23}, - [4086] = {.lex_state = 389}, - [4087] = {.lex_state = 49, .external_lex_state = 23}, - [4088] = {.lex_state = 49, .external_lex_state = 23}, - [4089] = {.lex_state = 49}, - [4090] = {.lex_state = 389}, - [4091] = {.lex_state = 389}, - [4092] = {.lex_state = 389}, - [4093] = {.lex_state = 49, .external_lex_state = 24}, - [4094] = {.lex_state = 53, .external_lex_state = 21}, - [4095] = {.lex_state = 389}, - [4096] = {.lex_state = 389}, - [4097] = {.lex_state = 49, .external_lex_state = 23}, - [4098] = {.lex_state = 49, .external_lex_state = 23}, - [4099] = {.lex_state = 49, .external_lex_state = 23}, - [4100] = {.lex_state = 49, .external_lex_state = 23}, - [4101] = {.lex_state = 49, .external_lex_state = 23}, - [4102] = {.lex_state = 49, .external_lex_state = 23}, - [4103] = {.lex_state = 49, .external_lex_state = 23}, - [4104] = {.lex_state = 49, .external_lex_state = 23}, - [4105] = {.lex_state = 49, .external_lex_state = 23}, - [4106] = {.lex_state = 389}, - [4107] = {.lex_state = 49}, - [4108] = {.lex_state = 49, .external_lex_state = 24}, - [4109] = {.lex_state = 49, .external_lex_state = 23}, - [4110] = {.lex_state = 53}, - [4111] = {.lex_state = 29, .external_lex_state = 21}, - [4112] = {.lex_state = 29, .external_lex_state = 21}, - [4113] = {.lex_state = 49, .external_lex_state = 24}, - [4114] = {.lex_state = 29, .external_lex_state = 21}, - [4115] = {.lex_state = 29, .external_lex_state = 21}, - [4116] = {.lex_state = 49}, - [4117] = {.lex_state = 49, .external_lex_state = 23}, - [4118] = {.lex_state = 29, .external_lex_state = 21}, - [4119] = {.lex_state = 29, .external_lex_state = 21}, - [4120] = {.lex_state = 29, .external_lex_state = 21}, - [4121] = {.lex_state = 29, .external_lex_state = 21}, - [4122] = {.lex_state = 29, .external_lex_state = 21}, - [4123] = {.lex_state = 29, .external_lex_state = 21}, - [4124] = {.lex_state = 49, .external_lex_state = 23}, - [4125] = {.lex_state = 29, .external_lex_state = 21}, - [4126] = {.lex_state = 389}, + [4079] = {.lex_state = 42}, + [4080] = {.lex_state = 50}, + [4081] = {.lex_state = 29, .external_lex_state = 21}, + [4082] = {.lex_state = 50}, + [4083] = {.lex_state = 51}, + [4084] = {.lex_state = 49, .external_lex_state = 23}, + [4085] = {.lex_state = 42}, + [4086] = {.lex_state = 49}, + [4087] = {.lex_state = 42}, + [4088] = {.lex_state = 50}, + [4089] = {.lex_state = 42}, + [4090] = {.lex_state = 50}, + [4091] = {.lex_state = 49, .external_lex_state = 23}, + [4092] = {.lex_state = 49}, + [4093] = {.lex_state = 51}, + [4094] = {.lex_state = 42}, + [4095] = {.lex_state = 50}, + [4096] = {.lex_state = 49}, + [4097] = {.lex_state = 42}, + [4098] = {.lex_state = 50}, + [4099] = {.lex_state = 42}, + [4100] = {.lex_state = 50}, + [4101] = {.lex_state = 29, .external_lex_state = 21}, + [4102] = {.lex_state = 42}, + [4103] = {.lex_state = 50}, + [4104] = {.lex_state = 50}, + [4105] = {.lex_state = 42}, + [4106] = {.lex_state = 29, .external_lex_state = 21}, + [4107] = {.lex_state = 29, .external_lex_state = 21}, + [4108] = {.lex_state = 49, .external_lex_state = 23}, + [4109] = {.lex_state = 53, .external_lex_state = 21}, + [4110] = {.lex_state = 49, .external_lex_state = 23}, + [4111] = {.lex_state = 53, .external_lex_state = 21}, + [4112] = {.lex_state = 49, .external_lex_state = 23}, + [4113] = {.lex_state = 389}, + [4114] = {.lex_state = 49}, + [4115] = {.lex_state = 49, .external_lex_state = 23}, + [4116] = {.lex_state = 49, .external_lex_state = 23}, + [4117] = {.lex_state = 49, .external_lex_state = 24}, + [4118] = {.lex_state = 389}, + [4119] = {.lex_state = 49, .external_lex_state = 23}, + [4120] = {.lex_state = 49, .external_lex_state = 23}, + [4121] = {.lex_state = 49, .external_lex_state = 23}, + [4122] = {.lex_state = 49, .external_lex_state = 24}, + [4123] = {.lex_state = 49, .external_lex_state = 23}, + [4124] = {.lex_state = 49, .external_lex_state = 24}, + [4125] = {.lex_state = 49, .external_lex_state = 23}, + [4126] = {.lex_state = 49, .external_lex_state = 23}, [4127] = {.lex_state = 49, .external_lex_state = 23}, - [4128] = {.lex_state = 49, .external_lex_state = 23}, - [4129] = {.lex_state = 389}, - [4130] = {.lex_state = 49, .external_lex_state = 23}, - [4131] = {.lex_state = 49, .external_lex_state = 21}, - [4132] = {.lex_state = 49}, - [4133] = {.lex_state = 49}, - [4134] = {.lex_state = 29, .external_lex_state = 21}, - [4135] = {.lex_state = 49, .external_lex_state = 24}, - [4136] = {.lex_state = 29, .external_lex_state = 21}, - [4137] = {.lex_state = 389}, - [4138] = {.lex_state = 49, .external_lex_state = 21}, - [4139] = {.lex_state = 49}, + [4128] = {.lex_state = 389}, + [4129] = {.lex_state = 29, .external_lex_state = 21}, + [4130] = {.lex_state = 29, .external_lex_state = 21}, + [4131] = {.lex_state = 389}, + [4132] = {.lex_state = 49, .external_lex_state = 23}, + [4133] = {.lex_state = 389}, + [4134] = {.lex_state = 389}, + [4135] = {.lex_state = 49, .external_lex_state = 23}, + [4136] = {.lex_state = 49, .external_lex_state = 23}, + [4137] = {.lex_state = 49, .external_lex_state = 23}, + [4138] = {.lex_state = 49, .external_lex_state = 23}, + [4139] = {.lex_state = 54}, [4140] = {.lex_state = 49}, - [4141] = {.lex_state = 49, .external_lex_state = 21}, - [4142] = {.lex_state = 29}, - [4143] = {.lex_state = 29}, - [4144] = {.lex_state = 29}, - [4145] = {.lex_state = 49}, + [4141] = {.lex_state = 29, .external_lex_state = 21}, + [4142] = {.lex_state = 49, .external_lex_state = 23}, + [4143] = {.lex_state = 29, .external_lex_state = 21}, + [4144] = {.lex_state = 29, .external_lex_state = 21}, + [4145] = {.lex_state = 49, .external_lex_state = 24}, [4146] = {.lex_state = 49}, - [4147] = {.lex_state = 29}, - [4148] = {.lex_state = 29}, - [4149] = {.lex_state = 49}, - [4150] = {.lex_state = 49}, - [4151] = {.lex_state = 29}, - [4152] = {.lex_state = 49, .external_lex_state = 22}, - [4153] = {.lex_state = 29}, - [4154] = {.lex_state = 29}, - [4155] = {.lex_state = 29}, - [4156] = {.lex_state = 29}, - [4157] = {.lex_state = 49, .external_lex_state = 24}, - [4158] = {.lex_state = 29}, - [4159] = {.lex_state = 49, .external_lex_state = 21}, + [4147] = {.lex_state = 29, .external_lex_state = 21}, + [4148] = {.lex_state = 49, .external_lex_state = 21}, + [4149] = {.lex_state = 29, .external_lex_state = 21}, + [4150] = {.lex_state = 49, .external_lex_state = 24}, + [4151] = {.lex_state = 29, .external_lex_state = 21}, + [4152] = {.lex_state = 49, .external_lex_state = 23}, + [4153] = {.lex_state = 49, .external_lex_state = 23}, + [4154] = {.lex_state = 53}, + [4155] = {.lex_state = 49}, + [4156] = {.lex_state = 49}, + [4157] = {.lex_state = 49, .external_lex_state = 23}, + [4158] = {.lex_state = 49, .external_lex_state = 24}, + [4159] = {.lex_state = 29}, [4160] = {.lex_state = 49, .external_lex_state = 23}, - [4161] = {.lex_state = 49, .external_lex_state = 24}, - [4162] = {.lex_state = 389}, - [4163] = {.lex_state = 49, .external_lex_state = 24}, - [4164] = {.lex_state = 49}, - [4165] = {.lex_state = 49}, - [4166] = {.lex_state = 49, .external_lex_state = 22}, - [4167] = {.lex_state = 29}, - [4168] = {.lex_state = 49, .external_lex_state = 23}, - [4169] = {.lex_state = 29}, - [4170] = {.lex_state = 29}, - [4171] = {.lex_state = 29}, - [4172] = {.lex_state = 29}, - [4173] = {.lex_state = 29}, - [4174] = {.lex_state = 49, .external_lex_state = 24}, - [4175] = {.lex_state = 49, .external_lex_state = 21}, - [4176] = {.lex_state = 29}, - [4177] = {.lex_state = 29}, - [4178] = {.lex_state = 29}, - [4179] = {.lex_state = 29}, - [4180] = {.lex_state = 49}, + [4161] = {.lex_state = 49, .external_lex_state = 23}, + [4162] = {.lex_state = 54}, + [4163] = {.lex_state = 389}, + [4164] = {.lex_state = 389}, + [4165] = {.lex_state = 49, .external_lex_state = 23}, + [4166] = {.lex_state = 49, .external_lex_state = 23}, + [4167] = {.lex_state = 29, .external_lex_state = 21}, + [4168] = {.lex_state = 389}, + [4169] = {.lex_state = 389}, + [4170] = {.lex_state = 49, .external_lex_state = 23}, + [4171] = {.lex_state = 49, .external_lex_state = 23}, + [4172] = {.lex_state = 29, .external_lex_state = 21}, + [4173] = {.lex_state = 49, .external_lex_state = 23}, + [4174] = {.lex_state = 389}, + [4175] = {.lex_state = 49, .external_lex_state = 24}, + [4176] = {.lex_state = 49, .external_lex_state = 23}, + [4177] = {.lex_state = 389}, + [4178] = {.lex_state = 389}, + [4179] = {.lex_state = 389}, + [4180] = {.lex_state = 49, .external_lex_state = 21}, [4181] = {.lex_state = 49}, - [4182] = {.lex_state = 49, .external_lex_state = 24}, - [4183] = {.lex_state = 53}, + [4182] = {.lex_state = 389}, + [4183] = {.lex_state = 29, .external_lex_state = 21}, [4184] = {.lex_state = 389}, - [4185] = {.lex_state = 29}, - [4186] = {.lex_state = 49, .external_lex_state = 21}, - [4187] = {.lex_state = 49, .external_lex_state = 24}, - [4188] = {.lex_state = 49}, - [4189] = {.lex_state = 29}, - [4190] = {.lex_state = 29}, + [4185] = {.lex_state = 389}, + [4186] = {.lex_state = 389}, + [4187] = {.lex_state = 29, .external_lex_state = 21}, + [4188] = {.lex_state = 49, .external_lex_state = 23}, + [4189] = {.lex_state = 389}, + [4190] = {.lex_state = 49, .external_lex_state = 23}, [4191] = {.lex_state = 29}, - [4192] = {.lex_state = 29}, - [4193] = {.lex_state = 29}, - [4194] = {.lex_state = 29}, - [4195] = {.lex_state = 49, .external_lex_state = 23}, - [4196] = {.lex_state = 29}, - [4197] = {.lex_state = 29}, - [4198] = {.lex_state = 29}, - [4199] = {.lex_state = 29}, - [4200] = {.lex_state = 29}, - [4201] = {.lex_state = 29}, - [4202] = {.lex_state = 29}, - [4203] = {.lex_state = 29}, - [4204] = {.lex_state = 49}, + [4192] = {.lex_state = 49}, + [4193] = {.lex_state = 49, .external_lex_state = 22}, + [4194] = {.lex_state = 49}, + [4195] = {.lex_state = 49}, + [4196] = {.lex_state = 49}, + [4197] = {.lex_state = 49}, + [4198] = {.lex_state = 49, .external_lex_state = 23}, + [4199] = {.lex_state = 49, .external_lex_state = 24}, + [4200] = {.lex_state = 49, .external_lex_state = 22}, + [4201] = {.lex_state = 49, .external_lex_state = 24}, + [4202] = {.lex_state = 389}, + [4203] = {.lex_state = 49, .external_lex_state = 21}, + [4204] = {.lex_state = 29}, [4205] = {.lex_state = 29}, - [4206] = {.lex_state = 29}, - [4207] = {.lex_state = 29}, - [4208] = {.lex_state = 29}, - [4209] = {.lex_state = 29}, - [4210] = {.lex_state = 29}, + [4206] = {.lex_state = 49, .external_lex_state = 24}, + [4207] = {.lex_state = 49, .external_lex_state = 24}, + [4208] = {.lex_state = 49, .external_lex_state = 23}, + [4209] = {.lex_state = 49, .external_lex_state = 23}, + [4210] = {.lex_state = 49, .external_lex_state = 21}, [4211] = {.lex_state = 49, .external_lex_state = 24}, - [4212] = {.lex_state = 53}, + [4212] = {.lex_state = 29}, [4213] = {.lex_state = 29}, - [4214] = {.lex_state = 29}, - [4215] = {.lex_state = 49, .external_lex_state = 23}, - [4216] = {.lex_state = 29}, - [4217] = {.lex_state = 53}, - [4218] = {.lex_state = 49, .external_lex_state = 23}, + [4214] = {.lex_state = 49, .external_lex_state = 24}, + [4215] = {.lex_state = 49}, + [4216] = {.lex_state = 49, .external_lex_state = 23}, + [4217] = {.lex_state = 29}, + [4218] = {.lex_state = 29}, [4219] = {.lex_state = 29}, [4220] = {.lex_state = 29}, - [4221] = {.lex_state = 29}, + [4221] = {.lex_state = 49}, [4222] = {.lex_state = 29}, - [4223] = {.lex_state = 49}, - [4224] = {.lex_state = 49}, + [4223] = {.lex_state = 49, .external_lex_state = 23}, + [4224] = {.lex_state = 49, .external_lex_state = 22}, [4225] = {.lex_state = 29}, - [4226] = {.lex_state = 29}, + [4226] = {.lex_state = 49}, [4227] = {.lex_state = 29}, [4228] = {.lex_state = 29}, - [4229] = {.lex_state = 49}, - [4230] = {.lex_state = 49}, - [4231] = {.lex_state = 49, .external_lex_state = 22}, - [4232] = {.lex_state = 49, .external_lex_state = 22}, + [4229] = {.lex_state = 29}, + [4230] = {.lex_state = 49, .external_lex_state = 22}, + [4231] = {.lex_state = 29}, + [4232] = {.lex_state = 29}, [4233] = {.lex_state = 29}, - [4234] = {.lex_state = 49, .external_lex_state = 24}, - [4235] = {.lex_state = 29}, - [4236] = {.lex_state = 53}, + [4234] = {.lex_state = 29}, + [4235] = {.lex_state = 49, .external_lex_state = 23}, + [4236] = {.lex_state = 29}, [4237] = {.lex_state = 29}, [4238] = {.lex_state = 29}, - [4239] = {.lex_state = 29}, - [4240] = {.lex_state = 49}, - [4241] = {.lex_state = 49, .external_lex_state = 24}, + [4239] = {.lex_state = 49, .external_lex_state = 21}, + [4240] = {.lex_state = 29}, + [4241] = {.lex_state = 29}, [4242] = {.lex_state = 29}, - [4243] = {.lex_state = 29}, + [4243] = {.lex_state = 53}, [4244] = {.lex_state = 29}, [4245] = {.lex_state = 29}, [4246] = {.lex_state = 29}, [4247] = {.lex_state = 29}, [4248] = {.lex_state = 29}, - [4249] = {.lex_state = 49, .external_lex_state = 21}, - [4250] = {.lex_state = 49, .external_lex_state = 21}, - [4251] = {.lex_state = 29}, - [4252] = {.lex_state = 29}, - [4253] = {.lex_state = 389}, + [4249] = {.lex_state = 29}, + [4250] = {.lex_state = 29}, + [4251] = {.lex_state = 49}, + [4252] = {.lex_state = 49}, + [4253] = {.lex_state = 49}, [4254] = {.lex_state = 29}, [4255] = {.lex_state = 29}, - [4256] = {.lex_state = 29}, - [4257] = {.lex_state = 29}, - [4258] = {.lex_state = 29}, + [4256] = {.lex_state = 389}, + [4257] = {.lex_state = 49, .external_lex_state = 22}, + [4258] = {.lex_state = 49, .external_lex_state = 22}, [4259] = {.lex_state = 29}, - [4260] = {.lex_state = 29}, + [4260] = {.lex_state = 49, .external_lex_state = 24}, [4261] = {.lex_state = 29}, - [4262] = {.lex_state = 29}, - [4263] = {.lex_state = 29}, - [4264] = {.lex_state = 49, .external_lex_state = 23}, - [4265] = {.lex_state = 49, .external_lex_state = 21}, - [4266] = {.lex_state = 29}, + [4262] = {.lex_state = 53}, + [4263] = {.lex_state = 49}, + [4264] = {.lex_state = 53}, + [4265] = {.lex_state = 29}, + [4266] = {.lex_state = 49, .external_lex_state = 21}, [4267] = {.lex_state = 29}, - [4268] = {.lex_state = 29}, + [4268] = {.lex_state = 49, .external_lex_state = 21}, [4269] = {.lex_state = 29}, [4270] = {.lex_state = 29}, - [4271] = {.lex_state = 29}, + [4271] = {.lex_state = 49, .external_lex_state = 23}, [4272] = {.lex_state = 29}, - [4273] = {.lex_state = 49, .external_lex_state = 23}, + [4273] = {.lex_state = 29}, [4274] = {.lex_state = 29}, - [4275] = {.lex_state = 29}, + [4275] = {.lex_state = 49}, [4276] = {.lex_state = 29}, [4277] = {.lex_state = 29}, - [4278] = {.lex_state = 29}, + [4278] = {.lex_state = 49}, [4279] = {.lex_state = 29}, - [4280] = {.lex_state = 49}, - [4281] = {.lex_state = 49}, + [4280] = {.lex_state = 29}, + [4281] = {.lex_state = 29}, [4282] = {.lex_state = 29}, [4283] = {.lex_state = 29}, [4284] = {.lex_state = 29}, - [4285] = {.lex_state = 49}, - [4286] = {.lex_state = 49}, - [4287] = {.lex_state = 49, .external_lex_state = 23}, - [4288] = {.lex_state = 49, .external_lex_state = 23}, + [4285] = {.lex_state = 29}, + [4286] = {.lex_state = 29}, + [4287] = {.lex_state = 29}, + [4288] = {.lex_state = 29}, [4289] = {.lex_state = 29}, [4290] = {.lex_state = 29}, - [4291] = {.lex_state = 49, .external_lex_state = 24}, - [4292] = {.lex_state = 49, .external_lex_state = 21}, - [4293] = {.lex_state = 49, .external_lex_state = 21}, - [4294] = {.lex_state = 49, .external_lex_state = 24}, - [4295] = {.lex_state = 49}, - [4296] = {.lex_state = 49}, - [4297] = {.lex_state = 49}, - [4298] = {.lex_state = 49, .external_lex_state = 24}, - [4299] = {.lex_state = 29}, - [4300] = {.lex_state = 29}, - [4301] = {.lex_state = 29}, - [4302] = {.lex_state = 29}, + [4291] = {.lex_state = 29}, + [4292] = {.lex_state = 29}, + [4293] = {.lex_state = 29}, + [4294] = {.lex_state = 49}, + [4295] = {.lex_state = 29}, + [4296] = {.lex_state = 29}, + [4297] = {.lex_state = 29}, + [4298] = {.lex_state = 29}, + [4299] = {.lex_state = 49, .external_lex_state = 24}, + [4300] = {.lex_state = 49, .external_lex_state = 21}, + [4301] = {.lex_state = 49, .external_lex_state = 21}, + [4302] = {.lex_state = 49}, [4303] = {.lex_state = 29}, - [4304] = {.lex_state = 29}, - [4305] = {.lex_state = 49, .external_lex_state = 22}, + [4304] = {.lex_state = 49}, + [4305] = {.lex_state = 49}, [4306] = {.lex_state = 29}, - [4307] = {.lex_state = 49}, - [4308] = {.lex_state = 49}, + [4307] = {.lex_state = 29}, + [4308] = {.lex_state = 29}, [4309] = {.lex_state = 29}, [4310] = {.lex_state = 29}, [4311] = {.lex_state = 29}, - [4312] = {.lex_state = 53}, - [4313] = {.lex_state = 53}, - [4314] = {.lex_state = 49, .external_lex_state = 24}, - [4315] = {.lex_state = 53}, - [4316] = {.lex_state = 49, .external_lex_state = 22}, - [4317] = {.lex_state = 49, .external_lex_state = 21}, - [4318] = {.lex_state = 49, .external_lex_state = 23}, - [4319] = {.lex_state = 49, .external_lex_state = 24}, - [4320] = {.lex_state = 29, .external_lex_state = 25}, - [4321] = {.lex_state = 49, .external_lex_state = 23}, - [4322] = {.lex_state = 49}, - [4323] = {.lex_state = 389, .external_lex_state = 21}, - [4324] = {.lex_state = 42}, - [4325] = {.lex_state = 29, .external_lex_state = 25}, + [4312] = {.lex_state = 29}, + [4313] = {.lex_state = 49, .external_lex_state = 23}, + [4314] = {.lex_state = 49}, + [4315] = {.lex_state = 49}, + [4316] = {.lex_state = 29}, + [4317] = {.lex_state = 29}, + [4318] = {.lex_state = 29}, + [4319] = {.lex_state = 29}, + [4320] = {.lex_state = 29}, + [4321] = {.lex_state = 49, .external_lex_state = 24}, + [4322] = {.lex_state = 49, .external_lex_state = 23}, + [4323] = {.lex_state = 29}, + [4324] = {.lex_state = 29}, + [4325] = {.lex_state = 29}, [4326] = {.lex_state = 389}, - [4327] = {.lex_state = 49, .external_lex_state = 21}, - [4328] = {.lex_state = 389}, - [4329] = {.lex_state = 389}, - [4330] = {.lex_state = 51}, - [4331] = {.lex_state = 389, .external_lex_state = 21}, - [4332] = {.lex_state = 389}, - [4333] = {.lex_state = 29, .external_lex_state = 25}, - [4334] = {.lex_state = 49, .external_lex_state = 23}, - [4335] = {.lex_state = 49}, - [4336] = {.lex_state = 49}, - [4337] = {.lex_state = 389}, - [4338] = {.lex_state = 389}, - [4339] = {.lex_state = 389}, - [4340] = {.lex_state = 389}, - [4341] = {.lex_state = 389}, - [4342] = {.lex_state = 49}, - [4343] = {.lex_state = 389}, - [4344] = {.lex_state = 389}, - [4345] = {.lex_state = 29, .external_lex_state = 25}, - [4346] = {.lex_state = 49, .external_lex_state = 23}, - [4347] = {.lex_state = 29, .external_lex_state = 25}, - [4348] = {.lex_state = 49, .external_lex_state = 24}, - [4349] = {.lex_state = 49}, - [4350] = {.lex_state = 49}, - [4351] = {.lex_state = 29, .external_lex_state = 25}, - [4352] = {.lex_state = 389}, - [4353] = {.lex_state = 51}, - [4354] = {.lex_state = 29, .external_lex_state = 25}, + [4327] = {.lex_state = 29}, + [4328] = {.lex_state = 29}, + [4329] = {.lex_state = 29}, + [4330] = {.lex_state = 29}, + [4331] = {.lex_state = 29}, + [4332] = {.lex_state = 29}, + [4333] = {.lex_state = 49, .external_lex_state = 24}, + [4334] = {.lex_state = 29}, + [4335] = {.lex_state = 29}, + [4336] = {.lex_state = 49, .external_lex_state = 21}, + [4337] = {.lex_state = 29}, + [4338] = {.lex_state = 49, .external_lex_state = 24}, + [4339] = {.lex_state = 29}, + [4340] = {.lex_state = 49, .external_lex_state = 24}, + [4341] = {.lex_state = 29}, + [4342] = {.lex_state = 29}, + [4343] = {.lex_state = 49, .external_lex_state = 24}, + [4344] = {.lex_state = 29}, + [4345] = {.lex_state = 29}, + [4346] = {.lex_state = 29}, + [4347] = {.lex_state = 29}, + [4348] = {.lex_state = 29}, + [4349] = {.lex_state = 29}, + [4350] = {.lex_state = 29}, + [4351] = {.lex_state = 29}, + [4352] = {.lex_state = 29}, + [4353] = {.lex_state = 49}, + [4354] = {.lex_state = 49}, [4355] = {.lex_state = 49}, - [4356] = {.lex_state = 29, .external_lex_state = 25}, + [4356] = {.lex_state = 49}, [4357] = {.lex_state = 49, .external_lex_state = 21}, [4358] = {.lex_state = 49}, - [4359] = {.lex_state = 29, .external_lex_state = 25}, - [4360] = {.lex_state = 49}, - [4361] = {.lex_state = 49}, - [4362] = {.lex_state = 49}, - [4363] = {.lex_state = 29, .external_lex_state = 25}, - [4364] = {.lex_state = 29, .external_lex_state = 25}, - [4365] = {.lex_state = 50}, - [4366] = {.lex_state = 49}, - [4367] = {.lex_state = 49}, - [4368] = {.lex_state = 49, .external_lex_state = 21}, - [4369] = {.lex_state = 49, .external_lex_state = 23}, - [4370] = {.lex_state = 49}, - [4371] = {.lex_state = 49, .external_lex_state = 21}, + [4359] = {.lex_state = 49}, + [4360] = {.lex_state = 49, .external_lex_state = 21}, + [4361] = {.lex_state = 29}, + [4362] = {.lex_state = 53}, + [4363] = {.lex_state = 29}, + [4364] = {.lex_state = 29}, + [4365] = {.lex_state = 53}, + [4366] = {.lex_state = 29}, + [4367] = {.lex_state = 53}, + [4368] = {.lex_state = 29}, + [4369] = {.lex_state = 53}, + [4370] = {.lex_state = 49, .external_lex_state = 21}, + [4371] = {.lex_state = 49}, [4372] = {.lex_state = 389}, - [4373] = {.lex_state = 49}, - [4374] = {.lex_state = 29, .external_lex_state = 25}, - [4375] = {.lex_state = 49}, + [4373] = {.lex_state = 389}, + [4374] = {.lex_state = 389, .external_lex_state = 21}, + [4375] = {.lex_state = 49, .external_lex_state = 23}, [4376] = {.lex_state = 29, .external_lex_state = 25}, - [4377] = {.lex_state = 29, .external_lex_state = 25}, - [4378] = {.lex_state = 49}, - [4379] = {.lex_state = 49, .external_lex_state = 23}, + [4377] = {.lex_state = 49}, + [4378] = {.lex_state = 51}, + [4379] = {.lex_state = 29, .external_lex_state = 25}, [4380] = {.lex_state = 49}, - [4381] = {.lex_state = 49, .external_lex_state = 21}, - [4382] = {.lex_state = 51}, - [4383] = {.lex_state = 51}, - [4384] = {.lex_state = 49, .external_lex_state = 24}, - [4385] = {.lex_state = 49}, + [4381] = {.lex_state = 389}, + [4382] = {.lex_state = 389}, + [4383] = {.lex_state = 49}, + [4384] = {.lex_state = 389}, + [4385] = {.lex_state = 49, .external_lex_state = 21}, [4386] = {.lex_state = 49}, [4387] = {.lex_state = 49}, - [4388] = {.lex_state = 389, .external_lex_state = 21}, - [4389] = {.lex_state = 49, .external_lex_state = 21}, - [4390] = {.lex_state = 389}, - [4391] = {.lex_state = 49, .external_lex_state = 21}, + [4388] = {.lex_state = 49, .external_lex_state = 23}, + [4389] = {.lex_state = 49}, + [4390] = {.lex_state = 49, .external_lex_state = 21}, + [4391] = {.lex_state = 389, .external_lex_state = 21}, [4392] = {.lex_state = 389}, - [4393] = {.lex_state = 49}, - [4394] = {.lex_state = 49, .external_lex_state = 21}, - [4395] = {.lex_state = 389}, - [4396] = {.lex_state = 51}, - [4397] = {.lex_state = 51}, - [4398] = {.lex_state = 49}, - [4399] = {.lex_state = 29, .external_lex_state = 25}, - [4400] = {.lex_state = 49, .external_lex_state = 23}, - [4401] = {.lex_state = 389, .external_lex_state = 21}, - [4402] = {.lex_state = 49}, - [4403] = {.lex_state = 389, .external_lex_state = 21}, - [4404] = {.lex_state = 49}, - [4405] = {.lex_state = 389}, - [4406] = {.lex_state = 49}, + [4393] = {.lex_state = 29, .external_lex_state = 25}, + [4394] = {.lex_state = 389}, + [4395] = {.lex_state = 49, .external_lex_state = 24}, + [4396] = {.lex_state = 49}, + [4397] = {.lex_state = 389}, + [4398] = {.lex_state = 29, .external_lex_state = 25}, + [4399] = {.lex_state = 49, .external_lex_state = 24}, + [4400] = {.lex_state = 29, .external_lex_state = 25}, + [4401] = {.lex_state = 49}, + [4402] = {.lex_state = 389, .external_lex_state = 21}, + [4403] = {.lex_state = 42}, + [4404] = {.lex_state = 389}, + [4405] = {.lex_state = 29, .external_lex_state = 25}, + [4406] = {.lex_state = 29, .external_lex_state = 25}, [4407] = {.lex_state = 389}, - [4408] = {.lex_state = 49}, - [4409] = {.lex_state = 389}, - [4410] = {.lex_state = 389, .external_lex_state = 21}, - [4411] = {.lex_state = 389}, - [4412] = {.lex_state = 49}, - [4413] = {.lex_state = 49}, - [4414] = {.lex_state = 389, .external_lex_state = 21}, - [4415] = {.lex_state = 389, .external_lex_state = 21}, + [4408] = {.lex_state = 389}, + [4409] = {.lex_state = 29, .external_lex_state = 25}, + [4410] = {.lex_state = 29, .external_lex_state = 25}, + [4411] = {.lex_state = 49, .external_lex_state = 21}, + [4412] = {.lex_state = 389}, + [4413] = {.lex_state = 51}, + [4414] = {.lex_state = 50}, + [4415] = {.lex_state = 49}, [4416] = {.lex_state = 49}, - [4417] = {.lex_state = 49, .external_lex_state = 22}, - [4418] = {.lex_state = 49}, - [4419] = {.lex_state = 49}, - [4420] = {.lex_state = 389, .external_lex_state = 23}, - [4421] = {.lex_state = 49}, - [4422] = {.lex_state = 389}, + [4417] = {.lex_state = 49, .external_lex_state = 21}, + [4418] = {.lex_state = 29, .external_lex_state = 25}, + [4419] = {.lex_state = 49, .external_lex_state = 23}, + [4420] = {.lex_state = 49}, + [4421] = {.lex_state = 49, .external_lex_state = 23}, + [4422] = {.lex_state = 51}, [4423] = {.lex_state = 389}, - [4424] = {.lex_state = 389}, - [4425] = {.lex_state = 49, .external_lex_state = 23}, - [4426] = {.lex_state = 389, .external_lex_state = 21}, - [4427] = {.lex_state = 389, .external_lex_state = 21}, - [4428] = {.lex_state = 389}, - [4429] = {.lex_state = 49}, - [4430] = {.lex_state = 389, .external_lex_state = 21}, - [4431] = {.lex_state = 389, .external_lex_state = 23}, - [4432] = {.lex_state = 389}, - [4433] = {.lex_state = 389, .external_lex_state = 21}, - [4434] = {.lex_state = 389}, - [4435] = {.lex_state = 389}, - [4436] = {.lex_state = 389, .external_lex_state = 21}, - [4437] = {.lex_state = 389}, - [4438] = {.lex_state = 49, .external_lex_state = 22}, - [4439] = {.lex_state = 389, .external_lex_state = 21}, - [4440] = {.lex_state = 389, .external_lex_state = 21}, - [4441] = {.lex_state = 389, .external_lex_state = 23}, - [4442] = {.lex_state = 49}, - [4443] = {.lex_state = 389, .external_lex_state = 21}, + [4424] = {.lex_state = 51}, + [4425] = {.lex_state = 49}, + [4426] = {.lex_state = 49}, + [4427] = {.lex_state = 49, .external_lex_state = 23}, + [4428] = {.lex_state = 49, .external_lex_state = 21}, + [4429] = {.lex_state = 49, .external_lex_state = 21}, + [4430] = {.lex_state = 389}, + [4431] = {.lex_state = 49}, + [4432] = {.lex_state = 49}, + [4433] = {.lex_state = 49}, + [4434] = {.lex_state = 29, .external_lex_state = 25}, + [4435] = {.lex_state = 51}, + [4436] = {.lex_state = 51}, + [4437] = {.lex_state = 49, .external_lex_state = 23}, + [4438] = {.lex_state = 49}, + [4439] = {.lex_state = 49}, + [4440] = {.lex_state = 389}, + [4441] = {.lex_state = 49, .external_lex_state = 24}, + [4442] = {.lex_state = 49, .external_lex_state = 21}, + [4443] = {.lex_state = 49, .external_lex_state = 23}, [4444] = {.lex_state = 49}, - [4445] = {.lex_state = 389}, - [4446] = {.lex_state = 49}, - [4447] = {.lex_state = 49}, - [4448] = {.lex_state = 389, .external_lex_state = 23}, - [4449] = {.lex_state = 389, .external_lex_state = 21}, - [4450] = {.lex_state = 389, .external_lex_state = 21}, - [4451] = {.lex_state = 389}, - [4452] = {.lex_state = 389}, - [4453] = {.lex_state = 389, .external_lex_state = 21}, - [4454] = {.lex_state = 389}, - [4455] = {.lex_state = 389}, - [4456] = {.lex_state = 389, .external_lex_state = 21}, - [4457] = {.lex_state = 49}, + [4445] = {.lex_state = 29, .external_lex_state = 25}, + [4446] = {.lex_state = 49, .external_lex_state = 21}, + [4447] = {.lex_state = 29, .external_lex_state = 25}, + [4448] = {.lex_state = 29, .external_lex_state = 25}, + [4449] = {.lex_state = 49}, + [4450] = {.lex_state = 389}, + [4451] = {.lex_state = 49}, + [4452] = {.lex_state = 49}, + [4453] = {.lex_state = 29, .external_lex_state = 25}, + [4454] = {.lex_state = 389, .external_lex_state = 23}, + [4455] = {.lex_state = 389, .external_lex_state = 21}, + [4456] = {.lex_state = 49}, + [4457] = {.lex_state = 389, .external_lex_state = 21}, [4458] = {.lex_state = 389, .external_lex_state = 21}, - [4459] = {.lex_state = 389, .external_lex_state = 21}, + [4459] = {.lex_state = 389, .external_lex_state = 23}, [4460] = {.lex_state = 389, .external_lex_state = 21}, - [4461] = {.lex_state = 49}, - [4462] = {.lex_state = 389, .external_lex_state = 21}, - [4463] = {.lex_state = 389, .external_lex_state = 21}, - [4464] = {.lex_state = 389, .external_lex_state = 23}, - [4465] = {.lex_state = 389}, + [4461] = {.lex_state = 49, .external_lex_state = 23}, + [4462] = {.lex_state = 389}, + [4463] = {.lex_state = 389}, + [4464] = {.lex_state = 49}, + [4465] = {.lex_state = 49}, [4466] = {.lex_state = 49}, - [4467] = {.lex_state = 389, .external_lex_state = 21}, - [4468] = {.lex_state = 389, .external_lex_state = 23}, - [4469] = {.lex_state = 389, .external_lex_state = 23}, - [4470] = {.lex_state = 49}, - [4471] = {.lex_state = 49}, - [4472] = {.lex_state = 49, .external_lex_state = 22}, - [4473] = {.lex_state = 389, .external_lex_state = 23}, + [4467] = {.lex_state = 53}, + [4468] = {.lex_state = 49}, + [4469] = {.lex_state = 389}, + [4470] = {.lex_state = 389, .external_lex_state = 21}, + [4471] = {.lex_state = 389}, + [4472] = {.lex_state = 389, .external_lex_state = 21}, + [4473] = {.lex_state = 389, .external_lex_state = 21}, [4474] = {.lex_state = 389}, - [4475] = {.lex_state = 49}, - [4476] = {.lex_state = 49}, + [4475] = {.lex_state = 389, .external_lex_state = 21}, + [4476] = {.lex_state = 389, .external_lex_state = 21}, [4477] = {.lex_state = 389, .external_lex_state = 21}, - [4478] = {.lex_state = 49}, - [4479] = {.lex_state = 389, .external_lex_state = 21}, - [4480] = {.lex_state = 389, .external_lex_state = 21}, - [4481] = {.lex_state = 49, .external_lex_state = 23}, - [4482] = {.lex_state = 389, .external_lex_state = 21}, - [4483] = {.lex_state = 389}, + [4478] = {.lex_state = 389, .external_lex_state = 21}, + [4479] = {.lex_state = 49}, + [4480] = {.lex_state = 49}, + [4481] = {.lex_state = 389, .external_lex_state = 21}, + [4482] = {.lex_state = 389}, + [4483] = {.lex_state = 49}, [4484] = {.lex_state = 49}, - [4485] = {.lex_state = 389, .external_lex_state = 23}, - [4486] = {.lex_state = 49, .external_lex_state = 23}, - [4487] = {.lex_state = 49, .external_lex_state = 22}, - [4488] = {.lex_state = 389, .external_lex_state = 21}, - [4489] = {.lex_state = 389, .external_lex_state = 23}, - [4490] = {.lex_state = 389, .external_lex_state = 21}, - [4491] = {.lex_state = 49}, - [4492] = {.lex_state = 389, .external_lex_state = 21}, - [4493] = {.lex_state = 389, .external_lex_state = 23}, - [4494] = {.lex_state = 49}, + [4485] = {.lex_state = 49}, + [4486] = {.lex_state = 389}, + [4487] = {.lex_state = 389, .external_lex_state = 21}, + [4488] = {.lex_state = 389}, + [4489] = {.lex_state = 389}, + [4490] = {.lex_state = 389}, + [4491] = {.lex_state = 389, .external_lex_state = 21}, + [4492] = {.lex_state = 389, .external_lex_state = 23}, + [4493] = {.lex_state = 389, .external_lex_state = 21}, + [4494] = {.lex_state = 389, .external_lex_state = 23}, [4495] = {.lex_state = 389}, [4496] = {.lex_state = 389, .external_lex_state = 23}, - [4497] = {.lex_state = 49}, - [4498] = {.lex_state = 389, .external_lex_state = 21}, - [4499] = {.lex_state = 389, .external_lex_state = 21}, + [4497] = {.lex_state = 389}, + [4498] = {.lex_state = 389}, + [4499] = {.lex_state = 49}, [4500] = {.lex_state = 389}, - [4501] = {.lex_state = 389, .external_lex_state = 23}, + [4501] = {.lex_state = 49, .external_lex_state = 23}, [4502] = {.lex_state = 49}, - [4503] = {.lex_state = 389}, - [4504] = {.lex_state = 389}, - [4505] = {.lex_state = 389, .external_lex_state = 21}, - [4506] = {.lex_state = 389}, + [4503] = {.lex_state = 49}, + [4504] = {.lex_state = 389, .external_lex_state = 21}, + [4505] = {.lex_state = 49}, + [4506] = {.lex_state = 389, .external_lex_state = 21}, [4507] = {.lex_state = 49, .external_lex_state = 23}, - [4508] = {.lex_state = 49}, - [4509] = {.lex_state = 389}, - [4510] = {.lex_state = 53}, - [4511] = {.lex_state = 389}, + [4508] = {.lex_state = 389, .external_lex_state = 21}, + [4509] = {.lex_state = 389, .external_lex_state = 21}, + [4510] = {.lex_state = 49}, + [4511] = {.lex_state = 389, .external_lex_state = 21}, [4512] = {.lex_state = 49}, - [4513] = {.lex_state = 389, .external_lex_state = 21}, + [4513] = {.lex_state = 49, .external_lex_state = 22}, [4514] = {.lex_state = 389, .external_lex_state = 21}, - [4515] = {.lex_state = 389, .external_lex_state = 21}, - [4516] = {.lex_state = 389, .external_lex_state = 21}, - [4517] = {.lex_state = 389, .external_lex_state = 23}, - [4518] = {.lex_state = 389, .external_lex_state = 21}, + [4515] = {.lex_state = 389, .external_lex_state = 23}, + [4516] = {.lex_state = 49}, + [4517] = {.lex_state = 389, .external_lex_state = 21}, + [4518] = {.lex_state = 49}, [4519] = {.lex_state = 389, .external_lex_state = 21}, - [4520] = {.lex_state = 389}, - [4521] = {.lex_state = 49}, - [4522] = {.lex_state = 389, .external_lex_state = 21}, + [4520] = {.lex_state = 49, .external_lex_state = 22}, + [4521] = {.lex_state = 49, .external_lex_state = 23}, + [4522] = {.lex_state = 389, .external_lex_state = 23}, [4523] = {.lex_state = 49}, - [4524] = {.lex_state = 49}, - [4525] = {.lex_state = 389, .external_lex_state = 23}, - [4526] = {.lex_state = 49}, - [4527] = {.lex_state = 49}, - [4528] = {.lex_state = 49}, + [4524] = {.lex_state = 389, .external_lex_state = 21}, + [4525] = {.lex_state = 49, .external_lex_state = 22}, + [4526] = {.lex_state = 389}, + [4527] = {.lex_state = 389}, + [4528] = {.lex_state = 389, .external_lex_state = 23}, [4529] = {.lex_state = 389}, [4530] = {.lex_state = 389}, - [4531] = {.lex_state = 389, .external_lex_state = 21}, - [4532] = {.lex_state = 389}, - [4533] = {.lex_state = 389}, - [4534] = {.lex_state = 53}, + [4531] = {.lex_state = 389}, + [4532] = {.lex_state = 49}, + [4533] = {.lex_state = 49}, + [4534] = {.lex_state = 389, .external_lex_state = 21}, [4535] = {.lex_state = 49}, - [4536] = {.lex_state = 389}, - [4537] = {.lex_state = 53}, - [4538] = {.lex_state = 49}, - [4539] = {.lex_state = 53}, - [4540] = {.lex_state = 389, .external_lex_state = 23}, - [4541] = {.lex_state = 49}, - [4542] = {.lex_state = 53}, - [4543] = {.lex_state = 49}, - [4544] = {.lex_state = 49}, - [4545] = {.lex_state = 53}, - [4546] = {.lex_state = 389}, + [4536] = {.lex_state = 389, .external_lex_state = 23}, + [4537] = {.lex_state = 49}, + [4538] = {.lex_state = 389, .external_lex_state = 21}, + [4539] = {.lex_state = 389, .external_lex_state = 21}, + [4540] = {.lex_state = 389}, + [4541] = {.lex_state = 389}, + [4542] = {.lex_state = 49}, + [4543] = {.lex_state = 389, .external_lex_state = 21}, + [4544] = {.lex_state = 389, .external_lex_state = 23}, + [4545] = {.lex_state = 49}, + [4546] = {.lex_state = 49}, [4547] = {.lex_state = 389}, - [4548] = {.lex_state = 29}, - [4549] = {.lex_state = 389}, - [4550] = {.lex_state = 389}, - [4551] = {.lex_state = 389, .external_lex_state = 21}, + [4548] = {.lex_state = 389}, + [4549] = {.lex_state = 389, .external_lex_state = 21}, + [4550] = {.lex_state = 389, .external_lex_state = 21}, + [4551] = {.lex_state = 49}, [4552] = {.lex_state = 389, .external_lex_state = 21}, - [4553] = {.lex_state = 389}, - [4554] = {.lex_state = 389, .external_lex_state = 21}, + [4553] = {.lex_state = 389, .external_lex_state = 21}, + [4554] = {.lex_state = 49}, [4555] = {.lex_state = 389}, - [4556] = {.lex_state = 389, .external_lex_state = 21}, - [4557] = {.lex_state = 389, .external_lex_state = 21}, - [4558] = {.lex_state = 389}, - [4559] = {.lex_state = 389, .external_lex_state = 21}, - [4560] = {.lex_state = 389}, - [4561] = {.lex_state = 49, .external_lex_state = 24}, - [4562] = {.lex_state = 389}, - [4563] = {.lex_state = 389}, - [4564] = {.lex_state = 389}, - [4565] = {.lex_state = 49}, - [4566] = {.lex_state = 389}, - [4567] = {.lex_state = 389}, - [4568] = {.lex_state = 389}, - [4569] = {.lex_state = 389}, - [4570] = {.lex_state = 49}, - [4571] = {.lex_state = 389}, - [4572] = {.lex_state = 29}, - [4573] = {.lex_state = 389}, - [4574] = {.lex_state = 389}, + [4556] = {.lex_state = 49}, + [4557] = {.lex_state = 49}, + [4558] = {.lex_state = 49}, + [4559] = {.lex_state = 53}, + [4560] = {.lex_state = 389, .external_lex_state = 21}, + [4561] = {.lex_state = 389}, + [4562] = {.lex_state = 389, .external_lex_state = 23}, + [4563] = {.lex_state = 49}, + [4564] = {.lex_state = 389, .external_lex_state = 23}, + [4565] = {.lex_state = 389, .external_lex_state = 23}, + [4566] = {.lex_state = 389, .external_lex_state = 21}, + [4567] = {.lex_state = 389, .external_lex_state = 21}, + [4568] = {.lex_state = 49}, + [4569] = {.lex_state = 389, .external_lex_state = 21}, + [4570] = {.lex_state = 389}, + [4571] = {.lex_state = 389, .external_lex_state = 21}, + [4572] = {.lex_state = 49}, + [4573] = {.lex_state = 389, .external_lex_state = 21}, + [4574] = {.lex_state = 49}, [4575] = {.lex_state = 389}, - [4576] = {.lex_state = 389}, - [4577] = {.lex_state = 389, .external_lex_state = 21}, - [4578] = {.lex_state = 389, .external_lex_state = 21}, - [4579] = {.lex_state = 49}, - [4580] = {.lex_state = 389}, - [4581] = {.lex_state = 49}, - [4582] = {.lex_state = 389}, - [4583] = {.lex_state = 389}, - [4584] = {.lex_state = 389}, - [4585] = {.lex_state = 389}, - [4586] = {.lex_state = 389}, - [4587] = {.lex_state = 389}, + [4576] = {.lex_state = 389, .external_lex_state = 21}, + [4577] = {.lex_state = 49}, + [4578] = {.lex_state = 389}, + [4579] = {.lex_state = 389}, + [4580] = {.lex_state = 389, .external_lex_state = 23}, + [4581] = {.lex_state = 49, .external_lex_state = 22}, + [4582] = {.lex_state = 389, .external_lex_state = 21}, + [4583] = {.lex_state = 49}, + [4584] = {.lex_state = 389, .external_lex_state = 23}, + [4585] = {.lex_state = 49}, + [4586] = {.lex_state = 49}, + [4587] = {.lex_state = 49}, [4588] = {.lex_state = 389}, [4589] = {.lex_state = 389}, [4590] = {.lex_state = 389}, - [4591] = {.lex_state = 389}, + [4591] = {.lex_state = 389, .external_lex_state = 21}, [4592] = {.lex_state = 389}, - [4593] = {.lex_state = 389}, - [4594] = {.lex_state = 389}, - [4595] = {.lex_state = 389}, + [4593] = {.lex_state = 53}, + [4594] = {.lex_state = 53}, + [4595] = {.lex_state = 389, .external_lex_state = 23}, [4596] = {.lex_state = 389}, - [4597] = {.lex_state = 389}, - [4598] = {.lex_state = 389}, - [4599] = {.lex_state = 389}, + [4597] = {.lex_state = 53}, + [4598] = {.lex_state = 53}, + [4599] = {.lex_state = 49}, [4600] = {.lex_state = 389}, [4601] = {.lex_state = 389}, [4602] = {.lex_state = 389}, @@ -24913,51 +24966,51 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [4605] = {.lex_state = 389}, [4606] = {.lex_state = 389}, [4607] = {.lex_state = 389}, - [4608] = {.lex_state = 49}, - [4609] = {.lex_state = 49}, + [4608] = {.lex_state = 389, .external_lex_state = 21}, + [4609] = {.lex_state = 389}, [4610] = {.lex_state = 389}, [4611] = {.lex_state = 389}, [4612] = {.lex_state = 389}, [4613] = {.lex_state = 389}, - [4614] = {.lex_state = 389}, - [4615] = {.lex_state = 389}, + [4614] = {.lex_state = 29}, + [4615] = {.lex_state = 389, .external_lex_state = 21}, [4616] = {.lex_state = 389, .external_lex_state = 21}, [4617] = {.lex_state = 389}, - [4618] = {.lex_state = 389}, + [4618] = {.lex_state = 49}, [4619] = {.lex_state = 389}, [4620] = {.lex_state = 389}, [4621] = {.lex_state = 389}, [4622] = {.lex_state = 49}, - [4623] = {.lex_state = 389}, - [4624] = {.lex_state = 49, .external_lex_state = 21}, + [4623] = {.lex_state = 49, .external_lex_state = 24}, + [4624] = {.lex_state = 49}, [4625] = {.lex_state = 389}, [4626] = {.lex_state = 389}, [4627] = {.lex_state = 389}, - [4628] = {.lex_state = 389}, + [4628] = {.lex_state = 49}, [4629] = {.lex_state = 389}, [4630] = {.lex_state = 389}, - [4631] = {.lex_state = 389}, - [4632] = {.lex_state = 389}, + [4631] = {.lex_state = 29}, + [4632] = {.lex_state = 389, .external_lex_state = 21}, [4633] = {.lex_state = 389}, [4634] = {.lex_state = 389}, - [4635] = {.lex_state = 389, .external_lex_state = 21}, + [4635] = {.lex_state = 389}, [4636] = {.lex_state = 389}, - [4637] = {.lex_state = 389}, + [4637] = {.lex_state = 49, .external_lex_state = 24}, [4638] = {.lex_state = 389}, - [4639] = {.lex_state = 389}, + [4639] = {.lex_state = 49}, [4640] = {.lex_state = 389}, [4641] = {.lex_state = 389}, - [4642] = {.lex_state = 389}, + [4642] = {.lex_state = 389, .external_lex_state = 21}, [4643] = {.lex_state = 389}, [4644] = {.lex_state = 389}, [4645] = {.lex_state = 389}, [4646] = {.lex_state = 389}, [4647] = {.lex_state = 389}, [4648] = {.lex_state = 389}, - [4649] = {.lex_state = 49}, + [4649] = {.lex_state = 389}, [4650] = {.lex_state = 389}, - [4651] = {.lex_state = 389}, - [4652] = {.lex_state = 389, .external_lex_state = 21}, + [4651] = {.lex_state = 49}, + [4652] = {.lex_state = 389}, [4653] = {.lex_state = 389}, [4654] = {.lex_state = 389}, [4655] = {.lex_state = 389}, @@ -24965,29 +25018,29 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [4657] = {.lex_state = 389}, [4658] = {.lex_state = 389}, [4659] = {.lex_state = 389}, - [4660] = {.lex_state = 389}, - [4661] = {.lex_state = 49, .external_lex_state = 21}, + [4660] = {.lex_state = 389, .external_lex_state = 21}, + [4661] = {.lex_state = 389}, [4662] = {.lex_state = 389}, [4663] = {.lex_state = 389}, [4664] = {.lex_state = 389}, [4665] = {.lex_state = 389}, - [4666] = {.lex_state = 389}, + [4666] = {.lex_state = 49}, [4667] = {.lex_state = 389}, - [4668] = {.lex_state = 49, .external_lex_state = 21}, - [4669] = {.lex_state = 49, .external_lex_state = 21}, - [4670] = {.lex_state = 389, .external_lex_state = 21}, + [4668] = {.lex_state = 389}, + [4669] = {.lex_state = 389}, + [4670] = {.lex_state = 389}, [4671] = {.lex_state = 389}, - [4672] = {.lex_state = 389}, - [4673] = {.lex_state = 49, .external_lex_state = 21}, + [4672] = {.lex_state = 29}, + [4673] = {.lex_state = 389}, [4674] = {.lex_state = 389}, - [4675] = {.lex_state = 389}, - [4676] = {.lex_state = 389}, + [4675] = {.lex_state = 49, .external_lex_state = 21}, + [4676] = {.lex_state = 49, .external_lex_state = 21}, [4677] = {.lex_state = 389}, [4678] = {.lex_state = 389}, [4679] = {.lex_state = 389}, - [4680] = {.lex_state = 49}, + [4680] = {.lex_state = 389}, [4681] = {.lex_state = 389}, - [4682] = {.lex_state = 389, .external_lex_state = 21}, + [4682] = {.lex_state = 389}, [4683] = {.lex_state = 389}, [4684] = {.lex_state = 389}, [4685] = {.lex_state = 389}, @@ -24995,365 +25048,365 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [4687] = {.lex_state = 389}, [4688] = {.lex_state = 389}, [4689] = {.lex_state = 389}, - [4690] = {.lex_state = 389}, + [4690] = {.lex_state = 49}, [4691] = {.lex_state = 389}, - [4692] = {.lex_state = 389}, + [4692] = {.lex_state = 49}, [4693] = {.lex_state = 389}, [4694] = {.lex_state = 389}, [4695] = {.lex_state = 389}, [4696] = {.lex_state = 389}, [4697] = {.lex_state = 389}, - [4698] = {.lex_state = 49, .external_lex_state = 24}, + [4698] = {.lex_state = 49}, [4699] = {.lex_state = 389}, - [4700] = {.lex_state = 49}, + [4700] = {.lex_state = 389}, [4701] = {.lex_state = 389}, [4702] = {.lex_state = 389}, - [4703] = {.lex_state = 49}, + [4703] = {.lex_state = 389}, [4704] = {.lex_state = 389}, [4705] = {.lex_state = 389}, - [4706] = {.lex_state = 49}, + [4706] = {.lex_state = 389}, [4707] = {.lex_state = 389}, - [4708] = {.lex_state = 389}, + [4708] = {.lex_state = 49, .external_lex_state = 21}, [4709] = {.lex_state = 389}, [4710] = {.lex_state = 389}, [4711] = {.lex_state = 389}, [4712] = {.lex_state = 389}, [4713] = {.lex_state = 389}, [4714] = {.lex_state = 389}, - [4715] = {.lex_state = 49}, + [4715] = {.lex_state = 389}, [4716] = {.lex_state = 389}, [4717] = {.lex_state = 389}, [4718] = {.lex_state = 389}, - [4719] = {.lex_state = 29, .external_lex_state = 25}, + [4719] = {.lex_state = 389}, [4720] = {.lex_state = 389}, [4721] = {.lex_state = 389}, [4722] = {.lex_state = 389}, - [4723] = {.lex_state = 49, .external_lex_state = 24}, + [4723] = {.lex_state = 49}, [4724] = {.lex_state = 389}, - [4725] = {.lex_state = 389}, + [4725] = {.lex_state = 49, .external_lex_state = 21}, [4726] = {.lex_state = 389}, [4727] = {.lex_state = 389}, [4728] = {.lex_state = 389}, [4729] = {.lex_state = 389}, [4730] = {.lex_state = 389}, [4731] = {.lex_state = 389}, - [4732] = {.lex_state = 49}, - [4733] = {.lex_state = 389}, + [4732] = {.lex_state = 389}, + [4733] = {.lex_state = 49}, [4734] = {.lex_state = 389}, - [4735] = {.lex_state = 389}, + [4735] = {.lex_state = 389, .external_lex_state = 21}, [4736] = {.lex_state = 389}, [4737] = {.lex_state = 389}, [4738] = {.lex_state = 389}, [4739] = {.lex_state = 389}, - [4740] = {.lex_state = 389, .external_lex_state = 21}, - [4741] = {.lex_state = 49}, + [4740] = {.lex_state = 389}, + [4741] = {.lex_state = 389, .external_lex_state = 21}, [4742] = {.lex_state = 389}, - [4743] = {.lex_state = 389}, - [4744] = {.lex_state = 49, .external_lex_state = 21}, - [4745] = {.lex_state = 29}, + [4743] = {.lex_state = 49}, + [4744] = {.lex_state = 389}, + [4745] = {.lex_state = 389}, [4746] = {.lex_state = 389}, [4747] = {.lex_state = 389}, [4748] = {.lex_state = 389}, [4749] = {.lex_state = 389}, - [4750] = {.lex_state = 389}, + [4750] = {.lex_state = 389, .external_lex_state = 21}, [4751] = {.lex_state = 389}, - [4752] = {.lex_state = 389}, + [4752] = {.lex_state = 49, .external_lex_state = 21}, [4753] = {.lex_state = 389}, - [4754] = {.lex_state = 389}, - [4755] = {.lex_state = 49, .external_lex_state = 21}, + [4754] = {.lex_state = 49, .external_lex_state = 24}, + [4755] = {.lex_state = 389}, [4756] = {.lex_state = 389}, [4757] = {.lex_state = 389}, - [4758] = {.lex_state = 389}, + [4758] = {.lex_state = 49, .external_lex_state = 21}, [4759] = {.lex_state = 389}, [4760] = {.lex_state = 389}, - [4761] = {.lex_state = 389}, + [4761] = {.lex_state = 49, .external_lex_state = 21}, [4762] = {.lex_state = 389}, - [4763] = {.lex_state = 389}, + [4763] = {.lex_state = 389, .external_lex_state = 21}, [4764] = {.lex_state = 389}, [4765] = {.lex_state = 389}, [4766] = {.lex_state = 389}, - [4767] = {.lex_state = 29}, + [4767] = {.lex_state = 389}, [4768] = {.lex_state = 389}, - [4769] = {.lex_state = 29}, + [4769] = {.lex_state = 389}, [4770] = {.lex_state = 389}, [4771] = {.lex_state = 389}, - [4772] = {.lex_state = 29}, - [4773] = {.lex_state = 29}, - [4774] = {.lex_state = 389, .external_lex_state = 21}, - [4775] = {.lex_state = 29}, - [4776] = {.lex_state = 29}, - [4777] = {.lex_state = 49, .external_lex_state = 24}, + [4772] = {.lex_state = 389}, + [4773] = {.lex_state = 389}, + [4774] = {.lex_state = 389}, + [4775] = {.lex_state = 389}, + [4776] = {.lex_state = 389}, + [4777] = {.lex_state = 389}, [4778] = {.lex_state = 389}, - [4779] = {.lex_state = 43}, - [4780] = {.lex_state = 389, .external_lex_state = 21}, - [4781] = {.lex_state = 389, .external_lex_state = 21}, + [4779] = {.lex_state = 389}, + [4780] = {.lex_state = 389}, + [4781] = {.lex_state = 389}, [4782] = {.lex_state = 389}, - [4783] = {.lex_state = 389, .external_lex_state = 21}, + [4783] = {.lex_state = 389}, [4784] = {.lex_state = 389}, [4785] = {.lex_state = 389, .external_lex_state = 21}, [4786] = {.lex_state = 389}, [4787] = {.lex_state = 389}, [4788] = {.lex_state = 389}, - [4789] = {.lex_state = 389}, - [4790] = {.lex_state = 389, .external_lex_state = 21}, - [4791] = {.lex_state = 389}, + [4789] = {.lex_state = 389, .external_lex_state = 21}, + [4790] = {.lex_state = 389}, + [4791] = {.lex_state = 49}, [4792] = {.lex_state = 389}, - [4793] = {.lex_state = 389}, - [4794] = {.lex_state = 389, .external_lex_state = 26}, + [4793] = {.lex_state = 389, .external_lex_state = 21}, + [4794] = {.lex_state = 389}, [4795] = {.lex_state = 389}, - [4796] = {.lex_state = 389, .external_lex_state = 21}, - [4797] = {.lex_state = 389}, - [4798] = {.lex_state = 389}, + [4796] = {.lex_state = 389}, + [4797] = {.lex_state = 389, .external_lex_state = 21}, + [4798] = {.lex_state = 49, .external_lex_state = 24}, [4799] = {.lex_state = 389}, [4800] = {.lex_state = 389}, [4801] = {.lex_state = 389}, [4802] = {.lex_state = 389}, - [4803] = {.lex_state = 389}, + [4803] = {.lex_state = 29}, [4804] = {.lex_state = 389}, [4805] = {.lex_state = 389}, [4806] = {.lex_state = 389}, - [4807] = {.lex_state = 389, .external_lex_state = 21}, + [4807] = {.lex_state = 389}, [4808] = {.lex_state = 389}, [4809] = {.lex_state = 389}, - [4810] = {.lex_state = 389}, + [4810] = {.lex_state = 29}, [4811] = {.lex_state = 389}, [4812] = {.lex_state = 389}, - [4813] = {.lex_state = 389}, + [4813] = {.lex_state = 29}, [4814] = {.lex_state = 389}, [4815] = {.lex_state = 389}, - [4816] = {.lex_state = 49}, - [4817] = {.lex_state = 49}, - [4818] = {.lex_state = 389, .external_lex_state = 21}, - [4819] = {.lex_state = 389}, + [4816] = {.lex_state = 389}, + [4817] = {.lex_state = 389}, + [4818] = {.lex_state = 29, .external_lex_state = 25}, + [4819] = {.lex_state = 29}, [4820] = {.lex_state = 389}, - [4821] = {.lex_state = 389}, + [4821] = {.lex_state = 389, .external_lex_state = 21}, [4822] = {.lex_state = 389}, [4823] = {.lex_state = 389}, [4824] = {.lex_state = 389}, [4825] = {.lex_state = 389}, - [4826] = {.lex_state = 389}, - [4827] = {.lex_state = 389}, + [4826] = {.lex_state = 29}, + [4827] = {.lex_state = 49}, [4828] = {.lex_state = 389}, - [4829] = {.lex_state = 389}, - [4830] = {.lex_state = 389, .external_lex_state = 21}, - [4831] = {.lex_state = 389, .external_lex_state = 21}, + [4829] = {.lex_state = 29}, + [4830] = {.lex_state = 389}, + [4831] = {.lex_state = 389}, [4832] = {.lex_state = 389}, [4833] = {.lex_state = 389}, [4834] = {.lex_state = 389}, [4835] = {.lex_state = 389}, [4836] = {.lex_state = 389}, [4837] = {.lex_state = 389, .external_lex_state = 21}, - [4838] = {.lex_state = 389}, - [4839] = {.lex_state = 389}, + [4838] = {.lex_state = 389, .external_lex_state = 21}, + [4839] = {.lex_state = 389, .external_lex_state = 21}, [4840] = {.lex_state = 389}, - [4841] = {.lex_state = 389, .external_lex_state = 21}, + [4841] = {.lex_state = 389}, [4842] = {.lex_state = 389}, - [4843] = {.lex_state = 389, .external_lex_state = 21}, + [4843] = {.lex_state = 389}, [4844] = {.lex_state = 389}, - [4845] = {.lex_state = 389, .external_lex_state = 26}, - [4846] = {.lex_state = 389, .external_lex_state = 21}, + [4845] = {.lex_state = 389}, + [4846] = {.lex_state = 389}, [4847] = {.lex_state = 389}, [4848] = {.lex_state = 389}, [4849] = {.lex_state = 389, .external_lex_state = 21}, - [4850] = {.lex_state = 389, .external_lex_state = 21}, - [4851] = {.lex_state = 43}, - [4852] = {.lex_state = 389, .external_lex_state = 21}, - [4853] = {.lex_state = 43}, - [4854] = {.lex_state = 389, .external_lex_state = 21}, + [4850] = {.lex_state = 389}, + [4851] = {.lex_state = 389, .external_lex_state = 21}, + [4852] = {.lex_state = 389}, + [4853] = {.lex_state = 389, .external_lex_state = 26}, + [4854] = {.lex_state = 389}, [4855] = {.lex_state = 389}, - [4856] = {.lex_state = 389}, - [4857] = {.lex_state = 389, .external_lex_state = 21}, + [4856] = {.lex_state = 389, .external_lex_state = 21}, + [4857] = {.lex_state = 389}, [4858] = {.lex_state = 389}, [4859] = {.lex_state = 389}, [4860] = {.lex_state = 389}, - [4861] = {.lex_state = 389, .external_lex_state = 21}, - [4862] = {.lex_state = 389, .external_lex_state = 21}, - [4863] = {.lex_state = 389, .external_lex_state = 21}, + [4861] = {.lex_state = 389}, + [4862] = {.lex_state = 389}, + [4863] = {.lex_state = 389}, [4864] = {.lex_state = 389}, - [4865] = {.lex_state = 389}, - [4866] = {.lex_state = 43}, - [4867] = {.lex_state = 43}, - [4868] = {.lex_state = 389}, - [4869] = {.lex_state = 389}, - [4870] = {.lex_state = 389}, - [4871] = {.lex_state = 389}, + [4865] = {.lex_state = 49}, + [4866] = {.lex_state = 389, .external_lex_state = 26}, + [4867] = {.lex_state = 389}, + [4868] = {.lex_state = 389, .external_lex_state = 21}, + [4869] = {.lex_state = 389, .external_lex_state = 21}, + [4870] = {.lex_state = 389, .external_lex_state = 21}, + [4871] = {.lex_state = 389, .external_lex_state = 21}, [4872] = {.lex_state = 389}, [4873] = {.lex_state = 389}, - [4874] = {.lex_state = 43}, + [4874] = {.lex_state = 389}, [4875] = {.lex_state = 389}, - [4876] = {.lex_state = 389, .external_lex_state = 21}, + [4876] = {.lex_state = 43}, [4877] = {.lex_state = 389}, - [4878] = {.lex_state = 49}, - [4879] = {.lex_state = 49}, + [4878] = {.lex_state = 389}, + [4879] = {.lex_state = 389}, [4880] = {.lex_state = 389}, - [4881] = {.lex_state = 389, .external_lex_state = 21}, + [4881] = {.lex_state = 389}, [4882] = {.lex_state = 389}, [4883] = {.lex_state = 389}, [4884] = {.lex_state = 389}, - [4885] = {.lex_state = 389}, - [4886] = {.lex_state = 389}, + [4885] = {.lex_state = 389, .external_lex_state = 21}, + [4886] = {.lex_state = 389, .external_lex_state = 21}, [4887] = {.lex_state = 389}, [4888] = {.lex_state = 389}, [4889] = {.lex_state = 389}, [4890] = {.lex_state = 389}, - [4891] = {.lex_state = 389}, + [4891] = {.lex_state = 43}, [4892] = {.lex_state = 389}, [4893] = {.lex_state = 389}, [4894] = {.lex_state = 389}, - [4895] = {.lex_state = 389}, - [4896] = {.lex_state = 389}, + [4895] = {.lex_state = 43}, + [4896] = {.lex_state = 43}, [4897] = {.lex_state = 389}, - [4898] = {.lex_state = 389}, + [4898] = {.lex_state = 49}, [4899] = {.lex_state = 389}, - [4900] = {.lex_state = 389}, - [4901] = {.lex_state = 43}, - [4902] = {.lex_state = 43}, - [4903] = {.lex_state = 43}, - [4904] = {.lex_state = 43}, + [4900] = {.lex_state = 389, .external_lex_state = 21}, + [4901] = {.lex_state = 389}, + [4902] = {.lex_state = 389, .external_lex_state = 21}, + [4903] = {.lex_state = 389}, + [4904] = {.lex_state = 389}, [4905] = {.lex_state = 389}, - [4906] = {.lex_state = 43}, - [4907] = {.lex_state = 43}, + [4906] = {.lex_state = 389}, + [4907] = {.lex_state = 389}, [4908] = {.lex_state = 389}, - [4909] = {.lex_state = 389, .external_lex_state = 21}, - [4910] = {.lex_state = 389, .external_lex_state = 21}, + [4909] = {.lex_state = 389}, + [4910] = {.lex_state = 389}, [4911] = {.lex_state = 389}, [4912] = {.lex_state = 389}, - [4913] = {.lex_state = 389, .external_lex_state = 21}, + [4913] = {.lex_state = 389, .external_lex_state = 26}, [4914] = {.lex_state = 389}, [4915] = {.lex_state = 389}, [4916] = {.lex_state = 389}, [4917] = {.lex_state = 389}, [4918] = {.lex_state = 389}, - [4919] = {.lex_state = 389}, + [4919] = {.lex_state = 389, .external_lex_state = 26}, [4920] = {.lex_state = 389}, - [4921] = {.lex_state = 389}, + [4921] = {.lex_state = 389, .external_lex_state = 21}, [4922] = {.lex_state = 389}, [4923] = {.lex_state = 389}, - [4924] = {.lex_state = 389}, + [4924] = {.lex_state = 389, .external_lex_state = 21}, [4925] = {.lex_state = 389}, - [4926] = {.lex_state = 389}, - [4927] = {.lex_state = 49}, + [4926] = {.lex_state = 389, .external_lex_state = 21}, + [4927] = {.lex_state = 389, .external_lex_state = 21}, [4928] = {.lex_state = 389}, [4929] = {.lex_state = 389}, - [4930] = {.lex_state = 389}, - [4931] = {.lex_state = 389}, - [4932] = {.lex_state = 389}, - [4933] = {.lex_state = 389, .external_lex_state = 21}, - [4934] = {.lex_state = 43}, - [4935] = {.lex_state = 389}, + [4930] = {.lex_state = 389, .external_lex_state = 21}, + [4931] = {.lex_state = 389, .external_lex_state = 21}, + [4932] = {.lex_state = 389, .external_lex_state = 21}, + [4933] = {.lex_state = 389}, + [4934] = {.lex_state = 389}, + [4935] = {.lex_state = 389, .external_lex_state = 21}, [4936] = {.lex_state = 389}, - [4937] = {.lex_state = 389}, - [4938] = {.lex_state = 389, .external_lex_state = 26}, + [4937] = {.lex_state = 389, .external_lex_state = 21}, + [4938] = {.lex_state = 389}, [4939] = {.lex_state = 389}, - [4940] = {.lex_state = 389}, - [4941] = {.lex_state = 389}, - [4942] = {.lex_state = 389, .external_lex_state = 21}, - [4943] = {.lex_state = 389}, + [4940] = {.lex_state = 389, .external_lex_state = 26}, + [4941] = {.lex_state = 49}, + [4942] = {.lex_state = 389}, + [4943] = {.lex_state = 389, .external_lex_state = 21}, [4944] = {.lex_state = 389}, - [4945] = {.lex_state = 389, .external_lex_state = 21}, - [4946] = {.lex_state = 389, .external_lex_state = 21}, - [4947] = {.lex_state = 389}, - [4948] = {.lex_state = 389}, - [4949] = {.lex_state = 389}, - [4950] = {.lex_state = 389, .external_lex_state = 21}, - [4951] = {.lex_state = 389, .external_lex_state = 26}, - [4952] = {.lex_state = 389}, - [4953] = {.lex_state = 49}, + [4945] = {.lex_state = 389}, + [4946] = {.lex_state = 389}, + [4947] = {.lex_state = 389, .external_lex_state = 21}, + [4948] = {.lex_state = 389, .external_lex_state = 21}, + [4949] = {.lex_state = 389, .external_lex_state = 21}, + [4950] = {.lex_state = 389}, + [4951] = {.lex_state = 389}, + [4952] = {.lex_state = 389, .external_lex_state = 21}, + [4953] = {.lex_state = 389, .external_lex_state = 21}, [4954] = {.lex_state = 389}, - [4955] = {.lex_state = 389}, + [4955] = {.lex_state = 389, .external_lex_state = 21}, [4956] = {.lex_state = 389}, - [4957] = {.lex_state = 389, .external_lex_state = 21}, + [4957] = {.lex_state = 389}, [4958] = {.lex_state = 389, .external_lex_state = 21}, - [4959] = {.lex_state = 389, .external_lex_state = 21}, - [4960] = {.lex_state = 389, .external_lex_state = 21}, + [4959] = {.lex_state = 389}, + [4960] = {.lex_state = 389}, [4961] = {.lex_state = 389}, - [4962] = {.lex_state = 389, .external_lex_state = 21}, + [4962] = {.lex_state = 49}, [4963] = {.lex_state = 389}, - [4964] = {.lex_state = 389, .external_lex_state = 26}, + [4964] = {.lex_state = 389}, [4965] = {.lex_state = 389}, - [4966] = {.lex_state = 389, .external_lex_state = 21}, + [4966] = {.lex_state = 389}, [4967] = {.lex_state = 389}, [4968] = {.lex_state = 389}, [4969] = {.lex_state = 389}, - [4970] = {.lex_state = 49}, + [4970] = {.lex_state = 389, .external_lex_state = 21}, [4971] = {.lex_state = 389}, - [4972] = {.lex_state = 389, .external_lex_state = 21}, - [4973] = {.lex_state = 389}, + [4972] = {.lex_state = 389}, + [4973] = {.lex_state = 389, .external_lex_state = 21}, [4974] = {.lex_state = 389}, - [4975] = {.lex_state = 389}, - [4976] = {.lex_state = 389, .external_lex_state = 21}, + [4975] = {.lex_state = 389, .external_lex_state = 21}, + [4976] = {.lex_state = 389}, [4977] = {.lex_state = 389}, - [4978] = {.lex_state = 389, .external_lex_state = 21}, - [4979] = {.lex_state = 389, .external_lex_state = 21}, - [4980] = {.lex_state = 389}, + [4978] = {.lex_state = 389}, + [4979] = {.lex_state = 43}, + [4980] = {.lex_state = 43}, [4981] = {.lex_state = 43}, - [4982] = {.lex_state = 389}, + [4982] = {.lex_state = 43}, [4983] = {.lex_state = 389}, - [4984] = {.lex_state = 389}, - [4985] = {.lex_state = 389}, + [4984] = {.lex_state = 43}, + [4985] = {.lex_state = 43}, [4986] = {.lex_state = 389}, [4987] = {.lex_state = 389}, - [4988] = {.lex_state = 389, .external_lex_state = 21}, - [4989] = {.lex_state = 389}, + [4988] = {.lex_state = 49}, + [4989] = {.lex_state = 389, .external_lex_state = 21}, [4990] = {.lex_state = 389, .external_lex_state = 21}, - [4991] = {.lex_state = 389, .external_lex_state = 21}, - [4992] = {.lex_state = 389}, - [4993] = {.lex_state = 389, .external_lex_state = 21}, - [4994] = {.lex_state = 389, .external_lex_state = 21}, - [4995] = {.lex_state = 389, .external_lex_state = 26}, - [4996] = {.lex_state = 389}, - [4997] = {.lex_state = 389, .external_lex_state = 21}, + [4991] = {.lex_state = 389}, + [4992] = {.lex_state = 49}, + [4993] = {.lex_state = 389}, + [4994] = {.lex_state = 389}, + [4995] = {.lex_state = 389, .external_lex_state = 21}, + [4996] = {.lex_state = 389, .external_lex_state = 21}, + [4997] = {.lex_state = 49}, [4998] = {.lex_state = 389}, - [4999] = {.lex_state = 389}, - [5000] = {.lex_state = 389, .external_lex_state = 21}, - [5001] = {.lex_state = 389, .external_lex_state = 21}, - [5002] = {.lex_state = 389, .external_lex_state = 21}, - [5003] = {.lex_state = 389}, - [5004] = {.lex_state = 389, .external_lex_state = 21}, + [4999] = {.lex_state = 389, .external_lex_state = 21}, + [5000] = {.lex_state = 49}, + [5001] = {.lex_state = 389}, + [5002] = {.lex_state = 389}, + [5003] = {.lex_state = 389, .external_lex_state = 21}, + [5004] = {.lex_state = 389}, [5005] = {.lex_state = 389}, [5006] = {.lex_state = 389, .external_lex_state = 21}, [5007] = {.lex_state = 389}, [5008] = {.lex_state = 389}, [5009] = {.lex_state = 389}, [5010] = {.lex_state = 389, .external_lex_state = 21}, - [5011] = {.lex_state = 389}, - [5012] = {.lex_state = 389}, + [5011] = {.lex_state = 389, .external_lex_state = 21}, + [5012] = {.lex_state = 389, .external_lex_state = 21}, [5013] = {.lex_state = 389}, - [5014] = {.lex_state = 389, .external_lex_state = 21}, - [5015] = {.lex_state = 49}, - [5016] = {.lex_state = 389}, - [5017] = {.lex_state = 389}, - [5018] = {.lex_state = 389, .external_lex_state = 21}, + [5014] = {.lex_state = 389}, + [5015] = {.lex_state = 389}, + [5016] = {.lex_state = 389, .external_lex_state = 21}, + [5017] = {.lex_state = 389, .external_lex_state = 21}, + [5018] = {.lex_state = 389}, [5019] = {.lex_state = 389}, - [5020] = {.lex_state = 389, .external_lex_state = 26}, - [5021] = {.lex_state = 389}, - [5022] = {.lex_state = 389}, + [5020] = {.lex_state = 389}, + [5021] = {.lex_state = 389, .external_lex_state = 21}, + [5022] = {.lex_state = 389, .external_lex_state = 21}, [5023] = {.lex_state = 389}, [5024] = {.lex_state = 389}, - [5025] = {.lex_state = 389}, + [5025] = {.lex_state = 389, .external_lex_state = 26}, [5026] = {.lex_state = 389}, - [5027] = {.lex_state = 43}, - [5028] = {.lex_state = 389, .external_lex_state = 21}, - [5029] = {.lex_state = 43}, - [5030] = {.lex_state = 43}, - [5031] = {.lex_state = 389, .external_lex_state = 21}, - [5032] = {.lex_state = 389}, - [5033] = {.lex_state = 49}, - [5034] = {.lex_state = 389}, + [5027] = {.lex_state = 389, .external_lex_state = 21}, + [5028] = {.lex_state = 389}, + [5029] = {.lex_state = 389}, + [5030] = {.lex_state = 389}, + [5031] = {.lex_state = 389}, + [5032] = {.lex_state = 389, .external_lex_state = 21}, + [5033] = {.lex_state = 389}, + [5034] = {.lex_state = 389, .external_lex_state = 21}, [5035] = {.lex_state = 389}, [5036] = {.lex_state = 389}, - [5037] = {.lex_state = 389}, - [5038] = {.lex_state = 43}, - [5039] = {.lex_state = 389, .external_lex_state = 21}, - [5040] = {.lex_state = 389, .external_lex_state = 21}, - [5041] = {.lex_state = 389}, - [5042] = {.lex_state = 389}, + [5037] = {.lex_state = 389, .external_lex_state = 21}, + [5038] = {.lex_state = 389, .external_lex_state = 21}, + [5039] = {.lex_state = 43}, + [5040] = {.lex_state = 43}, + [5041] = {.lex_state = 43}, + [5042] = {.lex_state = 43}, [5043] = {.lex_state = 389}, - [5044] = {.lex_state = 389, .external_lex_state = 21}, - [5045] = {.lex_state = 389}, - [5046] = {.lex_state = 389}, + [5044] = {.lex_state = 389}, + [5045] = {.lex_state = 43}, + [5046] = {.lex_state = 43}, [5047] = {.lex_state = 389}, - [5048] = {.lex_state = 389}, + [5048] = {.lex_state = 389, .external_lex_state = 21}, [5049] = {.lex_state = 389, .external_lex_state = 21}, [5050] = {.lex_state = 389}, [5051] = {.lex_state = 389}, @@ -25362,108 +25415,108 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [5054] = {.lex_state = 389}, [5055] = {.lex_state = 389}, [5056] = {.lex_state = 389}, - [5057] = {.lex_state = 389}, + [5057] = {.lex_state = 389, .external_lex_state = 21}, [5058] = {.lex_state = 389, .external_lex_state = 21}, [5059] = {.lex_state = 389}, - [5060] = {.lex_state = 389}, - [5061] = {.lex_state = 49}, - [5062] = {.lex_state = 389}, + [5060] = {.lex_state = 389, .external_lex_state = 21}, + [5061] = {.lex_state = 389, .external_lex_state = 21}, + [5062] = {.lex_state = 389, .external_lex_state = 21}, [5063] = {.lex_state = 389}, - [5064] = {.lex_state = 389}, - [5065] = {.lex_state = 62}, - [5066] = {.lex_state = 2, .external_lex_state = 27}, - [5067] = {.lex_state = 62}, - [5068] = {.lex_state = 49}, + [5064] = {.lex_state = 389, .external_lex_state = 21}, + [5065] = {.lex_state = 389}, + [5066] = {.lex_state = 389}, + [5067] = {.lex_state = 43}, + [5068] = {.lex_state = 389}, [5069] = {.lex_state = 389}, - [5070] = {.lex_state = 389}, + [5070] = {.lex_state = 49}, [5071] = {.lex_state = 389}, [5072] = {.lex_state = 389}, [5073] = {.lex_state = 389}, [5074] = {.lex_state = 389}, - [5075] = {.lex_state = 389}, - [5076] = {.lex_state = 2, .external_lex_state = 27}, + [5075] = {.lex_state = 43}, + [5076] = {.lex_state = 389}, [5077] = {.lex_state = 389}, [5078] = {.lex_state = 389}, [5079] = {.lex_state = 389}, [5080] = {.lex_state = 389}, - [5081] = {.lex_state = 62}, + [5081] = {.lex_state = 389}, [5082] = {.lex_state = 389}, [5083] = {.lex_state = 389}, - [5084] = {.lex_state = 49}, - [5085] = {.lex_state = 49}, + [5084] = {.lex_state = 389}, + [5085] = {.lex_state = 389}, [5086] = {.lex_state = 389}, [5087] = {.lex_state = 389}, - [5088] = {.lex_state = 62}, - [5089] = {.lex_state = 389}, + [5088] = {.lex_state = 389}, + [5089] = {.lex_state = 389, .external_lex_state = 26}, [5090] = {.lex_state = 389}, - [5091] = {.lex_state = 389, .external_lex_state = 28}, + [5091] = {.lex_state = 389}, [5092] = {.lex_state = 389}, - [5093] = {.lex_state = 49}, + [5093] = {.lex_state = 389}, [5094] = {.lex_state = 389}, - [5095] = {.lex_state = 49}, - [5096] = {.lex_state = 49}, + [5095] = {.lex_state = 389}, + [5096] = {.lex_state = 389}, [5097] = {.lex_state = 389}, [5098] = {.lex_state = 389}, - [5099] = {.lex_state = 389}, + [5099] = {.lex_state = 389, .external_lex_state = 21}, [5100] = {.lex_state = 389}, [5101] = {.lex_state = 389}, [5102] = {.lex_state = 389}, [5103] = {.lex_state = 389}, - [5104] = {.lex_state = 389}, - [5105] = {.lex_state = 49}, + [5104] = {.lex_state = 389, .external_lex_state = 21}, + [5105] = {.lex_state = 389}, [5106] = {.lex_state = 389}, [5107] = {.lex_state = 389}, [5108] = {.lex_state = 389}, [5109] = {.lex_state = 389}, [5110] = {.lex_state = 389}, [5111] = {.lex_state = 389}, - [5112] = {.lex_state = 389}, - [5113] = {.lex_state = 2, .external_lex_state = 27}, - [5114] = {.lex_state = 49}, - [5115] = {.lex_state = 389}, - [5116] = {.lex_state = 389}, + [5112] = {.lex_state = 62}, + [5113] = {.lex_state = 389}, + [5114] = {.lex_state = 389}, + [5115] = {.lex_state = 2, .external_lex_state = 27}, + [5116] = {.lex_state = 49}, [5117] = {.lex_state = 389}, [5118] = {.lex_state = 389}, [5119] = {.lex_state = 389}, - [5120] = {.lex_state = 49}, + [5120] = {.lex_state = 389}, [5121] = {.lex_state = 389}, - [5122] = {.lex_state = 389, .external_lex_state = 29}, + [5122] = {.lex_state = 389}, [5123] = {.lex_state = 389}, [5124] = {.lex_state = 389}, [5125] = {.lex_state = 389}, [5126] = {.lex_state = 389}, [5127] = {.lex_state = 389}, - [5128] = {.lex_state = 389}, - [5129] = {.lex_state = 49}, - [5130] = {.lex_state = 389}, + [5128] = {.lex_state = 49}, + [5129] = {.lex_state = 389}, + [5130] = {.lex_state = 49}, [5131] = {.lex_state = 389}, - [5132] = {.lex_state = 49}, - [5133] = {.lex_state = 2, .external_lex_state = 27}, + [5132] = {.lex_state = 389}, + [5133] = {.lex_state = 49}, [5134] = {.lex_state = 389}, [5135] = {.lex_state = 389}, - [5136] = {.lex_state = 389}, - [5137] = {.lex_state = 49}, + [5136] = {.lex_state = 49}, + [5137] = {.lex_state = 389}, [5138] = {.lex_state = 389}, - [5139] = {.lex_state = 49}, + [5139] = {.lex_state = 389}, [5140] = {.lex_state = 389}, [5141] = {.lex_state = 389}, [5142] = {.lex_state = 389}, [5143] = {.lex_state = 389}, [5144] = {.lex_state = 389}, - [5145] = {.lex_state = 389}, - [5146] = {.lex_state = 2, .external_lex_state = 27}, + [5145] = {.lex_state = 49}, + [5146] = {.lex_state = 389}, [5147] = {.lex_state = 389}, - [5148] = {.lex_state = 49}, - [5149] = {.lex_state = 389}, + [5148] = {.lex_state = 62}, + [5149] = {.lex_state = 49}, [5150] = {.lex_state = 389}, - [5151] = {.lex_state = 389}, - [5152] = {.lex_state = 49}, - [5153] = {.lex_state = 389}, + [5151] = {.lex_state = 62}, + [5152] = {.lex_state = 2, .external_lex_state = 27}, + [5153] = {.lex_state = 389, .external_lex_state = 28}, [5154] = {.lex_state = 389}, [5155] = {.lex_state = 389}, [5156] = {.lex_state = 389}, [5157] = {.lex_state = 389}, - [5158] = {.lex_state = 2, .external_lex_state = 27}, + [5158] = {.lex_state = 389}, [5159] = {.lex_state = 389}, [5160] = {.lex_state = 389}, [5161] = {.lex_state = 389}, @@ -25477,114 +25530,114 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [5169] = {.lex_state = 389}, [5170] = {.lex_state = 389}, [5171] = {.lex_state = 389}, - [5172] = {.lex_state = 389}, + [5172] = {.lex_state = 2, .external_lex_state = 27}, [5173] = {.lex_state = 389}, [5174] = {.lex_state = 389}, - [5175] = {.lex_state = 389}, + [5175] = {.lex_state = 49}, [5176] = {.lex_state = 389}, [5177] = {.lex_state = 389}, - [5178] = {.lex_state = 389}, - [5179] = {.lex_state = 389}, + [5178] = {.lex_state = 389, .external_lex_state = 29}, + [5179] = {.lex_state = 2, .external_lex_state = 27}, [5180] = {.lex_state = 389}, [5181] = {.lex_state = 389}, - [5182] = {.lex_state = 49}, + [5182] = {.lex_state = 389}, [5183] = {.lex_state = 389}, - [5184] = {.lex_state = 389}, - [5185] = {.lex_state = 389}, + [5184] = {.lex_state = 389, .external_lex_state = 29}, + [5185] = {.lex_state = 2, .external_lex_state = 27}, [5186] = {.lex_state = 389}, [5187] = {.lex_state = 389, .external_lex_state = 28}, [5188] = {.lex_state = 389}, [5189] = {.lex_state = 389}, [5190] = {.lex_state = 389}, - [5191] = {.lex_state = 389}, + [5191] = {.lex_state = 49}, [5192] = {.lex_state = 389}, - [5193] = {.lex_state = 49}, + [5193] = {.lex_state = 389}, [5194] = {.lex_state = 389}, - [5195] = {.lex_state = 49}, + [5195] = {.lex_state = 389}, [5196] = {.lex_state = 389}, - [5197] = {.lex_state = 62}, + [5197] = {.lex_state = 2, .external_lex_state = 27}, [5198] = {.lex_state = 49}, - [5199] = {.lex_state = 49}, - [5200] = {.lex_state = 49}, - [5201] = {.lex_state = 389, .external_lex_state = 29}, - [5202] = {.lex_state = 389, .external_lex_state = 29}, - [5203] = {.lex_state = 2, .external_lex_state = 27}, + [5199] = {.lex_state = 389}, + [5200] = {.lex_state = 389}, + [5201] = {.lex_state = 389}, + [5202] = {.lex_state = 389}, + [5203] = {.lex_state = 389}, [5204] = {.lex_state = 389}, [5205] = {.lex_state = 389}, [5206] = {.lex_state = 389}, [5207] = {.lex_state = 389}, - [5208] = {.lex_state = 389, .external_lex_state = 28}, + [5208] = {.lex_state = 389}, [5209] = {.lex_state = 49}, [5210] = {.lex_state = 389}, - [5211] = {.lex_state = 49}, + [5211] = {.lex_state = 389}, [5212] = {.lex_state = 389}, - [5213] = {.lex_state = 49}, - [5214] = {.lex_state = 389, .external_lex_state = 29}, + [5213] = {.lex_state = 2, .external_lex_state = 27}, + [5214] = {.lex_state = 389}, [5215] = {.lex_state = 389}, - [5216] = {.lex_state = 49}, - [5217] = {.lex_state = 49}, - [5218] = {.lex_state = 389}, - [5219] = {.lex_state = 389, .external_lex_state = 29}, + [5216] = {.lex_state = 389}, + [5217] = {.lex_state = 389}, + [5218] = {.lex_state = 49}, + [5219] = {.lex_state = 62}, [5220] = {.lex_state = 389}, - [5221] = {.lex_state = 389}, + [5221] = {.lex_state = 389, .external_lex_state = 28}, [5222] = {.lex_state = 389}, [5223] = {.lex_state = 389}, [5224] = {.lex_state = 389}, [5225] = {.lex_state = 389}, [5226] = {.lex_state = 389}, - [5227] = {.lex_state = 389}, + [5227] = {.lex_state = 49}, [5228] = {.lex_state = 389}, [5229] = {.lex_state = 389}, [5230] = {.lex_state = 389}, [5231] = {.lex_state = 389}, [5232] = {.lex_state = 389}, - [5233] = {.lex_state = 389}, - [5234] = {.lex_state = 389}, + [5233] = {.lex_state = 49}, + [5234] = {.lex_state = 49}, [5235] = {.lex_state = 389}, - [5236] = {.lex_state = 2, .external_lex_state = 27}, + [5236] = {.lex_state = 389}, [5237] = {.lex_state = 389}, - [5238] = {.lex_state = 389}, + [5238] = {.lex_state = 49}, [5239] = {.lex_state = 389}, - [5240] = {.lex_state = 389}, - [5241] = {.lex_state = 389}, - [5242] = {.lex_state = 389}, + [5240] = {.lex_state = 49}, + [5241] = {.lex_state = 389, .external_lex_state = 29}, + [5242] = {.lex_state = 389, .external_lex_state = 29}, [5243] = {.lex_state = 389}, [5244] = {.lex_state = 389}, - [5245] = {.lex_state = 389, .external_lex_state = 29}, - [5246] = {.lex_state = 62}, - [5247] = {.lex_state = 49}, - [5248] = {.lex_state = 49}, - [5249] = {.lex_state = 389}, - [5250] = {.lex_state = 389}, - [5251] = {.lex_state = 49}, + [5245] = {.lex_state = 49}, + [5246] = {.lex_state = 389}, + [5247] = {.lex_state = 389}, + [5248] = {.lex_state = 389}, + [5249] = {.lex_state = 49}, + [5250] = {.lex_state = 62}, + [5251] = {.lex_state = 389}, [5252] = {.lex_state = 389}, - [5253] = {.lex_state = 389}, + [5253] = {.lex_state = 389, .external_lex_state = 29}, [5254] = {.lex_state = 49}, - [5255] = {.lex_state = 389, .external_lex_state = 29}, - [5256] = {.lex_state = 389, .external_lex_state = 29}, + [5255] = {.lex_state = 62}, + [5256] = {.lex_state = 49}, [5257] = {.lex_state = 389}, - [5258] = {.lex_state = 389}, + [5258] = {.lex_state = 389, .external_lex_state = 29}, [5259] = {.lex_state = 389}, [5260] = {.lex_state = 389}, [5261] = {.lex_state = 49}, - [5262] = {.lex_state = 389}, - [5263] = {.lex_state = 389}, + [5262] = {.lex_state = 49}, + [5263] = {.lex_state = 2, .external_lex_state = 27}, [5264] = {.lex_state = 389}, - [5265] = {.lex_state = 49}, + [5265] = {.lex_state = 389}, [5266] = {.lex_state = 389}, [5267] = {.lex_state = 389}, [5268] = {.lex_state = 389}, - [5269] = {.lex_state = 389, .external_lex_state = 29}, - [5270] = {.lex_state = 389, .external_lex_state = 29}, + [5269] = {.lex_state = 389}, + [5270] = {.lex_state = 62}, [5271] = {.lex_state = 389}, - [5272] = {.lex_state = 389, .external_lex_state = 29}, - [5273] = {.lex_state = 389, .external_lex_state = 29}, - [5274] = {.lex_state = 389, .external_lex_state = 29}, - [5275] = {.lex_state = 389, .external_lex_state = 29}, - [5276] = {.lex_state = 389, .external_lex_state = 29}, - [5277] = {.lex_state = 389, .external_lex_state = 29}, + [5272] = {.lex_state = 389}, + [5273] = {.lex_state = 389}, + [5274] = {.lex_state = 389}, + [5275] = {.lex_state = 389}, + [5276] = {.lex_state = 389}, + [5277] = {.lex_state = 389}, [5278] = {.lex_state = 389}, - [5279] = {.lex_state = 62}, + [5279] = {.lex_state = 389}, [5280] = {.lex_state = 389}, [5281] = {.lex_state = 389}, [5282] = {.lex_state = 389}, @@ -25594,32 +25647,85 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [5286] = {.lex_state = 389}, [5287] = {.lex_state = 389}, [5288] = {.lex_state = 389}, - [5289] = {.lex_state = 49}, + [5289] = {.lex_state = 389}, [5290] = {.lex_state = 389}, [5291] = {.lex_state = 389}, [5292] = {.lex_state = 389}, - [5293] = {.lex_state = 49}, - [5294] = {.lex_state = 389}, - [5295] = {.lex_state = 49}, + [5293] = {.lex_state = 389}, + [5294] = {.lex_state = 49}, + [5295] = {.lex_state = 389}, [5296] = {.lex_state = 389}, [5297] = {.lex_state = 389}, [5298] = {.lex_state = 389}, - [5299] = {.lex_state = 389}, - [5300] = {.lex_state = 389}, - [5301] = {.lex_state = 49}, - [5302] = {.lex_state = 389}, - [5303] = {.lex_state = 62}, - [5304] = {.lex_state = 389}, + [5299] = {.lex_state = 49}, + [5300] = {.lex_state = 49}, + [5301] = {.lex_state = 389}, + [5302] = {.lex_state = 49}, + [5303] = {.lex_state = 389, .external_lex_state = 29}, + [5304] = {.lex_state = 389, .external_lex_state = 29}, [5305] = {.lex_state = 389}, [5306] = {.lex_state = 389}, [5307] = {.lex_state = 389}, [5308] = {.lex_state = 389}, - [5309] = {.lex_state = 389}, + [5309] = {.lex_state = 49}, [5310] = {.lex_state = 389}, - [5311] = {.lex_state = 389}, + [5311] = {.lex_state = 49}, [5312] = {.lex_state = 389}, - [5313] = {.lex_state = 389}, - [5314] = {.lex_state = 389}, + [5313] = {.lex_state = 49}, + [5314] = {.lex_state = 49}, + [5315] = {.lex_state = 389}, + [5316] = {.lex_state = 389}, + [5317] = {.lex_state = 389}, + [5318] = {.lex_state = 389, .external_lex_state = 29}, + [5319] = {.lex_state = 389, .external_lex_state = 29}, + [5320] = {.lex_state = 389}, + [5321] = {.lex_state = 389, .external_lex_state = 29}, + [5322] = {.lex_state = 389, .external_lex_state = 29}, + [5323] = {.lex_state = 389, .external_lex_state = 29}, + [5324] = {.lex_state = 389, .external_lex_state = 29}, + [5325] = {.lex_state = 389, .external_lex_state = 29}, + [5326] = {.lex_state = 389, .external_lex_state = 29}, + [5327] = {.lex_state = 49}, + [5328] = {.lex_state = 389}, + [5329] = {.lex_state = 389}, + [5330] = {.lex_state = 389}, + [5331] = {.lex_state = 49}, + [5332] = {.lex_state = 389}, + [5333] = {.lex_state = 49}, + [5334] = {.lex_state = 49}, + [5335] = {.lex_state = 389}, + [5336] = {.lex_state = 389}, + [5337] = {.lex_state = 389}, + [5338] = {.lex_state = 389}, + [5339] = {.lex_state = 389}, + [5340] = {.lex_state = 389}, + [5341] = {.lex_state = 389}, + [5342] = {.lex_state = 389}, + [5343] = {.lex_state = 389}, + [5344] = {.lex_state = 389}, + [5345] = {.lex_state = 389}, + [5346] = {.lex_state = 389}, + [5347] = {.lex_state = 389}, + [5348] = {.lex_state = 49}, + [5349] = {.lex_state = 389}, + [5350] = {.lex_state = 389}, + [5351] = {.lex_state = 389}, + [5352] = {.lex_state = 389}, + [5353] = {.lex_state = 389}, + [5354] = {.lex_state = 389}, + [5355] = {.lex_state = 389}, + [5356] = {.lex_state = 49}, + [5357] = {.lex_state = 389}, + [5358] = {.lex_state = 389}, + [5359] = {.lex_state = 389}, + [5360] = {.lex_state = 389}, + [5361] = {.lex_state = 389}, + [5362] = {.lex_state = 389}, + [5363] = {.lex_state = 389}, + [5364] = {.lex_state = 62}, + [5365] = {.lex_state = 389}, + [5366] = {.lex_state = 389}, + [5367] = {.lex_state = 389}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -25911,13 +26017,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__parameter_separator] = ACTIONS(1), }, [STATE(1)] = { - [sym_program] = STATE(5161), + [sym_program] = STATE(5278), [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(1006), - [sym_path] = STATE(3861), + [sym_import_statement] = STATE(1018), + [sym_path] = STATE(3912), [sym_statement] = STATE(141), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -25936,58 +26042,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(1023), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(1003), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), + [sym__tag_call] = STATE(5010), [sym_static_initializer] = STATE(141), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(1006), - [aux_sym_program_repeat1] = STATE(129), + [sym_tag_statement] = STATE(1018), + [aux_sym_program_repeat1] = STATE(132), [aux_sym_program_repeat2] = STATE(141), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), @@ -26126,10 +26232,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(2)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(190), + [sym_path] = STATE(3912), + [sym_statement] = STATE(194), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -26148,70 +26254,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(190), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(194), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), @@ -26354,238 +26460,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(3)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(194), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4550), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4550), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4546), - [sym_pair_pattern] = STATE(4550), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(194), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4583), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(159), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(165), - [anon_sym_query] = ACTIONS(165), - [anon_sym_QUERY] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(167), - [anon_sym_set] = ACTIONS(167), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(163), - [anon_sym_QueryExecute] = ACTIONS(169), - [anon_sym_queryexecute] = ACTIONS(169), - [anon_sym_QUERYEXECUTE] = ACTIONS(169), - [anon_sym_queryExecute] = ACTIONS(169), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(171), - [anon_sym_abstract] = ACTIONS(171), - [anon_sym_ABSTRACT] = ACTIONS(171), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(173), - [anon_sym_component] = ACTIONS(173), - [anon_sym_COMPONENT] = ACTIONS(173), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(175), - [anon_sym_debugger] = ACTIONS(175), - [anon_sym_DEBUGGER] = ACTIONS(175), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(177), - [anon_sym_final] = ACTIONS(177), - [anon_sym_FINAL] = ACTIONS(177), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(179), - [anon_sym_include] = ACTIONS(179), - [anon_sym_INCLUDE] = ACTIONS(179), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(181), - [anon_sym_new] = ACTIONS(181), - [anon_sym_NEW] = ACTIONS(181), - [anon_sym_Package] = ACTIONS(183), - [anon_sym_package] = ACTIONS(183), - [anon_sym_PACKAGE] = ACTIONS(183), - [anon_sym_Private] = ACTIONS(183), - [anon_sym_private] = ACTIONS(183), - [anon_sym_PRIVATE] = ACTIONS(183), - [anon_sym_Public] = ACTIONS(183), - [anon_sym_public] = ACTIONS(183), - [anon_sym_PUBLIC] = ACTIONS(183), - [anon_sym_Remote] = ACTIONS(183), - [anon_sym_remote] = ACTIONS(183), - [anon_sym_REMOTE] = ACTIONS(183), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(185), - [anon_sym_static] = ACTIONS(185), - [anon_sym_STATIC] = ACTIONS(185), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(4)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(171), + [sym_path] = STATE(3912), + [sym_statement] = STATE(197), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -26604,75 +26482,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(171), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(197), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -26807,13 +26685,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(5)] = { + [STATE(4)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(174), + [sym_path] = STATE(3912), + [sym_statement] = STATE(191), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -26832,82 +26710,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4550), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4749), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4633), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4550), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4546), - [sym_pair_pattern] = STATE(4550), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4749), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4469), + [sym_pair_pattern] = STATE(4749), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(174), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4583), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(159), + [aux_sym_statement_block_repeat1] = STATE(191), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4671), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(161), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(163), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(163), + [anon_sym_let] = ACTIONS(165), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(165), - [anon_sym_query] = ACTIONS(165), - [anon_sym_QUERY] = ACTIONS(165), + [anon_sym_Query] = ACTIONS(167), + [anon_sym_query] = ACTIONS(167), + [anon_sym_QUERY] = ACTIONS(167), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26942,38 +26820,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(167), - [anon_sym_set] = ACTIONS(167), + [anon_sym_get] = ACTIONS(169), + [anon_sym_set] = ACTIONS(169), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(163), - [anon_sym_QueryExecute] = ACTIONS(169), - [anon_sym_queryexecute] = ACTIONS(169), - [anon_sym_QUERYEXECUTE] = ACTIONS(169), - [anon_sym_queryExecute] = ACTIONS(169), + [anon_sym_export] = ACTIONS(165), + [anon_sym_QueryExecute] = ACTIONS(171), + [anon_sym_queryexecute] = ACTIONS(171), + [anon_sym_QUERYEXECUTE] = ACTIONS(171), + [anon_sym_queryExecute] = ACTIONS(171), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(171), - [anon_sym_abstract] = ACTIONS(171), - [anon_sym_ABSTRACT] = ACTIONS(171), + [anon_sym_Abstract] = ACTIONS(173), + [anon_sym_abstract] = ACTIONS(173), + [anon_sym_ABSTRACT] = ACTIONS(173), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(173), - [anon_sym_component] = ACTIONS(173), - [anon_sym_COMPONENT] = ACTIONS(173), + [anon_sym_Component] = ACTIONS(175), + [anon_sym_component] = ACTIONS(175), + [anon_sym_COMPONENT] = ACTIONS(175), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(175), - [anon_sym_debugger] = ACTIONS(175), - [anon_sym_DEBUGGER] = ACTIONS(175), + [anon_sym_Debugger] = ACTIONS(177), + [anon_sym_debugger] = ACTIONS(177), + [anon_sym_DEBUGGER] = ACTIONS(177), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(177), - [anon_sym_final] = ACTIONS(177), - [anon_sym_FINAL] = ACTIONS(177), + [anon_sym_Final] = ACTIONS(179), + [anon_sym_final] = ACTIONS(179), + [anon_sym_FINAL] = ACTIONS(179), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -26986,33 +26864,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(179), - [anon_sym_include] = ACTIONS(179), - [anon_sym_INCLUDE] = ACTIONS(179), + [anon_sym_Include] = ACTIONS(181), + [anon_sym_include] = ACTIONS(181), + [anon_sym_INCLUDE] = ACTIONS(181), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(181), - [anon_sym_new] = ACTIONS(181), - [anon_sym_NEW] = ACTIONS(181), - [anon_sym_Package] = ACTIONS(183), - [anon_sym_package] = ACTIONS(183), - [anon_sym_PACKAGE] = ACTIONS(183), - [anon_sym_Private] = ACTIONS(183), - [anon_sym_private] = ACTIONS(183), - [anon_sym_PRIVATE] = ACTIONS(183), - [anon_sym_Public] = ACTIONS(183), - [anon_sym_public] = ACTIONS(183), - [anon_sym_PUBLIC] = ACTIONS(183), - [anon_sym_Remote] = ACTIONS(183), - [anon_sym_remote] = ACTIONS(183), - [anon_sym_REMOTE] = ACTIONS(183), + [anon_sym_New] = ACTIONS(183), + [anon_sym_new] = ACTIONS(183), + [anon_sym_NEW] = ACTIONS(183), + [anon_sym_Package] = ACTIONS(185), + [anon_sym_package] = ACTIONS(185), + [anon_sym_PACKAGE] = ACTIONS(185), + [anon_sym_Private] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_PRIVATE] = ACTIONS(185), + [anon_sym_Public] = ACTIONS(185), + [anon_sym_public] = ACTIONS(185), + [anon_sym_PUBLIC] = ACTIONS(185), + [anon_sym_Remote] = ACTIONS(185), + [anon_sym_remote] = ACTIONS(185), + [anon_sym_REMOTE] = ACTIONS(185), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(185), - [anon_sym_static] = ACTIONS(185), - [anon_sym_STATIC] = ACTIONS(185), + [anon_sym_Static] = ACTIONS(187), + [anon_sym_static] = ACTIONS(187), + [anon_sym_STATIC] = ACTIONS(187), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -27035,13 +26913,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(6)] = { + [STATE(5)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(188), + [sym_path] = STATE(3912), + [sym_statement] = STATE(186), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -27060,82 +26938,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4550), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4749), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4633), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4550), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4546), - [sym_pair_pattern] = STATE(4550), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4749), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4469), + [sym_pair_pattern] = STATE(4749), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(188), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4583), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(159), + [aux_sym_statement_block_repeat1] = STATE(186), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4671), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(161), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_RBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(163), + [anon_sym_let] = ACTIONS(165), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(165), - [anon_sym_query] = ACTIONS(165), - [anon_sym_QUERY] = ACTIONS(165), + [anon_sym_Query] = ACTIONS(167), + [anon_sym_query] = ACTIONS(167), + [anon_sym_QUERY] = ACTIONS(167), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27170,38 +27048,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(167), - [anon_sym_set] = ACTIONS(167), + [anon_sym_get] = ACTIONS(169), + [anon_sym_set] = ACTIONS(169), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(163), - [anon_sym_QueryExecute] = ACTIONS(169), - [anon_sym_queryexecute] = ACTIONS(169), - [anon_sym_QUERYEXECUTE] = ACTIONS(169), - [anon_sym_queryExecute] = ACTIONS(169), + [anon_sym_export] = ACTIONS(165), + [anon_sym_QueryExecute] = ACTIONS(171), + [anon_sym_queryexecute] = ACTIONS(171), + [anon_sym_QUERYEXECUTE] = ACTIONS(171), + [anon_sym_queryExecute] = ACTIONS(171), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(171), - [anon_sym_abstract] = ACTIONS(171), - [anon_sym_ABSTRACT] = ACTIONS(171), + [anon_sym_Abstract] = ACTIONS(173), + [anon_sym_abstract] = ACTIONS(173), + [anon_sym_ABSTRACT] = ACTIONS(173), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(173), - [anon_sym_component] = ACTIONS(173), - [anon_sym_COMPONENT] = ACTIONS(173), + [anon_sym_Component] = ACTIONS(175), + [anon_sym_component] = ACTIONS(175), + [anon_sym_COMPONENT] = ACTIONS(175), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(175), - [anon_sym_debugger] = ACTIONS(175), - [anon_sym_DEBUGGER] = ACTIONS(175), + [anon_sym_Debugger] = ACTIONS(177), + [anon_sym_debugger] = ACTIONS(177), + [anon_sym_DEBUGGER] = ACTIONS(177), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(177), - [anon_sym_final] = ACTIONS(177), - [anon_sym_FINAL] = ACTIONS(177), + [anon_sym_Final] = ACTIONS(179), + [anon_sym_final] = ACTIONS(179), + [anon_sym_FINAL] = ACTIONS(179), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -27214,33 +27092,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(179), - [anon_sym_include] = ACTIONS(179), - [anon_sym_INCLUDE] = ACTIONS(179), + [anon_sym_Include] = ACTIONS(181), + [anon_sym_include] = ACTIONS(181), + [anon_sym_INCLUDE] = ACTIONS(181), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(181), - [anon_sym_new] = ACTIONS(181), - [anon_sym_NEW] = ACTIONS(181), - [anon_sym_Package] = ACTIONS(183), - [anon_sym_package] = ACTIONS(183), - [anon_sym_PACKAGE] = ACTIONS(183), - [anon_sym_Private] = ACTIONS(183), - [anon_sym_private] = ACTIONS(183), - [anon_sym_PRIVATE] = ACTIONS(183), - [anon_sym_Public] = ACTIONS(183), - [anon_sym_public] = ACTIONS(183), - [anon_sym_PUBLIC] = ACTIONS(183), - [anon_sym_Remote] = ACTIONS(183), - [anon_sym_remote] = ACTIONS(183), - [anon_sym_REMOTE] = ACTIONS(183), + [anon_sym_New] = ACTIONS(183), + [anon_sym_new] = ACTIONS(183), + [anon_sym_NEW] = ACTIONS(183), + [anon_sym_Package] = ACTIONS(185), + [anon_sym_package] = ACTIONS(185), + [anon_sym_PACKAGE] = ACTIONS(185), + [anon_sym_Private] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_PRIVATE] = ACTIONS(185), + [anon_sym_Public] = ACTIONS(185), + [anon_sym_public] = ACTIONS(185), + [anon_sym_PUBLIC] = ACTIONS(185), + [anon_sym_Remote] = ACTIONS(185), + [anon_sym_remote] = ACTIONS(185), + [anon_sym_REMOTE] = ACTIONS(185), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(185), - [anon_sym_static] = ACTIONS(185), - [anon_sym_STATIC] = ACTIONS(185), + [anon_sym_Static] = ACTIONS(187), + [anon_sym_static] = ACTIONS(187), + [anon_sym_STATIC] = ACTIONS(187), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -27263,13 +27141,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(7)] = { + [STATE(6)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(195), + [sym_path] = STATE(3912), + [sym_statement] = STATE(194), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -27288,82 +27166,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4550), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4749), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4633), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4550), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4454), - [sym_pair_pattern] = STATE(4550), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4749), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4497), + [sym_pair_pattern] = STATE(4749), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(195), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4583), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(193), + [aux_sym_statement_block_repeat1] = STATE(194), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4671), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(191), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(195), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(197), + [anon_sym_let] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(199), - [anon_sym_query] = ACTIONS(199), - [anon_sym_QUERY] = ACTIONS(199), + [anon_sym_Query] = ACTIONS(195), + [anon_sym_query] = ACTIONS(195), + [anon_sym_QUERY] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27398,38 +27276,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(201), - [anon_sym_set] = ACTIONS(201), + [anon_sym_get] = ACTIONS(197), + [anon_sym_set] = ACTIONS(197), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(197), - [anon_sym_QueryExecute] = ACTIONS(203), - [anon_sym_queryexecute] = ACTIONS(203), - [anon_sym_QUERYEXECUTE] = ACTIONS(203), - [anon_sym_queryExecute] = ACTIONS(203), + [anon_sym_export] = ACTIONS(193), + [anon_sym_QueryExecute] = ACTIONS(199), + [anon_sym_queryexecute] = ACTIONS(199), + [anon_sym_QUERYEXECUTE] = ACTIONS(199), + [anon_sym_queryExecute] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(205), - [anon_sym_abstract] = ACTIONS(205), - [anon_sym_ABSTRACT] = ACTIONS(205), + [anon_sym_Abstract] = ACTIONS(201), + [anon_sym_abstract] = ACTIONS(201), + [anon_sym_ABSTRACT] = ACTIONS(201), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(207), - [anon_sym_component] = ACTIONS(207), - [anon_sym_COMPONENT] = ACTIONS(207), + [anon_sym_Component] = ACTIONS(203), + [anon_sym_component] = ACTIONS(203), + [anon_sym_COMPONENT] = ACTIONS(203), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(209), - [anon_sym_debugger] = ACTIONS(209), - [anon_sym_DEBUGGER] = ACTIONS(209), + [anon_sym_Debugger] = ACTIONS(205), + [anon_sym_debugger] = ACTIONS(205), + [anon_sym_DEBUGGER] = ACTIONS(205), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(211), - [anon_sym_final] = ACTIONS(211), - [anon_sym_FINAL] = ACTIONS(211), + [anon_sym_Final] = ACTIONS(207), + [anon_sym_final] = ACTIONS(207), + [anon_sym_FINAL] = ACTIONS(207), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -27442,33 +27320,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(213), - [anon_sym_include] = ACTIONS(213), - [anon_sym_INCLUDE] = ACTIONS(213), + [anon_sym_Include] = ACTIONS(209), + [anon_sym_include] = ACTIONS(209), + [anon_sym_INCLUDE] = ACTIONS(209), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(215), - [anon_sym_new] = ACTIONS(215), - [anon_sym_NEW] = ACTIONS(215), - [anon_sym_Package] = ACTIONS(217), - [anon_sym_package] = ACTIONS(217), - [anon_sym_PACKAGE] = ACTIONS(217), - [anon_sym_Private] = ACTIONS(217), - [anon_sym_private] = ACTIONS(217), - [anon_sym_PRIVATE] = ACTIONS(217), - [anon_sym_Public] = ACTIONS(217), - [anon_sym_public] = ACTIONS(217), - [anon_sym_PUBLIC] = ACTIONS(217), - [anon_sym_Remote] = ACTIONS(217), - [anon_sym_remote] = ACTIONS(217), - [anon_sym_REMOTE] = ACTIONS(217), + [anon_sym_New] = ACTIONS(211), + [anon_sym_new] = ACTIONS(211), + [anon_sym_NEW] = ACTIONS(211), + [anon_sym_Package] = ACTIONS(213), + [anon_sym_package] = ACTIONS(213), + [anon_sym_PACKAGE] = ACTIONS(213), + [anon_sym_Private] = ACTIONS(213), + [anon_sym_private] = ACTIONS(213), + [anon_sym_PRIVATE] = ACTIONS(213), + [anon_sym_Public] = ACTIONS(213), + [anon_sym_public] = ACTIONS(213), + [anon_sym_PUBLIC] = ACTIONS(213), + [anon_sym_Remote] = ACTIONS(213), + [anon_sym_remote] = ACTIONS(213), + [anon_sym_REMOTE] = ACTIONS(213), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(219), - [anon_sym_static] = ACTIONS(219), - [anon_sym_STATIC] = ACTIONS(219), + [anon_sym_Static] = ACTIONS(215), + [anon_sym_static] = ACTIONS(215), + [anon_sym_STATIC] = ACTIONS(215), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -27491,13 +27369,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(8)] = { + [STATE(7)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(174), + [sym_path] = STATE(3912), + [sym_statement] = STATE(191), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -27516,75 +27394,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(174), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(191), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(217), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -27719,13 +27597,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(9)] = { + [STATE(8)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(195), + [sym_path] = STATE(3912), + [sym_statement] = STATE(183), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -27744,75 +27622,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(195), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(183), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(195), + [anon_sym_RBRACE] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -27947,13 +27825,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(10)] = { + [STATE(9)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(198), + [sym_path] = STATE(3912), + [sym_statement] = STATE(196), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -27972,82 +27850,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4550), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4550), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4546), - [sym_pair_pattern] = STATE(4550), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4548), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(198), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4583), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(159), + [aux_sym_statement_block_repeat1] = STATE(196), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(223), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(163), + [anon_sym_let] = ACTIONS(225), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(165), - [anon_sym_query] = ACTIONS(165), - [anon_sym_QUERY] = ACTIONS(165), + [anon_sym_Query] = ACTIONS(227), + [anon_sym_query] = ACTIONS(227), + [anon_sym_QUERY] = ACTIONS(227), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28082,38 +27960,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(167), - [anon_sym_set] = ACTIONS(167), + [anon_sym_get] = ACTIONS(229), + [anon_sym_set] = ACTIONS(229), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(163), - [anon_sym_QueryExecute] = ACTIONS(169), - [anon_sym_queryexecute] = ACTIONS(169), - [anon_sym_QUERYEXECUTE] = ACTIONS(169), - [anon_sym_queryExecute] = ACTIONS(169), + [anon_sym_export] = ACTIONS(225), + [anon_sym_QueryExecute] = ACTIONS(231), + [anon_sym_queryexecute] = ACTIONS(231), + [anon_sym_QUERYEXECUTE] = ACTIONS(231), + [anon_sym_queryExecute] = ACTIONS(231), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(171), - [anon_sym_abstract] = ACTIONS(171), - [anon_sym_ABSTRACT] = ACTIONS(171), + [anon_sym_Abstract] = ACTIONS(233), + [anon_sym_abstract] = ACTIONS(233), + [anon_sym_ABSTRACT] = ACTIONS(233), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(173), - [anon_sym_component] = ACTIONS(173), - [anon_sym_COMPONENT] = ACTIONS(173), + [anon_sym_Component] = ACTIONS(235), + [anon_sym_component] = ACTIONS(235), + [anon_sym_COMPONENT] = ACTIONS(235), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(175), - [anon_sym_debugger] = ACTIONS(175), - [anon_sym_DEBUGGER] = ACTIONS(175), + [anon_sym_Debugger] = ACTIONS(237), + [anon_sym_debugger] = ACTIONS(237), + [anon_sym_DEBUGGER] = ACTIONS(237), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(177), - [anon_sym_final] = ACTIONS(177), - [anon_sym_FINAL] = ACTIONS(177), + [anon_sym_Final] = ACTIONS(239), + [anon_sym_final] = ACTIONS(239), + [anon_sym_FINAL] = ACTIONS(239), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -28126,33 +28004,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(179), - [anon_sym_include] = ACTIONS(179), - [anon_sym_INCLUDE] = ACTIONS(179), + [anon_sym_Include] = ACTIONS(241), + [anon_sym_include] = ACTIONS(241), + [anon_sym_INCLUDE] = ACTIONS(241), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(181), - [anon_sym_new] = ACTIONS(181), - [anon_sym_NEW] = ACTIONS(181), - [anon_sym_Package] = ACTIONS(183), - [anon_sym_package] = ACTIONS(183), - [anon_sym_PACKAGE] = ACTIONS(183), - [anon_sym_Private] = ACTIONS(183), - [anon_sym_private] = ACTIONS(183), - [anon_sym_PRIVATE] = ACTIONS(183), - [anon_sym_Public] = ACTIONS(183), - [anon_sym_public] = ACTIONS(183), - [anon_sym_PUBLIC] = ACTIONS(183), - [anon_sym_Remote] = ACTIONS(183), - [anon_sym_remote] = ACTIONS(183), - [anon_sym_REMOTE] = ACTIONS(183), + [anon_sym_New] = ACTIONS(243), + [anon_sym_new] = ACTIONS(243), + [anon_sym_NEW] = ACTIONS(243), + [anon_sym_Package] = ACTIONS(245), + [anon_sym_package] = ACTIONS(245), + [anon_sym_PACKAGE] = ACTIONS(245), + [anon_sym_Private] = ACTIONS(245), + [anon_sym_private] = ACTIONS(245), + [anon_sym_PRIVATE] = ACTIONS(245), + [anon_sym_Public] = ACTIONS(245), + [anon_sym_public] = ACTIONS(245), + [anon_sym_PUBLIC] = ACTIONS(245), + [anon_sym_Remote] = ACTIONS(245), + [anon_sym_remote] = ACTIONS(245), + [anon_sym_REMOTE] = ACTIONS(245), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(185), - [anon_sym_static] = ACTIONS(185), - [anon_sym_STATIC] = ACTIONS(185), + [anon_sym_Static] = ACTIONS(247), + [anon_sym_static] = ACTIONS(247), + [anon_sym_STATIC] = ACTIONS(247), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -28175,13 +28053,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(11)] = { + [STATE(10)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(199), + [sym_path] = STATE(3912), + [sym_statement] = STATE(196), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -28200,75 +28078,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(199), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(196), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(223), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -28403,13 +28281,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(12)] = { + [STATE(11)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(172), + [sym_path] = STATE(3912), + [sym_statement] = STATE(184), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -28428,75 +28306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(172), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(184), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_RBRACE] = ACTIONS(249), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -28631,13 +28509,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(13)] = { + [STATE(12)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(198), + [sym_path] = STATE(3912), + [sym_statement] = STATE(179), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -28656,75 +28534,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(198), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(179), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(251), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -28859,13 +28737,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(14)] = { + [STATE(13)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(176), + [sym_path] = STATE(3912), + [sym_statement] = STATE(180), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -28884,82 +28762,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4550), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4749), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4603), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4633), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4550), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4546), - [sym_pair_pattern] = STATE(4550), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4749), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4469), + [sym_pair_pattern] = STATE(4749), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(176), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4583), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(159), + [aux_sym_statement_block_repeat1] = STATE(180), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4671), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(161), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(253), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(163), + [anon_sym_let] = ACTIONS(165), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(165), - [anon_sym_query] = ACTIONS(165), - [anon_sym_QUERY] = ACTIONS(165), + [anon_sym_Query] = ACTIONS(167), + [anon_sym_query] = ACTIONS(167), + [anon_sym_QUERY] = ACTIONS(167), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28994,38 +28872,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(167), - [anon_sym_set] = ACTIONS(167), + [anon_sym_get] = ACTIONS(169), + [anon_sym_set] = ACTIONS(169), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(163), - [anon_sym_QueryExecute] = ACTIONS(169), - [anon_sym_queryexecute] = ACTIONS(169), - [anon_sym_QUERYEXECUTE] = ACTIONS(169), - [anon_sym_queryExecute] = ACTIONS(169), + [anon_sym_export] = ACTIONS(165), + [anon_sym_QueryExecute] = ACTIONS(171), + [anon_sym_queryexecute] = ACTIONS(171), + [anon_sym_QUERYEXECUTE] = ACTIONS(171), + [anon_sym_queryExecute] = ACTIONS(171), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(171), - [anon_sym_abstract] = ACTIONS(171), - [anon_sym_ABSTRACT] = ACTIONS(171), + [anon_sym_Abstract] = ACTIONS(173), + [anon_sym_abstract] = ACTIONS(173), + [anon_sym_ABSTRACT] = ACTIONS(173), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(173), - [anon_sym_component] = ACTIONS(173), - [anon_sym_COMPONENT] = ACTIONS(173), + [anon_sym_Component] = ACTIONS(175), + [anon_sym_component] = ACTIONS(175), + [anon_sym_COMPONENT] = ACTIONS(175), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(175), - [anon_sym_debugger] = ACTIONS(175), - [anon_sym_DEBUGGER] = ACTIONS(175), + [anon_sym_Debugger] = ACTIONS(177), + [anon_sym_debugger] = ACTIONS(177), + [anon_sym_DEBUGGER] = ACTIONS(177), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(177), - [anon_sym_final] = ACTIONS(177), - [anon_sym_FINAL] = ACTIONS(177), + [anon_sym_Final] = ACTIONS(179), + [anon_sym_final] = ACTIONS(179), + [anon_sym_FINAL] = ACTIONS(179), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -29038,33 +28916,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(179), - [anon_sym_include] = ACTIONS(179), - [anon_sym_INCLUDE] = ACTIONS(179), + [anon_sym_Include] = ACTIONS(181), + [anon_sym_include] = ACTIONS(181), + [anon_sym_INCLUDE] = ACTIONS(181), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(181), - [anon_sym_new] = ACTIONS(181), - [anon_sym_NEW] = ACTIONS(181), - [anon_sym_Package] = ACTIONS(183), - [anon_sym_package] = ACTIONS(183), - [anon_sym_PACKAGE] = ACTIONS(183), - [anon_sym_Private] = ACTIONS(183), - [anon_sym_private] = ACTIONS(183), - [anon_sym_PRIVATE] = ACTIONS(183), - [anon_sym_Public] = ACTIONS(183), - [anon_sym_public] = ACTIONS(183), - [anon_sym_PUBLIC] = ACTIONS(183), - [anon_sym_Remote] = ACTIONS(183), - [anon_sym_remote] = ACTIONS(183), - [anon_sym_REMOTE] = ACTIONS(183), + [anon_sym_New] = ACTIONS(183), + [anon_sym_new] = ACTIONS(183), + [anon_sym_NEW] = ACTIONS(183), + [anon_sym_Package] = ACTIONS(185), + [anon_sym_package] = ACTIONS(185), + [anon_sym_PACKAGE] = ACTIONS(185), + [anon_sym_Private] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_PRIVATE] = ACTIONS(185), + [anon_sym_Public] = ACTIONS(185), + [anon_sym_public] = ACTIONS(185), + [anon_sym_PUBLIC] = ACTIONS(185), + [anon_sym_Remote] = ACTIONS(185), + [anon_sym_remote] = ACTIONS(185), + [anon_sym_REMOTE] = ACTIONS(185), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(185), - [anon_sym_static] = ACTIONS(185), - [anon_sym_STATIC] = ACTIONS(185), + [anon_sym_Static] = ACTIONS(187), + [anon_sym_static] = ACTIONS(187), + [anon_sym_STATIC] = ACTIONS(187), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -29087,13 +28965,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(15)] = { + [STATE(14)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(179), + [sym_path] = STATE(3912), + [sym_statement] = STATE(187), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -29112,82 +28990,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4631), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4722), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4634), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4830), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4631), - [sym_method_definition] = STATE(4634), - [sym_pair] = STATE(4634), - [sym_cf_pair] = STATE(4409), - [sym_pair_pattern] = STATE(4631), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4722), + [sym_method_definition] = STATE(4830), + [sym_pair] = STATE(4830), + [sym_cf_pair] = STATE(4490), + [sym_pair_pattern] = STATE(4722), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(179), - [aux_sym_object_repeat1] = STATE(4660), - [aux_sym_object_pattern_repeat1] = STATE(4666), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(231), + [aux_sym_statement_block_repeat1] = STATE(187), + [aux_sym_object_repeat1] = STATE(4727), + [aux_sym_object_pattern_repeat1] = STATE(4734), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(255), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(235), + [anon_sym_let] = ACTIONS(259), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(237), - [anon_sym_query] = ACTIONS(237), - [anon_sym_QUERY] = ACTIONS(237), + [anon_sym_Query] = ACTIONS(261), + [anon_sym_query] = ACTIONS(261), + [anon_sym_QUERY] = ACTIONS(261), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29222,38 +29100,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(239), - [anon_sym_set] = ACTIONS(239), + [anon_sym_get] = ACTIONS(263), + [anon_sym_set] = ACTIONS(263), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(235), - [anon_sym_QueryExecute] = ACTIONS(241), - [anon_sym_queryexecute] = ACTIONS(241), - [anon_sym_QUERYEXECUTE] = ACTIONS(241), - [anon_sym_queryExecute] = ACTIONS(241), + [anon_sym_export] = ACTIONS(259), + [anon_sym_QueryExecute] = ACTIONS(265), + [anon_sym_queryexecute] = ACTIONS(265), + [anon_sym_QUERYEXECUTE] = ACTIONS(265), + [anon_sym_queryExecute] = ACTIONS(265), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(243), - [anon_sym_abstract] = ACTIONS(243), - [anon_sym_ABSTRACT] = ACTIONS(243), + [anon_sym_Abstract] = ACTIONS(267), + [anon_sym_abstract] = ACTIONS(267), + [anon_sym_ABSTRACT] = ACTIONS(267), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(245), - [anon_sym_component] = ACTIONS(245), - [anon_sym_COMPONENT] = ACTIONS(245), + [anon_sym_Component] = ACTIONS(269), + [anon_sym_component] = ACTIONS(269), + [anon_sym_COMPONENT] = ACTIONS(269), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(247), - [anon_sym_debugger] = ACTIONS(247), - [anon_sym_DEBUGGER] = ACTIONS(247), + [anon_sym_Debugger] = ACTIONS(271), + [anon_sym_debugger] = ACTIONS(271), + [anon_sym_DEBUGGER] = ACTIONS(271), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(249), - [anon_sym_final] = ACTIONS(249), - [anon_sym_FINAL] = ACTIONS(249), + [anon_sym_Final] = ACTIONS(273), + [anon_sym_final] = ACTIONS(273), + [anon_sym_FINAL] = ACTIONS(273), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -29266,33 +29144,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(251), - [anon_sym_include] = ACTIONS(251), - [anon_sym_INCLUDE] = ACTIONS(251), + [anon_sym_Include] = ACTIONS(275), + [anon_sym_include] = ACTIONS(275), + [anon_sym_INCLUDE] = ACTIONS(275), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(253), - [anon_sym_new] = ACTIONS(253), - [anon_sym_NEW] = ACTIONS(253), - [anon_sym_Package] = ACTIONS(255), - [anon_sym_package] = ACTIONS(255), - [anon_sym_PACKAGE] = ACTIONS(255), - [anon_sym_Private] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_PRIVATE] = ACTIONS(255), - [anon_sym_Public] = ACTIONS(255), - [anon_sym_public] = ACTIONS(255), - [anon_sym_PUBLIC] = ACTIONS(255), - [anon_sym_Remote] = ACTIONS(255), - [anon_sym_remote] = ACTIONS(255), - [anon_sym_REMOTE] = ACTIONS(255), + [anon_sym_New] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_NEW] = ACTIONS(277), + [anon_sym_Package] = ACTIONS(279), + [anon_sym_package] = ACTIONS(279), + [anon_sym_PACKAGE] = ACTIONS(279), + [anon_sym_Private] = ACTIONS(279), + [anon_sym_private] = ACTIONS(279), + [anon_sym_PRIVATE] = ACTIONS(279), + [anon_sym_Public] = ACTIONS(279), + [anon_sym_public] = ACTIONS(279), + [anon_sym_PUBLIC] = ACTIONS(279), + [anon_sym_Remote] = ACTIONS(279), + [anon_sym_remote] = ACTIONS(279), + [anon_sym_REMOTE] = ACTIONS(279), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(257), - [anon_sym_static] = ACTIONS(257), - [anon_sym_STATIC] = ACTIONS(257), + [anon_sym_Static] = ACTIONS(281), + [anon_sym_static] = ACTIONS(281), + [anon_sym_STATIC] = ACTIONS(281), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -29315,13 +29193,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(16)] = { + [STATE(15)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(179), + [sym_path] = STATE(3912), + [sym_statement] = STATE(187), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -29340,75 +29218,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(179), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(187), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -29543,13 +29421,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(17)] = { + [STATE(16)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(181), + [sym_path] = STATE(3912), + [sym_statement] = STATE(192), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -29568,82 +29446,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4588), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4787), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4796), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4588), - [sym_method_definition] = STATE(4589), - [sym_pair] = STATE(4589), - [sym_cf_pair] = STATE(4503), - [sym_pair_pattern] = STATE(4588), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4787), + [sym_method_definition] = STATE(4796), + [sym_pair] = STATE(4796), + [sym_cf_pair] = STATE(4555), + [sym_pair_pattern] = STATE(4787), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(181), - [aux_sym_object_repeat1] = STATE(4591), - [aux_sym_object_pattern_repeat1] = STATE(4592), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(259), + [aux_sym_statement_block_repeat1] = STATE(192), + [aux_sym_object_repeat1] = STATE(4800), + [aux_sym_object_pattern_repeat1] = STATE(4804), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(283), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(263), + [anon_sym_let] = ACTIONS(287), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(265), - [anon_sym_query] = ACTIONS(265), - [anon_sym_QUERY] = ACTIONS(265), + [anon_sym_Query] = ACTIONS(289), + [anon_sym_query] = ACTIONS(289), + [anon_sym_QUERY] = ACTIONS(289), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29678,38 +29556,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(267), - [anon_sym_set] = ACTIONS(267), + [anon_sym_get] = ACTIONS(291), + [anon_sym_set] = ACTIONS(291), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(263), - [anon_sym_QueryExecute] = ACTIONS(269), - [anon_sym_queryexecute] = ACTIONS(269), - [anon_sym_QUERYEXECUTE] = ACTIONS(269), - [anon_sym_queryExecute] = ACTIONS(269), + [anon_sym_export] = ACTIONS(287), + [anon_sym_QueryExecute] = ACTIONS(293), + [anon_sym_queryexecute] = ACTIONS(293), + [anon_sym_QUERYEXECUTE] = ACTIONS(293), + [anon_sym_queryExecute] = ACTIONS(293), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(271), - [anon_sym_ABSTRACT] = ACTIONS(271), + [anon_sym_Abstract] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_ABSTRACT] = ACTIONS(295), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(273), - [anon_sym_component] = ACTIONS(273), - [anon_sym_COMPONENT] = ACTIONS(273), + [anon_sym_Component] = ACTIONS(297), + [anon_sym_component] = ACTIONS(297), + [anon_sym_COMPONENT] = ACTIONS(297), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(275), - [anon_sym_debugger] = ACTIONS(275), - [anon_sym_DEBUGGER] = ACTIONS(275), + [anon_sym_Debugger] = ACTIONS(299), + [anon_sym_debugger] = ACTIONS(299), + [anon_sym_DEBUGGER] = ACTIONS(299), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(277), - [anon_sym_final] = ACTIONS(277), - [anon_sym_FINAL] = ACTIONS(277), + [anon_sym_Final] = ACTIONS(301), + [anon_sym_final] = ACTIONS(301), + [anon_sym_FINAL] = ACTIONS(301), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -29722,33 +29600,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(279), - [anon_sym_include] = ACTIONS(279), - [anon_sym_INCLUDE] = ACTIONS(279), + [anon_sym_Include] = ACTIONS(303), + [anon_sym_include] = ACTIONS(303), + [anon_sym_INCLUDE] = ACTIONS(303), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(281), - [anon_sym_new] = ACTIONS(281), - [anon_sym_NEW] = ACTIONS(281), - [anon_sym_Package] = ACTIONS(283), - [anon_sym_package] = ACTIONS(283), - [anon_sym_PACKAGE] = ACTIONS(283), - [anon_sym_Private] = ACTIONS(283), - [anon_sym_private] = ACTIONS(283), - [anon_sym_PRIVATE] = ACTIONS(283), - [anon_sym_Public] = ACTIONS(283), - [anon_sym_public] = ACTIONS(283), - [anon_sym_PUBLIC] = ACTIONS(283), - [anon_sym_Remote] = ACTIONS(283), - [anon_sym_remote] = ACTIONS(283), - [anon_sym_REMOTE] = ACTIONS(283), + [anon_sym_New] = ACTIONS(305), + [anon_sym_new] = ACTIONS(305), + [anon_sym_NEW] = ACTIONS(305), + [anon_sym_Package] = ACTIONS(307), + [anon_sym_package] = ACTIONS(307), + [anon_sym_PACKAGE] = ACTIONS(307), + [anon_sym_Private] = ACTIONS(307), + [anon_sym_private] = ACTIONS(307), + [anon_sym_PRIVATE] = ACTIONS(307), + [anon_sym_Public] = ACTIONS(307), + [anon_sym_public] = ACTIONS(307), + [anon_sym_PUBLIC] = ACTIONS(307), + [anon_sym_Remote] = ACTIONS(307), + [anon_sym_remote] = ACTIONS(307), + [anon_sym_REMOTE] = ACTIONS(307), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(285), - [anon_sym_static] = ACTIONS(285), - [anon_sym_STATIC] = ACTIONS(285), + [anon_sym_Static] = ACTIONS(309), + [anon_sym_static] = ACTIONS(309), + [anon_sym_STATIC] = ACTIONS(309), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -29771,13 +29649,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(18)] = { + [STATE(17)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(181), + [sym_path] = STATE(3912), + [sym_statement] = STATE(192), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -29796,75 +29674,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(181), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(192), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -29999,13 +29877,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(19)] = { + [STATE(18)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(169), + [sym_path] = STATE(3912), + [sym_statement] = STATE(195), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -30024,82 +29902,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4696), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4689), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4697), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4695), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4696), - [sym_method_definition] = STATE(4697), - [sym_pair] = STATE(4697), - [sym_cf_pair] = STATE(4424), - [sym_pair_pattern] = STATE(4696), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4689), + [sym_method_definition] = STATE(4695), + [sym_pair] = STATE(4695), + [sym_cf_pair] = STATE(4463), + [sym_pair_pattern] = STATE(4689), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(169), - [aux_sym_object_repeat1] = STATE(4702), - [aux_sym_object_pattern_repeat1] = STATE(4704), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(287), + [aux_sym_statement_block_repeat1] = STATE(195), + [aux_sym_object_repeat1] = STATE(4700), + [aux_sym_object_pattern_repeat1] = STATE(4707), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(291), + [anon_sym_let] = ACTIONS(315), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(293), - [anon_sym_query] = ACTIONS(293), - [anon_sym_QUERY] = ACTIONS(293), + [anon_sym_Query] = ACTIONS(317), + [anon_sym_query] = ACTIONS(317), + [anon_sym_QUERY] = ACTIONS(317), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30134,38 +30012,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(295), - [anon_sym_set] = ACTIONS(295), + [anon_sym_get] = ACTIONS(319), + [anon_sym_set] = ACTIONS(319), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(291), - [anon_sym_QueryExecute] = ACTIONS(297), - [anon_sym_queryexecute] = ACTIONS(297), - [anon_sym_QUERYEXECUTE] = ACTIONS(297), - [anon_sym_queryExecute] = ACTIONS(297), + [anon_sym_export] = ACTIONS(315), + [anon_sym_QueryExecute] = ACTIONS(321), + [anon_sym_queryexecute] = ACTIONS(321), + [anon_sym_QUERYEXECUTE] = ACTIONS(321), + [anon_sym_queryExecute] = ACTIONS(321), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(299), - [anon_sym_abstract] = ACTIONS(299), - [anon_sym_ABSTRACT] = ACTIONS(299), + [anon_sym_Abstract] = ACTIONS(323), + [anon_sym_abstract] = ACTIONS(323), + [anon_sym_ABSTRACT] = ACTIONS(323), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(301), - [anon_sym_component] = ACTIONS(301), - [anon_sym_COMPONENT] = ACTIONS(301), + [anon_sym_Component] = ACTIONS(325), + [anon_sym_component] = ACTIONS(325), + [anon_sym_COMPONENT] = ACTIONS(325), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(303), - [anon_sym_debugger] = ACTIONS(303), - [anon_sym_DEBUGGER] = ACTIONS(303), + [anon_sym_Debugger] = ACTIONS(327), + [anon_sym_debugger] = ACTIONS(327), + [anon_sym_DEBUGGER] = ACTIONS(327), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(305), - [anon_sym_final] = ACTIONS(305), - [anon_sym_FINAL] = ACTIONS(305), + [anon_sym_Final] = ACTIONS(329), + [anon_sym_final] = ACTIONS(329), + [anon_sym_FINAL] = ACTIONS(329), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -30178,33 +30056,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(307), - [anon_sym_include] = ACTIONS(307), - [anon_sym_INCLUDE] = ACTIONS(307), + [anon_sym_Include] = ACTIONS(331), + [anon_sym_include] = ACTIONS(331), + [anon_sym_INCLUDE] = ACTIONS(331), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(309), - [anon_sym_new] = ACTIONS(309), - [anon_sym_NEW] = ACTIONS(309), - [anon_sym_Package] = ACTIONS(311), - [anon_sym_package] = ACTIONS(311), - [anon_sym_PACKAGE] = ACTIONS(311), - [anon_sym_Private] = ACTIONS(311), - [anon_sym_private] = ACTIONS(311), - [anon_sym_PRIVATE] = ACTIONS(311), - [anon_sym_Public] = ACTIONS(311), - [anon_sym_public] = ACTIONS(311), - [anon_sym_PUBLIC] = ACTIONS(311), - [anon_sym_Remote] = ACTIONS(311), - [anon_sym_remote] = ACTIONS(311), - [anon_sym_REMOTE] = ACTIONS(311), + [anon_sym_New] = ACTIONS(333), + [anon_sym_new] = ACTIONS(333), + [anon_sym_NEW] = ACTIONS(333), + [anon_sym_Package] = ACTIONS(335), + [anon_sym_package] = ACTIONS(335), + [anon_sym_PACKAGE] = ACTIONS(335), + [anon_sym_Private] = ACTIONS(335), + [anon_sym_private] = ACTIONS(335), + [anon_sym_PRIVATE] = ACTIONS(335), + [anon_sym_Public] = ACTIONS(335), + [anon_sym_public] = ACTIONS(335), + [anon_sym_PUBLIC] = ACTIONS(335), + [anon_sym_Remote] = ACTIONS(335), + [anon_sym_remote] = ACTIONS(335), + [anon_sym_REMOTE] = ACTIONS(335), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(313), - [anon_sym_static] = ACTIONS(313), - [anon_sym_STATIC] = ACTIONS(313), + [anon_sym_Static] = ACTIONS(337), + [anon_sym_static] = ACTIONS(337), + [anon_sym_STATIC] = ACTIONS(337), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -30227,13 +30105,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(20)] = { + [STATE(19)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(169), + [sym_path] = STATE(3912), + [sym_statement] = STATE(195), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -30252,75 +30130,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(169), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(195), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -30455,13 +30333,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(21)] = { + [STATE(20)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(183), + [sym_path] = STATE(3912), + [sym_statement] = STATE(199), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -30480,75 +30358,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(183), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(199), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -30683,13 +30561,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(22)] = { + [STATE(21)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(184), + [sym_path] = STATE(3912), + [sym_statement] = STATE(171), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -30708,82 +30586,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4705), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4669), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4748), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4673), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4705), - [sym_method_definition] = STATE(4748), - [sym_pair] = STATE(4748), - [sym_cf_pair] = STATE(4495), - [sym_pair_pattern] = STATE(4705), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4669), + [sym_method_definition] = STATE(4673), + [sym_pair] = STATE(4673), + [sym_cf_pair] = STATE(4527), + [sym_pair_pattern] = STATE(4669), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(184), - [aux_sym_object_repeat1] = STATE(4751), - [aux_sym_object_pattern_repeat1] = STATE(4724), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(317), + [aux_sym_statement_block_repeat1] = STATE(171), + [aux_sym_object_repeat1] = STATE(4693), + [aux_sym_object_pattern_repeat1] = STATE(4718), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(341), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(321), + [anon_sym_let] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(323), - [anon_sym_query] = ACTIONS(323), - [anon_sym_QUERY] = ACTIONS(323), + [anon_sym_Query] = ACTIONS(347), + [anon_sym_query] = ACTIONS(347), + [anon_sym_QUERY] = ACTIONS(347), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30818,38 +30696,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(325), - [anon_sym_set] = ACTIONS(325), + [anon_sym_get] = ACTIONS(349), + [anon_sym_set] = ACTIONS(349), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(321), - [anon_sym_QueryExecute] = ACTIONS(327), - [anon_sym_queryexecute] = ACTIONS(327), - [anon_sym_QUERYEXECUTE] = ACTIONS(327), - [anon_sym_queryExecute] = ACTIONS(327), + [anon_sym_export] = ACTIONS(345), + [anon_sym_QueryExecute] = ACTIONS(351), + [anon_sym_queryexecute] = ACTIONS(351), + [anon_sym_QUERYEXECUTE] = ACTIONS(351), + [anon_sym_queryExecute] = ACTIONS(351), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(329), - [anon_sym_abstract] = ACTIONS(329), - [anon_sym_ABSTRACT] = ACTIONS(329), + [anon_sym_Abstract] = ACTIONS(353), + [anon_sym_abstract] = ACTIONS(353), + [anon_sym_ABSTRACT] = ACTIONS(353), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(331), - [anon_sym_component] = ACTIONS(331), - [anon_sym_COMPONENT] = ACTIONS(331), + [anon_sym_Component] = ACTIONS(355), + [anon_sym_component] = ACTIONS(355), + [anon_sym_COMPONENT] = ACTIONS(355), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(333), - [anon_sym_debugger] = ACTIONS(333), - [anon_sym_DEBUGGER] = ACTIONS(333), + [anon_sym_Debugger] = ACTIONS(357), + [anon_sym_debugger] = ACTIONS(357), + [anon_sym_DEBUGGER] = ACTIONS(357), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(335), - [anon_sym_final] = ACTIONS(335), - [anon_sym_FINAL] = ACTIONS(335), + [anon_sym_Final] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_FINAL] = ACTIONS(359), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -30862,33 +30740,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(337), - [anon_sym_include] = ACTIONS(337), - [anon_sym_INCLUDE] = ACTIONS(337), + [anon_sym_Include] = ACTIONS(361), + [anon_sym_include] = ACTIONS(361), + [anon_sym_INCLUDE] = ACTIONS(361), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(339), - [anon_sym_new] = ACTIONS(339), - [anon_sym_NEW] = ACTIONS(339), - [anon_sym_Package] = ACTIONS(341), - [anon_sym_package] = ACTIONS(341), - [anon_sym_PACKAGE] = ACTIONS(341), - [anon_sym_Private] = ACTIONS(341), - [anon_sym_private] = ACTIONS(341), - [anon_sym_PRIVATE] = ACTIONS(341), - [anon_sym_Public] = ACTIONS(341), - [anon_sym_public] = ACTIONS(341), - [anon_sym_PUBLIC] = ACTIONS(341), - [anon_sym_Remote] = ACTIONS(341), - [anon_sym_remote] = ACTIONS(341), - [anon_sym_REMOTE] = ACTIONS(341), + [anon_sym_New] = ACTIONS(363), + [anon_sym_new] = ACTIONS(363), + [anon_sym_NEW] = ACTIONS(363), + [anon_sym_Package] = ACTIONS(365), + [anon_sym_package] = ACTIONS(365), + [anon_sym_PACKAGE] = ACTIONS(365), + [anon_sym_Private] = ACTIONS(365), + [anon_sym_private] = ACTIONS(365), + [anon_sym_PRIVATE] = ACTIONS(365), + [anon_sym_Public] = ACTIONS(365), + [anon_sym_public] = ACTIONS(365), + [anon_sym_PUBLIC] = ACTIONS(365), + [anon_sym_Remote] = ACTIONS(365), + [anon_sym_remote] = ACTIONS(365), + [anon_sym_REMOTE] = ACTIONS(365), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(343), - [anon_sym_static] = ACTIONS(343), - [anon_sym_STATIC] = ACTIONS(343), + [anon_sym_Static] = ACTIONS(367), + [anon_sym_static] = ACTIONS(367), + [anon_sym_STATIC] = ACTIONS(367), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -30911,13 +30789,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(23)] = { + [STATE(22)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(184), + [sym_path] = STATE(3912), + [sym_statement] = STATE(171), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -30936,75 +30814,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(184), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(171), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -31139,13 +31017,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(24)] = { + [STATE(23)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(185), + [sym_path] = STATE(3912), + [sym_statement] = STATE(173), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -31164,75 +31042,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(185), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(173), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(369), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -31367,13 +31245,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(25)] = { + [STATE(24)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(186), + [sym_path] = STATE(3912), + [sym_statement] = STATE(175), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -31392,82 +31270,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4747), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4664), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4611), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4713), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4747), - [sym_method_definition] = STATE(4611), - [sym_pair] = STATE(4611), - [sym_cf_pair] = STATE(4451), - [sym_pair_pattern] = STATE(4747), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4664), + [sym_method_definition] = STATE(4713), + [sym_pair] = STATE(4713), + [sym_cf_pair] = STATE(4486), + [sym_pair_pattern] = STATE(4664), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(186), - [aux_sym_object_repeat1] = STATE(4613), - [aux_sym_object_pattern_repeat1] = STATE(4752), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(347), + [aux_sym_statement_block_repeat1] = STATE(175), + [aux_sym_object_repeat1] = STATE(4716), + [aux_sym_object_pattern_repeat1] = STATE(4697), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(373), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(351), + [anon_sym_let] = ACTIONS(375), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(353), - [anon_sym_query] = ACTIONS(353), - [anon_sym_QUERY] = ACTIONS(353), + [anon_sym_Query] = ACTIONS(377), + [anon_sym_query] = ACTIONS(377), + [anon_sym_QUERY] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -31502,38 +31380,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(355), - [anon_sym_set] = ACTIONS(355), + [anon_sym_get] = ACTIONS(379), + [anon_sym_set] = ACTIONS(379), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(351), - [anon_sym_QueryExecute] = ACTIONS(357), - [anon_sym_queryexecute] = ACTIONS(357), - [anon_sym_QUERYEXECUTE] = ACTIONS(357), - [anon_sym_queryExecute] = ACTIONS(357), + [anon_sym_export] = ACTIONS(375), + [anon_sym_QueryExecute] = ACTIONS(381), + [anon_sym_queryexecute] = ACTIONS(381), + [anon_sym_QUERYEXECUTE] = ACTIONS(381), + [anon_sym_queryExecute] = ACTIONS(381), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(359), - [anon_sym_abstract] = ACTIONS(359), - [anon_sym_ABSTRACT] = ACTIONS(359), + [anon_sym_Abstract] = ACTIONS(383), + [anon_sym_abstract] = ACTIONS(383), + [anon_sym_ABSTRACT] = ACTIONS(383), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(361), - [anon_sym_component] = ACTIONS(361), - [anon_sym_COMPONENT] = ACTIONS(361), + [anon_sym_Component] = ACTIONS(385), + [anon_sym_component] = ACTIONS(385), + [anon_sym_COMPONENT] = ACTIONS(385), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(363), - [anon_sym_debugger] = ACTIONS(363), - [anon_sym_DEBUGGER] = ACTIONS(363), + [anon_sym_Debugger] = ACTIONS(387), + [anon_sym_debugger] = ACTIONS(387), + [anon_sym_DEBUGGER] = ACTIONS(387), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(365), - [anon_sym_final] = ACTIONS(365), - [anon_sym_FINAL] = ACTIONS(365), + [anon_sym_Final] = ACTIONS(389), + [anon_sym_final] = ACTIONS(389), + [anon_sym_FINAL] = ACTIONS(389), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -31546,33 +31424,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(367), - [anon_sym_include] = ACTIONS(367), - [anon_sym_INCLUDE] = ACTIONS(367), + [anon_sym_Include] = ACTIONS(391), + [anon_sym_include] = ACTIONS(391), + [anon_sym_INCLUDE] = ACTIONS(391), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(369), - [anon_sym_new] = ACTIONS(369), - [anon_sym_NEW] = ACTIONS(369), - [anon_sym_Package] = ACTIONS(371), - [anon_sym_package] = ACTIONS(371), - [anon_sym_PACKAGE] = ACTIONS(371), - [anon_sym_Private] = ACTIONS(371), - [anon_sym_private] = ACTIONS(371), - [anon_sym_PRIVATE] = ACTIONS(371), - [anon_sym_Public] = ACTIONS(371), - [anon_sym_public] = ACTIONS(371), - [anon_sym_PUBLIC] = ACTIONS(371), - [anon_sym_Remote] = ACTIONS(371), - [anon_sym_remote] = ACTIONS(371), - [anon_sym_REMOTE] = ACTIONS(371), + [anon_sym_New] = ACTIONS(393), + [anon_sym_new] = ACTIONS(393), + [anon_sym_NEW] = ACTIONS(393), + [anon_sym_Package] = ACTIONS(395), + [anon_sym_package] = ACTIONS(395), + [anon_sym_PACKAGE] = ACTIONS(395), + [anon_sym_Private] = ACTIONS(395), + [anon_sym_private] = ACTIONS(395), + [anon_sym_PRIVATE] = ACTIONS(395), + [anon_sym_Public] = ACTIONS(395), + [anon_sym_public] = ACTIONS(395), + [anon_sym_PUBLIC] = ACTIONS(395), + [anon_sym_Remote] = ACTIONS(395), + [anon_sym_remote] = ACTIONS(395), + [anon_sym_REMOTE] = ACTIONS(395), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_STATIC] = ACTIONS(373), + [anon_sym_Static] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_STATIC] = ACTIONS(397), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -31595,13 +31473,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(26)] = { + [STATE(25)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(186), + [sym_path] = STATE(3912), + [sym_statement] = STATE(175), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -31620,75 +31498,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(186), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(175), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(373), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -31823,13 +31701,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(27)] = { + [STATE(26)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(194), + [sym_path] = STATE(3912), + [sym_statement] = STATE(188), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -31848,75 +31726,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4715), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4719), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(194), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), + [aux_sym_statement_block_repeat1] = STATE(188), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), [sym_identifier] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(121), @@ -32051,13 +31929,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, + [STATE(27)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(188), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4749), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4633), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4749), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4469), + [sym_pair_pattern] = STATE(4749), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [aux_sym_statement_block_repeat1] = STATE(188), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4671), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(123), + [anon_sym_Query] = ACTIONS(167), + [anon_sym_query] = ACTIONS(167), + [anon_sym_QUERY] = ACTIONS(167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(169), + [anon_sym_set] = ACTIONS(169), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(137), + [anon_sym_export] = ACTIONS(165), + [anon_sym_QueryExecute] = ACTIONS(171), + [anon_sym_queryexecute] = ACTIONS(171), + [anon_sym_QUERYEXECUTE] = ACTIONS(171), + [anon_sym_queryExecute] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(173), + [anon_sym_abstract] = ACTIONS(173), + [anon_sym_ABSTRACT] = ACTIONS(173), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(175), + [anon_sym_component] = ACTIONS(175), + [anon_sym_COMPONENT] = ACTIONS(175), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(177), + [anon_sym_debugger] = ACTIONS(177), + [anon_sym_DEBUGGER] = ACTIONS(177), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(179), + [anon_sym_final] = ACTIONS(179), + [anon_sym_FINAL] = ACTIONS(179), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(181), + [anon_sym_include] = ACTIONS(181), + [anon_sym_INCLUDE] = ACTIONS(181), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(183), + [anon_sym_new] = ACTIONS(183), + [anon_sym_NEW] = ACTIONS(183), + [anon_sym_Package] = ACTIONS(185), + [anon_sym_package] = ACTIONS(185), + [anon_sym_PACKAGE] = ACTIONS(185), + [anon_sym_Private] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_PRIVATE] = ACTIONS(185), + [anon_sym_Public] = ACTIONS(185), + [anon_sym_public] = ACTIONS(185), + [anon_sym_PUBLIC] = ACTIONS(185), + [anon_sym_Remote] = ACTIONS(185), + [anon_sym_remote] = ACTIONS(185), + [anon_sym_REMOTE] = ACTIONS(185), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(187), + [anon_sym_static] = ACTIONS(187), + [anon_sym_STATIC] = ACTIONS(187), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, [STATE(28)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(199), + [sym_path] = STATE(3912), + [sym_statement] = STATE(179), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -32076,82 +32182,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_object_assignment_pattern] = STATE(4638), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5232), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_object_assignment_pattern] = STATE(4749), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5251), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5232), - [sym_spread_element] = STATE(4657), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(2706), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2709), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2706), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5251), + [sym_spread_element] = STATE(4633), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2776), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2784), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2776), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_decorator] = STATE(3847), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4434), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(2597), - [sym_hash_expression] = STATE(2597), - [sym_computed_property_name] = STATE(4529), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_decorator] = STATE(3899), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym_rest_pattern] = STATE(4749), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4469), + [sym_pair_pattern] = STATE(4749), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(2643), + [sym_hash_expression] = STATE(2643), + [sym_computed_property_name] = STATE(4588), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(199), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(375), + [aux_sym_statement_block_repeat1] = STATE(179), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4671), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(161), [anon_sym_STAR] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(251), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(377), + [anon_sym_let] = ACTIONS(165), [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_Query] = ACTIONS(379), - [anon_sym_query] = ACTIONS(379), - [anon_sym_QUERY] = ACTIONS(379), + [anon_sym_Query] = ACTIONS(167), + [anon_sym_query] = ACTIONS(167), + [anon_sym_QUERY] = ACTIONS(167), [anon_sym_DOT_DOT_DOT] = ACTIONS(127), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32186,38 +32292,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_AT] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(381), - [anon_sym_set] = ACTIONS(381), + [anon_sym_get] = ACTIONS(169), + [anon_sym_set] = ACTIONS(169), [anon_sym_POUND] = ACTIONS(51), [sym_hash_empty] = ACTIONS(137), - [anon_sym_export] = ACTIONS(377), - [anon_sym_QueryExecute] = ACTIONS(383), - [anon_sym_queryexecute] = ACTIONS(383), - [anon_sym_QUERYEXECUTE] = ACTIONS(383), - [anon_sym_queryExecute] = ACTIONS(383), + [anon_sym_export] = ACTIONS(165), + [anon_sym_QueryExecute] = ACTIONS(171), + [anon_sym_queryexecute] = ACTIONS(171), + [anon_sym_QUERYEXECUTE] = ACTIONS(171), + [anon_sym_queryExecute] = ACTIONS(171), [anon_sym_BQUOTE] = ACTIONS(57), [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(385), - [anon_sym_abstract] = ACTIONS(385), - [anon_sym_ABSTRACT] = ACTIONS(385), + [anon_sym_Abstract] = ACTIONS(173), + [anon_sym_abstract] = ACTIONS(173), + [anon_sym_ABSTRACT] = ACTIONS(173), [anon_sym_Break] = ACTIONS(63), [anon_sym_break] = ACTIONS(63), [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(387), - [anon_sym_component] = ACTIONS(387), - [anon_sym_COMPONENT] = ACTIONS(387), + [anon_sym_Component] = ACTIONS(175), + [anon_sym_component] = ACTIONS(175), + [anon_sym_COMPONENT] = ACTIONS(175), [anon_sym_Continue] = ACTIONS(67), [anon_sym_continue] = ACTIONS(67), [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(389), - [anon_sym_debugger] = ACTIONS(389), - [anon_sym_DEBUGGER] = ACTIONS(389), + [anon_sym_Debugger] = ACTIONS(177), + [anon_sym_debugger] = ACTIONS(177), + [anon_sym_DEBUGGER] = ACTIONS(177), [anon_sym_Do] = ACTIONS(71), [anon_sym_do] = ACTIONS(71), [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(391), - [anon_sym_final] = ACTIONS(391), - [anon_sym_FINAL] = ACTIONS(391), + [anon_sym_Final] = ACTIONS(179), + [anon_sym_final] = ACTIONS(179), + [anon_sym_FINAL] = ACTIONS(179), [anon_sym_For] = ACTIONS(75), [anon_sym_for] = ACTIONS(75), [anon_sym_FOR] = ACTIONS(75), @@ -32230,33 +32336,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Import] = ACTIONS(149), [anon_sym_import] = ACTIONS(149), [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(393), - [anon_sym_include] = ACTIONS(393), - [anon_sym_INCLUDE] = ACTIONS(393), + [anon_sym_Include] = ACTIONS(181), + [anon_sym_include] = ACTIONS(181), + [anon_sym_INCLUDE] = ACTIONS(181), [anon_sym_Interface] = ACTIONS(85), [anon_sym_interface] = ACTIONS(85), [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(395), - [anon_sym_new] = ACTIONS(395), - [anon_sym_NEW] = ACTIONS(395), - [anon_sym_Package] = ACTIONS(397), - [anon_sym_package] = ACTIONS(397), - [anon_sym_PACKAGE] = ACTIONS(397), - [anon_sym_Private] = ACTIONS(397), - [anon_sym_private] = ACTIONS(397), - [anon_sym_PRIVATE] = ACTIONS(397), - [anon_sym_Public] = ACTIONS(397), - [anon_sym_public] = ACTIONS(397), - [anon_sym_PUBLIC] = ACTIONS(397), - [anon_sym_Remote] = ACTIONS(397), - [anon_sym_remote] = ACTIONS(397), - [anon_sym_REMOTE] = ACTIONS(397), + [anon_sym_New] = ACTIONS(183), + [anon_sym_new] = ACTIONS(183), + [anon_sym_NEW] = ACTIONS(183), + [anon_sym_Package] = ACTIONS(185), + [anon_sym_package] = ACTIONS(185), + [anon_sym_PACKAGE] = ACTIONS(185), + [anon_sym_Private] = ACTIONS(185), + [anon_sym_private] = ACTIONS(185), + [anon_sym_PRIVATE] = ACTIONS(185), + [anon_sym_Public] = ACTIONS(185), + [anon_sym_public] = ACTIONS(185), + [anon_sym_PUBLIC] = ACTIONS(185), + [anon_sym_Remote] = ACTIONS(185), + [anon_sym_remote] = ACTIONS(185), + [anon_sym_REMOTE] = ACTIONS(185), [anon_sym_Return] = ACTIONS(91), [anon_sym_return] = ACTIONS(91), [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_STATIC] = ACTIONS(399), + [anon_sym_Static] = ACTIONS(187), + [anon_sym_static] = ACTIONS(187), + [anon_sym_STATIC] = ACTIONS(187), [anon_sym_Switch] = ACTIONS(95), [anon_sym_switch] = ACTIONS(95), [anon_sym_SWITCH] = ACTIONS(95), @@ -32280,50 +32386,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(29)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -32503,50 +32609,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(30)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -32726,50 +32832,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(31)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -32949,50 +33055,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(32)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -33172,50 +33278,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(33)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -33395,50 +33501,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(34)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -33618,50 +33724,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(35)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -33841,50 +33947,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(36)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -34064,50 +34170,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(37)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -34287,62 +34393,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(38)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_LPAREN] = ACTIONS(513), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), @@ -34509,62 +34615,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(39)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(410), [anon_sym_LPAREN] = ACTIONS(513), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), @@ -34731,62 +34837,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(40)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(492), [anon_sym_LPAREN] = ACTIONS(513), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), @@ -34953,62 +35059,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(41)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_LPAREN] = ACTIONS(513), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), @@ -35175,62 +35281,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(42)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_LPAREN] = ACTIONS(513), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), @@ -35397,56 +35503,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(43)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), @@ -35619,62 +35725,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(44)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_LPAREN] = ACTIONS(513), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), @@ -35841,62 +35947,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(45)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(496), [anon_sym_LPAREN] = ACTIONS(513), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), @@ -36063,62 +36169,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(46)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_LPAREN] = ACTIONS(513), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), @@ -36285,48 +36391,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(47)] = { - [sym_variable_declarator] = STATE(4459), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -36448,9 +36554,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(427), [anon_sym_abstract] = ACTIONS(427), [anon_sym_ABSTRACT] = ACTIONS(427), - [anon_sym_Component] = ACTIONS(557), - [anon_sym_component] = ACTIONS(557), - [anon_sym_COMPONENT] = ACTIONS(557), + [anon_sym_Component] = ACTIONS(469), + [anon_sym_component] = ACTIONS(469), + [anon_sym_COMPONENT] = ACTIONS(469), [anon_sym_Debugger] = ACTIONS(416), [anon_sym_debugger] = ACTIONS(416), [anon_sym_DEBUGGER] = ACTIONS(416), @@ -36473,9 +36579,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(559), - [anon_sym_interface] = ACTIONS(559), - [anon_sym_INTERFACE] = ACTIONS(559), + [anon_sym_Interface] = ACTIONS(476), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_INTERFACE] = ACTIONS(476), [anon_sym_New] = ACTIONS(478), [anon_sym_new] = ACTIONS(478), [anon_sym_NEW] = ACTIONS(478), @@ -36494,9 +36600,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(427), [anon_sym_static] = ACTIONS(427), [anon_sym_STATIC] = ACTIONS(427), - [anon_sym_Var] = ACTIONS(561), - [anon_sym_var] = ACTIONS(561), - [anon_sym_VAR] = ACTIONS(561), + [anon_sym_Var] = ACTIONS(480), + [anon_sym_var] = ACTIONS(480), + [anon_sym_VAR] = ACTIONS(480), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -36505,48 +36611,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(48)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), + [sym_variable_declarator] = STATE(4560), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -36555,7 +36661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(550), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(416), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(557), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(424), [anon_sym_Query] = ACTIONS(427), @@ -36668,9 +36774,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(427), [anon_sym_abstract] = ACTIONS(427), [anon_sym_ABSTRACT] = ACTIONS(427), - [anon_sym_Component] = ACTIONS(469), - [anon_sym_component] = ACTIONS(469), - [anon_sym_COMPONENT] = ACTIONS(469), + [anon_sym_Component] = ACTIONS(559), + [anon_sym_component] = ACTIONS(559), + [anon_sym_COMPONENT] = ACTIONS(559), [anon_sym_Debugger] = ACTIONS(416), [anon_sym_debugger] = ACTIONS(416), [anon_sym_DEBUGGER] = ACTIONS(416), @@ -36693,9 +36799,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_INTERFACE] = ACTIONS(476), + [anon_sym_Interface] = ACTIONS(561), + [anon_sym_interface] = ACTIONS(561), + [anon_sym_INTERFACE] = ACTIONS(561), [anon_sym_New] = ACTIONS(478), [anon_sym_new] = ACTIONS(478), [anon_sym_NEW] = ACTIONS(478), @@ -36714,9 +36820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(427), [anon_sym_static] = ACTIONS(427), [anon_sym_STATIC] = ACTIONS(427), - [anon_sym_Var] = ACTIONS(480), - [anon_sym_var] = ACTIONS(480), - [anon_sym_VAR] = ACTIONS(480), + [anon_sym_Var] = ACTIONS(563), + [anon_sym_var] = ACTIONS(563), + [anon_sym_VAR] = ACTIONS(563), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -36725,48 +36831,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(49)] = { - [sym_variable_declarator] = STATE(4531), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), + [sym_variable_declarator] = STATE(4477), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), [sym_identifier] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -36945,69 +37051,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(50)] = { - [sym_statement_block] = STATE(4862), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3874), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2363), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3344), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(4923), - [sym_tag_call_arguments] = STATE(4453), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_function_declaration_repeat2] = STATE(3874), - [aux_sym_tag_statement_repeat1] = STATE(1018), - [sym_identifier] = ACTIONS(573), + [sym_statement_block] = STATE(4990), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2392), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3395), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4978), + [sym_tag_call_arguments] = STATE(4511), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(502), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(573), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), [anon_sym_COLON] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(522), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), - [sym_array_return_suffix] = ACTIONS(580), + [sym_array_return_suffix] = ACTIONS(525), [anon_sym_EQ_GT] = ACTIONS(527), [anon_sym_DASH_GT] = ACTIONS(527), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), @@ -37124,9 +37230,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(542), [anon_sym_final] = ACTIONS(542), [anon_sym_FINAL] = ACTIONS(542), - [anon_sym_Function] = ACTIONS(582), - [anon_sym_function] = ACTIONS(582), - [anon_sym_FUNCTION] = ACTIONS(582), + [anon_sym_Function] = ACTIONS(544), + [anon_sym_function] = ACTIONS(544), + [anon_sym_FUNCTION] = ACTIONS(544), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -37159,74 +37265,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(584), + [sym_tag_linefeed] = ACTIONS(548), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(51)] = { - [sym_statement_block] = STATE(5031), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2371), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3293), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(4791), - [sym_tag_call_arguments] = STATE(4499), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(586), + [sym_statement_block] = STATE(4930), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3918), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2394), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3444), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4998), + [sym_tag_call_arguments] = STATE(4539), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_function_declaration_repeat2] = STATE(3918), + [aux_sym_tag_statement_repeat1] = STATE(1008), + [sym_identifier] = ACTIONS(578), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(573), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(522), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), - [sym_array_return_suffix] = ACTIONS(525), + [sym_array_return_suffix] = ACTIONS(580), [anon_sym_EQ_GT] = ACTIONS(527), [anon_sym_DASH_GT] = ACTIONS(527), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), @@ -37343,9 +37449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(542), [anon_sym_final] = ACTIONS(542), [anon_sym_FINAL] = ACTIONS(542), - [anon_sym_Function] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_FUNCTION] = ACTIONS(544), + [anon_sym_Function] = ACTIONS(582), + [anon_sym_function] = ACTIONS(582), + [anon_sym_FUNCTION] = ACTIONS(582), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -37378,74 +37484,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(588), + [sym_tag_linefeed] = ACTIONS(584), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(52)] = { - [sym_statement_block] = STATE(4979), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3865), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3398), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(5021), - [sym_tag_call_arguments] = STATE(4479), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_function_declaration_repeat2] = STATE(3865), - [aux_sym_tag_statement_repeat1] = STATE(1016), - [sym_identifier] = ACTIONS(502), + [sym_statement_block] = STATE(4921), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3919), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2384), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3345), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4957), + [sym_tag_call_arguments] = STATE(4524), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_function_declaration_repeat2] = STATE(3919), + [aux_sym_tag_statement_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(586), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(573), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_COLON] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(522), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), - [sym_array_return_suffix] = ACTIONS(525), + [sym_array_return_suffix] = ACTIONS(588), [anon_sym_EQ_GT] = ACTIONS(527), [anon_sym_DASH_GT] = ACTIONS(527), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), @@ -37562,9 +37668,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(542), [anon_sym_final] = ACTIONS(542), [anon_sym_FINAL] = ACTIONS(542), - [anon_sym_Function] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_FUNCTION] = ACTIONS(544), + [anon_sym_Function] = ACTIONS(590), + [anon_sym_function] = ACTIONS(590), + [anon_sym_FUNCTION] = ACTIONS(590), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -37597,74 +37703,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(548), + [sym_tag_linefeed] = ACTIONS(592), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(53)] = { - [sym_statement_block] = STATE(4962), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_access_type] = STATE(3869), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2362), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3118), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(4872), - [sym_tag_call_arguments] = STATE(4436), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_path_repeat1] = STATE(3859), - [aux_sym_function_declaration_repeat2] = STATE(3869), - [aux_sym_tag_statement_repeat1] = STATE(1000), - [sym_identifier] = ACTIONS(590), + [sym_statement_block] = STATE(5104), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_access_type] = STATE(3922), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2387), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3222), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(5052), + [sym_tag_call_arguments] = STATE(4460), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_path_repeat1] = STATE(3913), + [aux_sym_function_declaration_repeat2] = STATE(3922), + [aux_sym_tag_statement_repeat1] = STATE(1023), + [sym_identifier] = ACTIONS(594), [anon_sym_DOT] = ACTIONS(504), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(573), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_COLON] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(522), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), - [sym_array_return_suffix] = ACTIONS(592), + [sym_array_return_suffix] = ACTIONS(525), [anon_sym_EQ_GT] = ACTIONS(527), [anon_sym_DASH_GT] = ACTIONS(527), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), @@ -37781,9 +37887,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(542), [anon_sym_final] = ACTIONS(542), [anon_sym_FINAL] = ACTIONS(542), - [anon_sym_Function] = ACTIONS(594), - [anon_sym_function] = ACTIONS(594), - [anon_sym_FUNCTION] = ACTIONS(594), + [anon_sym_Function] = ACTIONS(544), + [anon_sym_function] = ACTIONS(544), + [anon_sym_FUNCTION] = ACTIONS(544), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -37821,57 +37927,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(54)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [aux_sym_query_tag_repeat1] = STATE(1020), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [aux_sym_query_tag_repeat1] = STATE(1004), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_LPAREN] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(517), @@ -38038,57 +38144,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(55)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [aux_sym_query_tag_repeat1] = STATE(1020), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [aux_sym_query_tag_repeat1] = STATE(1004), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(492), [anon_sym_LPAREN] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(517), @@ -38255,57 +38361,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(56)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [aux_sym_query_tag_repeat1] = STATE(1020), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [aux_sym_query_tag_repeat1] = STATE(1004), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_LPAREN] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(517), @@ -38472,57 +38578,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(57)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [aux_sym_query_tag_repeat1] = STATE(1020), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [aux_sym_query_tag_repeat1] = STATE(1004), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_LPAREN] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(517), @@ -38689,57 +38795,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(58)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [aux_sym_query_tag_repeat1] = STATE(1020), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [aux_sym_query_tag_repeat1] = STATE(1004), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(410), [anon_sym_LPAREN] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(517), @@ -38906,57 +39012,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(59)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [aux_sym_query_tag_repeat1] = STATE(1020), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [aux_sym_query_tag_repeat1] = STATE(1004), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_LPAREN] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(517), @@ -39123,268 +39229,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(60)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [aux_sym_query_tag_repeat1] = STATE(1020), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [sym_array_return_suffix] = ACTIONS(605), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_FUNCTION] = ACTIONS(544), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(607), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(61)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [aux_sym_query_tag_repeat1] = STATE(1020), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [aux_sym_query_tag_repeat1] = STATE(1004), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -39556,58 +39445,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, + [STATE(61)] = { + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [aux_sym_query_tag_repeat1] = STATE(1004), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(517), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [sym_array_return_suffix] = ACTIONS(605), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(544), + [anon_sym_function] = ACTIONS(544), + [anon_sym_FUNCTION] = ACTIONS(544), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(607), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, [STATE(62)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [aux_sym_query_tag_repeat1] = STATE(1020), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [aux_sym_query_tag_repeat1] = STATE(1004), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_LPAREN] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(517), @@ -39774,58 +39880,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(63)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(613), @@ -39990,274 +40096,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(64)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_let] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_Query] = ACTIONS(645), - [anon_sym_query] = ACTIONS(645), - [anon_sym_QUERY] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [aux_sym_unary_operator_token1] = ACTIONS(648), - [anon_sym_PLUS_PLUS] = ACTIONS(657), - [anon_sym_DASH_DASH] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(663), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(666), - [aux_sym_number_token2] = ACTIONS(669), - [anon_sym_This] = ACTIONS(672), - [anon_sym_this] = ACTIONS(672), - [anon_sym_THIS] = ACTIONS(672), - [anon_sym_Super] = ACTIONS(675), - [anon_sym_super] = ACTIONS(675), - [anon_sym_SUPER] = ACTIONS(675), - [anon_sym_True] = ACTIONS(678), - [anon_sym_true] = ACTIONS(678), - [anon_sym_TRUE] = ACTIONS(678), - [anon_sym_False] = ACTIONS(681), - [anon_sym_false] = ACTIONS(681), - [anon_sym_FALSE] = ACTIONS(681), - [anon_sym_Null] = ACTIONS(684), - [anon_sym_null] = ACTIONS(684), - [anon_sym_NULL] = ACTIONS(684), - [anon_sym_Undefined] = ACTIONS(687), - [anon_sym_undefined] = ACTIONS(687), - [anon_sym_UNDEFINED] = ACTIONS(687), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(690), - [sym_hash_empty] = ACTIONS(693), - [anon_sym_export] = ACTIONS(639), - [anon_sym_QueryExecute] = ACTIONS(696), - [anon_sym_queryexecute] = ACTIONS(696), - [anon_sym_QUERYEXECUTE] = ACTIONS(696), - [anon_sym_queryExecute] = ACTIONS(696), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(702), - [anon_sym_Abstract] = ACTIONS(705), - [anon_sym_abstract] = ACTIONS(705), - [anon_sym_ABSTRACT] = ACTIONS(705), - [anon_sym_Break] = ACTIONS(708), - [anon_sym_break] = ACTIONS(708), - [anon_sym_BREAK] = ACTIONS(708), - [anon_sym_Case] = ACTIONS(711), - [anon_sym_case] = ACTIONS(711), - [anon_sym_CASE] = ACTIONS(711), - [anon_sym_Component] = ACTIONS(713), - [anon_sym_component] = ACTIONS(713), - [anon_sym_COMPONENT] = ACTIONS(713), - [anon_sym_Continue] = ACTIONS(716), - [anon_sym_continue] = ACTIONS(716), - [anon_sym_CONTINUE] = ACTIONS(716), - [anon_sym_Debugger] = ACTIONS(719), - [anon_sym_debugger] = ACTIONS(719), - [anon_sym_DEBUGGER] = ACTIONS(719), - [anon_sym_Default] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_DEFAULT] = ACTIONS(711), - [anon_sym_Do] = ACTIONS(722), - [anon_sym_do] = ACTIONS(722), - [anon_sym_DO] = ACTIONS(722), - [anon_sym_Final] = ACTIONS(725), - [anon_sym_final] = ACTIONS(725), - [anon_sym_FINAL] = ACTIONS(725), - [anon_sym_For] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_FOR] = ACTIONS(728), - [anon_sym_Function] = ACTIONS(731), - [anon_sym_function] = ACTIONS(731), - [anon_sym_FUNCTION] = ACTIONS(731), - [anon_sym_If] = ACTIONS(734), - [anon_sym_if] = ACTIONS(734), - [anon_sym_IF] = ACTIONS(734), - [anon_sym_Import] = ACTIONS(737), - [anon_sym_import] = ACTIONS(737), - [anon_sym_IMPORT] = ACTIONS(737), - [anon_sym_Include] = ACTIONS(740), - [anon_sym_include] = ACTIONS(740), - [anon_sym_INCLUDE] = ACTIONS(740), - [anon_sym_Interface] = ACTIONS(743), - [anon_sym_interface] = ACTIONS(743), - [anon_sym_INTERFACE] = ACTIONS(743), - [anon_sym_New] = ACTIONS(746), - [anon_sym_new] = ACTIONS(746), - [anon_sym_NEW] = ACTIONS(746), - [anon_sym_Package] = ACTIONS(749), - [anon_sym_package] = ACTIONS(749), - [anon_sym_PACKAGE] = ACTIONS(749), - [anon_sym_Private] = ACTIONS(749), - [anon_sym_private] = ACTIONS(749), - [anon_sym_PRIVATE] = ACTIONS(749), - [anon_sym_Public] = ACTIONS(749), - [anon_sym_public] = ACTIONS(749), - [anon_sym_PUBLIC] = ACTIONS(749), - [anon_sym_Remote] = ACTIONS(749), - [anon_sym_remote] = ACTIONS(749), - [anon_sym_REMOTE] = ACTIONS(749), - [anon_sym_Return] = ACTIONS(752), - [anon_sym_return] = ACTIONS(752), - [anon_sym_RETURN] = ACTIONS(752), - [anon_sym_Static] = ACTIONS(705), - [anon_sym_static] = ACTIONS(705), - [anon_sym_STATIC] = ACTIONS(705), - [anon_sym_Switch] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(755), - [anon_sym_SWITCH] = ACTIONS(755), - [anon_sym_Throw] = ACTIONS(758), - [anon_sym_throw] = ACTIONS(758), - [anon_sym_THROW] = ACTIONS(758), - [anon_sym_Try] = ACTIONS(761), - [anon_sym_try] = ACTIONS(761), - [anon_sym_TRY] = ACTIONS(761), - [anon_sym_Var] = ACTIONS(764), - [anon_sym_var] = ACTIONS(764), - [anon_sym_VAR] = ACTIONS(764), - [anon_sym_While] = ACTIONS(767), - [anon_sym_while] = ACTIONS(767), - [anon_sym_WHILE] = ACTIONS(767), - [anon_sym_With] = ACTIONS(770), - [anon_sym_with] = ACTIONS(770), - [anon_sym_WITH] = ACTIONS(770), - [sym_cf_comment] = ACTIONS(773), - [sym__java_block_open] = ACTIONS(776), - [sym__static_type_prefix] = ACTIONS(779), - }, - [STATE(65)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(613), @@ -40421,59 +40311,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(66)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), + [STATE(65)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(613), @@ -40637,59 +40527,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(67)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [STATE(66)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(492), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(613), @@ -40853,53 +40743,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(68)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), + [STATE(67)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -41069,59 +40959,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, + [STATE(68)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [aux_sym_statement_block_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_let] = ACTIONS(639), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_Query] = ACTIONS(645), + [anon_sym_query] = ACTIONS(645), + [anon_sym_QUERY] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [aux_sym_unary_operator_token1] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(657), + [anon_sym_DASH_DASH] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(663), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(666), + [aux_sym_number_token2] = ACTIONS(669), + [anon_sym_This] = ACTIONS(672), + [anon_sym_this] = ACTIONS(672), + [anon_sym_THIS] = ACTIONS(672), + [anon_sym_Super] = ACTIONS(675), + [anon_sym_super] = ACTIONS(675), + [anon_sym_SUPER] = ACTIONS(675), + [anon_sym_True] = ACTIONS(678), + [anon_sym_true] = ACTIONS(678), + [anon_sym_TRUE] = ACTIONS(678), + [anon_sym_False] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_FALSE] = ACTIONS(681), + [anon_sym_Null] = ACTIONS(684), + [anon_sym_null] = ACTIONS(684), + [anon_sym_NULL] = ACTIONS(684), + [anon_sym_Undefined] = ACTIONS(687), + [anon_sym_undefined] = ACTIONS(687), + [anon_sym_UNDEFINED] = ACTIONS(687), + [anon_sym_get] = ACTIONS(639), + [anon_sym_set] = ACTIONS(639), + [anon_sym_POUND] = ACTIONS(690), + [sym_hash_empty] = ACTIONS(693), + [anon_sym_export] = ACTIONS(639), + [anon_sym_QueryExecute] = ACTIONS(696), + [anon_sym_queryexecute] = ACTIONS(696), + [anon_sym_QUERYEXECUTE] = ACTIONS(696), + [anon_sym_queryExecute] = ACTIONS(696), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(702), + [anon_sym_Abstract] = ACTIONS(705), + [anon_sym_abstract] = ACTIONS(705), + [anon_sym_ABSTRACT] = ACTIONS(705), + [anon_sym_Break] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_BREAK] = ACTIONS(708), + [anon_sym_Case] = ACTIONS(711), + [anon_sym_case] = ACTIONS(711), + [anon_sym_CASE] = ACTIONS(711), + [anon_sym_Component] = ACTIONS(713), + [anon_sym_component] = ACTIONS(713), + [anon_sym_COMPONENT] = ACTIONS(713), + [anon_sym_Continue] = ACTIONS(716), + [anon_sym_continue] = ACTIONS(716), + [anon_sym_CONTINUE] = ACTIONS(716), + [anon_sym_Debugger] = ACTIONS(719), + [anon_sym_debugger] = ACTIONS(719), + [anon_sym_DEBUGGER] = ACTIONS(719), + [anon_sym_Default] = ACTIONS(711), + [anon_sym_default] = ACTIONS(711), + [anon_sym_DEFAULT] = ACTIONS(711), + [anon_sym_Do] = ACTIONS(722), + [anon_sym_do] = ACTIONS(722), + [anon_sym_DO] = ACTIONS(722), + [anon_sym_Final] = ACTIONS(725), + [anon_sym_final] = ACTIONS(725), + [anon_sym_FINAL] = ACTIONS(725), + [anon_sym_For] = ACTIONS(728), + [anon_sym_for] = ACTIONS(728), + [anon_sym_FOR] = ACTIONS(728), + [anon_sym_Function] = ACTIONS(731), + [anon_sym_function] = ACTIONS(731), + [anon_sym_FUNCTION] = ACTIONS(731), + [anon_sym_If] = ACTIONS(734), + [anon_sym_if] = ACTIONS(734), + [anon_sym_IF] = ACTIONS(734), + [anon_sym_Import] = ACTIONS(737), + [anon_sym_import] = ACTIONS(737), + [anon_sym_IMPORT] = ACTIONS(737), + [anon_sym_Include] = ACTIONS(740), + [anon_sym_include] = ACTIONS(740), + [anon_sym_INCLUDE] = ACTIONS(740), + [anon_sym_Interface] = ACTIONS(743), + [anon_sym_interface] = ACTIONS(743), + [anon_sym_INTERFACE] = ACTIONS(743), + [anon_sym_New] = ACTIONS(746), + [anon_sym_new] = ACTIONS(746), + [anon_sym_NEW] = ACTIONS(746), + [anon_sym_Package] = ACTIONS(749), + [anon_sym_package] = ACTIONS(749), + [anon_sym_PACKAGE] = ACTIONS(749), + [anon_sym_Private] = ACTIONS(749), + [anon_sym_private] = ACTIONS(749), + [anon_sym_PRIVATE] = ACTIONS(749), + [anon_sym_Public] = ACTIONS(749), + [anon_sym_public] = ACTIONS(749), + [anon_sym_PUBLIC] = ACTIONS(749), + [anon_sym_Remote] = ACTIONS(749), + [anon_sym_remote] = ACTIONS(749), + [anon_sym_REMOTE] = ACTIONS(749), + [anon_sym_Return] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_RETURN] = ACTIONS(752), + [anon_sym_Static] = ACTIONS(705), + [anon_sym_static] = ACTIONS(705), + [anon_sym_STATIC] = ACTIONS(705), + [anon_sym_Switch] = ACTIONS(755), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_SWITCH] = ACTIONS(755), + [anon_sym_Throw] = ACTIONS(758), + [anon_sym_throw] = ACTIONS(758), + [anon_sym_THROW] = ACTIONS(758), + [anon_sym_Try] = ACTIONS(761), + [anon_sym_try] = ACTIONS(761), + [anon_sym_TRY] = ACTIONS(761), + [anon_sym_Var] = ACTIONS(764), + [anon_sym_var] = ACTIONS(764), + [anon_sym_VAR] = ACTIONS(764), + [anon_sym_While] = ACTIONS(767), + [anon_sym_while] = ACTIONS(767), + [anon_sym_WHILE] = ACTIONS(767), + [anon_sym_With] = ACTIONS(770), + [anon_sym_with] = ACTIONS(770), + [anon_sym_WITH] = ACTIONS(770), + [sym_cf_comment] = ACTIONS(773), + [sym__java_block_open] = ACTIONS(776), + [sym__static_type_prefix] = ACTIONS(779), + }, [STATE(69)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(613), @@ -41286,52 +41392,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(70)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -41504,10 +41610,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(71)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(73), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -41526,57 +41632,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(73), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(784), @@ -41718,12 +41824,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(72)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(613), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(35), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(615), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(73)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(613), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(35), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(615), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(74)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(74), + [sym_path] = STATE(3912), + [sym_statement] = STATE(76), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -41742,57 +42280,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(74), + [aux_sym_statement_block_repeat1] = STATE(76), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(788), @@ -41933,13 +42471,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(73)] = { + [STATE(75)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(71), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -41958,57 +42496,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(71), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(792), @@ -42149,13 +42687,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(74)] = { + [STATE(76)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -42174,57 +42712,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(796), @@ -42365,68 +42903,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(75)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(609), + [STATE(77)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(613), + [anon_sym_let] = ACTIONS(806), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -42448,6 +42984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -42471,9 +43008,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(406), [anon_sym_CARET] = ACTIONS(406), [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), [anon_sym_PERCENT] = ACTIONS(406), [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), @@ -42496,13 +43033,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(78)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(93), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(93), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(93), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [aux_sym_component_body_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), [anon_sym_This] = ACTIONS(39), [anon_sym_this] = ACTIONS(39), [anon_sym_THIS] = ACTIONS(39), @@ -42521,128 +43237,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(615), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(93), + [anon_sym_STATIC] = ACTIONS(93), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(76)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(609), + [STATE(79)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(613), + [anon_sym_let] = ACTIONS(806), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -42664,6 +43414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -42687,9 +43438,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(406), [anon_sym_CARET] = ACTIONS(406), [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), [anon_sym_PERCENT] = ACTIONS(406), [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), @@ -42712,98 +43463,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(35), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(615), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(77)] = { + [STATE(80)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(88), + [sym_path] = STATE(3912), + [sym_statement] = STATE(81), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -42822,62 +43573,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(88), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(88), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(81), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(81), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(88), + [aux_sym_component_body_repeat1] = STATE(81), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(825), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -42975,9 +43726,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -43012,13 +43763,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(78)] = { + [STATE(81)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(79), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -43037,62 +43788,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(79), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(79), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(79), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(827), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -43190,9 +43941,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -43227,13 +43978,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(79)] = { + [STATE(82)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(83)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(88), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -43252,62 +44218,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(88), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(88), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(88), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(806), + [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -43405,9 +44371,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -43442,281 +44408,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(80)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(81)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(808), + [STATE(84)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), + [anon_sym_let] = ACTIONS(806), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -43738,7 +44489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -43812,59 +44563,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -43872,13 +44623,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(82)] = { + [STATE(85)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(83), + [sym_path] = STATE(3912), + [sym_statement] = STATE(86), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -43897,62 +44648,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(83), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(83), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(86), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(86), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(83), + [aux_sym_component_body_repeat1] = STATE(86), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(831), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -44050,9 +44801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -44087,13 +44838,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(83)] = { + [STATE(86)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -44112,62 +44863,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -44265,9 +45016,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -44302,228 +45053,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(84)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(85)] = { + [STATE(87)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(86), + [sym_path] = STATE(3912), + [sym_statement] = STATE(97), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -44542,62 +45078,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(86), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(86), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(97), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(97), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(86), + [aux_sym_component_body_repeat1] = STATE(97), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(835), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -44695,9 +45231,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -44732,13 +45268,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(86)] = { + [STATE(88)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -44757,62 +45293,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(837), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -44910,9 +45446,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -44947,13 +45483,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(87)] = { + [STATE(89)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(90)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(91), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -44972,62 +45723,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(91), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(91), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(91), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(839), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -45125,9 +45876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -45162,13 +45913,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(88)] = { + [STATE(91)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -45187,62 +45938,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(841), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -45340,9 +46091,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -45377,228 +46128,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(89)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(90)] = { + [STATE(92)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(91), + [sym_path] = STATE(3912), + [sym_statement] = STATE(108), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -45617,62 +46153,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(91), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(91), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(108), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(108), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(91), + [aux_sym_component_body_repeat1] = STATE(108), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(843), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -45770,9 +46306,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -45807,13 +46343,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(91)] = { + [STATE(93)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -45832,62 +46368,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(845), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -45985,9 +46521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -46022,496 +46558,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(92)] = { - [sym_variable_declarator] = STATE(4514), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(416), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [anon_sym_IN] = ACTIONS(851), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Of] = ACTIONS(854), - [anon_sym_of] = ACTIONS(854), - [anon_sym_OF] = ACTIONS(854), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), - [anon_sym_Var] = ACTIONS(856), - [anon_sym_var] = ACTIONS(856), - [anon_sym_VAR] = ACTIONS(856), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(93)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, [STATE(94)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), + [anon_sym_let] = ACTIONS(806), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -46533,7 +46639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -46607,59 +46713,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -46670,10 +46776,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(95)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), + [sym_path] = STATE(3912), [sym_statement] = STATE(96), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -46692,62 +46798,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), + [sym__tag_call] = STATE(5010), [sym_static_initializer] = STATE(96), - [sym_java_class_block] = STATE(2579), + [sym_java_class_block] = STATE(2553), [sym_property_declaration] = STATE(96), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [aux_sym_component_body_repeat1] = STATE(96), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(847), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -46845,9 +46951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -46885,10 +46991,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(96)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -46907,62 +47013,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(849), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -47060,9 +47166,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -47098,442 +47204,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(97)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(98)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(870), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_let] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_Query] = ACTIONS(882), - [anon_sym_query] = ACTIONS(882), - [anon_sym_QUERY] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(891), - [aux_sym_unary_operator_token1] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym_DQUOTE] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(900), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(903), - [aux_sym_number_token2] = ACTIONS(906), - [anon_sym_This] = ACTIONS(909), - [anon_sym_this] = ACTIONS(909), - [anon_sym_THIS] = ACTIONS(909), - [anon_sym_Super] = ACTIONS(912), - [anon_sym_super] = ACTIONS(912), - [anon_sym_SUPER] = ACTIONS(912), - [anon_sym_True] = ACTIONS(915), - [anon_sym_true] = ACTIONS(915), - [anon_sym_TRUE] = ACTIONS(915), - [anon_sym_False] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [anon_sym_FALSE] = ACTIONS(918), - [anon_sym_Null] = ACTIONS(921), - [anon_sym_null] = ACTIONS(921), - [anon_sym_NULL] = ACTIONS(921), - [anon_sym_Undefined] = ACTIONS(924), - [anon_sym_undefined] = ACTIONS(924), - [anon_sym_UNDEFINED] = ACTIONS(924), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(927), - [sym_hash_empty] = ACTIONS(930), - [anon_sym_export] = ACTIONS(876), - [anon_sym_QueryExecute] = ACTIONS(933), - [anon_sym_queryexecute] = ACTIONS(933), - [anon_sym_QUERYEXECUTE] = ACTIONS(933), - [anon_sym_queryExecute] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(936), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(939), - [anon_sym_Abstract] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(942), - [anon_sym_ABSTRACT] = ACTIONS(942), - [anon_sym_Break] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_BREAK] = ACTIONS(945), - [anon_sym_Component] = ACTIONS(948), - [anon_sym_component] = ACTIONS(948), - [anon_sym_COMPONENT] = ACTIONS(948), - [anon_sym_Continue] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_CONTINUE] = ACTIONS(951), - [anon_sym_Debugger] = ACTIONS(954), - [anon_sym_debugger] = ACTIONS(954), - [anon_sym_DEBUGGER] = ACTIONS(954), - [anon_sym_Do] = ACTIONS(957), - [anon_sym_do] = ACTIONS(957), - [anon_sym_DO] = ACTIONS(957), - [anon_sym_Final] = ACTIONS(960), - [anon_sym_final] = ACTIONS(960), - [anon_sym_FINAL] = ACTIONS(960), - [anon_sym_For] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_FOR] = ACTIONS(963), - [anon_sym_Function] = ACTIONS(966), - [anon_sym_function] = ACTIONS(966), - [anon_sym_FUNCTION] = ACTIONS(966), - [anon_sym_If] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_IF] = ACTIONS(969), - [anon_sym_Import] = ACTIONS(972), - [anon_sym_import] = ACTIONS(972), - [anon_sym_IMPORT] = ACTIONS(972), - [anon_sym_Include] = ACTIONS(975), - [anon_sym_include] = ACTIONS(975), - [anon_sym_INCLUDE] = ACTIONS(975), - [anon_sym_Interface] = ACTIONS(978), - [anon_sym_interface] = ACTIONS(978), - [anon_sym_INTERFACE] = ACTIONS(978), - [anon_sym_New] = ACTIONS(981), - [anon_sym_new] = ACTIONS(981), - [anon_sym_NEW] = ACTIONS(981), - [anon_sym_Package] = ACTIONS(984), - [anon_sym_package] = ACTIONS(984), - [anon_sym_PACKAGE] = ACTIONS(984), - [anon_sym_Private] = ACTIONS(984), - [anon_sym_private] = ACTIONS(984), - [anon_sym_PRIVATE] = ACTIONS(984), - [anon_sym_Property] = ACTIONS(987), - [anon_sym_property] = ACTIONS(987), - [anon_sym_PROPERTY] = ACTIONS(987), - [anon_sym_Public] = ACTIONS(984), - [anon_sym_public] = ACTIONS(984), - [anon_sym_PUBLIC] = ACTIONS(984), - [anon_sym_Remote] = ACTIONS(984), - [anon_sym_remote] = ACTIONS(984), - [anon_sym_REMOTE] = ACTIONS(984), - [anon_sym_Return] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_RETURN] = ACTIONS(990), - [anon_sym_Static] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_STATIC] = ACTIONS(993), - [anon_sym_Switch] = ACTIONS(996), - [anon_sym_switch] = ACTIONS(996), - [anon_sym_SWITCH] = ACTIONS(996), - [anon_sym_Throw] = ACTIONS(999), - [anon_sym_throw] = ACTIONS(999), - [anon_sym_THROW] = ACTIONS(999), - [anon_sym_Try] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_TRY] = ACTIONS(1002), - [anon_sym_Var] = ACTIONS(1005), - [anon_sym_var] = ACTIONS(1005), - [anon_sym_VAR] = ACTIONS(1005), - [anon_sym_While] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_WHILE] = ACTIONS(1008), - [anon_sym_With] = ACTIONS(1011), - [anon_sym_with] = ACTIONS(1011), - [anon_sym_WITH] = ACTIONS(1011), - [sym_cf_comment] = ACTIONS(1014), - [sym__java_block_open] = ACTIONS(1017), - [sym__static_type_prefix] = ACTIONS(1020), - }, - [STATE(99)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(106), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -47552,62 +47228,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(106), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(106), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(106), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(851), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -47705,9 +47381,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -47742,228 +47418,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(100)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(101)] = { + [STATE(98)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(102), + [sym_path] = STATE(3912), + [sym_statement] = STATE(99), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -47982,62 +47443,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(102), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(102), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(99), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(99), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(102), + [aux_sym_component_body_repeat1] = STATE(99), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(853), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -48135,9 +47596,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -48172,13 +47633,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(102)] = { + [STATE(99)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -48197,62 +47658,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(855), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -48350,9 +47811,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -48387,13 +47848,873 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, + [STATE(100)] = { + [sym_variable_declarator] = STATE(4509), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_FINAL] = ACTIONS(416), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [anon_sym_IN] = ACTIONS(863), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Of] = ACTIONS(866), + [anon_sym_of] = ACTIONS(866), + [anon_sym_OF] = ACTIONS(866), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), + [anon_sym_Var] = ACTIONS(868), + [anon_sym_var] = ACTIONS(868), + [anon_sym_VAR] = ACTIONS(868), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(101)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [aux_sym_component_body_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_let] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_Query] = ACTIONS(890), + [anon_sym_query] = ACTIONS(890), + [anon_sym_QUERY] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_TILDE] = ACTIONS(899), + [aux_sym_unary_operator_token1] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(905), + [anon_sym_SQUOTE] = ACTIONS(908), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(911), + [aux_sym_number_token2] = ACTIONS(914), + [anon_sym_This] = ACTIONS(917), + [anon_sym_this] = ACTIONS(917), + [anon_sym_THIS] = ACTIONS(917), + [anon_sym_Super] = ACTIONS(920), + [anon_sym_super] = ACTIONS(920), + [anon_sym_SUPER] = ACTIONS(920), + [anon_sym_True] = ACTIONS(923), + [anon_sym_true] = ACTIONS(923), + [anon_sym_TRUE] = ACTIONS(923), + [anon_sym_False] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [anon_sym_FALSE] = ACTIONS(926), + [anon_sym_Null] = ACTIONS(929), + [anon_sym_null] = ACTIONS(929), + [anon_sym_NULL] = ACTIONS(929), + [anon_sym_Undefined] = ACTIONS(932), + [anon_sym_undefined] = ACTIONS(932), + [anon_sym_UNDEFINED] = ACTIONS(932), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(935), + [sym_hash_empty] = ACTIONS(938), + [anon_sym_export] = ACTIONS(884), + [anon_sym_QueryExecute] = ACTIONS(941), + [anon_sym_queryexecute] = ACTIONS(941), + [anon_sym_QUERYEXECUTE] = ACTIONS(941), + [anon_sym_queryExecute] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(944), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(947), + [anon_sym_Abstract] = ACTIONS(950), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_ABSTRACT] = ACTIONS(950), + [anon_sym_Break] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_BREAK] = ACTIONS(953), + [anon_sym_Component] = ACTIONS(956), + [anon_sym_component] = ACTIONS(956), + [anon_sym_COMPONENT] = ACTIONS(956), + [anon_sym_Continue] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_CONTINUE] = ACTIONS(959), + [anon_sym_Debugger] = ACTIONS(962), + [anon_sym_debugger] = ACTIONS(962), + [anon_sym_DEBUGGER] = ACTIONS(962), + [anon_sym_Do] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_DO] = ACTIONS(965), + [anon_sym_Final] = ACTIONS(968), + [anon_sym_final] = ACTIONS(968), + [anon_sym_FINAL] = ACTIONS(968), + [anon_sym_For] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_FOR] = ACTIONS(971), + [anon_sym_Function] = ACTIONS(974), + [anon_sym_function] = ACTIONS(974), + [anon_sym_FUNCTION] = ACTIONS(974), + [anon_sym_If] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_IF] = ACTIONS(977), + [anon_sym_Import] = ACTIONS(980), + [anon_sym_import] = ACTIONS(980), + [anon_sym_IMPORT] = ACTIONS(980), + [anon_sym_Include] = ACTIONS(983), + [anon_sym_include] = ACTIONS(983), + [anon_sym_INCLUDE] = ACTIONS(983), + [anon_sym_Interface] = ACTIONS(986), + [anon_sym_interface] = ACTIONS(986), + [anon_sym_INTERFACE] = ACTIONS(986), + [anon_sym_New] = ACTIONS(989), + [anon_sym_new] = ACTIONS(989), + [anon_sym_NEW] = ACTIONS(989), + [anon_sym_Package] = ACTIONS(992), + [anon_sym_package] = ACTIONS(992), + [anon_sym_PACKAGE] = ACTIONS(992), + [anon_sym_Private] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_PRIVATE] = ACTIONS(992), + [anon_sym_Property] = ACTIONS(995), + [anon_sym_property] = ACTIONS(995), + [anon_sym_PROPERTY] = ACTIONS(995), + [anon_sym_Public] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_PUBLIC] = ACTIONS(992), + [anon_sym_Remote] = ACTIONS(992), + [anon_sym_remote] = ACTIONS(992), + [anon_sym_REMOTE] = ACTIONS(992), + [anon_sym_Return] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_RETURN] = ACTIONS(998), + [anon_sym_Static] = ACTIONS(1001), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_STATIC] = ACTIONS(1001), + [anon_sym_Switch] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_SWITCH] = ACTIONS(1004), + [anon_sym_Throw] = ACTIONS(1007), + [anon_sym_throw] = ACTIONS(1007), + [anon_sym_THROW] = ACTIONS(1007), + [anon_sym_Try] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_TRY] = ACTIONS(1010), + [anon_sym_Var] = ACTIONS(1013), + [anon_sym_var] = ACTIONS(1013), + [anon_sym_VAR] = ACTIONS(1013), + [anon_sym_While] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_WHILE] = ACTIONS(1016), + [anon_sym_With] = ACTIONS(1019), + [anon_sym_with] = ACTIONS(1019), + [anon_sym_WITH] = ACTIONS(1019), + [sym_cf_comment] = ACTIONS(1022), + [sym__java_block_open] = ACTIONS(1025), + [sym__static_type_prefix] = ACTIONS(1028), + }, + [STATE(102)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__initializer] = STATE(4006), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_IN] = ACTIONS(1044), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Of] = ACTIONS(1047), + [anon_sym_of] = ACTIONS(1047), + [anon_sym_OF] = ACTIONS(1047), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(1031), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, [STATE(103)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(104)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(104), + [sym_path] = STATE(3912), + [sym_statement] = STATE(105), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -48412,62 +48733,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(104), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(104), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(105), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(105), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(104), + [aux_sym_component_body_repeat1] = STATE(105), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1049), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -48565,9 +48886,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -48602,13 +48923,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(104)] = { + [STATE(105)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -48627,62 +48948,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -48780,9 +49101,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -48817,65 +49138,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(105)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__initializer] = STATE(3949), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(106)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -48895,7 +49219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -48969,291 +49293,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_IN] = ACTIONS(1046), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Of] = ACTIONS(1049), - [anon_sym_of] = ACTIONS(1049), - [anon_sym_OF] = ACTIONS(1049), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(1033), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(106)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(98), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(98), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(98), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), + [STATE(107)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(93), - [anon_sym_static] = ACTIONS(93), - [anon_sym_STATIC] = ACTIONS(93), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(107)] = { + [STATE(108)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(87), + [sym_path] = STATE(3912), + [sym_statement] = STATE(101), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -49272,59 +49593,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(87), - [sym_java_class_block] = STATE(2579), - [sym_property_declaration] = STATE(87), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(101), + [sym_java_class_block] = STATE(2553), + [sym_property_declaration] = STATE(101), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_component_body_repeat1] = STATE(87), + [aux_sym_component_body_repeat1] = STATE(101), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(1053), @@ -49425,9 +49746,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(89), [anon_sym_private] = ACTIONS(89), [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Property] = ACTIONS(802), - [anon_sym_property] = ACTIONS(802), - [anon_sym_PROPERTY] = ACTIONS(802), + [anon_sym_Property] = ACTIONS(823), + [anon_sym_property] = ACTIONS(823), + [anon_sym_PROPERTY] = ACTIONS(823), [anon_sym_Public] = ACTIONS(89), [anon_sym_public] = ACTIONS(89), [anon_sym_PUBLIC] = ACTIONS(89), @@ -49462,68 +49783,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(108)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [sym_identifier] = ACTIONS(808), + [STATE(109)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3652), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -49543,7 +49860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(1062), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -49617,59 +49934,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Of] = ACTIONS(406), + [anon_sym_of] = ACTIONS(406), + [anon_sym_OF] = ACTIONS(406), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -49677,67 +49997,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(109)] = { - [sym_statement_block] = STATE(583), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_query_tag_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(598), + [STATE(110)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3652), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [sym_array_return_suffix] = ACTIONS(1057), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -49757,6 +50074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1062), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -49830,126 +50148,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(582), - [anon_sym_function] = ACTIONS(582), - [anon_sym_FUNCTION] = ACTIONS(582), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Of] = ACTIONS(406), + [anon_sym_of] = ACTIONS(406), + [anon_sym_OF] = ACTIONS(406), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(1059), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(110)] = { - [sym_variable_declarator] = STATE(4433), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__initializer] = STATE(3947), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(111)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(416), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -49969,6 +50288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -50042,127 +50362,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_IN] = ACTIONS(1046), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Of] = ACTIONS(1049), - [anon_sym_of] = ACTIONS(1049), - [anon_sym_OF] = ACTIONS(1049), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), - [sym__automatic_semicolon] = ACTIONS(1033), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Of] = ACTIONS(406), + [anon_sym_of] = ACTIONS(406), + [anon_sym_OF] = ACTIONS(406), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(111)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(112)] = { + [sym_statement_block] = STATE(707), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_query_tag_repeat1] = STATE(1029), + [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(550), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(517), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [sym_array_return_suffix] = ACTIONS(1073), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -50182,7 +50505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -50256,127 +50578,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(582), + [anon_sym_function] = ACTIONS(582), + [anon_sym_FUNCTION] = ACTIONS(582), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Of] = ACTIONS(406), - [anon_sym_of] = ACTIONS(406), - [anon_sym_OF] = ACTIONS(406), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(1075), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(112)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3623), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(113)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1071), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -50396,7 +50716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1073), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -50470,62 +50790,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), [anon_sym_Of] = ACTIONS(406), [anon_sym_of] = ACTIONS(406), [anon_sym_OF] = ACTIONS(406), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -50533,67 +50853,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(113)] = { - [sym_statement_block] = STATE(4269), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_query_tag_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(598), + [STATE(114)] = { + [sym_variable_declarator] = STATE(4549), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__initializer] = STATE(4004), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [sym_array_return_suffix] = ACTIONS(1077), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -50686,126 +51004,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(594), - [anon_sym_function] = ACTIONS(594), - [anon_sym_FUNCTION] = ACTIONS(594), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_FINAL] = ACTIONS(416), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_IN] = ACTIONS(1044), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Of] = ACTIONS(1047), + [anon_sym_of] = ACTIONS(1047), + [anon_sym_OF] = ACTIONS(1047), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(1079), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(114)] = { - [sym_statement_block] = STATE(816), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_query_tag_repeat1] = STATE(1020), + [STATE(115)] = { + [sym_statement_block] = STATE(4351), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_query_tag_repeat1] = STATE(1016), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(1077), [anon_sym_LPAREN] = ACTIONS(550), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(557), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(602), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), - [sym_array_return_suffix] = ACTIONS(605), + [sym_array_return_suffix] = ACTIONS(1079), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -50922,9 +51242,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_FUNCTION] = ACTIONS(544), + [anon_sym_Function] = ACTIONS(590), + [anon_sym_function] = ACTIONS(590), + [anon_sym_FUNCTION] = ACTIONS(590), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -50957,496 +51277,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(607), + [sym_tag_linefeed] = ACTIONS(1081), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(115)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Catch] = ACTIONS(1083), - [anon_sym_catch] = ACTIONS(1083), - [anon_sym_CATCH] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Else] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_ELSE] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_Finally] = ACTIONS(1083), - [anon_sym_finally] = ACTIONS(1083), - [anon_sym_FINALLY] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1091), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), - }, [STATE(116)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Of] = ACTIONS(406), - [anon_sym_of] = ACTIONS(406), - [anon_sym_OF] = ACTIONS(406), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Catch] = ACTIONS(1085), + [anon_sym_catch] = ACTIONS(1085), + [anon_sym_CATCH] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Else] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_ELSE] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_Finally] = ACTIONS(1085), + [anon_sym_finally] = ACTIONS(1085), + [anon_sym_FINALLY] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1093), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), }, [STATE(117)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3623), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_statement_block] = STATE(840), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_query_tag_repeat1] = STATE(1004), + [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(550), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(517), + [anon_sym_COLON] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [sym_array_return_suffix] = ACTIONS(605), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -51466,7 +51575,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1073), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -51540,326 +51648,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(544), + [anon_sym_function] = ACTIONS(544), + [anon_sym_FUNCTION] = ACTIONS(544), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Of] = ACTIONS(406), - [anon_sym_of] = ACTIONS(406), - [anon_sym_OF] = ACTIONS(406), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(607), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(118)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [anon_sym_IN] = ACTIONS(851), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Of] = ACTIONS(854), - [anon_sym_of] = ACTIONS(854), - [anon_sym_OF] = ACTIONS(854), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(119)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3650), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), @@ -51868,15 +51761,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1095), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), + [anon_sym_let] = ACTIONS(806), [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(808), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -51970,110 +51863,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(120)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3121), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4357), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4933), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2803), - [sym_hash_expression] = STATE(2803), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4357), + [STATE(119)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3409), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4428), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5032), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2870), + [sym_hash_expression] = STATE(2870), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4428), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -52082,7 +51975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(557), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_Query] = ACTIONS(613), @@ -52242,51 +52135,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(121)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4371), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2773), - [sym_hash_expression] = STATE(2773), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4371), + [STATE(120)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3348), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4417), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4935), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3028), + [sym_hash_expression] = STATE(3028), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4417), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -52295,7 +52188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(565), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_Query] = ACTIONS(613), @@ -52398,7 +52291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(613), [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(615), + [sym_hash_empty] = ACTIONS(1104), [anon_sym_export] = ACTIONS(613), [anon_sym_QueryExecute] = ACTIONS(617), [anon_sym_queryexecute] = ACTIONS(617), @@ -52455,67 +52348,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(122)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3650), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(121)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1033), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -52535,7 +52425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1100), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -52609,126 +52499,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [anon_sym_IN] = ACTIONS(863), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Of] = ACTIONS(866), + [anon_sym_of] = ACTIONS(866), + [anon_sym_OF] = ACTIONS(866), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(123)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(122)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1033), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(808), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -52748,7 +52641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -52822,110 +52715,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(124)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3402), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4327), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4863), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3070), - [sym_hash_expression] = STATE(3070), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4327), + [STATE(123)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4429), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5060), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2951), + [sym_hash_expression] = STATE(2951), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4429), [sym_identifier] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), @@ -52934,7 +52827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(553), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_Query] = ACTIONS(613), @@ -53037,7 +52930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(613), [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1104), + [sym_hash_empty] = ACTIONS(615), [anon_sym_export] = ACTIONS(613), [anon_sym_QueryExecute] = ACTIONS(617), [anon_sym_queryexecute] = ACTIONS(617), @@ -53094,67 +52987,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(125)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(124)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1033), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -53174,7 +53067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -53248,125 +53141,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(126)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(125)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -53386,7 +53280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1100), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -53460,124 +53354,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(127)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3623), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(126)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3681), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3574), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(471), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(1115), + [anon_sym_query] = ACTIONS(1115), + [anon_sym_QUERY] = ACTIONS(1115), + [anon_sym_EQ_GT] = ACTIONS(1118), + [anon_sym_DASH_GT] = ACTIONS(1118), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -53597,7 +53490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1073), + [sym__new_type_prefix] = ACTIONS(1120), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -53643,153 +53536,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(1122), + [aux_sym_unary_operator_token1] = ACTIONS(434), [anon_sym_PLUS_PLUS] = ACTIONS(440), [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1128), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1131), + [aux_sym_number_token2] = ACTIONS(1131), + [anon_sym_This] = ACTIONS(1134), + [anon_sym_this] = ACTIONS(1134), + [anon_sym_THIS] = ACTIONS(1134), + [anon_sym_Super] = ACTIONS(1137), + [anon_sym_super] = ACTIONS(1137), + [anon_sym_SUPER] = ACTIONS(1137), + [anon_sym_True] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1140), + [anon_sym_TRUE] = ACTIONS(1140), + [anon_sym_False] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_FALSE] = ACTIONS(1143), + [anon_sym_Null] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_Undefined] = ACTIONS(1149), + [anon_sym_undefined] = ACTIONS(1149), + [anon_sym_UNDEFINED] = ACTIONS(1149), + [anon_sym_get] = ACTIONS(1115), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1152), + [sym_hash_empty] = ACTIONS(1155), + [anon_sym_export] = ACTIONS(1115), + [anon_sym_QueryExecute] = ACTIONS(1158), + [anon_sym_queryexecute] = ACTIONS(1158), + [anon_sym_QUERYEXECUTE] = ACTIONS(1158), + [anon_sym_queryExecute] = ACTIONS(1158), + [anon_sym_BQUOTE] = ACTIONS(1161), + [anon_sym_Abstract] = ACTIONS(1115), + [anon_sym_abstract] = ACTIONS(1115), + [anon_sym_ABSTRACT] = ACTIONS(1115), + [anon_sym_Component] = ACTIONS(1164), + [anon_sym_component] = ACTIONS(1164), + [anon_sym_COMPONENT] = ACTIONS(1164), + [anon_sym_Debugger] = ACTIONS(1115), + [anon_sym_debugger] = ACTIONS(1115), + [anon_sym_DEBUGGER] = ACTIONS(1115), + [anon_sym_Final] = ACTIONS(1115), + [anon_sym_final] = ACTIONS(1115), + [anon_sym_FINAL] = ACTIONS(1115), + [anon_sym_Function] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1167), + [anon_sym_FUNCTION] = ACTIONS(1167), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(1115), + [anon_sym_include] = ACTIONS(1115), + [anon_sym_INCLUDE] = ACTIONS(1115), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_NEW] = ACTIONS(1170), + [anon_sym_Package] = ACTIONS(1115), + [anon_sym_package] = ACTIONS(1115), + [anon_sym_PACKAGE] = ACTIONS(1115), + [anon_sym_Private] = ACTIONS(1115), + [anon_sym_private] = ACTIONS(1115), + [anon_sym_PRIVATE] = ACTIONS(1115), + [anon_sym_Public] = ACTIONS(1115), + [anon_sym_public] = ACTIONS(1115), + [anon_sym_PUBLIC] = ACTIONS(1115), + [anon_sym_Remote] = ACTIONS(1115), + [anon_sym_remote] = ACTIONS(1115), + [anon_sym_REMOTE] = ACTIONS(1115), + [anon_sym_Static] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1115), + [anon_sym_STATIC] = ACTIONS(1115), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [sym_tag_linefeed] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(1173), + [sym__static_type_prefix] = ACTIONS(1176), }, - [STATE(128)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(127)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3652), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -53809,7 +53703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(1062), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -53883,59 +53777,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -53943,277 +53837,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(129)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(1006), - [sym_path] = STATE(3861), - [sym_statement] = STATE(139), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(1019), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(139), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(1006), - [aux_sym_program_repeat1] = STATE(942), - [aux_sym_program_repeat2] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(1112), - [sym_identifier] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(1114), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(81), - [anon_sym_import] = ACTIONS(81), - [anon_sym_IMPORT] = ACTIONS(81), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(93), - [anon_sym_static] = ACTIONS(93), - [anon_sym_STATIC] = ACTIONS(93), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(130)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(128)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -54233,7 +53916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -54307,125 +53990,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(131)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1118), + [STATE(129)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__initializer] = STATE(4789), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1031), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -54445,7 +54127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -54519,125 +54201,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1127), }, - [STATE(132)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__initializer] = STATE(4559), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(130)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -54657,7 +54339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -54731,124 +54413,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(1033), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(133)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3643), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3625), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(528), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [STATE(131)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1066), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(1140), - [anon_sym_query] = ACTIONS(1140), - [anon_sym_QUERY] = ACTIONS(1140), - [anon_sym_EQ_GT] = ACTIONS(1145), - [anon_sym_DASH_GT] = ACTIONS(1145), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -54868,7 +54551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1147), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -54914,154 +54597,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(1149), - [aux_sym_unary_operator_token1] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), [anon_sym_PLUS_PLUS] = ACTIONS(440), [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1155), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1158), - [aux_sym_number_token2] = ACTIONS(1158), - [anon_sym_This] = ACTIONS(1161), - [anon_sym_this] = ACTIONS(1161), - [anon_sym_THIS] = ACTIONS(1161), - [anon_sym_Super] = ACTIONS(1164), - [anon_sym_super] = ACTIONS(1164), - [anon_sym_SUPER] = ACTIONS(1164), - [anon_sym_True] = ACTIONS(1167), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_TRUE] = ACTIONS(1167), - [anon_sym_False] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [anon_sym_FALSE] = ACTIONS(1170), - [anon_sym_Null] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_Undefined] = ACTIONS(1176), - [anon_sym_undefined] = ACTIONS(1176), - [anon_sym_UNDEFINED] = ACTIONS(1176), - [anon_sym_get] = ACTIONS(1140), - [anon_sym_set] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1179), - [sym_hash_empty] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1140), - [anon_sym_QueryExecute] = ACTIONS(1185), - [anon_sym_queryexecute] = ACTIONS(1185), - [anon_sym_QUERYEXECUTE] = ACTIONS(1185), - [anon_sym_queryExecute] = ACTIONS(1185), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_Abstract] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_ABSTRACT] = ACTIONS(1140), - [anon_sym_Component] = ACTIONS(1191), - [anon_sym_component] = ACTIONS(1191), - [anon_sym_COMPONENT] = ACTIONS(1191), - [anon_sym_Debugger] = ACTIONS(1140), - [anon_sym_debugger] = ACTIONS(1140), - [anon_sym_DEBUGGER] = ACTIONS(1140), - [anon_sym_Final] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_FINAL] = ACTIONS(1140), - [anon_sym_Function] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(1194), - [anon_sym_FUNCTION] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(1140), - [anon_sym_include] = ACTIONS(1140), - [anon_sym_INCLUDE] = ACTIONS(1140), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(1197), - [anon_sym_new] = ACTIONS(1197), - [anon_sym_NEW] = ACTIONS(1197), - [anon_sym_Package] = ACTIONS(1140), - [anon_sym_package] = ACTIONS(1140), - [anon_sym_PACKAGE] = ACTIONS(1140), - [anon_sym_Private] = ACTIONS(1140), - [anon_sym_private] = ACTIONS(1140), - [anon_sym_PRIVATE] = ACTIONS(1140), - [anon_sym_Public] = ACTIONS(1140), - [anon_sym_public] = ACTIONS(1140), - [anon_sym_PUBLIC] = ACTIONS(1140), - [anon_sym_Remote] = ACTIONS(1140), - [anon_sym_remote] = ACTIONS(1140), - [anon_sym_REMOTE] = ACTIONS(1140), - [anon_sym_Static] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_STATIC] = ACTIONS(1140), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1200), - [sym__static_type_prefix] = ACTIONS(1203), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(134)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(132)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(1018), + [sym_path] = STATE(3912), + [sym_statement] = STATE(154), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(1028), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(154), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(1018), + [aux_sym_program_repeat1] = STATE(949), + [aux_sym_program_repeat2] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(1187), + [sym_identifier] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(1189), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(81), + [anon_sym_import] = ACTIONS(81), + [anon_sym_IMPORT] = ACTIONS(81), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(93), + [anon_sym_STATIC] = ACTIONS(93), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(133)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1066), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -55081,7 +54975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -55155,59 +55049,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -55215,65 +55109,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(135)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(134)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3681), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3574), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(471), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1112), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_let] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(1115), + [anon_sym_query] = ACTIONS(1115), + [anon_sym_QUERY] = ACTIONS(1115), + [anon_sym_EQ_GT] = ACTIONS(1118), + [anon_sym_DASH_GT] = ACTIONS(1118), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -55293,7 +55186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(1120), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -55339,153 +55232,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(1122), + [aux_sym_unary_operator_token1] = ACTIONS(434), [anon_sym_PLUS_PLUS] = ACTIONS(440), [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1128), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1131), + [aux_sym_number_token2] = ACTIONS(1131), + [anon_sym_This] = ACTIONS(1134), + [anon_sym_this] = ACTIONS(1134), + [anon_sym_THIS] = ACTIONS(1134), + [anon_sym_Super] = ACTIONS(1137), + [anon_sym_super] = ACTIONS(1137), + [anon_sym_SUPER] = ACTIONS(1137), + [anon_sym_True] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1140), + [anon_sym_TRUE] = ACTIONS(1140), + [anon_sym_False] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_FALSE] = ACTIONS(1143), + [anon_sym_Null] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_Undefined] = ACTIONS(1149), + [anon_sym_undefined] = ACTIONS(1149), + [anon_sym_UNDEFINED] = ACTIONS(1149), + [anon_sym_get] = ACTIONS(1115), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1152), + [sym_hash_empty] = ACTIONS(1155), + [anon_sym_export] = ACTIONS(1115), + [anon_sym_QueryExecute] = ACTIONS(1158), + [anon_sym_queryexecute] = ACTIONS(1158), + [anon_sym_QUERYEXECUTE] = ACTIONS(1158), + [anon_sym_queryExecute] = ACTIONS(1158), + [anon_sym_BQUOTE] = ACTIONS(1161), + [anon_sym_Abstract] = ACTIONS(1115), + [anon_sym_abstract] = ACTIONS(1115), + [anon_sym_ABSTRACT] = ACTIONS(1115), + [anon_sym_Component] = ACTIONS(1164), + [anon_sym_component] = ACTIONS(1164), + [anon_sym_COMPONENT] = ACTIONS(1164), + [anon_sym_Debugger] = ACTIONS(1115), + [anon_sym_debugger] = ACTIONS(1115), + [anon_sym_DEBUGGER] = ACTIONS(1115), + [anon_sym_Final] = ACTIONS(1115), + [anon_sym_final] = ACTIONS(1115), + [anon_sym_FINAL] = ACTIONS(1115), + [anon_sym_Function] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1167), + [anon_sym_FUNCTION] = ACTIONS(1167), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(1115), + [anon_sym_include] = ACTIONS(1115), + [anon_sym_INCLUDE] = ACTIONS(1115), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_NEW] = ACTIONS(1170), + [anon_sym_Package] = ACTIONS(1115), + [anon_sym_package] = ACTIONS(1115), + [anon_sym_PACKAGE] = ACTIONS(1115), + [anon_sym_Private] = ACTIONS(1115), + [anon_sym_private] = ACTIONS(1115), + [anon_sym_PRIVATE] = ACTIONS(1115), + [anon_sym_Public] = ACTIONS(1115), + [anon_sym_public] = ACTIONS(1115), + [anon_sym_PUBLIC] = ACTIONS(1115), + [anon_sym_Remote] = ACTIONS(1115), + [anon_sym_remote] = ACTIONS(1115), + [anon_sym_REMOTE] = ACTIONS(1115), + [anon_sym_Static] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1115), + [anon_sym_STATIC] = ACTIONS(1115), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [sym_tag_linefeed] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(1173), + [sym__static_type_prefix] = ACTIONS(1176), }, - [STATE(136)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3623), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(135)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3652), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -55505,7 +55399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1073), + [sym__new_type_prefix] = ACTIONS(1062), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -55579,59 +55473,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -55639,63 +55533,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(137)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(136)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1066), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(565), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(557), [anon_sym_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -55717,7 +55611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -55791,59 +55685,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -55851,64 +55745,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(138)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3643), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3625), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(528), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [STATE(137)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1066), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(1140), - [anon_sym_query] = ACTIONS(1140), - [anon_sym_QUERY] = ACTIONS(1140), - [anon_sym_EQ_GT] = ACTIONS(1145), - [anon_sym_DASH_GT] = ACTIONS(1145), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -55928,7 +55823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1147), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -55974,363 +55869,575 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(1149), - [aux_sym_unary_operator_token1] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), [anon_sym_PLUS_PLUS] = ACTIONS(440), [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1155), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1158), - [aux_sym_number_token2] = ACTIONS(1158), - [anon_sym_This] = ACTIONS(1161), - [anon_sym_this] = ACTIONS(1161), - [anon_sym_THIS] = ACTIONS(1161), - [anon_sym_Super] = ACTIONS(1164), - [anon_sym_super] = ACTIONS(1164), - [anon_sym_SUPER] = ACTIONS(1164), - [anon_sym_True] = ACTIONS(1167), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_TRUE] = ACTIONS(1167), - [anon_sym_False] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [anon_sym_FALSE] = ACTIONS(1170), - [anon_sym_Null] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_Undefined] = ACTIONS(1176), - [anon_sym_undefined] = ACTIONS(1176), - [anon_sym_UNDEFINED] = ACTIONS(1176), - [anon_sym_get] = ACTIONS(1140), - [anon_sym_set] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1179), - [sym_hash_empty] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1140), - [anon_sym_QueryExecute] = ACTIONS(1185), - [anon_sym_queryexecute] = ACTIONS(1185), - [anon_sym_QUERYEXECUTE] = ACTIONS(1185), - [anon_sym_queryExecute] = ACTIONS(1185), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_Abstract] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_ABSTRACT] = ACTIONS(1140), - [anon_sym_Component] = ACTIONS(1191), - [anon_sym_component] = ACTIONS(1191), - [anon_sym_COMPONENT] = ACTIONS(1191), - [anon_sym_Debugger] = ACTIONS(1140), - [anon_sym_debugger] = ACTIONS(1140), - [anon_sym_DEBUGGER] = ACTIONS(1140), - [anon_sym_Final] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_FINAL] = ACTIONS(1140), - [anon_sym_Function] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(1194), - [anon_sym_FUNCTION] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(1140), - [anon_sym_include] = ACTIONS(1140), - [anon_sym_INCLUDE] = ACTIONS(1140), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(1197), - [anon_sym_new] = ACTIONS(1197), - [anon_sym_NEW] = ACTIONS(1197), - [anon_sym_Package] = ACTIONS(1140), - [anon_sym_package] = ACTIONS(1140), - [anon_sym_PACKAGE] = ACTIONS(1140), - [anon_sym_Private] = ACTIONS(1140), - [anon_sym_private] = ACTIONS(1140), - [anon_sym_PRIVATE] = ACTIONS(1140), - [anon_sym_Public] = ACTIONS(1140), - [anon_sym_public] = ACTIONS(1140), - [anon_sym_PUBLIC] = ACTIONS(1140), - [anon_sym_Remote] = ACTIONS(1140), - [anon_sym_remote] = ACTIONS(1140), - [anon_sym_REMOTE] = ACTIONS(1140), - [anon_sym_Static] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_STATIC] = ACTIONS(1140), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1200), - [sym__static_type_prefix] = ACTIONS(1203), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(138)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1204), }, [STATE(139)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(142), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(142), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [aux_sym_program_repeat2] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1100), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(93), - [anon_sym_static] = ACTIONS(93), - [anon_sym_STATIC] = ACTIONS(93), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, [STATE(140)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3582), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3644), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2810), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1195), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -56350,7 +56457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1213), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -56424,74 +56531,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1215), - [anon_sym_component] = ACTIONS(1215), - [anon_sym_COMPONENT] = ACTIONS(1215), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1204), }, [STATE(141)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(142), + [sym_path] = STATE(3912), + [sym_statement] = STATE(156), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -56510,59 +56616,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(142), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(156), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_program_repeat2] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(1112), + [aux_sym_program_repeat2] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(1187), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(11), @@ -56697,275 +56803,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(142)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(142), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_static_initializer] = STATE(142), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [aux_sym_program_repeat2] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_Query] = ACTIONS(1237), - [anon_sym_query] = ACTIONS(1237), - [anon_sym_QUERY] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [aux_sym_unary_operator_token1] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1255), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1261), - [anon_sym_This] = ACTIONS(1264), - [anon_sym_this] = ACTIONS(1264), - [anon_sym_THIS] = ACTIONS(1264), - [anon_sym_Super] = ACTIONS(1267), - [anon_sym_super] = ACTIONS(1267), - [anon_sym_SUPER] = ACTIONS(1267), - [anon_sym_True] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_TRUE] = ACTIONS(1270), - [anon_sym_False] = ACTIONS(1273), - [anon_sym_false] = ACTIONS(1273), - [anon_sym_FALSE] = ACTIONS(1273), - [anon_sym_Null] = ACTIONS(1276), - [anon_sym_null] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_Undefined] = ACTIONS(1279), - [anon_sym_undefined] = ACTIONS(1279), - [anon_sym_UNDEFINED] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(1231), - [anon_sym_set] = ACTIONS(1231), - [anon_sym_POUND] = ACTIONS(1282), - [sym_hash_empty] = ACTIONS(1285), - [anon_sym_export] = ACTIONS(1231), - [anon_sym_QueryExecute] = ACTIONS(1288), - [anon_sym_queryexecute] = ACTIONS(1288), - [anon_sym_QUERYEXECUTE] = ACTIONS(1288), - [anon_sym_queryExecute] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1291), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1294), - [anon_sym_Abstract] = ACTIONS(1297), - [anon_sym_abstract] = ACTIONS(1297), - [anon_sym_ABSTRACT] = ACTIONS(1297), - [anon_sym_Break] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_BREAK] = ACTIONS(1300), - [anon_sym_Component] = ACTIONS(1303), - [anon_sym_component] = ACTIONS(1303), - [anon_sym_COMPONENT] = ACTIONS(1303), - [anon_sym_Continue] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_CONTINUE] = ACTIONS(1306), - [anon_sym_Debugger] = ACTIONS(1309), - [anon_sym_debugger] = ACTIONS(1309), - [anon_sym_DEBUGGER] = ACTIONS(1309), - [anon_sym_Do] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_DO] = ACTIONS(1312), - [anon_sym_Final] = ACTIONS(1315), - [anon_sym_final] = ACTIONS(1315), - [anon_sym_FINAL] = ACTIONS(1315), - [anon_sym_For] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_FOR] = ACTIONS(1318), - [anon_sym_Function] = ACTIONS(1321), - [anon_sym_function] = ACTIONS(1321), - [anon_sym_FUNCTION] = ACTIONS(1321), - [anon_sym_If] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_IF] = ACTIONS(1324), - [anon_sym_Import] = ACTIONS(1327), - [anon_sym_import] = ACTIONS(1327), - [anon_sym_IMPORT] = ACTIONS(1327), - [anon_sym_Include] = ACTIONS(1330), - [anon_sym_include] = ACTIONS(1330), - [anon_sym_INCLUDE] = ACTIONS(1330), - [anon_sym_Interface] = ACTIONS(1333), - [anon_sym_interface] = ACTIONS(1333), - [anon_sym_INTERFACE] = ACTIONS(1333), - [anon_sym_New] = ACTIONS(1336), - [anon_sym_new] = ACTIONS(1336), - [anon_sym_NEW] = ACTIONS(1336), - [anon_sym_Package] = ACTIONS(1339), - [anon_sym_package] = ACTIONS(1339), - [anon_sym_PACKAGE] = ACTIONS(1339), - [anon_sym_Private] = ACTIONS(1339), - [anon_sym_private] = ACTIONS(1339), - [anon_sym_PRIVATE] = ACTIONS(1339), - [anon_sym_Public] = ACTIONS(1339), - [anon_sym_public] = ACTIONS(1339), - [anon_sym_PUBLIC] = ACTIONS(1339), - [anon_sym_Remote] = ACTIONS(1339), - [anon_sym_remote] = ACTIONS(1339), - [anon_sym_REMOTE] = ACTIONS(1339), - [anon_sym_Return] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_RETURN] = ACTIONS(1342), - [anon_sym_Static] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_STATIC] = ACTIONS(1345), - [anon_sym_Switch] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_SWITCH] = ACTIONS(1348), - [anon_sym_Throw] = ACTIONS(1351), - [anon_sym_throw] = ACTIONS(1351), - [anon_sym_THROW] = ACTIONS(1351), - [anon_sym_Try] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_TRY] = ACTIONS(1354), - [anon_sym_Var] = ACTIONS(1357), - [anon_sym_var] = ACTIONS(1357), - [anon_sym_VAR] = ACTIONS(1357), - [anon_sym_While] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_WHILE] = ACTIONS(1360), - [anon_sym_With] = ACTIONS(1363), - [anon_sym_with] = ACTIONS(1363), - [anon_sym_WITH] = ACTIONS(1363), - [sym_cf_comment] = ACTIONS(1366), - [sym__java_block_open] = ACTIONS(1369), - [sym__static_type_prefix] = ACTIONS(1372), - }, - [STATE(143)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(1375), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -56985,7 +56879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -57059,123 +56953,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(144)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3623), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(143)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(1211), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -57195,7 +57090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1073), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -57269,124 +57164,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1211), }, - [STATE(145)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3623), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(144)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(1213), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -57406,7 +57301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1073), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -57480,124 +57375,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1211), }, - [STATE(146)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1118), + [STATE(145)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -57617,7 +57513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1100), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -57691,125 +57587,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1127), + }, + [STATE(146)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Catch] = ACTIONS(1085), + [anon_sym_catch] = ACTIONS(1085), + [anon_sym_CATCH] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_Finally] = ACTIONS(1085), + [anon_sym_finally] = ACTIONS(1085), + [anon_sym_FINALLY] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1218), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), }, [STATE(147)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3647), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -57829,7 +57934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(811), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -57903,59 +58008,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -57963,63 +58069,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(148)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1118), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1211), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -58039,7 +58146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -58113,122 +58220,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1127), }, [STATE(149)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3652), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1055), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -58250,7 +58356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(1062), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -58324,59 +58430,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -58385,486 +58491,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(150)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1383), - }, - [STATE(151)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1383), - }, - [STATE(152)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3579), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3652), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3596), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2480), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -58884,7 +58567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1389), + [sym__new_type_prefix] = ACTIONS(1062), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -58958,334 +58641,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(815), + [anon_sym_component] = ACTIONS(815), + [anon_sym_COMPONENT] = ACTIONS(815), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(153)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Catch] = ACTIONS(1083), - [anon_sym_catch] = ACTIONS(1083), - [anon_sym_CATCH] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_Finally] = ACTIONS(1083), - [anon_sym_finally] = ACTIONS(1083), - [anon_sym_FINALLY] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1391), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), - }, - [STATE(154)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3633), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3636), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2546), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(151)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3656), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3474), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2818), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -59305,7 +58778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(819), + [sym__new_type_prefix] = ACTIONS(1229), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -59379,125 +58852,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(823), - [anon_sym_component] = ACTIONS(823), - [anon_sym_COMPONENT] = ACTIONS(823), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1231), + [anon_sym_component] = ACTIONS(1231), + [anon_sym_COMPONENT] = ACTIONS(1231), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(404), }, - [STATE(155)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(152)] = { + [sym_variable_declarator] = STATE(4508), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__initializer] = STATE(4797), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1031), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(1383), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -59517,7 +58990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -59591,123 +59063,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_FINAL] = ACTIONS(416), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(156)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3626), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3651), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2923), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [STATE(153)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3656), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3474), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2818), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1222), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -59727,7 +59200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1400), + [sym__new_type_prefix] = ACTIONS(1229), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -59801,59 +59274,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1402), - [anon_sym_component] = ACTIONS(1402), - [anon_sym_COMPONENT] = ACTIONS(1402), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1231), + [anon_sym_component] = ACTIONS(1231), + [anon_sym_COMPONENT] = ACTIONS(1231), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -59861,65 +59334,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), [sym__parameter_separator] = ACTIONS(404), }, - [STATE(157)] = { - [sym_variable_declarator] = STATE(4460), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__initializer] = STATE(4616), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(154)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(156), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(156), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [aux_sym_program_repeat2] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(93), + [anon_sym_STATIC] = ACTIONS(93), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(155)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3696), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3529), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2797), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(416), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -59939,6 +59621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1242), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -60012,124 +59695,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1244), + [anon_sym_component] = ACTIONS(1244), + [anon_sym_COMPONENT] = ACTIONS(1244), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), - [sym__automatic_semicolon] = ACTIONS(1033), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(158)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3626), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3651), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2923), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [STATE(156)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(156), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_static_initializer] = STATE(156), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [aux_sym_program_repeat2] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_Query] = ACTIONS(1266), + [anon_sym_query] = ACTIONS(1266), + [anon_sym_QUERY] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [aux_sym_unary_operator_token1] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1284), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1287), + [aux_sym_number_token2] = ACTIONS(1290), + [anon_sym_This] = ACTIONS(1293), + [anon_sym_this] = ACTIONS(1293), + [anon_sym_THIS] = ACTIONS(1293), + [anon_sym_Super] = ACTIONS(1296), + [anon_sym_super] = ACTIONS(1296), + [anon_sym_SUPER] = ACTIONS(1296), + [anon_sym_True] = ACTIONS(1299), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_TRUE] = ACTIONS(1299), + [anon_sym_False] = ACTIONS(1302), + [anon_sym_false] = ACTIONS(1302), + [anon_sym_FALSE] = ACTIONS(1302), + [anon_sym_Null] = ACTIONS(1305), + [anon_sym_null] = ACTIONS(1305), + [anon_sym_NULL] = ACTIONS(1305), + [anon_sym_Undefined] = ACTIONS(1308), + [anon_sym_undefined] = ACTIONS(1308), + [anon_sym_UNDEFINED] = ACTIONS(1308), + [anon_sym_get] = ACTIONS(1260), + [anon_sym_set] = ACTIONS(1260), + [anon_sym_POUND] = ACTIONS(1311), + [sym_hash_empty] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(1260), + [anon_sym_QueryExecute] = ACTIONS(1317), + [anon_sym_queryexecute] = ACTIONS(1317), + [anon_sym_QUERYEXECUTE] = ACTIONS(1317), + [anon_sym_queryExecute] = ACTIONS(1317), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1323), + [anon_sym_Abstract] = ACTIONS(1326), + [anon_sym_abstract] = ACTIONS(1326), + [anon_sym_ABSTRACT] = ACTIONS(1326), + [anon_sym_Break] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_BREAK] = ACTIONS(1329), + [anon_sym_Component] = ACTIONS(1332), + [anon_sym_component] = ACTIONS(1332), + [anon_sym_COMPONENT] = ACTIONS(1332), + [anon_sym_Continue] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_CONTINUE] = ACTIONS(1335), + [anon_sym_Debugger] = ACTIONS(1338), + [anon_sym_debugger] = ACTIONS(1338), + [anon_sym_DEBUGGER] = ACTIONS(1338), + [anon_sym_Do] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_DO] = ACTIONS(1341), + [anon_sym_Final] = ACTIONS(1344), + [anon_sym_final] = ACTIONS(1344), + [anon_sym_FINAL] = ACTIONS(1344), + [anon_sym_For] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_FOR] = ACTIONS(1347), + [anon_sym_Function] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1350), + [anon_sym_FUNCTION] = ACTIONS(1350), + [anon_sym_If] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_IF] = ACTIONS(1353), + [anon_sym_Import] = ACTIONS(1356), + [anon_sym_import] = ACTIONS(1356), + [anon_sym_IMPORT] = ACTIONS(1356), + [anon_sym_Include] = ACTIONS(1359), + [anon_sym_include] = ACTIONS(1359), + [anon_sym_INCLUDE] = ACTIONS(1359), + [anon_sym_Interface] = ACTIONS(1362), + [anon_sym_interface] = ACTIONS(1362), + [anon_sym_INTERFACE] = ACTIONS(1362), + [anon_sym_New] = ACTIONS(1365), + [anon_sym_new] = ACTIONS(1365), + [anon_sym_NEW] = ACTIONS(1365), + [anon_sym_Package] = ACTIONS(1368), + [anon_sym_package] = ACTIONS(1368), + [anon_sym_PACKAGE] = ACTIONS(1368), + [anon_sym_Private] = ACTIONS(1368), + [anon_sym_private] = ACTIONS(1368), + [anon_sym_PRIVATE] = ACTIONS(1368), + [anon_sym_Public] = ACTIONS(1368), + [anon_sym_public] = ACTIONS(1368), + [anon_sym_PUBLIC] = ACTIONS(1368), + [anon_sym_Remote] = ACTIONS(1368), + [anon_sym_remote] = ACTIONS(1368), + [anon_sym_REMOTE] = ACTIONS(1368), + [anon_sym_Return] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_RETURN] = ACTIONS(1371), + [anon_sym_Static] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_STATIC] = ACTIONS(1374), + [anon_sym_Switch] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_SWITCH] = ACTIONS(1377), + [anon_sym_Throw] = ACTIONS(1380), + [anon_sym_throw] = ACTIONS(1380), + [anon_sym_THROW] = ACTIONS(1380), + [anon_sym_Try] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_TRY] = ACTIONS(1383), + [anon_sym_Var] = ACTIONS(1386), + [anon_sym_var] = ACTIONS(1386), + [anon_sym_VAR] = ACTIONS(1386), + [anon_sym_While] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_WHILE] = ACTIONS(1389), + [anon_sym_With] = ACTIONS(1392), + [anon_sym_with] = ACTIONS(1392), + [anon_sym_WITH] = ACTIONS(1392), + [sym_cf_comment] = ACTIONS(1395), + [sym__java_block_open] = ACTIONS(1398), + [sym__static_type_prefix] = ACTIONS(1401), + }, + [STATE(157)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3696), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3529), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2797), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -60149,7 +60043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1400), + [sym__new_type_prefix] = ACTIONS(1242), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -60223,125 +60117,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1402), - [anon_sym_component] = ACTIONS(1402), - [anon_sym_COMPONENT] = ACTIONS(1402), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1244), + [anon_sym_component] = ACTIONS(1244), + [anon_sym_COMPONENT] = ACTIONS(1244), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(404), }, - [STATE(159)] = { - [sym_variable_declarator] = STATE(4415), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__initializer] = STATE(4616), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(158)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1213), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(416), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(159)] = { + [sym_variable_declarator] = STATE(4566), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__initializer] = STATE(4797), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -60456,9 +60562,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(416), [anon_sym_final] = ACTIONS(416), [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -60487,7 +60593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(416), [anon_sym_static] = ACTIONS(416), [anon_sym_STATIC] = ACTIONS(416), - [sym__automatic_semicolon] = ACTIONS(1033), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -60495,63 +60601,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(160)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3690), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3651), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2923), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1204), + }, + [STATE(161)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3694), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3474), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2818), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(1404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), + [anon_sym_let] = ACTIONS(806), [anon_sym_EQ] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -60645,59 +60962,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1402), - [anon_sym_component] = ACTIONS(1402), - [anon_sym_COMPONENT] = ACTIONS(1402), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1231), + [anon_sym_component] = ACTIONS(1231), + [anon_sym_COMPONENT] = ACTIONS(1231), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -60705,64 +61022,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), [sym__parameter_separator] = ACTIONS(404), }, - [STATE(161)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3690), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3651), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2923), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [STATE(162)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3694), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3474), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2818), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(1404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -60856,59 +61173,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1402), - [anon_sym_component] = ACTIONS(1402), - [anon_sym_COMPONENT] = ACTIONS(1402), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1231), + [anon_sym_component] = ACTIONS(1231), + [anon_sym_COMPONENT] = ACTIONS(1231), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -60916,63 +61233,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), [sym__parameter_separator] = ACTIONS(404), }, - [STATE(162)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3592), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3644), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2810), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [STATE(163)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3700), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3529), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2797), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(1411), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), + [anon_sym_let] = ACTIONS(806), [anon_sym_EQ] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -61066,59 +61383,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1215), - [anon_sym_component] = ACTIONS(1215), - [anon_sym_COMPONENT] = ACTIONS(1215), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1244), + [anon_sym_component] = ACTIONS(1244), + [anon_sym_COMPONENT] = ACTIONS(1244), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -61127,63 +61444,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(163)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3592), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3644), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2810), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [STATE(164)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3700), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3529), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2797), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(1411), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -61277,59 +61594,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1215), - [anon_sym_component] = ACTIONS(1215), - [anon_sym_COMPONENT] = ACTIONS(1215), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1244), + [anon_sym_component] = ACTIONS(1244), + [anon_sym_COMPONENT] = ACTIONS(1244), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), @@ -61338,63 +61655,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(164)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3582), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3644), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2810), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [STATE(165)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(406), [anon_sym_EQ] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -61414,7 +61733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1213), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -61488,272 +61807,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1215), - [anon_sym_component] = ACTIONS(1215), - [anon_sym_COMPONENT] = ACTIONS(1215), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(165)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3655), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -61761,64 +61867,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(166)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3655), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -61838,7 +61944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1422), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -61912,59 +62018,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -61972,64 +62078,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(167)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3579), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(1198), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(1198), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -62049,7 +62155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1389), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -62123,59 +62229,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -62183,64 +62289,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(168)] = { - [sym_variable_declarator] = STATE(4439), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__initializer] = STATE(4616), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [sym_variable_declarator] = STATE(4487), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__initializer] = STATE(4797), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1031), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), [anon_sym_let] = ACTIONS(416), - [anon_sym_EQ] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(1185), [anon_sym_LBRACK] = ACTIONS(424), [anon_sym_Query] = ACTIONS(416), [anon_sym_query] = ACTIONS(416), [anon_sym_QUERY] = ACTIONS(416), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -62355,9 +62461,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(416), [anon_sym_final] = ACTIONS(416), [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -62386,7 +62492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(416), [anon_sym_static] = ACTIONS(416), [anon_sym_STATIC] = ACTIONS(416), - [sym__automatic_semicolon] = ACTIONS(1033), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -62396,10 +62502,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(169)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(191), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -62418,60 +62524,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(191), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1420), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -62606,10 +62712,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(170)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(198), + [sym_path] = STATE(3912), + [sym_statement] = STATE(180), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -62628,60 +62734,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(198), + [aux_sym_statement_block_repeat1] = STATE(180), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1422), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -62816,10 +62922,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(171)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -62838,60 +62944,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1424), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -63026,10 +63132,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(172)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(188), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -63048,60 +63154,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(188), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1426), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -63236,10 +63342,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(173)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(171), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -63258,60 +63364,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(171), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1428), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -63446,10 +63552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(174)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(186), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -63468,60 +63574,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(186), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1430), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -63654,222 +63760,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(175)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(176)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -63888,60 +63784,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1432), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -64073,274 +63969,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(177)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(174), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), + [STATE(176)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(61), - [anon_sym_static] = ACTIONS(61), - [anon_sym_STATIC] = ACTIONS(61), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1437), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(1448), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(178)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(177)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1204), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(1127), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(1198), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -64360,7 +64256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -64434,72 +64330,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(179)] = { + [STATE(178)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(197), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -64518,60 +64414,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(197), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1450), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -64703,223 +64599,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(180)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1144), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1445), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(181)] = { + [STATE(179)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -64938,60 +64624,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1452), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -65123,223 +64809,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(182)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(183)] = { + [STATE(180)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -65358,60 +64834,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1454), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -65543,13 +65019,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(184)] = { + [STATE(181)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(179), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -65568,60 +65044,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(179), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1456), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -65753,13 +65229,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(185)] = { + [STATE(182)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1157), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1458), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(1448), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(183)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -65778,60 +65464,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1460), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -65963,13 +65649,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(186)] = { + [STATE(184)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -65988,60 +65674,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1462), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -66173,13 +65859,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(187)] = { + [STATE(185)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(186)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(194), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -66198,60 +66094,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(194), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1464), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -66383,13 +66279,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(188)] = { + [STATE(187)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -66408,60 +66304,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1466), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -66593,13 +66489,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(189)] = { + [STATE(188)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(188), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -66618,60 +66514,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(188), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1468), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -66803,13 +66699,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, + [STATE(189)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, [STATE(190)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(1204), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(191)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -66828,60 +67144,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -67013,483 +67329,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(191)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1476), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, [STATE(192)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [aux_sym_statement_block_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(61), + [anon_sym_static] = ACTIONS(61), + [anon_sym_STATIC] = ACTIONS(61), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, [STATE(193)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1142), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1035), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1474), [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -67604,9 +67710,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -67635,21 +67741,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1478), + [sym__automatic_semicolon] = ACTIONS(1474), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1456), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(194)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -67668,60 +67774,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1476), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -67856,10 +67962,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(195)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -67878,60 +67984,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -68066,10 +68172,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(196)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(176), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -68088,60 +68194,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(176), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1480), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -68274,222 +68380,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(197)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1138), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1486), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(198)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -68508,60 +68404,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1482), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -68693,13 +68589,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, + [STATE(198)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1137), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1484), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(1448), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, [STATE(199)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(64), + [sym_path] = STATE(3912), + [sym_statement] = STATE(68), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -68718,60 +68824,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), - [aux_sym_statement_block_repeat1] = STATE(64), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1486), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_let] = ACTIONS(15), @@ -68904,62 +69010,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(111), }, [STATE(200)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3655), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3698), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3462), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2975), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -68979,7 +69084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1422), + [sym__new_type_prefix] = ACTIONS(1495), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -69053,121 +69158,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1497), + [anon_sym_component] = ACTIONS(1497), + [anon_sym_COMPONENT] = ACTIONS(1497), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(201)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3586), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3656), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(3209), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3686), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3462), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2975), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -69187,7 +69293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1499), + [sym__new_type_prefix] = ACTIONS(1504), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -69261,59 +69367,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1501), - [anon_sym_component] = ACTIONS(1501), - [anon_sym_COMPONENT] = ACTIONS(1501), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1497), + [anon_sym_component] = ACTIONS(1497), + [anon_sym_COMPONENT] = ACTIONS(1497), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -69322,62 +69428,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(202)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3579), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(814), + [anon_sym_let] = ACTIONS(806), [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -69397,7 +69503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1389), + [sym__new_type_prefix] = ACTIONS(1100), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -69471,59 +69577,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -69531,61 +69637,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(203)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3586), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3656), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(3209), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3698), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3462), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2975), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -69605,7 +69711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1499), + [sym__new_type_prefix] = ACTIONS(1495), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -69679,59 +69785,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1501), - [anon_sym_component] = ACTIONS(1501), - [anon_sym_COMPONENT] = ACTIONS(1501), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1497), + [anon_sym_component] = ACTIONS(1497), + [anon_sym_COMPONENT] = ACTIONS(1497), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -69740,61 +69846,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(204)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3654), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3656), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(3209), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(406), [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -69814,7 +69921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1510), + [sym__new_type_prefix] = ACTIONS(1100), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -69888,123 +69995,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1501), - [anon_sym_component] = ACTIONS(1501), - [anon_sym_COMPONENT] = ACTIONS(1501), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(205)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3579), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3686), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3462), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2975), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -70024,7 +70129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1389), + [sym__new_type_prefix] = ACTIONS(1504), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -70098,122 +70203,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1497), + [anon_sym_component] = ACTIONS(1497), + [anon_sym_COMPONENT] = ACTIONS(1497), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(206)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3655), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -70233,7 +70339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1422), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -70307,59 +70413,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), @@ -70367,61 +70473,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(484), }, [STATE(207)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3654), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3656), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(3209), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -70441,7 +70548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1510), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -70515,150 +70622,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1501), - [anon_sym_component] = ACTIONS(1501), - [anon_sym_COMPONENT] = ACTIONS(1501), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(208)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(642), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(825), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [sym_identifier] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -70690,183 +70796,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(61), + [anon_sym_static] = ACTIONS(61), + [anon_sym_STATIC] = ACTIONS(61), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, [STATE(209)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4199), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4724), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -70898,779 +71004,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, [STATE(210)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(567), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(211)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4156), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(212)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4178), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(213)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3650), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -71690,7 +71172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1100), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -71764,149 +71246,773 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(1152), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, + [STATE(211)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3690), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3479), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(671), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_let] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(1115), + [anon_sym_query] = ACTIONS(1115), + [anon_sym_QUERY] = ACTIONS(1115), + [anon_sym_EQ_GT] = ACTIONS(1581), + [anon_sym_DASH_GT] = ACTIONS(1581), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1583), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(1122), + [aux_sym_unary_operator_token1] = ACTIONS(434), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1128), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1131), + [aux_sym_number_token2] = ACTIONS(1131), + [anon_sym_This] = ACTIONS(1134), + [anon_sym_this] = ACTIONS(1134), + [anon_sym_THIS] = ACTIONS(1134), + [anon_sym_Super] = ACTIONS(1137), + [anon_sym_super] = ACTIONS(1137), + [anon_sym_SUPER] = ACTIONS(1137), + [anon_sym_True] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1140), + [anon_sym_TRUE] = ACTIONS(1140), + [anon_sym_False] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_FALSE] = ACTIONS(1143), + [anon_sym_Null] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_Undefined] = ACTIONS(1149), + [anon_sym_undefined] = ACTIONS(1149), + [anon_sym_UNDEFINED] = ACTIONS(1149), + [anon_sym_get] = ACTIONS(1115), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1152), + [sym_hash_empty] = ACTIONS(1155), + [anon_sym_export] = ACTIONS(1115), + [anon_sym_QueryExecute] = ACTIONS(1158), + [anon_sym_queryexecute] = ACTIONS(1158), + [anon_sym_QUERYEXECUTE] = ACTIONS(1158), + [anon_sym_queryExecute] = ACTIONS(1158), + [anon_sym_BQUOTE] = ACTIONS(1161), + [anon_sym_Abstract] = ACTIONS(1115), + [anon_sym_abstract] = ACTIONS(1115), + [anon_sym_ABSTRACT] = ACTIONS(1115), + [anon_sym_Component] = ACTIONS(1585), + [anon_sym_component] = ACTIONS(1585), + [anon_sym_COMPONENT] = ACTIONS(1585), + [anon_sym_Debugger] = ACTIONS(1115), + [anon_sym_debugger] = ACTIONS(1115), + [anon_sym_DEBUGGER] = ACTIONS(1115), + [anon_sym_Final] = ACTIONS(1115), + [anon_sym_final] = ACTIONS(1115), + [anon_sym_FINAL] = ACTIONS(1115), + [anon_sym_Function] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1167), + [anon_sym_FUNCTION] = ACTIONS(1167), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(1115), + [anon_sym_include] = ACTIONS(1115), + [anon_sym_INCLUDE] = ACTIONS(1115), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_NEW] = ACTIONS(1170), + [anon_sym_Package] = ACTIONS(1115), + [anon_sym_package] = ACTIONS(1115), + [anon_sym_PACKAGE] = ACTIONS(1115), + [anon_sym_Private] = ACTIONS(1115), + [anon_sym_private] = ACTIONS(1115), + [anon_sym_PRIVATE] = ACTIONS(1115), + [anon_sym_Public] = ACTIONS(1115), + [anon_sym_public] = ACTIONS(1115), + [anon_sym_PUBLIC] = ACTIONS(1115), + [anon_sym_Remote] = ACTIONS(1115), + [anon_sym_remote] = ACTIONS(1115), + [anon_sym_REMOTE] = ACTIONS(1115), + [anon_sym_Static] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1115), + [anon_sym_STATIC] = ACTIONS(1115), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(1173), + [sym__static_type_prefix] = ACTIONS(1176), + }, + [STATE(212)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1590), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Else] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_ELSE] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(1592), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(213)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_COMMA] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Else] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_ELSE] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1085), + [anon_sym_instanceof] = ACTIONS(1085), + [anon_sym_INSTANCEOF] = ACTIONS(1085), + [anon_sym_instanceOf] = ACTIONS(1085), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1594), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, [STATE(214)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4179), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(843), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [sym_identifier] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -71938,151 +72044,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(61), + [anon_sym_static] = ACTIONS(61), + [anon_sym_STATIC] = ACTIONS(61), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, [STATE(215)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1142), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1035), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1474), [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), @@ -72200,9 +72306,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -72231,2150 +72337,694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1478), + [sym__automatic_semicolon] = ACTIONS(1474), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1456), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(216)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4244), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1590), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), + [anon_sym_export] = ACTIONS(1590), [anon_sym_QueryExecute] = ACTIONS(1590), [anon_sym_queryexecute] = ACTIONS(1590), [anon_sym_QUERYEXECUTE] = ACTIONS(1590), [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Else] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_ELSE] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(1588), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, [STATE(217)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4255), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1598), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Break] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_BREAK] = ACTIONS(1598), + [anon_sym_Case] = ACTIONS(1598), + [anon_sym_case] = ACTIONS(1598), + [anon_sym_CASE] = ACTIONS(1598), [anon_sym_Component] = ACTIONS(1598), [anon_sym_component] = ACTIONS(1598), [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [anon_sym_Continue] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_CONTINUE] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Default] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_DEFAULT] = ACTIONS(1598), + [anon_sym_Do] = ACTIONS(1598), + [anon_sym_do] = ACTIONS(1598), + [anon_sym_DO] = ACTIONS(1598), + [anon_sym_Else] = ACTIONS(1598), + [anon_sym_else] = ACTIONS(1598), + [anon_sym_ELSE] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_For] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_FOR] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_If] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_IF] = ACTIONS(1598), + [anon_sym_Import] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_IMPORT] = ACTIONS(1598), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1598), + [anon_sym_instanceof] = ACTIONS(1598), + [anon_sym_INSTANCEOF] = ACTIONS(1598), + [anon_sym_instanceOf] = ACTIONS(1598), + [anon_sym_Interface] = ACTIONS(1598), + [anon_sym_interface] = ACTIONS(1598), + [anon_sym_INTERFACE] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Property] = ACTIONS(1598), + [anon_sym_property] = ACTIONS(1598), + [anon_sym_PROPERTY] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Return] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_RETURN] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [anon_sym_Switch] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1598), + [anon_sym_SWITCH] = ACTIONS(1598), + [anon_sym_Throw] = ACTIONS(1598), + [anon_sym_throw] = ACTIONS(1598), + [anon_sym_THROW] = ACTIONS(1598), + [anon_sym_Try] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_TRY] = ACTIONS(1598), + [anon_sym_Var] = ACTIONS(1598), + [anon_sym_var] = ACTIONS(1598), + [anon_sym_VAR] = ACTIONS(1598), + [anon_sym_While] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_WHILE] = ACTIONS(1598), + [anon_sym_With] = ACTIONS(1598), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_WITH] = ACTIONS(1598), + [sym__automatic_semicolon] = ACTIONS(1596), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), + [sym_cf_comment] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), }, [STATE(218)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4266), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3690), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3479), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(671), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1106), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_let] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(1115), + [anon_sym_query] = ACTIONS(1115), + [anon_sym_QUERY] = ACTIONS(1115), + [anon_sym_EQ_GT] = ACTIONS(1581), + [anon_sym_DASH_GT] = ACTIONS(1581), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1583), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(1122), + [aux_sym_unary_operator_token1] = ACTIONS(434), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1128), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1131), + [aux_sym_number_token2] = ACTIONS(1131), + [anon_sym_This] = ACTIONS(1134), + [anon_sym_this] = ACTIONS(1134), + [anon_sym_THIS] = ACTIONS(1134), + [anon_sym_Super] = ACTIONS(1137), + [anon_sym_super] = ACTIONS(1137), + [anon_sym_SUPER] = ACTIONS(1137), + [anon_sym_True] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1140), + [anon_sym_TRUE] = ACTIONS(1140), + [anon_sym_False] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [anon_sym_FALSE] = ACTIONS(1143), + [anon_sym_Null] = ACTIONS(1146), + [anon_sym_null] = ACTIONS(1146), + [anon_sym_NULL] = ACTIONS(1146), + [anon_sym_Undefined] = ACTIONS(1149), + [anon_sym_undefined] = ACTIONS(1149), + [anon_sym_UNDEFINED] = ACTIONS(1149), + [anon_sym_get] = ACTIONS(1115), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_POUND] = ACTIONS(1152), + [sym_hash_empty] = ACTIONS(1155), + [anon_sym_export] = ACTIONS(1115), + [anon_sym_QueryExecute] = ACTIONS(1158), + [anon_sym_queryexecute] = ACTIONS(1158), + [anon_sym_QUERYEXECUTE] = ACTIONS(1158), + [anon_sym_queryExecute] = ACTIONS(1158), + [anon_sym_BQUOTE] = ACTIONS(1161), + [anon_sym_Abstract] = ACTIONS(1115), + [anon_sym_abstract] = ACTIONS(1115), + [anon_sym_ABSTRACT] = ACTIONS(1115), + [anon_sym_Component] = ACTIONS(1585), + [anon_sym_component] = ACTIONS(1585), + [anon_sym_COMPONENT] = ACTIONS(1585), + [anon_sym_Debugger] = ACTIONS(1115), + [anon_sym_debugger] = ACTIONS(1115), + [anon_sym_DEBUGGER] = ACTIONS(1115), + [anon_sym_Final] = ACTIONS(1115), + [anon_sym_final] = ACTIONS(1115), + [anon_sym_FINAL] = ACTIONS(1115), + [anon_sym_Function] = ACTIONS(1167), + [anon_sym_function] = ACTIONS(1167), + [anon_sym_FUNCTION] = ACTIONS(1167), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(1115), + [anon_sym_include] = ACTIONS(1115), + [anon_sym_INCLUDE] = ACTIONS(1115), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1170), + [anon_sym_NEW] = ACTIONS(1170), + [anon_sym_Package] = ACTIONS(1115), + [anon_sym_package] = ACTIONS(1115), + [anon_sym_PACKAGE] = ACTIONS(1115), + [anon_sym_Private] = ACTIONS(1115), + [anon_sym_private] = ACTIONS(1115), + [anon_sym_PRIVATE] = ACTIONS(1115), + [anon_sym_Public] = ACTIONS(1115), + [anon_sym_public] = ACTIONS(1115), + [anon_sym_PUBLIC] = ACTIONS(1115), + [anon_sym_Remote] = ACTIONS(1115), + [anon_sym_remote] = ACTIONS(1115), + [anon_sym_REMOTE] = ACTIONS(1115), + [anon_sym_Static] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1115), + [anon_sym_STATIC] = ACTIONS(1115), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(1173), + [sym__static_type_prefix] = ACTIONS(1176), }, [STATE(219)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4267), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(220)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4268), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(221)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4277), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(222)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4278), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(223)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4279), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(224)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4289), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(225)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(599), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(226)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -74394,7 +73044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -74468,565 +73118,773 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(1179), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(227)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(612), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), + [STATE(220)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3861), + [sym_primary_expression] = STATE(3731), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(215), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(290), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1602), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(228)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(620), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(221)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1100), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(229)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(622), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), + [STATE(222)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3861), + [sym_primary_expression] = STATE(3731), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(224), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(289), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_let] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1606), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(223)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4159), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -75058,106 +73916,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(230)] = { + [STATE(224)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1157), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1458), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(1448), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(225)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(903), + [sym_path] = STATE(3912), + [sym_statement] = STATE(852), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -75176,54 +74242,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [sym_identifier] = ACTIONS(782), @@ -75359,1962 +74425,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(231)] = { - [ts_builtin_sym_end] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_Query] = ACTIONS(1648), - [anon_sym_query] = ACTIONS(1648), - [anon_sym_QUERY] = ACTIONS(1648), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1646), - [aux_sym_unary_operator_token1] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1648), - [aux_sym_number_token2] = ACTIONS(1648), - [anon_sym_This] = ACTIONS(1648), - [anon_sym_this] = ACTIONS(1648), - [anon_sym_THIS] = ACTIONS(1648), - [anon_sym_Super] = ACTIONS(1648), - [anon_sym_super] = ACTIONS(1648), - [anon_sym_SUPER] = ACTIONS(1648), - [anon_sym_True] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_TRUE] = ACTIONS(1648), - [anon_sym_False] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_FALSE] = ACTIONS(1648), - [anon_sym_Null] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_NULL] = ACTIONS(1648), - [anon_sym_Undefined] = ACTIONS(1648), - [anon_sym_undefined] = ACTIONS(1648), - [anon_sym_UNDEFINED] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(1648), - [anon_sym_set] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(1648), - [sym_hash_empty] = ACTIONS(1646), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_QueryExecute] = ACTIONS(1648), - [anon_sym_queryexecute] = ACTIONS(1648), - [anon_sym_QUERYEXECUTE] = ACTIONS(1648), - [anon_sym_queryExecute] = ACTIONS(1648), - [anon_sym_BQUOTE] = ACTIONS(1648), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1646), - [anon_sym_Abstract] = ACTIONS(1648), - [anon_sym_abstract] = ACTIONS(1648), - [anon_sym_ABSTRACT] = ACTIONS(1648), - [anon_sym_Break] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_BREAK] = ACTIONS(1648), - [anon_sym_Case] = ACTIONS(1648), - [anon_sym_case] = ACTIONS(1648), - [anon_sym_CASE] = ACTIONS(1648), - [anon_sym_Component] = ACTIONS(1648), - [anon_sym_component] = ACTIONS(1648), - [anon_sym_COMPONENT] = ACTIONS(1648), - [anon_sym_Continue] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_CONTINUE] = ACTIONS(1648), - [anon_sym_Debugger] = ACTIONS(1648), - [anon_sym_debugger] = ACTIONS(1648), - [anon_sym_DEBUGGER] = ACTIONS(1648), - [anon_sym_Default] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_DEFAULT] = ACTIONS(1648), - [anon_sym_Do] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_DO] = ACTIONS(1648), - [anon_sym_Else] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_ELSE] = ACTIONS(1648), - [anon_sym_Final] = ACTIONS(1648), - [anon_sym_final] = ACTIONS(1648), - [anon_sym_FINAL] = ACTIONS(1648), - [anon_sym_For] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_FOR] = ACTIONS(1648), - [anon_sym_Function] = ACTIONS(1648), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_FUNCTION] = ACTIONS(1648), - [anon_sym_If] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_IF] = ACTIONS(1648), - [anon_sym_Import] = ACTIONS(1648), - [anon_sym_import] = ACTIONS(1648), - [anon_sym_IMPORT] = ACTIONS(1648), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_Include] = ACTIONS(1648), - [anon_sym_include] = ACTIONS(1648), - [anon_sym_INCLUDE] = ACTIONS(1648), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [anon_sym_Interface] = ACTIONS(1648), - [anon_sym_interface] = ACTIONS(1648), - [anon_sym_INTERFACE] = ACTIONS(1648), - [anon_sym_New] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_NEW] = ACTIONS(1648), - [anon_sym_Package] = ACTIONS(1648), - [anon_sym_package] = ACTIONS(1648), - [anon_sym_PACKAGE] = ACTIONS(1648), - [anon_sym_Private] = ACTIONS(1648), - [anon_sym_private] = ACTIONS(1648), - [anon_sym_PRIVATE] = ACTIONS(1648), - [anon_sym_Property] = ACTIONS(1648), - [anon_sym_property] = ACTIONS(1648), - [anon_sym_PROPERTY] = ACTIONS(1648), - [anon_sym_Public] = ACTIONS(1648), - [anon_sym_public] = ACTIONS(1648), - [anon_sym_PUBLIC] = ACTIONS(1648), - [anon_sym_Remote] = ACTIONS(1648), - [anon_sym_remote] = ACTIONS(1648), - [anon_sym_REMOTE] = ACTIONS(1648), - [anon_sym_Return] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_RETURN] = ACTIONS(1648), - [anon_sym_Static] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_STATIC] = ACTIONS(1648), - [anon_sym_Switch] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_SWITCH] = ACTIONS(1648), - [anon_sym_Throw] = ACTIONS(1648), - [anon_sym_throw] = ACTIONS(1648), - [anon_sym_THROW] = ACTIONS(1648), - [anon_sym_Try] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_TRY] = ACTIONS(1648), - [anon_sym_Var] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [anon_sym_VAR] = ACTIONS(1648), - [anon_sym_While] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_WHILE] = ACTIONS(1648), - [anon_sym_With] = ACTIONS(1648), - [anon_sym_with] = ACTIONS(1648), - [anon_sym_WITH] = ACTIONS(1648), - [sym__automatic_semicolon] = ACTIONS(1654), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym_cf_comment] = ACTIONS(1646), - [sym__java_block_open] = ACTIONS(1646), - [sym__static_type_prefix] = ACTIONS(1646), - }, - [STATE(232)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(649), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(233)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(656), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(234)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(657), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(235)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3671), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3627), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(735), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(1140), - [anon_sym_query] = ACTIONS(1140), - [anon_sym_QUERY] = ACTIONS(1140), - [anon_sym_EQ_GT] = ACTIONS(1659), - [anon_sym_DASH_GT] = ACTIONS(1659), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1661), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(1149), - [aux_sym_unary_operator_token1] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1155), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1158), - [aux_sym_number_token2] = ACTIONS(1158), - [anon_sym_This] = ACTIONS(1161), - [anon_sym_this] = ACTIONS(1161), - [anon_sym_THIS] = ACTIONS(1161), - [anon_sym_Super] = ACTIONS(1164), - [anon_sym_super] = ACTIONS(1164), - [anon_sym_SUPER] = ACTIONS(1164), - [anon_sym_True] = ACTIONS(1167), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_TRUE] = ACTIONS(1167), - [anon_sym_False] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [anon_sym_FALSE] = ACTIONS(1170), - [anon_sym_Null] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_Undefined] = ACTIONS(1176), - [anon_sym_undefined] = ACTIONS(1176), - [anon_sym_UNDEFINED] = ACTIONS(1176), - [anon_sym_get] = ACTIONS(1140), - [anon_sym_set] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1179), - [sym_hash_empty] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1140), - [anon_sym_QueryExecute] = ACTIONS(1185), - [anon_sym_queryexecute] = ACTIONS(1185), - [anon_sym_QUERYEXECUTE] = ACTIONS(1185), - [anon_sym_queryExecute] = ACTIONS(1185), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_Abstract] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_ABSTRACT] = ACTIONS(1140), - [anon_sym_Component] = ACTIONS(1663), - [anon_sym_component] = ACTIONS(1663), - [anon_sym_COMPONENT] = ACTIONS(1663), - [anon_sym_Debugger] = ACTIONS(1140), - [anon_sym_debugger] = ACTIONS(1140), - [anon_sym_DEBUGGER] = ACTIONS(1140), - [anon_sym_Final] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_FINAL] = ACTIONS(1140), - [anon_sym_Function] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(1194), - [anon_sym_FUNCTION] = ACTIONS(1194), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(1140), - [anon_sym_include] = ACTIONS(1140), - [anon_sym_INCLUDE] = ACTIONS(1140), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(1197), - [anon_sym_new] = ACTIONS(1197), - [anon_sym_NEW] = ACTIONS(1197), - [anon_sym_Package] = ACTIONS(1140), - [anon_sym_package] = ACTIONS(1140), - [anon_sym_PACKAGE] = ACTIONS(1140), - [anon_sym_Private] = ACTIONS(1140), - [anon_sym_private] = ACTIONS(1140), - [anon_sym_PRIVATE] = ACTIONS(1140), - [anon_sym_Public] = ACTIONS(1140), - [anon_sym_public] = ACTIONS(1140), - [anon_sym_PUBLIC] = ACTIONS(1140), - [anon_sym_Remote] = ACTIONS(1140), - [anon_sym_remote] = ACTIONS(1140), - [anon_sym_REMOTE] = ACTIONS(1140), - [anon_sym_Static] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_STATIC] = ACTIONS(1140), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1200), - [sym__static_type_prefix] = ACTIONS(1203), - }, - [STATE(236)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(237)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(659), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(238)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(667), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(239)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(668), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(240)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(669), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), + [STATE(226)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(841), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [sym_identifier] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -77346,183 +74540,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(61), + [anon_sym_static] = ACTIONS(61), + [anon_sym_STATIC] = ACTIONS(61), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(241)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(674), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), + [STATE(227)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4811), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -77554,106 +74748,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(242)] = { + [STATE(228)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(845), + [sym_path] = STATE(3912), + [sym_statement] = STATE(857), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -77672,54 +74866,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [sym_identifier] = ACTIONS(782), @@ -77855,90 +75049,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(243)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4571), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), + [STATE(229)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(858), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [sym_identifier] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -77970,987 +75164,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(61), + [anon_sym_static] = ACTIONS(61), + [anon_sym_STATIC] = ACTIONS(61), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(244)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3797), - [sym_primary_expression] = STATE(3664), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(245), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(288), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1668), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(245)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1138), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(21), + [STATE(230)] = { + [sym_declaration] = STATE(916), + [sym_import_statement] = STATE(916), + [sym_path] = STATE(3912), + [sym_statement] = STATE(860), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(911), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_include_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_colon_assignment_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(916), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(916), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(916), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(916), + [sym_tag_statement] = STATE(916), + [sym_identifier] = ACTIONS(782), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_let] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(19), + [anon_sym_query] = ACTIONS(19), + [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1486), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(246)] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1672), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Break] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_BREAK] = ACTIONS(1672), - [anon_sym_Case] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_CASE] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Continue] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_CONTINUE] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Default] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_DEFAULT] = ACTIONS(1672), - [anon_sym_Do] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_DO] = ACTIONS(1672), - [anon_sym_Else] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_ELSE] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_For] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_FOR] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_If] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_IF] = ACTIONS(1672), - [anon_sym_Import] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_IMPORT] = ACTIONS(1672), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_INSTANCEOF] = ACTIONS(1672), - [anon_sym_instanceOf] = ACTIONS(1672), - [anon_sym_Interface] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_INTERFACE] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Property] = ACTIONS(1672), - [anon_sym_property] = ACTIONS(1672), - [anon_sym_PROPERTY] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Return] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_RETURN] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [anon_sym_Switch] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_SWITCH] = ACTIONS(1672), - [anon_sym_Throw] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_THROW] = ACTIONS(1672), - [anon_sym_Try] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_TRY] = ACTIONS(1672), - [anon_sym_Var] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_VAR] = ACTIONS(1672), - [anon_sym_While] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_WHILE] = ACTIONS(1672), - [anon_sym_With] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_WITH] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - [sym_cf_comment] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), - }, - [STATE(247)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Else] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_ELSE] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1674), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(15), + [anon_sym_set] = ACTIONS(15), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(53), + [anon_sym_export] = ACTIONS(15), + [anon_sym_QueryExecute] = ACTIONS(55), + [anon_sym_queryexecute] = ACTIONS(55), + [anon_sym_QUERYEXECUTE] = ACTIONS(55), + [anon_sym_queryExecute] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), + [anon_sym_Abstract] = ACTIONS(61), + [anon_sym_abstract] = ACTIONS(61), + [anon_sym_ABSTRACT] = ACTIONS(61), + [anon_sym_Break] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_BREAK] = ACTIONS(63), + [anon_sym_Component] = ACTIONS(65), + [anon_sym_component] = ACTIONS(65), + [anon_sym_COMPONENT] = ACTIONS(65), + [anon_sym_Continue] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(67), + [anon_sym_CONTINUE] = ACTIONS(67), + [anon_sym_Debugger] = ACTIONS(69), + [anon_sym_debugger] = ACTIONS(69), + [anon_sym_DEBUGGER] = ACTIONS(69), + [anon_sym_Do] = ACTIONS(71), + [anon_sym_do] = ACTIONS(71), + [anon_sym_DO] = ACTIONS(71), + [anon_sym_Final] = ACTIONS(73), + [anon_sym_final] = ACTIONS(73), + [anon_sym_FINAL] = ACTIONS(73), + [anon_sym_For] = ACTIONS(75), + [anon_sym_for] = ACTIONS(75), + [anon_sym_FOR] = ACTIONS(75), + [anon_sym_Function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(77), + [anon_sym_FUNCTION] = ACTIONS(77), + [anon_sym_If] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_IF] = ACTIONS(79), + [anon_sym_Import] = ACTIONS(149), + [anon_sym_import] = ACTIONS(149), + [anon_sym_IMPORT] = ACTIONS(149), + [anon_sym_Include] = ACTIONS(83), + [anon_sym_include] = ACTIONS(83), + [anon_sym_INCLUDE] = ACTIONS(83), + [anon_sym_Interface] = ACTIONS(85), + [anon_sym_interface] = ACTIONS(85), + [anon_sym_INTERFACE] = ACTIONS(85), + [anon_sym_New] = ACTIONS(87), + [anon_sym_new] = ACTIONS(87), + [anon_sym_NEW] = ACTIONS(87), + [anon_sym_Package] = ACTIONS(89), + [anon_sym_package] = ACTIONS(89), + [anon_sym_PACKAGE] = ACTIONS(89), + [anon_sym_Private] = ACTIONS(89), + [anon_sym_private] = ACTIONS(89), + [anon_sym_PRIVATE] = ACTIONS(89), + [anon_sym_Public] = ACTIONS(89), + [anon_sym_public] = ACTIONS(89), + [anon_sym_PUBLIC] = ACTIONS(89), + [anon_sym_Remote] = ACTIONS(89), + [anon_sym_remote] = ACTIONS(89), + [anon_sym_REMOTE] = ACTIONS(89), + [anon_sym_Return] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_RETURN] = ACTIONS(91), + [anon_sym_Static] = ACTIONS(61), + [anon_sym_static] = ACTIONS(61), + [anon_sym_STATIC] = ACTIONS(61), + [anon_sym_Switch] = ACTIONS(95), + [anon_sym_switch] = ACTIONS(95), + [anon_sym_SWITCH] = ACTIONS(95), + [anon_sym_Throw] = ACTIONS(97), + [anon_sym_throw] = ACTIONS(97), + [anon_sym_THROW] = ACTIONS(97), + [anon_sym_Try] = ACTIONS(99), + [anon_sym_try] = ACTIONS(99), + [anon_sym_TRY] = ACTIONS(99), + [anon_sym_Var] = ACTIONS(101), + [anon_sym_var] = ACTIONS(101), + [anon_sym_VAR] = ACTIONS(101), + [anon_sym_While] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_WHILE] = ACTIONS(103), + [anon_sym_With] = ACTIONS(105), + [anon_sym_with] = ACTIONS(105), + [anon_sym_WITH] = ACTIONS(105), + [sym_cf_comment] = ACTIONS(107), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(248)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3797), - [sym_primary_expression] = STATE(3664), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(253), - [sym_subscript_expression] = STATE(2397), + [STATE(231)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3861), + [sym_primary_expression] = STATE(3731), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(233), + [sym_subscript_expression] = STATE(2428), [sym_assignment_expression] = STATE(291), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1676), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1608), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1610), [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -79065,9 +75635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -79096,20 +75666,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1678), + [sym__automatic_semicolon] = ACTIONS(1610), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(249)] = { + [STATE(232)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(863), + [sym_path] = STATE(3912), + [sym_statement] = STATE(912), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -79128,54 +75698,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [sym_identifier] = ACTIONS(782), @@ -79311,682 +75881,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(250)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4701), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(251)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(1179), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(252)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3650), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1100), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(253)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1144), + [STATE(233)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1137), [sym_identifier] = ACTIONS(598), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1484), [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), @@ -80104,9 +76050,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -80135,21 +76081,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1445), + [sym__automatic_semicolon] = ACTIONS(1484), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1456), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(254)] = { + [STATE(234)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(864), + [sym_path] = STATE(3912), + [sym_statement] = STATE(923), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -80168,54 +76114,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [sym_identifier] = ACTIONS(782), @@ -80351,221 +76297,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(255)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3671), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3627), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(735), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(1140), - [anon_sym_query] = ACTIONS(1140), - [anon_sym_QUERY] = ACTIONS(1140), - [anon_sym_EQ_GT] = ACTIONS(1659), - [anon_sym_DASH_GT] = ACTIONS(1659), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1661), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(1149), - [aux_sym_unary_operator_token1] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1155), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1158), - [aux_sym_number_token2] = ACTIONS(1158), - [anon_sym_This] = ACTIONS(1161), - [anon_sym_this] = ACTIONS(1161), - [anon_sym_THIS] = ACTIONS(1161), - [anon_sym_Super] = ACTIONS(1164), - [anon_sym_super] = ACTIONS(1164), - [anon_sym_SUPER] = ACTIONS(1164), - [anon_sym_True] = ACTIONS(1167), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_TRUE] = ACTIONS(1167), - [anon_sym_False] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [anon_sym_FALSE] = ACTIONS(1170), - [anon_sym_Null] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_Undefined] = ACTIONS(1176), - [anon_sym_undefined] = ACTIONS(1176), - [anon_sym_UNDEFINED] = ACTIONS(1176), - [anon_sym_get] = ACTIONS(1140), - [anon_sym_set] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1179), - [sym_hash_empty] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1140), - [anon_sym_QueryExecute] = ACTIONS(1185), - [anon_sym_queryexecute] = ACTIONS(1185), - [anon_sym_QUERYEXECUTE] = ACTIONS(1185), - [anon_sym_queryExecute] = ACTIONS(1185), - [anon_sym_BQUOTE] = ACTIONS(1188), - [anon_sym_Abstract] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_ABSTRACT] = ACTIONS(1140), - [anon_sym_Component] = ACTIONS(1663), - [anon_sym_component] = ACTIONS(1663), - [anon_sym_COMPONENT] = ACTIONS(1663), - [anon_sym_Debugger] = ACTIONS(1140), - [anon_sym_debugger] = ACTIONS(1140), - [anon_sym_DEBUGGER] = ACTIONS(1140), - [anon_sym_Final] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_FINAL] = ACTIONS(1140), - [anon_sym_Function] = ACTIONS(1194), - [anon_sym_function] = ACTIONS(1194), - [anon_sym_FUNCTION] = ACTIONS(1194), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(1140), - [anon_sym_include] = ACTIONS(1140), - [anon_sym_INCLUDE] = ACTIONS(1140), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(1197), - [anon_sym_new] = ACTIONS(1197), - [anon_sym_NEW] = ACTIONS(1197), - [anon_sym_Package] = ACTIONS(1140), - [anon_sym_package] = ACTIONS(1140), - [anon_sym_PACKAGE] = ACTIONS(1140), - [anon_sym_Private] = ACTIONS(1140), - [anon_sym_private] = ACTIONS(1140), - [anon_sym_PRIVATE] = ACTIONS(1140), - [anon_sym_Public] = ACTIONS(1140), - [anon_sym_public] = ACTIONS(1140), - [anon_sym_PUBLIC] = ACTIONS(1140), - [anon_sym_Remote] = ACTIONS(1140), - [anon_sym_remote] = ACTIONS(1140), - [anon_sym_REMOTE] = ACTIONS(1140), - [anon_sym_Static] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_STATIC] = ACTIONS(1140), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1200), - [sym__static_type_prefix] = ACTIONS(1203), - }, - [STATE(256)] = { + [STATE(235)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(865), + [sym_path] = STATE(3912), + [sym_statement] = STATE(872), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -80584,54 +76322,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [sym_identifier] = ACTIONS(782), @@ -80767,13 +76505,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(257)] = { + [STATE(236)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(818), + [sym_path] = STATE(3912), + [sym_statement] = STATE(873), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -80792,54 +76530,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [sym_identifier] = ACTIONS(782), @@ -80975,506 +76713,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(258)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(259)] = { - [sym_declaration] = STATE(712), - [sym_import_statement] = STATE(712), - [sym_path] = STATE(3862), - [sym_statement] = STATE(581), - [sym_expression_statement] = STATE(712), - [sym_variable_declaration] = STATE(654), - [sym_statement_block] = STATE(712), - [sym_if_statement] = STATE(712), - [sym_switch_statement] = STATE(712), - [sym_for_statement] = STATE(712), - [sym_for_in_statement] = STATE(712), - [sym_while_statement] = STATE(712), - [sym_do_statement] = STATE(712), - [sym_try_statement] = STATE(712), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(712), - [sym_continue_statement] = STATE(712), - [sym_debugger_statement] = STATE(712), - [sym_return_statement] = STATE(712), - [sym_throw_statement] = STATE(712), - [sym_include_statement] = STATE(712), - [sym_empty_statement] = STATE(712), - [sym_colon_assignment_statement] = STATE(712), - [sym_labeled_statement] = STATE(712), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(712), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3852), - [sym_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4876), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(712), - [sym__tag_call] = STATE(4957), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2867), - [sym_hash_expression] = STATE(2867), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(712), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(712), - [sym_tag_statement] = STATE(712), - [sym_identifier] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1524), - [anon_sym_query] = ACTIONS(1524), - [anon_sym_QUERY] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1522), - [anon_sym_set] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_QueryExecute] = ACTIONS(1528), - [anon_sym_queryexecute] = ACTIONS(1528), - [anon_sym_QUERYEXECUTE] = ACTIONS(1528), - [anon_sym_queryExecute] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1530), - [anon_sym_Abstract] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_ABSTRACT] = ACTIONS(1532), - [anon_sym_Break] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_BREAK] = ACTIONS(1534), - [anon_sym_Component] = ACTIONS(1536), - [anon_sym_component] = ACTIONS(1536), - [anon_sym_COMPONENT] = ACTIONS(1536), - [anon_sym_Continue] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_CONTINUE] = ACTIONS(1538), - [anon_sym_Debugger] = ACTIONS(1540), - [anon_sym_debugger] = ACTIONS(1540), - [anon_sym_DEBUGGER] = ACTIONS(1540), - [anon_sym_Do] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_DO] = ACTIONS(1542), - [anon_sym_Final] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_FINAL] = ACTIONS(1544), - [anon_sym_For] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_FOR] = ACTIONS(1546), - [anon_sym_Function] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_FUNCTION] = ACTIONS(1548), - [anon_sym_If] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_IF] = ACTIONS(1550), - [anon_sym_Import] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_IMPORT] = ACTIONS(1552), - [anon_sym_Include] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_INCLUDE] = ACTIONS(1554), - [anon_sym_Interface] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_INTERFACE] = ACTIONS(1556), - [anon_sym_New] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_NEW] = ACTIONS(1558), - [anon_sym_Package] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_PACKAGE] = ACTIONS(1560), - [anon_sym_Private] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_PRIVATE] = ACTIONS(1560), - [anon_sym_Public] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_PUBLIC] = ACTIONS(1560), - [anon_sym_Remote] = ACTIONS(1560), - [anon_sym_remote] = ACTIONS(1560), - [anon_sym_REMOTE] = ACTIONS(1560), - [anon_sym_Return] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_RETURN] = ACTIONS(1562), - [anon_sym_Static] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_STATIC] = ACTIONS(1532), - [anon_sym_Switch] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_SWITCH] = ACTIONS(1564), - [anon_sym_Throw] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_THROW] = ACTIONS(1566), - [anon_sym_Try] = ACTIONS(1568), - [anon_sym_try] = ACTIONS(1568), - [anon_sym_TRY] = ACTIONS(1568), - [anon_sym_Var] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [anon_sym_VAR] = ACTIONS(1570), - [anon_sym_While] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_WHILE] = ACTIONS(1572), - [anon_sym_With] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_WITH] = ACTIONS(1574), - [sym_cf_comment] = ACTIONS(1576), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(260)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4547), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), + [STATE(237)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(577), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -81506,106 +76828,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(261)] = { + [STATE(238)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(871), + [sym_path] = STATE(3912), + [sym_statement] = STATE(879), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -81624,54 +76946,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [sym_identifier] = ACTIONS(782), @@ -81807,132 +77129,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(262)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3650), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), + [STATE(239)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3861), + [sym_primary_expression] = STATE(3731), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(240), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(288), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1100), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), @@ -81956,357 +77277,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(1179), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1676), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(263)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1686), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Else] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_ELSE] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(1688), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [STATE(240)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1437), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(1448), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(264)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(872), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [sym_identifier] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(9), + [STATE(241)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4191), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -82338,155 +77660,779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(61), - [anon_sym_static] = ACTIONS(61), - [anon_sym_STATIC] = ACTIONS(61), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(265)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3650), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(242)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4233), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(243)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4246), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(244)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4247), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(245)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -82580,149 +78526,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(1179), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(266)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(873), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [sym_identifier] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(9), + [STATE(246)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4295), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -82754,183 +78700,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(61), - [anon_sym_static] = ACTIONS(61), - [anon_sym_STATIC] = ACTIONS(61), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(267)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(915), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [sym_identifier] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(9), + [STATE(247)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4310), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -82962,391 +78908,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(61), - [anon_sym_static] = ACTIONS(61), - [anon_sym_STATIC] = ACTIONS(61), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(268)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3797), - [sym_primary_expression] = STATE(3664), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(215), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(289), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1690), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(21), + [STATE(248)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4324), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1692), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(269)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(877), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [sym_identifier] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(9), + [STATE(249)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4325), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -83378,599 +79324,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(61), - [anon_sym_static] = ACTIONS(61), - [anon_sym_STATIC] = ACTIONS(61), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(270)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3797), - [sym_primary_expression] = STATE(3664), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(273), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(290), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(21), + [STATE(250)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4327), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1696), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(271)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Else] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_ELSE] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1083), - [anon_sym_instanceof] = ACTIONS(1083), - [anon_sym_INSTANCEOF] = ACTIONS(1083), - [anon_sym_instanceOf] = ACTIONS(1083), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1698), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [STATE(251)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4334), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(272)] = { - [sym_declaration] = STATE(4225), - [sym_import_statement] = STATE(4225), - [sym_path] = STATE(3863), - [sym_statement] = STATE(4076), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4235), - [sym_statement_block] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_switch_statement] = STATE(4225), - [sym_for_statement] = STATE(4225), - [sym_for_in_statement] = STATE(4225), - [sym_while_statement] = STATE(4225), - [sym_do_statement] = STATE(4225), - [sym_try_statement] = STATE(4225), - [sym_with_statement] = STATE(4225), - [sym_break_statement] = STATE(4225), - [sym_continue_statement] = STATE(4225), - [sym_debugger_statement] = STATE(4225), - [sym_return_statement] = STATE(4225), - [sym_throw_statement] = STATE(4225), - [sym_include_statement] = STATE(4225), - [sym_empty_statement] = STATE(4225), - [sym_colon_assignment_statement] = STATE(4225), - [sym_labeled_statement] = STATE(4225), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(4225), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3854), - [sym_function_declaration] = STATE(4235), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(4225), - [sym__tag_call] = STATE(4910), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(4225), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(4225), - [sym_tag_statement] = STATE(4225), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1580), + [STATE(252)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4335), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(1586), - [anon_sym_query] = ACTIONS(1586), - [anon_sym_QUERY] = ACTIONS(1586), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -84002,363 +79948,779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(1584), - [anon_sym_set] = ACTIONS(1584), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(1584), - [anon_sym_QueryExecute] = ACTIONS(1590), - [anon_sym_queryexecute] = ACTIONS(1590), - [anon_sym_QUERYEXECUTE] = ACTIONS(1590), - [anon_sym_queryExecute] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1592), - [anon_sym_Abstract] = ACTIONS(1594), - [anon_sym_abstract] = ACTIONS(1594), - [anon_sym_ABSTRACT] = ACTIONS(1594), - [anon_sym_Break] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_BREAK] = ACTIONS(1596), - [anon_sym_Component] = ACTIONS(1598), - [anon_sym_component] = ACTIONS(1598), - [anon_sym_COMPONENT] = ACTIONS(1598), - [anon_sym_Continue] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_CONTINUE] = ACTIONS(1600), - [anon_sym_Debugger] = ACTIONS(1602), - [anon_sym_debugger] = ACTIONS(1602), - [anon_sym_DEBUGGER] = ACTIONS(1602), - [anon_sym_Do] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_DO] = ACTIONS(1604), - [anon_sym_Final] = ACTIONS(1606), - [anon_sym_final] = ACTIONS(1606), - [anon_sym_FINAL] = ACTIONS(1606), - [anon_sym_For] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_FOR] = ACTIONS(1608), - [anon_sym_Function] = ACTIONS(1610), - [anon_sym_function] = ACTIONS(1610), - [anon_sym_FUNCTION] = ACTIONS(1610), - [anon_sym_If] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_IF] = ACTIONS(1612), - [anon_sym_Import] = ACTIONS(1614), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_IMPORT] = ACTIONS(1614), - [anon_sym_Include] = ACTIONS(1616), - [anon_sym_include] = ACTIONS(1616), - [anon_sym_INCLUDE] = ACTIONS(1616), - [anon_sym_Interface] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_INTERFACE] = ACTIONS(1618), - [anon_sym_New] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_NEW] = ACTIONS(1620), - [anon_sym_Package] = ACTIONS(1622), - [anon_sym_package] = ACTIONS(1622), - [anon_sym_PACKAGE] = ACTIONS(1622), - [anon_sym_Private] = ACTIONS(1622), - [anon_sym_private] = ACTIONS(1622), - [anon_sym_PRIVATE] = ACTIONS(1622), - [anon_sym_Public] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_PUBLIC] = ACTIONS(1622), - [anon_sym_Remote] = ACTIONS(1622), - [anon_sym_remote] = ACTIONS(1622), - [anon_sym_REMOTE] = ACTIONS(1622), - [anon_sym_Return] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_RETURN] = ACTIONS(1624), - [anon_sym_Static] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_STATIC] = ACTIONS(1594), - [anon_sym_Switch] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_SWITCH] = ACTIONS(1626), - [anon_sym_Throw] = ACTIONS(1628), - [anon_sym_throw] = ACTIONS(1628), - [anon_sym_THROW] = ACTIONS(1628), - [anon_sym_Try] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_TRY] = ACTIONS(1630), - [anon_sym_Var] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_VAR] = ACTIONS(1632), - [anon_sym_While] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_WHILE] = ACTIONS(1634), - [anon_sym_With] = ACTIONS(1636), - [anon_sym_with] = ACTIONS(1636), - [anon_sym_WITH] = ACTIONS(1636), - [sym_cf_comment] = ACTIONS(1638), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(273)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(21), + [STATE(253)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4337), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1476), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(274)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3691), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3639), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2500), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(254)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4345), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(255)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(715), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(256)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_let] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -84378,7 +80740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), - [sym__new_type_prefix] = ACTIONS(1042), + [sym__new_type_prefix] = ACTIONS(1040), [anon_sym_PLUS_EQ] = ACTIONS(432), [anon_sym_DASH_EQ] = ACTIONS(432), [anon_sym_STAR_EQ] = ACTIONS(432), @@ -84452,149 +80814,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(1152), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(1044), - [anon_sym_component] = ACTIONS(1044), - [anon_sym_COMPONENT] = ACTIONS(1044), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(275)] = { - [sym_declaration] = STATE(916), - [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(819), - [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), - [sym_statement_block] = STATE(916), - [sym_if_statement] = STATE(916), - [sym_switch_statement] = STATE(916), - [sym_for_statement] = STATE(916), - [sym_for_in_statement] = STATE(916), - [sym_while_statement] = STATE(916), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(916), - [sym_with_statement] = STATE(916), - [sym_break_statement] = STATE(916), - [sym_continue_statement] = STATE(916), - [sym_debugger_statement] = STATE(916), - [sym_return_statement] = STATE(916), - [sym_throw_statement] = STATE(916), - [sym_include_statement] = STATE(916), - [sym_empty_statement] = STATE(916), - [sym_colon_assignment_statement] = STATE(916), - [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), - [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), - [sym_query_tag] = STATE(916), - [sym_tag_statement] = STATE(916), - [sym_identifier] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(9), + [STATE(257)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(724), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(19), - [anon_sym_query] = ACTIONS(19), - [anon_sym_QUERY] = ACTIONS(19), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), @@ -84626,314 +80988,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(15), - [anon_sym_set] = ACTIONS(15), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(53), - [anon_sym_export] = ACTIONS(15), - [anon_sym_QueryExecute] = ACTIONS(55), - [anon_sym_queryexecute] = ACTIONS(55), - [anon_sym_QUERYEXECUTE] = ACTIONS(55), - [anon_sym_queryExecute] = ACTIONS(55), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(59), - [anon_sym_Abstract] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(61), - [anon_sym_ABSTRACT] = ACTIONS(61), - [anon_sym_Break] = ACTIONS(63), - [anon_sym_break] = ACTIONS(63), - [anon_sym_BREAK] = ACTIONS(63), - [anon_sym_Component] = ACTIONS(65), - [anon_sym_component] = ACTIONS(65), - [anon_sym_COMPONENT] = ACTIONS(65), - [anon_sym_Continue] = ACTIONS(67), - [anon_sym_continue] = ACTIONS(67), - [anon_sym_CONTINUE] = ACTIONS(67), - [anon_sym_Debugger] = ACTIONS(69), - [anon_sym_debugger] = ACTIONS(69), - [anon_sym_DEBUGGER] = ACTIONS(69), - [anon_sym_Do] = ACTIONS(71), - [anon_sym_do] = ACTIONS(71), - [anon_sym_DO] = ACTIONS(71), - [anon_sym_Final] = ACTIONS(73), - [anon_sym_final] = ACTIONS(73), - [anon_sym_FINAL] = ACTIONS(73), - [anon_sym_For] = ACTIONS(75), - [anon_sym_for] = ACTIONS(75), - [anon_sym_FOR] = ACTIONS(75), - [anon_sym_Function] = ACTIONS(77), - [anon_sym_function] = ACTIONS(77), - [anon_sym_FUNCTION] = ACTIONS(77), - [anon_sym_If] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_IF] = ACTIONS(79), - [anon_sym_Import] = ACTIONS(149), - [anon_sym_import] = ACTIONS(149), - [anon_sym_IMPORT] = ACTIONS(149), - [anon_sym_Include] = ACTIONS(83), - [anon_sym_include] = ACTIONS(83), - [anon_sym_INCLUDE] = ACTIONS(83), - [anon_sym_Interface] = ACTIONS(85), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_INTERFACE] = ACTIONS(85), - [anon_sym_New] = ACTIONS(87), - [anon_sym_new] = ACTIONS(87), - [anon_sym_NEW] = ACTIONS(87), - [anon_sym_Package] = ACTIONS(89), - [anon_sym_package] = ACTIONS(89), - [anon_sym_PACKAGE] = ACTIONS(89), - [anon_sym_Private] = ACTIONS(89), - [anon_sym_private] = ACTIONS(89), - [anon_sym_PRIVATE] = ACTIONS(89), - [anon_sym_Public] = ACTIONS(89), - [anon_sym_public] = ACTIONS(89), - [anon_sym_PUBLIC] = ACTIONS(89), - [anon_sym_Remote] = ACTIONS(89), - [anon_sym_remote] = ACTIONS(89), - [anon_sym_REMOTE] = ACTIONS(89), - [anon_sym_Return] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_RETURN] = ACTIONS(91), - [anon_sym_Static] = ACTIONS(61), - [anon_sym_static] = ACTIONS(61), - [anon_sym_STATIC] = ACTIONS(61), - [anon_sym_Switch] = ACTIONS(95), - [anon_sym_switch] = ACTIONS(95), - [anon_sym_SWITCH] = ACTIONS(95), - [anon_sym_Throw] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(97), - [anon_sym_THROW] = ACTIONS(97), - [anon_sym_Try] = ACTIONS(99), - [anon_sym_try] = ACTIONS(99), - [anon_sym_TRY] = ACTIONS(99), - [anon_sym_Var] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_VAR] = ACTIONS(101), - [anon_sym_While] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_WHILE] = ACTIONS(103), - [anon_sym_With] = ACTIONS(105), - [anon_sym_with] = ACTIONS(105), - [anon_sym_WITH] = ACTIONS(105), - [sym_cf_comment] = ACTIONS(107), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(276)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1686), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Else] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_ELSE] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(1684), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [STATE(258)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(586), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(277)] = { + [STATE(259)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(587), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(260)] = { [sym_declaration] = STATE(916), [sym_import_statement] = STATE(916), - [sym_path] = STATE(3861), - [sym_statement] = STATE(853), + [sym_path] = STATE(3912), + [sym_statement] = STATE(834), [sym_expression_statement] = STATE(916), - [sym_variable_declaration] = STATE(908), + [sym_variable_declaration] = STATE(911), [sym_statement_block] = STATE(916), [sym_if_statement] = STATE(916), [sym_switch_statement] = STATE(916), @@ -84952,54 +81522,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_empty_statement] = STATE(916), [sym_colon_assignment_statement] = STATE(916), [sym_labeled_statement] = STATE(916), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), [sym_component] = STATE(916), - [sym_function_expression] = STATE(2579), - [sym_access_type] = STATE(3851), - [sym_function_declaration] = STATE(908), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2294), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4950), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3903), + [sym_function_declaration] = STATE(911), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2334), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4839), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), [sym_tag_call_statement] = STATE(916), - [sym__tag_call] = STATE(4843), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2783), - [sym_hash_expression] = STATE(2783), - [sym_template_string] = STATE(2579), + [sym__tag_call] = STATE(5010), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3016), + [sym_hash_expression] = STATE(3016), + [sym_template_string] = STATE(2553), [sym_cfml_template] = STATE(916), - [sym_query_expression] = STATE(2504), + [sym_query_expression] = STATE(2598), [sym_query_tag] = STATE(916), [sym_tag_statement] = STATE(916), [sym_identifier] = ACTIONS(782), @@ -85135,2166 +81705,2212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(278)] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_Query] = ACTIONS(1702), - [anon_sym_query] = ACTIONS(1702), - [anon_sym_QUERY] = ACTIONS(1702), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_TILDE] = ACTIONS(1700), - [aux_sym_unary_operator_token1] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1702), - [aux_sym_number_token2] = ACTIONS(1702), - [anon_sym_This] = ACTIONS(1702), - [anon_sym_this] = ACTIONS(1702), - [anon_sym_THIS] = ACTIONS(1702), - [anon_sym_Super] = ACTIONS(1702), - [anon_sym_super] = ACTIONS(1702), - [anon_sym_SUPER] = ACTIONS(1702), - [anon_sym_True] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_TRUE] = ACTIONS(1702), - [anon_sym_False] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [anon_sym_FALSE] = ACTIONS(1702), - [anon_sym_Null] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1702), - [anon_sym_NULL] = ACTIONS(1702), - [anon_sym_Undefined] = ACTIONS(1702), - [anon_sym_undefined] = ACTIONS(1702), - [anon_sym_UNDEFINED] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [sym_hash_empty] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_QueryExecute] = ACTIONS(1702), - [anon_sym_queryexecute] = ACTIONS(1702), - [anon_sym_QUERYEXECUTE] = ACTIONS(1702), - [anon_sym_queryExecute] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1700), - [anon_sym_Abstract] = ACTIONS(1702), - [anon_sym_abstract] = ACTIONS(1702), - [anon_sym_ABSTRACT] = ACTIONS(1702), - [anon_sym_Break] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_BREAK] = ACTIONS(1702), - [anon_sym_Case] = ACTIONS(1702), - [anon_sym_case] = ACTIONS(1702), - [anon_sym_CASE] = ACTIONS(1702), - [anon_sym_Component] = ACTIONS(1702), - [anon_sym_component] = ACTIONS(1702), - [anon_sym_COMPONENT] = ACTIONS(1702), - [anon_sym_Continue] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_CONTINUE] = ACTIONS(1702), - [anon_sym_Debugger] = ACTIONS(1702), - [anon_sym_debugger] = ACTIONS(1702), - [anon_sym_DEBUGGER] = ACTIONS(1702), - [anon_sym_Default] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_DEFAULT] = ACTIONS(1702), - [anon_sym_Do] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_DO] = ACTIONS(1702), - [anon_sym_Else] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_ELSE] = ACTIONS(1702), - [anon_sym_Final] = ACTIONS(1702), - [anon_sym_final] = ACTIONS(1702), - [anon_sym_FINAL] = ACTIONS(1702), - [anon_sym_For] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_FOR] = ACTIONS(1702), - [anon_sym_Function] = ACTIONS(1702), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_FUNCTION] = ACTIONS(1702), - [anon_sym_If] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_IF] = ACTIONS(1702), - [anon_sym_Import] = ACTIONS(1702), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_IMPORT] = ACTIONS(1702), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_Include] = ACTIONS(1702), - [anon_sym_include] = ACTIONS(1702), - [anon_sym_INCLUDE] = ACTIONS(1702), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [anon_sym_Interface] = ACTIONS(1702), - [anon_sym_interface] = ACTIONS(1702), - [anon_sym_INTERFACE] = ACTIONS(1702), - [anon_sym_New] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_NEW] = ACTIONS(1702), - [anon_sym_Package] = ACTIONS(1702), - [anon_sym_package] = ACTIONS(1702), - [anon_sym_PACKAGE] = ACTIONS(1702), - [anon_sym_Private] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_PRIVATE] = ACTIONS(1702), - [anon_sym_Property] = ACTIONS(1702), - [anon_sym_property] = ACTIONS(1702), - [anon_sym_PROPERTY] = ACTIONS(1702), - [anon_sym_Public] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_PUBLIC] = ACTIONS(1702), - [anon_sym_Remote] = ACTIONS(1702), - [anon_sym_remote] = ACTIONS(1702), - [anon_sym_REMOTE] = ACTIONS(1702), - [anon_sym_Return] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_RETURN] = ACTIONS(1702), - [anon_sym_Static] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_STATIC] = ACTIONS(1702), - [anon_sym_Switch] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_SWITCH] = ACTIONS(1702), - [anon_sym_Throw] = ACTIONS(1702), - [anon_sym_throw] = ACTIONS(1702), - [anon_sym_THROW] = ACTIONS(1702), - [anon_sym_Try] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_TRY] = ACTIONS(1702), - [anon_sym_Var] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_VAR] = ACTIONS(1702), - [anon_sym_While] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_WHILE] = ACTIONS(1702), - [anon_sym_With] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_WITH] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(1704), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym_cf_comment] = ACTIONS(1700), - [sym__java_block_open] = ACTIONS(1700), - [sym__static_type_prefix] = ACTIONS(1700), + [STATE(261)] = { + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_let] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_Query] = ACTIONS(1684), + [anon_sym_query] = ACTIONS(1684), + [anon_sym_QUERY] = ACTIONS(1684), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1682), + [aux_sym_unary_operator_token1] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1684), + [aux_sym_number_token2] = ACTIONS(1684), + [anon_sym_This] = ACTIONS(1684), + [anon_sym_this] = ACTIONS(1684), + [anon_sym_THIS] = ACTIONS(1684), + [anon_sym_Super] = ACTIONS(1684), + [anon_sym_super] = ACTIONS(1684), + [anon_sym_SUPER] = ACTIONS(1684), + [anon_sym_True] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1684), + [anon_sym_TRUE] = ACTIONS(1684), + [anon_sym_False] = ACTIONS(1684), + [anon_sym_false] = ACTIONS(1684), + [anon_sym_FALSE] = ACTIONS(1684), + [anon_sym_Null] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1684), + [anon_sym_Undefined] = ACTIONS(1684), + [anon_sym_undefined] = ACTIONS(1684), + [anon_sym_UNDEFINED] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1684), + [anon_sym_set] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1684), + [sym_hash_empty] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1684), + [anon_sym_QueryExecute] = ACTIONS(1684), + [anon_sym_queryexecute] = ACTIONS(1684), + [anon_sym_QUERYEXECUTE] = ACTIONS(1684), + [anon_sym_queryExecute] = ACTIONS(1684), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1682), + [anon_sym_Abstract] = ACTIONS(1684), + [anon_sym_abstract] = ACTIONS(1684), + [anon_sym_ABSTRACT] = ACTIONS(1684), + [anon_sym_Break] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_BREAK] = ACTIONS(1684), + [anon_sym_Case] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1684), + [anon_sym_CASE] = ACTIONS(1684), + [anon_sym_Component] = ACTIONS(1684), + [anon_sym_component] = ACTIONS(1684), + [anon_sym_COMPONENT] = ACTIONS(1684), + [anon_sym_Continue] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_CONTINUE] = ACTIONS(1684), + [anon_sym_Debugger] = ACTIONS(1684), + [anon_sym_debugger] = ACTIONS(1684), + [anon_sym_DEBUGGER] = ACTIONS(1684), + [anon_sym_Default] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_DEFAULT] = ACTIONS(1684), + [anon_sym_Do] = ACTIONS(1684), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_DO] = ACTIONS(1684), + [anon_sym_Else] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1684), + [anon_sym_ELSE] = ACTIONS(1684), + [anon_sym_Final] = ACTIONS(1684), + [anon_sym_final] = ACTIONS(1684), + [anon_sym_FINAL] = ACTIONS(1684), + [anon_sym_For] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_FOR] = ACTIONS(1684), + [anon_sym_Function] = ACTIONS(1684), + [anon_sym_function] = ACTIONS(1684), + [anon_sym_FUNCTION] = ACTIONS(1684), + [anon_sym_If] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_IF] = ACTIONS(1684), + [anon_sym_Import] = ACTIONS(1684), + [anon_sym_import] = ACTIONS(1684), + [anon_sym_IMPORT] = ACTIONS(1684), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_Include] = ACTIONS(1684), + [anon_sym_include] = ACTIONS(1684), + [anon_sym_INCLUDE] = ACTIONS(1684), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [anon_sym_Interface] = ACTIONS(1684), + [anon_sym_interface] = ACTIONS(1684), + [anon_sym_INTERFACE] = ACTIONS(1684), + [anon_sym_New] = ACTIONS(1684), + [anon_sym_new] = ACTIONS(1684), + [anon_sym_NEW] = ACTIONS(1684), + [anon_sym_Package] = ACTIONS(1684), + [anon_sym_package] = ACTIONS(1684), + [anon_sym_PACKAGE] = ACTIONS(1684), + [anon_sym_Private] = ACTIONS(1684), + [anon_sym_private] = ACTIONS(1684), + [anon_sym_PRIVATE] = ACTIONS(1684), + [anon_sym_Property] = ACTIONS(1684), + [anon_sym_property] = ACTIONS(1684), + [anon_sym_PROPERTY] = ACTIONS(1684), + [anon_sym_Public] = ACTIONS(1684), + [anon_sym_public] = ACTIONS(1684), + [anon_sym_PUBLIC] = ACTIONS(1684), + [anon_sym_Remote] = ACTIONS(1684), + [anon_sym_remote] = ACTIONS(1684), + [anon_sym_REMOTE] = ACTIONS(1684), + [anon_sym_Return] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_RETURN] = ACTIONS(1684), + [anon_sym_Static] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_STATIC] = ACTIONS(1684), + [anon_sym_Switch] = ACTIONS(1684), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_SWITCH] = ACTIONS(1684), + [anon_sym_Throw] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(1684), + [anon_sym_THROW] = ACTIONS(1684), + [anon_sym_Try] = ACTIONS(1684), + [anon_sym_try] = ACTIONS(1684), + [anon_sym_TRY] = ACTIONS(1684), + [anon_sym_Var] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1684), + [anon_sym_VAR] = ACTIONS(1684), + [anon_sym_While] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_WHILE] = ACTIONS(1684), + [anon_sym_With] = ACTIONS(1684), + [anon_sym_with] = ACTIONS(1684), + [anon_sym_WITH] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1690), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym_cf_comment] = ACTIONS(1682), + [sym__java_block_open] = ACTIONS(1682), + [sym__static_type_prefix] = ACTIONS(1682), }, - [STATE(279)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Else] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_ELSE] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1706), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [STATE(262)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(601), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(280)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1686), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(1708), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [STATE(263)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(607), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(281)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1710), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [STATE(264)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(614), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(282)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1686), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(1684), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [STATE(265)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(615), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(283)] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1672), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Break] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_BREAK] = ACTIONS(1672), - [anon_sym_Case] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_CASE] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Continue] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_CONTINUE] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Default] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_DEFAULT] = ACTIONS(1672), - [anon_sym_Do] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_DO] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_For] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_FOR] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_If] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_IF] = ACTIONS(1672), - [anon_sym_Import] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_IMPORT] = ACTIONS(1672), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_INSTANCEOF] = ACTIONS(1672), - [anon_sym_instanceOf] = ACTIONS(1672), - [anon_sym_Interface] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_INTERFACE] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Property] = ACTIONS(1672), - [anon_sym_property] = ACTIONS(1672), - [anon_sym_PROPERTY] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Return] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_RETURN] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [anon_sym_Switch] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_SWITCH] = ACTIONS(1672), - [anon_sym_Throw] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_THROW] = ACTIONS(1672), - [anon_sym_Try] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_TRY] = ACTIONS(1672), - [anon_sym_Var] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_VAR] = ACTIONS(1672), - [anon_sym_While] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_WHILE] = ACTIONS(1672), - [anon_sym_With] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_WITH] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - [sym_cf_comment] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), + [STATE(266)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(616), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(284)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1083), - [anon_sym_instanceof] = ACTIONS(1083), - [anon_sym_INSTANCEOF] = ACTIONS(1083), - [anon_sym_instanceOf] = ACTIONS(1083), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1712), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [STATE(267)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(622), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(285)] = { - [ts_builtin_sym_end] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_Query] = ACTIONS(1648), - [anon_sym_query] = ACTIONS(1648), - [anon_sym_QUERY] = ACTIONS(1648), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1646), - [aux_sym_unary_operator_token1] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1648), - [aux_sym_number_token2] = ACTIONS(1648), - [anon_sym_This] = ACTIONS(1648), - [anon_sym_this] = ACTIONS(1648), - [anon_sym_THIS] = ACTIONS(1648), - [anon_sym_Super] = ACTIONS(1648), - [anon_sym_super] = ACTIONS(1648), - [anon_sym_SUPER] = ACTIONS(1648), - [anon_sym_True] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_TRUE] = ACTIONS(1648), - [anon_sym_False] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_FALSE] = ACTIONS(1648), - [anon_sym_Null] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_NULL] = ACTIONS(1648), - [anon_sym_Undefined] = ACTIONS(1648), - [anon_sym_undefined] = ACTIONS(1648), - [anon_sym_UNDEFINED] = ACTIONS(1648), - [anon_sym_get] = ACTIONS(1648), - [anon_sym_set] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(1648), - [sym_hash_empty] = ACTIONS(1646), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_QueryExecute] = ACTIONS(1648), - [anon_sym_queryexecute] = ACTIONS(1648), - [anon_sym_QUERYEXECUTE] = ACTIONS(1648), - [anon_sym_queryExecute] = ACTIONS(1648), - [anon_sym_BQUOTE] = ACTIONS(1648), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1646), - [anon_sym_Abstract] = ACTIONS(1648), - [anon_sym_abstract] = ACTIONS(1648), - [anon_sym_ABSTRACT] = ACTIONS(1648), - [anon_sym_Break] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_BREAK] = ACTIONS(1648), - [anon_sym_Case] = ACTIONS(1648), - [anon_sym_case] = ACTIONS(1648), - [anon_sym_CASE] = ACTIONS(1648), - [anon_sym_Component] = ACTIONS(1648), - [anon_sym_component] = ACTIONS(1648), - [anon_sym_COMPONENT] = ACTIONS(1648), - [anon_sym_Continue] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_CONTINUE] = ACTIONS(1648), - [anon_sym_Debugger] = ACTIONS(1648), - [anon_sym_debugger] = ACTIONS(1648), - [anon_sym_DEBUGGER] = ACTIONS(1648), - [anon_sym_Default] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_DEFAULT] = ACTIONS(1648), - [anon_sym_Do] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_DO] = ACTIONS(1648), - [anon_sym_Final] = ACTIONS(1648), - [anon_sym_final] = ACTIONS(1648), - [anon_sym_FINAL] = ACTIONS(1648), - [anon_sym_For] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_FOR] = ACTIONS(1648), - [anon_sym_Function] = ACTIONS(1648), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_FUNCTION] = ACTIONS(1648), - [anon_sym_If] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_IF] = ACTIONS(1648), + [STATE(268)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(623), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), [anon_sym_Import] = ACTIONS(1648), [anon_sym_import] = ACTIONS(1648), [anon_sym_IMPORT] = ACTIONS(1648), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_Include] = ACTIONS(1648), - [anon_sym_include] = ACTIONS(1648), - [anon_sym_INCLUDE] = ACTIONS(1648), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [anon_sym_Interface] = ACTIONS(1648), - [anon_sym_interface] = ACTIONS(1648), - [anon_sym_INTERFACE] = ACTIONS(1648), - [anon_sym_New] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_NEW] = ACTIONS(1648), - [anon_sym_Package] = ACTIONS(1648), - [anon_sym_package] = ACTIONS(1648), - [anon_sym_PACKAGE] = ACTIONS(1648), - [anon_sym_Private] = ACTIONS(1648), - [anon_sym_private] = ACTIONS(1648), - [anon_sym_PRIVATE] = ACTIONS(1648), - [anon_sym_Property] = ACTIONS(1648), - [anon_sym_property] = ACTIONS(1648), - [anon_sym_PROPERTY] = ACTIONS(1648), - [anon_sym_Public] = ACTIONS(1648), - [anon_sym_public] = ACTIONS(1648), - [anon_sym_PUBLIC] = ACTIONS(1648), - [anon_sym_Remote] = ACTIONS(1648), - [anon_sym_remote] = ACTIONS(1648), - [anon_sym_REMOTE] = ACTIONS(1648), - [anon_sym_Return] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_RETURN] = ACTIONS(1648), - [anon_sym_Static] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_STATIC] = ACTIONS(1648), - [anon_sym_Switch] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_SWITCH] = ACTIONS(1648), - [anon_sym_Throw] = ACTIONS(1648), - [anon_sym_throw] = ACTIONS(1648), - [anon_sym_THROW] = ACTIONS(1648), - [anon_sym_Try] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_TRY] = ACTIONS(1648), - [anon_sym_Var] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [anon_sym_VAR] = ACTIONS(1648), - [anon_sym_While] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_WHILE] = ACTIONS(1648), - [anon_sym_With] = ACTIONS(1648), - [anon_sym_with] = ACTIONS(1648), - [anon_sym_WITH] = ACTIONS(1648), - [sym__automatic_semicolon] = ACTIONS(1714), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym_cf_comment] = ACTIONS(1646), - [sym__java_block_open] = ACTIONS(1646), - [sym__static_type_prefix] = ACTIONS(1646), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(286)] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_Query] = ACTIONS(1702), - [anon_sym_query] = ACTIONS(1702), - [anon_sym_QUERY] = ACTIONS(1702), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_TILDE] = ACTIONS(1700), - [aux_sym_unary_operator_token1] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1702), - [aux_sym_number_token2] = ACTIONS(1702), - [anon_sym_This] = ACTIONS(1702), - [anon_sym_this] = ACTIONS(1702), - [anon_sym_THIS] = ACTIONS(1702), - [anon_sym_Super] = ACTIONS(1702), - [anon_sym_super] = ACTIONS(1702), - [anon_sym_SUPER] = ACTIONS(1702), - [anon_sym_True] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_TRUE] = ACTIONS(1702), - [anon_sym_False] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [anon_sym_FALSE] = ACTIONS(1702), - [anon_sym_Null] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1702), - [anon_sym_NULL] = ACTIONS(1702), - [anon_sym_Undefined] = ACTIONS(1702), - [anon_sym_undefined] = ACTIONS(1702), - [anon_sym_UNDEFINED] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [sym_hash_empty] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_QueryExecute] = ACTIONS(1702), - [anon_sym_queryexecute] = ACTIONS(1702), - [anon_sym_QUERYEXECUTE] = ACTIONS(1702), - [anon_sym_queryExecute] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1700), - [anon_sym_Abstract] = ACTIONS(1702), - [anon_sym_abstract] = ACTIONS(1702), - [anon_sym_ABSTRACT] = ACTIONS(1702), - [anon_sym_Break] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_BREAK] = ACTIONS(1702), - [anon_sym_Case] = ACTIONS(1702), - [anon_sym_case] = ACTIONS(1702), - [anon_sym_CASE] = ACTIONS(1702), - [anon_sym_Component] = ACTIONS(1702), - [anon_sym_component] = ACTIONS(1702), - [anon_sym_COMPONENT] = ACTIONS(1702), - [anon_sym_Continue] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_CONTINUE] = ACTIONS(1702), - [anon_sym_Debugger] = ACTIONS(1702), - [anon_sym_debugger] = ACTIONS(1702), - [anon_sym_DEBUGGER] = ACTIONS(1702), - [anon_sym_Default] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_DEFAULT] = ACTIONS(1702), - [anon_sym_Do] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_DO] = ACTIONS(1702), - [anon_sym_Final] = ACTIONS(1702), - [anon_sym_final] = ACTIONS(1702), - [anon_sym_FINAL] = ACTIONS(1702), - [anon_sym_For] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_FOR] = ACTIONS(1702), - [anon_sym_Function] = ACTIONS(1702), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_FUNCTION] = ACTIONS(1702), - [anon_sym_If] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_IF] = ACTIONS(1702), - [anon_sym_Import] = ACTIONS(1702), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_IMPORT] = ACTIONS(1702), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_Include] = ACTIONS(1702), - [anon_sym_include] = ACTIONS(1702), - [anon_sym_INCLUDE] = ACTIONS(1702), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [anon_sym_Interface] = ACTIONS(1702), - [anon_sym_interface] = ACTIONS(1702), - [anon_sym_INTERFACE] = ACTIONS(1702), - [anon_sym_New] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_NEW] = ACTIONS(1702), - [anon_sym_Package] = ACTIONS(1702), - [anon_sym_package] = ACTIONS(1702), - [anon_sym_PACKAGE] = ACTIONS(1702), - [anon_sym_Private] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_PRIVATE] = ACTIONS(1702), - [anon_sym_Property] = ACTIONS(1702), - [anon_sym_property] = ACTIONS(1702), - [anon_sym_PROPERTY] = ACTIONS(1702), - [anon_sym_Public] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_PUBLIC] = ACTIONS(1702), - [anon_sym_Remote] = ACTIONS(1702), - [anon_sym_remote] = ACTIONS(1702), - [anon_sym_REMOTE] = ACTIONS(1702), - [anon_sym_Return] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_RETURN] = ACTIONS(1702), - [anon_sym_Static] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_STATIC] = ACTIONS(1702), - [anon_sym_Switch] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_SWITCH] = ACTIONS(1702), - [anon_sym_Throw] = ACTIONS(1702), - [anon_sym_throw] = ACTIONS(1702), - [anon_sym_THROW] = ACTIONS(1702), - [anon_sym_Try] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_TRY] = ACTIONS(1702), - [anon_sym_Var] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_VAR] = ACTIONS(1702), - [anon_sym_While] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_WHILE] = ACTIONS(1702), - [anon_sym_With] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_WITH] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(1716), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym_cf_comment] = ACTIONS(1700), - [sym__java_block_open] = ACTIONS(1700), - [sym__static_type_prefix] = ACTIONS(1700), + [STATE(269)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(624), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(287)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1718), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [STATE(270)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(628), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(288)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1146), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), + [STATE(271)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), @@ -87318,367 +83934,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1726), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1456), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(289)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1143), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(21), + [STATE(272)] = { + [sym_declaration] = STATE(705), + [sym_import_statement] = STATE(705), + [sym_path] = STATE(3916), + [sym_statement] = STATE(571), + [sym_expression_statement] = STATE(705), + [sym_variable_declaration] = STATE(706), + [sym_statement_block] = STATE(705), + [sym_if_statement] = STATE(705), + [sym_switch_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym_for_in_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_try_statement] = STATE(705), + [sym_with_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_debugger_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_throw_statement] = STATE(705), + [sym_include_statement] = STATE(705), + [sym_empty_statement] = STATE(705), + [sym_colon_assignment_statement] = STATE(705), + [sym_labeled_statement] = STATE(705), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(705), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3907), + [sym_function_declaration] = STATE(706), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2333), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4989), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(705), + [sym__tag_call] = STATE(4886), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2986), + [sym_hash_expression] = STATE(2986), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(705), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(705), + [sym_tag_statement] = STATE(705), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1620), + [anon_sym_query] = ACTIONS(1620), + [anon_sym_QUERY] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(447), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1740), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1618), + [anon_sym_set] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1618), + [anon_sym_QueryExecute] = ACTIONS(1624), + [anon_sym_queryexecute] = ACTIONS(1624), + [anon_sym_QUERYEXECUTE] = ACTIONS(1624), + [anon_sym_queryExecute] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1626), + [anon_sym_Abstract] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_ABSTRACT] = ACTIONS(1628), + [anon_sym_Break] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_BREAK] = ACTIONS(1630), + [anon_sym_Component] = ACTIONS(1632), + [anon_sym_component] = ACTIONS(1632), + [anon_sym_COMPONENT] = ACTIONS(1632), + [anon_sym_Continue] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_CONTINUE] = ACTIONS(1634), + [anon_sym_Debugger] = ACTIONS(1636), + [anon_sym_debugger] = ACTIONS(1636), + [anon_sym_DEBUGGER] = ACTIONS(1636), + [anon_sym_Do] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_DO] = ACTIONS(1638), + [anon_sym_Final] = ACTIONS(1640), + [anon_sym_final] = ACTIONS(1640), + [anon_sym_FINAL] = ACTIONS(1640), + [anon_sym_For] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_FOR] = ACTIONS(1642), + [anon_sym_Function] = ACTIONS(1644), + [anon_sym_function] = ACTIONS(1644), + [anon_sym_FUNCTION] = ACTIONS(1644), + [anon_sym_If] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_IF] = ACTIONS(1646), + [anon_sym_Import] = ACTIONS(1648), + [anon_sym_import] = ACTIONS(1648), + [anon_sym_IMPORT] = ACTIONS(1648), + [anon_sym_Include] = ACTIONS(1650), + [anon_sym_include] = ACTIONS(1650), + [anon_sym_INCLUDE] = ACTIONS(1650), + [anon_sym_Interface] = ACTIONS(1652), + [anon_sym_interface] = ACTIONS(1652), + [anon_sym_INTERFACE] = ACTIONS(1652), + [anon_sym_New] = ACTIONS(1654), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_NEW] = ACTIONS(1654), + [anon_sym_Package] = ACTIONS(1656), + [anon_sym_package] = ACTIONS(1656), + [anon_sym_PACKAGE] = ACTIONS(1656), + [anon_sym_Private] = ACTIONS(1656), + [anon_sym_private] = ACTIONS(1656), + [anon_sym_PRIVATE] = ACTIONS(1656), + [anon_sym_Public] = ACTIONS(1656), + [anon_sym_public] = ACTIONS(1656), + [anon_sym_PUBLIC] = ACTIONS(1656), + [anon_sym_Remote] = ACTIONS(1656), + [anon_sym_remote] = ACTIONS(1656), + [anon_sym_REMOTE] = ACTIONS(1656), + [anon_sym_Return] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_RETURN] = ACTIONS(1658), + [anon_sym_Static] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_STATIC] = ACTIONS(1628), + [anon_sym_Switch] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1660), + [anon_sym_SWITCH] = ACTIONS(1660), + [anon_sym_Throw] = ACTIONS(1662), + [anon_sym_throw] = ACTIONS(1662), + [anon_sym_THROW] = ACTIONS(1662), + [anon_sym_Try] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_TRY] = ACTIONS(1664), + [anon_sym_Var] = ACTIONS(1666), + [anon_sym_var] = ACTIONS(1666), + [anon_sym_VAR] = ACTIONS(1666), + [anon_sym_While] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_WHILE] = ACTIONS(1668), + [anon_sym_With] = ACTIONS(1670), + [anon_sym_with] = ACTIONS(1670), + [anon_sym_WITH] = ACTIONS(1670), + [sym_cf_comment] = ACTIONS(1672), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(290)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1148), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), + [STATE(273)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1100), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), @@ -87702,175 +84350,3633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(1152), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1742), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(291)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_Query] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(274)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3730), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1100), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(1152), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(275)] = { + [sym_declaration] = STATE(4267), + [sym_import_statement] = STATE(4267), + [sym_path] = STATE(3914), + [sym_statement] = STATE(4629), + [sym_expression_statement] = STATE(4267), + [sym_variable_declaration] = STATE(4274), + [sym_statement_block] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_switch_statement] = STATE(4267), + [sym_for_statement] = STATE(4267), + [sym_for_in_statement] = STATE(4267), + [sym_while_statement] = STATE(4267), + [sym_do_statement] = STATE(4267), + [sym_try_statement] = STATE(4267), + [sym_with_statement] = STATE(4267), + [sym_break_statement] = STATE(4267), + [sym_continue_statement] = STATE(4267), + [sym_debugger_statement] = STATE(4267), + [sym_return_statement] = STATE(4267), + [sym_throw_statement] = STATE(4267), + [sym_include_statement] = STATE(4267), + [sym_empty_statement] = STATE(4267), + [sym_colon_assignment_statement] = STATE(4267), + [sym_labeled_statement] = STATE(4267), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_component] = STATE(4267), + [sym_function_expression] = STATE(2553), + [sym_access_type] = STATE(3904), + [sym_function_declaration] = STATE(4274), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_tag_call_statement] = STATE(4267), + [sym__tag_call] = STATE(4856), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_cfml_template] = STATE(4267), + [sym_query_expression] = STATE(2598), + [sym_query_tag] = STATE(4267), + [sym_tag_statement] = STATE(4267), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(1520), + [anon_sym_query] = ACTIONS(1520), + [anon_sym_QUERY] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(1518), + [anon_sym_set] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_QueryExecute] = ACTIONS(1524), + [anon_sym_queryexecute] = ACTIONS(1524), + [anon_sym_QUERYEXECUTE] = ACTIONS(1524), + [anon_sym_queryExecute] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1526), + [anon_sym_Abstract] = ACTIONS(1528), + [anon_sym_abstract] = ACTIONS(1528), + [anon_sym_ABSTRACT] = ACTIONS(1528), + [anon_sym_Break] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_BREAK] = ACTIONS(1530), + [anon_sym_Component] = ACTIONS(1532), + [anon_sym_component] = ACTIONS(1532), + [anon_sym_COMPONENT] = ACTIONS(1532), + [anon_sym_Continue] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_CONTINUE] = ACTIONS(1534), + [anon_sym_Debugger] = ACTIONS(1536), + [anon_sym_debugger] = ACTIONS(1536), + [anon_sym_DEBUGGER] = ACTIONS(1536), + [anon_sym_Do] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_DO] = ACTIONS(1538), + [anon_sym_Final] = ACTIONS(1540), + [anon_sym_final] = ACTIONS(1540), + [anon_sym_FINAL] = ACTIONS(1540), + [anon_sym_For] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_FOR] = ACTIONS(1542), + [anon_sym_Function] = ACTIONS(1544), + [anon_sym_function] = ACTIONS(1544), + [anon_sym_FUNCTION] = ACTIONS(1544), + [anon_sym_If] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_Import] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1548), + [anon_sym_IMPORT] = ACTIONS(1548), + [anon_sym_Include] = ACTIONS(1550), + [anon_sym_include] = ACTIONS(1550), + [anon_sym_INCLUDE] = ACTIONS(1550), + [anon_sym_Interface] = ACTIONS(1552), + [anon_sym_interface] = ACTIONS(1552), + [anon_sym_INTERFACE] = ACTIONS(1552), + [anon_sym_New] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1554), + [anon_sym_NEW] = ACTIONS(1554), + [anon_sym_Package] = ACTIONS(1556), + [anon_sym_package] = ACTIONS(1556), + [anon_sym_PACKAGE] = ACTIONS(1556), + [anon_sym_Private] = ACTIONS(1556), + [anon_sym_private] = ACTIONS(1556), + [anon_sym_PRIVATE] = ACTIONS(1556), + [anon_sym_Public] = ACTIONS(1556), + [anon_sym_public] = ACTIONS(1556), + [anon_sym_PUBLIC] = ACTIONS(1556), + [anon_sym_Remote] = ACTIONS(1556), + [anon_sym_remote] = ACTIONS(1556), + [anon_sym_REMOTE] = ACTIONS(1556), + [anon_sym_Return] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_RETURN] = ACTIONS(1558), + [anon_sym_Static] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_STATIC] = ACTIONS(1528), + [anon_sym_Switch] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_SWITCH] = ACTIONS(1560), + [anon_sym_Throw] = ACTIONS(1562), + [anon_sym_throw] = ACTIONS(1562), + [anon_sym_THROW] = ACTIONS(1562), + [anon_sym_Try] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_TRY] = ACTIONS(1564), + [anon_sym_Var] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1566), + [anon_sym_VAR] = ACTIONS(1566), + [anon_sym_While] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_WHILE] = ACTIONS(1568), + [anon_sym_With] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_WITH] = ACTIONS(1570), + [sym_cf_comment] = ACTIONS(1572), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(276)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3692), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3584), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2609), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(806), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [sym__new_type_prefix] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_COMPONENT] = ACTIONS(1042), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(277)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Else] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_ELSE] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1694), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(278)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Else] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_ELSE] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1696), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(279)] = { + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_Query] = ACTIONS(1700), + [anon_sym_query] = ACTIONS(1700), + [anon_sym_QUERY] = ACTIONS(1700), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_SLASH] = ACTIONS(1700), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1698), + [aux_sym_unary_operator_token1] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1700), + [aux_sym_number_token2] = ACTIONS(1700), + [anon_sym_This] = ACTIONS(1700), + [anon_sym_this] = ACTIONS(1700), + [anon_sym_THIS] = ACTIONS(1700), + [anon_sym_Super] = ACTIONS(1700), + [anon_sym_super] = ACTIONS(1700), + [anon_sym_SUPER] = ACTIONS(1700), + [anon_sym_True] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1700), + [anon_sym_TRUE] = ACTIONS(1700), + [anon_sym_False] = ACTIONS(1700), + [anon_sym_false] = ACTIONS(1700), + [anon_sym_FALSE] = ACTIONS(1700), + [anon_sym_Null] = ACTIONS(1700), + [anon_sym_null] = ACTIONS(1700), + [anon_sym_NULL] = ACTIONS(1700), + [anon_sym_Undefined] = ACTIONS(1700), + [anon_sym_undefined] = ACTIONS(1700), + [anon_sym_UNDEFINED] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1700), + [sym_hash_empty] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), + [anon_sym_QueryExecute] = ACTIONS(1700), + [anon_sym_queryexecute] = ACTIONS(1700), + [anon_sym_QUERYEXECUTE] = ACTIONS(1700), + [anon_sym_queryExecute] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1698), + [anon_sym_Abstract] = ACTIONS(1700), + [anon_sym_abstract] = ACTIONS(1700), + [anon_sym_ABSTRACT] = ACTIONS(1700), + [anon_sym_Break] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_BREAK] = ACTIONS(1700), + [anon_sym_Case] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_CASE] = ACTIONS(1700), + [anon_sym_Component] = ACTIONS(1700), + [anon_sym_component] = ACTIONS(1700), + [anon_sym_COMPONENT] = ACTIONS(1700), + [anon_sym_Continue] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_CONTINUE] = ACTIONS(1700), + [anon_sym_Debugger] = ACTIONS(1700), + [anon_sym_debugger] = ACTIONS(1700), + [anon_sym_DEBUGGER] = ACTIONS(1700), + [anon_sym_Default] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_DEFAULT] = ACTIONS(1700), + [anon_sym_Do] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_DO] = ACTIONS(1700), + [anon_sym_Else] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1700), + [anon_sym_ELSE] = ACTIONS(1700), + [anon_sym_Final] = ACTIONS(1700), + [anon_sym_final] = ACTIONS(1700), + [anon_sym_FINAL] = ACTIONS(1700), + [anon_sym_For] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_FOR] = ACTIONS(1700), + [anon_sym_Function] = ACTIONS(1700), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_FUNCTION] = ACTIONS(1700), + [anon_sym_If] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_IF] = ACTIONS(1700), + [anon_sym_Import] = ACTIONS(1700), + [anon_sym_import] = ACTIONS(1700), + [anon_sym_IMPORT] = ACTIONS(1700), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_Include] = ACTIONS(1700), + [anon_sym_include] = ACTIONS(1700), + [anon_sym_INCLUDE] = ACTIONS(1700), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [anon_sym_Interface] = ACTIONS(1700), + [anon_sym_interface] = ACTIONS(1700), + [anon_sym_INTERFACE] = ACTIONS(1700), + [anon_sym_New] = ACTIONS(1700), + [anon_sym_new] = ACTIONS(1700), + [anon_sym_NEW] = ACTIONS(1700), + [anon_sym_Package] = ACTIONS(1700), + [anon_sym_package] = ACTIONS(1700), + [anon_sym_PACKAGE] = ACTIONS(1700), + [anon_sym_Private] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_PRIVATE] = ACTIONS(1700), + [anon_sym_Property] = ACTIONS(1700), + [anon_sym_property] = ACTIONS(1700), + [anon_sym_PROPERTY] = ACTIONS(1700), + [anon_sym_Public] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_PUBLIC] = ACTIONS(1700), + [anon_sym_Remote] = ACTIONS(1700), + [anon_sym_remote] = ACTIONS(1700), + [anon_sym_REMOTE] = ACTIONS(1700), + [anon_sym_Return] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_RETURN] = ACTIONS(1700), + [anon_sym_Static] = ACTIONS(1700), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_STATIC] = ACTIONS(1700), + [anon_sym_Switch] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_SWITCH] = ACTIONS(1700), + [anon_sym_Throw] = ACTIONS(1700), + [anon_sym_throw] = ACTIONS(1700), + [anon_sym_THROW] = ACTIONS(1700), + [anon_sym_Try] = ACTIONS(1700), + [anon_sym_try] = ACTIONS(1700), + [anon_sym_TRY] = ACTIONS(1700), + [anon_sym_Var] = ACTIONS(1700), + [anon_sym_var] = ACTIONS(1700), + [anon_sym_VAR] = ACTIONS(1700), + [anon_sym_While] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_WHILE] = ACTIONS(1700), + [anon_sym_With] = ACTIONS(1700), + [anon_sym_with] = ACTIONS(1700), + [anon_sym_WITH] = ACTIONS(1700), + [sym__automatic_semicolon] = ACTIONS(1702), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym_cf_comment] = ACTIONS(1698), + [sym__java_block_open] = ACTIONS(1698), + [sym__static_type_prefix] = ACTIONS(1698), + }, + [STATE(280)] = { + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_let] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_Query] = ACTIONS(1684), + [anon_sym_query] = ACTIONS(1684), + [anon_sym_QUERY] = ACTIONS(1684), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1682), + [aux_sym_unary_operator_token1] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1684), + [aux_sym_number_token2] = ACTIONS(1684), + [anon_sym_This] = ACTIONS(1684), + [anon_sym_this] = ACTIONS(1684), + [anon_sym_THIS] = ACTIONS(1684), + [anon_sym_Super] = ACTIONS(1684), + [anon_sym_super] = ACTIONS(1684), + [anon_sym_SUPER] = ACTIONS(1684), + [anon_sym_True] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1684), + [anon_sym_TRUE] = ACTIONS(1684), + [anon_sym_False] = ACTIONS(1684), + [anon_sym_false] = ACTIONS(1684), + [anon_sym_FALSE] = ACTIONS(1684), + [anon_sym_Null] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1684), + [anon_sym_Undefined] = ACTIONS(1684), + [anon_sym_undefined] = ACTIONS(1684), + [anon_sym_UNDEFINED] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1684), + [anon_sym_set] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1684), + [sym_hash_empty] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1684), + [anon_sym_QueryExecute] = ACTIONS(1684), + [anon_sym_queryexecute] = ACTIONS(1684), + [anon_sym_QUERYEXECUTE] = ACTIONS(1684), + [anon_sym_queryExecute] = ACTIONS(1684), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1682), + [anon_sym_Abstract] = ACTIONS(1684), + [anon_sym_abstract] = ACTIONS(1684), + [anon_sym_ABSTRACT] = ACTIONS(1684), + [anon_sym_Break] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_BREAK] = ACTIONS(1684), + [anon_sym_Case] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1684), + [anon_sym_CASE] = ACTIONS(1684), + [anon_sym_Component] = ACTIONS(1684), + [anon_sym_component] = ACTIONS(1684), + [anon_sym_COMPONENT] = ACTIONS(1684), + [anon_sym_Continue] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_CONTINUE] = ACTIONS(1684), + [anon_sym_Debugger] = ACTIONS(1684), + [anon_sym_debugger] = ACTIONS(1684), + [anon_sym_DEBUGGER] = ACTIONS(1684), + [anon_sym_Default] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_DEFAULT] = ACTIONS(1684), + [anon_sym_Do] = ACTIONS(1684), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_DO] = ACTIONS(1684), + [anon_sym_Final] = ACTIONS(1684), + [anon_sym_final] = ACTIONS(1684), + [anon_sym_FINAL] = ACTIONS(1684), + [anon_sym_For] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_FOR] = ACTIONS(1684), + [anon_sym_Function] = ACTIONS(1684), + [anon_sym_function] = ACTIONS(1684), + [anon_sym_FUNCTION] = ACTIONS(1684), + [anon_sym_If] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_IF] = ACTIONS(1684), + [anon_sym_Import] = ACTIONS(1684), + [anon_sym_import] = ACTIONS(1684), + [anon_sym_IMPORT] = ACTIONS(1684), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_Include] = ACTIONS(1684), + [anon_sym_include] = ACTIONS(1684), + [anon_sym_INCLUDE] = ACTIONS(1684), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [anon_sym_Interface] = ACTIONS(1684), + [anon_sym_interface] = ACTIONS(1684), + [anon_sym_INTERFACE] = ACTIONS(1684), + [anon_sym_New] = ACTIONS(1684), + [anon_sym_new] = ACTIONS(1684), + [anon_sym_NEW] = ACTIONS(1684), + [anon_sym_Package] = ACTIONS(1684), + [anon_sym_package] = ACTIONS(1684), + [anon_sym_PACKAGE] = ACTIONS(1684), + [anon_sym_Private] = ACTIONS(1684), + [anon_sym_private] = ACTIONS(1684), + [anon_sym_PRIVATE] = ACTIONS(1684), + [anon_sym_Property] = ACTIONS(1684), + [anon_sym_property] = ACTIONS(1684), + [anon_sym_PROPERTY] = ACTIONS(1684), + [anon_sym_Public] = ACTIONS(1684), + [anon_sym_public] = ACTIONS(1684), + [anon_sym_PUBLIC] = ACTIONS(1684), + [anon_sym_Remote] = ACTIONS(1684), + [anon_sym_remote] = ACTIONS(1684), + [anon_sym_REMOTE] = ACTIONS(1684), + [anon_sym_Return] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_RETURN] = ACTIONS(1684), + [anon_sym_Static] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_STATIC] = ACTIONS(1684), + [anon_sym_Switch] = ACTIONS(1684), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_SWITCH] = ACTIONS(1684), + [anon_sym_Throw] = ACTIONS(1684), + [anon_sym_throw] = ACTIONS(1684), + [anon_sym_THROW] = ACTIONS(1684), + [anon_sym_Try] = ACTIONS(1684), + [anon_sym_try] = ACTIONS(1684), + [anon_sym_TRY] = ACTIONS(1684), + [anon_sym_Var] = ACTIONS(1684), + [anon_sym_var] = ACTIONS(1684), + [anon_sym_VAR] = ACTIONS(1684), + [anon_sym_While] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_WHILE] = ACTIONS(1684), + [anon_sym_With] = ACTIONS(1684), + [anon_sym_with] = ACTIONS(1684), + [anon_sym_WITH] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1704), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym_cf_comment] = ACTIONS(1682), + [sym__java_block_open] = ACTIONS(1682), + [sym__static_type_prefix] = ACTIONS(1682), + }, + [STATE(281)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_COMMA] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1085), + [anon_sym_instanceof] = ACTIONS(1085), + [anon_sym_INSTANCEOF] = ACTIONS(1085), + [anon_sym_instanceOf] = ACTIONS(1085), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1706), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(282)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1590), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(1708), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(283)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1590), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(1588), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(284)] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1598), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Break] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_BREAK] = ACTIONS(1598), + [anon_sym_Case] = ACTIONS(1598), + [anon_sym_case] = ACTIONS(1598), + [anon_sym_CASE] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Continue] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_CONTINUE] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Default] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_DEFAULT] = ACTIONS(1598), + [anon_sym_Do] = ACTIONS(1598), + [anon_sym_do] = ACTIONS(1598), + [anon_sym_DO] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_For] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_FOR] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_If] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_IF] = ACTIONS(1598), + [anon_sym_Import] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_IMPORT] = ACTIONS(1598), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1598), + [anon_sym_instanceof] = ACTIONS(1598), + [anon_sym_INSTANCEOF] = ACTIONS(1598), + [anon_sym_instanceOf] = ACTIONS(1598), + [anon_sym_Interface] = ACTIONS(1598), + [anon_sym_interface] = ACTIONS(1598), + [anon_sym_INTERFACE] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Property] = ACTIONS(1598), + [anon_sym_property] = ACTIONS(1598), + [anon_sym_PROPERTY] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Return] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_RETURN] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [anon_sym_Switch] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1598), + [anon_sym_SWITCH] = ACTIONS(1598), + [anon_sym_Throw] = ACTIONS(1598), + [anon_sym_throw] = ACTIONS(1598), + [anon_sym_THROW] = ACTIONS(1598), + [anon_sym_Try] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_TRY] = ACTIONS(1598), + [anon_sym_Var] = ACTIONS(1598), + [anon_sym_var] = ACTIONS(1598), + [anon_sym_VAR] = ACTIONS(1598), + [anon_sym_While] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_WHILE] = ACTIONS(1598), + [anon_sym_With] = ACTIONS(1598), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_WITH] = ACTIONS(1598), + [sym__automatic_semicolon] = ACTIONS(1596), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), + [sym_cf_comment] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), + }, + [STATE(285)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1710), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(286)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1712), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(287)] = { + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_Query] = ACTIONS(1700), + [anon_sym_query] = ACTIONS(1700), + [anon_sym_QUERY] = ACTIONS(1700), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_SLASH] = ACTIONS(1700), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1698), + [aux_sym_unary_operator_token1] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1700), + [aux_sym_number_token2] = ACTIONS(1700), + [anon_sym_This] = ACTIONS(1700), + [anon_sym_this] = ACTIONS(1700), + [anon_sym_THIS] = ACTIONS(1700), + [anon_sym_Super] = ACTIONS(1700), + [anon_sym_super] = ACTIONS(1700), + [anon_sym_SUPER] = ACTIONS(1700), + [anon_sym_True] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1700), + [anon_sym_TRUE] = ACTIONS(1700), + [anon_sym_False] = ACTIONS(1700), + [anon_sym_false] = ACTIONS(1700), + [anon_sym_FALSE] = ACTIONS(1700), + [anon_sym_Null] = ACTIONS(1700), + [anon_sym_null] = ACTIONS(1700), + [anon_sym_NULL] = ACTIONS(1700), + [anon_sym_Undefined] = ACTIONS(1700), + [anon_sym_undefined] = ACTIONS(1700), + [anon_sym_UNDEFINED] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1700), + [sym_hash_empty] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), + [anon_sym_QueryExecute] = ACTIONS(1700), + [anon_sym_queryexecute] = ACTIONS(1700), + [anon_sym_QUERYEXECUTE] = ACTIONS(1700), + [anon_sym_queryExecute] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1698), + [anon_sym_Abstract] = ACTIONS(1700), + [anon_sym_abstract] = ACTIONS(1700), + [anon_sym_ABSTRACT] = ACTIONS(1700), + [anon_sym_Break] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_BREAK] = ACTIONS(1700), + [anon_sym_Case] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_CASE] = ACTIONS(1700), + [anon_sym_Component] = ACTIONS(1700), + [anon_sym_component] = ACTIONS(1700), + [anon_sym_COMPONENT] = ACTIONS(1700), + [anon_sym_Continue] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_CONTINUE] = ACTIONS(1700), + [anon_sym_Debugger] = ACTIONS(1700), + [anon_sym_debugger] = ACTIONS(1700), + [anon_sym_DEBUGGER] = ACTIONS(1700), + [anon_sym_Default] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_DEFAULT] = ACTIONS(1700), + [anon_sym_Do] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_DO] = ACTIONS(1700), + [anon_sym_Final] = ACTIONS(1700), + [anon_sym_final] = ACTIONS(1700), + [anon_sym_FINAL] = ACTIONS(1700), + [anon_sym_For] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_FOR] = ACTIONS(1700), + [anon_sym_Function] = ACTIONS(1700), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_FUNCTION] = ACTIONS(1700), + [anon_sym_If] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_IF] = ACTIONS(1700), + [anon_sym_Import] = ACTIONS(1700), + [anon_sym_import] = ACTIONS(1700), + [anon_sym_IMPORT] = ACTIONS(1700), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_Include] = ACTIONS(1700), + [anon_sym_include] = ACTIONS(1700), + [anon_sym_INCLUDE] = ACTIONS(1700), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [anon_sym_Interface] = ACTIONS(1700), + [anon_sym_interface] = ACTIONS(1700), + [anon_sym_INTERFACE] = ACTIONS(1700), + [anon_sym_New] = ACTIONS(1700), + [anon_sym_new] = ACTIONS(1700), + [anon_sym_NEW] = ACTIONS(1700), + [anon_sym_Package] = ACTIONS(1700), + [anon_sym_package] = ACTIONS(1700), + [anon_sym_PACKAGE] = ACTIONS(1700), + [anon_sym_Private] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_PRIVATE] = ACTIONS(1700), + [anon_sym_Property] = ACTIONS(1700), + [anon_sym_property] = ACTIONS(1700), + [anon_sym_PROPERTY] = ACTIONS(1700), + [anon_sym_Public] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_PUBLIC] = ACTIONS(1700), + [anon_sym_Remote] = ACTIONS(1700), + [anon_sym_remote] = ACTIONS(1700), + [anon_sym_REMOTE] = ACTIONS(1700), + [anon_sym_Return] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_RETURN] = ACTIONS(1700), + [anon_sym_Static] = ACTIONS(1700), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_STATIC] = ACTIONS(1700), + [anon_sym_Switch] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_SWITCH] = ACTIONS(1700), + [anon_sym_Throw] = ACTIONS(1700), + [anon_sym_throw] = ACTIONS(1700), + [anon_sym_THROW] = ACTIONS(1700), + [anon_sym_Try] = ACTIONS(1700), + [anon_sym_try] = ACTIONS(1700), + [anon_sym_TRY] = ACTIONS(1700), + [anon_sym_Var] = ACTIONS(1700), + [anon_sym_var] = ACTIONS(1700), + [anon_sym_VAR] = ACTIONS(1700), + [anon_sym_While] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_WHILE] = ACTIONS(1700), + [anon_sym_With] = ACTIONS(1700), + [anon_sym_with] = ACTIONS(1700), + [anon_sym_WITH] = ACTIONS(1700), + [sym__automatic_semicolon] = ACTIONS(1714), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym_cf_comment] = ACTIONS(1698), + [sym__java_block_open] = ACTIONS(1698), + [sym__static_type_prefix] = ACTIONS(1698), + }, + [STATE(288)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1722), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1448), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(289)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1158), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1448), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(290)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1093), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(447), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(1738), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1448), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(291)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1150), + [sym_identifier] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), @@ -87916,19 +88022,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), [anon_sym_New] = ACTIONS(546), [anon_sym_new] = ACTIONS(546), [anon_sym_NEW] = ACTIONS(546), @@ -87947,123 +88053,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(1744), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1456), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(292)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3109), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4699), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym__tag_call_argument] = STATE(4579), - [sym_tag_call_attribute] = STATE(4579), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4699), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2674), - [sym_hash_expression] = STATE(2674), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4562), - [sym_identifier] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3152), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4808), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym__tag_call_argument] = STATE(4690), + [sym_tag_call_attribute] = STATE(4690), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4808), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2722), + [sym_hash_expression] = STATE(2722), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4661), + [sym_identifier] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -88076,170 +88182,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(293)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3109), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4699), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym__tag_call_argument] = STATE(4703), - [sym_tag_call_attribute] = STATE(4703), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4699), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2674), - [sym_hash_expression] = STATE(2674), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4562), - [sym_identifier] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3152), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4808), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym__tag_call_argument] = STATE(4651), + [sym_tag_call_attribute] = STATE(4651), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4808), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2722), + [sym_hash_expression] = STATE(2722), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4661), + [sym_identifier] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -88252,168 +88358,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(294)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3185), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4651), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5309), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4651), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2739), - [sym_hash_expression] = STATE(2739), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4653), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3398), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4625), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4625), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2750), + [sym_hash_expression] = STATE(2750), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4634), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -88426,168 +88532,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1792), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(295)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3141), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4760), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4760), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2769), - [sym_hash_expression] = STATE(2769), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4763), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3418), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4768), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4768), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2752), + [sym_hash_expression] = STATE(2752), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4773), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -88600,168 +88706,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1796), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(296)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3085), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4760), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4760), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2720), - [sym_hash_expression] = STATE(2720), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4763), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3391), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4825), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4825), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2791), + [sym_hash_expression] = STATE(2791), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -88774,168 +88880,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1798), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1796), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(297)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3243), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4686), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4686), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2673), - [sym_hash_expression] = STATE(2673), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4690), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3364), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4824), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4824), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2744), + [sym_hash_expression] = STATE(2744), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4677), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -88948,168 +89054,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1800), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(298)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3226), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4567), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4567), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2659), - [sym_hash_expression] = STATE(2659), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4568), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3449), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4641), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4641), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2759), + [sym_hash_expression] = STATE(2759), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4694), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -89122,168 +89228,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1806), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1804), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(299)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3358), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4633), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4633), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2701), - [sym_hash_expression] = STATE(2701), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4637), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3309), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4617), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4617), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2736), + [sym_hash_expression] = STATE(2736), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4635), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -89296,168 +89402,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1808), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(300)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3233), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4647), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4647), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2666), - [sym_hash_expression] = STATE(2666), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4648), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3155), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4611), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4611), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2724), + [sym_hash_expression] = STATE(2724), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4626), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -89470,168 +89576,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(301)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3237), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4737), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4737), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2670), - [sym_hash_expression] = STATE(2670), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4739), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3297), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4825), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4825), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2688), + [sym_hash_expression] = STATE(2688), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -89644,168 +89750,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(302)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3189), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4737), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4737), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2633), - [sym_hash_expression] = STATE(2633), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4739), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4611), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4611), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2769), + [sym_hash_expression] = STATE(2769), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4626), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -89818,168 +89924,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1820), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1816), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(303)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3244), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4567), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4567), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2676), - [sym_hash_expression] = STATE(2676), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4568), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3438), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4617), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4617), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2755), + [sym_hash_expression] = STATE(2755), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4635), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -89992,168 +90098,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(304)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3247), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4686), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4686), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2679), - [sym_hash_expression] = STATE(2679), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4690), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3376), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4685), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5247), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4685), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2803), + [sym_hash_expression] = STATE(2803), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4687), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -90166,168 +90272,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1824), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(305)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3093), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4633), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4633), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2754), - [sym_hash_expression] = STATE(2754), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4637), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3457), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4625), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4625), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2762), + [sym_hash_expression] = STATE(2762), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4634), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -90340,168 +90446,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1824), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(306)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3210), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_spread_element] = STATE(4605), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2615), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2615), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym_pair] = STATE(4605), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2646), - [sym_hash_expression] = STATE(2646), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4607), - [sym_identifier] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1748), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3137), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_spread_element] = STATE(4641), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2618), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2618), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym_pair] = STATE(4641), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2764), + [sym_hash_expression] = STATE(2764), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4694), + [sym_identifier] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1758), - [anon_sym_query] = ACTIONS(1758), - [anon_sym_QUERY] = ACTIONS(1758), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1754), + [anon_sym_query] = ACTIONS(1754), + [anon_sym_QUERY] = ACTIONS(1754), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -90514,97 +90620,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_QueryExecute] = ACTIONS(1780), - [anon_sym_queryexecute] = ACTIONS(1780), - [anon_sym_QUERYEXECUTE] = ACTIONS(1780), - [anon_sym_queryExecute] = ACTIONS(1780), + [sym_hash_empty] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_QueryExecute] = ACTIONS(1776), + [anon_sym_queryexecute] = ACTIONS(1776), + [anon_sym_QUERYEXECUTE] = ACTIONS(1776), + [anon_sym_queryExecute] = ACTIONS(1776), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_ABSTRACT] = ACTIONS(1752), - [anon_sym_Component] = ACTIONS(1782), - [anon_sym_component] = ACTIONS(1782), - [anon_sym_COMPONENT] = ACTIONS(1782), - [anon_sym_Debugger] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_DEBUGGER] = ACTIONS(1752), - [anon_sym_Final] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_FINAL] = ACTIONS(1752), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1752), - [anon_sym_include] = ACTIONS(1752), - [anon_sym_INCLUDE] = ACTIONS(1752), - [anon_sym_New] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_NEW] = ACTIONS(1786), - [anon_sym_Package] = ACTIONS(1752), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_PACKAGE] = ACTIONS(1752), - [anon_sym_Private] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_PRIVATE] = ACTIONS(1752), - [anon_sym_Public] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_PUBLIC] = ACTIONS(1752), - [anon_sym_Remote] = ACTIONS(1752), - [anon_sym_remote] = ACTIONS(1752), - [anon_sym_REMOTE] = ACTIONS(1752), - [anon_sym_Static] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_STATIC] = ACTIONS(1752), + [anon_sym_Abstract] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_ABSTRACT] = ACTIONS(1748), + [anon_sym_Component] = ACTIONS(1778), + [anon_sym_component] = ACTIONS(1778), + [anon_sym_COMPONENT] = ACTIONS(1778), + [anon_sym_Debugger] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_DEBUGGER] = ACTIONS(1748), + [anon_sym_Final] = ACTIONS(1748), + [anon_sym_final] = ACTIONS(1748), + [anon_sym_FINAL] = ACTIONS(1748), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1748), + [anon_sym_include] = ACTIONS(1748), + [anon_sym_INCLUDE] = ACTIONS(1748), + [anon_sym_New] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_NEW] = ACTIONS(1782), + [anon_sym_Package] = ACTIONS(1748), + [anon_sym_package] = ACTIONS(1748), + [anon_sym_PACKAGE] = ACTIONS(1748), + [anon_sym_Private] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_PRIVATE] = ACTIONS(1748), + [anon_sym_Public] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_PUBLIC] = ACTIONS(1748), + [anon_sym_Remote] = ACTIONS(1748), + [anon_sym_remote] = ACTIONS(1748), + [anon_sym_REMOTE] = ACTIONS(1748), + [anon_sym_Static] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_STATIC] = ACTIONS(1748), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(307)] = { - [aux_sym_path_repeat1] = STATE(2012), - [sym_identifier] = ACTIONS(1832), - [anon_sym_DOT] = ACTIONS(1835), + [aux_sym_path_repeat1] = STATE(2039), + [sym_identifier] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1848), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), [anon_sym_PLUS_EQ] = ACTIONS(529), @@ -90622,7 +90728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(529), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), [anon_sym_AMP_AMP] = ACTIONS(507), [anon_sym_PIPE_PIPE] = ACTIONS(507), [anon_sym_GT_GT] = ACTIONS(507), @@ -90631,9 +90737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(507), [anon_sym_CARET] = ACTIONS(507), [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1848), [anon_sym_PERCENT] = ACTIONS(507), [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), @@ -90653,130 +90759,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1844), - [anon_sym_DASH_DASH] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1847), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [anon_sym_IN] = ACTIONS(1852), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1852), - [anon_sym_instanceof] = ACTIONS(1852), - [anon_sym_INSTANCEOF] = ACTIONS(1852), - [anon_sym_instanceOf] = ACTIONS(1852), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1843), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_IN] = ACTIONS(1848), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1848), + [anon_sym_instanceof] = ACTIONS(1848), + [anon_sym_INSTANCEOF] = ACTIONS(1848), + [anon_sym_instanceOf] = ACTIONS(1848), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1857), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1853), }, [STATE(308)] = { - [aux_sym_path_repeat1] = STATE(2012), - [sym_identifier] = ACTIONS(1832), - [anon_sym_DOT] = ACTIONS(1835), + [aux_sym_path_repeat1] = STATE(2039), + [sym_identifier] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_COLON] = ACTIONS(1860), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_COLON] = ACTIONS(1856), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1848), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), [anon_sym_PLUS_EQ] = ACTIONS(529), @@ -90794,7 +90900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(529), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), [anon_sym_AMP_AMP] = ACTIONS(507), [anon_sym_PIPE_PIPE] = ACTIONS(507), [anon_sym_GT_GT] = ACTIONS(507), @@ -90803,9 +90909,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(507), [anon_sym_CARET] = ACTIONS(507), [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1848), [anon_sym_PERCENT] = ACTIONS(507), [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), @@ -90825,129 +90931,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1844), - [anon_sym_DASH_DASH] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1847), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [anon_sym_IN] = ACTIONS(1852), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1852), - [anon_sym_instanceof] = ACTIONS(1852), - [anon_sym_INSTANCEOF] = ACTIONS(1852), - [anon_sym_instanceOf] = ACTIONS(1852), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1843), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_IN] = ACTIONS(1848), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1848), + [anon_sym_instanceof] = ACTIONS(1848), + [anon_sym_INSTANCEOF] = ACTIONS(1848), + [anon_sym_instanceOf] = ACTIONS(1848), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1857), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1853), }, [STATE(309)] = { - [aux_sym_path_repeat1] = STATE(2012), - [sym_identifier] = ACTIONS(1832), - [anon_sym_DOT] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1862), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1872), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1843), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_IN] = ACTIONS(1872), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1872), + [anon_sym_instanceof] = ACTIONS(1872), + [anon_sym_INSTANCEOF] = ACTIONS(1872), + [anon_sym_instanceOf] = ACTIONS(1872), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1875), + }, + [STATE(310)] = { + [aux_sym_path_repeat1] = STATE(2039), + [sym_identifier] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1848), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), [anon_sym_PLUS_EQ] = ACTIONS(529), @@ -90965,7 +91242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(529), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), [anon_sym_AMP_AMP] = ACTIONS(507), [anon_sym_PIPE_PIPE] = ACTIONS(507), [anon_sym_GT_GT] = ACTIONS(507), @@ -90974,9 +91251,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(507), [anon_sym_CARET] = ACTIONS(507), [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1848), [anon_sym_PERCENT] = ACTIONS(507), [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), @@ -90996,129 +91273,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1844), - [anon_sym_DASH_DASH] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1847), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [anon_sym_IN] = ACTIONS(1852), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1852), - [anon_sym_instanceof] = ACTIONS(1852), - [anon_sym_INSTANCEOF] = ACTIONS(1852), - [anon_sym_instanceOf] = ACTIONS(1852), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1843), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_IN] = ACTIONS(1848), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1848), + [anon_sym_instanceof] = ACTIONS(1848), + [anon_sym_INSTANCEOF] = ACTIONS(1848), + [anon_sym_instanceOf] = ACTIONS(1848), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1857), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1853), }, - [STATE(310)] = { - [aux_sym_path_repeat1] = STATE(2012), - [sym_identifier] = ACTIONS(1832), - [anon_sym_DOT] = ACTIONS(1835), + [STATE(311)] = { + [aux_sym_path_repeat1] = STATE(2039), + [sym_identifier] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1852), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1848), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1848), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), [anon_sym_PLUS_EQ] = ACTIONS(529), @@ -91136,7 +91413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(529), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), [anon_sym_AMP_AMP] = ACTIONS(507), [anon_sym_PIPE_PIPE] = ACTIONS(507), [anon_sym_GT_GT] = ACTIONS(507), @@ -91145,9 +91422,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(507), [anon_sym_CARET] = ACTIONS(507), [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1848), [anon_sym_PERCENT] = ACTIONS(507), [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), @@ -91167,129 +91444,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1844), - [anon_sym_DASH_DASH] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1847), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [anon_sym_IN] = ACTIONS(1852), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1852), - [anon_sym_instanceof] = ACTIONS(1852), - [anon_sym_INSTANCEOF] = ACTIONS(1852), - [anon_sym_instanceOf] = ACTIONS(1852), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1843), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_IN] = ACTIONS(1848), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1848), + [anon_sym_instanceof] = ACTIONS(1848), + [anon_sym_INSTANCEOF] = ACTIONS(1848), + [anon_sym_instanceOf] = ACTIONS(1848), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1857), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1853), }, - [STATE(311)] = { - [sym_identifier] = ACTIONS(1869), + [STATE(312)] = { + [sym_identifier] = ACTIONS(1881), [anon_sym_DOT] = ACTIONS(406), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_Query] = ACTIONS(1893), + [anon_sym_query] = ACTIONS(1893), + [anon_sym_QUERY] = ACTIONS(1893), + [sym_array_return_suffix] = ACTIONS(1888), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1895), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), [anon_sym_PLUS_EQ] = ACTIONS(432), @@ -91307,7 +91584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(432), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1888), [anon_sym_AMP_AMP] = ACTIONS(406), [anon_sym_PIPE_PIPE] = ACTIONS(406), [anon_sym_GT_GT] = ACTIONS(406), @@ -91316,9 +91593,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(406), [anon_sym_CARET] = ACTIONS(406), [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_SLASH] = ACTIONS(1895), [anon_sym_PERCENT] = ACTIONS(406), [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), @@ -91338,129 +91615,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1847), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_IN] = ACTIONS(1879), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1879), - [anon_sym_instanceof] = ACTIONS(1879), - [anon_sym_INSTANCEOF] = ACTIONS(1879), - [anon_sym_instanceOf] = ACTIONS(1879), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1888), + [aux_sym_unary_operator_token1] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1893), + [aux_sym_number_token2] = ACTIONS(1893), + [anon_sym_This] = ACTIONS(1893), + [anon_sym_this] = ACTIONS(1893), + [anon_sym_THIS] = ACTIONS(1893), + [anon_sym_Super] = ACTIONS(1893), + [anon_sym_super] = ACTIONS(1893), + [anon_sym_SUPER] = ACTIONS(1893), + [anon_sym_True] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_TRUE] = ACTIONS(1893), + [anon_sym_False] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_FALSE] = ACTIONS(1893), + [anon_sym_Null] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [anon_sym_NULL] = ACTIONS(1893), + [anon_sym_Undefined] = ACTIONS(1893), + [anon_sym_undefined] = ACTIONS(1893), + [anon_sym_UNDEFINED] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(1893), + [sym_hash_empty] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_QueryExecute] = ACTIONS(1893), + [anon_sym_queryexecute] = ACTIONS(1893), + [anon_sym_QUERYEXECUTE] = ACTIONS(1893), + [anon_sym_queryExecute] = ACTIONS(1893), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_Abstract] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_ABSTRACT] = ACTIONS(1893), + [anon_sym_Component] = ACTIONS(1893), + [anon_sym_component] = ACTIONS(1893), + [anon_sym_COMPONENT] = ACTIONS(1893), + [anon_sym_Debugger] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_DEBUGGER] = ACTIONS(1893), + [anon_sym_Final] = ACTIONS(1893), + [anon_sym_final] = ACTIONS(1893), + [anon_sym_FINAL] = ACTIONS(1893), + [anon_sym_Function] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), + [anon_sym_FUNCTION] = ACTIONS(1893), + [anon_sym_In] = ACTIONS(1895), + [anon_sym_in] = ACTIONS(1895), + [anon_sym_IN] = ACTIONS(1895), + [anon_sym_Include] = ACTIONS(1893), + [anon_sym_include] = ACTIONS(1893), + [anon_sym_INCLUDE] = ACTIONS(1893), + [anon_sym_InstanceOf] = ACTIONS(1895), + [anon_sym_instanceof] = ACTIONS(1895), + [anon_sym_INSTANCEOF] = ACTIONS(1895), + [anon_sym_instanceOf] = ACTIONS(1895), + [anon_sym_New] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_NEW] = ACTIONS(1893), + [anon_sym_Package] = ACTIONS(1893), + [anon_sym_package] = ACTIONS(1893), + [anon_sym_PACKAGE] = ACTIONS(1893), + [anon_sym_Private] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_PRIVATE] = ACTIONS(1893), + [anon_sym_Public] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_PUBLIC] = ACTIONS(1893), + [anon_sym_Remote] = ACTIONS(1893), + [anon_sym_remote] = ACTIONS(1893), + [anon_sym_REMOTE] = ACTIONS(1893), + [anon_sym_Static] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_STATIC] = ACTIONS(1893), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1882), + [sym__java_block_open] = ACTIONS(1888), + [sym__static_type_prefix] = ACTIONS(1888), + [sym__parameter_separator] = ACTIONS(1898), }, - [STATE(312)] = { - [sym_identifier] = ACTIONS(1885), + [STATE(313)] = { + [sym_identifier] = ACTIONS(1862), [anon_sym_DOT] = ACTIONS(406), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_Query] = ACTIONS(1897), - [anon_sym_query] = ACTIONS(1897), - [anon_sym_QUERY] = ACTIONS(1897), - [sym_array_return_suffix] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1872), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), [anon_sym_PLUS_EQ] = ACTIONS(432), @@ -91478,7 +91754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(432), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), [anon_sym_AMP_AMP] = ACTIONS(406), [anon_sym_PIPE_PIPE] = ACTIONS(406), [anon_sym_GT_GT] = ACTIONS(406), @@ -91487,9 +91763,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(406), [anon_sym_CARET] = ACTIONS(406), [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), [anon_sym_PERCENT] = ACTIONS(406), [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), @@ -91509,128 +91785,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1892), - [aux_sym_unary_operator_token1] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1897), - [aux_sym_number_token2] = ACTIONS(1897), - [anon_sym_This] = ACTIONS(1897), - [anon_sym_this] = ACTIONS(1897), - [anon_sym_THIS] = ACTIONS(1897), - [anon_sym_Super] = ACTIONS(1897), - [anon_sym_super] = ACTIONS(1897), - [anon_sym_SUPER] = ACTIONS(1897), - [anon_sym_True] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_TRUE] = ACTIONS(1897), - [anon_sym_False] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_FALSE] = ACTIONS(1897), - [anon_sym_Null] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_NULL] = ACTIONS(1897), - [anon_sym_Undefined] = ACTIONS(1897), - [anon_sym_undefined] = ACTIONS(1897), - [anon_sym_UNDEFINED] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(1897), - [sym_hash_empty] = ACTIONS(1892), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_QueryExecute] = ACTIONS(1897), - [anon_sym_queryexecute] = ACTIONS(1897), - [anon_sym_QUERYEXECUTE] = ACTIONS(1897), - [anon_sym_queryExecute] = ACTIONS(1897), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_Abstract] = ACTIONS(1897), - [anon_sym_abstract] = ACTIONS(1897), - [anon_sym_ABSTRACT] = ACTIONS(1897), - [anon_sym_Component] = ACTIONS(1897), - [anon_sym_component] = ACTIONS(1897), - [anon_sym_COMPONENT] = ACTIONS(1897), - [anon_sym_Debugger] = ACTIONS(1897), - [anon_sym_debugger] = ACTIONS(1897), - [anon_sym_DEBUGGER] = ACTIONS(1897), - [anon_sym_Final] = ACTIONS(1897), - [anon_sym_final] = ACTIONS(1897), - [anon_sym_FINAL] = ACTIONS(1897), - [anon_sym_Function] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1897), - [anon_sym_FUNCTION] = ACTIONS(1897), - [anon_sym_In] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_IN] = ACTIONS(1899), - [anon_sym_Include] = ACTIONS(1897), - [anon_sym_include] = ACTIONS(1897), - [anon_sym_INCLUDE] = ACTIONS(1897), - [anon_sym_InstanceOf] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_INSTANCEOF] = ACTIONS(1899), - [anon_sym_instanceOf] = ACTIONS(1899), - [anon_sym_New] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_NEW] = ACTIONS(1897), - [anon_sym_Package] = ACTIONS(1897), - [anon_sym_package] = ACTIONS(1897), - [anon_sym_PACKAGE] = ACTIONS(1897), - [anon_sym_Private] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_PRIVATE] = ACTIONS(1897), - [anon_sym_Public] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_PUBLIC] = ACTIONS(1897), - [anon_sym_Remote] = ACTIONS(1897), - [anon_sym_remote] = ACTIONS(1897), - [anon_sym_REMOTE] = ACTIONS(1897), - [anon_sym_Static] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_STATIC] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1843), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_IN] = ACTIONS(1872), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1872), + [anon_sym_instanceof] = ACTIONS(1872), + [anon_sym_INSTANCEOF] = ACTIONS(1872), + [anon_sym_instanceOf] = ACTIONS(1872), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1892), - [sym__static_type_prefix] = ACTIONS(1892), - [sym__parameter_separator] = ACTIONS(1902), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1875), }, - [STATE(313)] = { - [sym_identifier] = ACTIONS(1869), + [STATE(314)] = { + [sym_identifier] = ACTIONS(1862), [anon_sym_DOT] = ACTIONS(406), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1872), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1872), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), [anon_sym_PLUS_EQ] = ACTIONS(432), @@ -91648,7 +91924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(432), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), [anon_sym_AMP_AMP] = ACTIONS(406), [anon_sym_PIPE_PIPE] = ACTIONS(406), [anon_sym_GT_GT] = ACTIONS(406), @@ -91657,9 +91933,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(406), [anon_sym_CARET] = ACTIONS(406), [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), [anon_sym_PERCENT] = ACTIONS(406), [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), @@ -91679,128 +91955,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1847), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_IN] = ACTIONS(1879), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1879), - [anon_sym_instanceof] = ACTIONS(1879), - [anon_sym_INSTANCEOF] = ACTIONS(1879), - [anon_sym_instanceOf] = ACTIONS(1879), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1843), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_IN] = ACTIONS(1872), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1872), + [anon_sym_instanceof] = ACTIONS(1872), + [anon_sym_INSTANCEOF] = ACTIONS(1872), + [anon_sym_instanceOf] = ACTIONS(1872), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1882), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1875), }, - [STATE(314)] = { - [sym_identifier] = ACTIONS(1869), + [STATE(315)] = { + [sym_identifier] = ACTIONS(1881), [anon_sym_DOT] = ACTIONS(406), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1879), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_Query] = ACTIONS(1893), + [anon_sym_query] = ACTIONS(1893), + [anon_sym_QUERY] = ACTIONS(1893), + [sym_array_return_suffix] = ACTIONS(1888), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1895), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), [anon_sym_PLUS_EQ] = ACTIONS(432), @@ -91818,7 +92094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(432), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1888), [anon_sym_AMP_AMP] = ACTIONS(406), [anon_sym_PIPE_PIPE] = ACTIONS(406), [anon_sym_GT_GT] = ACTIONS(406), @@ -91827,9 +92103,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(406), [anon_sym_CARET] = ACTIONS(406), [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_SLASH] = ACTIONS(1895), [anon_sym_PERCENT] = ACTIONS(406), [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), @@ -91849,128 +92125,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1847), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_IN] = ACTIONS(1879), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1879), - [anon_sym_instanceof] = ACTIONS(1879), - [anon_sym_INSTANCEOF] = ACTIONS(1879), - [anon_sym_instanceOf] = ACTIONS(1879), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1888), + [aux_sym_unary_operator_token1] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1893), + [aux_sym_number_token2] = ACTIONS(1893), + [anon_sym_This] = ACTIONS(1893), + [anon_sym_this] = ACTIONS(1893), + [anon_sym_THIS] = ACTIONS(1893), + [anon_sym_Super] = ACTIONS(1893), + [anon_sym_super] = ACTIONS(1893), + [anon_sym_SUPER] = ACTIONS(1893), + [anon_sym_True] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_TRUE] = ACTIONS(1893), + [anon_sym_False] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_FALSE] = ACTIONS(1893), + [anon_sym_Null] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [anon_sym_NULL] = ACTIONS(1893), + [anon_sym_Undefined] = ACTIONS(1893), + [anon_sym_undefined] = ACTIONS(1893), + [anon_sym_UNDEFINED] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(1893), + [sym_hash_empty] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_QueryExecute] = ACTIONS(1893), + [anon_sym_queryexecute] = ACTIONS(1893), + [anon_sym_QUERYEXECUTE] = ACTIONS(1893), + [anon_sym_queryExecute] = ACTIONS(1893), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_Abstract] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_ABSTRACT] = ACTIONS(1893), + [anon_sym_Component] = ACTIONS(1893), + [anon_sym_component] = ACTIONS(1893), + [anon_sym_COMPONENT] = ACTIONS(1893), + [anon_sym_Debugger] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_DEBUGGER] = ACTIONS(1893), + [anon_sym_Final] = ACTIONS(1893), + [anon_sym_final] = ACTIONS(1893), + [anon_sym_FINAL] = ACTIONS(1893), + [anon_sym_Function] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), + [anon_sym_FUNCTION] = ACTIONS(1893), + [anon_sym_In] = ACTIONS(1895), + [anon_sym_in] = ACTIONS(1895), + [anon_sym_IN] = ACTIONS(1895), + [anon_sym_Include] = ACTIONS(1893), + [anon_sym_include] = ACTIONS(1893), + [anon_sym_INCLUDE] = ACTIONS(1893), + [anon_sym_InstanceOf] = ACTIONS(1895), + [anon_sym_instanceof] = ACTIONS(1895), + [anon_sym_INSTANCEOF] = ACTIONS(1895), + [anon_sym_instanceOf] = ACTIONS(1895), + [anon_sym_New] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_NEW] = ACTIONS(1893), + [anon_sym_Package] = ACTIONS(1893), + [anon_sym_package] = ACTIONS(1893), + [anon_sym_PACKAGE] = ACTIONS(1893), + [anon_sym_Private] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_PRIVATE] = ACTIONS(1893), + [anon_sym_Public] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_PUBLIC] = ACTIONS(1893), + [anon_sym_Remote] = ACTIONS(1893), + [anon_sym_remote] = ACTIONS(1893), + [anon_sym_REMOTE] = ACTIONS(1893), + [anon_sym_Static] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_STATIC] = ACTIONS(1893), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1882), + [sym__java_block_open] = ACTIONS(1888), + [sym__static_type_prefix] = ACTIONS(1888), + [sym__parameter_separator] = ACTIONS(1898), }, - [STATE(315)] = { - [sym_identifier] = ACTIONS(1885), + [STATE(316)] = { + [sym_identifier] = ACTIONS(1881), [anon_sym_DOT] = ACTIONS(406), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_RPAREN] = ACTIONS(1902), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_Query] = ACTIONS(1897), - [anon_sym_query] = ACTIONS(1897), - [anon_sym_QUERY] = ACTIONS(1897), - [sym_array_return_suffix] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_Query] = ACTIONS(1893), + [anon_sym_query] = ACTIONS(1893), + [anon_sym_QUERY] = ACTIONS(1893), + [sym_array_return_suffix] = ACTIONS(1888), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1895), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1895), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), [anon_sym_PLUS_EQ] = ACTIONS(432), @@ -91988,7 +92264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(432), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1888), [anon_sym_AMP_AMP] = ACTIONS(406), [anon_sym_PIPE_PIPE] = ACTIONS(406), [anon_sym_GT_GT] = ACTIONS(406), @@ -91997,9 +92273,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(406), [anon_sym_CARET] = ACTIONS(406), [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_SLASH] = ACTIONS(1895), [anon_sym_PERCENT] = ACTIONS(406), [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), @@ -92019,128 +92295,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1892), - [aux_sym_unary_operator_token1] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1897), - [aux_sym_number_token2] = ACTIONS(1897), - [anon_sym_This] = ACTIONS(1897), - [anon_sym_this] = ACTIONS(1897), - [anon_sym_THIS] = ACTIONS(1897), - [anon_sym_Super] = ACTIONS(1897), - [anon_sym_super] = ACTIONS(1897), - [anon_sym_SUPER] = ACTIONS(1897), - [anon_sym_True] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_TRUE] = ACTIONS(1897), - [anon_sym_False] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_FALSE] = ACTIONS(1897), - [anon_sym_Null] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_NULL] = ACTIONS(1897), - [anon_sym_Undefined] = ACTIONS(1897), - [anon_sym_undefined] = ACTIONS(1897), - [anon_sym_UNDEFINED] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(1897), - [sym_hash_empty] = ACTIONS(1892), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_QueryExecute] = ACTIONS(1897), - [anon_sym_queryexecute] = ACTIONS(1897), - [anon_sym_QUERYEXECUTE] = ACTIONS(1897), - [anon_sym_queryExecute] = ACTIONS(1897), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_Abstract] = ACTIONS(1897), - [anon_sym_abstract] = ACTIONS(1897), - [anon_sym_ABSTRACT] = ACTIONS(1897), - [anon_sym_Component] = ACTIONS(1897), - [anon_sym_component] = ACTIONS(1897), - [anon_sym_COMPONENT] = ACTIONS(1897), - [anon_sym_Debugger] = ACTIONS(1897), - [anon_sym_debugger] = ACTIONS(1897), - [anon_sym_DEBUGGER] = ACTIONS(1897), - [anon_sym_Final] = ACTIONS(1897), - [anon_sym_final] = ACTIONS(1897), - [anon_sym_FINAL] = ACTIONS(1897), - [anon_sym_Function] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1897), - [anon_sym_FUNCTION] = ACTIONS(1897), - [anon_sym_In] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_IN] = ACTIONS(1899), - [anon_sym_Include] = ACTIONS(1897), - [anon_sym_include] = ACTIONS(1897), - [anon_sym_INCLUDE] = ACTIONS(1897), - [anon_sym_InstanceOf] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_INSTANCEOF] = ACTIONS(1899), - [anon_sym_instanceOf] = ACTIONS(1899), - [anon_sym_New] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_NEW] = ACTIONS(1897), - [anon_sym_Package] = ACTIONS(1897), - [anon_sym_package] = ACTIONS(1897), - [anon_sym_PACKAGE] = ACTIONS(1897), - [anon_sym_Private] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_PRIVATE] = ACTIONS(1897), - [anon_sym_Public] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_PUBLIC] = ACTIONS(1897), - [anon_sym_Remote] = ACTIONS(1897), - [anon_sym_remote] = ACTIONS(1897), - [anon_sym_REMOTE] = ACTIONS(1897), - [anon_sym_Static] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_STATIC] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1888), + [aux_sym_unary_operator_token1] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1893), + [aux_sym_number_token2] = ACTIONS(1893), + [anon_sym_This] = ACTIONS(1893), + [anon_sym_this] = ACTIONS(1893), + [anon_sym_THIS] = ACTIONS(1893), + [anon_sym_Super] = ACTIONS(1893), + [anon_sym_super] = ACTIONS(1893), + [anon_sym_SUPER] = ACTIONS(1893), + [anon_sym_True] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_TRUE] = ACTIONS(1893), + [anon_sym_False] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_FALSE] = ACTIONS(1893), + [anon_sym_Null] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [anon_sym_NULL] = ACTIONS(1893), + [anon_sym_Undefined] = ACTIONS(1893), + [anon_sym_undefined] = ACTIONS(1893), + [anon_sym_UNDEFINED] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(1893), + [sym_hash_empty] = ACTIONS(1888), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_QueryExecute] = ACTIONS(1893), + [anon_sym_queryexecute] = ACTIONS(1893), + [anon_sym_QUERYEXECUTE] = ACTIONS(1893), + [anon_sym_queryExecute] = ACTIONS(1893), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_Abstract] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_ABSTRACT] = ACTIONS(1893), + [anon_sym_Component] = ACTIONS(1893), + [anon_sym_component] = ACTIONS(1893), + [anon_sym_COMPONENT] = ACTIONS(1893), + [anon_sym_Debugger] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_DEBUGGER] = ACTIONS(1893), + [anon_sym_Final] = ACTIONS(1893), + [anon_sym_final] = ACTIONS(1893), + [anon_sym_FINAL] = ACTIONS(1893), + [anon_sym_Function] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), + [anon_sym_FUNCTION] = ACTIONS(1893), + [anon_sym_In] = ACTIONS(1895), + [anon_sym_in] = ACTIONS(1895), + [anon_sym_IN] = ACTIONS(1895), + [anon_sym_Include] = ACTIONS(1893), + [anon_sym_include] = ACTIONS(1893), + [anon_sym_INCLUDE] = ACTIONS(1893), + [anon_sym_InstanceOf] = ACTIONS(1895), + [anon_sym_instanceof] = ACTIONS(1895), + [anon_sym_INSTANCEOF] = ACTIONS(1895), + [anon_sym_instanceOf] = ACTIONS(1895), + [anon_sym_New] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_NEW] = ACTIONS(1893), + [anon_sym_Package] = ACTIONS(1893), + [anon_sym_package] = ACTIONS(1893), + [anon_sym_PACKAGE] = ACTIONS(1893), + [anon_sym_Private] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_PRIVATE] = ACTIONS(1893), + [anon_sym_Public] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_PUBLIC] = ACTIONS(1893), + [anon_sym_Remote] = ACTIONS(1893), + [anon_sym_remote] = ACTIONS(1893), + [anon_sym_REMOTE] = ACTIONS(1893), + [anon_sym_Static] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_STATIC] = ACTIONS(1893), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1892), - [sym__static_type_prefix] = ACTIONS(1892), - [sym__parameter_separator] = ACTIONS(1902), + [sym__java_block_open] = ACTIONS(1888), + [sym__static_type_prefix] = ACTIONS(1888), + [sym__parameter_separator] = ACTIONS(1898), }, - [STATE(316)] = { - [sym_identifier] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(406), + [STATE(317)] = { + [sym_identifier] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_Query] = ACTIONS(1897), - [anon_sym_query] = ACTIONS(1897), - [anon_sym_QUERY] = ACTIONS(1897), - [sym_array_return_suffix] = ACTIONS(1892), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1899), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(406), + [anon_sym_query] = ACTIONS(406), + [anon_sym_QUERY] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(1118), + [anon_sym_DASH_GT] = ACTIONS(1118), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), [anon_sym_PLUS_EQ] = ACTIONS(432), @@ -92158,7 +92433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(432), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(406), [anon_sym_PIPE_PIPE] = ACTIONS(406), [anon_sym_GT_GT] = ACTIONS(406), @@ -92167,9 +92441,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(406), [anon_sym_CARET] = ACTIONS(406), [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), @@ -92189,95 +92463,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(404), [aux_sym_binary_expression_token6] = ACTIONS(404), [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1892), - [aux_sym_unary_operator_token1] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1897), - [aux_sym_number_token2] = ACTIONS(1897), - [anon_sym_This] = ACTIONS(1897), - [anon_sym_this] = ACTIONS(1897), - [anon_sym_THIS] = ACTIONS(1897), - [anon_sym_Super] = ACTIONS(1897), - [anon_sym_super] = ACTIONS(1897), - [anon_sym_SUPER] = ACTIONS(1897), - [anon_sym_True] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_TRUE] = ACTIONS(1897), - [anon_sym_False] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_FALSE] = ACTIONS(1897), - [anon_sym_Null] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_NULL] = ACTIONS(1897), - [anon_sym_Undefined] = ACTIONS(1897), - [anon_sym_undefined] = ACTIONS(1897), - [anon_sym_UNDEFINED] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(1897), - [sym_hash_empty] = ACTIONS(1892), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_QueryExecute] = ACTIONS(1897), - [anon_sym_queryexecute] = ACTIONS(1897), - [anon_sym_QUERYEXECUTE] = ACTIONS(1897), - [anon_sym_queryExecute] = ACTIONS(1897), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_Abstract] = ACTIONS(1897), - [anon_sym_abstract] = ACTIONS(1897), - [anon_sym_ABSTRACT] = ACTIONS(1897), - [anon_sym_Component] = ACTIONS(1897), - [anon_sym_component] = ACTIONS(1897), - [anon_sym_COMPONENT] = ACTIONS(1897), - [anon_sym_Debugger] = ACTIONS(1897), - [anon_sym_debugger] = ACTIONS(1897), - [anon_sym_DEBUGGER] = ACTIONS(1897), - [anon_sym_Final] = ACTIONS(1897), - [anon_sym_final] = ACTIONS(1897), - [anon_sym_FINAL] = ACTIONS(1897), - [anon_sym_Function] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(1897), - [anon_sym_FUNCTION] = ACTIONS(1897), - [anon_sym_In] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_IN] = ACTIONS(1899), - [anon_sym_Include] = ACTIONS(1897), - [anon_sym_include] = ACTIONS(1897), - [anon_sym_INCLUDE] = ACTIONS(1897), - [anon_sym_InstanceOf] = ACTIONS(1899), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_INSTANCEOF] = ACTIONS(1899), - [anon_sym_instanceOf] = ACTIONS(1899), - [anon_sym_New] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_NEW] = ACTIONS(1897), - [anon_sym_Package] = ACTIONS(1897), - [anon_sym_package] = ACTIONS(1897), - [anon_sym_PACKAGE] = ACTIONS(1897), - [anon_sym_Private] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_PRIVATE] = ACTIONS(1897), - [anon_sym_Public] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_PUBLIC] = ACTIONS(1897), - [anon_sym_Remote] = ACTIONS(1897), - [anon_sym_remote] = ACTIONS(1897), - [anon_sym_REMOTE] = ACTIONS(1897), - [anon_sym_Static] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_STATIC] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(404), + [aux_sym_unary_operator_token1] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_DQUOTE] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(406), + [aux_sym_number_token2] = ACTIONS(406), + [anon_sym_This] = ACTIONS(406), + [anon_sym_this] = ACTIONS(406), + [anon_sym_THIS] = ACTIONS(406), + [anon_sym_Super] = ACTIONS(406), + [anon_sym_super] = ACTIONS(406), + [anon_sym_SUPER] = ACTIONS(406), + [anon_sym_True] = ACTIONS(406), + [anon_sym_true] = ACTIONS(406), + [anon_sym_TRUE] = ACTIONS(406), + [anon_sym_False] = ACTIONS(406), + [anon_sym_false] = ACTIONS(406), + [anon_sym_FALSE] = ACTIONS(406), + [anon_sym_Null] = ACTIONS(406), + [anon_sym_null] = ACTIONS(406), + [anon_sym_NULL] = ACTIONS(406), + [anon_sym_Undefined] = ACTIONS(406), + [anon_sym_undefined] = ACTIONS(406), + [anon_sym_UNDEFINED] = ACTIONS(406), + [anon_sym_get] = ACTIONS(406), + [anon_sym_set] = ACTIONS(406), + [anon_sym_POUND] = ACTIONS(406), + [sym_hash_empty] = ACTIONS(404), + [anon_sym_export] = ACTIONS(406), + [anon_sym_QueryExecute] = ACTIONS(406), + [anon_sym_queryexecute] = ACTIONS(406), + [anon_sym_QUERYEXECUTE] = ACTIONS(406), + [anon_sym_queryExecute] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_Abstract] = ACTIONS(406), + [anon_sym_abstract] = ACTIONS(406), + [anon_sym_ABSTRACT] = ACTIONS(406), + [anon_sym_Component] = ACTIONS(406), + [anon_sym_component] = ACTIONS(406), + [anon_sym_COMPONENT] = ACTIONS(406), + [anon_sym_Debugger] = ACTIONS(406), + [anon_sym_debugger] = ACTIONS(406), + [anon_sym_DEBUGGER] = ACTIONS(406), + [anon_sym_Final] = ACTIONS(406), + [anon_sym_final] = ACTIONS(406), + [anon_sym_FINAL] = ACTIONS(406), + [anon_sym_Function] = ACTIONS(406), + [anon_sym_function] = ACTIONS(406), + [anon_sym_FUNCTION] = ACTIONS(406), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(406), + [anon_sym_include] = ACTIONS(406), + [anon_sym_INCLUDE] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(406), + [anon_sym_new] = ACTIONS(406), + [anon_sym_NEW] = ACTIONS(406), + [anon_sym_Package] = ACTIONS(406), + [anon_sym_package] = ACTIONS(406), + [anon_sym_PACKAGE] = ACTIONS(406), + [anon_sym_Private] = ACTIONS(406), + [anon_sym_private] = ACTIONS(406), + [anon_sym_PRIVATE] = ACTIONS(406), + [anon_sym_Public] = ACTIONS(406), + [anon_sym_public] = ACTIONS(406), + [anon_sym_PUBLIC] = ACTIONS(406), + [anon_sym_Remote] = ACTIONS(406), + [anon_sym_remote] = ACTIONS(406), + [anon_sym_REMOTE] = ACTIONS(406), + [anon_sym_Static] = ACTIONS(406), + [anon_sym_static] = ACTIONS(406), + [anon_sym_STATIC] = ACTIONS(406), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(1892), - [sym__static_type_prefix] = ACTIONS(1892), - [sym__parameter_separator] = ACTIONS(1902), + [sym_tag_linefeed] = ACTIONS(404), + [sym__java_block_open] = ACTIONS(404), + [sym__static_type_prefix] = ACTIONS(404), }, - [STATE(317)] = { + [STATE(318)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), @@ -92286,13 +92561,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), [anon_sym_QUERY] = ACTIONS(507), - [anon_sym_EQ_GT] = ACTIONS(1907), - [anon_sym_DASH_GT] = ACTIONS(1907), + [anon_sym_EQ_GT] = ACTIONS(1903), + [anon_sym_DASH_GT] = ACTIONS(1903), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -92446,191 +92721,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(318)] = { + [STATE(319)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1905), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1191), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(406), [anon_sym_query] = ACTIONS(406), [anon_sym_QUERY] = ACTIONS(406), - [anon_sym_EQ_GT] = ACTIONS(1145), - [anon_sym_DASH_GT] = ACTIONS(1145), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(404), - [aux_sym_unary_operator_token1] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(404), - [anon_sym_SQUOTE] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(406), - [aux_sym_number_token2] = ACTIONS(406), - [anon_sym_This] = ACTIONS(406), - [anon_sym_this] = ACTIONS(406), - [anon_sym_THIS] = ACTIONS(406), - [anon_sym_Super] = ACTIONS(406), - [anon_sym_super] = ACTIONS(406), - [anon_sym_SUPER] = ACTIONS(406), - [anon_sym_True] = ACTIONS(406), - [anon_sym_true] = ACTIONS(406), - [anon_sym_TRUE] = ACTIONS(406), - [anon_sym_False] = ACTIONS(406), - [anon_sym_false] = ACTIONS(406), - [anon_sym_FALSE] = ACTIONS(406), - [anon_sym_Null] = ACTIONS(406), - [anon_sym_null] = ACTIONS(406), - [anon_sym_NULL] = ACTIONS(406), - [anon_sym_Undefined] = ACTIONS(406), - [anon_sym_undefined] = ACTIONS(406), - [anon_sym_UNDEFINED] = ACTIONS(406), - [anon_sym_get] = ACTIONS(406), - [anon_sym_set] = ACTIONS(406), - [anon_sym_POUND] = ACTIONS(406), - [sym_hash_empty] = ACTIONS(404), - [anon_sym_export] = ACTIONS(406), - [anon_sym_QueryExecute] = ACTIONS(406), - [anon_sym_queryexecute] = ACTIONS(406), - [anon_sym_QUERYEXECUTE] = ACTIONS(406), - [anon_sym_queryExecute] = ACTIONS(406), - [anon_sym_BQUOTE] = ACTIONS(404), - [anon_sym_Abstract] = ACTIONS(406), - [anon_sym_abstract] = ACTIONS(406), - [anon_sym_ABSTRACT] = ACTIONS(406), - [anon_sym_Component] = ACTIONS(406), - [anon_sym_component] = ACTIONS(406), - [anon_sym_COMPONENT] = ACTIONS(406), - [anon_sym_Debugger] = ACTIONS(406), - [anon_sym_debugger] = ACTIONS(406), - [anon_sym_DEBUGGER] = ACTIONS(406), - [anon_sym_Final] = ACTIONS(406), - [anon_sym_final] = ACTIONS(406), - [anon_sym_FINAL] = ACTIONS(406), - [anon_sym_Function] = ACTIONS(406), - [anon_sym_function] = ACTIONS(406), - [anon_sym_FUNCTION] = ACTIONS(406), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(406), - [anon_sym_include] = ACTIONS(406), - [anon_sym_INCLUDE] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(406), - [anon_sym_new] = ACTIONS(406), - [anon_sym_NEW] = ACTIONS(406), - [anon_sym_Package] = ACTIONS(406), - [anon_sym_package] = ACTIONS(406), - [anon_sym_PACKAGE] = ACTIONS(406), - [anon_sym_Private] = ACTIONS(406), - [anon_sym_private] = ACTIONS(406), - [anon_sym_PRIVATE] = ACTIONS(406), - [anon_sym_Public] = ACTIONS(406), - [anon_sym_public] = ACTIONS(406), - [anon_sym_PUBLIC] = ACTIONS(406), - [anon_sym_Remote] = ACTIONS(406), - [anon_sym_remote] = ACTIONS(406), - [anon_sym_REMOTE] = ACTIONS(406), - [anon_sym_Static] = ACTIONS(406), - [anon_sym_static] = ACTIONS(406), - [anon_sym_STATIC] = ACTIONS(406), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), - [sym__java_block_open] = ACTIONS(404), - [sym__static_type_prefix] = ACTIONS(404), - }, - [STATE(319)] = { - [sym_identifier] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(406), - [anon_sym_query] = ACTIONS(406), - [anon_sym_QUERY] = ACTIONS(406), - [anon_sym_EQ_GT] = ACTIONS(1145), - [anon_sym_DASH_GT] = ACTIONS(1145), + [anon_sym_EQ_GT] = ACTIONS(1118), + [anon_sym_DASH_GT] = ACTIONS(1118), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -92785,175 +92891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(404), }, [STATE(320)] = { - [sym_identifier] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_COLON] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_Query] = ACTIONS(1912), - [anon_sym_query] = ACTIONS(1912), - [anon_sym_QUERY] = ACTIONS(1912), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1914), - [aux_sym_unary_operator_token1] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1914), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1912), - [aux_sym_number_token2] = ACTIONS(1912), - [anon_sym_This] = ACTIONS(1912), - [anon_sym_this] = ACTIONS(1912), - [anon_sym_THIS] = ACTIONS(1912), - [anon_sym_Super] = ACTIONS(1912), - [anon_sym_super] = ACTIONS(1912), - [anon_sym_SUPER] = ACTIONS(1912), - [anon_sym_True] = ACTIONS(1912), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_TRUE] = ACTIONS(1912), - [anon_sym_False] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [anon_sym_FALSE] = ACTIONS(1912), - [anon_sym_Null] = ACTIONS(1912), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_Undefined] = ACTIONS(1912), - [anon_sym_undefined] = ACTIONS(1912), - [anon_sym_UNDEFINED] = ACTIONS(1912), - [anon_sym_get] = ACTIONS(1912), - [anon_sym_set] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1912), - [sym_hash_empty] = ACTIONS(1914), - [anon_sym_export] = ACTIONS(1912), - [anon_sym_QueryExecute] = ACTIONS(1912), - [anon_sym_queryexecute] = ACTIONS(1912), - [anon_sym_QUERYEXECUTE] = ACTIONS(1912), - [anon_sym_queryExecute] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1914), - [anon_sym_Abstract] = ACTIONS(1912), - [anon_sym_abstract] = ACTIONS(1912), - [anon_sym_ABSTRACT] = ACTIONS(1912), - [anon_sym_Component] = ACTIONS(1912), - [anon_sym_component] = ACTIONS(1912), - [anon_sym_COMPONENT] = ACTIONS(1912), - [anon_sym_Debugger] = ACTIONS(1912), - [anon_sym_debugger] = ACTIONS(1912), - [anon_sym_DEBUGGER] = ACTIONS(1912), - [anon_sym_Final] = ACTIONS(1912), - [anon_sym_final] = ACTIONS(1912), - [anon_sym_FINAL] = ACTIONS(1912), - [anon_sym_Function] = ACTIONS(1912), - [anon_sym_function] = ACTIONS(1912), - [anon_sym_FUNCTION] = ACTIONS(1912), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(1912), - [anon_sym_include] = ACTIONS(1912), - [anon_sym_INCLUDE] = ACTIONS(1912), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_NEW] = ACTIONS(1912), - [anon_sym_Package] = ACTIONS(1912), - [anon_sym_package] = ACTIONS(1912), - [anon_sym_PACKAGE] = ACTIONS(1912), - [anon_sym_Private] = ACTIONS(1912), - [anon_sym_private] = ACTIONS(1912), - [anon_sym_PRIVATE] = ACTIONS(1912), - [anon_sym_Public] = ACTIONS(1912), - [anon_sym_public] = ACTIONS(1912), - [anon_sym_PUBLIC] = ACTIONS(1912), - [anon_sym_Remote] = ACTIONS(1912), - [anon_sym_remote] = ACTIONS(1912), - [anon_sym_REMOTE] = ACTIONS(1912), - [anon_sym_Static] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_STATIC] = ACTIONS(1912), - [sym__automatic_semicolon] = ACTIONS(1914), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1914), - [sym__java_block_open] = ACTIONS(1914), - [sym__static_type_prefix] = ACTIONS(1914), - }, - [STATE(321)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), @@ -92962,13 +92899,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), [anon_sym_QUERY] = ACTIONS(507), - [anon_sym_EQ_GT] = ACTIONS(1907), - [anon_sym_DASH_GT] = ACTIONS(1907), + [anon_sym_EQ_GT] = ACTIONS(1903), + [anon_sym_DASH_GT] = ACTIONS(1903), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -93122,22 +93059,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, + [STATE(321)] = { + [sym_identifier] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_COLON] = ACTIONS(1912), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_Query] = ACTIONS(1908), + [anon_sym_query] = ACTIONS(1908), + [anon_sym_QUERY] = ACTIONS(1908), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1910), + [aux_sym_unary_operator_token1] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1908), + [aux_sym_number_token2] = ACTIONS(1908), + [anon_sym_This] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(1908), + [anon_sym_THIS] = ACTIONS(1908), + [anon_sym_Super] = ACTIONS(1908), + [anon_sym_super] = ACTIONS(1908), + [anon_sym_SUPER] = ACTIONS(1908), + [anon_sym_True] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_TRUE] = ACTIONS(1908), + [anon_sym_False] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [anon_sym_FALSE] = ACTIONS(1908), + [anon_sym_Null] = ACTIONS(1908), + [anon_sym_null] = ACTIONS(1908), + [anon_sym_NULL] = ACTIONS(1908), + [anon_sym_Undefined] = ACTIONS(1908), + [anon_sym_undefined] = ACTIONS(1908), + [anon_sym_UNDEFINED] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [sym_hash_empty] = ACTIONS(1910), + [anon_sym_export] = ACTIONS(1908), + [anon_sym_QueryExecute] = ACTIONS(1908), + [anon_sym_queryexecute] = ACTIONS(1908), + [anon_sym_QUERYEXECUTE] = ACTIONS(1908), + [anon_sym_queryExecute] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1910), + [anon_sym_Abstract] = ACTIONS(1908), + [anon_sym_abstract] = ACTIONS(1908), + [anon_sym_ABSTRACT] = ACTIONS(1908), + [anon_sym_Component] = ACTIONS(1908), + [anon_sym_component] = ACTIONS(1908), + [anon_sym_COMPONENT] = ACTIONS(1908), + [anon_sym_Debugger] = ACTIONS(1908), + [anon_sym_debugger] = ACTIONS(1908), + [anon_sym_DEBUGGER] = ACTIONS(1908), + [anon_sym_Final] = ACTIONS(1908), + [anon_sym_final] = ACTIONS(1908), + [anon_sym_FINAL] = ACTIONS(1908), + [anon_sym_Function] = ACTIONS(1908), + [anon_sym_function] = ACTIONS(1908), + [anon_sym_FUNCTION] = ACTIONS(1908), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(1908), + [anon_sym_include] = ACTIONS(1908), + [anon_sym_INCLUDE] = ACTIONS(1908), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(1908), + [anon_sym_new] = ACTIONS(1908), + [anon_sym_NEW] = ACTIONS(1908), + [anon_sym_Package] = ACTIONS(1908), + [anon_sym_package] = ACTIONS(1908), + [anon_sym_PACKAGE] = ACTIONS(1908), + [anon_sym_Private] = ACTIONS(1908), + [anon_sym_private] = ACTIONS(1908), + [anon_sym_PRIVATE] = ACTIONS(1908), + [anon_sym_Public] = ACTIONS(1908), + [anon_sym_public] = ACTIONS(1908), + [anon_sym_PUBLIC] = ACTIONS(1908), + [anon_sym_Remote] = ACTIONS(1908), + [anon_sym_remote] = ACTIONS(1908), + [anon_sym_REMOTE] = ACTIONS(1908), + [anon_sym_Static] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_STATIC] = ACTIONS(1908), + [sym__automatic_semicolon] = ACTIONS(1910), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(1910), + [sym__java_block_open] = ACTIONS(1910), + [sym__static_type_prefix] = ACTIONS(1910), + }, [STATE(322)] = { + [sym_identifier] = ACTIONS(1914), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_COLON] = ACTIONS(1912), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_Query] = ACTIONS(1914), + [anon_sym_query] = ACTIONS(1914), + [anon_sym_QUERY] = ACTIONS(1914), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1916), + [aux_sym_unary_operator_token1] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1914), + [aux_sym_number_token2] = ACTIONS(1914), + [anon_sym_This] = ACTIONS(1914), + [anon_sym_this] = ACTIONS(1914), + [anon_sym_THIS] = ACTIONS(1914), + [anon_sym_Super] = ACTIONS(1914), + [anon_sym_super] = ACTIONS(1914), + [anon_sym_SUPER] = ACTIONS(1914), + [anon_sym_True] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_TRUE] = ACTIONS(1914), + [anon_sym_False] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_FALSE] = ACTIONS(1914), + [anon_sym_Null] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1914), + [anon_sym_Undefined] = ACTIONS(1914), + [anon_sym_undefined] = ACTIONS(1914), + [anon_sym_UNDEFINED] = ACTIONS(1914), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [sym_hash_empty] = ACTIONS(1916), + [anon_sym_export] = ACTIONS(1914), + [anon_sym_QueryExecute] = ACTIONS(1914), + [anon_sym_queryexecute] = ACTIONS(1914), + [anon_sym_QUERYEXECUTE] = ACTIONS(1914), + [anon_sym_queryExecute] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_Abstract] = ACTIONS(1914), + [anon_sym_abstract] = ACTIONS(1914), + [anon_sym_ABSTRACT] = ACTIONS(1914), + [anon_sym_Component] = ACTIONS(1914), + [anon_sym_component] = ACTIONS(1914), + [anon_sym_COMPONENT] = ACTIONS(1914), + [anon_sym_Debugger] = ACTIONS(1914), + [anon_sym_debugger] = ACTIONS(1914), + [anon_sym_DEBUGGER] = ACTIONS(1914), + [anon_sym_Final] = ACTIONS(1914), + [anon_sym_final] = ACTIONS(1914), + [anon_sym_FINAL] = ACTIONS(1914), + [anon_sym_Function] = ACTIONS(1914), + [anon_sym_function] = ACTIONS(1914), + [anon_sym_FUNCTION] = ACTIONS(1914), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(1914), + [anon_sym_include] = ACTIONS(1914), + [anon_sym_INCLUDE] = ACTIONS(1914), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(1914), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_NEW] = ACTIONS(1914), + [anon_sym_Package] = ACTIONS(1914), + [anon_sym_package] = ACTIONS(1914), + [anon_sym_PACKAGE] = ACTIONS(1914), + [anon_sym_Private] = ACTIONS(1914), + [anon_sym_private] = ACTIONS(1914), + [anon_sym_PRIVATE] = ACTIONS(1914), + [anon_sym_Public] = ACTIONS(1914), + [anon_sym_public] = ACTIONS(1914), + [anon_sym_PUBLIC] = ACTIONS(1914), + [anon_sym_Remote] = ACTIONS(1914), + [anon_sym_remote] = ACTIONS(1914), + [anon_sym_REMOTE] = ACTIONS(1914), + [anon_sym_Static] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_STATIC] = ACTIONS(1914), + [sym__automatic_semicolon] = ACTIONS(1916), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(1916), + [sym__java_block_open] = ACTIONS(1916), + [sym__static_type_prefix] = ACTIONS(1916), + }, + [STATE(323)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1191), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(406), [anon_sym_query] = ACTIONS(406), [anon_sym_QUERY] = ACTIONS(406), - [anon_sym_EQ_GT] = ACTIONS(1145), - [anon_sym_DASH_GT] = ACTIONS(1145), + [anon_sym_EQ_GT] = ACTIONS(1118), + [anon_sym_DASH_GT] = ACTIONS(1118), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -93291,191 +93566,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(404), [sym__static_type_prefix] = ACTIONS(404), }, - [STATE(323)] = { - [sym_identifier] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_COLON] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_Query] = ACTIONS(1921), - [anon_sym_query] = ACTIONS(1921), - [anon_sym_QUERY] = ACTIONS(1921), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1923), - [aux_sym_unary_operator_token1] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1921), - [aux_sym_number_token2] = ACTIONS(1921), - [anon_sym_This] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1921), - [anon_sym_THIS] = ACTIONS(1921), - [anon_sym_Super] = ACTIONS(1921), - [anon_sym_super] = ACTIONS(1921), - [anon_sym_SUPER] = ACTIONS(1921), - [anon_sym_True] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_TRUE] = ACTIONS(1921), - [anon_sym_False] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [anon_sym_FALSE] = ACTIONS(1921), - [anon_sym_Null] = ACTIONS(1921), - [anon_sym_null] = ACTIONS(1921), - [anon_sym_NULL] = ACTIONS(1921), - [anon_sym_Undefined] = ACTIONS(1921), - [anon_sym_undefined] = ACTIONS(1921), - [anon_sym_UNDEFINED] = ACTIONS(1921), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1921), - [sym_hash_empty] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_QueryExecute] = ACTIONS(1921), - [anon_sym_queryexecute] = ACTIONS(1921), - [anon_sym_QUERYEXECUTE] = ACTIONS(1921), - [anon_sym_queryExecute] = ACTIONS(1921), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_Abstract] = ACTIONS(1921), - [anon_sym_abstract] = ACTIONS(1921), - [anon_sym_ABSTRACT] = ACTIONS(1921), - [anon_sym_Component] = ACTIONS(1921), - [anon_sym_component] = ACTIONS(1921), - [anon_sym_COMPONENT] = ACTIONS(1921), - [anon_sym_Debugger] = ACTIONS(1921), - [anon_sym_debugger] = ACTIONS(1921), - [anon_sym_DEBUGGER] = ACTIONS(1921), - [anon_sym_Final] = ACTIONS(1921), - [anon_sym_final] = ACTIONS(1921), - [anon_sym_FINAL] = ACTIONS(1921), - [anon_sym_Function] = ACTIONS(1921), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_FUNCTION] = ACTIONS(1921), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(1921), - [anon_sym_include] = ACTIONS(1921), - [anon_sym_INCLUDE] = ACTIONS(1921), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_NEW] = ACTIONS(1921), - [anon_sym_Package] = ACTIONS(1921), - [anon_sym_package] = ACTIONS(1921), - [anon_sym_PACKAGE] = ACTIONS(1921), - [anon_sym_Private] = ACTIONS(1921), - [anon_sym_private] = ACTIONS(1921), - [anon_sym_PRIVATE] = ACTIONS(1921), - [anon_sym_Public] = ACTIONS(1921), - [anon_sym_public] = ACTIONS(1921), - [anon_sym_PUBLIC] = ACTIONS(1921), - [anon_sym_Remote] = ACTIONS(1921), - [anon_sym_remote] = ACTIONS(1921), - [anon_sym_REMOTE] = ACTIONS(1921), - [anon_sym_Static] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_STATIC] = ACTIONS(1921), - [sym__automatic_semicolon] = ACTIONS(1923), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(1923), - [sym__java_block_open] = ACTIONS(1923), - [sym__static_type_prefix] = ACTIONS(1923), - }, [STATE(324)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_let] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(406), [anon_sym_query] = ACTIONS(406), [anon_sym_QUERY] = ACTIONS(406), - [anon_sym_EQ_GT] = ACTIONS(1145), - [anon_sym_DASH_GT] = ACTIONS(1145), + [anon_sym_EQ_GT] = ACTIONS(1118), + [anon_sym_DASH_GT] = ACTIONS(1118), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -93630,106 +93736,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(404), }, [STATE(325)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3521), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5078), - [sym_string] = STATE(2619), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2619), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(3382), - [sym_hash_expression] = STATE(3382), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1925), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3534), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5243), + [sym_string] = STATE(2771), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2771), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(3145), + [sym_hash_expression] = STATE(3145), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1933), - [anon_sym_query] = ACTIONS(1933), - [anon_sym_QUERY] = ACTIONS(1933), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1929), + [anon_sym_query] = ACTIONS(1929), + [anon_sym_QUERY] = ACTIONS(1929), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -93742,162 +93848,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1937), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_QueryExecute] = ACTIONS(1939), - [anon_sym_queryexecute] = ACTIONS(1939), - [anon_sym_QUERYEXECUTE] = ACTIONS(1939), - [anon_sym_queryExecute] = ACTIONS(1939), + [sym_hash_empty] = ACTIONS(1933), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_QueryExecute] = ACTIONS(1935), + [anon_sym_queryexecute] = ACTIONS(1935), + [anon_sym_QUERYEXECUTE] = ACTIONS(1935), + [anon_sym_queryExecute] = ACTIONS(1935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_ABSTRACT] = ACTIONS(1929), - [anon_sym_Component] = ACTIONS(1941), - [anon_sym_component] = ACTIONS(1941), - [anon_sym_COMPONENT] = ACTIONS(1941), - [anon_sym_Debugger] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_DEBUGGER] = ACTIONS(1929), - [anon_sym_Final] = ACTIONS(1929), - [anon_sym_final] = ACTIONS(1929), - [anon_sym_FINAL] = ACTIONS(1929), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1929), - [anon_sym_include] = ACTIONS(1929), - [anon_sym_INCLUDE] = ACTIONS(1929), - [anon_sym_New] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_NEW] = ACTIONS(1943), - [anon_sym_Package] = ACTIONS(1929), - [anon_sym_package] = ACTIONS(1929), - [anon_sym_PACKAGE] = ACTIONS(1929), - [anon_sym_Private] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_PRIVATE] = ACTIONS(1929), - [anon_sym_Public] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_PUBLIC] = ACTIONS(1929), - [anon_sym_Remote] = ACTIONS(1929), - [anon_sym_remote] = ACTIONS(1929), - [anon_sym_REMOTE] = ACTIONS(1929), - [anon_sym_Static] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_STATIC] = ACTIONS(1929), + [anon_sym_Abstract] = ACTIONS(1925), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_ABSTRACT] = ACTIONS(1925), + [anon_sym_Component] = ACTIONS(1937), + [anon_sym_component] = ACTIONS(1937), + [anon_sym_COMPONENT] = ACTIONS(1937), + [anon_sym_Debugger] = ACTIONS(1925), + [anon_sym_debugger] = ACTIONS(1925), + [anon_sym_DEBUGGER] = ACTIONS(1925), + [anon_sym_Final] = ACTIONS(1925), + [anon_sym_final] = ACTIONS(1925), + [anon_sym_FINAL] = ACTIONS(1925), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1925), + [anon_sym_include] = ACTIONS(1925), + [anon_sym_INCLUDE] = ACTIONS(1925), + [anon_sym_New] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_NEW] = ACTIONS(1939), + [anon_sym_Package] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1925), + [anon_sym_PACKAGE] = ACTIONS(1925), + [anon_sym_Private] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_PRIVATE] = ACTIONS(1925), + [anon_sym_Public] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_PUBLIC] = ACTIONS(1925), + [anon_sym_Remote] = ACTIONS(1925), + [anon_sym_remote] = ACTIONS(1925), + [anon_sym_REMOTE] = ACTIONS(1925), + [anon_sym_Static] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_STATIC] = ACTIONS(1925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(326)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3425), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5167), - [sym_string] = STATE(2619), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2619), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(3131), - [sym_hash_expression] = STATE(3131), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1925), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3599), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5361), + [sym_string] = STATE(2771), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2771), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(3432), + [sym_hash_expression] = STATE(3432), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1933), - [anon_sym_query] = ACTIONS(1933), - [anon_sym_QUERY] = ACTIONS(1933), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1929), + [anon_sym_query] = ACTIONS(1929), + [anon_sym_QUERY] = ACTIONS(1929), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -93910,162 +94016,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1945), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_QueryExecute] = ACTIONS(1939), - [anon_sym_queryexecute] = ACTIONS(1939), - [anon_sym_QUERYEXECUTE] = ACTIONS(1939), - [anon_sym_queryExecute] = ACTIONS(1939), + [sym_hash_empty] = ACTIONS(1941), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_QueryExecute] = ACTIONS(1935), + [anon_sym_queryexecute] = ACTIONS(1935), + [anon_sym_QUERYEXECUTE] = ACTIONS(1935), + [anon_sym_queryExecute] = ACTIONS(1935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_ABSTRACT] = ACTIONS(1929), - [anon_sym_Component] = ACTIONS(1941), - [anon_sym_component] = ACTIONS(1941), - [anon_sym_COMPONENT] = ACTIONS(1941), - [anon_sym_Debugger] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_DEBUGGER] = ACTIONS(1929), - [anon_sym_Final] = ACTIONS(1929), - [anon_sym_final] = ACTIONS(1929), - [anon_sym_FINAL] = ACTIONS(1929), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1929), - [anon_sym_include] = ACTIONS(1929), - [anon_sym_INCLUDE] = ACTIONS(1929), - [anon_sym_New] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_NEW] = ACTIONS(1943), - [anon_sym_Package] = ACTIONS(1929), - [anon_sym_package] = ACTIONS(1929), - [anon_sym_PACKAGE] = ACTIONS(1929), - [anon_sym_Private] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_PRIVATE] = ACTIONS(1929), - [anon_sym_Public] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_PUBLIC] = ACTIONS(1929), - [anon_sym_Remote] = ACTIONS(1929), - [anon_sym_remote] = ACTIONS(1929), - [anon_sym_REMOTE] = ACTIONS(1929), - [anon_sym_Static] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_STATIC] = ACTIONS(1929), + [anon_sym_Abstract] = ACTIONS(1925), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_ABSTRACT] = ACTIONS(1925), + [anon_sym_Component] = ACTIONS(1937), + [anon_sym_component] = ACTIONS(1937), + [anon_sym_COMPONENT] = ACTIONS(1937), + [anon_sym_Debugger] = ACTIONS(1925), + [anon_sym_debugger] = ACTIONS(1925), + [anon_sym_DEBUGGER] = ACTIONS(1925), + [anon_sym_Final] = ACTIONS(1925), + [anon_sym_final] = ACTIONS(1925), + [anon_sym_FINAL] = ACTIONS(1925), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1925), + [anon_sym_include] = ACTIONS(1925), + [anon_sym_INCLUDE] = ACTIONS(1925), + [anon_sym_New] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_NEW] = ACTIONS(1939), + [anon_sym_Package] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1925), + [anon_sym_PACKAGE] = ACTIONS(1925), + [anon_sym_Private] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_PRIVATE] = ACTIONS(1925), + [anon_sym_Public] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_PUBLIC] = ACTIONS(1925), + [anon_sym_Remote] = ACTIONS(1925), + [anon_sym_remote] = ACTIONS(1925), + [anon_sym_REMOTE] = ACTIONS(1925), + [anon_sym_Static] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_STATIC] = ACTIONS(1925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(327)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3530), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5280), - [sym_string] = STATE(2619), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2619), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(3090), - [sym_hash_expression] = STATE(3090), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1925), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3638), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5247), + [sym_string] = STATE(2771), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2771), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(3157), + [sym_hash_expression] = STATE(3157), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1933), - [anon_sym_query] = ACTIONS(1933), - [anon_sym_QUERY] = ACTIONS(1933), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1929), + [anon_sym_query] = ACTIONS(1929), + [anon_sym_QUERY] = ACTIONS(1929), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -94078,162 +94184,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1947), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_QueryExecute] = ACTIONS(1939), - [anon_sym_queryexecute] = ACTIONS(1939), - [anon_sym_QUERYEXECUTE] = ACTIONS(1939), - [anon_sym_queryExecute] = ACTIONS(1939), + [sym_hash_empty] = ACTIONS(1943), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_QueryExecute] = ACTIONS(1935), + [anon_sym_queryexecute] = ACTIONS(1935), + [anon_sym_QUERYEXECUTE] = ACTIONS(1935), + [anon_sym_queryExecute] = ACTIONS(1935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_ABSTRACT] = ACTIONS(1929), - [anon_sym_Component] = ACTIONS(1941), - [anon_sym_component] = ACTIONS(1941), - [anon_sym_COMPONENT] = ACTIONS(1941), - [anon_sym_Debugger] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_DEBUGGER] = ACTIONS(1929), - [anon_sym_Final] = ACTIONS(1929), - [anon_sym_final] = ACTIONS(1929), - [anon_sym_FINAL] = ACTIONS(1929), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1929), - [anon_sym_include] = ACTIONS(1929), - [anon_sym_INCLUDE] = ACTIONS(1929), - [anon_sym_New] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_NEW] = ACTIONS(1943), - [anon_sym_Package] = ACTIONS(1929), - [anon_sym_package] = ACTIONS(1929), - [anon_sym_PACKAGE] = ACTIONS(1929), - [anon_sym_Private] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_PRIVATE] = ACTIONS(1929), - [anon_sym_Public] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_PUBLIC] = ACTIONS(1929), - [anon_sym_Remote] = ACTIONS(1929), - [anon_sym_remote] = ACTIONS(1929), - [anon_sym_REMOTE] = ACTIONS(1929), - [anon_sym_Static] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_STATIC] = ACTIONS(1929), + [anon_sym_Abstract] = ACTIONS(1925), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_ABSTRACT] = ACTIONS(1925), + [anon_sym_Component] = ACTIONS(1937), + [anon_sym_component] = ACTIONS(1937), + [anon_sym_COMPONENT] = ACTIONS(1937), + [anon_sym_Debugger] = ACTIONS(1925), + [anon_sym_debugger] = ACTIONS(1925), + [anon_sym_DEBUGGER] = ACTIONS(1925), + [anon_sym_Final] = ACTIONS(1925), + [anon_sym_final] = ACTIONS(1925), + [anon_sym_FINAL] = ACTIONS(1925), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1925), + [anon_sym_include] = ACTIONS(1925), + [anon_sym_INCLUDE] = ACTIONS(1925), + [anon_sym_New] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_NEW] = ACTIONS(1939), + [anon_sym_Package] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1925), + [anon_sym_PACKAGE] = ACTIONS(1925), + [anon_sym_Private] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_PRIVATE] = ACTIONS(1925), + [anon_sym_Public] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_PUBLIC] = ACTIONS(1925), + [anon_sym_Remote] = ACTIONS(1925), + [anon_sym_remote] = ACTIONS(1925), + [anon_sym_REMOTE] = ACTIONS(1925), + [anon_sym_Static] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_STATIC] = ACTIONS(1925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(328)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3517), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5309), - [sym_string] = STATE(2619), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2619), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(3177), - [sym_hash_expression] = STATE(3177), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1925), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5118), + [sym_string] = STATE(2771), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2771), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(3378), + [sym_hash_expression] = STATE(3378), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1933), - [anon_sym_query] = ACTIONS(1933), - [anon_sym_QUERY] = ACTIONS(1933), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1929), + [anon_sym_query] = ACTIONS(1929), + [anon_sym_QUERY] = ACTIONS(1929), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -94246,162 +94352,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1949), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_QueryExecute] = ACTIONS(1939), - [anon_sym_queryexecute] = ACTIONS(1939), - [anon_sym_QUERYEXECUTE] = ACTIONS(1939), - [anon_sym_queryExecute] = ACTIONS(1939), + [sym_hash_empty] = ACTIONS(1945), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_QueryExecute] = ACTIONS(1935), + [anon_sym_queryexecute] = ACTIONS(1935), + [anon_sym_QUERYEXECUTE] = ACTIONS(1935), + [anon_sym_queryExecute] = ACTIONS(1935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_ABSTRACT] = ACTIONS(1929), - [anon_sym_Component] = ACTIONS(1941), - [anon_sym_component] = ACTIONS(1941), - [anon_sym_COMPONENT] = ACTIONS(1941), - [anon_sym_Debugger] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_DEBUGGER] = ACTIONS(1929), - [anon_sym_Final] = ACTIONS(1929), - [anon_sym_final] = ACTIONS(1929), - [anon_sym_FINAL] = ACTIONS(1929), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1929), - [anon_sym_include] = ACTIONS(1929), - [anon_sym_INCLUDE] = ACTIONS(1929), - [anon_sym_New] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_NEW] = ACTIONS(1943), - [anon_sym_Package] = ACTIONS(1929), - [anon_sym_package] = ACTIONS(1929), - [anon_sym_PACKAGE] = ACTIONS(1929), - [anon_sym_Private] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_PRIVATE] = ACTIONS(1929), - [anon_sym_Public] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_PUBLIC] = ACTIONS(1929), - [anon_sym_Remote] = ACTIONS(1929), - [anon_sym_remote] = ACTIONS(1929), - [anon_sym_REMOTE] = ACTIONS(1929), - [anon_sym_Static] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_STATIC] = ACTIONS(1929), + [anon_sym_Abstract] = ACTIONS(1925), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_ABSTRACT] = ACTIONS(1925), + [anon_sym_Component] = ACTIONS(1937), + [anon_sym_component] = ACTIONS(1937), + [anon_sym_COMPONENT] = ACTIONS(1937), + [anon_sym_Debugger] = ACTIONS(1925), + [anon_sym_debugger] = ACTIONS(1925), + [anon_sym_DEBUGGER] = ACTIONS(1925), + [anon_sym_Final] = ACTIONS(1925), + [anon_sym_final] = ACTIONS(1925), + [anon_sym_FINAL] = ACTIONS(1925), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1925), + [anon_sym_include] = ACTIONS(1925), + [anon_sym_INCLUDE] = ACTIONS(1925), + [anon_sym_New] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_NEW] = ACTIONS(1939), + [anon_sym_Package] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1925), + [anon_sym_PACKAGE] = ACTIONS(1925), + [anon_sym_Private] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_PRIVATE] = ACTIONS(1925), + [anon_sym_Public] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_PUBLIC] = ACTIONS(1925), + [anon_sym_Remote] = ACTIONS(1925), + [anon_sym_remote] = ACTIONS(1925), + [anon_sym_REMOTE] = ACTIONS(1925), + [anon_sym_Static] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_STATIC] = ACTIONS(1925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(329)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3505), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5222), - [sym_string] = STATE(2619), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2619), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(3181), - [sym_hash_expression] = STATE(3181), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_Query] = ACTIONS(1947), + [anon_sym_query] = ACTIONS(1947), + [anon_sym_QUERY] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1955), + [aux_sym_unary_operator_token1] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1947), + [aux_sym_number_token2] = ACTIONS(1947), + [anon_sym_This] = ACTIONS(1947), + [anon_sym_this] = ACTIONS(1947), + [anon_sym_THIS] = ACTIONS(1947), + [anon_sym_Super] = ACTIONS(1947), + [anon_sym_super] = ACTIONS(1947), + [anon_sym_SUPER] = ACTIONS(1947), + [anon_sym_True] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_TRUE] = ACTIONS(1947), + [anon_sym_False] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_FALSE] = ACTIONS(1947), + [anon_sym_Null] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_Undefined] = ACTIONS(1947), + [anon_sym_undefined] = ACTIONS(1947), + [anon_sym_UNDEFINED] = ACTIONS(1947), + [anon_sym_get] = ACTIONS(1947), + [anon_sym_set] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1947), + [sym_hash_empty] = ACTIONS(1955), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_QueryExecute] = ACTIONS(1947), + [anon_sym_queryexecute] = ACTIONS(1947), + [anon_sym_QUERYEXECUTE] = ACTIONS(1947), + [anon_sym_queryExecute] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1955), + [anon_sym_Abstract] = ACTIONS(1947), + [anon_sym_abstract] = ACTIONS(1947), + [anon_sym_ABSTRACT] = ACTIONS(1947), + [anon_sym_Component] = ACTIONS(1947), + [anon_sym_component] = ACTIONS(1947), + [anon_sym_COMPONENT] = ACTIONS(1947), + [anon_sym_Debugger] = ACTIONS(1947), + [anon_sym_debugger] = ACTIONS(1947), + [anon_sym_DEBUGGER] = ACTIONS(1947), + [anon_sym_Final] = ACTIONS(1947), + [anon_sym_final] = ACTIONS(1947), + [anon_sym_FINAL] = ACTIONS(1947), + [anon_sym_Function] = ACTIONS(1947), + [anon_sym_function] = ACTIONS(1947), + [anon_sym_FUNCTION] = ACTIONS(1947), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_Include] = ACTIONS(1947), + [anon_sym_include] = ACTIONS(1947), + [anon_sym_INCLUDE] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1952), + [anon_sym_instanceof] = ACTIONS(1952), + [anon_sym_INSTANCEOF] = ACTIONS(1952), + [anon_sym_instanceOf] = ACTIONS(1952), + [anon_sym_New] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_NEW] = ACTIONS(1947), + [anon_sym_Package] = ACTIONS(1947), + [anon_sym_package] = ACTIONS(1947), + [anon_sym_PACKAGE] = ACTIONS(1947), + [anon_sym_Private] = ACTIONS(1947), + [anon_sym_private] = ACTIONS(1947), + [anon_sym_PRIVATE] = ACTIONS(1947), + [anon_sym_Public] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_PUBLIC] = ACTIONS(1947), + [anon_sym_Remote] = ACTIONS(1947), + [anon_sym_remote] = ACTIONS(1947), + [anon_sym_REMOTE] = ACTIONS(1947), + [anon_sym_Static] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_STATIC] = ACTIONS(1947), + [sym__automatic_semicolon] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + [sym_tag_linefeed] = ACTIONS(1955), + [sym__java_block_open] = ACTIONS(1955), + [sym__static_type_prefix] = ACTIONS(1955), + }, + [STATE(330)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3569), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5117), + [sym_string] = STATE(2771), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2771), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(3138), + [sym_hash_expression] = STATE(3138), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1933), - [anon_sym_query] = ACTIONS(1933), - [anon_sym_QUERY] = ACTIONS(1933), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1929), + [anon_sym_query] = ACTIONS(1929), + [anon_sym_QUERY] = ACTIONS(1929), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -94414,162 +94688,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1951), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_QueryExecute] = ACTIONS(1939), - [anon_sym_queryexecute] = ACTIONS(1939), - [anon_sym_QUERYEXECUTE] = ACTIONS(1939), - [anon_sym_queryExecute] = ACTIONS(1939), + [sym_hash_empty] = ACTIONS(1961), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_QueryExecute] = ACTIONS(1935), + [anon_sym_queryexecute] = ACTIONS(1935), + [anon_sym_QUERYEXECUTE] = ACTIONS(1935), + [anon_sym_queryExecute] = ACTIONS(1935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_ABSTRACT] = ACTIONS(1929), - [anon_sym_Component] = ACTIONS(1941), - [anon_sym_component] = ACTIONS(1941), - [anon_sym_COMPONENT] = ACTIONS(1941), - [anon_sym_Debugger] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_DEBUGGER] = ACTIONS(1929), - [anon_sym_Final] = ACTIONS(1929), - [anon_sym_final] = ACTIONS(1929), - [anon_sym_FINAL] = ACTIONS(1929), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1929), - [anon_sym_include] = ACTIONS(1929), - [anon_sym_INCLUDE] = ACTIONS(1929), - [anon_sym_New] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_NEW] = ACTIONS(1943), - [anon_sym_Package] = ACTIONS(1929), - [anon_sym_package] = ACTIONS(1929), - [anon_sym_PACKAGE] = ACTIONS(1929), - [anon_sym_Private] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_PRIVATE] = ACTIONS(1929), - [anon_sym_Public] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_PUBLIC] = ACTIONS(1929), - [anon_sym_Remote] = ACTIONS(1929), - [anon_sym_remote] = ACTIONS(1929), - [anon_sym_REMOTE] = ACTIONS(1929), - [anon_sym_Static] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_STATIC] = ACTIONS(1929), + [anon_sym_Abstract] = ACTIONS(1925), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_ABSTRACT] = ACTIONS(1925), + [anon_sym_Component] = ACTIONS(1937), + [anon_sym_component] = ACTIONS(1937), + [anon_sym_COMPONENT] = ACTIONS(1937), + [anon_sym_Debugger] = ACTIONS(1925), + [anon_sym_debugger] = ACTIONS(1925), + [anon_sym_DEBUGGER] = ACTIONS(1925), + [anon_sym_Final] = ACTIONS(1925), + [anon_sym_final] = ACTIONS(1925), + [anon_sym_FINAL] = ACTIONS(1925), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1925), + [anon_sym_include] = ACTIONS(1925), + [anon_sym_INCLUDE] = ACTIONS(1925), + [anon_sym_New] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_NEW] = ACTIONS(1939), + [anon_sym_Package] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1925), + [anon_sym_PACKAGE] = ACTIONS(1925), + [anon_sym_Private] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_PRIVATE] = ACTIONS(1925), + [anon_sym_Public] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_PUBLIC] = ACTIONS(1925), + [anon_sym_Remote] = ACTIONS(1925), + [anon_sym_remote] = ACTIONS(1925), + [anon_sym_REMOTE] = ACTIONS(1925), + [anon_sym_Static] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_STATIC] = ACTIONS(1925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(330)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3524), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5059), - [sym_string] = STATE(2619), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2619), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(3229), - [sym_hash_expression] = STATE(3229), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1925), + [STATE(331)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3499), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5132), + [sym_string] = STATE(2771), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2771), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(3296), + [sym_hash_expression] = STATE(3296), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1933), - [anon_sym_query] = ACTIONS(1933), - [anon_sym_QUERY] = ACTIONS(1933), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1929), + [anon_sym_query] = ACTIONS(1929), + [anon_sym_QUERY] = ACTIONS(1929), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -94582,162 +94856,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1953), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_QueryExecute] = ACTIONS(1939), - [anon_sym_queryexecute] = ACTIONS(1939), - [anon_sym_QUERYEXECUTE] = ACTIONS(1939), - [anon_sym_queryExecute] = ACTIONS(1939), + [sym_hash_empty] = ACTIONS(1963), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_QueryExecute] = ACTIONS(1935), + [anon_sym_queryexecute] = ACTIONS(1935), + [anon_sym_QUERYEXECUTE] = ACTIONS(1935), + [anon_sym_queryExecute] = ACTIONS(1935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_ABSTRACT] = ACTIONS(1929), - [anon_sym_Component] = ACTIONS(1941), - [anon_sym_component] = ACTIONS(1941), - [anon_sym_COMPONENT] = ACTIONS(1941), - [anon_sym_Debugger] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_DEBUGGER] = ACTIONS(1929), - [anon_sym_Final] = ACTIONS(1929), - [anon_sym_final] = ACTIONS(1929), - [anon_sym_FINAL] = ACTIONS(1929), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1929), - [anon_sym_include] = ACTIONS(1929), - [anon_sym_INCLUDE] = ACTIONS(1929), - [anon_sym_New] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_NEW] = ACTIONS(1943), - [anon_sym_Package] = ACTIONS(1929), - [anon_sym_package] = ACTIONS(1929), - [anon_sym_PACKAGE] = ACTIONS(1929), - [anon_sym_Private] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_PRIVATE] = ACTIONS(1929), - [anon_sym_Public] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_PUBLIC] = ACTIONS(1929), - [anon_sym_Remote] = ACTIONS(1929), - [anon_sym_remote] = ACTIONS(1929), - [anon_sym_REMOTE] = ACTIONS(1929), - [anon_sym_Static] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_STATIC] = ACTIONS(1929), + [anon_sym_Abstract] = ACTIONS(1925), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_ABSTRACT] = ACTIONS(1925), + [anon_sym_Component] = ACTIONS(1937), + [anon_sym_component] = ACTIONS(1937), + [anon_sym_COMPONENT] = ACTIONS(1937), + [anon_sym_Debugger] = ACTIONS(1925), + [anon_sym_debugger] = ACTIONS(1925), + [anon_sym_DEBUGGER] = ACTIONS(1925), + [anon_sym_Final] = ACTIONS(1925), + [anon_sym_final] = ACTIONS(1925), + [anon_sym_FINAL] = ACTIONS(1925), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1925), + [anon_sym_include] = ACTIONS(1925), + [anon_sym_INCLUDE] = ACTIONS(1925), + [anon_sym_New] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_NEW] = ACTIONS(1939), + [anon_sym_Package] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1925), + [anon_sym_PACKAGE] = ACTIONS(1925), + [anon_sym_Private] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_PRIVATE] = ACTIONS(1925), + [anon_sym_Public] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_PUBLIC] = ACTIONS(1925), + [anon_sym_Remote] = ACTIONS(1925), + [anon_sym_remote] = ACTIONS(1925), + [anon_sym_REMOTE] = ACTIONS(1925), + [anon_sym_Static] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_STATIC] = ACTIONS(1925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(331)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3541), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4400), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4400), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5118), - [sym_string] = STATE(2619), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2619), - [sym_undefined] = STATE(2619), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(3236), - [sym_hash_expression] = STATE(3236), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1925), + [STATE(332)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3558), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4443), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2296), + [sym_subscript_expression] = STATE(2296), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4443), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5341), + [sym_string] = STATE(2771), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2771), + [sym_undefined] = STATE(2771), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(3407), + [sym_hash_expression] = STATE(3407), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1933), - [anon_sym_query] = ACTIONS(1933), - [anon_sym_QUERY] = ACTIONS(1933), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1929), + [anon_sym_query] = ACTIONS(1929), + [anon_sym_QUERY] = ACTIONS(1929), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -94750,153 +95024,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(1955), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_QueryExecute] = ACTIONS(1939), - [anon_sym_queryexecute] = ACTIONS(1939), - [anon_sym_QUERYEXECUTE] = ACTIONS(1939), - [anon_sym_queryExecute] = ACTIONS(1939), + [sym_hash_empty] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_QueryExecute] = ACTIONS(1935), + [anon_sym_queryexecute] = ACTIONS(1935), + [anon_sym_QUERYEXECUTE] = ACTIONS(1935), + [anon_sym_queryExecute] = ACTIONS(1935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_ABSTRACT] = ACTIONS(1929), - [anon_sym_Component] = ACTIONS(1941), - [anon_sym_component] = ACTIONS(1941), - [anon_sym_COMPONENT] = ACTIONS(1941), - [anon_sym_Debugger] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_DEBUGGER] = ACTIONS(1929), - [anon_sym_Final] = ACTIONS(1929), - [anon_sym_final] = ACTIONS(1929), - [anon_sym_FINAL] = ACTIONS(1929), - [anon_sym_Function] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_FUNCTION] = ACTIONS(1784), - [anon_sym_Include] = ACTIONS(1929), - [anon_sym_include] = ACTIONS(1929), - [anon_sym_INCLUDE] = ACTIONS(1929), - [anon_sym_New] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_NEW] = ACTIONS(1943), - [anon_sym_Package] = ACTIONS(1929), - [anon_sym_package] = ACTIONS(1929), - [anon_sym_PACKAGE] = ACTIONS(1929), - [anon_sym_Private] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_PRIVATE] = ACTIONS(1929), - [anon_sym_Public] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_PUBLIC] = ACTIONS(1929), - [anon_sym_Remote] = ACTIONS(1929), - [anon_sym_remote] = ACTIONS(1929), - [anon_sym_REMOTE] = ACTIONS(1929), - [anon_sym_Static] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_STATIC] = ACTIONS(1929), + [anon_sym_Abstract] = ACTIONS(1925), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_ABSTRACT] = ACTIONS(1925), + [anon_sym_Component] = ACTIONS(1937), + [anon_sym_component] = ACTIONS(1937), + [anon_sym_COMPONENT] = ACTIONS(1937), + [anon_sym_Debugger] = ACTIONS(1925), + [anon_sym_debugger] = ACTIONS(1925), + [anon_sym_DEBUGGER] = ACTIONS(1925), + [anon_sym_Final] = ACTIONS(1925), + [anon_sym_final] = ACTIONS(1925), + [anon_sym_FINAL] = ACTIONS(1925), + [anon_sym_Function] = ACTIONS(1780), + [anon_sym_function] = ACTIONS(1780), + [anon_sym_FUNCTION] = ACTIONS(1780), + [anon_sym_Include] = ACTIONS(1925), + [anon_sym_include] = ACTIONS(1925), + [anon_sym_INCLUDE] = ACTIONS(1925), + [anon_sym_New] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_NEW] = ACTIONS(1939), + [anon_sym_Package] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1925), + [anon_sym_PACKAGE] = ACTIONS(1925), + [anon_sym_Private] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_PRIVATE] = ACTIONS(1925), + [anon_sym_Public] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_PUBLIC] = ACTIONS(1925), + [anon_sym_Remote] = ACTIONS(1925), + [anon_sym_remote] = ACTIONS(1925), + [anon_sym_REMOTE] = ACTIONS(1925), + [anon_sym_Static] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_STATIC] = ACTIONS(1925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(332)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4058), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4058), - [sym_parameter_attribute] = STATE(4055), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3983), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4055), - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [aux_sym_formal_parameters_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1959), + [STATE(333)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4152), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4152), + [sym_parameter_attribute] = STATE(4190), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4084), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4190), + [aux_sym__formal_parameter_repeat1] = STATE(335), + [aux_sym_formal_parameters_repeat1] = STATE(4564), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(1967), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(1977), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -94909,503 +95183,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), - }, - [STATE(333)] = { - [sym_identifier] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_Query] = ACTIONS(1981), - [anon_sym_query] = ACTIONS(1981), - [anon_sym_QUERY] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1981), - [sym_optional_chain] = ACTIONS(1983), - [sym_static_chain] = ACTIONS(1983), - [anon_sym_PLUS_EQ] = ACTIONS(1983), - [anon_sym_DASH_EQ] = ACTIONS(1983), - [anon_sym_STAR_EQ] = ACTIONS(1983), - [anon_sym_SLASH_EQ] = ACTIONS(1983), - [anon_sym_PERCENT_EQ] = ACTIONS(1983), - [anon_sym_CARET_EQ] = ACTIONS(1983), - [anon_sym_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_LT_LT_EQ] = ACTIONS(1983), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_BSLASH] = ACTIONS(1981), - [anon_sym_STAR_STAR] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1983), - [anon_sym_LT_GT] = ACTIONS(1983), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1983), - [aux_sym_binary_expression_token1] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1981), - [aux_sym_binary_expression_token2] = ACTIONS(1981), - [aux_sym_binary_expression_token3] = ACTIONS(1981), - [aux_sym_binary_expression_token4] = ACTIONS(1983), - [aux_sym_binary_expression_token5] = ACTIONS(1983), - [aux_sym_binary_expression_token6] = ACTIONS(1983), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1983), - [aux_sym_unary_operator_token1] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1983), - [anon_sym_SQUOTE] = ACTIONS(1983), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1981), - [aux_sym_number_token2] = ACTIONS(1981), - [anon_sym_This] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1981), - [anon_sym_THIS] = ACTIONS(1981), - [anon_sym_Super] = ACTIONS(1981), - [anon_sym_super] = ACTIONS(1981), - [anon_sym_SUPER] = ACTIONS(1981), - [anon_sym_True] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1981), - [anon_sym_TRUE] = ACTIONS(1981), - [anon_sym_False] = ACTIONS(1981), - [anon_sym_false] = ACTIONS(1981), - [anon_sym_FALSE] = ACTIONS(1981), - [anon_sym_Null] = ACTIONS(1981), - [anon_sym_null] = ACTIONS(1981), - [anon_sym_NULL] = ACTIONS(1981), - [anon_sym_Undefined] = ACTIONS(1981), - [anon_sym_undefined] = ACTIONS(1981), - [anon_sym_UNDEFINED] = ACTIONS(1981), - [anon_sym_get] = ACTIONS(1981), - [anon_sym_set] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(1981), - [sym_hash_empty] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_QueryExecute] = ACTIONS(1981), - [anon_sym_queryexecute] = ACTIONS(1981), - [anon_sym_QUERYEXECUTE] = ACTIONS(1981), - [anon_sym_queryExecute] = ACTIONS(1981), - [anon_sym_BQUOTE] = ACTIONS(1983), - [anon_sym_Abstract] = ACTIONS(1981), - [anon_sym_abstract] = ACTIONS(1981), - [anon_sym_ABSTRACT] = ACTIONS(1981), - [anon_sym_Component] = ACTIONS(1981), - [anon_sym_component] = ACTIONS(1981), - [anon_sym_COMPONENT] = ACTIONS(1981), - [anon_sym_Debugger] = ACTIONS(1981), - [anon_sym_debugger] = ACTIONS(1981), - [anon_sym_DEBUGGER] = ACTIONS(1981), - [anon_sym_Final] = ACTIONS(1981), - [anon_sym_final] = ACTIONS(1981), - [anon_sym_FINAL] = ACTIONS(1981), - [anon_sym_Function] = ACTIONS(1981), - [anon_sym_function] = ACTIONS(1981), - [anon_sym_FUNCTION] = ACTIONS(1981), - [anon_sym_In] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_IN] = ACTIONS(1981), - [anon_sym_Include] = ACTIONS(1981), - [anon_sym_include] = ACTIONS(1981), - [anon_sym_INCLUDE] = ACTIONS(1981), - [anon_sym_InstanceOf] = ACTIONS(1981), - [anon_sym_instanceof] = ACTIONS(1981), - [anon_sym_INSTANCEOF] = ACTIONS(1981), - [anon_sym_instanceOf] = ACTIONS(1981), - [anon_sym_New] = ACTIONS(1981), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_NEW] = ACTIONS(1981), - [anon_sym_Package] = ACTIONS(1981), - [anon_sym_package] = ACTIONS(1981), - [anon_sym_PACKAGE] = ACTIONS(1981), - [anon_sym_Private] = ACTIONS(1981), - [anon_sym_private] = ACTIONS(1981), - [anon_sym_PRIVATE] = ACTIONS(1981), - [anon_sym_Public] = ACTIONS(1981), - [anon_sym_public] = ACTIONS(1981), - [anon_sym_PUBLIC] = ACTIONS(1981), - [anon_sym_Remote] = ACTIONS(1981), - [anon_sym_remote] = ACTIONS(1981), - [anon_sym_REMOTE] = ACTIONS(1981), - [anon_sym_Static] = ACTIONS(1981), - [anon_sym_static] = ACTIONS(1981), - [anon_sym_STATIC] = ACTIONS(1981), - [sym__automatic_semicolon] = ACTIONS(1983), - [sym__ternary_qmark] = ACTIONS(1983), - [sym__elvis_operator] = ACTIONS(1983), - [sym_logical_or] = ACTIONS(1983), - [sym_tag_linefeed] = ACTIONS(1983), - [sym__java_block_open] = ACTIONS(1983), - [sym__static_type_prefix] = ACTIONS(1983), - }, - [STATE(334)] = { - [sym_identifier] = ACTIONS(1985), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_Query] = ACTIONS(1985), - [anon_sym_query] = ACTIONS(1985), - [anon_sym_QUERY] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1985), - [sym_optional_chain] = ACTIONS(1987), - [sym_static_chain] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1987), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_GT_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_PERCENT] = ACTIONS(1985), - [anon_sym_BSLASH] = ACTIONS(1985), - [anon_sym_STAR_STAR] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1987), - [anon_sym_LT_GT] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1987), - [aux_sym_binary_expression_token1] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1985), - [aux_sym_binary_expression_token2] = ACTIONS(1985), - [aux_sym_binary_expression_token3] = ACTIONS(1985), - [aux_sym_binary_expression_token4] = ACTIONS(1987), - [aux_sym_binary_expression_token5] = ACTIONS(1987), - [aux_sym_binary_expression_token6] = ACTIONS(1987), - [anon_sym_QMARK_QMARK] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1987), - [aux_sym_unary_operator_token1] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [anon_sym_SQUOTE] = ACTIONS(1987), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1985), - [aux_sym_number_token2] = ACTIONS(1985), - [anon_sym_This] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(1985), - [anon_sym_THIS] = ACTIONS(1985), - [anon_sym_Super] = ACTIONS(1985), - [anon_sym_super] = ACTIONS(1985), - [anon_sym_SUPER] = ACTIONS(1985), - [anon_sym_True] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1985), - [anon_sym_TRUE] = ACTIONS(1985), - [anon_sym_False] = ACTIONS(1985), - [anon_sym_false] = ACTIONS(1985), - [anon_sym_FALSE] = ACTIONS(1985), - [anon_sym_Null] = ACTIONS(1985), - [anon_sym_null] = ACTIONS(1985), - [anon_sym_NULL] = ACTIONS(1985), - [anon_sym_Undefined] = ACTIONS(1985), - [anon_sym_undefined] = ACTIONS(1985), - [anon_sym_UNDEFINED] = ACTIONS(1985), - [anon_sym_get] = ACTIONS(1985), - [anon_sym_set] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(1985), - [sym_hash_empty] = ACTIONS(1987), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_QueryExecute] = ACTIONS(1985), - [anon_sym_queryexecute] = ACTIONS(1985), - [anon_sym_QUERYEXECUTE] = ACTIONS(1985), - [anon_sym_queryExecute] = ACTIONS(1985), - [anon_sym_BQUOTE] = ACTIONS(1987), - [anon_sym_Abstract] = ACTIONS(1985), - [anon_sym_abstract] = ACTIONS(1985), - [anon_sym_ABSTRACT] = ACTIONS(1985), - [anon_sym_Component] = ACTIONS(1985), - [anon_sym_component] = ACTIONS(1985), - [anon_sym_COMPONENT] = ACTIONS(1985), - [anon_sym_Debugger] = ACTIONS(1985), - [anon_sym_debugger] = ACTIONS(1985), - [anon_sym_DEBUGGER] = ACTIONS(1985), - [anon_sym_Final] = ACTIONS(1985), - [anon_sym_final] = ACTIONS(1985), - [anon_sym_FINAL] = ACTIONS(1985), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), [anon_sym_Function] = ACTIONS(1985), [anon_sym_function] = ACTIONS(1985), [anon_sym_FUNCTION] = ACTIONS(1985), - [anon_sym_In] = ACTIONS(1985), - [anon_sym_in] = ACTIONS(1985), - [anon_sym_IN] = ACTIONS(1985), - [anon_sym_Include] = ACTIONS(1985), - [anon_sym_include] = ACTIONS(1985), - [anon_sym_INCLUDE] = ACTIONS(1985), - [anon_sym_InstanceOf] = ACTIONS(1985), - [anon_sym_instanceof] = ACTIONS(1985), - [anon_sym_INSTANCEOF] = ACTIONS(1985), - [anon_sym_instanceOf] = ACTIONS(1985), - [anon_sym_New] = ACTIONS(1985), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_NEW] = ACTIONS(1985), - [anon_sym_Package] = ACTIONS(1985), - [anon_sym_package] = ACTIONS(1985), - [anon_sym_PACKAGE] = ACTIONS(1985), - [anon_sym_Private] = ACTIONS(1985), - [anon_sym_private] = ACTIONS(1985), - [anon_sym_PRIVATE] = ACTIONS(1985), - [anon_sym_Public] = ACTIONS(1985), - [anon_sym_public] = ACTIONS(1985), - [anon_sym_PUBLIC] = ACTIONS(1985), - [anon_sym_Remote] = ACTIONS(1985), - [anon_sym_remote] = ACTIONS(1985), - [anon_sym_REMOTE] = ACTIONS(1985), - [anon_sym_Static] = ACTIONS(1985), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_STATIC] = ACTIONS(1985), - [sym__automatic_semicolon] = ACTIONS(1987), - [sym__ternary_qmark] = ACTIONS(1987), - [sym__elvis_operator] = ACTIONS(1987), - [sym_logical_or] = ACTIONS(1987), - [sym_tag_linefeed] = ACTIONS(1987), - [sym__java_block_open] = ACTIONS(1987), - [sym__static_type_prefix] = ACTIONS(1987), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), }, - [STATE(335)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [STATE(334)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -95418,654 +95358,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(336)] = { - [sym_identifier] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_Query] = ACTIONS(2003), - [anon_sym_query] = ACTIONS(2003), - [anon_sym_QUERY] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2003), - [sym_optional_chain] = ACTIONS(2005), - [sym_static_chain] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_PERCENT_EQ] = ACTIONS(2005), - [anon_sym_CARET_EQ] = ACTIONS(2005), - [anon_sym_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_EQ] = ACTIONS(2005), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2005), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_GT_GT_GT] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_PERCENT] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2003), - [anon_sym_STAR_STAR] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT_GT] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2005), - [aux_sym_binary_expression_token1] = ACTIONS(2005), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2003), - [aux_sym_binary_expression_token2] = ACTIONS(2003), - [aux_sym_binary_expression_token3] = ACTIONS(2003), - [aux_sym_binary_expression_token4] = ACTIONS(2005), - [aux_sym_binary_expression_token5] = ACTIONS(2005), - [aux_sym_binary_expression_token6] = ACTIONS(2005), - [anon_sym_QMARK_QMARK] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2003), - [anon_sym_TILDE] = ACTIONS(2005), - [aux_sym_unary_operator_token1] = ACTIONS(2003), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [anon_sym_SQUOTE] = ACTIONS(2005), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2003), - [aux_sym_number_token2] = ACTIONS(2003), - [anon_sym_This] = ACTIONS(2003), - [anon_sym_this] = ACTIONS(2003), - [anon_sym_THIS] = ACTIONS(2003), - [anon_sym_Super] = ACTIONS(2003), - [anon_sym_super] = ACTIONS(2003), - [anon_sym_SUPER] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [anon_sym_Undefined] = ACTIONS(2003), - [anon_sym_undefined] = ACTIONS(2003), - [anon_sym_UNDEFINED] = ACTIONS(2003), - [anon_sym_get] = ACTIONS(2003), - [anon_sym_set] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2003), - [sym_hash_empty] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2003), - [anon_sym_QueryExecute] = ACTIONS(2003), - [anon_sym_queryexecute] = ACTIONS(2003), - [anon_sym_QUERYEXECUTE] = ACTIONS(2003), - [anon_sym_queryExecute] = ACTIONS(2003), - [anon_sym_BQUOTE] = ACTIONS(2005), - [anon_sym_Abstract] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_ABSTRACT] = ACTIONS(2003), - [anon_sym_Component] = ACTIONS(2003), - [anon_sym_component] = ACTIONS(2003), - [anon_sym_COMPONENT] = ACTIONS(2003), - [anon_sym_Debugger] = ACTIONS(2003), - [anon_sym_debugger] = ACTIONS(2003), - [anon_sym_DEBUGGER] = ACTIONS(2003), - [anon_sym_Final] = ACTIONS(2003), - [anon_sym_final] = ACTIONS(2003), - [anon_sym_FINAL] = ACTIONS(2003), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), [anon_sym_Function] = ACTIONS(2003), [anon_sym_function] = ACTIONS(2003), [anon_sym_FUNCTION] = ACTIONS(2003), - [anon_sym_In] = ACTIONS(2003), - [anon_sym_in] = ACTIONS(2003), - [anon_sym_IN] = ACTIONS(2003), - [anon_sym_Include] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_INCLUDE] = ACTIONS(2003), - [anon_sym_InstanceOf] = ACTIONS(2003), - [anon_sym_instanceof] = ACTIONS(2003), - [anon_sym_INSTANCEOF] = ACTIONS(2003), - [anon_sym_instanceOf] = ACTIONS(2003), - [anon_sym_New] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_NEW] = ACTIONS(2003), - [anon_sym_Package] = ACTIONS(2003), - [anon_sym_package] = ACTIONS(2003), - [anon_sym_PACKAGE] = ACTIONS(2003), - [anon_sym_Private] = ACTIONS(2003), - [anon_sym_private] = ACTIONS(2003), - [anon_sym_PRIVATE] = ACTIONS(2003), - [anon_sym_Public] = ACTIONS(2003), - [anon_sym_public] = ACTIONS(2003), - [anon_sym_PUBLIC] = ACTIONS(2003), - [anon_sym_Remote] = ACTIONS(2003), - [anon_sym_remote] = ACTIONS(2003), - [anon_sym_REMOTE] = ACTIONS(2003), - [anon_sym_Static] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_STATIC] = ACTIONS(2003), - [sym__automatic_semicolon] = ACTIONS(2005), - [sym__ternary_qmark] = ACTIONS(2005), - [sym__elvis_operator] = ACTIONS(2005), - [sym_logical_or] = ACTIONS(2005), - [sym_tag_linefeed] = ACTIONS(2005), - [sym__java_block_open] = ACTIONS(2005), - [sym__static_type_prefix] = ACTIONS(2005), - }, - [STATE(337)] = { - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_Query] = ACTIONS(2007), - [anon_sym_query] = ACTIONS(2007), - [anon_sym_QUERY] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2009), - [aux_sym_unary_operator_token1] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [anon_sym_SQUOTE] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2007), - [aux_sym_number_token2] = ACTIONS(2007), - [anon_sym_This] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(2007), - [anon_sym_THIS] = ACTIONS(2007), - [anon_sym_Super] = ACTIONS(2007), - [anon_sym_super] = ACTIONS(2007), - [anon_sym_SUPER] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [anon_sym_Undefined] = ACTIONS(2007), - [anon_sym_undefined] = ACTIONS(2007), - [anon_sym_UNDEFINED] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [sym_hash_empty] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_QueryExecute] = ACTIONS(2007), - [anon_sym_queryexecute] = ACTIONS(2007), - [anon_sym_QUERYEXECUTE] = ACTIONS(2007), - [anon_sym_queryExecute] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2009), - [anon_sym_Abstract] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_ABSTRACT] = ACTIONS(2007), - [anon_sym_Component] = ACTIONS(2007), - [anon_sym_component] = ACTIONS(2007), - [anon_sym_COMPONENT] = ACTIONS(2007), - [anon_sym_Debugger] = ACTIONS(2007), - [anon_sym_debugger] = ACTIONS(2007), - [anon_sym_DEBUGGER] = ACTIONS(2007), - [anon_sym_Final] = ACTIONS(2007), - [anon_sym_final] = ACTIONS(2007), - [anon_sym_FINAL] = ACTIONS(2007), - [anon_sym_Function] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_FUNCTION] = ACTIONS(2007), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_Include] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_INCLUDE] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2007), - [anon_sym_instanceof] = ACTIONS(2007), - [anon_sym_INSTANCEOF] = ACTIONS(2007), - [anon_sym_instanceOf] = ACTIONS(2007), - [anon_sym_New] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_NEW] = ACTIONS(2007), - [anon_sym_Package] = ACTIONS(2007), - [anon_sym_package] = ACTIONS(2007), - [anon_sym_PACKAGE] = ACTIONS(2007), - [anon_sym_Private] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_PRIVATE] = ACTIONS(2007), - [anon_sym_Public] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_PUBLIC] = ACTIONS(2007), - [anon_sym_Remote] = ACTIONS(2007), - [anon_sym_remote] = ACTIONS(2007), - [anon_sym_REMOTE] = ACTIONS(2007), - [anon_sym_Static] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_STATIC] = ACTIONS(2007), - [sym__automatic_semicolon] = ACTIONS(2009), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), - [sym_tag_linefeed] = ACTIONS(2009), - [sym__java_block_open] = ACTIONS(2009), - [sym__static_type_prefix] = ACTIONS(2009), - }, - [STATE(338)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_Query] = ACTIONS(507), - [anon_sym_query] = ACTIONS(507), - [anon_sym_QUERY] = ACTIONS(507), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(509), - [aux_sym_unary_operator_token1] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(507), - [aux_sym_number_token2] = ACTIONS(507), - [anon_sym_This] = ACTIONS(507), - [anon_sym_this] = ACTIONS(507), - [anon_sym_THIS] = ACTIONS(507), - [anon_sym_Super] = ACTIONS(507), - [anon_sym_super] = ACTIONS(507), - [anon_sym_SUPER] = ACTIONS(507), - [anon_sym_True] = ACTIONS(507), - [anon_sym_true] = ACTIONS(507), - [anon_sym_TRUE] = ACTIONS(507), - [anon_sym_False] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_FALSE] = ACTIONS(507), - [anon_sym_Null] = ACTIONS(507), - [anon_sym_null] = ACTIONS(507), - [anon_sym_NULL] = ACTIONS(507), - [anon_sym_Undefined] = ACTIONS(507), - [anon_sym_undefined] = ACTIONS(507), - [anon_sym_UNDEFINED] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(507), - [sym_hash_empty] = ACTIONS(509), - [anon_sym_export] = ACTIONS(507), - [anon_sym_QueryExecute] = ACTIONS(507), - [anon_sym_queryexecute] = ACTIONS(507), - [anon_sym_QUERYEXECUTE] = ACTIONS(507), - [anon_sym_queryExecute] = ACTIONS(507), - [anon_sym_BQUOTE] = ACTIONS(509), - [anon_sym_Abstract] = ACTIONS(507), - [anon_sym_abstract] = ACTIONS(507), - [anon_sym_ABSTRACT] = ACTIONS(507), - [anon_sym_Component] = ACTIONS(507), - [anon_sym_component] = ACTIONS(507), - [anon_sym_COMPONENT] = ACTIONS(507), - [anon_sym_Debugger] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_DEBUGGER] = ACTIONS(507), - [anon_sym_Final] = ACTIONS(507), - [anon_sym_final] = ACTIONS(507), - [anon_sym_FINAL] = ACTIONS(507), - [anon_sym_Function] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_FUNCTION] = ACTIONS(507), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(507), - [anon_sym_include] = ACTIONS(507), - [anon_sym_INCLUDE] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_NEW] = ACTIONS(507), - [anon_sym_Package] = ACTIONS(507), - [anon_sym_package] = ACTIONS(507), - [anon_sym_PACKAGE] = ACTIONS(507), - [anon_sym_Private] = ACTIONS(507), - [anon_sym_private] = ACTIONS(507), - [anon_sym_PRIVATE] = ACTIONS(507), - [anon_sym_Public] = ACTIONS(507), - [anon_sym_public] = ACTIONS(507), - [anon_sym_PUBLIC] = ACTIONS(507), - [anon_sym_Remote] = ACTIONS(507), - [anon_sym_remote] = ACTIONS(507), - [anon_sym_REMOTE] = ACTIONS(507), - [anon_sym_Static] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_STATIC] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(509), - [sym__static_type_prefix] = ACTIONS(509), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(339)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4101), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4101), - [sym_parameter_attribute] = STATE(4100), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3978), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4100), - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [aux_sym_formal_parameters_repeat1] = STATE(4540), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2011), + [STATE(335)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4166), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4166), + [sym_parameter_attribute] = STATE(4165), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4091), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4165), + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [aux_sym_formal_parameters_repeat1] = STATE(4580), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2005), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(1967), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2007), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -96078,336 +95517,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), + [sym__parameter_separator] = ACTIONS(1989), }, - [STATE(340)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_Query] = ACTIONS(2015), - [anon_sym_query] = ACTIONS(2015), - [anon_sym_QUERY] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2020), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2023), - [aux_sym_unary_operator_token1] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2015), - [aux_sym_number_token2] = ACTIONS(2015), - [anon_sym_This] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(2015), - [anon_sym_THIS] = ACTIONS(2015), - [anon_sym_Super] = ACTIONS(2015), - [anon_sym_super] = ACTIONS(2015), - [anon_sym_SUPER] = ACTIONS(2015), - [anon_sym_True] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_TRUE] = ACTIONS(2015), - [anon_sym_False] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_FALSE] = ACTIONS(2015), - [anon_sym_Null] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [anon_sym_NULL] = ACTIONS(2015), - [anon_sym_Undefined] = ACTIONS(2015), - [anon_sym_undefined] = ACTIONS(2015), - [anon_sym_UNDEFINED] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(2015), - [anon_sym_set] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(2015), - [sym_hash_empty] = ACTIONS(2023), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_QueryExecute] = ACTIONS(2015), - [anon_sym_queryexecute] = ACTIONS(2015), - [anon_sym_QUERYEXECUTE] = ACTIONS(2015), - [anon_sym_queryExecute] = ACTIONS(2015), - [anon_sym_BQUOTE] = ACTIONS(2023), - [anon_sym_Abstract] = ACTIONS(2015), - [anon_sym_abstract] = ACTIONS(2015), - [anon_sym_ABSTRACT] = ACTIONS(2015), - [anon_sym_Component] = ACTIONS(2015), - [anon_sym_component] = ACTIONS(2015), - [anon_sym_COMPONENT] = ACTIONS(2015), - [anon_sym_Debugger] = ACTIONS(2015), - [anon_sym_debugger] = ACTIONS(2015), - [anon_sym_DEBUGGER] = ACTIONS(2015), - [anon_sym_Final] = ACTIONS(2015), - [anon_sym_final] = ACTIONS(2015), - [anon_sym_FINAL] = ACTIONS(2015), - [anon_sym_Function] = ACTIONS(2015), - [anon_sym_function] = ACTIONS(2015), - [anon_sym_FUNCTION] = ACTIONS(2015), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_Include] = ACTIONS(2015), - [anon_sym_include] = ACTIONS(2015), - [anon_sym_INCLUDE] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2020), - [anon_sym_instanceof] = ACTIONS(2020), - [anon_sym_INSTANCEOF] = ACTIONS(2020), - [anon_sym_instanceOf] = ACTIONS(2020), - [anon_sym_New] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_NEW] = ACTIONS(2015), - [anon_sym_Package] = ACTIONS(2015), - [anon_sym_package] = ACTIONS(2015), - [anon_sym_PACKAGE] = ACTIONS(2015), - [anon_sym_Private] = ACTIONS(2015), - [anon_sym_private] = ACTIONS(2015), - [anon_sym_PRIVATE] = ACTIONS(2015), - [anon_sym_Public] = ACTIONS(2015), - [anon_sym_public] = ACTIONS(2015), - [anon_sym_PUBLIC] = ACTIONS(2015), - [anon_sym_Remote] = ACTIONS(2015), - [anon_sym_remote] = ACTIONS(2015), - [anon_sym_REMOTE] = ACTIONS(2015), - [anon_sym_Static] = ACTIONS(2015), - [anon_sym_static] = ACTIONS(2015), - [anon_sym_STATIC] = ACTIONS(2015), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - [sym_tag_linefeed] = ACTIONS(2023), - [sym__java_block_open] = ACTIONS(2023), - [sym__static_type_prefix] = ACTIONS(2023), - }, - [STATE(341)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4063), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(344), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3958), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [STATE(336)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1760), - [anon_sym_required] = ACTIONS(1760), - [anon_sym_REQUIRED] = ACTIONS(1760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -96420,161 +95692,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(342)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4056), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(345), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3962), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [STATE(337)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(2027), - [anon_sym_required] = ACTIONS(2027), - [anon_sym_REQUIRED] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -96587,161 +95859,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(343)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [STATE(338)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -96754,153 +96026,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(344)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4130), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4130), - [sym_parameter_attribute] = STATE(4097), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4016), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4097), - [aux_sym__formal_parameter_repeat1] = STATE(332), - [aux_sym_formal_parameters_repeat1] = STATE(4469), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2031), + [STATE(339)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(2035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -96913,161 +96193,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), }, - [STATE(345)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4085), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4085), - [sym_parameter_attribute] = STATE(4088), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4042), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4088), - [aux_sym__formal_parameter_repeat1] = STATE(350), - [aux_sym_formal_parameters_repeat1] = STATE(4501), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2037), + [STATE(340)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2039), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(2041), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -97080,169 +96360,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), }, - [STATE(346)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [STATE(341)] = { + [sym_identifier] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_COMMA] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_Query] = ACTIONS(2019), + [anon_sym_query] = ACTIONS(2019), + [anon_sym_QUERY] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2019), + [sym_optional_chain] = ACTIONS(2021), + [sym_static_chain] = ACTIONS(2021), + [anon_sym_PLUS_EQ] = ACTIONS(2021), + [anon_sym_DASH_EQ] = ACTIONS(2021), + [anon_sym_STAR_EQ] = ACTIONS(2021), + [anon_sym_SLASH_EQ] = ACTIONS(2021), + [anon_sym_PERCENT_EQ] = ACTIONS(2021), + [anon_sym_CARET_EQ] = ACTIONS(2021), + [anon_sym_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_LT_LT_EQ] = ACTIONS(2021), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2021), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_GT_GT_GT] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_CARET] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_BSLASH] = ACTIONS(2019), + [anon_sym_STAR_STAR] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2021), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), + [anon_sym_LT_GT] = ACTIONS(2021), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), + [aux_sym_binary_expression_token1] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2019), + [aux_sym_binary_expression_token2] = ACTIONS(2019), + [aux_sym_binary_expression_token3] = ACTIONS(2019), + [aux_sym_binary_expression_token4] = ACTIONS(2021), + [aux_sym_binary_expression_token5] = ACTIONS(2021), + [aux_sym_binary_expression_token6] = ACTIONS(2021), + [anon_sym_QMARK_QMARK] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_TILDE] = ACTIONS(2021), + [aux_sym_unary_operator_token1] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE] = ACTIONS(2021), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2019), + [aux_sym_number_token2] = ACTIONS(2019), + [anon_sym_This] = ACTIONS(2019), + [anon_sym_this] = ACTIONS(2019), + [anon_sym_THIS] = ACTIONS(2019), + [anon_sym_Super] = ACTIONS(2019), + [anon_sym_super] = ACTIONS(2019), + [anon_sym_SUPER] = ACTIONS(2019), + [anon_sym_True] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_TRUE] = ACTIONS(2019), + [anon_sym_False] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_FALSE] = ACTIONS(2019), + [anon_sym_Null] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_Undefined] = ACTIONS(2019), + [anon_sym_undefined] = ACTIONS(2019), + [anon_sym_UNDEFINED] = ACTIONS(2019), + [anon_sym_get] = ACTIONS(2019), + [anon_sym_set] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(2019), + [sym_hash_empty] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2019), + [anon_sym_QueryExecute] = ACTIONS(2019), + [anon_sym_queryexecute] = ACTIONS(2019), + [anon_sym_QUERYEXECUTE] = ACTIONS(2019), + [anon_sym_queryExecute] = ACTIONS(2019), + [anon_sym_BQUOTE] = ACTIONS(2021), + [anon_sym_Abstract] = ACTIONS(2019), + [anon_sym_abstract] = ACTIONS(2019), + [anon_sym_ABSTRACT] = ACTIONS(2019), + [anon_sym_Component] = ACTIONS(2019), + [anon_sym_component] = ACTIONS(2019), + [anon_sym_COMPONENT] = ACTIONS(2019), + [anon_sym_Debugger] = ACTIONS(2019), + [anon_sym_debugger] = ACTIONS(2019), + [anon_sym_DEBUGGER] = ACTIONS(2019), + [anon_sym_Final] = ACTIONS(2019), + [anon_sym_final] = ACTIONS(2019), + [anon_sym_FINAL] = ACTIONS(2019), + [anon_sym_Function] = ACTIONS(2019), + [anon_sym_function] = ACTIONS(2019), + [anon_sym_FUNCTION] = ACTIONS(2019), + [anon_sym_In] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_IN] = ACTIONS(2019), + [anon_sym_Include] = ACTIONS(2019), + [anon_sym_include] = ACTIONS(2019), + [anon_sym_INCLUDE] = ACTIONS(2019), + [anon_sym_InstanceOf] = ACTIONS(2019), + [anon_sym_instanceof] = ACTIONS(2019), + [anon_sym_INSTANCEOF] = ACTIONS(2019), + [anon_sym_instanceOf] = ACTIONS(2019), + [anon_sym_New] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_NEW] = ACTIONS(2019), + [anon_sym_Package] = ACTIONS(2019), + [anon_sym_package] = ACTIONS(2019), + [anon_sym_PACKAGE] = ACTIONS(2019), + [anon_sym_Private] = ACTIONS(2019), + [anon_sym_private] = ACTIONS(2019), + [anon_sym_PRIVATE] = ACTIONS(2019), + [anon_sym_Public] = ACTIONS(2019), + [anon_sym_public] = ACTIONS(2019), + [anon_sym_PUBLIC] = ACTIONS(2019), + [anon_sym_Remote] = ACTIONS(2019), + [anon_sym_remote] = ACTIONS(2019), + [anon_sym_REMOTE] = ACTIONS(2019), + [anon_sym_Static] = ACTIONS(2019), + [anon_sym_static] = ACTIONS(2019), + [anon_sym_STATIC] = ACTIONS(2019), + [sym__automatic_semicolon] = ACTIONS(2021), + [sym__ternary_qmark] = ACTIONS(2021), + [sym__elvis_operator] = ACTIONS(2021), + [sym_logical_or] = ACTIONS(2021), + [sym_tag_linefeed] = ACTIONS(2021), + [sym__java_block_open] = ACTIONS(2021), + [sym__static_type_prefix] = ACTIONS(2021), + }, + [STATE(342)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4160), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4160), + [sym_parameter_attribute] = STATE(4153), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4017), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4153), + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [aux_sym_formal_parameters_repeat1] = STATE(4454), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2023), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2007), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -97255,161 +96686,670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), }, - [STATE(347)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4064), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(357), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3976), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [STATE(343)] = { + [sym_identifier] = ACTIONS(2027), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2027), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_Query] = ACTIONS(2027), + [anon_sym_query] = ACTIONS(2027), + [anon_sym_QUERY] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2027), + [sym_optional_chain] = ACTIONS(2029), + [sym_static_chain] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2029), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_GT_GT] = ACTIONS(2027), + [anon_sym_GT_GT_GT] = ACTIONS(2027), + [anon_sym_LT_LT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2027), + [anon_sym_STAR_STAR] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), + [anon_sym_LT_GT] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), + [aux_sym_binary_expression_token1] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2027), + [aux_sym_binary_expression_token2] = ACTIONS(2027), + [aux_sym_binary_expression_token3] = ACTIONS(2027), + [aux_sym_binary_expression_token4] = ACTIONS(2029), + [aux_sym_binary_expression_token5] = ACTIONS(2029), + [aux_sym_binary_expression_token6] = ACTIONS(2029), + [anon_sym_QMARK_QMARK] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2029), + [aux_sym_unary_operator_token1] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2029), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2027), + [aux_sym_number_token2] = ACTIONS(2027), + [anon_sym_This] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(2027), + [anon_sym_THIS] = ACTIONS(2027), + [anon_sym_Super] = ACTIONS(2027), + [anon_sym_super] = ACTIONS(2027), + [anon_sym_SUPER] = ACTIONS(2027), + [anon_sym_True] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2027), + [anon_sym_TRUE] = ACTIONS(2027), + [anon_sym_False] = ACTIONS(2027), + [anon_sym_false] = ACTIONS(2027), + [anon_sym_FALSE] = ACTIONS(2027), + [anon_sym_Null] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2027), + [anon_sym_NULL] = ACTIONS(2027), + [anon_sym_Undefined] = ACTIONS(2027), + [anon_sym_undefined] = ACTIONS(2027), + [anon_sym_UNDEFINED] = ACTIONS(2027), + [anon_sym_get] = ACTIONS(2027), + [anon_sym_set] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(2027), + [sym_hash_empty] = ACTIONS(2029), + [anon_sym_export] = ACTIONS(2027), + [anon_sym_QueryExecute] = ACTIONS(2027), + [anon_sym_queryexecute] = ACTIONS(2027), + [anon_sym_QUERYEXECUTE] = ACTIONS(2027), + [anon_sym_queryExecute] = ACTIONS(2027), + [anon_sym_BQUOTE] = ACTIONS(2029), + [anon_sym_Abstract] = ACTIONS(2027), + [anon_sym_abstract] = ACTIONS(2027), + [anon_sym_ABSTRACT] = ACTIONS(2027), + [anon_sym_Component] = ACTIONS(2027), + [anon_sym_component] = ACTIONS(2027), + [anon_sym_COMPONENT] = ACTIONS(2027), + [anon_sym_Debugger] = ACTIONS(2027), + [anon_sym_debugger] = ACTIONS(2027), + [anon_sym_DEBUGGER] = ACTIONS(2027), + [anon_sym_Final] = ACTIONS(2027), + [anon_sym_final] = ACTIONS(2027), + [anon_sym_FINAL] = ACTIONS(2027), + [anon_sym_Function] = ACTIONS(2027), + [anon_sym_function] = ACTIONS(2027), + [anon_sym_FUNCTION] = ACTIONS(2027), + [anon_sym_In] = ACTIONS(2027), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_IN] = ACTIONS(2027), + [anon_sym_Include] = ACTIONS(2027), + [anon_sym_include] = ACTIONS(2027), + [anon_sym_INCLUDE] = ACTIONS(2027), + [anon_sym_InstanceOf] = ACTIONS(2027), + [anon_sym_instanceof] = ACTIONS(2027), + [anon_sym_INSTANCEOF] = ACTIONS(2027), + [anon_sym_instanceOf] = ACTIONS(2027), + [anon_sym_New] = ACTIONS(2027), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_NEW] = ACTIONS(2027), + [anon_sym_Package] = ACTIONS(2027), + [anon_sym_package] = ACTIONS(2027), + [anon_sym_PACKAGE] = ACTIONS(2027), + [anon_sym_Private] = ACTIONS(2027), + [anon_sym_private] = ACTIONS(2027), + [anon_sym_PRIVATE] = ACTIONS(2027), + [anon_sym_Public] = ACTIONS(2027), + [anon_sym_public] = ACTIONS(2027), + [anon_sym_PUBLIC] = ACTIONS(2027), + [anon_sym_Remote] = ACTIONS(2027), + [anon_sym_remote] = ACTIONS(2027), + [anon_sym_REMOTE] = ACTIONS(2027), + [anon_sym_Static] = ACTIONS(2027), + [anon_sym_static] = ACTIONS(2027), + [anon_sym_STATIC] = ACTIONS(2027), + [sym__automatic_semicolon] = ACTIONS(2029), + [sym__ternary_qmark] = ACTIONS(2029), + [sym__elvis_operator] = ACTIONS(2029), + [sym_logical_or] = ACTIONS(2029), + [sym_tag_linefeed] = ACTIONS(2029), + [sym__java_block_open] = ACTIONS(2029), + [sym__static_type_prefix] = ACTIONS(2029), + }, + [STATE(344)] = { + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_Query] = ACTIONS(1957), + [anon_sym_query] = ACTIONS(1957), + [anon_sym_QUERY] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1957), + [anon_sym_TILDE] = ACTIONS(1959), + [aux_sym_unary_operator_token1] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1957), + [aux_sym_number_token2] = ACTIONS(1957), + [anon_sym_This] = ACTIONS(1957), + [anon_sym_this] = ACTIONS(1957), + [anon_sym_THIS] = ACTIONS(1957), + [anon_sym_Super] = ACTIONS(1957), + [anon_sym_super] = ACTIONS(1957), + [anon_sym_SUPER] = ACTIONS(1957), + [anon_sym_True] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_TRUE] = ACTIONS(1957), + [anon_sym_False] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_FALSE] = ACTIONS(1957), + [anon_sym_Null] = ACTIONS(1957), + [anon_sym_null] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_Undefined] = ACTIONS(1957), + [anon_sym_undefined] = ACTIONS(1957), + [anon_sym_UNDEFINED] = ACTIONS(1957), + [anon_sym_get] = ACTIONS(1957), + [anon_sym_set] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1957), + [sym_hash_empty] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_QueryExecute] = ACTIONS(1957), + [anon_sym_queryexecute] = ACTIONS(1957), + [anon_sym_QUERYEXECUTE] = ACTIONS(1957), + [anon_sym_queryExecute] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_Abstract] = ACTIONS(1957), + [anon_sym_abstract] = ACTIONS(1957), + [anon_sym_ABSTRACT] = ACTIONS(1957), + [anon_sym_Component] = ACTIONS(1957), + [anon_sym_component] = ACTIONS(1957), + [anon_sym_COMPONENT] = ACTIONS(1957), + [anon_sym_Debugger] = ACTIONS(1957), + [anon_sym_debugger] = ACTIONS(1957), + [anon_sym_DEBUGGER] = ACTIONS(1957), + [anon_sym_Final] = ACTIONS(1957), + [anon_sym_final] = ACTIONS(1957), + [anon_sym_FINAL] = ACTIONS(1957), + [anon_sym_Function] = ACTIONS(1957), + [anon_sym_function] = ACTIONS(1957), + [anon_sym_FUNCTION] = ACTIONS(1957), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_Include] = ACTIONS(1957), + [anon_sym_include] = ACTIONS(1957), + [anon_sym_INCLUDE] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1957), + [anon_sym_instanceof] = ACTIONS(1957), + [anon_sym_INSTANCEOF] = ACTIONS(1957), + [anon_sym_instanceOf] = ACTIONS(1957), + [anon_sym_New] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_NEW] = ACTIONS(1957), + [anon_sym_Package] = ACTIONS(1957), + [anon_sym_package] = ACTIONS(1957), + [anon_sym_PACKAGE] = ACTIONS(1957), + [anon_sym_Private] = ACTIONS(1957), + [anon_sym_private] = ACTIONS(1957), + [anon_sym_PRIVATE] = ACTIONS(1957), + [anon_sym_Public] = ACTIONS(1957), + [anon_sym_public] = ACTIONS(1957), + [anon_sym_PUBLIC] = ACTIONS(1957), + [anon_sym_Remote] = ACTIONS(1957), + [anon_sym_remote] = ACTIONS(1957), + [anon_sym_REMOTE] = ACTIONS(1957), + [anon_sym_Static] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_STATIC] = ACTIONS(1957), + [sym__automatic_semicolon] = ACTIONS(1959), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), + [sym_tag_linefeed] = ACTIONS(1959), + [sym__java_block_open] = ACTIONS(1959), + [sym__static_type_prefix] = ACTIONS(1959), + }, + [STATE(345)] = { + [sym_identifier] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_Query] = ACTIONS(2031), + [anon_sym_query] = ACTIONS(2031), + [anon_sym_QUERY] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2031), + [sym_optional_chain] = ACTIONS(2033), + [sym_static_chain] = ACTIONS(2033), + [anon_sym_PLUS_EQ] = ACTIONS(2033), + [anon_sym_DASH_EQ] = ACTIONS(2033), + [anon_sym_STAR_EQ] = ACTIONS(2033), + [anon_sym_SLASH_EQ] = ACTIONS(2033), + [anon_sym_PERCENT_EQ] = ACTIONS(2033), + [anon_sym_CARET_EQ] = ACTIONS(2033), + [anon_sym_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_LT_LT_EQ] = ACTIONS(2033), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2033), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), + [anon_sym_LT_GT] = ACTIONS(2033), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), + [aux_sym_binary_expression_token1] = ACTIONS(2033), + [anon_sym_GT_EQ] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [aux_sym_binary_expression_token2] = ACTIONS(2031), + [aux_sym_binary_expression_token3] = ACTIONS(2031), + [aux_sym_binary_expression_token4] = ACTIONS(2033), + [aux_sym_binary_expression_token5] = ACTIONS(2033), + [aux_sym_binary_expression_token6] = ACTIONS(2033), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2033), + [aux_sym_unary_operator_token1] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2033), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2031), + [aux_sym_number_token2] = ACTIONS(2031), + [anon_sym_This] = ACTIONS(2031), + [anon_sym_this] = ACTIONS(2031), + [anon_sym_THIS] = ACTIONS(2031), + [anon_sym_Super] = ACTIONS(2031), + [anon_sym_super] = ACTIONS(2031), + [anon_sym_SUPER] = ACTIONS(2031), + [anon_sym_True] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_TRUE] = ACTIONS(2031), + [anon_sym_False] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [anon_sym_FALSE] = ACTIONS(2031), + [anon_sym_Null] = ACTIONS(2031), + [anon_sym_null] = ACTIONS(2031), + [anon_sym_NULL] = ACTIONS(2031), + [anon_sym_Undefined] = ACTIONS(2031), + [anon_sym_undefined] = ACTIONS(2031), + [anon_sym_UNDEFINED] = ACTIONS(2031), + [anon_sym_get] = ACTIONS(2031), + [anon_sym_set] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(2031), + [sym_hash_empty] = ACTIONS(2033), + [anon_sym_export] = ACTIONS(2031), + [anon_sym_QueryExecute] = ACTIONS(2031), + [anon_sym_queryexecute] = ACTIONS(2031), + [anon_sym_QUERYEXECUTE] = ACTIONS(2031), + [anon_sym_queryExecute] = ACTIONS(2031), + [anon_sym_BQUOTE] = ACTIONS(2033), + [anon_sym_Abstract] = ACTIONS(2031), + [anon_sym_abstract] = ACTIONS(2031), + [anon_sym_ABSTRACT] = ACTIONS(2031), + [anon_sym_Component] = ACTIONS(2031), + [anon_sym_component] = ACTIONS(2031), + [anon_sym_COMPONENT] = ACTIONS(2031), + [anon_sym_Debugger] = ACTIONS(2031), + [anon_sym_debugger] = ACTIONS(2031), + [anon_sym_DEBUGGER] = ACTIONS(2031), + [anon_sym_Final] = ACTIONS(2031), + [anon_sym_final] = ACTIONS(2031), + [anon_sym_FINAL] = ACTIONS(2031), + [anon_sym_Function] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(2031), + [anon_sym_FUNCTION] = ACTIONS(2031), + [anon_sym_In] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_IN] = ACTIONS(2031), + [anon_sym_Include] = ACTIONS(2031), + [anon_sym_include] = ACTIONS(2031), + [anon_sym_INCLUDE] = ACTIONS(2031), + [anon_sym_InstanceOf] = ACTIONS(2031), + [anon_sym_instanceof] = ACTIONS(2031), + [anon_sym_INSTANCEOF] = ACTIONS(2031), + [anon_sym_instanceOf] = ACTIONS(2031), + [anon_sym_New] = ACTIONS(2031), + [anon_sym_new] = ACTIONS(2031), + [anon_sym_NEW] = ACTIONS(2031), + [anon_sym_Package] = ACTIONS(2031), + [anon_sym_package] = ACTIONS(2031), + [anon_sym_PACKAGE] = ACTIONS(2031), + [anon_sym_Private] = ACTIONS(2031), + [anon_sym_private] = ACTIONS(2031), + [anon_sym_PRIVATE] = ACTIONS(2031), + [anon_sym_Public] = ACTIONS(2031), + [anon_sym_public] = ACTIONS(2031), + [anon_sym_PUBLIC] = ACTIONS(2031), + [anon_sym_Remote] = ACTIONS(2031), + [anon_sym_remote] = ACTIONS(2031), + [anon_sym_REMOTE] = ACTIONS(2031), + [anon_sym_Static] = ACTIONS(2031), + [anon_sym_static] = ACTIONS(2031), + [anon_sym_STATIC] = ACTIONS(2031), + [sym__automatic_semicolon] = ACTIONS(2033), + [sym__ternary_qmark] = ACTIONS(2033), + [sym__elvis_operator] = ACTIONS(2033), + [sym_logical_or] = ACTIONS(2033), + [sym_tag_linefeed] = ACTIONS(2033), + [sym__java_block_open] = ACTIONS(2033), + [sym__static_type_prefix] = ACTIONS(2033), + }, + [STATE(346)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4132), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(370), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4041), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(2047), - [anon_sym_required] = ACTIONS(2047), - [anon_sym_REQUIRED] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1756), + [anon_sym_required] = ACTIONS(1756), + [anon_sym_REQUIRED] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -97422,153 +97362,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(348)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4099), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4099), - [sym_parameter_attribute] = STATE(4098), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3970), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4098), - [aux_sym__formal_parameter_repeat1] = STATE(352), - [aux_sym_formal_parameters_repeat1] = STATE(4485), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2049), + [STATE(347)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(2053), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -97581,169 +97529,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), }, - [STATE(349)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [STATE(348)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4136), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4136), + [sym_parameter_attribute] = STATE(4110), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4020), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4110), + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [aux_sym_formal_parameters_repeat1] = STATE(4565), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2037), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2007), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -97756,153 +97688,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), }, - [STATE(350)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4099), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4099), - [sym_parameter_attribute] = STATE(4098), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3970), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4098), - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [aux_sym_formal_parameters_repeat1] = STATE(4485), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2049), + [STATE(349)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4135), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4135), + [sym_parameter_attribute] = STATE(4157), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4078), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4157), + [aux_sym__formal_parameter_repeat1] = STATE(354), + [aux_sym_formal_parameters_repeat1] = STATE(4494), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2039), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(1967), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2043), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -97915,169 +97855,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), + [sym__parameter_separator] = ACTIONS(1989), + }, + [STATE(350)] = { + [sym_identifier] = ACTIONS(2045), + [anon_sym_DOT] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_COMMA] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_EQ] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_Query] = ACTIONS(2045), + [anon_sym_query] = ACTIONS(2045), + [anon_sym_QUERY] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2045), + [sym_optional_chain] = ACTIONS(2047), + [sym_static_chain] = ACTIONS(2047), + [anon_sym_PLUS_EQ] = ACTIONS(2047), + [anon_sym_DASH_EQ] = ACTIONS(2047), + [anon_sym_STAR_EQ] = ACTIONS(2047), + [anon_sym_SLASH_EQ] = ACTIONS(2047), + [anon_sym_PERCENT_EQ] = ACTIONS(2047), + [anon_sym_CARET_EQ] = ACTIONS(2047), + [anon_sym_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_LT_LT_EQ] = ACTIONS(2047), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_GT_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_CARET] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_SLASH] = ACTIONS(2045), + [anon_sym_PERCENT] = ACTIONS(2045), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_STAR_STAR] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_EQ_EQ] = ACTIONS(2045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2047), + [anon_sym_LT_GT] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2047), + [aux_sym_binary_expression_token1] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [aux_sym_binary_expression_token2] = ACTIONS(2045), + [aux_sym_binary_expression_token3] = ACTIONS(2045), + [aux_sym_binary_expression_token4] = ACTIONS(2047), + [aux_sym_binary_expression_token5] = ACTIONS(2047), + [aux_sym_binary_expression_token6] = ACTIONS(2047), + [anon_sym_QMARK_QMARK] = ACTIONS(2045), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2047), + [aux_sym_unary_operator_token1] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2047), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2045), + [aux_sym_number_token2] = ACTIONS(2045), + [anon_sym_This] = ACTIONS(2045), + [anon_sym_this] = ACTIONS(2045), + [anon_sym_THIS] = ACTIONS(2045), + [anon_sym_Super] = ACTIONS(2045), + [anon_sym_super] = ACTIONS(2045), + [anon_sym_SUPER] = ACTIONS(2045), + [anon_sym_True] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_TRUE] = ACTIONS(2045), + [anon_sym_False] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_FALSE] = ACTIONS(2045), + [anon_sym_Null] = ACTIONS(2045), + [anon_sym_null] = ACTIONS(2045), + [anon_sym_NULL] = ACTIONS(2045), + [anon_sym_Undefined] = ACTIONS(2045), + [anon_sym_undefined] = ACTIONS(2045), + [anon_sym_UNDEFINED] = ACTIONS(2045), + [anon_sym_get] = ACTIONS(2045), + [anon_sym_set] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(2045), + [sym_hash_empty] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2045), + [anon_sym_QueryExecute] = ACTIONS(2045), + [anon_sym_queryexecute] = ACTIONS(2045), + [anon_sym_QUERYEXECUTE] = ACTIONS(2045), + [anon_sym_queryExecute] = ACTIONS(2045), + [anon_sym_BQUOTE] = ACTIONS(2047), + [anon_sym_Abstract] = ACTIONS(2045), + [anon_sym_abstract] = ACTIONS(2045), + [anon_sym_ABSTRACT] = ACTIONS(2045), + [anon_sym_Component] = ACTIONS(2045), + [anon_sym_component] = ACTIONS(2045), + [anon_sym_COMPONENT] = ACTIONS(2045), + [anon_sym_Debugger] = ACTIONS(2045), + [anon_sym_debugger] = ACTIONS(2045), + [anon_sym_DEBUGGER] = ACTIONS(2045), + [anon_sym_Final] = ACTIONS(2045), + [anon_sym_final] = ACTIONS(2045), + [anon_sym_FINAL] = ACTIONS(2045), + [anon_sym_Function] = ACTIONS(2045), + [anon_sym_function] = ACTIONS(2045), + [anon_sym_FUNCTION] = ACTIONS(2045), + [anon_sym_In] = ACTIONS(2045), + [anon_sym_in] = ACTIONS(2045), + [anon_sym_IN] = ACTIONS(2045), + [anon_sym_Include] = ACTIONS(2045), + [anon_sym_include] = ACTIONS(2045), + [anon_sym_INCLUDE] = ACTIONS(2045), + [anon_sym_InstanceOf] = ACTIONS(2045), + [anon_sym_instanceof] = ACTIONS(2045), + [anon_sym_INSTANCEOF] = ACTIONS(2045), + [anon_sym_instanceOf] = ACTIONS(2045), + [anon_sym_New] = ACTIONS(2045), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_NEW] = ACTIONS(2045), + [anon_sym_Package] = ACTIONS(2045), + [anon_sym_package] = ACTIONS(2045), + [anon_sym_PACKAGE] = ACTIONS(2045), + [anon_sym_Private] = ACTIONS(2045), + [anon_sym_private] = ACTIONS(2045), + [anon_sym_PRIVATE] = ACTIONS(2045), + [anon_sym_Public] = ACTIONS(2045), + [anon_sym_public] = ACTIONS(2045), + [anon_sym_PUBLIC] = ACTIONS(2045), + [anon_sym_Remote] = ACTIONS(2045), + [anon_sym_remote] = ACTIONS(2045), + [anon_sym_REMOTE] = ACTIONS(2045), + [anon_sym_Static] = ACTIONS(2045), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_STATIC] = ACTIONS(2045), + [sym__automatic_semicolon] = ACTIONS(2047), + [sym__ternary_qmark] = ACTIONS(2047), + [sym__elvis_operator] = ACTIONS(2047), + [sym_logical_or] = ACTIONS(2047), + [sym_tag_linefeed] = ACTIONS(2047), + [sym__java_block_open] = ACTIONS(2047), + [sym__static_type_prefix] = ACTIONS(2047), }, [STATE(351)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4138), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(374), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4045), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(2051), + [anon_sym_required] = ACTIONS(2051), + [anon_sym_REQUIRED] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -98090,153 +98197,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(352)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4105), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4105), - [sym_parameter_attribute] = STATE(4103), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3964), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4103), - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [aux_sym_formal_parameters_repeat1] = STATE(4493), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2057), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4188), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4188), + [sym_parameter_attribute] = STATE(4112), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4014), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4112), + [aux_sym__formal_parameter_repeat1] = STATE(356), + [aux_sym_formal_parameters_repeat1] = STATE(4492), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2053), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(1967), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2057), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -98249,169 +98356,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), + [sym__parameter_separator] = ACTIONS(1989), }, [STATE(353)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -98424,161 +98531,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(354)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4188), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4188), + [sym_parameter_attribute] = STATE(4112), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4014), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4112), + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [aux_sym_formal_parameters_repeat1] = STATE(4492), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2053), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2007), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -98591,161 +98690,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), }, [STATE(355)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -98758,161 +98865,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(356)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4121), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4121), + [sym_parameter_attribute] = STATE(4108), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4040), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4108), + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [aux_sym_formal_parameters_repeat1] = STATE(4515), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2063), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2007), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -98925,153 +99024,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), }, [STATE(357)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4073), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4073), - [sym_parameter_attribute] = STATE(4074), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3980), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4074), - [aux_sym__formal_parameter_repeat1] = STATE(360), - [aux_sym_formal_parameters_repeat1] = STATE(4464), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2067), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(2071), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -99084,161 +99199,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), }, [STATE(358)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4079), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4079), - [sym_parameter_attribute] = STATE(4078), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3988), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4078), - [aux_sym__formal_parameter_repeat1] = STATE(362), - [aux_sym_formal_parameters_repeat1] = STATE(4517), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2073), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(2077), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -99251,169 +99366,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), }, [STATE(359)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -99426,153 +99533,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(360)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4079), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4079), - [sym_parameter_attribute] = STATE(4078), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3988), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4078), - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [aux_sym_formal_parameters_repeat1] = STATE(4517), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2073), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(1967), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -99585,1573 +99700,396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), }, [STATE(361)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(362)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4083), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4083), - [sym_parameter_attribute] = STATE(4082), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4048), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4082), - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [aux_sym_formal_parameters_repeat1] = STATE(4496), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(1967), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), - }, - [STATE(363)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_let] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_Query] = ACTIONS(507), + [anon_sym_query] = ACTIONS(507), + [anon_sym_QUERY] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [aux_sym_unary_operator_token1] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(364)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(365)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(366)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(367)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4058), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4058), - [sym_parameter_attribute] = STATE(4055), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3983), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4055), - [aux_sym__formal_parameter_repeat1] = STATE(339), - [aux_sym_formal_parameters_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(2091), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(1979), - }, - [STATE(368)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(507), + [aux_sym_number_token2] = ACTIONS(507), + [anon_sym_This] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), + [anon_sym_THIS] = ACTIONS(507), + [anon_sym_Super] = ACTIONS(507), + [anon_sym_super] = ACTIONS(507), + [anon_sym_SUPER] = ACTIONS(507), + [anon_sym_True] = ACTIONS(507), + [anon_sym_true] = ACTIONS(507), + [anon_sym_TRUE] = ACTIONS(507), + [anon_sym_False] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_FALSE] = ACTIONS(507), + [anon_sym_Null] = ACTIONS(507), + [anon_sym_null] = ACTIONS(507), + [anon_sym_NULL] = ACTIONS(507), + [anon_sym_Undefined] = ACTIONS(507), + [anon_sym_undefined] = ACTIONS(507), + [anon_sym_UNDEFINED] = ACTIONS(507), + [anon_sym_get] = ACTIONS(507), + [anon_sym_set] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [sym_hash_empty] = ACTIONS(509), + [anon_sym_export] = ACTIONS(507), + [anon_sym_QueryExecute] = ACTIONS(507), + [anon_sym_queryexecute] = ACTIONS(507), + [anon_sym_QUERYEXECUTE] = ACTIONS(507), + [anon_sym_queryExecute] = ACTIONS(507), + [anon_sym_BQUOTE] = ACTIONS(509), + [anon_sym_Abstract] = ACTIONS(507), + [anon_sym_abstract] = ACTIONS(507), + [anon_sym_ABSTRACT] = ACTIONS(507), + [anon_sym_Component] = ACTIONS(507), + [anon_sym_component] = ACTIONS(507), + [anon_sym_COMPONENT] = ACTIONS(507), + [anon_sym_Debugger] = ACTIONS(507), + [anon_sym_debugger] = ACTIONS(507), + [anon_sym_DEBUGGER] = ACTIONS(507), + [anon_sym_Final] = ACTIONS(507), + [anon_sym_final] = ACTIONS(507), + [anon_sym_FINAL] = ACTIONS(507), + [anon_sym_Function] = ACTIONS(507), + [anon_sym_function] = ACTIONS(507), + [anon_sym_FUNCTION] = ACTIONS(507), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(507), + [anon_sym_include] = ACTIONS(507), + [anon_sym_INCLUDE] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(507), + [anon_sym_new] = ACTIONS(507), + [anon_sym_NEW] = ACTIONS(507), + [anon_sym_Package] = ACTIONS(507), + [anon_sym_package] = ACTIONS(507), + [anon_sym_PACKAGE] = ACTIONS(507), + [anon_sym_Private] = ACTIONS(507), + [anon_sym_private] = ACTIONS(507), + [anon_sym_PRIVATE] = ACTIONS(507), + [anon_sym_Public] = ACTIONS(507), + [anon_sym_public] = ACTIONS(507), + [anon_sym_PUBLIC] = ACTIONS(507), + [anon_sym_Remote] = ACTIONS(507), + [anon_sym_remote] = ACTIONS(507), + [anon_sym_REMOTE] = ACTIONS(507), + [anon_sym_Static] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_STATIC] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(509), + [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(369)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(362)] = { + [sym_identifier] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_EQ] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_Query] = ACTIONS(2073), + [anon_sym_query] = ACTIONS(2073), + [anon_sym_QUERY] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2073), + [sym_optional_chain] = ACTIONS(2075), + [sym_static_chain] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2075), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_GT_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_PERCENT] = ACTIONS(2073), + [anon_sym_BSLASH] = ACTIONS(2073), + [anon_sym_STAR_STAR] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_LT_GT] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [aux_sym_binary_expression_token1] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2073), + [aux_sym_binary_expression_token2] = ACTIONS(2073), + [aux_sym_binary_expression_token3] = ACTIONS(2073), + [aux_sym_binary_expression_token4] = ACTIONS(2075), + [aux_sym_binary_expression_token5] = ACTIONS(2075), + [aux_sym_binary_expression_token6] = ACTIONS(2075), + [anon_sym_QMARK_QMARK] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2075), + [aux_sym_unary_operator_token1] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2073), + [aux_sym_number_token2] = ACTIONS(2073), + [anon_sym_This] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(2073), + [anon_sym_THIS] = ACTIONS(2073), + [anon_sym_Super] = ACTIONS(2073), + [anon_sym_super] = ACTIONS(2073), + [anon_sym_SUPER] = ACTIONS(2073), + [anon_sym_True] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_TRUE] = ACTIONS(2073), + [anon_sym_False] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_FALSE] = ACTIONS(2073), + [anon_sym_Null] = ACTIONS(2073), + [anon_sym_null] = ACTIONS(2073), + [anon_sym_NULL] = ACTIONS(2073), + [anon_sym_Undefined] = ACTIONS(2073), + [anon_sym_undefined] = ACTIONS(2073), + [anon_sym_UNDEFINED] = ACTIONS(2073), + [anon_sym_get] = ACTIONS(2073), + [anon_sym_set] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(2073), + [sym_hash_empty] = ACTIONS(2075), + [anon_sym_export] = ACTIONS(2073), + [anon_sym_QueryExecute] = ACTIONS(2073), + [anon_sym_queryexecute] = ACTIONS(2073), + [anon_sym_QUERYEXECUTE] = ACTIONS(2073), + [anon_sym_queryExecute] = ACTIONS(2073), + [anon_sym_BQUOTE] = ACTIONS(2075), + [anon_sym_Abstract] = ACTIONS(2073), + [anon_sym_abstract] = ACTIONS(2073), + [anon_sym_ABSTRACT] = ACTIONS(2073), + [anon_sym_Component] = ACTIONS(2073), + [anon_sym_component] = ACTIONS(2073), + [anon_sym_COMPONENT] = ACTIONS(2073), + [anon_sym_Debugger] = ACTIONS(2073), + [anon_sym_debugger] = ACTIONS(2073), + [anon_sym_DEBUGGER] = ACTIONS(2073), + [anon_sym_Final] = ACTIONS(2073), + [anon_sym_final] = ACTIONS(2073), + [anon_sym_FINAL] = ACTIONS(2073), + [anon_sym_Function] = ACTIONS(2073), + [anon_sym_function] = ACTIONS(2073), + [anon_sym_FUNCTION] = ACTIONS(2073), + [anon_sym_In] = ACTIONS(2073), + [anon_sym_in] = ACTIONS(2073), + [anon_sym_IN] = ACTIONS(2073), + [anon_sym_Include] = ACTIONS(2073), + [anon_sym_include] = ACTIONS(2073), + [anon_sym_INCLUDE] = ACTIONS(2073), + [anon_sym_InstanceOf] = ACTIONS(2073), + [anon_sym_instanceof] = ACTIONS(2073), + [anon_sym_INSTANCEOF] = ACTIONS(2073), + [anon_sym_instanceOf] = ACTIONS(2073), + [anon_sym_New] = ACTIONS(2073), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_NEW] = ACTIONS(2073), + [anon_sym_Package] = ACTIONS(2073), + [anon_sym_package] = ACTIONS(2073), + [anon_sym_PACKAGE] = ACTIONS(2073), + [anon_sym_Private] = ACTIONS(2073), + [anon_sym_private] = ACTIONS(2073), + [anon_sym_PRIVATE] = ACTIONS(2073), + [anon_sym_Public] = ACTIONS(2073), + [anon_sym_public] = ACTIONS(2073), + [anon_sym_PUBLIC] = ACTIONS(2073), + [anon_sym_Remote] = ACTIONS(2073), + [anon_sym_remote] = ACTIONS(2073), + [anon_sym_REMOTE] = ACTIONS(2073), + [anon_sym_Static] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_STATIC] = ACTIONS(2073), + [sym__automatic_semicolon] = ACTIONS(2075), + [sym__ternary_qmark] = ACTIONS(2075), + [sym__elvis_operator] = ACTIONS(2075), + [sym_logical_or] = ACTIONS(2075), + [sym_tag_linefeed] = ACTIONS(2075), + [sym__java_block_open] = ACTIONS(2075), + [sym__static_type_prefix] = ACTIONS(2075), }, - [STATE(370)] = { + [STATE(363)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), @@ -101160,7 +100098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), @@ -101318,1108 +100256,2277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, + [STATE(364)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(365)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4115), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(349), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4016), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(2081), + [anon_sym_required] = ACTIONS(2081), + [anon_sym_REQUIRED] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(366)] = { + [sym_identifier] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_Query] = ACTIONS(2083), + [anon_sym_query] = ACTIONS(2083), + [anon_sym_QUERY] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2083), + [sym_optional_chain] = ACTIONS(2085), + [sym_static_chain] = ACTIONS(2085), + [anon_sym_PLUS_EQ] = ACTIONS(2085), + [anon_sym_DASH_EQ] = ACTIONS(2085), + [anon_sym_STAR_EQ] = ACTIONS(2085), + [anon_sym_SLASH_EQ] = ACTIONS(2085), + [anon_sym_PERCENT_EQ] = ACTIONS(2085), + [anon_sym_CARET_EQ] = ACTIONS(2085), + [anon_sym_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_LT_LT_EQ] = ACTIONS(2085), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [anon_sym_GT_GT] = ACTIONS(2083), + [anon_sym_GT_GT_GT] = ACTIONS(2083), + [anon_sym_LT_LT] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_BSLASH] = ACTIONS(2083), + [anon_sym_STAR_STAR] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_LT_GT] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [aux_sym_binary_expression_token1] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2083), + [aux_sym_binary_expression_token2] = ACTIONS(2083), + [aux_sym_binary_expression_token3] = ACTIONS(2083), + [aux_sym_binary_expression_token4] = ACTIONS(2085), + [aux_sym_binary_expression_token5] = ACTIONS(2085), + [aux_sym_binary_expression_token6] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2085), + [aux_sym_unary_operator_token1] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2083), + [aux_sym_number_token2] = ACTIONS(2083), + [anon_sym_This] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(2083), + [anon_sym_THIS] = ACTIONS(2083), + [anon_sym_Super] = ACTIONS(2083), + [anon_sym_super] = ACTIONS(2083), + [anon_sym_SUPER] = ACTIONS(2083), + [anon_sym_True] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2083), + [anon_sym_TRUE] = ACTIONS(2083), + [anon_sym_False] = ACTIONS(2083), + [anon_sym_false] = ACTIONS(2083), + [anon_sym_FALSE] = ACTIONS(2083), + [anon_sym_Null] = ACTIONS(2083), + [anon_sym_null] = ACTIONS(2083), + [anon_sym_NULL] = ACTIONS(2083), + [anon_sym_Undefined] = ACTIONS(2083), + [anon_sym_undefined] = ACTIONS(2083), + [anon_sym_UNDEFINED] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(2083), + [sym_hash_empty] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_QueryExecute] = ACTIONS(2083), + [anon_sym_queryexecute] = ACTIONS(2083), + [anon_sym_QUERYEXECUTE] = ACTIONS(2083), + [anon_sym_queryExecute] = ACTIONS(2083), + [anon_sym_BQUOTE] = ACTIONS(2085), + [anon_sym_Abstract] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_ABSTRACT] = ACTIONS(2083), + [anon_sym_Component] = ACTIONS(2083), + [anon_sym_component] = ACTIONS(2083), + [anon_sym_COMPONENT] = ACTIONS(2083), + [anon_sym_Debugger] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_DEBUGGER] = ACTIONS(2083), + [anon_sym_Final] = ACTIONS(2083), + [anon_sym_final] = ACTIONS(2083), + [anon_sym_FINAL] = ACTIONS(2083), + [anon_sym_Function] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_FUNCTION] = ACTIONS(2083), + [anon_sym_In] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_IN] = ACTIONS(2083), + [anon_sym_Include] = ACTIONS(2083), + [anon_sym_include] = ACTIONS(2083), + [anon_sym_INCLUDE] = ACTIONS(2083), + [anon_sym_InstanceOf] = ACTIONS(2083), + [anon_sym_instanceof] = ACTIONS(2083), + [anon_sym_INSTANCEOF] = ACTIONS(2083), + [anon_sym_instanceOf] = ACTIONS(2083), + [anon_sym_New] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_NEW] = ACTIONS(2083), + [anon_sym_Package] = ACTIONS(2083), + [anon_sym_package] = ACTIONS(2083), + [anon_sym_PACKAGE] = ACTIONS(2083), + [anon_sym_Private] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_PRIVATE] = ACTIONS(2083), + [anon_sym_Public] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_PUBLIC] = ACTIONS(2083), + [anon_sym_Remote] = ACTIONS(2083), + [anon_sym_remote] = ACTIONS(2083), + [anon_sym_REMOTE] = ACTIONS(2083), + [anon_sym_Static] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_STATIC] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2085), + [sym__ternary_qmark] = ACTIONS(2085), + [sym__elvis_operator] = ACTIONS(2085), + [sym_logical_or] = ACTIONS(2085), + [sym_tag_linefeed] = ACTIONS(2085), + [sym__java_block_open] = ACTIONS(2085), + [sym__static_type_prefix] = ACTIONS(2085), + }, + [STATE(367)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4160), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4160), + [sym_parameter_attribute] = STATE(4153), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4017), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4153), + [aux_sym__formal_parameter_repeat1] = STATE(348), + [aux_sym_formal_parameters_repeat1] = STATE(4454), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), + }, + [STATE(368)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(369)] = { + [sym_identifier] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_Query] = ACTIONS(2089), + [anon_sym_query] = ACTIONS(2089), + [anon_sym_QUERY] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2089), + [sym_optional_chain] = ACTIONS(2091), + [sym_static_chain] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [anon_sym_DASH_EQ] = ACTIONS(2091), + [anon_sym_STAR_EQ] = ACTIONS(2091), + [anon_sym_SLASH_EQ] = ACTIONS(2091), + [anon_sym_PERCENT_EQ] = ACTIONS(2091), + [anon_sym_CARET_EQ] = ACTIONS(2091), + [anon_sym_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_LT_LT_EQ] = ACTIONS(2091), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2089), + [anon_sym_STAR_STAR] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_GT] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [aux_sym_binary_expression_token1] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2089), + [aux_sym_binary_expression_token2] = ACTIONS(2089), + [aux_sym_binary_expression_token3] = ACTIONS(2089), + [aux_sym_binary_expression_token4] = ACTIONS(2091), + [aux_sym_binary_expression_token5] = ACTIONS(2091), + [aux_sym_binary_expression_token6] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2091), + [aux_sym_unary_operator_token1] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2089), + [aux_sym_number_token2] = ACTIONS(2089), + [anon_sym_This] = ACTIONS(2089), + [anon_sym_this] = ACTIONS(2089), + [anon_sym_THIS] = ACTIONS(2089), + [anon_sym_Super] = ACTIONS(2089), + [anon_sym_super] = ACTIONS(2089), + [anon_sym_SUPER] = ACTIONS(2089), + [anon_sym_True] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_TRUE] = ACTIONS(2089), + [anon_sym_False] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_FALSE] = ACTIONS(2089), + [anon_sym_Null] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [anon_sym_NULL] = ACTIONS(2089), + [anon_sym_Undefined] = ACTIONS(2089), + [anon_sym_undefined] = ACTIONS(2089), + [anon_sym_UNDEFINED] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2089), + [sym_hash_empty] = ACTIONS(2091), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_QueryExecute] = ACTIONS(2089), + [anon_sym_queryexecute] = ACTIONS(2089), + [anon_sym_QUERYEXECUTE] = ACTIONS(2089), + [anon_sym_queryExecute] = ACTIONS(2089), + [anon_sym_BQUOTE] = ACTIONS(2091), + [anon_sym_Abstract] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_ABSTRACT] = ACTIONS(2089), + [anon_sym_Component] = ACTIONS(2089), + [anon_sym_component] = ACTIONS(2089), + [anon_sym_COMPONENT] = ACTIONS(2089), + [anon_sym_Debugger] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_DEBUGGER] = ACTIONS(2089), + [anon_sym_Final] = ACTIONS(2089), + [anon_sym_final] = ACTIONS(2089), + [anon_sym_FINAL] = ACTIONS(2089), + [anon_sym_Function] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_FUNCTION] = ACTIONS(2089), + [anon_sym_In] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_IN] = ACTIONS(2089), + [anon_sym_Include] = ACTIONS(2089), + [anon_sym_include] = ACTIONS(2089), + [anon_sym_INCLUDE] = ACTIONS(2089), + [anon_sym_InstanceOf] = ACTIONS(2089), + [anon_sym_instanceof] = ACTIONS(2089), + [anon_sym_INSTANCEOF] = ACTIONS(2089), + [anon_sym_instanceOf] = ACTIONS(2089), + [anon_sym_New] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_NEW] = ACTIONS(2089), + [anon_sym_Package] = ACTIONS(2089), + [anon_sym_package] = ACTIONS(2089), + [anon_sym_PACKAGE] = ACTIONS(2089), + [anon_sym_Private] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_PRIVATE] = ACTIONS(2089), + [anon_sym_Public] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_PUBLIC] = ACTIONS(2089), + [anon_sym_Remote] = ACTIONS(2089), + [anon_sym_remote] = ACTIONS(2089), + [anon_sym_REMOTE] = ACTIONS(2089), + [anon_sym_Static] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_STATIC] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2091), + [sym__ternary_qmark] = ACTIONS(2091), + [sym__elvis_operator] = ACTIONS(2091), + [sym_logical_or] = ACTIONS(2091), + [sym_tag_linefeed] = ACTIONS(2091), + [sym__java_block_open] = ACTIONS(2091), + [sym__static_type_prefix] = ACTIONS(2091), + }, + [STATE(370)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4123), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4123), + [sym_parameter_attribute] = STATE(4116), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4026), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4116), + [aux_sym__formal_parameter_repeat1] = STATE(342), + [aux_sym_formal_parameters_repeat1] = STATE(4496), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2097), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), + }, [STATE(371)] = { - [sym_identifier] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_Query] = ACTIONS(2095), - [anon_sym_query] = ACTIONS(2095), - [anon_sym_QUERY] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2095), - [sym_optional_chain] = ACTIONS(2097), - [sym_static_chain] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2097), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2095), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_BSLASH] = ACTIONS(2095), - [anon_sym_STAR_STAR] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_GT] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [aux_sym_binary_expression_token1] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2095), - [aux_sym_binary_expression_token2] = ACTIONS(2095), - [aux_sym_binary_expression_token3] = ACTIONS(2095), - [aux_sym_binary_expression_token4] = ACTIONS(2097), - [aux_sym_binary_expression_token5] = ACTIONS(2097), - [aux_sym_binary_expression_token6] = ACTIONS(2097), - [anon_sym_QMARK_QMARK] = ACTIONS(2095), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_TILDE] = ACTIONS(2097), - [aux_sym_unary_operator_token1] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2095), - [aux_sym_number_token2] = ACTIONS(2095), - [anon_sym_This] = ACTIONS(2095), - [anon_sym_this] = ACTIONS(2095), - [anon_sym_THIS] = ACTIONS(2095), - [anon_sym_Super] = ACTIONS(2095), - [anon_sym_super] = ACTIONS(2095), - [anon_sym_SUPER] = ACTIONS(2095), - [anon_sym_True] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_TRUE] = ACTIONS(2095), - [anon_sym_False] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [anon_sym_FALSE] = ACTIONS(2095), - [anon_sym_Null] = ACTIONS(2095), - [anon_sym_null] = ACTIONS(2095), - [anon_sym_NULL] = ACTIONS(2095), - [anon_sym_Undefined] = ACTIONS(2095), - [anon_sym_undefined] = ACTIONS(2095), - [anon_sym_UNDEFINED] = ACTIONS(2095), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(2095), - [sym_hash_empty] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_QueryExecute] = ACTIONS(2095), - [anon_sym_queryexecute] = ACTIONS(2095), - [anon_sym_QUERYEXECUTE] = ACTIONS(2095), - [anon_sym_queryExecute] = ACTIONS(2095), - [anon_sym_BQUOTE] = ACTIONS(2097), - [anon_sym_Abstract] = ACTIONS(2095), - [anon_sym_abstract] = ACTIONS(2095), - [anon_sym_ABSTRACT] = ACTIONS(2095), - [anon_sym_Component] = ACTIONS(2095), - [anon_sym_component] = ACTIONS(2095), - [anon_sym_COMPONENT] = ACTIONS(2095), - [anon_sym_Debugger] = ACTIONS(2095), - [anon_sym_debugger] = ACTIONS(2095), - [anon_sym_DEBUGGER] = ACTIONS(2095), - [anon_sym_Final] = ACTIONS(2095), - [anon_sym_final] = ACTIONS(2095), - [anon_sym_FINAL] = ACTIONS(2095), - [anon_sym_Function] = ACTIONS(2095), - [anon_sym_function] = ACTIONS(2095), - [anon_sym_FUNCTION] = ACTIONS(2095), - [anon_sym_In] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_IN] = ACTIONS(2095), - [anon_sym_Include] = ACTIONS(2095), - [anon_sym_include] = ACTIONS(2095), - [anon_sym_INCLUDE] = ACTIONS(2095), - [anon_sym_InstanceOf] = ACTIONS(2095), - [anon_sym_instanceof] = ACTIONS(2095), - [anon_sym_INSTANCEOF] = ACTIONS(2095), - [anon_sym_instanceOf] = ACTIONS(2095), - [anon_sym_New] = ACTIONS(2095), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_NEW] = ACTIONS(2095), - [anon_sym_Package] = ACTIONS(2095), - [anon_sym_package] = ACTIONS(2095), - [anon_sym_PACKAGE] = ACTIONS(2095), - [anon_sym_Private] = ACTIONS(2095), - [anon_sym_private] = ACTIONS(2095), - [anon_sym_PRIVATE] = ACTIONS(2095), - [anon_sym_Public] = ACTIONS(2095), - [anon_sym_public] = ACTIONS(2095), - [anon_sym_PUBLIC] = ACTIONS(2095), - [anon_sym_Remote] = ACTIONS(2095), - [anon_sym_remote] = ACTIONS(2095), - [anon_sym_REMOTE] = ACTIONS(2095), - [anon_sym_Static] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_STATIC] = ACTIONS(2095), - [sym__automatic_semicolon] = ACTIONS(2097), - [sym__ternary_qmark] = ACTIONS(2097), - [sym__elvis_operator] = ACTIONS(2097), - [sym_logical_or] = ACTIONS(2097), - [sym_tag_linefeed] = ACTIONS(2097), - [sym__java_block_open] = ACTIONS(2097), - [sym__static_type_prefix] = ACTIONS(2097), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, [STATE(372)] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_Query] = ACTIONS(2099), - [anon_sym_query] = ACTIONS(2099), - [anon_sym_QUERY] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2099), - [sym_optional_chain] = ACTIONS(2101), - [sym_static_chain] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2101), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_GT] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [aux_sym_binary_expression_token1] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2099), - [aux_sym_binary_expression_token2] = ACTIONS(2099), - [aux_sym_binary_expression_token3] = ACTIONS(2099), - [aux_sym_binary_expression_token4] = ACTIONS(2101), - [aux_sym_binary_expression_token5] = ACTIONS(2101), - [aux_sym_binary_expression_token6] = ACTIONS(2101), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2101), - [aux_sym_unary_operator_token1] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2099), - [aux_sym_number_token2] = ACTIONS(2099), - [anon_sym_This] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(2099), - [anon_sym_THIS] = ACTIONS(2099), - [anon_sym_Super] = ACTIONS(2099), - [anon_sym_super] = ACTIONS(2099), - [anon_sym_SUPER] = ACTIONS(2099), - [anon_sym_True] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_TRUE] = ACTIONS(2099), - [anon_sym_False] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [anon_sym_FALSE] = ACTIONS(2099), - [anon_sym_Null] = ACTIONS(2099), - [anon_sym_null] = ACTIONS(2099), - [anon_sym_NULL] = ACTIONS(2099), - [anon_sym_Undefined] = ACTIONS(2099), - [anon_sym_undefined] = ACTIONS(2099), - [anon_sym_UNDEFINED] = ACTIONS(2099), - [anon_sym_get] = ACTIONS(2099), - [anon_sym_set] = ACTIONS(2099), - [anon_sym_POUND] = ACTIONS(2099), - [sym_hash_empty] = ACTIONS(2101), - [anon_sym_export] = ACTIONS(2099), - [anon_sym_QueryExecute] = ACTIONS(2099), - [anon_sym_queryexecute] = ACTIONS(2099), - [anon_sym_QUERYEXECUTE] = ACTIONS(2099), - [anon_sym_queryExecute] = ACTIONS(2099), - [anon_sym_BQUOTE] = ACTIONS(2101), - [anon_sym_Abstract] = ACTIONS(2099), - [anon_sym_abstract] = ACTIONS(2099), - [anon_sym_ABSTRACT] = ACTIONS(2099), - [anon_sym_Component] = ACTIONS(2099), - [anon_sym_component] = ACTIONS(2099), - [anon_sym_COMPONENT] = ACTIONS(2099), - [anon_sym_Debugger] = ACTIONS(2099), - [anon_sym_debugger] = ACTIONS(2099), - [anon_sym_DEBUGGER] = ACTIONS(2099), - [anon_sym_Final] = ACTIONS(2099), - [anon_sym_final] = ACTIONS(2099), - [anon_sym_FINAL] = ACTIONS(2099), - [anon_sym_Function] = ACTIONS(2099), - [anon_sym_function] = ACTIONS(2099), - [anon_sym_FUNCTION] = ACTIONS(2099), - [anon_sym_In] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_IN] = ACTIONS(2099), - [anon_sym_Include] = ACTIONS(2099), - [anon_sym_include] = ACTIONS(2099), - [anon_sym_INCLUDE] = ACTIONS(2099), - [anon_sym_InstanceOf] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_INSTANCEOF] = ACTIONS(2099), - [anon_sym_instanceOf] = ACTIONS(2099), - [anon_sym_New] = ACTIONS(2099), - [anon_sym_new] = ACTIONS(2099), - [anon_sym_NEW] = ACTIONS(2099), - [anon_sym_Package] = ACTIONS(2099), - [anon_sym_package] = ACTIONS(2099), - [anon_sym_PACKAGE] = ACTIONS(2099), - [anon_sym_Private] = ACTIONS(2099), - [anon_sym_private] = ACTIONS(2099), - [anon_sym_PRIVATE] = ACTIONS(2099), - [anon_sym_Public] = ACTIONS(2099), - [anon_sym_public] = ACTIONS(2099), - [anon_sym_PUBLIC] = ACTIONS(2099), - [anon_sym_Remote] = ACTIONS(2099), - [anon_sym_remote] = ACTIONS(2099), - [anon_sym_REMOTE] = ACTIONS(2099), - [anon_sym_Static] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_STATIC] = ACTIONS(2099), - [sym__automatic_semicolon] = ACTIONS(2101), - [sym__ternary_qmark] = ACTIONS(2101), - [sym__elvis_operator] = ACTIONS(2101), - [sym_logical_or] = ACTIONS(2101), - [sym_tag_linefeed] = ACTIONS(2101), - [sym__java_block_open] = ACTIONS(2101), - [sym__static_type_prefix] = ACTIONS(2101), + [sym_identifier] = ACTIONS(2101), + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_Query] = ACTIONS(2101), + [anon_sym_query] = ACTIONS(2101), + [anon_sym_QUERY] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2101), + [sym_optional_chain] = ACTIONS(2103), + [sym_static_chain] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [anon_sym_DASH_EQ] = ACTIONS(2103), + [anon_sym_STAR_EQ] = ACTIONS(2103), + [anon_sym_SLASH_EQ] = ACTIONS(2103), + [anon_sym_PERCENT_EQ] = ACTIONS(2103), + [anon_sym_CARET_EQ] = ACTIONS(2103), + [anon_sym_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_LT_LT_EQ] = ACTIONS(2103), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2101), + [anon_sym_STAR_STAR] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_GT] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [aux_sym_binary_expression_token1] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2101), + [aux_sym_binary_expression_token2] = ACTIONS(2101), + [aux_sym_binary_expression_token3] = ACTIONS(2101), + [aux_sym_binary_expression_token4] = ACTIONS(2103), + [aux_sym_binary_expression_token5] = ACTIONS(2103), + [aux_sym_binary_expression_token6] = ACTIONS(2103), + [anon_sym_QMARK_QMARK] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2103), + [aux_sym_unary_operator_token1] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2101), + [aux_sym_number_token2] = ACTIONS(2101), + [anon_sym_This] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(2101), + [anon_sym_THIS] = ACTIONS(2101), + [anon_sym_Super] = ACTIONS(2101), + [anon_sym_super] = ACTIONS(2101), + [anon_sym_SUPER] = ACTIONS(2101), + [anon_sym_True] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_TRUE] = ACTIONS(2101), + [anon_sym_False] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_FALSE] = ACTIONS(2101), + [anon_sym_Null] = ACTIONS(2101), + [anon_sym_null] = ACTIONS(2101), + [anon_sym_NULL] = ACTIONS(2101), + [anon_sym_Undefined] = ACTIONS(2101), + [anon_sym_undefined] = ACTIONS(2101), + [anon_sym_UNDEFINED] = ACTIONS(2101), + [anon_sym_get] = ACTIONS(2101), + [anon_sym_set] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2101), + [sym_hash_empty] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2101), + [anon_sym_QueryExecute] = ACTIONS(2101), + [anon_sym_queryexecute] = ACTIONS(2101), + [anon_sym_QUERYEXECUTE] = ACTIONS(2101), + [anon_sym_queryExecute] = ACTIONS(2101), + [anon_sym_BQUOTE] = ACTIONS(2103), + [anon_sym_Abstract] = ACTIONS(2101), + [anon_sym_abstract] = ACTIONS(2101), + [anon_sym_ABSTRACT] = ACTIONS(2101), + [anon_sym_Component] = ACTIONS(2101), + [anon_sym_component] = ACTIONS(2101), + [anon_sym_COMPONENT] = ACTIONS(2101), + [anon_sym_Debugger] = ACTIONS(2101), + [anon_sym_debugger] = ACTIONS(2101), + [anon_sym_DEBUGGER] = ACTIONS(2101), + [anon_sym_Final] = ACTIONS(2101), + [anon_sym_final] = ACTIONS(2101), + [anon_sym_FINAL] = ACTIONS(2101), + [anon_sym_Function] = ACTIONS(2101), + [anon_sym_function] = ACTIONS(2101), + [anon_sym_FUNCTION] = ACTIONS(2101), + [anon_sym_In] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_IN] = ACTIONS(2101), + [anon_sym_Include] = ACTIONS(2101), + [anon_sym_include] = ACTIONS(2101), + [anon_sym_INCLUDE] = ACTIONS(2101), + [anon_sym_InstanceOf] = ACTIONS(2101), + [anon_sym_instanceof] = ACTIONS(2101), + [anon_sym_INSTANCEOF] = ACTIONS(2101), + [anon_sym_instanceOf] = ACTIONS(2101), + [anon_sym_New] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_NEW] = ACTIONS(2101), + [anon_sym_Package] = ACTIONS(2101), + [anon_sym_package] = ACTIONS(2101), + [anon_sym_PACKAGE] = ACTIONS(2101), + [anon_sym_Private] = ACTIONS(2101), + [anon_sym_private] = ACTIONS(2101), + [anon_sym_PRIVATE] = ACTIONS(2101), + [anon_sym_Public] = ACTIONS(2101), + [anon_sym_public] = ACTIONS(2101), + [anon_sym_PUBLIC] = ACTIONS(2101), + [anon_sym_Remote] = ACTIONS(2101), + [anon_sym_remote] = ACTIONS(2101), + [anon_sym_REMOTE] = ACTIONS(2101), + [anon_sym_Static] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_STATIC] = ACTIONS(2101), + [sym__automatic_semicolon] = ACTIONS(2103), + [sym__ternary_qmark] = ACTIONS(2103), + [sym__elvis_operator] = ACTIONS(2103), + [sym_logical_or] = ACTIONS(2103), + [sym_tag_linefeed] = ACTIONS(2103), + [sym__java_block_open] = ACTIONS(2103), + [sym__static_type_prefix] = ACTIONS(2103), }, [STATE(373)] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_Query] = ACTIONS(2103), - [anon_sym_query] = ACTIONS(2103), - [anon_sym_QUERY] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2103), - [sym_optional_chain] = ACTIONS(2105), - [sym_static_chain] = ACTIONS(2105), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_CARET_EQ] = ACTIONS(2105), - [anon_sym_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_LT_EQ] = ACTIONS(2105), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2103), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_STAR_STAR] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_GT] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [aux_sym_binary_expression_token1] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2103), - [aux_sym_binary_expression_token2] = ACTIONS(2103), - [aux_sym_binary_expression_token3] = ACTIONS(2103), - [aux_sym_binary_expression_token4] = ACTIONS(2105), - [aux_sym_binary_expression_token5] = ACTIONS(2105), - [aux_sym_binary_expression_token6] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2105), - [aux_sym_unary_operator_token1] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2103), - [aux_sym_number_token2] = ACTIONS(2103), - [anon_sym_This] = ACTIONS(2103), - [anon_sym_this] = ACTIONS(2103), - [anon_sym_THIS] = ACTIONS(2103), - [anon_sym_Super] = ACTIONS(2103), - [anon_sym_super] = ACTIONS(2103), - [anon_sym_SUPER] = ACTIONS(2103), - [anon_sym_True] = ACTIONS(2103), - [anon_sym_true] = ACTIONS(2103), - [anon_sym_TRUE] = ACTIONS(2103), - [anon_sym_False] = ACTIONS(2103), - [anon_sym_false] = ACTIONS(2103), - [anon_sym_FALSE] = ACTIONS(2103), - [anon_sym_Null] = ACTIONS(2103), - [anon_sym_null] = ACTIONS(2103), - [anon_sym_NULL] = ACTIONS(2103), - [anon_sym_Undefined] = ACTIONS(2103), - [anon_sym_undefined] = ACTIONS(2103), - [anon_sym_UNDEFINED] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(2103), - [sym_hash_empty] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_QueryExecute] = ACTIONS(2103), - [anon_sym_queryexecute] = ACTIONS(2103), - [anon_sym_QUERYEXECUTE] = ACTIONS(2103), - [anon_sym_queryExecute] = ACTIONS(2103), - [anon_sym_BQUOTE] = ACTIONS(2105), - [anon_sym_Abstract] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_ABSTRACT] = ACTIONS(2103), - [anon_sym_Component] = ACTIONS(2103), - [anon_sym_component] = ACTIONS(2103), - [anon_sym_COMPONENT] = ACTIONS(2103), - [anon_sym_Debugger] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_DEBUGGER] = ACTIONS(2103), - [anon_sym_Final] = ACTIONS(2103), - [anon_sym_final] = ACTIONS(2103), - [anon_sym_FINAL] = ACTIONS(2103), - [anon_sym_Function] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_FUNCTION] = ACTIONS(2103), - [anon_sym_In] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2103), - [anon_sym_IN] = ACTIONS(2103), - [anon_sym_Include] = ACTIONS(2103), - [anon_sym_include] = ACTIONS(2103), - [anon_sym_INCLUDE] = ACTIONS(2103), - [anon_sym_InstanceOf] = ACTIONS(2103), - [anon_sym_instanceof] = ACTIONS(2103), - [anon_sym_INSTANCEOF] = ACTIONS(2103), - [anon_sym_instanceOf] = ACTIONS(2103), - [anon_sym_New] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_NEW] = ACTIONS(2103), - [anon_sym_Package] = ACTIONS(2103), - [anon_sym_package] = ACTIONS(2103), - [anon_sym_PACKAGE] = ACTIONS(2103), - [anon_sym_Private] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_PRIVATE] = ACTIONS(2103), - [anon_sym_Public] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_PUBLIC] = ACTIONS(2103), - [anon_sym_Remote] = ACTIONS(2103), - [anon_sym_remote] = ACTIONS(2103), - [anon_sym_REMOTE] = ACTIONS(2103), - [anon_sym_Static] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_STATIC] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2105), - [sym__ternary_qmark] = ACTIONS(2105), - [sym__elvis_operator] = ACTIONS(2105), - [sym_logical_or] = ACTIONS(2105), - [sym_tag_linefeed] = ACTIONS(2105), - [sym__java_block_open] = ACTIONS(2105), - [sym__static_type_prefix] = ACTIONS(2105), + [sym_identifier] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_Query] = ACTIONS(2105), + [anon_sym_query] = ACTIONS(2105), + [anon_sym_QUERY] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2105), + [sym_optional_chain] = ACTIONS(2107), + [sym_static_chain] = ACTIONS(2107), + [anon_sym_PLUS_EQ] = ACTIONS(2107), + [anon_sym_DASH_EQ] = ACTIONS(2107), + [anon_sym_STAR_EQ] = ACTIONS(2107), + [anon_sym_SLASH_EQ] = ACTIONS(2107), + [anon_sym_PERCENT_EQ] = ACTIONS(2107), + [anon_sym_CARET_EQ] = ACTIONS(2107), + [anon_sym_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_LT_LT_EQ] = ACTIONS(2107), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2107), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_GT] = ACTIONS(2107), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [aux_sym_binary_expression_token1] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2105), + [aux_sym_binary_expression_token2] = ACTIONS(2105), + [aux_sym_binary_expression_token3] = ACTIONS(2105), + [aux_sym_binary_expression_token4] = ACTIONS(2107), + [aux_sym_binary_expression_token5] = ACTIONS(2107), + [aux_sym_binary_expression_token6] = ACTIONS(2107), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2107), + [aux_sym_unary_operator_token1] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2107), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2105), + [aux_sym_number_token2] = ACTIONS(2105), + [anon_sym_This] = ACTIONS(2105), + [anon_sym_this] = ACTIONS(2105), + [anon_sym_THIS] = ACTIONS(2105), + [anon_sym_Super] = ACTIONS(2105), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_SUPER] = ACTIONS(2105), + [anon_sym_True] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_TRUE] = ACTIONS(2105), + [anon_sym_False] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_FALSE] = ACTIONS(2105), + [anon_sym_Null] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [anon_sym_NULL] = ACTIONS(2105), + [anon_sym_Undefined] = ACTIONS(2105), + [anon_sym_undefined] = ACTIONS(2105), + [anon_sym_UNDEFINED] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [sym_hash_empty] = ACTIONS(2107), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_QueryExecute] = ACTIONS(2105), + [anon_sym_queryexecute] = ACTIONS(2105), + [anon_sym_QUERYEXECUTE] = ACTIONS(2105), + [anon_sym_queryExecute] = ACTIONS(2105), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_Abstract] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_ABSTRACT] = ACTIONS(2105), + [anon_sym_Component] = ACTIONS(2105), + [anon_sym_component] = ACTIONS(2105), + [anon_sym_COMPONENT] = ACTIONS(2105), + [anon_sym_Debugger] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_DEBUGGER] = ACTIONS(2105), + [anon_sym_Final] = ACTIONS(2105), + [anon_sym_final] = ACTIONS(2105), + [anon_sym_FINAL] = ACTIONS(2105), + [anon_sym_Function] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_FUNCTION] = ACTIONS(2105), + [anon_sym_In] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_IN] = ACTIONS(2105), + [anon_sym_Include] = ACTIONS(2105), + [anon_sym_include] = ACTIONS(2105), + [anon_sym_INCLUDE] = ACTIONS(2105), + [anon_sym_InstanceOf] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_INSTANCEOF] = ACTIONS(2105), + [anon_sym_instanceOf] = ACTIONS(2105), + [anon_sym_New] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_NEW] = ACTIONS(2105), + [anon_sym_Package] = ACTIONS(2105), + [anon_sym_package] = ACTIONS(2105), + [anon_sym_PACKAGE] = ACTIONS(2105), + [anon_sym_Private] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_PRIVATE] = ACTIONS(2105), + [anon_sym_Public] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_PUBLIC] = ACTIONS(2105), + [anon_sym_Remote] = ACTIONS(2105), + [anon_sym_remote] = ACTIONS(2105), + [anon_sym_REMOTE] = ACTIONS(2105), + [anon_sym_Static] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_STATIC] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym__ternary_qmark] = ACTIONS(2107), + [sym__elvis_operator] = ACTIONS(2107), + [sym_logical_or] = ACTIONS(2107), + [sym_tag_linefeed] = ACTIONS(2107), + [sym__java_block_open] = ACTIONS(2107), + [sym__static_type_prefix] = ACTIONS(2107), }, [STATE(374)] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2107), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4120), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4120), + [sym_parameter_attribute] = STATE(4125), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4069), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4125), + [aux_sym__formal_parameter_repeat1] = STATE(376), + [aux_sym_formal_parameters_repeat1] = STATE(4536), + [sym_identifier] = ACTIONS(1967), [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_Query] = ACTIONS(2107), - [anon_sym_query] = ACTIONS(2107), - [anon_sym_QUERY] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2107), - [sym_optional_chain] = ACTIONS(2109), - [sym_static_chain] = ACTIONS(2109), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_CARET_EQ] = ACTIONS(2109), - [anon_sym_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_LT_LT_EQ] = ACTIONS(2109), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_STAR_STAR] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_GT] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [aux_sym_binary_expression_token1] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2107), - [aux_sym_binary_expression_token2] = ACTIONS(2107), - [aux_sym_binary_expression_token3] = ACTIONS(2107), - [aux_sym_binary_expression_token4] = ACTIONS(2109), - [aux_sym_binary_expression_token5] = ACTIONS(2109), - [aux_sym_binary_expression_token6] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2109), - [aux_sym_unary_operator_token1] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2107), - [aux_sym_number_token2] = ACTIONS(2107), - [anon_sym_This] = ACTIONS(2107), - [anon_sym_this] = ACTIONS(2107), - [anon_sym_THIS] = ACTIONS(2107), - [anon_sym_Super] = ACTIONS(2107), - [anon_sym_super] = ACTIONS(2107), - [anon_sym_SUPER] = ACTIONS(2107), - [anon_sym_True] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_TRUE] = ACTIONS(2107), - [anon_sym_False] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [anon_sym_FALSE] = ACTIONS(2107), - [anon_sym_Null] = ACTIONS(2107), - [anon_sym_null] = ACTIONS(2107), - [anon_sym_NULL] = ACTIONS(2107), - [anon_sym_Undefined] = ACTIONS(2107), - [anon_sym_undefined] = ACTIONS(2107), - [anon_sym_UNDEFINED] = ACTIONS(2107), - [anon_sym_get] = ACTIONS(2107), - [anon_sym_set] = ACTIONS(2107), - [anon_sym_POUND] = ACTIONS(2107), - [sym_hash_empty] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2107), - [anon_sym_QueryExecute] = ACTIONS(2107), - [anon_sym_queryexecute] = ACTIONS(2107), - [anon_sym_QUERYEXECUTE] = ACTIONS(2107), - [anon_sym_queryExecute] = ACTIONS(2107), - [anon_sym_BQUOTE] = ACTIONS(2109), - [anon_sym_Abstract] = ACTIONS(2107), - [anon_sym_abstract] = ACTIONS(2107), - [anon_sym_ABSTRACT] = ACTIONS(2107), - [anon_sym_Component] = ACTIONS(2107), - [anon_sym_component] = ACTIONS(2107), - [anon_sym_COMPONENT] = ACTIONS(2107), - [anon_sym_Debugger] = ACTIONS(2107), - [anon_sym_debugger] = ACTIONS(2107), - [anon_sym_DEBUGGER] = ACTIONS(2107), - [anon_sym_Final] = ACTIONS(2107), - [anon_sym_final] = ACTIONS(2107), - [anon_sym_FINAL] = ACTIONS(2107), - [anon_sym_Function] = ACTIONS(2107), - [anon_sym_function] = ACTIONS(2107), - [anon_sym_FUNCTION] = ACTIONS(2107), - [anon_sym_In] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_IN] = ACTIONS(2107), - [anon_sym_Include] = ACTIONS(2107), - [anon_sym_include] = ACTIONS(2107), - [anon_sym_INCLUDE] = ACTIONS(2107), - [anon_sym_InstanceOf] = ACTIONS(2107), - [anon_sym_instanceof] = ACTIONS(2107), - [anon_sym_INSTANCEOF] = ACTIONS(2107), - [anon_sym_instanceOf] = ACTIONS(2107), - [anon_sym_New] = ACTIONS(2107), - [anon_sym_new] = ACTIONS(2107), - [anon_sym_NEW] = ACTIONS(2107), - [anon_sym_Package] = ACTIONS(2107), - [anon_sym_package] = ACTIONS(2107), - [anon_sym_PACKAGE] = ACTIONS(2107), - [anon_sym_Private] = ACTIONS(2107), - [anon_sym_private] = ACTIONS(2107), - [anon_sym_PRIVATE] = ACTIONS(2107), - [anon_sym_Public] = ACTIONS(2107), - [anon_sym_public] = ACTIONS(2107), - [anon_sym_PUBLIC] = ACTIONS(2107), - [anon_sym_Remote] = ACTIONS(2107), - [anon_sym_remote] = ACTIONS(2107), - [anon_sym_REMOTE] = ACTIONS(2107), - [anon_sym_Static] = ACTIONS(2107), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_STATIC] = ACTIONS(2107), - [sym__automatic_semicolon] = ACTIONS(2109), - [sym__ternary_qmark] = ACTIONS(2109), - [sym__elvis_operator] = ACTIONS(2109), - [sym_logical_or] = ACTIONS(2109), - [sym_tag_linefeed] = ACTIONS(2109), - [sym__java_block_open] = ACTIONS(2109), - [sym__static_type_prefix] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2113), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), }, [STATE(375)] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_Query] = ACTIONS(2111), - [anon_sym_query] = ACTIONS(2111), - [anon_sym_QUERY] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2111), - [sym_optional_chain] = ACTIONS(2113), - [sym_static_chain] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2113), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_GT] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [aux_sym_binary_expression_token1] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2111), - [aux_sym_binary_expression_token2] = ACTIONS(2111), - [aux_sym_binary_expression_token3] = ACTIONS(2111), - [aux_sym_binary_expression_token4] = ACTIONS(2113), - [aux_sym_binary_expression_token5] = ACTIONS(2113), - [aux_sym_binary_expression_token6] = ACTIONS(2113), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2113), - [aux_sym_unary_operator_token1] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(2113), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2111), - [aux_sym_number_token2] = ACTIONS(2111), - [anon_sym_This] = ACTIONS(2111), - [anon_sym_this] = ACTIONS(2111), - [anon_sym_THIS] = ACTIONS(2111), - [anon_sym_Super] = ACTIONS(2111), - [anon_sym_super] = ACTIONS(2111), - [anon_sym_SUPER] = ACTIONS(2111), - [anon_sym_True] = ACTIONS(2111), - [anon_sym_true] = ACTIONS(2111), - [anon_sym_TRUE] = ACTIONS(2111), - [anon_sym_False] = ACTIONS(2111), - [anon_sym_false] = ACTIONS(2111), - [anon_sym_FALSE] = ACTIONS(2111), - [anon_sym_Null] = ACTIONS(2111), - [anon_sym_null] = ACTIONS(2111), - [anon_sym_NULL] = ACTIONS(2111), - [anon_sym_Undefined] = ACTIONS(2111), - [anon_sym_undefined] = ACTIONS(2111), - [anon_sym_UNDEFINED] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_POUND] = ACTIONS(2111), - [sym_hash_empty] = ACTIONS(2113), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_QueryExecute] = ACTIONS(2111), - [anon_sym_queryexecute] = ACTIONS(2111), - [anon_sym_QUERYEXECUTE] = ACTIONS(2111), - [anon_sym_queryExecute] = ACTIONS(2111), - [anon_sym_BQUOTE] = ACTIONS(2113), - [anon_sym_Abstract] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_ABSTRACT] = ACTIONS(2111), - [anon_sym_Component] = ACTIONS(2111), - [anon_sym_component] = ACTIONS(2111), - [anon_sym_COMPONENT] = ACTIONS(2111), - [anon_sym_Debugger] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_DEBUGGER] = ACTIONS(2111), - [anon_sym_Final] = ACTIONS(2111), - [anon_sym_final] = ACTIONS(2111), - [anon_sym_FINAL] = ACTIONS(2111), - [anon_sym_Function] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_FUNCTION] = ACTIONS(2111), - [anon_sym_In] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_IN] = ACTIONS(2111), - [anon_sym_Include] = ACTIONS(2111), - [anon_sym_include] = ACTIONS(2111), - [anon_sym_INCLUDE] = ACTIONS(2111), - [anon_sym_InstanceOf] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_INSTANCEOF] = ACTIONS(2111), - [anon_sym_instanceOf] = ACTIONS(2111), - [anon_sym_New] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_NEW] = ACTIONS(2111), - [anon_sym_Package] = ACTIONS(2111), - [anon_sym_package] = ACTIONS(2111), - [anon_sym_PACKAGE] = ACTIONS(2111), - [anon_sym_Private] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_PRIVATE] = ACTIONS(2111), - [anon_sym_Public] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_PUBLIC] = ACTIONS(2111), - [anon_sym_Remote] = ACTIONS(2111), - [anon_sym_remote] = ACTIONS(2111), - [anon_sym_REMOTE] = ACTIONS(2111), - [anon_sym_Static] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_STATIC] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym__elvis_operator] = ACTIONS(2113), - [sym_logical_or] = ACTIONS(2113), - [sym_tag_linefeed] = ACTIONS(2113), - [sym__java_block_open] = ACTIONS(2113), - [sym__static_type_prefix] = ACTIONS(2113), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, [STATE(376)] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_Query] = ACTIONS(2115), - [anon_sym_query] = ACTIONS(2115), - [anon_sym_QUERY] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2115), - [sym_optional_chain] = ACTIONS(2117), - [sym_static_chain] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2117), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_STAR_STAR] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_GT] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [aux_sym_binary_expression_token1] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2115), - [aux_sym_binary_expression_token2] = ACTIONS(2115), - [aux_sym_binary_expression_token3] = ACTIONS(2115), - [aux_sym_binary_expression_token4] = ACTIONS(2117), - [aux_sym_binary_expression_token5] = ACTIONS(2117), - [aux_sym_binary_expression_token6] = ACTIONS(2117), - [anon_sym_QMARK_QMARK] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2117), - [aux_sym_unary_operator_token1] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2115), - [aux_sym_number_token2] = ACTIONS(2115), - [anon_sym_This] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(2115), - [anon_sym_THIS] = ACTIONS(2115), - [anon_sym_Super] = ACTIONS(2115), - [anon_sym_super] = ACTIONS(2115), - [anon_sym_SUPER] = ACTIONS(2115), - [anon_sym_True] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_TRUE] = ACTIONS(2115), - [anon_sym_False] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_FALSE] = ACTIONS(2115), - [anon_sym_Null] = ACTIONS(2115), - [anon_sym_null] = ACTIONS(2115), - [anon_sym_NULL] = ACTIONS(2115), - [anon_sym_Undefined] = ACTIONS(2115), - [anon_sym_undefined] = ACTIONS(2115), - [anon_sym_UNDEFINED] = ACTIONS(2115), - [anon_sym_get] = ACTIONS(2115), - [anon_sym_set] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(2115), - [sym_hash_empty] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2115), - [anon_sym_QueryExecute] = ACTIONS(2115), - [anon_sym_queryexecute] = ACTIONS(2115), - [anon_sym_QUERYEXECUTE] = ACTIONS(2115), - [anon_sym_queryExecute] = ACTIONS(2115), - [anon_sym_BQUOTE] = ACTIONS(2117), - [anon_sym_Abstract] = ACTIONS(2115), - [anon_sym_abstract] = ACTIONS(2115), - [anon_sym_ABSTRACT] = ACTIONS(2115), - [anon_sym_Component] = ACTIONS(2115), - [anon_sym_component] = ACTIONS(2115), - [anon_sym_COMPONENT] = ACTIONS(2115), - [anon_sym_Debugger] = ACTIONS(2115), - [anon_sym_debugger] = ACTIONS(2115), - [anon_sym_DEBUGGER] = ACTIONS(2115), - [anon_sym_Final] = ACTIONS(2115), - [anon_sym_final] = ACTIONS(2115), - [anon_sym_FINAL] = ACTIONS(2115), - [anon_sym_Function] = ACTIONS(2115), - [anon_sym_function] = ACTIONS(2115), - [anon_sym_FUNCTION] = ACTIONS(2115), - [anon_sym_In] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_IN] = ACTIONS(2115), - [anon_sym_Include] = ACTIONS(2115), - [anon_sym_include] = ACTIONS(2115), - [anon_sym_INCLUDE] = ACTIONS(2115), - [anon_sym_InstanceOf] = ACTIONS(2115), - [anon_sym_instanceof] = ACTIONS(2115), - [anon_sym_INSTANCEOF] = ACTIONS(2115), - [anon_sym_instanceOf] = ACTIONS(2115), - [anon_sym_New] = ACTIONS(2115), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_NEW] = ACTIONS(2115), - [anon_sym_Package] = ACTIONS(2115), - [anon_sym_package] = ACTIONS(2115), - [anon_sym_PACKAGE] = ACTIONS(2115), - [anon_sym_Private] = ACTIONS(2115), - [anon_sym_private] = ACTIONS(2115), - [anon_sym_PRIVATE] = ACTIONS(2115), - [anon_sym_Public] = ACTIONS(2115), - [anon_sym_public] = ACTIONS(2115), - [anon_sym_PUBLIC] = ACTIONS(2115), - [anon_sym_Remote] = ACTIONS(2115), - [anon_sym_remote] = ACTIONS(2115), - [anon_sym_REMOTE] = ACTIONS(2115), - [anon_sym_Static] = ACTIONS(2115), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_STATIC] = ACTIONS(2115), - [sym__automatic_semicolon] = ACTIONS(2117), - [sym__ternary_qmark] = ACTIONS(2117), - [sym__elvis_operator] = ACTIONS(2117), - [sym_logical_or] = ACTIONS(2117), - [sym_tag_linefeed] = ACTIONS(2117), - [sym__java_block_open] = ACTIONS(2117), - [sym__static_type_prefix] = ACTIONS(2117), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4152), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4152), + [sym_parameter_attribute] = STATE(4190), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4084), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4190), + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [aux_sym_formal_parameters_repeat1] = STATE(4564), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2007), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(1989), }, [STATE(377)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -102432,152 +102539,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, [STATE(378)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4273), - [sym_parameter_attribute] = STATE(4264), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4124), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4264), - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2119), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4198), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(380), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4142), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(1967), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_Required] = ACTIONS(1999), + [anon_sym_required] = ACTIONS(1999), + [anon_sym_REQUIRED] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -102590,160 +102705,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(2119), }, [STATE(379)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4215), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4215), - [sym_parameter_attribute] = STATE(4218), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4104), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4218), - [aux_sym__formal_parameter_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2121), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4209), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4209), + [sym_parameter_attribute] = STATE(4208), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4170), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4208), + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(2123), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2007), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -102756,168 +102863,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(2121), + [sym__parameter_separator] = ACTIONS(2115), }, [STATE(380)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4195), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(379), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4070), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4216), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4216), + [sym_parameter_attribute] = STATE(4223), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4176), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4223), + [aux_sym__formal_parameter_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2117), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_Required] = ACTIONS(1997), - [anon_sym_required] = ACTIONS(1997), - [anon_sym_REQUIRED] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2119), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -102930,152 +103029,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), + [sym__parameter_separator] = ACTIONS(2117), }, [STATE(381)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4288), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4288), - [sym_parameter_attribute] = STATE(4287), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4128), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4287), - [aux_sym__formal_parameter_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2125), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4209), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4209), + [sym_parameter_attribute] = STATE(4208), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4170), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4208), + [aux_sym__formal_parameter_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(2127), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2121), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -103088,160 +103195,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(2125), + [sym__parameter_separator] = ACTIONS(2115), }, [STATE(382)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4288), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym__operator_shaped_name] = STATE(4288), - [sym_parameter_attribute] = STATE(4287), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4128), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_throw_statement_repeat1] = STATE(4287), - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [sym_identifier] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(2125), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4322), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym__operator_shaped_name] = STATE(4322), + [sym_parameter_attribute] = STATE(4313), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4119), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_throw_statement_repeat1] = STATE(4313), + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(2123), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_Query] = ACTIONS(1963), - [anon_sym_query] = ACTIONS(1963), - [anon_sym_QUERY] = ACTIONS(1963), - [sym_array_return_suffix] = ACTIONS(1967), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1969), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_Query] = ACTIONS(1973), + [anon_sym_query] = ACTIONS(1973), + [anon_sym_QUERY] = ACTIONS(1973), + [sym_array_return_suffix] = ACTIONS(2007), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1979), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -103254,248 +103361,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1963), - [anon_sym_component] = ACTIONS(1963), - [anon_sym_COMPONENT] = ACTIONS(1963), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(1975), - [anon_sym_function] = ACTIONS(1975), - [anon_sym_FUNCTION] = ACTIONS(1975), - [anon_sym_In] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_IN] = ACTIONS(1969), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_InstanceOf] = ACTIONS(1969), - [anon_sym_instanceof] = ACTIONS(1969), - [anon_sym_INSTANCEOF] = ACTIONS(1969), - [anon_sym_instanceOf] = ACTIONS(1969), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(1973), + [anon_sym_component] = ACTIONS(1973), + [anon_sym_COMPONENT] = ACTIONS(1973), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_FUNCTION] = ACTIONS(1985), + [anon_sym_In] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(1979), + [anon_sym_IN] = ACTIONS(1979), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_InstanceOf] = ACTIONS(1979), + [anon_sym_instanceof] = ACTIONS(1979), + [anon_sym_INSTANCEOF] = ACTIONS(1979), + [anon_sym_instanceOf] = ACTIONS(1979), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - [sym__parameter_separator] = ACTIONS(2125), + [sym__parameter_separator] = ACTIONS(2123), }, [STATE(383)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_Query] = ACTIONS(507), - [anon_sym_query] = ACTIONS(507), - [anon_sym_QUERY] = ACTIONS(507), - [anon_sym_EQ_GT] = ACTIONS(2131), - [anon_sym_DASH_GT] = ACTIONS(2131), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(509), - [aux_sym_unary_operator_token1] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(507), - [aux_sym_number_token2] = ACTIONS(507), - [anon_sym_This] = ACTIONS(507), - [anon_sym_this] = ACTIONS(507), - [anon_sym_THIS] = ACTIONS(507), - [anon_sym_Super] = ACTIONS(507), - [anon_sym_super] = ACTIONS(507), - [anon_sym_SUPER] = ACTIONS(507), - [anon_sym_True] = ACTIONS(507), - [anon_sym_true] = ACTIONS(507), - [anon_sym_TRUE] = ACTIONS(507), - [anon_sym_False] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_FALSE] = ACTIONS(507), - [anon_sym_Null] = ACTIONS(507), - [anon_sym_null] = ACTIONS(507), - [anon_sym_NULL] = ACTIONS(507), - [anon_sym_Undefined] = ACTIONS(507), - [anon_sym_undefined] = ACTIONS(507), - [anon_sym_UNDEFINED] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(507), - [sym_hash_empty] = ACTIONS(509), - [anon_sym_export] = ACTIONS(507), - [anon_sym_QueryExecute] = ACTIONS(507), - [anon_sym_queryexecute] = ACTIONS(507), - [anon_sym_QUERYEXECUTE] = ACTIONS(507), - [anon_sym_queryExecute] = ACTIONS(507), - [anon_sym_BQUOTE] = ACTIONS(509), - [anon_sym_Abstract] = ACTIONS(507), - [anon_sym_abstract] = ACTIONS(507), - [anon_sym_ABSTRACT] = ACTIONS(507), - [anon_sym_Component] = ACTIONS(507), - [anon_sym_component] = ACTIONS(507), - [anon_sym_COMPONENT] = ACTIONS(507), - [anon_sym_Debugger] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_DEBUGGER] = ACTIONS(507), - [anon_sym_Final] = ACTIONS(507), - [anon_sym_final] = ACTIONS(507), - [anon_sym_FINAL] = ACTIONS(507), - [anon_sym_Function] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_FUNCTION] = ACTIONS(507), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(507), - [anon_sym_include] = ACTIONS(507), - [anon_sym_INCLUDE] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_NEW] = ACTIONS(507), - [anon_sym_Package] = ACTIONS(507), - [anon_sym_package] = ACTIONS(507), - [anon_sym_PACKAGE] = ACTIONS(507), - [anon_sym_Private] = ACTIONS(507), - [anon_sym_private] = ACTIONS(507), - [anon_sym_PRIVATE] = ACTIONS(507), - [anon_sym_Public] = ACTIONS(507), - [anon_sym_public] = ACTIONS(507), - [anon_sym_PUBLIC] = ACTIONS(507), - [anon_sym_Remote] = ACTIONS(507), - [anon_sym_remote] = ACTIONS(507), - [anon_sym_REMOTE] = ACTIONS(507), - [anon_sym_Static] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_STATIC] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(509), - [sym__static_type_prefix] = ACTIONS(509), - }, - [STATE(384)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_let] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(406), [anon_sym_query] = ACTIONS(406), [anon_sym_QUERY] = ACTIONS(406), - [anon_sym_EQ_GT] = ACTIONS(1659), - [anon_sym_DASH_GT] = ACTIONS(1659), + [anon_sym_EQ_GT] = ACTIONS(1581), + [anon_sym_DASH_GT] = ACTIONS(1581), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -103647,20 +103589,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(404), [sym__static_type_prefix] = ACTIONS(404), }, - [STATE(385)] = { + [STATE(384)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_let] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1579), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(406), [anon_sym_query] = ACTIONS(406), [anon_sym_QUERY] = ACTIONS(406), - [anon_sym_EQ_GT] = ACTIONS(1659), - [anon_sym_DASH_GT] = ACTIONS(1659), + [anon_sym_EQ_GT] = ACTIONS(1581), + [anon_sym_DASH_GT] = ACTIONS(1581), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -103812,6 +103754,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(404), [sym__static_type_prefix] = ACTIONS(404), }, + [STATE(385)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_let] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_Query] = ACTIONS(507), + [anon_sym_query] = ACTIONS(507), + [anon_sym_QUERY] = ACTIONS(507), + [anon_sym_EQ_GT] = ACTIONS(2125), + [anon_sym_DASH_GT] = ACTIONS(2125), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [aux_sym_unary_operator_token1] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(507), + [aux_sym_number_token2] = ACTIONS(507), + [anon_sym_This] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), + [anon_sym_THIS] = ACTIONS(507), + [anon_sym_Super] = ACTIONS(507), + [anon_sym_super] = ACTIONS(507), + [anon_sym_SUPER] = ACTIONS(507), + [anon_sym_True] = ACTIONS(507), + [anon_sym_true] = ACTIONS(507), + [anon_sym_TRUE] = ACTIONS(507), + [anon_sym_False] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_FALSE] = ACTIONS(507), + [anon_sym_Null] = ACTIONS(507), + [anon_sym_null] = ACTIONS(507), + [anon_sym_NULL] = ACTIONS(507), + [anon_sym_Undefined] = ACTIONS(507), + [anon_sym_undefined] = ACTIONS(507), + [anon_sym_UNDEFINED] = ACTIONS(507), + [anon_sym_get] = ACTIONS(507), + [anon_sym_set] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [sym_hash_empty] = ACTIONS(509), + [anon_sym_export] = ACTIONS(507), + [anon_sym_QueryExecute] = ACTIONS(507), + [anon_sym_queryexecute] = ACTIONS(507), + [anon_sym_QUERYEXECUTE] = ACTIONS(507), + [anon_sym_queryExecute] = ACTIONS(507), + [anon_sym_BQUOTE] = ACTIONS(509), + [anon_sym_Abstract] = ACTIONS(507), + [anon_sym_abstract] = ACTIONS(507), + [anon_sym_ABSTRACT] = ACTIONS(507), + [anon_sym_Component] = ACTIONS(507), + [anon_sym_component] = ACTIONS(507), + [anon_sym_COMPONENT] = ACTIONS(507), + [anon_sym_Debugger] = ACTIONS(507), + [anon_sym_debugger] = ACTIONS(507), + [anon_sym_DEBUGGER] = ACTIONS(507), + [anon_sym_Final] = ACTIONS(507), + [anon_sym_final] = ACTIONS(507), + [anon_sym_FINAL] = ACTIONS(507), + [anon_sym_Function] = ACTIONS(507), + [anon_sym_function] = ACTIONS(507), + [anon_sym_FUNCTION] = ACTIONS(507), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(507), + [anon_sym_include] = ACTIONS(507), + [anon_sym_INCLUDE] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(507), + [anon_sym_new] = ACTIONS(507), + [anon_sym_NEW] = ACTIONS(507), + [anon_sym_Package] = ACTIONS(507), + [anon_sym_package] = ACTIONS(507), + [anon_sym_PACKAGE] = ACTIONS(507), + [anon_sym_Private] = ACTIONS(507), + [anon_sym_private] = ACTIONS(507), + [anon_sym_PRIVATE] = ACTIONS(507), + [anon_sym_Public] = ACTIONS(507), + [anon_sym_public] = ACTIONS(507), + [anon_sym_PUBLIC] = ACTIONS(507), + [anon_sym_Remote] = ACTIONS(507), + [anon_sym_remote] = ACTIONS(507), + [anon_sym_REMOTE] = ACTIONS(507), + [anon_sym_Static] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_STATIC] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(509), + [sym__static_type_prefix] = ACTIONS(509), + }, [STATE(386)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), @@ -103819,13 +103926,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(2127), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), [anon_sym_QUERY] = ACTIONS(507), - [anon_sym_EQ_GT] = ACTIONS(2131), - [anon_sym_DASH_GT] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2125), + [anon_sym_DASH_GT] = ACTIONS(2125), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -103982,15 +104089,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_let] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(406), [anon_sym_query] = ACTIONS(406), [anon_sym_QUERY] = ACTIONS(406), - [anon_sym_EQ_GT] = ACTIONS(1659), - [anon_sym_DASH_GT] = ACTIONS(1659), + [anon_sym_EQ_GT] = ACTIONS(1581), + [anon_sym_DASH_GT] = ACTIONS(1581), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -104147,15 +104254,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(2129), [anon_sym_let] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1579), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(406), [anon_sym_query] = ACTIONS(406), [anon_sym_QUERY] = ACTIONS(406), - [anon_sym_EQ_GT] = ACTIONS(1659), - [anon_sym_DASH_GT] = ACTIONS(1659), + [anon_sym_EQ_GT] = ACTIONS(1581), + [anon_sym_DASH_GT] = ACTIONS(1581), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -104308,991 +104415,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(404), }, [STATE(389)] = { - [sym_identifier] = ACTIONS(1985), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_Query] = ACTIONS(1985), - [anon_sym_query] = ACTIONS(1985), - [anon_sym_QUERY] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1985), - [sym_optional_chain] = ACTIONS(1987), - [sym_static_chain] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1987), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_GT_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_PERCENT] = ACTIONS(1985), - [anon_sym_BSLASH] = ACTIONS(1985), - [anon_sym_STAR_STAR] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1987), - [anon_sym_LT_GT] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1987), - [aux_sym_binary_expression_token1] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1985), - [aux_sym_binary_expression_token2] = ACTIONS(1985), - [aux_sym_binary_expression_token3] = ACTIONS(1985), - [aux_sym_binary_expression_token4] = ACTIONS(1987), - [aux_sym_binary_expression_token5] = ACTIONS(1987), - [aux_sym_binary_expression_token6] = ACTIONS(1987), - [anon_sym_QMARK_QMARK] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1987), - [aux_sym_unary_operator_token1] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [anon_sym_SQUOTE] = ACTIONS(1987), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1985), - [aux_sym_number_token2] = ACTIONS(1985), - [anon_sym_This] = ACTIONS(1985), - [anon_sym_this] = ACTIONS(1985), - [anon_sym_THIS] = ACTIONS(1985), - [anon_sym_Super] = ACTIONS(1985), - [anon_sym_super] = ACTIONS(1985), - [anon_sym_SUPER] = ACTIONS(1985), - [anon_sym_True] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1985), - [anon_sym_TRUE] = ACTIONS(1985), - [anon_sym_False] = ACTIONS(1985), - [anon_sym_false] = ACTIONS(1985), - [anon_sym_FALSE] = ACTIONS(1985), - [anon_sym_Null] = ACTIONS(1985), - [anon_sym_null] = ACTIONS(1985), - [anon_sym_NULL] = ACTIONS(1985), - [anon_sym_Undefined] = ACTIONS(1985), - [anon_sym_undefined] = ACTIONS(1985), - [anon_sym_UNDEFINED] = ACTIONS(1985), - [anon_sym_get] = ACTIONS(1985), - [anon_sym_set] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(1985), - [sym_hash_empty] = ACTIONS(1987), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_QueryExecute] = ACTIONS(1985), - [anon_sym_queryexecute] = ACTIONS(1985), - [anon_sym_QUERYEXECUTE] = ACTIONS(1985), - [anon_sym_queryExecute] = ACTIONS(1985), - [anon_sym_BQUOTE] = ACTIONS(1987), - [anon_sym_Abstract] = ACTIONS(1985), - [anon_sym_abstract] = ACTIONS(1985), - [anon_sym_ABSTRACT] = ACTIONS(1985), - [anon_sym_Component] = ACTIONS(1985), - [anon_sym_component] = ACTIONS(1985), - [anon_sym_COMPONENT] = ACTIONS(1985), - [anon_sym_Debugger] = ACTIONS(1985), - [anon_sym_debugger] = ACTIONS(1985), - [anon_sym_DEBUGGER] = ACTIONS(1985), - [anon_sym_Final] = ACTIONS(1985), - [anon_sym_final] = ACTIONS(1985), - [anon_sym_FINAL] = ACTIONS(1985), - [anon_sym_Function] = ACTIONS(1985), - [anon_sym_function] = ACTIONS(1985), - [anon_sym_FUNCTION] = ACTIONS(1985), - [anon_sym_In] = ACTIONS(1985), - [anon_sym_in] = ACTIONS(1985), - [anon_sym_IN] = ACTIONS(1985), - [anon_sym_Include] = ACTIONS(1985), - [anon_sym_include] = ACTIONS(1985), - [anon_sym_INCLUDE] = ACTIONS(1985), - [anon_sym_InstanceOf] = ACTIONS(1985), - [anon_sym_instanceof] = ACTIONS(1985), - [anon_sym_INSTANCEOF] = ACTIONS(1985), - [anon_sym_instanceOf] = ACTIONS(1985), - [anon_sym_New] = ACTIONS(1985), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_NEW] = ACTIONS(1985), - [anon_sym_Package] = ACTIONS(1985), - [anon_sym_package] = ACTIONS(1985), - [anon_sym_PACKAGE] = ACTIONS(1985), - [anon_sym_Private] = ACTIONS(1985), - [anon_sym_private] = ACTIONS(1985), - [anon_sym_PRIVATE] = ACTIONS(1985), - [anon_sym_Public] = ACTIONS(1985), - [anon_sym_public] = ACTIONS(1985), - [anon_sym_PUBLIC] = ACTIONS(1985), - [anon_sym_Remote] = ACTIONS(1985), - [anon_sym_remote] = ACTIONS(1985), - [anon_sym_REMOTE] = ACTIONS(1985), - [anon_sym_Static] = ACTIONS(1985), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_STATIC] = ACTIONS(1985), - [sym__ternary_qmark] = ACTIONS(1987), - [sym__elvis_operator] = ACTIONS(1987), - [sym_logical_or] = ACTIONS(1987), - [sym__java_block_open] = ACTIONS(1987), - [sym__static_type_prefix] = ACTIONS(1987), + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_Query] = ACTIONS(1947), + [anon_sym_query] = ACTIONS(1947), + [anon_sym_QUERY] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1955), + [aux_sym_unary_operator_token1] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1947), + [aux_sym_number_token2] = ACTIONS(1947), + [anon_sym_This] = ACTIONS(1947), + [anon_sym_this] = ACTIONS(1947), + [anon_sym_THIS] = ACTIONS(1947), + [anon_sym_Super] = ACTIONS(1947), + [anon_sym_super] = ACTIONS(1947), + [anon_sym_SUPER] = ACTIONS(1947), + [anon_sym_True] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_TRUE] = ACTIONS(1947), + [anon_sym_False] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_FALSE] = ACTIONS(1947), + [anon_sym_Null] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_Undefined] = ACTIONS(1947), + [anon_sym_undefined] = ACTIONS(1947), + [anon_sym_UNDEFINED] = ACTIONS(1947), + [anon_sym_get] = ACTIONS(1947), + [anon_sym_set] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1947), + [sym_hash_empty] = ACTIONS(1955), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_QueryExecute] = ACTIONS(1947), + [anon_sym_queryexecute] = ACTIONS(1947), + [anon_sym_QUERYEXECUTE] = ACTIONS(1947), + [anon_sym_queryExecute] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1955), + [anon_sym_Abstract] = ACTIONS(1947), + [anon_sym_abstract] = ACTIONS(1947), + [anon_sym_ABSTRACT] = ACTIONS(1947), + [anon_sym_Component] = ACTIONS(1947), + [anon_sym_component] = ACTIONS(1947), + [anon_sym_COMPONENT] = ACTIONS(1947), + [anon_sym_Debugger] = ACTIONS(1947), + [anon_sym_debugger] = ACTIONS(1947), + [anon_sym_DEBUGGER] = ACTIONS(1947), + [anon_sym_Final] = ACTIONS(1947), + [anon_sym_final] = ACTIONS(1947), + [anon_sym_FINAL] = ACTIONS(1947), + [anon_sym_Function] = ACTIONS(1947), + [anon_sym_function] = ACTIONS(1947), + [anon_sym_FUNCTION] = ACTIONS(1947), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_Include] = ACTIONS(1947), + [anon_sym_include] = ACTIONS(1947), + [anon_sym_INCLUDE] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1952), + [anon_sym_instanceof] = ACTIONS(1952), + [anon_sym_INSTANCEOF] = ACTIONS(1952), + [anon_sym_instanceOf] = ACTIONS(1952), + [anon_sym_New] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_NEW] = ACTIONS(1947), + [anon_sym_Package] = ACTIONS(1947), + [anon_sym_package] = ACTIONS(1947), + [anon_sym_PACKAGE] = ACTIONS(1947), + [anon_sym_Private] = ACTIONS(1947), + [anon_sym_private] = ACTIONS(1947), + [anon_sym_PRIVATE] = ACTIONS(1947), + [anon_sym_Public] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_PUBLIC] = ACTIONS(1947), + [anon_sym_Remote] = ACTIONS(1947), + [anon_sym_remote] = ACTIONS(1947), + [anon_sym_REMOTE] = ACTIONS(1947), + [anon_sym_Static] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_STATIC] = ACTIONS(1947), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + [sym__java_block_open] = ACTIONS(1955), + [sym__static_type_prefix] = ACTIONS(1955), }, [STATE(390)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_Query] = ACTIONS(2015), - [anon_sym_query] = ACTIONS(2015), - [anon_sym_QUERY] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2020), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2023), - [aux_sym_unary_operator_token1] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2015), - [aux_sym_number_token2] = ACTIONS(2015), - [anon_sym_This] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(2015), - [anon_sym_THIS] = ACTIONS(2015), - [anon_sym_Super] = ACTIONS(2015), - [anon_sym_super] = ACTIONS(2015), - [anon_sym_SUPER] = ACTIONS(2015), - [anon_sym_True] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_TRUE] = ACTIONS(2015), - [anon_sym_False] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_FALSE] = ACTIONS(2015), - [anon_sym_Null] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [anon_sym_NULL] = ACTIONS(2015), - [anon_sym_Undefined] = ACTIONS(2015), - [anon_sym_undefined] = ACTIONS(2015), - [anon_sym_UNDEFINED] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(2015), - [anon_sym_set] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(2015), - [sym_hash_empty] = ACTIONS(2023), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_QueryExecute] = ACTIONS(2015), - [anon_sym_queryexecute] = ACTIONS(2015), - [anon_sym_QUERYEXECUTE] = ACTIONS(2015), - [anon_sym_queryExecute] = ACTIONS(2015), - [anon_sym_BQUOTE] = ACTIONS(2023), - [anon_sym_Abstract] = ACTIONS(2015), - [anon_sym_abstract] = ACTIONS(2015), - [anon_sym_ABSTRACT] = ACTIONS(2015), - [anon_sym_Component] = ACTIONS(2015), - [anon_sym_component] = ACTIONS(2015), - [anon_sym_COMPONENT] = ACTIONS(2015), - [anon_sym_Debugger] = ACTIONS(2015), - [anon_sym_debugger] = ACTIONS(2015), - [anon_sym_DEBUGGER] = ACTIONS(2015), - [anon_sym_Final] = ACTIONS(2015), - [anon_sym_final] = ACTIONS(2015), - [anon_sym_FINAL] = ACTIONS(2015), - [anon_sym_Function] = ACTIONS(2015), - [anon_sym_function] = ACTIONS(2015), - [anon_sym_FUNCTION] = ACTIONS(2015), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_Include] = ACTIONS(2015), - [anon_sym_include] = ACTIONS(2015), - [anon_sym_INCLUDE] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2020), - [anon_sym_instanceof] = ACTIONS(2020), - [anon_sym_INSTANCEOF] = ACTIONS(2020), - [anon_sym_instanceOf] = ACTIONS(2020), - [anon_sym_New] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_NEW] = ACTIONS(2015), - [anon_sym_Package] = ACTIONS(2015), - [anon_sym_package] = ACTIONS(2015), - [anon_sym_PACKAGE] = ACTIONS(2015), - [anon_sym_Private] = ACTIONS(2015), - [anon_sym_private] = ACTIONS(2015), - [anon_sym_PRIVATE] = ACTIONS(2015), - [anon_sym_Public] = ACTIONS(2015), - [anon_sym_public] = ACTIONS(2015), - [anon_sym_PUBLIC] = ACTIONS(2015), - [anon_sym_Remote] = ACTIONS(2015), - [anon_sym_remote] = ACTIONS(2015), - [anon_sym_REMOTE] = ACTIONS(2015), - [anon_sym_Static] = ACTIONS(2015), - [anon_sym_static] = ACTIONS(2015), - [anon_sym_STATIC] = ACTIONS(2015), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - [sym__java_block_open] = ACTIONS(2023), - [sym__static_type_prefix] = ACTIONS(2023), - }, - [STATE(391)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(2136), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Default] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), - [anon_sym_Function] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_FUNCTION] = ACTIONS(471), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(392)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4130), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(367), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4016), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(393)] = { - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_Query] = ACTIONS(2007), - [anon_sym_query] = ACTIONS(2007), - [anon_sym_QUERY] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2009), - [aux_sym_unary_operator_token1] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [anon_sym_SQUOTE] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2007), - [aux_sym_number_token2] = ACTIONS(2007), - [anon_sym_This] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(2007), - [anon_sym_THIS] = ACTIONS(2007), - [anon_sym_Super] = ACTIONS(2007), - [anon_sym_super] = ACTIONS(2007), - [anon_sym_SUPER] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [anon_sym_Undefined] = ACTIONS(2007), - [anon_sym_undefined] = ACTIONS(2007), - [anon_sym_UNDEFINED] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [sym_hash_empty] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_QueryExecute] = ACTIONS(2007), - [anon_sym_queryexecute] = ACTIONS(2007), - [anon_sym_QUERYEXECUTE] = ACTIONS(2007), - [anon_sym_queryExecute] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2009), - [anon_sym_Abstract] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_ABSTRACT] = ACTIONS(2007), - [anon_sym_Component] = ACTIONS(2007), - [anon_sym_component] = ACTIONS(2007), - [anon_sym_COMPONENT] = ACTIONS(2007), - [anon_sym_Debugger] = ACTIONS(2007), - [anon_sym_debugger] = ACTIONS(2007), - [anon_sym_DEBUGGER] = ACTIONS(2007), - [anon_sym_Final] = ACTIONS(2007), - [anon_sym_final] = ACTIONS(2007), - [anon_sym_FINAL] = ACTIONS(2007), - [anon_sym_Function] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_FUNCTION] = ACTIONS(2007), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_Include] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_INCLUDE] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2007), - [anon_sym_instanceof] = ACTIONS(2007), - [anon_sym_INSTANCEOF] = ACTIONS(2007), - [anon_sym_instanceOf] = ACTIONS(2007), - [anon_sym_New] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_NEW] = ACTIONS(2007), - [anon_sym_Package] = ACTIONS(2007), - [anon_sym_package] = ACTIONS(2007), - [anon_sym_PACKAGE] = ACTIONS(2007), - [anon_sym_Private] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_PRIVATE] = ACTIONS(2007), - [anon_sym_Public] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_PUBLIC] = ACTIONS(2007), - [anon_sym_Remote] = ACTIONS(2007), - [anon_sym_remote] = ACTIONS(2007), - [anon_sym_REMOTE] = ACTIONS(2007), - [anon_sym_Static] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_STATIC] = ACTIONS(2007), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), - [sym__java_block_open] = ACTIONS(2009), - [sym__static_type_prefix] = ACTIONS(2009), - }, - [STATE(394)] = { - [sym_identifier] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_Query] = ACTIONS(1981), - [anon_sym_query] = ACTIONS(1981), - [anon_sym_QUERY] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1981), - [sym_optional_chain] = ACTIONS(1983), - [sym_static_chain] = ACTIONS(1983), - [anon_sym_PLUS_EQ] = ACTIONS(1983), - [anon_sym_DASH_EQ] = ACTIONS(1983), - [anon_sym_STAR_EQ] = ACTIONS(1983), - [anon_sym_SLASH_EQ] = ACTIONS(1983), - [anon_sym_PERCENT_EQ] = ACTIONS(1983), - [anon_sym_CARET_EQ] = ACTIONS(1983), - [anon_sym_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_LT_LT_EQ] = ACTIONS(1983), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_BSLASH] = ACTIONS(1981), - [anon_sym_STAR_STAR] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1983), - [anon_sym_LT_GT] = ACTIONS(1983), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1983), - [aux_sym_binary_expression_token1] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1981), - [aux_sym_binary_expression_token2] = ACTIONS(1981), - [aux_sym_binary_expression_token3] = ACTIONS(1981), - [aux_sym_binary_expression_token4] = ACTIONS(1983), - [aux_sym_binary_expression_token5] = ACTIONS(1983), - [aux_sym_binary_expression_token6] = ACTIONS(1983), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1983), - [aux_sym_unary_operator_token1] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1983), - [anon_sym_SQUOTE] = ACTIONS(1983), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1981), - [aux_sym_number_token2] = ACTIONS(1981), - [anon_sym_This] = ACTIONS(1981), - [anon_sym_this] = ACTIONS(1981), - [anon_sym_THIS] = ACTIONS(1981), - [anon_sym_Super] = ACTIONS(1981), - [anon_sym_super] = ACTIONS(1981), - [anon_sym_SUPER] = ACTIONS(1981), - [anon_sym_True] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1981), - [anon_sym_TRUE] = ACTIONS(1981), - [anon_sym_False] = ACTIONS(1981), - [anon_sym_false] = ACTIONS(1981), - [anon_sym_FALSE] = ACTIONS(1981), - [anon_sym_Null] = ACTIONS(1981), - [anon_sym_null] = ACTIONS(1981), - [anon_sym_NULL] = ACTIONS(1981), - [anon_sym_Undefined] = ACTIONS(1981), - [anon_sym_undefined] = ACTIONS(1981), - [anon_sym_UNDEFINED] = ACTIONS(1981), - [anon_sym_get] = ACTIONS(1981), - [anon_sym_set] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(1981), - [sym_hash_empty] = ACTIONS(1983), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_QueryExecute] = ACTIONS(1981), - [anon_sym_queryexecute] = ACTIONS(1981), - [anon_sym_QUERYEXECUTE] = ACTIONS(1981), - [anon_sym_queryExecute] = ACTIONS(1981), - [anon_sym_BQUOTE] = ACTIONS(1983), - [anon_sym_Abstract] = ACTIONS(1981), - [anon_sym_abstract] = ACTIONS(1981), - [anon_sym_ABSTRACT] = ACTIONS(1981), - [anon_sym_Component] = ACTIONS(1981), - [anon_sym_component] = ACTIONS(1981), - [anon_sym_COMPONENT] = ACTIONS(1981), - [anon_sym_Debugger] = ACTIONS(1981), - [anon_sym_debugger] = ACTIONS(1981), - [anon_sym_DEBUGGER] = ACTIONS(1981), - [anon_sym_Final] = ACTIONS(1981), - [anon_sym_final] = ACTIONS(1981), - [anon_sym_FINAL] = ACTIONS(1981), - [anon_sym_Function] = ACTIONS(1981), - [anon_sym_function] = ACTIONS(1981), - [anon_sym_FUNCTION] = ACTIONS(1981), - [anon_sym_In] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_IN] = ACTIONS(1981), - [anon_sym_Include] = ACTIONS(1981), - [anon_sym_include] = ACTIONS(1981), - [anon_sym_INCLUDE] = ACTIONS(1981), - [anon_sym_InstanceOf] = ACTIONS(1981), - [anon_sym_instanceof] = ACTIONS(1981), - [anon_sym_INSTANCEOF] = ACTIONS(1981), - [anon_sym_instanceOf] = ACTIONS(1981), - [anon_sym_New] = ACTIONS(1981), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_NEW] = ACTIONS(1981), - [anon_sym_Package] = ACTIONS(1981), - [anon_sym_package] = ACTIONS(1981), - [anon_sym_PACKAGE] = ACTIONS(1981), - [anon_sym_Private] = ACTIONS(1981), - [anon_sym_private] = ACTIONS(1981), - [anon_sym_PRIVATE] = ACTIONS(1981), - [anon_sym_Public] = ACTIONS(1981), - [anon_sym_public] = ACTIONS(1981), - [anon_sym_PUBLIC] = ACTIONS(1981), - [anon_sym_Remote] = ACTIONS(1981), - [anon_sym_remote] = ACTIONS(1981), - [anon_sym_REMOTE] = ACTIONS(1981), - [anon_sym_Static] = ACTIONS(1981), - [anon_sym_static] = ACTIONS(1981), - [anon_sym_STATIC] = ACTIONS(1981), - [sym__ternary_qmark] = ACTIONS(1983), - [sym__elvis_operator] = ACTIONS(1983), - [sym_logical_or] = ACTIONS(1983), - [sym__java_block_open] = ACTIONS(1983), - [sym__static_type_prefix] = ACTIONS(1983), - }, - [STATE(395)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), @@ -105448,30 +104741,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(396)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2136), + [STATE(391)] = { + [sym_identifier] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_Query] = ACTIONS(2105), + [anon_sym_query] = ACTIONS(2105), + [anon_sym_QUERY] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2105), + [sym_optional_chain] = ACTIONS(2107), + [sym_static_chain] = ACTIONS(2107), + [anon_sym_PLUS_EQ] = ACTIONS(2107), + [anon_sym_DASH_EQ] = ACTIONS(2107), + [anon_sym_STAR_EQ] = ACTIONS(2107), + [anon_sym_SLASH_EQ] = ACTIONS(2107), + [anon_sym_PERCENT_EQ] = ACTIONS(2107), + [anon_sym_CARET_EQ] = ACTIONS(2107), + [anon_sym_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_LT_LT_EQ] = ACTIONS(2107), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2107), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_GT] = ACTIONS(2107), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [aux_sym_binary_expression_token1] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2105), + [aux_sym_binary_expression_token2] = ACTIONS(2105), + [aux_sym_binary_expression_token3] = ACTIONS(2105), + [aux_sym_binary_expression_token4] = ACTIONS(2107), + [aux_sym_binary_expression_token5] = ACTIONS(2107), + [aux_sym_binary_expression_token6] = ACTIONS(2107), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2107), + [aux_sym_unary_operator_token1] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2107), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2105), + [aux_sym_number_token2] = ACTIONS(2105), + [anon_sym_This] = ACTIONS(2105), + [anon_sym_this] = ACTIONS(2105), + [anon_sym_THIS] = ACTIONS(2105), + [anon_sym_Super] = ACTIONS(2105), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_SUPER] = ACTIONS(2105), + [anon_sym_True] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_TRUE] = ACTIONS(2105), + [anon_sym_False] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_FALSE] = ACTIONS(2105), + [anon_sym_Null] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [anon_sym_NULL] = ACTIONS(2105), + [anon_sym_Undefined] = ACTIONS(2105), + [anon_sym_undefined] = ACTIONS(2105), + [anon_sym_UNDEFINED] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [sym_hash_empty] = ACTIONS(2107), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_QueryExecute] = ACTIONS(2105), + [anon_sym_queryexecute] = ACTIONS(2105), + [anon_sym_QUERYEXECUTE] = ACTIONS(2105), + [anon_sym_queryExecute] = ACTIONS(2105), + [anon_sym_BQUOTE] = ACTIONS(2107), + [anon_sym_Abstract] = ACTIONS(2105), + [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_ABSTRACT] = ACTIONS(2105), + [anon_sym_Component] = ACTIONS(2105), + [anon_sym_component] = ACTIONS(2105), + [anon_sym_COMPONENT] = ACTIONS(2105), + [anon_sym_Debugger] = ACTIONS(2105), + [anon_sym_debugger] = ACTIONS(2105), + [anon_sym_DEBUGGER] = ACTIONS(2105), + [anon_sym_Final] = ACTIONS(2105), + [anon_sym_final] = ACTIONS(2105), + [anon_sym_FINAL] = ACTIONS(2105), + [anon_sym_Function] = ACTIONS(2105), + [anon_sym_function] = ACTIONS(2105), + [anon_sym_FUNCTION] = ACTIONS(2105), + [anon_sym_In] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_IN] = ACTIONS(2105), + [anon_sym_Include] = ACTIONS(2105), + [anon_sym_include] = ACTIONS(2105), + [anon_sym_INCLUDE] = ACTIONS(2105), + [anon_sym_InstanceOf] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_INSTANCEOF] = ACTIONS(2105), + [anon_sym_instanceOf] = ACTIONS(2105), + [anon_sym_New] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_NEW] = ACTIONS(2105), + [anon_sym_Package] = ACTIONS(2105), + [anon_sym_package] = ACTIONS(2105), + [anon_sym_PACKAGE] = ACTIONS(2105), + [anon_sym_Private] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_PRIVATE] = ACTIONS(2105), + [anon_sym_Public] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_PUBLIC] = ACTIONS(2105), + [anon_sym_Remote] = ACTIONS(2105), + [anon_sym_remote] = ACTIONS(2105), + [anon_sym_REMOTE] = ACTIONS(2105), + [anon_sym_Static] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_STATIC] = ACTIONS(2105), + [sym__ternary_qmark] = ACTIONS(2107), + [sym__elvis_operator] = ACTIONS(2107), + [sym_logical_or] = ACTIONS(2107), + [sym__java_block_open] = ACTIONS(2107), + [sym__static_type_prefix] = ACTIONS(2107), + }, + [STATE(392)] = { + [sym_identifier] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_Query] = ACTIONS(2019), + [anon_sym_query] = ACTIONS(2019), + [anon_sym_QUERY] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2019), + [sym_optional_chain] = ACTIONS(2021), + [sym_static_chain] = ACTIONS(2021), + [anon_sym_PLUS_EQ] = ACTIONS(2021), + [anon_sym_DASH_EQ] = ACTIONS(2021), + [anon_sym_STAR_EQ] = ACTIONS(2021), + [anon_sym_SLASH_EQ] = ACTIONS(2021), + [anon_sym_PERCENT_EQ] = ACTIONS(2021), + [anon_sym_CARET_EQ] = ACTIONS(2021), + [anon_sym_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_LT_LT_EQ] = ACTIONS(2021), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2021), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_GT_GT_GT] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_CARET] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_BSLASH] = ACTIONS(2019), + [anon_sym_STAR_STAR] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2021), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), + [anon_sym_LT_GT] = ACTIONS(2021), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), + [aux_sym_binary_expression_token1] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2019), + [aux_sym_binary_expression_token2] = ACTIONS(2019), + [aux_sym_binary_expression_token3] = ACTIONS(2019), + [aux_sym_binary_expression_token4] = ACTIONS(2021), + [aux_sym_binary_expression_token5] = ACTIONS(2021), + [aux_sym_binary_expression_token6] = ACTIONS(2021), + [anon_sym_QMARK_QMARK] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_TILDE] = ACTIONS(2021), + [aux_sym_unary_operator_token1] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE] = ACTIONS(2021), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2019), + [aux_sym_number_token2] = ACTIONS(2019), + [anon_sym_This] = ACTIONS(2019), + [anon_sym_this] = ACTIONS(2019), + [anon_sym_THIS] = ACTIONS(2019), + [anon_sym_Super] = ACTIONS(2019), + [anon_sym_super] = ACTIONS(2019), + [anon_sym_SUPER] = ACTIONS(2019), + [anon_sym_True] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_TRUE] = ACTIONS(2019), + [anon_sym_False] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_FALSE] = ACTIONS(2019), + [anon_sym_Null] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_Undefined] = ACTIONS(2019), + [anon_sym_undefined] = ACTIONS(2019), + [anon_sym_UNDEFINED] = ACTIONS(2019), + [anon_sym_get] = ACTIONS(2019), + [anon_sym_set] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(2019), + [sym_hash_empty] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(2019), + [anon_sym_QueryExecute] = ACTIONS(2019), + [anon_sym_queryexecute] = ACTIONS(2019), + [anon_sym_QUERYEXECUTE] = ACTIONS(2019), + [anon_sym_queryExecute] = ACTIONS(2019), + [anon_sym_BQUOTE] = ACTIONS(2021), + [anon_sym_Abstract] = ACTIONS(2019), + [anon_sym_abstract] = ACTIONS(2019), + [anon_sym_ABSTRACT] = ACTIONS(2019), + [anon_sym_Component] = ACTIONS(2019), + [anon_sym_component] = ACTIONS(2019), + [anon_sym_COMPONENT] = ACTIONS(2019), + [anon_sym_Debugger] = ACTIONS(2019), + [anon_sym_debugger] = ACTIONS(2019), + [anon_sym_DEBUGGER] = ACTIONS(2019), + [anon_sym_Final] = ACTIONS(2019), + [anon_sym_final] = ACTIONS(2019), + [anon_sym_FINAL] = ACTIONS(2019), + [anon_sym_Function] = ACTIONS(2019), + [anon_sym_function] = ACTIONS(2019), + [anon_sym_FUNCTION] = ACTIONS(2019), + [anon_sym_In] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_IN] = ACTIONS(2019), + [anon_sym_Include] = ACTIONS(2019), + [anon_sym_include] = ACTIONS(2019), + [anon_sym_INCLUDE] = ACTIONS(2019), + [anon_sym_InstanceOf] = ACTIONS(2019), + [anon_sym_instanceof] = ACTIONS(2019), + [anon_sym_INSTANCEOF] = ACTIONS(2019), + [anon_sym_instanceOf] = ACTIONS(2019), + [anon_sym_New] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_NEW] = ACTIONS(2019), + [anon_sym_Package] = ACTIONS(2019), + [anon_sym_package] = ACTIONS(2019), + [anon_sym_PACKAGE] = ACTIONS(2019), + [anon_sym_Private] = ACTIONS(2019), + [anon_sym_private] = ACTIONS(2019), + [anon_sym_PRIVATE] = ACTIONS(2019), + [anon_sym_Public] = ACTIONS(2019), + [anon_sym_public] = ACTIONS(2019), + [anon_sym_PUBLIC] = ACTIONS(2019), + [anon_sym_Remote] = ACTIONS(2019), + [anon_sym_remote] = ACTIONS(2019), + [anon_sym_REMOTE] = ACTIONS(2019), + [anon_sym_Static] = ACTIONS(2019), + [anon_sym_static] = ACTIONS(2019), + [anon_sym_STATIC] = ACTIONS(2019), + [sym__ternary_qmark] = ACTIONS(2021), + [sym__elvis_operator] = ACTIONS(2021), + [sym_logical_or] = ACTIONS(2021), + [sym__java_block_open] = ACTIONS(2021), + [sym__static_type_prefix] = ACTIONS(2021), + }, + [STATE(393)] = { + [sym_identifier] = ACTIONS(2027), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2027), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_Query] = ACTIONS(2027), + [anon_sym_query] = ACTIONS(2027), + [anon_sym_QUERY] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2027), + [sym_optional_chain] = ACTIONS(2029), + [sym_static_chain] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2029), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_GT_GT] = ACTIONS(2027), + [anon_sym_GT_GT_GT] = ACTIONS(2027), + [anon_sym_LT_LT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2027), + [anon_sym_STAR_STAR] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), + [anon_sym_LT_GT] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), + [aux_sym_binary_expression_token1] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2027), + [aux_sym_binary_expression_token2] = ACTIONS(2027), + [aux_sym_binary_expression_token3] = ACTIONS(2027), + [aux_sym_binary_expression_token4] = ACTIONS(2029), + [aux_sym_binary_expression_token5] = ACTIONS(2029), + [aux_sym_binary_expression_token6] = ACTIONS(2029), + [anon_sym_QMARK_QMARK] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2029), + [aux_sym_unary_operator_token1] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2029), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2027), + [aux_sym_number_token2] = ACTIONS(2027), + [anon_sym_This] = ACTIONS(2027), + [anon_sym_this] = ACTIONS(2027), + [anon_sym_THIS] = ACTIONS(2027), + [anon_sym_Super] = ACTIONS(2027), + [anon_sym_super] = ACTIONS(2027), + [anon_sym_SUPER] = ACTIONS(2027), + [anon_sym_True] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2027), + [anon_sym_TRUE] = ACTIONS(2027), + [anon_sym_False] = ACTIONS(2027), + [anon_sym_false] = ACTIONS(2027), + [anon_sym_FALSE] = ACTIONS(2027), + [anon_sym_Null] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2027), + [anon_sym_NULL] = ACTIONS(2027), + [anon_sym_Undefined] = ACTIONS(2027), + [anon_sym_undefined] = ACTIONS(2027), + [anon_sym_UNDEFINED] = ACTIONS(2027), + [anon_sym_get] = ACTIONS(2027), + [anon_sym_set] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(2027), + [sym_hash_empty] = ACTIONS(2029), + [anon_sym_export] = ACTIONS(2027), + [anon_sym_QueryExecute] = ACTIONS(2027), + [anon_sym_queryexecute] = ACTIONS(2027), + [anon_sym_QUERYEXECUTE] = ACTIONS(2027), + [anon_sym_queryExecute] = ACTIONS(2027), + [anon_sym_BQUOTE] = ACTIONS(2029), + [anon_sym_Abstract] = ACTIONS(2027), + [anon_sym_abstract] = ACTIONS(2027), + [anon_sym_ABSTRACT] = ACTIONS(2027), + [anon_sym_Component] = ACTIONS(2027), + [anon_sym_component] = ACTIONS(2027), + [anon_sym_COMPONENT] = ACTIONS(2027), + [anon_sym_Debugger] = ACTIONS(2027), + [anon_sym_debugger] = ACTIONS(2027), + [anon_sym_DEBUGGER] = ACTIONS(2027), + [anon_sym_Final] = ACTIONS(2027), + [anon_sym_final] = ACTIONS(2027), + [anon_sym_FINAL] = ACTIONS(2027), + [anon_sym_Function] = ACTIONS(2027), + [anon_sym_function] = ACTIONS(2027), + [anon_sym_FUNCTION] = ACTIONS(2027), + [anon_sym_In] = ACTIONS(2027), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_IN] = ACTIONS(2027), + [anon_sym_Include] = ACTIONS(2027), + [anon_sym_include] = ACTIONS(2027), + [anon_sym_INCLUDE] = ACTIONS(2027), + [anon_sym_InstanceOf] = ACTIONS(2027), + [anon_sym_instanceof] = ACTIONS(2027), + [anon_sym_INSTANCEOF] = ACTIONS(2027), + [anon_sym_instanceOf] = ACTIONS(2027), + [anon_sym_New] = ACTIONS(2027), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_NEW] = ACTIONS(2027), + [anon_sym_Package] = ACTIONS(2027), + [anon_sym_package] = ACTIONS(2027), + [anon_sym_PACKAGE] = ACTIONS(2027), + [anon_sym_Private] = ACTIONS(2027), + [anon_sym_private] = ACTIONS(2027), + [anon_sym_PRIVATE] = ACTIONS(2027), + [anon_sym_Public] = ACTIONS(2027), + [anon_sym_public] = ACTIONS(2027), + [anon_sym_PUBLIC] = ACTIONS(2027), + [anon_sym_Remote] = ACTIONS(2027), + [anon_sym_remote] = ACTIONS(2027), + [anon_sym_REMOTE] = ACTIONS(2027), + [anon_sym_Static] = ACTIONS(2027), + [anon_sym_static] = ACTIONS(2027), + [anon_sym_STATIC] = ACTIONS(2027), + [sym__ternary_qmark] = ACTIONS(2029), + [sym__elvis_operator] = ACTIONS(2029), + [sym_logical_or] = ACTIONS(2029), + [sym__java_block_open] = ACTIONS(2029), + [sym__static_type_prefix] = ACTIONS(2029), + }, + [STATE(394)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -105540,47 +105322,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), @@ -105588,379 +105370,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Interface] = ACTIONS(476), [anon_sym_interface] = ACTIONS(476), [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, + [STATE(395)] = { + [sym_identifier] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_Query] = ACTIONS(2031), + [anon_sym_query] = ACTIONS(2031), + [anon_sym_QUERY] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2031), + [sym_optional_chain] = ACTIONS(2033), + [sym_static_chain] = ACTIONS(2033), + [anon_sym_PLUS_EQ] = ACTIONS(2033), + [anon_sym_DASH_EQ] = ACTIONS(2033), + [anon_sym_STAR_EQ] = ACTIONS(2033), + [anon_sym_SLASH_EQ] = ACTIONS(2033), + [anon_sym_PERCENT_EQ] = ACTIONS(2033), + [anon_sym_CARET_EQ] = ACTIONS(2033), + [anon_sym_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_LT_LT_EQ] = ACTIONS(2033), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2033), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), + [anon_sym_LT_GT] = ACTIONS(2033), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), + [aux_sym_binary_expression_token1] = ACTIONS(2033), + [anon_sym_GT_EQ] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [aux_sym_binary_expression_token2] = ACTIONS(2031), + [aux_sym_binary_expression_token3] = ACTIONS(2031), + [aux_sym_binary_expression_token4] = ACTIONS(2033), + [aux_sym_binary_expression_token5] = ACTIONS(2033), + [aux_sym_binary_expression_token6] = ACTIONS(2033), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2033), + [aux_sym_unary_operator_token1] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2033), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2031), + [aux_sym_number_token2] = ACTIONS(2031), + [anon_sym_This] = ACTIONS(2031), + [anon_sym_this] = ACTIONS(2031), + [anon_sym_THIS] = ACTIONS(2031), + [anon_sym_Super] = ACTIONS(2031), + [anon_sym_super] = ACTIONS(2031), + [anon_sym_SUPER] = ACTIONS(2031), + [anon_sym_True] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_TRUE] = ACTIONS(2031), + [anon_sym_False] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [anon_sym_FALSE] = ACTIONS(2031), + [anon_sym_Null] = ACTIONS(2031), + [anon_sym_null] = ACTIONS(2031), + [anon_sym_NULL] = ACTIONS(2031), + [anon_sym_Undefined] = ACTIONS(2031), + [anon_sym_undefined] = ACTIONS(2031), + [anon_sym_UNDEFINED] = ACTIONS(2031), + [anon_sym_get] = ACTIONS(2031), + [anon_sym_set] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(2031), + [sym_hash_empty] = ACTIONS(2033), + [anon_sym_export] = ACTIONS(2031), + [anon_sym_QueryExecute] = ACTIONS(2031), + [anon_sym_queryexecute] = ACTIONS(2031), + [anon_sym_QUERYEXECUTE] = ACTIONS(2031), + [anon_sym_queryExecute] = ACTIONS(2031), + [anon_sym_BQUOTE] = ACTIONS(2033), + [anon_sym_Abstract] = ACTIONS(2031), + [anon_sym_abstract] = ACTIONS(2031), + [anon_sym_ABSTRACT] = ACTIONS(2031), + [anon_sym_Component] = ACTIONS(2031), + [anon_sym_component] = ACTIONS(2031), + [anon_sym_COMPONENT] = ACTIONS(2031), + [anon_sym_Debugger] = ACTIONS(2031), + [anon_sym_debugger] = ACTIONS(2031), + [anon_sym_DEBUGGER] = ACTIONS(2031), + [anon_sym_Final] = ACTIONS(2031), + [anon_sym_final] = ACTIONS(2031), + [anon_sym_FINAL] = ACTIONS(2031), + [anon_sym_Function] = ACTIONS(2031), + [anon_sym_function] = ACTIONS(2031), + [anon_sym_FUNCTION] = ACTIONS(2031), + [anon_sym_In] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_IN] = ACTIONS(2031), + [anon_sym_Include] = ACTIONS(2031), + [anon_sym_include] = ACTIONS(2031), + [anon_sym_INCLUDE] = ACTIONS(2031), + [anon_sym_InstanceOf] = ACTIONS(2031), + [anon_sym_instanceof] = ACTIONS(2031), + [anon_sym_INSTANCEOF] = ACTIONS(2031), + [anon_sym_instanceOf] = ACTIONS(2031), + [anon_sym_New] = ACTIONS(2031), + [anon_sym_new] = ACTIONS(2031), + [anon_sym_NEW] = ACTIONS(2031), + [anon_sym_Package] = ACTIONS(2031), + [anon_sym_package] = ACTIONS(2031), + [anon_sym_PACKAGE] = ACTIONS(2031), + [anon_sym_Private] = ACTIONS(2031), + [anon_sym_private] = ACTIONS(2031), + [anon_sym_PRIVATE] = ACTIONS(2031), + [anon_sym_Public] = ACTIONS(2031), + [anon_sym_public] = ACTIONS(2031), + [anon_sym_PUBLIC] = ACTIONS(2031), + [anon_sym_Remote] = ACTIONS(2031), + [anon_sym_remote] = ACTIONS(2031), + [anon_sym_REMOTE] = ACTIONS(2031), + [anon_sym_Static] = ACTIONS(2031), + [anon_sym_static] = ACTIONS(2031), + [anon_sym_STATIC] = ACTIONS(2031), + [sym__ternary_qmark] = ACTIONS(2033), + [sym__elvis_operator] = ACTIONS(2033), + [sym_logical_or] = ACTIONS(2033), + [sym__java_block_open] = ACTIONS(2033), + [sym__static_type_prefix] = ACTIONS(2033), + }, + [STATE(396)] = { + [sym_identifier] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_EQ] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_Query] = ACTIONS(2073), + [anon_sym_query] = ACTIONS(2073), + [anon_sym_QUERY] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2073), + [sym_optional_chain] = ACTIONS(2075), + [sym_static_chain] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2075), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_GT_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_PERCENT] = ACTIONS(2073), + [anon_sym_BSLASH] = ACTIONS(2073), + [anon_sym_STAR_STAR] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_LT_GT] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [aux_sym_binary_expression_token1] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2073), + [aux_sym_binary_expression_token2] = ACTIONS(2073), + [aux_sym_binary_expression_token3] = ACTIONS(2073), + [aux_sym_binary_expression_token4] = ACTIONS(2075), + [aux_sym_binary_expression_token5] = ACTIONS(2075), + [aux_sym_binary_expression_token6] = ACTIONS(2075), + [anon_sym_QMARK_QMARK] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2075), + [aux_sym_unary_operator_token1] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2073), + [aux_sym_number_token2] = ACTIONS(2073), + [anon_sym_This] = ACTIONS(2073), + [anon_sym_this] = ACTIONS(2073), + [anon_sym_THIS] = ACTIONS(2073), + [anon_sym_Super] = ACTIONS(2073), + [anon_sym_super] = ACTIONS(2073), + [anon_sym_SUPER] = ACTIONS(2073), + [anon_sym_True] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_TRUE] = ACTIONS(2073), + [anon_sym_False] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_FALSE] = ACTIONS(2073), + [anon_sym_Null] = ACTIONS(2073), + [anon_sym_null] = ACTIONS(2073), + [anon_sym_NULL] = ACTIONS(2073), + [anon_sym_Undefined] = ACTIONS(2073), + [anon_sym_undefined] = ACTIONS(2073), + [anon_sym_UNDEFINED] = ACTIONS(2073), + [anon_sym_get] = ACTIONS(2073), + [anon_sym_set] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(2073), + [sym_hash_empty] = ACTIONS(2075), + [anon_sym_export] = ACTIONS(2073), + [anon_sym_QueryExecute] = ACTIONS(2073), + [anon_sym_queryexecute] = ACTIONS(2073), + [anon_sym_QUERYEXECUTE] = ACTIONS(2073), + [anon_sym_queryExecute] = ACTIONS(2073), + [anon_sym_BQUOTE] = ACTIONS(2075), + [anon_sym_Abstract] = ACTIONS(2073), + [anon_sym_abstract] = ACTIONS(2073), + [anon_sym_ABSTRACT] = ACTIONS(2073), + [anon_sym_Component] = ACTIONS(2073), + [anon_sym_component] = ACTIONS(2073), + [anon_sym_COMPONENT] = ACTIONS(2073), + [anon_sym_Debugger] = ACTIONS(2073), + [anon_sym_debugger] = ACTIONS(2073), + [anon_sym_DEBUGGER] = ACTIONS(2073), + [anon_sym_Final] = ACTIONS(2073), + [anon_sym_final] = ACTIONS(2073), + [anon_sym_FINAL] = ACTIONS(2073), + [anon_sym_Function] = ACTIONS(2073), + [anon_sym_function] = ACTIONS(2073), + [anon_sym_FUNCTION] = ACTIONS(2073), + [anon_sym_In] = ACTIONS(2073), + [anon_sym_in] = ACTIONS(2073), + [anon_sym_IN] = ACTIONS(2073), + [anon_sym_Include] = ACTIONS(2073), + [anon_sym_include] = ACTIONS(2073), + [anon_sym_INCLUDE] = ACTIONS(2073), + [anon_sym_InstanceOf] = ACTIONS(2073), + [anon_sym_instanceof] = ACTIONS(2073), + [anon_sym_INSTANCEOF] = ACTIONS(2073), + [anon_sym_instanceOf] = ACTIONS(2073), + [anon_sym_New] = ACTIONS(2073), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_NEW] = ACTIONS(2073), + [anon_sym_Package] = ACTIONS(2073), + [anon_sym_package] = ACTIONS(2073), + [anon_sym_PACKAGE] = ACTIONS(2073), + [anon_sym_Private] = ACTIONS(2073), + [anon_sym_private] = ACTIONS(2073), + [anon_sym_PRIVATE] = ACTIONS(2073), + [anon_sym_Public] = ACTIONS(2073), + [anon_sym_public] = ACTIONS(2073), + [anon_sym_PUBLIC] = ACTIONS(2073), + [anon_sym_Remote] = ACTIONS(2073), + [anon_sym_remote] = ACTIONS(2073), + [anon_sym_REMOTE] = ACTIONS(2073), + [anon_sym_Static] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_STATIC] = ACTIONS(2073), + [sym__ternary_qmark] = ACTIONS(2075), + [sym__elvis_operator] = ACTIONS(2075), + [sym_logical_or] = ACTIONS(2075), + [sym__java_block_open] = ACTIONS(2075), + [sym__static_type_prefix] = ACTIONS(2075), + }, [STATE(397)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4215), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(381), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4104), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [sym_identifier] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_Query] = ACTIONS(2083), + [anon_sym_query] = ACTIONS(2083), + [anon_sym_QUERY] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2083), + [sym_optional_chain] = ACTIONS(2085), + [sym_static_chain] = ACTIONS(2085), + [anon_sym_PLUS_EQ] = ACTIONS(2085), + [anon_sym_DASH_EQ] = ACTIONS(2085), + [anon_sym_STAR_EQ] = ACTIONS(2085), + [anon_sym_SLASH_EQ] = ACTIONS(2085), + [anon_sym_PERCENT_EQ] = ACTIONS(2085), + [anon_sym_CARET_EQ] = ACTIONS(2085), + [anon_sym_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_LT_LT_EQ] = ACTIONS(2085), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [anon_sym_GT_GT] = ACTIONS(2083), + [anon_sym_GT_GT_GT] = ACTIONS(2083), + [anon_sym_LT_LT] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_BSLASH] = ACTIONS(2083), + [anon_sym_STAR_STAR] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_LT_GT] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [aux_sym_binary_expression_token1] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2083), + [aux_sym_binary_expression_token2] = ACTIONS(2083), + [aux_sym_binary_expression_token3] = ACTIONS(2083), + [aux_sym_binary_expression_token4] = ACTIONS(2085), + [aux_sym_binary_expression_token5] = ACTIONS(2085), + [aux_sym_binary_expression_token6] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2085), + [aux_sym_unary_operator_token1] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2083), + [aux_sym_number_token2] = ACTIONS(2083), + [anon_sym_This] = ACTIONS(2083), + [anon_sym_this] = ACTIONS(2083), + [anon_sym_THIS] = ACTIONS(2083), + [anon_sym_Super] = ACTIONS(2083), + [anon_sym_super] = ACTIONS(2083), + [anon_sym_SUPER] = ACTIONS(2083), + [anon_sym_True] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2083), + [anon_sym_TRUE] = ACTIONS(2083), + [anon_sym_False] = ACTIONS(2083), + [anon_sym_false] = ACTIONS(2083), + [anon_sym_FALSE] = ACTIONS(2083), + [anon_sym_Null] = ACTIONS(2083), + [anon_sym_null] = ACTIONS(2083), + [anon_sym_NULL] = ACTIONS(2083), + [anon_sym_Undefined] = ACTIONS(2083), + [anon_sym_undefined] = ACTIONS(2083), + [anon_sym_UNDEFINED] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(2083), + [sym_hash_empty] = ACTIONS(2085), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_QueryExecute] = ACTIONS(2083), + [anon_sym_queryexecute] = ACTIONS(2083), + [anon_sym_QUERYEXECUTE] = ACTIONS(2083), + [anon_sym_queryExecute] = ACTIONS(2083), + [anon_sym_BQUOTE] = ACTIONS(2085), + [anon_sym_Abstract] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_ABSTRACT] = ACTIONS(2083), + [anon_sym_Component] = ACTIONS(2083), + [anon_sym_component] = ACTIONS(2083), + [anon_sym_COMPONENT] = ACTIONS(2083), + [anon_sym_Debugger] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_DEBUGGER] = ACTIONS(2083), + [anon_sym_Final] = ACTIONS(2083), + [anon_sym_final] = ACTIONS(2083), + [anon_sym_FINAL] = ACTIONS(2083), + [anon_sym_Function] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_FUNCTION] = ACTIONS(2083), + [anon_sym_In] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_IN] = ACTIONS(2083), + [anon_sym_Include] = ACTIONS(2083), + [anon_sym_include] = ACTIONS(2083), + [anon_sym_INCLUDE] = ACTIONS(2083), + [anon_sym_InstanceOf] = ACTIONS(2083), + [anon_sym_instanceof] = ACTIONS(2083), + [anon_sym_INSTANCEOF] = ACTIONS(2083), + [anon_sym_instanceOf] = ACTIONS(2083), + [anon_sym_New] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_NEW] = ACTIONS(2083), + [anon_sym_Package] = ACTIONS(2083), + [anon_sym_package] = ACTIONS(2083), + [anon_sym_PACKAGE] = ACTIONS(2083), + [anon_sym_Private] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_PRIVATE] = ACTIONS(2083), + [anon_sym_Public] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_PUBLIC] = ACTIONS(2083), + [anon_sym_Remote] = ACTIONS(2083), + [anon_sym_remote] = ACTIONS(2083), + [anon_sym_REMOTE] = ACTIONS(2083), + [anon_sym_Static] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_STATIC] = ACTIONS(2083), + [sym__ternary_qmark] = ACTIONS(2085), + [sym__elvis_operator] = ACTIONS(2085), + [sym_logical_or] = ACTIONS(2085), + [sym__java_block_open] = ACTIONS(2085), + [sym__static_type_prefix] = ACTIONS(2085), }, [STATE(398)] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_Query] = ACTIONS(2103), - [anon_sym_query] = ACTIONS(2103), - [anon_sym_QUERY] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2103), - [sym_optional_chain] = ACTIONS(2105), - [sym_static_chain] = ACTIONS(2105), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_CARET_EQ] = ACTIONS(2105), - [anon_sym_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_LT_EQ] = ACTIONS(2105), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2103), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_STAR_STAR] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_GT] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [aux_sym_binary_expression_token1] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2103), - [aux_sym_binary_expression_token2] = ACTIONS(2103), - [aux_sym_binary_expression_token3] = ACTIONS(2103), - [aux_sym_binary_expression_token4] = ACTIONS(2105), - [aux_sym_binary_expression_token5] = ACTIONS(2105), - [aux_sym_binary_expression_token6] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2105), - [aux_sym_unary_operator_token1] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2103), - [aux_sym_number_token2] = ACTIONS(2103), - [anon_sym_This] = ACTIONS(2103), - [anon_sym_this] = ACTIONS(2103), - [anon_sym_THIS] = ACTIONS(2103), - [anon_sym_Super] = ACTIONS(2103), - [anon_sym_super] = ACTIONS(2103), - [anon_sym_SUPER] = ACTIONS(2103), - [anon_sym_True] = ACTIONS(2103), - [anon_sym_true] = ACTIONS(2103), - [anon_sym_TRUE] = ACTIONS(2103), - [anon_sym_False] = ACTIONS(2103), - [anon_sym_false] = ACTIONS(2103), - [anon_sym_FALSE] = ACTIONS(2103), - [anon_sym_Null] = ACTIONS(2103), - [anon_sym_null] = ACTIONS(2103), - [anon_sym_NULL] = ACTIONS(2103), - [anon_sym_Undefined] = ACTIONS(2103), - [anon_sym_undefined] = ACTIONS(2103), - [anon_sym_UNDEFINED] = ACTIONS(2103), - [anon_sym_get] = ACTIONS(2103), - [anon_sym_set] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(2103), - [sym_hash_empty] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_QueryExecute] = ACTIONS(2103), - [anon_sym_queryexecute] = ACTIONS(2103), - [anon_sym_QUERYEXECUTE] = ACTIONS(2103), - [anon_sym_queryExecute] = ACTIONS(2103), - [anon_sym_BQUOTE] = ACTIONS(2105), - [anon_sym_Abstract] = ACTIONS(2103), - [anon_sym_abstract] = ACTIONS(2103), - [anon_sym_ABSTRACT] = ACTIONS(2103), - [anon_sym_Component] = ACTIONS(2103), - [anon_sym_component] = ACTIONS(2103), - [anon_sym_COMPONENT] = ACTIONS(2103), - [anon_sym_Debugger] = ACTIONS(2103), - [anon_sym_debugger] = ACTIONS(2103), - [anon_sym_DEBUGGER] = ACTIONS(2103), - [anon_sym_Final] = ACTIONS(2103), - [anon_sym_final] = ACTIONS(2103), - [anon_sym_FINAL] = ACTIONS(2103), - [anon_sym_Function] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(2103), - [anon_sym_FUNCTION] = ACTIONS(2103), - [anon_sym_In] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2103), - [anon_sym_IN] = ACTIONS(2103), - [anon_sym_Include] = ACTIONS(2103), - [anon_sym_include] = ACTIONS(2103), - [anon_sym_INCLUDE] = ACTIONS(2103), - [anon_sym_InstanceOf] = ACTIONS(2103), - [anon_sym_instanceof] = ACTIONS(2103), - [anon_sym_INSTANCEOF] = ACTIONS(2103), - [anon_sym_instanceOf] = ACTIONS(2103), - [anon_sym_New] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_NEW] = ACTIONS(2103), - [anon_sym_Package] = ACTIONS(2103), - [anon_sym_package] = ACTIONS(2103), - [anon_sym_PACKAGE] = ACTIONS(2103), - [anon_sym_Private] = ACTIONS(2103), - [anon_sym_private] = ACTIONS(2103), - [anon_sym_PRIVATE] = ACTIONS(2103), - [anon_sym_Public] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_PUBLIC] = ACTIONS(2103), - [anon_sym_Remote] = ACTIONS(2103), - [anon_sym_remote] = ACTIONS(2103), - [anon_sym_REMOTE] = ACTIONS(2103), - [anon_sym_Static] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_STATIC] = ACTIONS(2103), - [sym__ternary_qmark] = ACTIONS(2105), - [sym__elvis_operator] = ACTIONS(2105), - [sym_logical_or] = ACTIONS(2105), - [sym__java_block_open] = ACTIONS(2105), - [sym__static_type_prefix] = ACTIONS(2105), - }, - [STATE(399)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(2136), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -106029,47 +105974,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), @@ -106077,379 +106022,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Interface] = ACTIONS(476), [anon_sym_interface] = ACTIONS(476), [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, + [STATE(399)] = { + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_Query] = ACTIONS(1957), + [anon_sym_query] = ACTIONS(1957), + [anon_sym_QUERY] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1957), + [anon_sym_TILDE] = ACTIONS(1959), + [aux_sym_unary_operator_token1] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1957), + [aux_sym_number_token2] = ACTIONS(1957), + [anon_sym_This] = ACTIONS(1957), + [anon_sym_this] = ACTIONS(1957), + [anon_sym_THIS] = ACTIONS(1957), + [anon_sym_Super] = ACTIONS(1957), + [anon_sym_super] = ACTIONS(1957), + [anon_sym_SUPER] = ACTIONS(1957), + [anon_sym_True] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_TRUE] = ACTIONS(1957), + [anon_sym_False] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_FALSE] = ACTIONS(1957), + [anon_sym_Null] = ACTIONS(1957), + [anon_sym_null] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_Undefined] = ACTIONS(1957), + [anon_sym_undefined] = ACTIONS(1957), + [anon_sym_UNDEFINED] = ACTIONS(1957), + [anon_sym_get] = ACTIONS(1957), + [anon_sym_set] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1957), + [sym_hash_empty] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_QueryExecute] = ACTIONS(1957), + [anon_sym_queryexecute] = ACTIONS(1957), + [anon_sym_QUERYEXECUTE] = ACTIONS(1957), + [anon_sym_queryExecute] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_Abstract] = ACTIONS(1957), + [anon_sym_abstract] = ACTIONS(1957), + [anon_sym_ABSTRACT] = ACTIONS(1957), + [anon_sym_Component] = ACTIONS(1957), + [anon_sym_component] = ACTIONS(1957), + [anon_sym_COMPONENT] = ACTIONS(1957), + [anon_sym_Debugger] = ACTIONS(1957), + [anon_sym_debugger] = ACTIONS(1957), + [anon_sym_DEBUGGER] = ACTIONS(1957), + [anon_sym_Final] = ACTIONS(1957), + [anon_sym_final] = ACTIONS(1957), + [anon_sym_FINAL] = ACTIONS(1957), + [anon_sym_Function] = ACTIONS(1957), + [anon_sym_function] = ACTIONS(1957), + [anon_sym_FUNCTION] = ACTIONS(1957), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_Include] = ACTIONS(1957), + [anon_sym_include] = ACTIONS(1957), + [anon_sym_INCLUDE] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1957), + [anon_sym_instanceof] = ACTIONS(1957), + [anon_sym_INSTANCEOF] = ACTIONS(1957), + [anon_sym_instanceOf] = ACTIONS(1957), + [anon_sym_New] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_NEW] = ACTIONS(1957), + [anon_sym_Package] = ACTIONS(1957), + [anon_sym_package] = ACTIONS(1957), + [anon_sym_PACKAGE] = ACTIONS(1957), + [anon_sym_Private] = ACTIONS(1957), + [anon_sym_private] = ACTIONS(1957), + [anon_sym_PRIVATE] = ACTIONS(1957), + [anon_sym_Public] = ACTIONS(1957), + [anon_sym_public] = ACTIONS(1957), + [anon_sym_PUBLIC] = ACTIONS(1957), + [anon_sym_Remote] = ACTIONS(1957), + [anon_sym_remote] = ACTIONS(1957), + [anon_sym_REMOTE] = ACTIONS(1957), + [anon_sym_Static] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_STATIC] = ACTIONS(1957), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), + [sym__java_block_open] = ACTIONS(1959), + [sym__static_type_prefix] = ACTIONS(1959), + }, [STATE(400)] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_Query] = ACTIONS(2099), - [anon_sym_query] = ACTIONS(2099), - [anon_sym_QUERY] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2099), - [sym_optional_chain] = ACTIONS(2101), - [sym_static_chain] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2101), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_GT] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [aux_sym_binary_expression_token1] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2099), - [aux_sym_binary_expression_token2] = ACTIONS(2099), - [aux_sym_binary_expression_token3] = ACTIONS(2099), - [aux_sym_binary_expression_token4] = ACTIONS(2101), - [aux_sym_binary_expression_token5] = ACTIONS(2101), - [aux_sym_binary_expression_token6] = ACTIONS(2101), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2101), - [aux_sym_unary_operator_token1] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2099), - [aux_sym_number_token2] = ACTIONS(2099), - [anon_sym_This] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(2099), - [anon_sym_THIS] = ACTIONS(2099), - [anon_sym_Super] = ACTIONS(2099), - [anon_sym_super] = ACTIONS(2099), - [anon_sym_SUPER] = ACTIONS(2099), - [anon_sym_True] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_TRUE] = ACTIONS(2099), - [anon_sym_False] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [anon_sym_FALSE] = ACTIONS(2099), - [anon_sym_Null] = ACTIONS(2099), - [anon_sym_null] = ACTIONS(2099), - [anon_sym_NULL] = ACTIONS(2099), - [anon_sym_Undefined] = ACTIONS(2099), - [anon_sym_undefined] = ACTIONS(2099), - [anon_sym_UNDEFINED] = ACTIONS(2099), - [anon_sym_get] = ACTIONS(2099), - [anon_sym_set] = ACTIONS(2099), - [anon_sym_POUND] = ACTIONS(2099), - [sym_hash_empty] = ACTIONS(2101), - [anon_sym_export] = ACTIONS(2099), - [anon_sym_QueryExecute] = ACTIONS(2099), - [anon_sym_queryexecute] = ACTIONS(2099), - [anon_sym_QUERYEXECUTE] = ACTIONS(2099), - [anon_sym_queryExecute] = ACTIONS(2099), - [anon_sym_BQUOTE] = ACTIONS(2101), - [anon_sym_Abstract] = ACTIONS(2099), - [anon_sym_abstract] = ACTIONS(2099), - [anon_sym_ABSTRACT] = ACTIONS(2099), - [anon_sym_Component] = ACTIONS(2099), - [anon_sym_component] = ACTIONS(2099), - [anon_sym_COMPONENT] = ACTIONS(2099), - [anon_sym_Debugger] = ACTIONS(2099), - [anon_sym_debugger] = ACTIONS(2099), - [anon_sym_DEBUGGER] = ACTIONS(2099), - [anon_sym_Final] = ACTIONS(2099), - [anon_sym_final] = ACTIONS(2099), - [anon_sym_FINAL] = ACTIONS(2099), - [anon_sym_Function] = ACTIONS(2099), - [anon_sym_function] = ACTIONS(2099), - [anon_sym_FUNCTION] = ACTIONS(2099), - [anon_sym_In] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_IN] = ACTIONS(2099), - [anon_sym_Include] = ACTIONS(2099), - [anon_sym_include] = ACTIONS(2099), - [anon_sym_INCLUDE] = ACTIONS(2099), - [anon_sym_InstanceOf] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_INSTANCEOF] = ACTIONS(2099), - [anon_sym_instanceOf] = ACTIONS(2099), - [anon_sym_New] = ACTIONS(2099), - [anon_sym_new] = ACTIONS(2099), - [anon_sym_NEW] = ACTIONS(2099), - [anon_sym_Package] = ACTIONS(2099), - [anon_sym_package] = ACTIONS(2099), - [anon_sym_PACKAGE] = ACTIONS(2099), - [anon_sym_Private] = ACTIONS(2099), - [anon_sym_private] = ACTIONS(2099), - [anon_sym_PRIVATE] = ACTIONS(2099), - [anon_sym_Public] = ACTIONS(2099), - [anon_sym_public] = ACTIONS(2099), - [anon_sym_PUBLIC] = ACTIONS(2099), - [anon_sym_Remote] = ACTIONS(2099), - [anon_sym_remote] = ACTIONS(2099), - [anon_sym_REMOTE] = ACTIONS(2099), - [anon_sym_Static] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_STATIC] = ACTIONS(2099), - [sym__ternary_qmark] = ACTIONS(2101), - [sym__elvis_operator] = ACTIONS(2101), - [sym_logical_or] = ACTIONS(2101), - [sym__java_block_open] = ACTIONS(2101), - [sym__static_type_prefix] = ACTIONS(2101), + [sym_identifier] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_Query] = ACTIONS(2089), + [anon_sym_query] = ACTIONS(2089), + [anon_sym_QUERY] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2089), + [sym_optional_chain] = ACTIONS(2091), + [sym_static_chain] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [anon_sym_DASH_EQ] = ACTIONS(2091), + [anon_sym_STAR_EQ] = ACTIONS(2091), + [anon_sym_SLASH_EQ] = ACTIONS(2091), + [anon_sym_PERCENT_EQ] = ACTIONS(2091), + [anon_sym_CARET_EQ] = ACTIONS(2091), + [anon_sym_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_LT_LT_EQ] = ACTIONS(2091), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2089), + [anon_sym_STAR_STAR] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_GT] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [aux_sym_binary_expression_token1] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2089), + [aux_sym_binary_expression_token2] = ACTIONS(2089), + [aux_sym_binary_expression_token3] = ACTIONS(2089), + [aux_sym_binary_expression_token4] = ACTIONS(2091), + [aux_sym_binary_expression_token5] = ACTIONS(2091), + [aux_sym_binary_expression_token6] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2091), + [aux_sym_unary_operator_token1] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2089), + [aux_sym_number_token2] = ACTIONS(2089), + [anon_sym_This] = ACTIONS(2089), + [anon_sym_this] = ACTIONS(2089), + [anon_sym_THIS] = ACTIONS(2089), + [anon_sym_Super] = ACTIONS(2089), + [anon_sym_super] = ACTIONS(2089), + [anon_sym_SUPER] = ACTIONS(2089), + [anon_sym_True] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_TRUE] = ACTIONS(2089), + [anon_sym_False] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_FALSE] = ACTIONS(2089), + [anon_sym_Null] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [anon_sym_NULL] = ACTIONS(2089), + [anon_sym_Undefined] = ACTIONS(2089), + [anon_sym_undefined] = ACTIONS(2089), + [anon_sym_UNDEFINED] = ACTIONS(2089), + [anon_sym_get] = ACTIONS(2089), + [anon_sym_set] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2089), + [sym_hash_empty] = ACTIONS(2091), + [anon_sym_export] = ACTIONS(2089), + [anon_sym_QueryExecute] = ACTIONS(2089), + [anon_sym_queryexecute] = ACTIONS(2089), + [anon_sym_QUERYEXECUTE] = ACTIONS(2089), + [anon_sym_queryExecute] = ACTIONS(2089), + [anon_sym_BQUOTE] = ACTIONS(2091), + [anon_sym_Abstract] = ACTIONS(2089), + [anon_sym_abstract] = ACTIONS(2089), + [anon_sym_ABSTRACT] = ACTIONS(2089), + [anon_sym_Component] = ACTIONS(2089), + [anon_sym_component] = ACTIONS(2089), + [anon_sym_COMPONENT] = ACTIONS(2089), + [anon_sym_Debugger] = ACTIONS(2089), + [anon_sym_debugger] = ACTIONS(2089), + [anon_sym_DEBUGGER] = ACTIONS(2089), + [anon_sym_Final] = ACTIONS(2089), + [anon_sym_final] = ACTIONS(2089), + [anon_sym_FINAL] = ACTIONS(2089), + [anon_sym_Function] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(2089), + [anon_sym_FUNCTION] = ACTIONS(2089), + [anon_sym_In] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_IN] = ACTIONS(2089), + [anon_sym_Include] = ACTIONS(2089), + [anon_sym_include] = ACTIONS(2089), + [anon_sym_INCLUDE] = ACTIONS(2089), + [anon_sym_InstanceOf] = ACTIONS(2089), + [anon_sym_instanceof] = ACTIONS(2089), + [anon_sym_INSTANCEOF] = ACTIONS(2089), + [anon_sym_instanceOf] = ACTIONS(2089), + [anon_sym_New] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_NEW] = ACTIONS(2089), + [anon_sym_Package] = ACTIONS(2089), + [anon_sym_package] = ACTIONS(2089), + [anon_sym_PACKAGE] = ACTIONS(2089), + [anon_sym_Private] = ACTIONS(2089), + [anon_sym_private] = ACTIONS(2089), + [anon_sym_PRIVATE] = ACTIONS(2089), + [anon_sym_Public] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_PUBLIC] = ACTIONS(2089), + [anon_sym_Remote] = ACTIONS(2089), + [anon_sym_remote] = ACTIONS(2089), + [anon_sym_REMOTE] = ACTIONS(2089), + [anon_sym_Static] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_STATIC] = ACTIONS(2089), + [sym__ternary_qmark] = ACTIONS(2091), + [sym__elvis_operator] = ACTIONS(2091), + [sym_logical_or] = ACTIONS(2091), + [sym__java_block_open] = ACTIONS(2091), + [sym__static_type_prefix] = ACTIONS(2091), }, [STATE(401)] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_Query] = ACTIONS(2107), - [anon_sym_query] = ACTIONS(2107), - [anon_sym_QUERY] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2107), - [sym_optional_chain] = ACTIONS(2109), - [sym_static_chain] = ACTIONS(2109), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_CARET_EQ] = ACTIONS(2109), - [anon_sym_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_LT_LT_EQ] = ACTIONS(2109), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_STAR_STAR] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_GT] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [aux_sym_binary_expression_token1] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2107), - [aux_sym_binary_expression_token2] = ACTIONS(2107), - [aux_sym_binary_expression_token3] = ACTIONS(2107), - [aux_sym_binary_expression_token4] = ACTIONS(2109), - [aux_sym_binary_expression_token5] = ACTIONS(2109), - [aux_sym_binary_expression_token6] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2109), - [aux_sym_unary_operator_token1] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2107), - [aux_sym_number_token2] = ACTIONS(2107), - [anon_sym_This] = ACTIONS(2107), - [anon_sym_this] = ACTIONS(2107), - [anon_sym_THIS] = ACTIONS(2107), - [anon_sym_Super] = ACTIONS(2107), - [anon_sym_super] = ACTIONS(2107), - [anon_sym_SUPER] = ACTIONS(2107), - [anon_sym_True] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_TRUE] = ACTIONS(2107), - [anon_sym_False] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [anon_sym_FALSE] = ACTIONS(2107), - [anon_sym_Null] = ACTIONS(2107), - [anon_sym_null] = ACTIONS(2107), - [anon_sym_NULL] = ACTIONS(2107), - [anon_sym_Undefined] = ACTIONS(2107), - [anon_sym_undefined] = ACTIONS(2107), - [anon_sym_UNDEFINED] = ACTIONS(2107), - [anon_sym_get] = ACTIONS(2107), - [anon_sym_set] = ACTIONS(2107), - [anon_sym_POUND] = ACTIONS(2107), - [sym_hash_empty] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2107), - [anon_sym_QueryExecute] = ACTIONS(2107), - [anon_sym_queryexecute] = ACTIONS(2107), - [anon_sym_QUERYEXECUTE] = ACTIONS(2107), - [anon_sym_queryExecute] = ACTIONS(2107), - [anon_sym_BQUOTE] = ACTIONS(2109), - [anon_sym_Abstract] = ACTIONS(2107), - [anon_sym_abstract] = ACTIONS(2107), - [anon_sym_ABSTRACT] = ACTIONS(2107), - [anon_sym_Component] = ACTIONS(2107), - [anon_sym_component] = ACTIONS(2107), - [anon_sym_COMPONENT] = ACTIONS(2107), - [anon_sym_Debugger] = ACTIONS(2107), - [anon_sym_debugger] = ACTIONS(2107), - [anon_sym_DEBUGGER] = ACTIONS(2107), - [anon_sym_Final] = ACTIONS(2107), - [anon_sym_final] = ACTIONS(2107), - [anon_sym_FINAL] = ACTIONS(2107), - [anon_sym_Function] = ACTIONS(2107), - [anon_sym_function] = ACTIONS(2107), - [anon_sym_FUNCTION] = ACTIONS(2107), - [anon_sym_In] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_IN] = ACTIONS(2107), - [anon_sym_Include] = ACTIONS(2107), - [anon_sym_include] = ACTIONS(2107), - [anon_sym_INCLUDE] = ACTIONS(2107), - [anon_sym_InstanceOf] = ACTIONS(2107), - [anon_sym_instanceof] = ACTIONS(2107), - [anon_sym_INSTANCEOF] = ACTIONS(2107), - [anon_sym_instanceOf] = ACTIONS(2107), - [anon_sym_New] = ACTIONS(2107), - [anon_sym_new] = ACTIONS(2107), - [anon_sym_NEW] = ACTIONS(2107), - [anon_sym_Package] = ACTIONS(2107), - [anon_sym_package] = ACTIONS(2107), - [anon_sym_PACKAGE] = ACTIONS(2107), - [anon_sym_Private] = ACTIONS(2107), - [anon_sym_private] = ACTIONS(2107), - [anon_sym_PRIVATE] = ACTIONS(2107), - [anon_sym_Public] = ACTIONS(2107), - [anon_sym_public] = ACTIONS(2107), - [anon_sym_PUBLIC] = ACTIONS(2107), - [anon_sym_Remote] = ACTIONS(2107), - [anon_sym_remote] = ACTIONS(2107), - [anon_sym_REMOTE] = ACTIONS(2107), - [anon_sym_Static] = ACTIONS(2107), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_STATIC] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2109), - [sym__elvis_operator] = ACTIONS(2109), - [sym_logical_or] = ACTIONS(2109), - [sym__java_block_open] = ACTIONS(2109), - [sym__static_type_prefix] = ACTIONS(2109), - }, - [STATE(402)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [sym_identifier] = ACTIONS(2136), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -106518,47 +106463,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), @@ -106566,216 +106511,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Interface] = ACTIONS(476), [anon_sym_interface] = ACTIONS(476), [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(403)] = { - [sym_identifier] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_Query] = ACTIONS(2003), - [anon_sym_query] = ACTIONS(2003), - [anon_sym_QUERY] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2003), - [sym_optional_chain] = ACTIONS(2005), - [sym_static_chain] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_PERCENT_EQ] = ACTIONS(2005), - [anon_sym_CARET_EQ] = ACTIONS(2005), - [anon_sym_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_EQ] = ACTIONS(2005), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2005), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_GT_GT_GT] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_PERCENT] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2003), - [anon_sym_STAR_STAR] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT_GT] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2005), - [aux_sym_binary_expression_token1] = ACTIONS(2005), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2003), - [aux_sym_binary_expression_token2] = ACTIONS(2003), - [aux_sym_binary_expression_token3] = ACTIONS(2003), - [aux_sym_binary_expression_token4] = ACTIONS(2005), - [aux_sym_binary_expression_token5] = ACTIONS(2005), - [aux_sym_binary_expression_token6] = ACTIONS(2005), - [anon_sym_QMARK_QMARK] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2003), - [anon_sym_TILDE] = ACTIONS(2005), - [aux_sym_unary_operator_token1] = ACTIONS(2003), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [anon_sym_SQUOTE] = ACTIONS(2005), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2003), - [aux_sym_number_token2] = ACTIONS(2003), - [anon_sym_This] = ACTIONS(2003), - [anon_sym_this] = ACTIONS(2003), - [anon_sym_THIS] = ACTIONS(2003), - [anon_sym_Super] = ACTIONS(2003), - [anon_sym_super] = ACTIONS(2003), - [anon_sym_SUPER] = ACTIONS(2003), - [anon_sym_True] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_TRUE] = ACTIONS(2003), - [anon_sym_False] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_FALSE] = ACTIONS(2003), - [anon_sym_Null] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_NULL] = ACTIONS(2003), - [anon_sym_Undefined] = ACTIONS(2003), - [anon_sym_undefined] = ACTIONS(2003), - [anon_sym_UNDEFINED] = ACTIONS(2003), - [anon_sym_get] = ACTIONS(2003), - [anon_sym_set] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2003), - [sym_hash_empty] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2003), - [anon_sym_QueryExecute] = ACTIONS(2003), - [anon_sym_queryexecute] = ACTIONS(2003), - [anon_sym_QUERYEXECUTE] = ACTIONS(2003), - [anon_sym_queryExecute] = ACTIONS(2003), - [anon_sym_BQUOTE] = ACTIONS(2005), - [anon_sym_Abstract] = ACTIONS(2003), - [anon_sym_abstract] = ACTIONS(2003), - [anon_sym_ABSTRACT] = ACTIONS(2003), - [anon_sym_Component] = ACTIONS(2003), - [anon_sym_component] = ACTIONS(2003), - [anon_sym_COMPONENT] = ACTIONS(2003), - [anon_sym_Debugger] = ACTIONS(2003), - [anon_sym_debugger] = ACTIONS(2003), - [anon_sym_DEBUGGER] = ACTIONS(2003), - [anon_sym_Final] = ACTIONS(2003), - [anon_sym_final] = ACTIONS(2003), - [anon_sym_FINAL] = ACTIONS(2003), + [STATE(402)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4123), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(367), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4026), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), [anon_sym_Function] = ACTIONS(2003), [anon_sym_function] = ACTIONS(2003), [anon_sym_FUNCTION] = ACTIONS(2003), - [anon_sym_In] = ACTIONS(2003), - [anon_sym_in] = ACTIONS(2003), - [anon_sym_IN] = ACTIONS(2003), - [anon_sym_Include] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_INCLUDE] = ACTIONS(2003), - [anon_sym_InstanceOf] = ACTIONS(2003), - [anon_sym_instanceof] = ACTIONS(2003), - [anon_sym_INSTANCEOF] = ACTIONS(2003), - [anon_sym_instanceOf] = ACTIONS(2003), - [anon_sym_New] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_NEW] = ACTIONS(2003), - [anon_sym_Package] = ACTIONS(2003), - [anon_sym_package] = ACTIONS(2003), - [anon_sym_PACKAGE] = ACTIONS(2003), - [anon_sym_Private] = ACTIONS(2003), - [anon_sym_private] = ACTIONS(2003), - [anon_sym_PRIVATE] = ACTIONS(2003), - [anon_sym_Public] = ACTIONS(2003), - [anon_sym_public] = ACTIONS(2003), - [anon_sym_PUBLIC] = ACTIONS(2003), - [anon_sym_Remote] = ACTIONS(2003), - [anon_sym_remote] = ACTIONS(2003), - [anon_sym_REMOTE] = ACTIONS(2003), - [anon_sym_Static] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_STATIC] = ACTIONS(2003), - [sym__ternary_qmark] = ACTIONS(2005), - [sym__elvis_operator] = ACTIONS(2005), - [sym_logical_or] = ACTIONS(2005), - [sym__java_block_open] = ACTIONS(2005), - [sym__static_type_prefix] = ACTIONS(2005), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(403)] = { + [sym_identifier] = ACTIONS(2101), + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_Query] = ACTIONS(2101), + [anon_sym_query] = ACTIONS(2101), + [anon_sym_QUERY] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2101), + [sym_optional_chain] = ACTIONS(2103), + [sym_static_chain] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [anon_sym_DASH_EQ] = ACTIONS(2103), + [anon_sym_STAR_EQ] = ACTIONS(2103), + [anon_sym_SLASH_EQ] = ACTIONS(2103), + [anon_sym_PERCENT_EQ] = ACTIONS(2103), + [anon_sym_CARET_EQ] = ACTIONS(2103), + [anon_sym_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_LT_LT_EQ] = ACTIONS(2103), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2101), + [anon_sym_STAR_STAR] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_GT] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [aux_sym_binary_expression_token1] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2101), + [aux_sym_binary_expression_token2] = ACTIONS(2101), + [aux_sym_binary_expression_token3] = ACTIONS(2101), + [aux_sym_binary_expression_token4] = ACTIONS(2103), + [aux_sym_binary_expression_token5] = ACTIONS(2103), + [aux_sym_binary_expression_token6] = ACTIONS(2103), + [anon_sym_QMARK_QMARK] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2103), + [aux_sym_unary_operator_token1] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2101), + [aux_sym_number_token2] = ACTIONS(2101), + [anon_sym_This] = ACTIONS(2101), + [anon_sym_this] = ACTIONS(2101), + [anon_sym_THIS] = ACTIONS(2101), + [anon_sym_Super] = ACTIONS(2101), + [anon_sym_super] = ACTIONS(2101), + [anon_sym_SUPER] = ACTIONS(2101), + [anon_sym_True] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_TRUE] = ACTIONS(2101), + [anon_sym_False] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_FALSE] = ACTIONS(2101), + [anon_sym_Null] = ACTIONS(2101), + [anon_sym_null] = ACTIONS(2101), + [anon_sym_NULL] = ACTIONS(2101), + [anon_sym_Undefined] = ACTIONS(2101), + [anon_sym_undefined] = ACTIONS(2101), + [anon_sym_UNDEFINED] = ACTIONS(2101), + [anon_sym_get] = ACTIONS(2101), + [anon_sym_set] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2101), + [sym_hash_empty] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2101), + [anon_sym_QueryExecute] = ACTIONS(2101), + [anon_sym_queryexecute] = ACTIONS(2101), + [anon_sym_QUERYEXECUTE] = ACTIONS(2101), + [anon_sym_queryExecute] = ACTIONS(2101), + [anon_sym_BQUOTE] = ACTIONS(2103), + [anon_sym_Abstract] = ACTIONS(2101), + [anon_sym_abstract] = ACTIONS(2101), + [anon_sym_ABSTRACT] = ACTIONS(2101), + [anon_sym_Component] = ACTIONS(2101), + [anon_sym_component] = ACTIONS(2101), + [anon_sym_COMPONENT] = ACTIONS(2101), + [anon_sym_Debugger] = ACTIONS(2101), + [anon_sym_debugger] = ACTIONS(2101), + [anon_sym_DEBUGGER] = ACTIONS(2101), + [anon_sym_Final] = ACTIONS(2101), + [anon_sym_final] = ACTIONS(2101), + [anon_sym_FINAL] = ACTIONS(2101), + [anon_sym_Function] = ACTIONS(2101), + [anon_sym_function] = ACTIONS(2101), + [anon_sym_FUNCTION] = ACTIONS(2101), + [anon_sym_In] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_IN] = ACTIONS(2101), + [anon_sym_Include] = ACTIONS(2101), + [anon_sym_include] = ACTIONS(2101), + [anon_sym_INCLUDE] = ACTIONS(2101), + [anon_sym_InstanceOf] = ACTIONS(2101), + [anon_sym_instanceof] = ACTIONS(2101), + [anon_sym_INSTANCEOF] = ACTIONS(2101), + [anon_sym_instanceOf] = ACTIONS(2101), + [anon_sym_New] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_NEW] = ACTIONS(2101), + [anon_sym_Package] = ACTIONS(2101), + [anon_sym_package] = ACTIONS(2101), + [anon_sym_PACKAGE] = ACTIONS(2101), + [anon_sym_Private] = ACTIONS(2101), + [anon_sym_private] = ACTIONS(2101), + [anon_sym_PRIVATE] = ACTIONS(2101), + [anon_sym_Public] = ACTIONS(2101), + [anon_sym_public] = ACTIONS(2101), + [anon_sym_PUBLIC] = ACTIONS(2101), + [anon_sym_Remote] = ACTIONS(2101), + [anon_sym_remote] = ACTIONS(2101), + [anon_sym_REMOTE] = ACTIONS(2101), + [anon_sym_Static] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_STATIC] = ACTIONS(2101), + [sym__ternary_qmark] = ACTIONS(2103), + [sym__elvis_operator] = ACTIONS(2103), + [sym_logical_or] = ACTIONS(2103), + [sym__java_block_open] = ACTIONS(2103), + [sym__static_type_prefix] = ACTIONS(2103), }, [STATE(404)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [sym_identifier] = ACTIONS(2136), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -106844,47 +106952,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), @@ -106892,216 +107000,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Interface] = ACTIONS(476), [anon_sym_interface] = ACTIONS(476), [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, [STATE(405)] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_Query] = ACTIONS(2111), - [anon_sym_query] = ACTIONS(2111), - [anon_sym_QUERY] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2111), - [sym_optional_chain] = ACTIONS(2113), - [sym_static_chain] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2113), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_GT] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [aux_sym_binary_expression_token1] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2111), - [aux_sym_binary_expression_token2] = ACTIONS(2111), - [aux_sym_binary_expression_token3] = ACTIONS(2111), - [aux_sym_binary_expression_token4] = ACTIONS(2113), - [aux_sym_binary_expression_token5] = ACTIONS(2113), - [aux_sym_binary_expression_token6] = ACTIONS(2113), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2113), - [aux_sym_unary_operator_token1] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(2113), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2111), - [aux_sym_number_token2] = ACTIONS(2111), - [anon_sym_This] = ACTIONS(2111), - [anon_sym_this] = ACTIONS(2111), - [anon_sym_THIS] = ACTIONS(2111), - [anon_sym_Super] = ACTIONS(2111), - [anon_sym_super] = ACTIONS(2111), - [anon_sym_SUPER] = ACTIONS(2111), - [anon_sym_True] = ACTIONS(2111), - [anon_sym_true] = ACTIONS(2111), - [anon_sym_TRUE] = ACTIONS(2111), - [anon_sym_False] = ACTIONS(2111), - [anon_sym_false] = ACTIONS(2111), - [anon_sym_FALSE] = ACTIONS(2111), - [anon_sym_Null] = ACTIONS(2111), - [anon_sym_null] = ACTIONS(2111), - [anon_sym_NULL] = ACTIONS(2111), - [anon_sym_Undefined] = ACTIONS(2111), - [anon_sym_undefined] = ACTIONS(2111), - [anon_sym_UNDEFINED] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_POUND] = ACTIONS(2111), - [sym_hash_empty] = ACTIONS(2113), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_QueryExecute] = ACTIONS(2111), - [anon_sym_queryexecute] = ACTIONS(2111), - [anon_sym_QUERYEXECUTE] = ACTIONS(2111), - [anon_sym_queryExecute] = ACTIONS(2111), - [anon_sym_BQUOTE] = ACTIONS(2113), - [anon_sym_Abstract] = ACTIONS(2111), - [anon_sym_abstract] = ACTIONS(2111), - [anon_sym_ABSTRACT] = ACTIONS(2111), - [anon_sym_Component] = ACTIONS(2111), - [anon_sym_component] = ACTIONS(2111), - [anon_sym_COMPONENT] = ACTIONS(2111), - [anon_sym_Debugger] = ACTIONS(2111), - [anon_sym_debugger] = ACTIONS(2111), - [anon_sym_DEBUGGER] = ACTIONS(2111), - [anon_sym_Final] = ACTIONS(2111), - [anon_sym_final] = ACTIONS(2111), - [anon_sym_FINAL] = ACTIONS(2111), - [anon_sym_Function] = ACTIONS(2111), - [anon_sym_function] = ACTIONS(2111), - [anon_sym_FUNCTION] = ACTIONS(2111), - [anon_sym_In] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_IN] = ACTIONS(2111), - [anon_sym_Include] = ACTIONS(2111), - [anon_sym_include] = ACTIONS(2111), - [anon_sym_INCLUDE] = ACTIONS(2111), - [anon_sym_InstanceOf] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_INSTANCEOF] = ACTIONS(2111), - [anon_sym_instanceOf] = ACTIONS(2111), - [anon_sym_New] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_NEW] = ACTIONS(2111), - [anon_sym_Package] = ACTIONS(2111), - [anon_sym_package] = ACTIONS(2111), - [anon_sym_PACKAGE] = ACTIONS(2111), - [anon_sym_Private] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_PRIVATE] = ACTIONS(2111), - [anon_sym_Public] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_PUBLIC] = ACTIONS(2111), - [anon_sym_Remote] = ACTIONS(2111), - [anon_sym_remote] = ACTIONS(2111), - [anon_sym_REMOTE] = ACTIONS(2111), - [anon_sym_Static] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_STATIC] = ACTIONS(2111), - [sym__ternary_qmark] = ACTIONS(2113), - [sym__elvis_operator] = ACTIONS(2113), - [sym_logical_or] = ACTIONS(2113), - [sym__java_block_open] = ACTIONS(2113), - [sym__static_type_prefix] = ACTIONS(2113), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4135), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(352), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4078), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, [STATE(406)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(2136), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -107170,47 +107278,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), @@ -107218,53 +107326,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Interface] = ACTIONS(476), [anon_sym_interface] = ACTIONS(476), [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, [STATE(407)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [sym_identifier] = ACTIONS(2136), + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4216), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(381), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4176), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(408)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -107333,47 +107604,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), @@ -107381,53 +107652,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Interface] = ACTIONS(476), [anon_sym_interface] = ACTIONS(476), [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(408)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [sym_identifier] = ACTIONS(2136), + [STATE(409)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -107496,47 +107767,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), @@ -107544,288 +107815,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Interface] = ACTIONS(476), [anon_sym_interface] = ACTIONS(476), [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(409)] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_Query] = ACTIONS(2115), - [anon_sym_query] = ACTIONS(2115), - [anon_sym_QUERY] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2115), - [sym_optional_chain] = ACTIONS(2117), - [sym_static_chain] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2117), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_STAR_STAR] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_GT] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [aux_sym_binary_expression_token1] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2115), - [aux_sym_binary_expression_token2] = ACTIONS(2115), - [aux_sym_binary_expression_token3] = ACTIONS(2115), - [aux_sym_binary_expression_token4] = ACTIONS(2117), - [aux_sym_binary_expression_token5] = ACTIONS(2117), - [aux_sym_binary_expression_token6] = ACTIONS(2117), - [anon_sym_QMARK_QMARK] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2117), - [aux_sym_unary_operator_token1] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2115), - [aux_sym_number_token2] = ACTIONS(2115), - [anon_sym_This] = ACTIONS(2115), - [anon_sym_this] = ACTIONS(2115), - [anon_sym_THIS] = ACTIONS(2115), - [anon_sym_Super] = ACTIONS(2115), - [anon_sym_super] = ACTIONS(2115), - [anon_sym_SUPER] = ACTIONS(2115), - [anon_sym_True] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_TRUE] = ACTIONS(2115), - [anon_sym_False] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_FALSE] = ACTIONS(2115), - [anon_sym_Null] = ACTIONS(2115), - [anon_sym_null] = ACTIONS(2115), - [anon_sym_NULL] = ACTIONS(2115), - [anon_sym_Undefined] = ACTIONS(2115), - [anon_sym_undefined] = ACTIONS(2115), - [anon_sym_UNDEFINED] = ACTIONS(2115), - [anon_sym_get] = ACTIONS(2115), - [anon_sym_set] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(2115), - [sym_hash_empty] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2115), - [anon_sym_QueryExecute] = ACTIONS(2115), - [anon_sym_queryexecute] = ACTIONS(2115), - [anon_sym_QUERYEXECUTE] = ACTIONS(2115), - [anon_sym_queryExecute] = ACTIONS(2115), - [anon_sym_BQUOTE] = ACTIONS(2117), - [anon_sym_Abstract] = ACTIONS(2115), - [anon_sym_abstract] = ACTIONS(2115), - [anon_sym_ABSTRACT] = ACTIONS(2115), - [anon_sym_Component] = ACTIONS(2115), - [anon_sym_component] = ACTIONS(2115), - [anon_sym_COMPONENT] = ACTIONS(2115), - [anon_sym_Debugger] = ACTIONS(2115), - [anon_sym_debugger] = ACTIONS(2115), - [anon_sym_DEBUGGER] = ACTIONS(2115), - [anon_sym_Final] = ACTIONS(2115), - [anon_sym_final] = ACTIONS(2115), - [anon_sym_FINAL] = ACTIONS(2115), - [anon_sym_Function] = ACTIONS(2115), - [anon_sym_function] = ACTIONS(2115), - [anon_sym_FUNCTION] = ACTIONS(2115), - [anon_sym_In] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_IN] = ACTIONS(2115), - [anon_sym_Include] = ACTIONS(2115), - [anon_sym_include] = ACTIONS(2115), - [anon_sym_INCLUDE] = ACTIONS(2115), - [anon_sym_InstanceOf] = ACTIONS(2115), - [anon_sym_instanceof] = ACTIONS(2115), - [anon_sym_INSTANCEOF] = ACTIONS(2115), - [anon_sym_instanceOf] = ACTIONS(2115), - [anon_sym_New] = ACTIONS(2115), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_NEW] = ACTIONS(2115), - [anon_sym_Package] = ACTIONS(2115), - [anon_sym_package] = ACTIONS(2115), - [anon_sym_PACKAGE] = ACTIONS(2115), - [anon_sym_Private] = ACTIONS(2115), - [anon_sym_private] = ACTIONS(2115), - [anon_sym_PRIVATE] = ACTIONS(2115), - [anon_sym_Public] = ACTIONS(2115), - [anon_sym_public] = ACTIONS(2115), - [anon_sym_PUBLIC] = ACTIONS(2115), - [anon_sym_Remote] = ACTIONS(2115), - [anon_sym_remote] = ACTIONS(2115), - [anon_sym_REMOTE] = ACTIONS(2115), - [anon_sym_Static] = ACTIONS(2115), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_STATIC] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2117), - [sym__elvis_operator] = ACTIONS(2117), - [sym_logical_or] = ACTIONS(2117), - [sym__java_block_open] = ACTIONS(2117), - [sym__static_type_prefix] = ACTIONS(2117), - }, [STATE(410)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4085), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(348), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4042), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), + [sym_identifier] = ACTIONS(2045), + [anon_sym_DOT] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_EQ] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_Query] = ACTIONS(2045), + [anon_sym_query] = ACTIONS(2045), + [anon_sym_QUERY] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2045), + [sym_optional_chain] = ACTIONS(2047), + [sym_static_chain] = ACTIONS(2047), + [anon_sym_PLUS_EQ] = ACTIONS(2047), + [anon_sym_DASH_EQ] = ACTIONS(2047), + [anon_sym_STAR_EQ] = ACTIONS(2047), + [anon_sym_SLASH_EQ] = ACTIONS(2047), + [anon_sym_PERCENT_EQ] = ACTIONS(2047), + [anon_sym_CARET_EQ] = ACTIONS(2047), + [anon_sym_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_LT_LT_EQ] = ACTIONS(2047), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_GT_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_CARET] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_SLASH] = ACTIONS(2045), + [anon_sym_PERCENT] = ACTIONS(2045), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_STAR_STAR] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_EQ_EQ] = ACTIONS(2045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2047), + [anon_sym_LT_GT] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2047), + [aux_sym_binary_expression_token1] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [aux_sym_binary_expression_token2] = ACTIONS(2045), + [aux_sym_binary_expression_token3] = ACTIONS(2045), + [aux_sym_binary_expression_token4] = ACTIONS(2047), + [aux_sym_binary_expression_token5] = ACTIONS(2047), + [aux_sym_binary_expression_token6] = ACTIONS(2047), + [anon_sym_QMARK_QMARK] = ACTIONS(2045), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2047), + [aux_sym_unary_operator_token1] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2047), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2045), + [aux_sym_number_token2] = ACTIONS(2045), + [anon_sym_This] = ACTIONS(2045), + [anon_sym_this] = ACTIONS(2045), + [anon_sym_THIS] = ACTIONS(2045), + [anon_sym_Super] = ACTIONS(2045), + [anon_sym_super] = ACTIONS(2045), + [anon_sym_SUPER] = ACTIONS(2045), + [anon_sym_True] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_TRUE] = ACTIONS(2045), + [anon_sym_False] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_FALSE] = ACTIONS(2045), + [anon_sym_Null] = ACTIONS(2045), + [anon_sym_null] = ACTIONS(2045), + [anon_sym_NULL] = ACTIONS(2045), + [anon_sym_Undefined] = ACTIONS(2045), + [anon_sym_undefined] = ACTIONS(2045), + [anon_sym_UNDEFINED] = ACTIONS(2045), + [anon_sym_get] = ACTIONS(2045), + [anon_sym_set] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(2045), + [sym_hash_empty] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2045), + [anon_sym_QueryExecute] = ACTIONS(2045), + [anon_sym_queryexecute] = ACTIONS(2045), + [anon_sym_QUERYEXECUTE] = ACTIONS(2045), + [anon_sym_queryExecute] = ACTIONS(2045), + [anon_sym_BQUOTE] = ACTIONS(2047), + [anon_sym_Abstract] = ACTIONS(2045), + [anon_sym_abstract] = ACTIONS(2045), + [anon_sym_ABSTRACT] = ACTIONS(2045), + [anon_sym_Component] = ACTIONS(2045), + [anon_sym_component] = ACTIONS(2045), + [anon_sym_COMPONENT] = ACTIONS(2045), + [anon_sym_Debugger] = ACTIONS(2045), + [anon_sym_debugger] = ACTIONS(2045), + [anon_sym_DEBUGGER] = ACTIONS(2045), + [anon_sym_Final] = ACTIONS(2045), + [anon_sym_final] = ACTIONS(2045), + [anon_sym_FINAL] = ACTIONS(2045), + [anon_sym_Function] = ACTIONS(2045), + [anon_sym_function] = ACTIONS(2045), + [anon_sym_FUNCTION] = ACTIONS(2045), + [anon_sym_In] = ACTIONS(2045), + [anon_sym_in] = ACTIONS(2045), + [anon_sym_IN] = ACTIONS(2045), + [anon_sym_Include] = ACTIONS(2045), + [anon_sym_include] = ACTIONS(2045), + [anon_sym_INCLUDE] = ACTIONS(2045), + [anon_sym_InstanceOf] = ACTIONS(2045), + [anon_sym_instanceof] = ACTIONS(2045), + [anon_sym_INSTANCEOF] = ACTIONS(2045), + [anon_sym_instanceOf] = ACTIONS(2045), + [anon_sym_New] = ACTIONS(2045), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_NEW] = ACTIONS(2045), + [anon_sym_Package] = ACTIONS(2045), + [anon_sym_package] = ACTIONS(2045), + [anon_sym_PACKAGE] = ACTIONS(2045), + [anon_sym_Private] = ACTIONS(2045), + [anon_sym_private] = ACTIONS(2045), + [anon_sym_PRIVATE] = ACTIONS(2045), + [anon_sym_Public] = ACTIONS(2045), + [anon_sym_public] = ACTIONS(2045), + [anon_sym_PUBLIC] = ACTIONS(2045), + [anon_sym_Remote] = ACTIONS(2045), + [anon_sym_remote] = ACTIONS(2045), + [anon_sym_REMOTE] = ACTIONS(2045), + [anon_sym_Static] = ACTIONS(2045), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_STATIC] = ACTIONS(2045), + [sym__ternary_qmark] = ACTIONS(2047), + [sym__elvis_operator] = ACTIONS(2047), + [sym_logical_or] = ACTIONS(2047), + [sym__java_block_open] = ACTIONS(2047), + [sym__static_type_prefix] = ACTIONS(2047), + }, + [STATE(411)] = { + [sym_path] = STATE(2044), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4120), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4419), + [sym_function_expression] = STATE(2492), + [sym_parameter_type] = STATE(333), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2306), + [sym_subscript_expression] = STATE(2306), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4419), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2807), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2807), + [sym_undefined] = STATE(2807), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4069), + [sym_rest_pattern] = STATE(4437), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(1991), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Any] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_ANY] = ACTIONS(1752), + [anon_sym_String] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_STRING] = ACTIONS(1752), + [anon_sym_Numeric] = ACTIONS(1752), + [anon_sym_numeric] = ACTIONS(1752), + [anon_sym_NUMERIC] = ACTIONS(1752), + [anon_sym_Xml] = ACTIONS(1752), + [anon_sym_xml] = ACTIONS(1752), + [anon_sym_XML] = ACTIONS(1752), + [anon_sym_Binary] = ACTIONS(1752), + [anon_sym_binary] = ACTIONS(1752), + [anon_sym_BINARY] = ACTIONS(1752), + [anon_sym_Boolean] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_BOOLEAN] = ACTIONS(1752), + [anon_sym_Date] = ACTIONS(1752), + [anon_sym_date] = ACTIONS(1752), + [anon_sym_DATE] = ACTIONS(1752), + [anon_sym_Guid] = ACTIONS(1752), + [anon_sym_guid] = ACTIONS(1752), + [anon_sym_GUID] = ACTIONS(1752), + [anon_sym_Query] = ACTIONS(1997), + [anon_sym_query] = ACTIONS(1997), + [anon_sym_QUERY] = ACTIONS(1997), + [anon_sym_Void] = ACTIONS(1752), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_VOID] = ACTIONS(1752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -107838,69 +108109,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_QueryExecute] = ACTIONS(1983), + [anon_sym_queryexecute] = ACTIONS(1983), + [anon_sym_QUERYEXECUTE] = ACTIONS(1983), + [anon_sym_queryExecute] = ACTIONS(1983), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), + [anon_sym_Abstract] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_ABSTRACT] = ACTIONS(1973), + [anon_sym_Component] = ACTIONS(2001), + [anon_sym_component] = ACTIONS(2001), + [anon_sym_COMPONENT] = ACTIONS(2001), + [anon_sym_Debugger] = ACTIONS(1973), + [anon_sym_debugger] = ACTIONS(1973), + [anon_sym_DEBUGGER] = ACTIONS(1973), + [anon_sym_Final] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_FINAL] = ACTIONS(1973), + [anon_sym_Function] = ACTIONS(2003), + [anon_sym_function] = ACTIONS(2003), + [anon_sym_FUNCTION] = ACTIONS(2003), + [anon_sym_Include] = ACTIONS(1973), + [anon_sym_include] = ACTIONS(1973), + [anon_sym_INCLUDE] = ACTIONS(1973), + [anon_sym_New] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_NEW] = ACTIONS(1987), + [anon_sym_Package] = ACTIONS(1973), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_PACKAGE] = ACTIONS(1973), + [anon_sym_Private] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_PRIVATE] = ACTIONS(1973), + [anon_sym_Public] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_PUBLIC] = ACTIONS(1973), + [anon_sym_Remote] = ACTIONS(1973), + [anon_sym_remote] = ACTIONS(1973), + [anon_sym_REMOTE] = ACTIONS(1973), + [anon_sym_Static] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_STATIC] = ACTIONS(1973), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(411)] = { + [STATE(412)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(2129), + [anon_sym_EQ] = ACTIONS(2127), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), @@ -108056,30 +108327,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(412)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2136), + [STATE(413)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2136), - [anon_sym_query] = ACTIONS(2136), - [anon_sym_QUERY] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -108148,47 +108419,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_ABSTRACT] = ACTIONS(2136), - [anon_sym_Component] = ACTIONS(2164), - [anon_sym_component] = ACTIONS(2164), - [anon_sym_COMPONENT] = ACTIONS(2164), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_FINAL] = ACTIONS(2136), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), @@ -108196,1159 +108467,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Interface] = ACTIONS(476), [anon_sym_interface] = ACTIONS(476), [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2136), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_PACKAGE] = ACTIONS(2136), - [anon_sym_Private] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_PRIVATE] = ACTIONS(2136), - [anon_sym_Public] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_PUBLIC] = ACTIONS(2136), - [anon_sym_Remote] = ACTIONS(2136), - [anon_sym_remote] = ACTIONS(2136), - [anon_sym_REMOTE] = ACTIONS(2136), - [anon_sym_Static] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_STATIC] = ACTIONS(2136), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(413)] = { - [sym_identifier] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_Query] = ACTIONS(2095), - [anon_sym_query] = ACTIONS(2095), - [anon_sym_QUERY] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2095), - [sym_optional_chain] = ACTIONS(2097), - [sym_static_chain] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2097), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2095), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_BSLASH] = ACTIONS(2095), - [anon_sym_STAR_STAR] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_GT] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [aux_sym_binary_expression_token1] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2095), - [aux_sym_binary_expression_token2] = ACTIONS(2095), - [aux_sym_binary_expression_token3] = ACTIONS(2095), - [aux_sym_binary_expression_token4] = ACTIONS(2097), - [aux_sym_binary_expression_token5] = ACTIONS(2097), - [aux_sym_binary_expression_token6] = ACTIONS(2097), - [anon_sym_QMARK_QMARK] = ACTIONS(2095), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_TILDE] = ACTIONS(2097), - [aux_sym_unary_operator_token1] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2095), - [aux_sym_number_token2] = ACTIONS(2095), - [anon_sym_This] = ACTIONS(2095), - [anon_sym_this] = ACTIONS(2095), - [anon_sym_THIS] = ACTIONS(2095), - [anon_sym_Super] = ACTIONS(2095), - [anon_sym_super] = ACTIONS(2095), - [anon_sym_SUPER] = ACTIONS(2095), - [anon_sym_True] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_TRUE] = ACTIONS(2095), - [anon_sym_False] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [anon_sym_FALSE] = ACTIONS(2095), - [anon_sym_Null] = ACTIONS(2095), - [anon_sym_null] = ACTIONS(2095), - [anon_sym_NULL] = ACTIONS(2095), - [anon_sym_Undefined] = ACTIONS(2095), - [anon_sym_undefined] = ACTIONS(2095), - [anon_sym_UNDEFINED] = ACTIONS(2095), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(2095), - [sym_hash_empty] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_QueryExecute] = ACTIONS(2095), - [anon_sym_queryexecute] = ACTIONS(2095), - [anon_sym_QUERYEXECUTE] = ACTIONS(2095), - [anon_sym_queryExecute] = ACTIONS(2095), - [anon_sym_BQUOTE] = ACTIONS(2097), - [anon_sym_Abstract] = ACTIONS(2095), - [anon_sym_abstract] = ACTIONS(2095), - [anon_sym_ABSTRACT] = ACTIONS(2095), - [anon_sym_Component] = ACTIONS(2095), - [anon_sym_component] = ACTIONS(2095), - [anon_sym_COMPONENT] = ACTIONS(2095), - [anon_sym_Debugger] = ACTIONS(2095), - [anon_sym_debugger] = ACTIONS(2095), - [anon_sym_DEBUGGER] = ACTIONS(2095), - [anon_sym_Final] = ACTIONS(2095), - [anon_sym_final] = ACTIONS(2095), - [anon_sym_FINAL] = ACTIONS(2095), - [anon_sym_Function] = ACTIONS(2095), - [anon_sym_function] = ACTIONS(2095), - [anon_sym_FUNCTION] = ACTIONS(2095), - [anon_sym_In] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_IN] = ACTIONS(2095), - [anon_sym_Include] = ACTIONS(2095), - [anon_sym_include] = ACTIONS(2095), - [anon_sym_INCLUDE] = ACTIONS(2095), - [anon_sym_InstanceOf] = ACTIONS(2095), - [anon_sym_instanceof] = ACTIONS(2095), - [anon_sym_INSTANCEOF] = ACTIONS(2095), - [anon_sym_instanceOf] = ACTIONS(2095), - [anon_sym_New] = ACTIONS(2095), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_NEW] = ACTIONS(2095), - [anon_sym_Package] = ACTIONS(2095), - [anon_sym_package] = ACTIONS(2095), - [anon_sym_PACKAGE] = ACTIONS(2095), - [anon_sym_Private] = ACTIONS(2095), - [anon_sym_private] = ACTIONS(2095), - [anon_sym_PRIVATE] = ACTIONS(2095), - [anon_sym_Public] = ACTIONS(2095), - [anon_sym_public] = ACTIONS(2095), - [anon_sym_PUBLIC] = ACTIONS(2095), - [anon_sym_Remote] = ACTIONS(2095), - [anon_sym_remote] = ACTIONS(2095), - [anon_sym_REMOTE] = ACTIONS(2095), - [anon_sym_Static] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_STATIC] = ACTIONS(2095), - [sym__ternary_qmark] = ACTIONS(2097), - [sym__elvis_operator] = ACTIONS(2097), - [sym_logical_or] = ACTIONS(2097), - [sym__java_block_open] = ACTIONS(2097), - [sym__static_type_prefix] = ACTIONS(2097), - }, [STATE(414)] = { - [sym_path] = STATE(2016), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4073), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4379), - [sym_function_expression] = STATE(2575), - [sym_parameter_type] = STATE(358), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4379), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2725), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2725), - [sym_undefined] = STATE(2725), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(3980), - [sym_rest_pattern] = STATE(4334), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Any] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_ANY] = ACTIONS(1756), - [anon_sym_String] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_STRING] = ACTIONS(1756), - [anon_sym_Numeric] = ACTIONS(1756), - [anon_sym_numeric] = ACTIONS(1756), - [anon_sym_NUMERIC] = ACTIONS(1756), - [anon_sym_Xml] = ACTIONS(1756), - [anon_sym_xml] = ACTIONS(1756), - [anon_sym_XML] = ACTIONS(1756), - [anon_sym_Binary] = ACTIONS(1756), - [anon_sym_binary] = ACTIONS(1756), - [anon_sym_BINARY] = ACTIONS(1756), - [anon_sym_Boolean] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_BOOLEAN] = ACTIONS(1756), - [anon_sym_Date] = ACTIONS(1756), - [anon_sym_date] = ACTIONS(1756), - [anon_sym_DATE] = ACTIONS(1756), - [anon_sym_Guid] = ACTIONS(1756), - [anon_sym_guid] = ACTIONS(1756), - [anon_sym_GUID] = ACTIONS(1756), - [anon_sym_Query] = ACTIONS(1995), - [anon_sym_query] = ACTIONS(1995), - [anon_sym_QUERY] = ACTIONS(1995), - [anon_sym_Void] = ACTIONS(1756), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_VOID] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(1963), - [anon_sym_set] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_QueryExecute] = ACTIONS(1973), - [anon_sym_queryexecute] = ACTIONS(1973), - [anon_sym_QUERYEXECUTE] = ACTIONS(1973), - [anon_sym_queryExecute] = ACTIONS(1973), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(1963), - [anon_sym_abstract] = ACTIONS(1963), - [anon_sym_ABSTRACT] = ACTIONS(1963), - [anon_sym_Component] = ACTIONS(1999), - [anon_sym_component] = ACTIONS(1999), - [anon_sym_COMPONENT] = ACTIONS(1999), - [anon_sym_Debugger] = ACTIONS(1963), - [anon_sym_debugger] = ACTIONS(1963), - [anon_sym_DEBUGGER] = ACTIONS(1963), - [anon_sym_Final] = ACTIONS(1963), - [anon_sym_final] = ACTIONS(1963), - [anon_sym_FINAL] = ACTIONS(1963), - [anon_sym_Function] = ACTIONS(2001), - [anon_sym_function] = ACTIONS(2001), - [anon_sym_FUNCTION] = ACTIONS(2001), - [anon_sym_Include] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_INCLUDE] = ACTIONS(1963), - [anon_sym_New] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_NEW] = ACTIONS(1977), - [anon_sym_Package] = ACTIONS(1963), - [anon_sym_package] = ACTIONS(1963), - [anon_sym_PACKAGE] = ACTIONS(1963), - [anon_sym_Private] = ACTIONS(1963), - [anon_sym_private] = ACTIONS(1963), - [anon_sym_PRIVATE] = ACTIONS(1963), - [anon_sym_Public] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_PUBLIC] = ACTIONS(1963), - [anon_sym_Remote] = ACTIONS(1963), - [anon_sym_remote] = ACTIONS(1963), - [anon_sym_REMOTE] = ACTIONS(1963), - [anon_sym_Static] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_STATIC] = ACTIONS(1963), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(415)] = { - [sym_catch_clause] = STATE(436), - [sym_finally_clause] = STATE(632), - [aux_sym_try_statement_repeat1] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_Query] = ACTIONS(2168), - [anon_sym_query] = ACTIONS(2168), - [anon_sym_QUERY] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [aux_sym_unary_operator_token1] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2168), - [aux_sym_number_token2] = ACTIONS(2166), - [anon_sym_This] = ACTIONS(2168), - [anon_sym_this] = ACTIONS(2168), - [anon_sym_THIS] = ACTIONS(2168), - [anon_sym_Super] = ACTIONS(2168), - [anon_sym_super] = ACTIONS(2168), - [anon_sym_SUPER] = ACTIONS(2168), - [anon_sym_True] = ACTIONS(2168), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_TRUE] = ACTIONS(2168), - [anon_sym_False] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_FALSE] = ACTIONS(2168), - [anon_sym_Null] = ACTIONS(2168), - [anon_sym_null] = ACTIONS(2168), - [anon_sym_NULL] = ACTIONS(2168), - [anon_sym_Undefined] = ACTIONS(2168), - [anon_sym_undefined] = ACTIONS(2168), - [anon_sym_UNDEFINED] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_POUND] = ACTIONS(2168), - [sym_hash_empty] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_QueryExecute] = ACTIONS(2168), - [anon_sym_queryexecute] = ACTIONS(2168), - [anon_sym_QUERYEXECUTE] = ACTIONS(2168), - [anon_sym_queryExecute] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2166), - [anon_sym_Abstract] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_ABSTRACT] = ACTIONS(2168), - [anon_sym_Break] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_BREAK] = ACTIONS(2168), - [anon_sym_Case] = ACTIONS(2168), - [anon_sym_case] = ACTIONS(2168), - [anon_sym_CASE] = ACTIONS(2168), - [anon_sym_Catch] = ACTIONS(2170), - [anon_sym_catch] = ACTIONS(2170), - [anon_sym_CATCH] = ACTIONS(2170), - [anon_sym_Component] = ACTIONS(2168), - [anon_sym_component] = ACTIONS(2168), - [anon_sym_COMPONENT] = ACTIONS(2168), - [anon_sym_Continue] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_CONTINUE] = ACTIONS(2168), - [anon_sym_Debugger] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_DEBUGGER] = ACTIONS(2168), - [anon_sym_Default] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_DEFAULT] = ACTIONS(2168), - [anon_sym_Do] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_DO] = ACTIONS(2168), - [anon_sym_Else] = ACTIONS(2168), - [anon_sym_else] = ACTIONS(2168), - [anon_sym_ELSE] = ACTIONS(2168), - [anon_sym_Final] = ACTIONS(2168), - [anon_sym_final] = ACTIONS(2168), - [anon_sym_FINAL] = ACTIONS(2168), - [anon_sym_Finally] = ACTIONS(2172), - [anon_sym_finally] = ACTIONS(2172), - [anon_sym_FINALLY] = ACTIONS(2172), - [anon_sym_For] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_FOR] = ACTIONS(2168), - [anon_sym_Function] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_FUNCTION] = ACTIONS(2168), - [anon_sym_If] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_IF] = ACTIONS(2168), - [anon_sym_Import] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_IMPORT] = ACTIONS(2168), - [anon_sym_Include] = ACTIONS(2168), - [anon_sym_include] = ACTIONS(2168), - [anon_sym_INCLUDE] = ACTIONS(2168), - [anon_sym_Interface] = ACTIONS(2168), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_INTERFACE] = ACTIONS(2168), - [anon_sym_New] = ACTIONS(2168), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_NEW] = ACTIONS(2168), - [anon_sym_Package] = ACTIONS(2168), - [anon_sym_package] = ACTIONS(2168), - [anon_sym_PACKAGE] = ACTIONS(2168), - [anon_sym_Private] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_PRIVATE] = ACTIONS(2168), - [anon_sym_Property] = ACTIONS(2168), - [anon_sym_property] = ACTIONS(2168), - [anon_sym_PROPERTY] = ACTIONS(2168), - [anon_sym_Public] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_PUBLIC] = ACTIONS(2168), - [anon_sym_Remote] = ACTIONS(2168), - [anon_sym_remote] = ACTIONS(2168), - [anon_sym_REMOTE] = ACTIONS(2168), - [anon_sym_Return] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_RETURN] = ACTIONS(2168), - [anon_sym_Static] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_STATIC] = ACTIONS(2168), - [anon_sym_Switch] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_SWITCH] = ACTIONS(2168), - [anon_sym_Throw] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_THROW] = ACTIONS(2168), - [anon_sym_Try] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_TRY] = ACTIONS(2168), - [anon_sym_Var] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_VAR] = ACTIONS(2168), - [anon_sym_While] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_WHILE] = ACTIONS(2168), - [anon_sym_With] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_WITH] = ACTIONS(2168), - [sym_cf_comment] = ACTIONS(2166), - [sym__java_block_open] = ACTIONS(2166), - [sym__static_type_prefix] = ACTIONS(2166), - }, - [STATE(416)] = { - [sym_catch_clause] = STATE(436), - [sym_finally_clause] = STATE(619), - [aux_sym_try_statement_repeat1] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_Query] = ACTIONS(2176), - [anon_sym_query] = ACTIONS(2176), - [anon_sym_QUERY] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [aux_sym_unary_operator_token1] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2174), - [anon_sym_DQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2176), - [aux_sym_number_token2] = ACTIONS(2174), - [anon_sym_This] = ACTIONS(2176), - [anon_sym_this] = ACTIONS(2176), - [anon_sym_THIS] = ACTIONS(2176), - [anon_sym_Super] = ACTIONS(2176), - [anon_sym_super] = ACTIONS(2176), - [anon_sym_SUPER] = ACTIONS(2176), - [anon_sym_True] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_TRUE] = ACTIONS(2176), - [anon_sym_False] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [anon_sym_FALSE] = ACTIONS(2176), - [anon_sym_Null] = ACTIONS(2176), - [anon_sym_null] = ACTIONS(2176), - [anon_sym_NULL] = ACTIONS(2176), - [anon_sym_Undefined] = ACTIONS(2176), - [anon_sym_undefined] = ACTIONS(2176), - [anon_sym_UNDEFINED] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(2176), - [sym_hash_empty] = ACTIONS(2174), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_QueryExecute] = ACTIONS(2176), - [anon_sym_queryexecute] = ACTIONS(2176), - [anon_sym_QUERYEXECUTE] = ACTIONS(2176), - [anon_sym_queryExecute] = ACTIONS(2176), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2174), - [anon_sym_Abstract] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_ABSTRACT] = ACTIONS(2176), - [anon_sym_Break] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_BREAK] = ACTIONS(2176), - [anon_sym_Case] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_CASE] = ACTIONS(2176), - [anon_sym_Catch] = ACTIONS(2170), - [anon_sym_catch] = ACTIONS(2170), - [anon_sym_CATCH] = ACTIONS(2170), - [anon_sym_Component] = ACTIONS(2176), - [anon_sym_component] = ACTIONS(2176), - [anon_sym_COMPONENT] = ACTIONS(2176), - [anon_sym_Continue] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_CONTINUE] = ACTIONS(2176), - [anon_sym_Debugger] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_DEBUGGER] = ACTIONS(2176), - [anon_sym_Default] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_DEFAULT] = ACTIONS(2176), - [anon_sym_Do] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_DO] = ACTIONS(2176), - [anon_sym_Else] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_ELSE] = ACTIONS(2176), - [anon_sym_Final] = ACTIONS(2176), - [anon_sym_final] = ACTIONS(2176), - [anon_sym_FINAL] = ACTIONS(2176), - [anon_sym_Finally] = ACTIONS(2172), - [anon_sym_finally] = ACTIONS(2172), - [anon_sym_FINALLY] = ACTIONS(2172), - [anon_sym_For] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_FOR] = ACTIONS(2176), - [anon_sym_Function] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_FUNCTION] = ACTIONS(2176), - [anon_sym_If] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_IF] = ACTIONS(2176), - [anon_sym_Import] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_IMPORT] = ACTIONS(2176), - [anon_sym_Include] = ACTIONS(2176), - [anon_sym_include] = ACTIONS(2176), - [anon_sym_INCLUDE] = ACTIONS(2176), - [anon_sym_Interface] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_INTERFACE] = ACTIONS(2176), - [anon_sym_New] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_NEW] = ACTIONS(2176), - [anon_sym_Package] = ACTIONS(2176), - [anon_sym_package] = ACTIONS(2176), - [anon_sym_PACKAGE] = ACTIONS(2176), - [anon_sym_Private] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_PRIVATE] = ACTIONS(2176), - [anon_sym_Property] = ACTIONS(2176), - [anon_sym_property] = ACTIONS(2176), - [anon_sym_PROPERTY] = ACTIONS(2176), - [anon_sym_Public] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_PUBLIC] = ACTIONS(2176), - [anon_sym_Remote] = ACTIONS(2176), - [anon_sym_remote] = ACTIONS(2176), - [anon_sym_REMOTE] = ACTIONS(2176), - [anon_sym_Return] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_RETURN] = ACTIONS(2176), - [anon_sym_Static] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_STATIC] = ACTIONS(2176), - [anon_sym_Switch] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_SWITCH] = ACTIONS(2176), - [anon_sym_Throw] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_THROW] = ACTIONS(2176), - [anon_sym_Try] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_TRY] = ACTIONS(2176), - [anon_sym_Var] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_VAR] = ACTIONS(2176), - [anon_sym_While] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_WHILE] = ACTIONS(2176), - [anon_sym_With] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_WITH] = ACTIONS(2176), - [sym_cf_comment] = ACTIONS(2174), - [sym__java_block_open] = ACTIONS(2174), - [sym__static_type_prefix] = ACTIONS(2174), - }, - [STATE(417)] = { - [sym_catch_clause] = STATE(436), - [aux_sym_try_statement_repeat1] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_Query] = ACTIONS(2180), - [anon_sym_query] = ACTIONS(2180), - [anon_sym_QUERY] = ACTIONS(2180), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_SLASH] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [aux_sym_unary_operator_token1] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2180), - [aux_sym_number_token2] = ACTIONS(2178), - [anon_sym_This] = ACTIONS(2180), - [anon_sym_this] = ACTIONS(2180), - [anon_sym_THIS] = ACTIONS(2180), - [anon_sym_Super] = ACTIONS(2180), - [anon_sym_super] = ACTIONS(2180), - [anon_sym_SUPER] = ACTIONS(2180), - [anon_sym_True] = ACTIONS(2180), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_TRUE] = ACTIONS(2180), - [anon_sym_False] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [anon_sym_FALSE] = ACTIONS(2180), - [anon_sym_Null] = ACTIONS(2180), - [anon_sym_null] = ACTIONS(2180), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_Undefined] = ACTIONS(2180), - [anon_sym_undefined] = ACTIONS(2180), - [anon_sym_UNDEFINED] = ACTIONS(2180), - [anon_sym_get] = ACTIONS(2180), - [anon_sym_set] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2180), - [sym_hash_empty] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2180), - [anon_sym_QueryExecute] = ACTIONS(2180), - [anon_sym_queryexecute] = ACTIONS(2180), - [anon_sym_QUERYEXECUTE] = ACTIONS(2180), - [anon_sym_queryExecute] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2178), - [anon_sym_Abstract] = ACTIONS(2180), - [anon_sym_abstract] = ACTIONS(2180), - [anon_sym_ABSTRACT] = ACTIONS(2180), - [anon_sym_Break] = ACTIONS(2180), - [anon_sym_break] = ACTIONS(2180), - [anon_sym_BREAK] = ACTIONS(2180), - [anon_sym_Case] = ACTIONS(2180), - [anon_sym_case] = ACTIONS(2180), - [anon_sym_CASE] = ACTIONS(2180), - [anon_sym_Catch] = ACTIONS(2182), - [anon_sym_catch] = ACTIONS(2182), - [anon_sym_CATCH] = ACTIONS(2182), - [anon_sym_Component] = ACTIONS(2180), - [anon_sym_component] = ACTIONS(2180), - [anon_sym_COMPONENT] = ACTIONS(2180), - [anon_sym_Continue] = ACTIONS(2180), - [anon_sym_continue] = ACTIONS(2180), - [anon_sym_CONTINUE] = ACTIONS(2180), - [anon_sym_Debugger] = ACTIONS(2180), - [anon_sym_debugger] = ACTIONS(2180), - [anon_sym_DEBUGGER] = ACTIONS(2180), - [anon_sym_Default] = ACTIONS(2180), - [anon_sym_default] = ACTIONS(2180), - [anon_sym_DEFAULT] = ACTIONS(2180), - [anon_sym_Do] = ACTIONS(2180), - [anon_sym_do] = ACTIONS(2180), - [anon_sym_DO] = ACTIONS(2180), - [anon_sym_Else] = ACTIONS(2180), - [anon_sym_else] = ACTIONS(2180), - [anon_sym_ELSE] = ACTIONS(2180), - [anon_sym_Final] = ACTIONS(2180), - [anon_sym_final] = ACTIONS(2180), - [anon_sym_FINAL] = ACTIONS(2180), - [anon_sym_Finally] = ACTIONS(2180), - [anon_sym_finally] = ACTIONS(2180), - [anon_sym_FINALLY] = ACTIONS(2180), - [anon_sym_For] = ACTIONS(2180), - [anon_sym_for] = ACTIONS(2180), - [anon_sym_FOR] = ACTIONS(2180), - [anon_sym_Function] = ACTIONS(2180), - [anon_sym_function] = ACTIONS(2180), - [anon_sym_FUNCTION] = ACTIONS(2180), - [anon_sym_If] = ACTIONS(2180), - [anon_sym_if] = ACTIONS(2180), - [anon_sym_IF] = ACTIONS(2180), - [anon_sym_Import] = ACTIONS(2180), - [anon_sym_import] = ACTIONS(2180), - [anon_sym_IMPORT] = ACTIONS(2180), - [anon_sym_Include] = ACTIONS(2180), - [anon_sym_include] = ACTIONS(2180), - [anon_sym_INCLUDE] = ACTIONS(2180), - [anon_sym_Interface] = ACTIONS(2180), - [anon_sym_interface] = ACTIONS(2180), - [anon_sym_INTERFACE] = ACTIONS(2180), - [anon_sym_New] = ACTIONS(2180), - [anon_sym_new] = ACTIONS(2180), - [anon_sym_NEW] = ACTIONS(2180), - [anon_sym_Package] = ACTIONS(2180), - [anon_sym_package] = ACTIONS(2180), - [anon_sym_PACKAGE] = ACTIONS(2180), - [anon_sym_Private] = ACTIONS(2180), - [anon_sym_private] = ACTIONS(2180), - [anon_sym_PRIVATE] = ACTIONS(2180), - [anon_sym_Property] = ACTIONS(2180), - [anon_sym_property] = ACTIONS(2180), - [anon_sym_PROPERTY] = ACTIONS(2180), - [anon_sym_Public] = ACTIONS(2180), - [anon_sym_public] = ACTIONS(2180), - [anon_sym_PUBLIC] = ACTIONS(2180), - [anon_sym_Remote] = ACTIONS(2180), - [anon_sym_remote] = ACTIONS(2180), - [anon_sym_REMOTE] = ACTIONS(2180), - [anon_sym_Return] = ACTIONS(2180), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_RETURN] = ACTIONS(2180), - [anon_sym_Static] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_STATIC] = ACTIONS(2180), - [anon_sym_Switch] = ACTIONS(2180), - [anon_sym_switch] = ACTIONS(2180), - [anon_sym_SWITCH] = ACTIONS(2180), - [anon_sym_Throw] = ACTIONS(2180), - [anon_sym_throw] = ACTIONS(2180), - [anon_sym_THROW] = ACTIONS(2180), - [anon_sym_Try] = ACTIONS(2180), - [anon_sym_try] = ACTIONS(2180), - [anon_sym_TRY] = ACTIONS(2180), - [anon_sym_Var] = ACTIONS(2180), - [anon_sym_var] = ACTIONS(2180), - [anon_sym_VAR] = ACTIONS(2180), - [anon_sym_While] = ACTIONS(2180), - [anon_sym_while] = ACTIONS(2180), - [anon_sym_WHILE] = ACTIONS(2180), - [anon_sym_With] = ACTIONS(2180), - [anon_sym_with] = ACTIONS(2180), - [anon_sym_WITH] = ACTIONS(2180), - [sym_cf_comment] = ACTIONS(2178), - [sym__java_block_open] = ACTIONS(2178), - [sym__static_type_prefix] = ACTIONS(2178), - }, - [STATE(418)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1081), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Catch] = ACTIONS(1083), - [anon_sym_catch] = ACTIONS(1083), - [anon_sym_CATCH] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Else] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_ELSE] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_Finally] = ACTIONS(1083), - [anon_sym_finally] = ACTIONS(1083), - [anon_sym_FINALLY] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1091), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), - }, - [STATE(419)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Catch] = ACTIONS(1686), - [anon_sym_catch] = ACTIONS(1686), - [anon_sym_CATCH] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Else] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_ELSE] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_Finally] = ACTIONS(1686), - [anon_sym_finally] = ACTIONS(1686), - [anon_sym_FINALLY] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(2185), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), - }, - [STATE(420)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [sym_identifier] = ACTIONS(2145), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(2132), [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(2135), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2132), + [anon_sym_query] = ACTIONS(2132), + [anon_sym_QUERY] = ACTIONS(2132), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -109417,223 +108582,1320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2132), + [anon_sym_abstract] = ACTIONS(2132), + [anon_sym_ABSTRACT] = ACTIONS(2132), + [anon_sym_Component] = ACTIONS(2160), + [anon_sym_component] = ACTIONS(2160), + [anon_sym_COMPONENT] = ACTIONS(2160), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Default] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_DEFAULT] = ACTIONS(471), + [anon_sym_Final] = ACTIONS(2132), + [anon_sym_final] = ACTIONS(2132), + [anon_sym_FINAL] = ACTIONS(2132), + [anon_sym_Function] = ACTIONS(471), + [anon_sym_function] = ACTIONS(471), + [anon_sym_FUNCTION] = ACTIONS(471), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_Interface] = ACTIONS(476), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_INTERFACE] = ACTIONS(476), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2132), + [anon_sym_package] = ACTIONS(2132), + [anon_sym_PACKAGE] = ACTIONS(2132), + [anon_sym_Private] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_PRIVATE] = ACTIONS(2132), + [anon_sym_Public] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_PUBLIC] = ACTIONS(2132), + [anon_sym_Remote] = ACTIONS(2132), + [anon_sym_remote] = ACTIONS(2132), + [anon_sym_REMOTE] = ACTIONS(2132), + [anon_sym_Static] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_STATIC] = ACTIONS(2132), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, + [STATE(415)] = { + [sym_catch_clause] = STATE(432), + [sym_finally_clause] = STATE(661), + [aux_sym_try_statement_repeat1] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2162), + [anon_sym_Query] = ACTIONS(2164), + [anon_sym_query] = ACTIONS(2164), + [anon_sym_QUERY] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [aux_sym_unary_operator_token1] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2164), + [aux_sym_number_token2] = ACTIONS(2162), + [anon_sym_This] = ACTIONS(2164), + [anon_sym_this] = ACTIONS(2164), + [anon_sym_THIS] = ACTIONS(2164), + [anon_sym_Super] = ACTIONS(2164), + [anon_sym_super] = ACTIONS(2164), + [anon_sym_SUPER] = ACTIONS(2164), + [anon_sym_True] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2164), + [anon_sym_TRUE] = ACTIONS(2164), + [anon_sym_False] = ACTIONS(2164), + [anon_sym_false] = ACTIONS(2164), + [anon_sym_FALSE] = ACTIONS(2164), + [anon_sym_Null] = ACTIONS(2164), + [anon_sym_null] = ACTIONS(2164), + [anon_sym_NULL] = ACTIONS(2164), + [anon_sym_Undefined] = ACTIONS(2164), + [anon_sym_undefined] = ACTIONS(2164), + [anon_sym_UNDEFINED] = ACTIONS(2164), + [anon_sym_get] = ACTIONS(2164), + [anon_sym_set] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2164), + [sym_hash_empty] = ACTIONS(2162), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_QueryExecute] = ACTIONS(2164), + [anon_sym_queryexecute] = ACTIONS(2164), + [anon_sym_QUERYEXECUTE] = ACTIONS(2164), + [anon_sym_queryExecute] = ACTIONS(2164), + [anon_sym_BQUOTE] = ACTIONS(2164), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2162), + [anon_sym_Abstract] = ACTIONS(2164), + [anon_sym_abstract] = ACTIONS(2164), + [anon_sym_ABSTRACT] = ACTIONS(2164), + [anon_sym_Break] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_BREAK] = ACTIONS(2164), + [anon_sym_Case] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_CASE] = ACTIONS(2164), + [anon_sym_Catch] = ACTIONS(2166), + [anon_sym_catch] = ACTIONS(2166), + [anon_sym_CATCH] = ACTIONS(2166), + [anon_sym_Component] = ACTIONS(2164), + [anon_sym_component] = ACTIONS(2164), + [anon_sym_COMPONENT] = ACTIONS(2164), + [anon_sym_Continue] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_CONTINUE] = ACTIONS(2164), + [anon_sym_Debugger] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_DEBUGGER] = ACTIONS(2164), + [anon_sym_Default] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_DEFAULT] = ACTIONS(2164), + [anon_sym_Do] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_DO] = ACTIONS(2164), + [anon_sym_Else] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_ELSE] = ACTIONS(2164), + [anon_sym_Final] = ACTIONS(2164), + [anon_sym_final] = ACTIONS(2164), + [anon_sym_FINAL] = ACTIONS(2164), + [anon_sym_Finally] = ACTIONS(2168), + [anon_sym_finally] = ACTIONS(2168), + [anon_sym_FINALLY] = ACTIONS(2168), + [anon_sym_For] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_FOR] = ACTIONS(2164), + [anon_sym_Function] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_FUNCTION] = ACTIONS(2164), + [anon_sym_If] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_IF] = ACTIONS(2164), + [anon_sym_Import] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_IMPORT] = ACTIONS(2164), + [anon_sym_Include] = ACTIONS(2164), + [anon_sym_include] = ACTIONS(2164), + [anon_sym_INCLUDE] = ACTIONS(2164), + [anon_sym_Interface] = ACTIONS(2164), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_INTERFACE] = ACTIONS(2164), + [anon_sym_New] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_NEW] = ACTIONS(2164), + [anon_sym_Package] = ACTIONS(2164), + [anon_sym_package] = ACTIONS(2164), + [anon_sym_PACKAGE] = ACTIONS(2164), + [anon_sym_Private] = ACTIONS(2164), + [anon_sym_private] = ACTIONS(2164), + [anon_sym_PRIVATE] = ACTIONS(2164), + [anon_sym_Property] = ACTIONS(2164), + [anon_sym_property] = ACTIONS(2164), + [anon_sym_PROPERTY] = ACTIONS(2164), + [anon_sym_Public] = ACTIONS(2164), + [anon_sym_public] = ACTIONS(2164), + [anon_sym_PUBLIC] = ACTIONS(2164), + [anon_sym_Remote] = ACTIONS(2164), + [anon_sym_remote] = ACTIONS(2164), + [anon_sym_REMOTE] = ACTIONS(2164), + [anon_sym_Return] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_RETURN] = ACTIONS(2164), + [anon_sym_Static] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_STATIC] = ACTIONS(2164), + [anon_sym_Switch] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_SWITCH] = ACTIONS(2164), + [anon_sym_Throw] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_THROW] = ACTIONS(2164), + [anon_sym_Try] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_TRY] = ACTIONS(2164), + [anon_sym_Var] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_VAR] = ACTIONS(2164), + [anon_sym_While] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_WHILE] = ACTIONS(2164), + [anon_sym_With] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_WITH] = ACTIONS(2164), + [sym_cf_comment] = ACTIONS(2162), + [sym__java_block_open] = ACTIONS(2162), + [sym__static_type_prefix] = ACTIONS(2162), + }, + [STATE(416)] = { + [sym_catch_clause] = STATE(432), + [sym_finally_clause] = STATE(594), + [aux_sym_try_statement_repeat1] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_Query] = ACTIONS(2172), + [anon_sym_query] = ACTIONS(2172), + [anon_sym_QUERY] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [aux_sym_unary_operator_token1] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2172), + [aux_sym_number_token2] = ACTIONS(2170), + [anon_sym_This] = ACTIONS(2172), + [anon_sym_this] = ACTIONS(2172), + [anon_sym_THIS] = ACTIONS(2172), + [anon_sym_Super] = ACTIONS(2172), + [anon_sym_super] = ACTIONS(2172), + [anon_sym_SUPER] = ACTIONS(2172), + [anon_sym_True] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_TRUE] = ACTIONS(2172), + [anon_sym_False] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_FALSE] = ACTIONS(2172), + [anon_sym_Null] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2172), + [anon_sym_NULL] = ACTIONS(2172), + [anon_sym_Undefined] = ACTIONS(2172), + [anon_sym_undefined] = ACTIONS(2172), + [anon_sym_UNDEFINED] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [sym_hash_empty] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_QueryExecute] = ACTIONS(2172), + [anon_sym_queryexecute] = ACTIONS(2172), + [anon_sym_QUERYEXECUTE] = ACTIONS(2172), + [anon_sym_queryExecute] = ACTIONS(2172), + [anon_sym_BQUOTE] = ACTIONS(2172), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2170), + [anon_sym_Abstract] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_ABSTRACT] = ACTIONS(2172), + [anon_sym_Break] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_BREAK] = ACTIONS(2172), + [anon_sym_Case] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_CASE] = ACTIONS(2172), + [anon_sym_Catch] = ACTIONS(2166), + [anon_sym_catch] = ACTIONS(2166), + [anon_sym_CATCH] = ACTIONS(2166), + [anon_sym_Component] = ACTIONS(2172), + [anon_sym_component] = ACTIONS(2172), + [anon_sym_COMPONENT] = ACTIONS(2172), + [anon_sym_Continue] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_CONTINUE] = ACTIONS(2172), + [anon_sym_Debugger] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_DEBUGGER] = ACTIONS(2172), + [anon_sym_Default] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_DEFAULT] = ACTIONS(2172), + [anon_sym_Do] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_DO] = ACTIONS(2172), + [anon_sym_Else] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_ELSE] = ACTIONS(2172), + [anon_sym_Final] = ACTIONS(2172), + [anon_sym_final] = ACTIONS(2172), + [anon_sym_FINAL] = ACTIONS(2172), + [anon_sym_Finally] = ACTIONS(2168), + [anon_sym_finally] = ACTIONS(2168), + [anon_sym_FINALLY] = ACTIONS(2168), + [anon_sym_For] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_FOR] = ACTIONS(2172), + [anon_sym_Function] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_FUNCTION] = ACTIONS(2172), + [anon_sym_If] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_IF] = ACTIONS(2172), + [anon_sym_Import] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_IMPORT] = ACTIONS(2172), + [anon_sym_Include] = ACTIONS(2172), + [anon_sym_include] = ACTIONS(2172), + [anon_sym_INCLUDE] = ACTIONS(2172), + [anon_sym_Interface] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_INTERFACE] = ACTIONS(2172), + [anon_sym_New] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_NEW] = ACTIONS(2172), + [anon_sym_Package] = ACTIONS(2172), + [anon_sym_package] = ACTIONS(2172), + [anon_sym_PACKAGE] = ACTIONS(2172), + [anon_sym_Private] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_PRIVATE] = ACTIONS(2172), + [anon_sym_Property] = ACTIONS(2172), + [anon_sym_property] = ACTIONS(2172), + [anon_sym_PROPERTY] = ACTIONS(2172), + [anon_sym_Public] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_PUBLIC] = ACTIONS(2172), + [anon_sym_Remote] = ACTIONS(2172), + [anon_sym_remote] = ACTIONS(2172), + [anon_sym_REMOTE] = ACTIONS(2172), + [anon_sym_Return] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_RETURN] = ACTIONS(2172), + [anon_sym_Static] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_STATIC] = ACTIONS(2172), + [anon_sym_Switch] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_SWITCH] = ACTIONS(2172), + [anon_sym_Throw] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_THROW] = ACTIONS(2172), + [anon_sym_Try] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_TRY] = ACTIONS(2172), + [anon_sym_Var] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_VAR] = ACTIONS(2172), + [anon_sym_While] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_WHILE] = ACTIONS(2172), + [anon_sym_With] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_WITH] = ACTIONS(2172), + [sym_cf_comment] = ACTIONS(2170), + [sym__java_block_open] = ACTIONS(2170), + [sym__static_type_prefix] = ACTIONS(2170), + }, + [STATE(417)] = { + [sym_catch_clause] = STATE(432), + [aux_sym_try_statement_repeat1] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_Query] = ACTIONS(2176), + [anon_sym_query] = ACTIONS(2176), + [anon_sym_QUERY] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [aux_sym_unary_operator_token1] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2176), + [aux_sym_number_token2] = ACTIONS(2174), + [anon_sym_This] = ACTIONS(2176), + [anon_sym_this] = ACTIONS(2176), + [anon_sym_THIS] = ACTIONS(2176), + [anon_sym_Super] = ACTIONS(2176), + [anon_sym_super] = ACTIONS(2176), + [anon_sym_SUPER] = ACTIONS(2176), + [anon_sym_True] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_TRUE] = ACTIONS(2176), + [anon_sym_False] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [anon_sym_FALSE] = ACTIONS(2176), + [anon_sym_Null] = ACTIONS(2176), + [anon_sym_null] = ACTIONS(2176), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_Undefined] = ACTIONS(2176), + [anon_sym_undefined] = ACTIONS(2176), + [anon_sym_UNDEFINED] = ACTIONS(2176), + [anon_sym_get] = ACTIONS(2176), + [anon_sym_set] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(2176), + [sym_hash_empty] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_QueryExecute] = ACTIONS(2176), + [anon_sym_queryexecute] = ACTIONS(2176), + [anon_sym_QUERYEXECUTE] = ACTIONS(2176), + [anon_sym_queryExecute] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2174), + [anon_sym_Abstract] = ACTIONS(2176), + [anon_sym_abstract] = ACTIONS(2176), + [anon_sym_ABSTRACT] = ACTIONS(2176), + [anon_sym_Break] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_BREAK] = ACTIONS(2176), + [anon_sym_Case] = ACTIONS(2176), + [anon_sym_case] = ACTIONS(2176), + [anon_sym_CASE] = ACTIONS(2176), + [anon_sym_Catch] = ACTIONS(2178), + [anon_sym_catch] = ACTIONS(2178), + [anon_sym_CATCH] = ACTIONS(2178), + [anon_sym_Component] = ACTIONS(2176), + [anon_sym_component] = ACTIONS(2176), + [anon_sym_COMPONENT] = ACTIONS(2176), + [anon_sym_Continue] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_CONTINUE] = ACTIONS(2176), + [anon_sym_Debugger] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_DEBUGGER] = ACTIONS(2176), + [anon_sym_Default] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_DEFAULT] = ACTIONS(2176), + [anon_sym_Do] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_DO] = ACTIONS(2176), + [anon_sym_Else] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_ELSE] = ACTIONS(2176), + [anon_sym_Final] = ACTIONS(2176), + [anon_sym_final] = ACTIONS(2176), + [anon_sym_FINAL] = ACTIONS(2176), + [anon_sym_Finally] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_FINALLY] = ACTIONS(2176), + [anon_sym_For] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_FOR] = ACTIONS(2176), + [anon_sym_Function] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), + [anon_sym_FUNCTION] = ACTIONS(2176), + [anon_sym_If] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_IF] = ACTIONS(2176), + [anon_sym_Import] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_IMPORT] = ACTIONS(2176), + [anon_sym_Include] = ACTIONS(2176), + [anon_sym_include] = ACTIONS(2176), + [anon_sym_INCLUDE] = ACTIONS(2176), + [anon_sym_Interface] = ACTIONS(2176), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_INTERFACE] = ACTIONS(2176), + [anon_sym_New] = ACTIONS(2176), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_NEW] = ACTIONS(2176), + [anon_sym_Package] = ACTIONS(2176), + [anon_sym_package] = ACTIONS(2176), + [anon_sym_PACKAGE] = ACTIONS(2176), + [anon_sym_Private] = ACTIONS(2176), + [anon_sym_private] = ACTIONS(2176), + [anon_sym_PRIVATE] = ACTIONS(2176), + [anon_sym_Property] = ACTIONS(2176), + [anon_sym_property] = ACTIONS(2176), + [anon_sym_PROPERTY] = ACTIONS(2176), + [anon_sym_Public] = ACTIONS(2176), + [anon_sym_public] = ACTIONS(2176), + [anon_sym_PUBLIC] = ACTIONS(2176), + [anon_sym_Remote] = ACTIONS(2176), + [anon_sym_remote] = ACTIONS(2176), + [anon_sym_REMOTE] = ACTIONS(2176), + [anon_sym_Return] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_RETURN] = ACTIONS(2176), + [anon_sym_Static] = ACTIONS(2176), + [anon_sym_static] = ACTIONS(2176), + [anon_sym_STATIC] = ACTIONS(2176), + [anon_sym_Switch] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_SWITCH] = ACTIONS(2176), + [anon_sym_Throw] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_THROW] = ACTIONS(2176), + [anon_sym_Try] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_TRY] = ACTIONS(2176), + [anon_sym_Var] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_VAR] = ACTIONS(2176), + [anon_sym_While] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_WHILE] = ACTIONS(2176), + [anon_sym_With] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_WITH] = ACTIONS(2176), + [sym_cf_comment] = ACTIONS(2174), + [sym__java_block_open] = ACTIONS(2174), + [sym__static_type_prefix] = ACTIONS(2174), + }, + [STATE(418)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Catch] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1590), + [anon_sym_CATCH] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Else] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_ELSE] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_Finally] = ACTIONS(1590), + [anon_sym_finally] = ACTIONS(1590), + [anon_sym_FINALLY] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(2181), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(419)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1083), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Catch] = ACTIONS(1085), + [anon_sym_catch] = ACTIONS(1085), + [anon_sym_CATCH] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Else] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_ELSE] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_Finally] = ACTIONS(1085), + [anon_sym_finally] = ACTIONS(1085), + [anon_sym_FINALLY] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1093), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(420)] = { + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_Query] = ACTIONS(2185), + [anon_sym_query] = ACTIONS(2185), + [anon_sym_QUERY] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [aux_sym_unary_operator_token1] = ACTIONS(2185), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2185), + [aux_sym_number_token2] = ACTIONS(2183), + [anon_sym_This] = ACTIONS(2185), + [anon_sym_this] = ACTIONS(2185), + [anon_sym_THIS] = ACTIONS(2185), + [anon_sym_Super] = ACTIONS(2185), + [anon_sym_super] = ACTIONS(2185), + [anon_sym_SUPER] = ACTIONS(2185), + [anon_sym_True] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_TRUE] = ACTIONS(2185), + [anon_sym_False] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_FALSE] = ACTIONS(2185), + [anon_sym_Null] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_NULL] = ACTIONS(2185), + [anon_sym_Undefined] = ACTIONS(2185), + [anon_sym_undefined] = ACTIONS(2185), + [anon_sym_UNDEFINED] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(2185), + [anon_sym_set] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [sym_hash_empty] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_QueryExecute] = ACTIONS(2185), + [anon_sym_queryexecute] = ACTIONS(2185), + [anon_sym_QUERYEXECUTE] = ACTIONS(2185), + [anon_sym_queryExecute] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2183), + [anon_sym_Abstract] = ACTIONS(2185), + [anon_sym_abstract] = ACTIONS(2185), + [anon_sym_ABSTRACT] = ACTIONS(2185), + [anon_sym_Break] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_BREAK] = ACTIONS(2185), + [anon_sym_Case] = ACTIONS(2185), + [anon_sym_case] = ACTIONS(2185), + [anon_sym_CASE] = ACTIONS(2185), + [anon_sym_Catch] = ACTIONS(2185), + [anon_sym_catch] = ACTIONS(2185), + [anon_sym_CATCH] = ACTIONS(2185), + [anon_sym_Component] = ACTIONS(2185), + [anon_sym_component] = ACTIONS(2185), + [anon_sym_COMPONENT] = ACTIONS(2185), + [anon_sym_Continue] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_CONTINUE] = ACTIONS(2185), + [anon_sym_Debugger] = ACTIONS(2185), + [anon_sym_debugger] = ACTIONS(2185), + [anon_sym_DEBUGGER] = ACTIONS(2185), + [anon_sym_Default] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_DEFAULT] = ACTIONS(2185), + [anon_sym_Do] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_DO] = ACTIONS(2185), + [anon_sym_Else] = ACTIONS(2185), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_ELSE] = ACTIONS(2185), + [anon_sym_Final] = ACTIONS(2185), + [anon_sym_final] = ACTIONS(2185), + [anon_sym_FINAL] = ACTIONS(2185), + [anon_sym_Finally] = ACTIONS(2185), + [anon_sym_finally] = ACTIONS(2185), + [anon_sym_FINALLY] = ACTIONS(2185), + [anon_sym_For] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_FOR] = ACTIONS(2185), + [anon_sym_Function] = ACTIONS(2185), + [anon_sym_function] = ACTIONS(2185), + [anon_sym_FUNCTION] = ACTIONS(2185), + [anon_sym_If] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_IF] = ACTIONS(2185), + [anon_sym_Import] = ACTIONS(2185), + [anon_sym_import] = ACTIONS(2185), + [anon_sym_IMPORT] = ACTIONS(2185), + [anon_sym_Include] = ACTIONS(2185), + [anon_sym_include] = ACTIONS(2185), + [anon_sym_INCLUDE] = ACTIONS(2185), + [anon_sym_Interface] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_INTERFACE] = ACTIONS(2185), + [anon_sym_New] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(2185), + [anon_sym_NEW] = ACTIONS(2185), + [anon_sym_Package] = ACTIONS(2185), + [anon_sym_package] = ACTIONS(2185), + [anon_sym_PACKAGE] = ACTIONS(2185), + [anon_sym_Private] = ACTIONS(2185), + [anon_sym_private] = ACTIONS(2185), + [anon_sym_PRIVATE] = ACTIONS(2185), + [anon_sym_Property] = ACTIONS(2185), + [anon_sym_property] = ACTIONS(2185), + [anon_sym_PROPERTY] = ACTIONS(2185), + [anon_sym_Public] = ACTIONS(2185), + [anon_sym_public] = ACTIONS(2185), + [anon_sym_PUBLIC] = ACTIONS(2185), + [anon_sym_Remote] = ACTIONS(2185), + [anon_sym_remote] = ACTIONS(2185), + [anon_sym_REMOTE] = ACTIONS(2185), + [anon_sym_Return] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_RETURN] = ACTIONS(2185), + [anon_sym_Static] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_STATIC] = ACTIONS(2185), + [anon_sym_Switch] = ACTIONS(2185), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_SWITCH] = ACTIONS(2185), + [anon_sym_Throw] = ACTIONS(2185), + [anon_sym_throw] = ACTIONS(2185), + [anon_sym_THROW] = ACTIONS(2185), + [anon_sym_Try] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_TRY] = ACTIONS(2185), + [anon_sym_Var] = ACTIONS(2185), + [anon_sym_var] = ACTIONS(2185), + [anon_sym_VAR] = ACTIONS(2185), + [anon_sym_While] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_WHILE] = ACTIONS(2185), + [anon_sym_With] = ACTIONS(2185), + [anon_sym_with] = ACTIONS(2185), + [anon_sym_WITH] = ACTIONS(2185), + [sym_cf_comment] = ACTIONS(2183), + [sym__java_block_open] = ACTIONS(2183), + [sym__static_type_prefix] = ACTIONS(2183), + }, [STATE(421)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Catch] = ACTIONS(1686), - [anon_sym_catch] = ACTIONS(1686), - [anon_sym_CATCH] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Else] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_ELSE] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_Finally] = ACTIONS(1686), - [anon_sym_finally] = ACTIONS(1686), - [anon_sym_FINALLY] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(2141), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), }, [STATE(422)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(2141), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(423)] = { [ts_builtin_sym_end] = ACTIONS(2187), [sym_identifier] = ACTIONS(2189), [anon_sym_LBRACE] = ACTIONS(2187), @@ -109787,160 +110049,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2187), [sym__static_type_prefix] = ACTIONS(2187), }, - [STATE(423)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, [STATE(424)] = { [ts_builtin_sym_end] = ACTIONS(2191), [sym_identifier] = ACTIONS(2193), @@ -110096,29 +110204,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(2191), }, [STATE(425)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [sym_identifier] = ACTIONS(2145), + [sym_catch_clause] = STATE(485), + [sym_finally_clause] = STATE(846), + [aux_sym_try_statement_repeat1] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2162), + [anon_sym_Query] = ACTIONS(2164), + [anon_sym_query] = ACTIONS(2164), + [anon_sym_QUERY] = ACTIONS(2164), + [anon_sym_PLUS] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2162), + [aux_sym_unary_operator_token1] = ACTIONS(2164), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2164), + [aux_sym_number_token2] = ACTIONS(2162), + [anon_sym_This] = ACTIONS(2164), + [anon_sym_this] = ACTIONS(2164), + [anon_sym_THIS] = ACTIONS(2164), + [anon_sym_Super] = ACTIONS(2164), + [anon_sym_super] = ACTIONS(2164), + [anon_sym_SUPER] = ACTIONS(2164), + [anon_sym_True] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2164), + [anon_sym_TRUE] = ACTIONS(2164), + [anon_sym_False] = ACTIONS(2164), + [anon_sym_false] = ACTIONS(2164), + [anon_sym_FALSE] = ACTIONS(2164), + [anon_sym_Null] = ACTIONS(2164), + [anon_sym_null] = ACTIONS(2164), + [anon_sym_NULL] = ACTIONS(2164), + [anon_sym_Undefined] = ACTIONS(2164), + [anon_sym_undefined] = ACTIONS(2164), + [anon_sym_UNDEFINED] = ACTIONS(2164), + [anon_sym_get] = ACTIONS(2164), + [anon_sym_set] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2164), + [sym_hash_empty] = ACTIONS(2162), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_QueryExecute] = ACTIONS(2164), + [anon_sym_queryexecute] = ACTIONS(2164), + [anon_sym_QUERYEXECUTE] = ACTIONS(2164), + [anon_sym_queryExecute] = ACTIONS(2164), + [anon_sym_BQUOTE] = ACTIONS(2164), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2162), + [anon_sym_Abstract] = ACTIONS(2164), + [anon_sym_abstract] = ACTIONS(2164), + [anon_sym_ABSTRACT] = ACTIONS(2164), + [anon_sym_Break] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_BREAK] = ACTIONS(2164), + [anon_sym_Case] = ACTIONS(2164), + [anon_sym_case] = ACTIONS(2164), + [anon_sym_CASE] = ACTIONS(2164), + [anon_sym_Catch] = ACTIONS(2195), + [anon_sym_catch] = ACTIONS(2195), + [anon_sym_CATCH] = ACTIONS(2195), + [anon_sym_Component] = ACTIONS(2164), + [anon_sym_component] = ACTIONS(2164), + [anon_sym_COMPONENT] = ACTIONS(2164), + [anon_sym_Continue] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_CONTINUE] = ACTIONS(2164), + [anon_sym_Debugger] = ACTIONS(2164), + [anon_sym_debugger] = ACTIONS(2164), + [anon_sym_DEBUGGER] = ACTIONS(2164), + [anon_sym_Default] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_DEFAULT] = ACTIONS(2164), + [anon_sym_Do] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_DO] = ACTIONS(2164), + [anon_sym_Final] = ACTIONS(2164), + [anon_sym_final] = ACTIONS(2164), + [anon_sym_FINAL] = ACTIONS(2164), + [anon_sym_Finally] = ACTIONS(2197), + [anon_sym_finally] = ACTIONS(2197), + [anon_sym_FINALLY] = ACTIONS(2197), + [anon_sym_For] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_FOR] = ACTIONS(2164), + [anon_sym_Function] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(2164), + [anon_sym_FUNCTION] = ACTIONS(2164), + [anon_sym_If] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_IF] = ACTIONS(2164), + [anon_sym_Import] = ACTIONS(2164), + [anon_sym_import] = ACTIONS(2164), + [anon_sym_IMPORT] = ACTIONS(2164), + [anon_sym_Include] = ACTIONS(2164), + [anon_sym_include] = ACTIONS(2164), + [anon_sym_INCLUDE] = ACTIONS(2164), + [anon_sym_Interface] = ACTIONS(2164), + [anon_sym_interface] = ACTIONS(2164), + [anon_sym_INTERFACE] = ACTIONS(2164), + [anon_sym_New] = ACTIONS(2164), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_NEW] = ACTIONS(2164), + [anon_sym_Package] = ACTIONS(2164), + [anon_sym_package] = ACTIONS(2164), + [anon_sym_PACKAGE] = ACTIONS(2164), + [anon_sym_Private] = ACTIONS(2164), + [anon_sym_private] = ACTIONS(2164), + [anon_sym_PRIVATE] = ACTIONS(2164), + [anon_sym_Property] = ACTIONS(2164), + [anon_sym_property] = ACTIONS(2164), + [anon_sym_PROPERTY] = ACTIONS(2164), + [anon_sym_Public] = ACTIONS(2164), + [anon_sym_public] = ACTIONS(2164), + [anon_sym_PUBLIC] = ACTIONS(2164), + [anon_sym_Remote] = ACTIONS(2164), + [anon_sym_remote] = ACTIONS(2164), + [anon_sym_REMOTE] = ACTIONS(2164), + [anon_sym_Return] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_RETURN] = ACTIONS(2164), + [anon_sym_Static] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_STATIC] = ACTIONS(2164), + [anon_sym_Switch] = ACTIONS(2164), + [anon_sym_switch] = ACTIONS(2164), + [anon_sym_SWITCH] = ACTIONS(2164), + [anon_sym_Throw] = ACTIONS(2164), + [anon_sym_throw] = ACTIONS(2164), + [anon_sym_THROW] = ACTIONS(2164), + [anon_sym_Try] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_TRY] = ACTIONS(2164), + [anon_sym_Var] = ACTIONS(2164), + [anon_sym_var] = ACTIONS(2164), + [anon_sym_VAR] = ACTIONS(2164), + [anon_sym_While] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_WHILE] = ACTIONS(2164), + [anon_sym_With] = ACTIONS(2164), + [anon_sym_with] = ACTIONS(2164), + [anon_sym_WITH] = ACTIONS(2164), + [sym_cf_comment] = ACTIONS(2162), + [sym__java_block_open] = ACTIONS(2162), + [sym__static_type_prefix] = ACTIONS(2162), + }, + [STATE(426)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(2141), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -110187,92 +110449,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(426)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [sym_identifier] = ACTIONS(2145), + [STATE(427)] = { + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_Query] = ACTIONS(2201), + [anon_sym_query] = ACTIONS(2201), + [anon_sym_QUERY] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [aux_sym_unary_operator_token1] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2201), + [aux_sym_number_token2] = ACTIONS(2199), + [anon_sym_This] = ACTIONS(2201), + [anon_sym_this] = ACTIONS(2201), + [anon_sym_THIS] = ACTIONS(2201), + [anon_sym_Super] = ACTIONS(2201), + [anon_sym_super] = ACTIONS(2201), + [anon_sym_SUPER] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [anon_sym_Undefined] = ACTIONS(2201), + [anon_sym_undefined] = ACTIONS(2201), + [anon_sym_UNDEFINED] = ACTIONS(2201), + [anon_sym_get] = ACTIONS(2201), + [anon_sym_set] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [sym_hash_empty] = ACTIONS(2199), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_QueryExecute] = ACTIONS(2201), + [anon_sym_queryexecute] = ACTIONS(2201), + [anon_sym_QUERYEXECUTE] = ACTIONS(2201), + [anon_sym_queryExecute] = ACTIONS(2201), + [anon_sym_BQUOTE] = ACTIONS(2201), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2199), + [anon_sym_Abstract] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_ABSTRACT] = ACTIONS(2201), + [anon_sym_Break] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_BREAK] = ACTIONS(2201), + [anon_sym_Case] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(2201), + [anon_sym_CASE] = ACTIONS(2201), + [anon_sym_Catch] = ACTIONS(2201), + [anon_sym_catch] = ACTIONS(2201), + [anon_sym_CATCH] = ACTIONS(2201), + [anon_sym_Component] = ACTIONS(2201), + [anon_sym_component] = ACTIONS(2201), + [anon_sym_COMPONENT] = ACTIONS(2201), + [anon_sym_Continue] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_CONTINUE] = ACTIONS(2201), + [anon_sym_Debugger] = ACTIONS(2201), + [anon_sym_debugger] = ACTIONS(2201), + [anon_sym_DEBUGGER] = ACTIONS(2201), + [anon_sym_Default] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_DEFAULT] = ACTIONS(2201), + [anon_sym_Do] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_DO] = ACTIONS(2201), + [anon_sym_Else] = ACTIONS(2201), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_ELSE] = ACTIONS(2201), + [anon_sym_Final] = ACTIONS(2201), + [anon_sym_final] = ACTIONS(2201), + [anon_sym_FINAL] = ACTIONS(2201), + [anon_sym_Finally] = ACTIONS(2201), + [anon_sym_finally] = ACTIONS(2201), + [anon_sym_FINALLY] = ACTIONS(2201), + [anon_sym_For] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_FOR] = ACTIONS(2201), + [anon_sym_Function] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_FUNCTION] = ACTIONS(2201), + [anon_sym_If] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_IF] = ACTIONS(2201), + [anon_sym_Import] = ACTIONS(2201), + [anon_sym_import] = ACTIONS(2201), + [anon_sym_IMPORT] = ACTIONS(2201), + [anon_sym_Include] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_INCLUDE] = ACTIONS(2201), + [anon_sym_Interface] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_INTERFACE] = ACTIONS(2201), + [anon_sym_New] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_NEW] = ACTIONS(2201), + [anon_sym_Package] = ACTIONS(2201), + [anon_sym_package] = ACTIONS(2201), + [anon_sym_PACKAGE] = ACTIONS(2201), + [anon_sym_Private] = ACTIONS(2201), + [anon_sym_private] = ACTIONS(2201), + [anon_sym_PRIVATE] = ACTIONS(2201), + [anon_sym_Property] = ACTIONS(2201), + [anon_sym_property] = ACTIONS(2201), + [anon_sym_PROPERTY] = ACTIONS(2201), + [anon_sym_Public] = ACTIONS(2201), + [anon_sym_public] = ACTIONS(2201), + [anon_sym_PUBLIC] = ACTIONS(2201), + [anon_sym_Remote] = ACTIONS(2201), + [anon_sym_remote] = ACTIONS(2201), + [anon_sym_REMOTE] = ACTIONS(2201), + [anon_sym_Return] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_RETURN] = ACTIONS(2201), + [anon_sym_Static] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_STATIC] = ACTIONS(2201), + [anon_sym_Switch] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_SWITCH] = ACTIONS(2201), + [anon_sym_Throw] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_THROW] = ACTIONS(2201), + [anon_sym_Try] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_TRY] = ACTIONS(2201), + [anon_sym_Var] = ACTIONS(2201), + [anon_sym_var] = ACTIONS(2201), + [anon_sym_VAR] = ACTIONS(2201), + [anon_sym_While] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_WHILE] = ACTIONS(2201), + [anon_sym_With] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2201), + [anon_sym_WITH] = ACTIONS(2201), + [sym_cf_comment] = ACTIONS(2199), + [sym__java_block_open] = ACTIONS(2199), + [sym__static_type_prefix] = ACTIONS(2199), + }, + [STATE(428)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -110341,92 +110757,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(427)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(2145), + [STATE(429)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -110495,246 +110911,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(428)] = { - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_Query] = ACTIONS(2197), - [anon_sym_query] = ACTIONS(2197), - [anon_sym_QUERY] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [aux_sym_unary_operator_token1] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2197), - [aux_sym_number_token2] = ACTIONS(2195), - [anon_sym_This] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(2197), - [anon_sym_THIS] = ACTIONS(2197), - [anon_sym_Super] = ACTIONS(2197), - [anon_sym_super] = ACTIONS(2197), - [anon_sym_SUPER] = ACTIONS(2197), - [anon_sym_True] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_TRUE] = ACTIONS(2197), - [anon_sym_False] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_FALSE] = ACTIONS(2197), - [anon_sym_Null] = ACTIONS(2197), - [anon_sym_null] = ACTIONS(2197), - [anon_sym_NULL] = ACTIONS(2197), - [anon_sym_Undefined] = ACTIONS(2197), - [anon_sym_undefined] = ACTIONS(2197), - [anon_sym_UNDEFINED] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2197), - [sym_hash_empty] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_QueryExecute] = ACTIONS(2197), - [anon_sym_queryexecute] = ACTIONS(2197), - [anon_sym_QUERYEXECUTE] = ACTIONS(2197), - [anon_sym_queryExecute] = ACTIONS(2197), - [anon_sym_BQUOTE] = ACTIONS(2197), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2195), - [anon_sym_Abstract] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_ABSTRACT] = ACTIONS(2197), - [anon_sym_Break] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_BREAK] = ACTIONS(2197), - [anon_sym_Case] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_CASE] = ACTIONS(2197), - [anon_sym_Catch] = ACTIONS(2197), - [anon_sym_catch] = ACTIONS(2197), - [anon_sym_CATCH] = ACTIONS(2197), - [anon_sym_Component] = ACTIONS(2197), - [anon_sym_component] = ACTIONS(2197), - [anon_sym_COMPONENT] = ACTIONS(2197), - [anon_sym_Continue] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_CONTINUE] = ACTIONS(2197), - [anon_sym_Debugger] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_DEBUGGER] = ACTIONS(2197), - [anon_sym_Default] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_DEFAULT] = ACTIONS(2197), - [anon_sym_Do] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_DO] = ACTIONS(2197), - [anon_sym_Else] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_ELSE] = ACTIONS(2197), - [anon_sym_Final] = ACTIONS(2197), - [anon_sym_final] = ACTIONS(2197), - [anon_sym_FINAL] = ACTIONS(2197), - [anon_sym_Finally] = ACTIONS(2197), - [anon_sym_finally] = ACTIONS(2197), - [anon_sym_FINALLY] = ACTIONS(2197), - [anon_sym_For] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_FOR] = ACTIONS(2197), - [anon_sym_Function] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_FUNCTION] = ACTIONS(2197), - [anon_sym_If] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_IF] = ACTIONS(2197), - [anon_sym_Import] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_IMPORT] = ACTIONS(2197), - [anon_sym_Include] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_INCLUDE] = ACTIONS(2197), - [anon_sym_Interface] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_INTERFACE] = ACTIONS(2197), - [anon_sym_New] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_NEW] = ACTIONS(2197), - [anon_sym_Package] = ACTIONS(2197), - [anon_sym_package] = ACTIONS(2197), - [anon_sym_PACKAGE] = ACTIONS(2197), - [anon_sym_Private] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_PRIVATE] = ACTIONS(2197), - [anon_sym_Property] = ACTIONS(2197), - [anon_sym_property] = ACTIONS(2197), - [anon_sym_PROPERTY] = ACTIONS(2197), - [anon_sym_Public] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_PUBLIC] = ACTIONS(2197), - [anon_sym_Remote] = ACTIONS(2197), - [anon_sym_remote] = ACTIONS(2197), - [anon_sym_REMOTE] = ACTIONS(2197), - [anon_sym_Return] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_RETURN] = ACTIONS(2197), - [anon_sym_Static] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_STATIC] = ACTIONS(2197), - [anon_sym_Switch] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_SWITCH] = ACTIONS(2197), - [anon_sym_Throw] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_THROW] = ACTIONS(2197), - [anon_sym_Try] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_TRY] = ACTIONS(2197), - [anon_sym_Var] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_VAR] = ACTIONS(2197), - [anon_sym_While] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_WHILE] = ACTIONS(2197), - [anon_sym_With] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_WITH] = ACTIONS(2197), - [sym_cf_comment] = ACTIONS(2195), - [sym__java_block_open] = ACTIONS(2195), - [sym__static_type_prefix] = ACTIONS(2195), - }, - [STATE(429)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [sym_identifier] = ACTIONS(2145), + [STATE(430)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(2141), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -110803,223 +111065,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(430)] = { - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_Query] = ACTIONS(2201), - [anon_sym_query] = ACTIONS(2201), - [anon_sym_QUERY] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [aux_sym_unary_operator_token1] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2201), - [aux_sym_number_token2] = ACTIONS(2199), - [anon_sym_This] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(2201), - [anon_sym_THIS] = ACTIONS(2201), - [anon_sym_Super] = ACTIONS(2201), - [anon_sym_super] = ACTIONS(2201), - [anon_sym_SUPER] = ACTIONS(2201), - [anon_sym_True] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_TRUE] = ACTIONS(2201), - [anon_sym_False] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_FALSE] = ACTIONS(2201), - [anon_sym_Null] = ACTIONS(2201), - [anon_sym_null] = ACTIONS(2201), - [anon_sym_NULL] = ACTIONS(2201), - [anon_sym_Undefined] = ACTIONS(2201), - [anon_sym_undefined] = ACTIONS(2201), - [anon_sym_UNDEFINED] = ACTIONS(2201), - [anon_sym_get] = ACTIONS(2201), - [anon_sym_set] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2201), - [sym_hash_empty] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_QueryExecute] = ACTIONS(2201), - [anon_sym_queryexecute] = ACTIONS(2201), - [anon_sym_QUERYEXECUTE] = ACTIONS(2201), - [anon_sym_queryExecute] = ACTIONS(2201), - [anon_sym_BQUOTE] = ACTIONS(2201), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2199), - [anon_sym_Abstract] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2201), - [anon_sym_ABSTRACT] = ACTIONS(2201), - [anon_sym_Break] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_BREAK] = ACTIONS(2201), - [anon_sym_Case] = ACTIONS(2201), - [anon_sym_case] = ACTIONS(2201), - [anon_sym_CASE] = ACTIONS(2201), - [anon_sym_Catch] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_CATCH] = ACTIONS(2201), - [anon_sym_Component] = ACTIONS(2201), - [anon_sym_component] = ACTIONS(2201), - [anon_sym_COMPONENT] = ACTIONS(2201), - [anon_sym_Continue] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_CONTINUE] = ACTIONS(2201), - [anon_sym_Debugger] = ACTIONS(2201), - [anon_sym_debugger] = ACTIONS(2201), - [anon_sym_DEBUGGER] = ACTIONS(2201), - [anon_sym_Default] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_DEFAULT] = ACTIONS(2201), - [anon_sym_Do] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_DO] = ACTIONS(2201), - [anon_sym_Else] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_ELSE] = ACTIONS(2201), - [anon_sym_Final] = ACTIONS(2201), - [anon_sym_final] = ACTIONS(2201), - [anon_sym_FINAL] = ACTIONS(2201), - [anon_sym_Finally] = ACTIONS(2201), - [anon_sym_finally] = ACTIONS(2201), - [anon_sym_FINALLY] = ACTIONS(2201), - [anon_sym_For] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_FOR] = ACTIONS(2201), - [anon_sym_Function] = ACTIONS(2201), - [anon_sym_function] = ACTIONS(2201), - [anon_sym_FUNCTION] = ACTIONS(2201), - [anon_sym_If] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_IF] = ACTIONS(2201), - [anon_sym_Import] = ACTIONS(2201), - [anon_sym_import] = ACTIONS(2201), - [anon_sym_IMPORT] = ACTIONS(2201), - [anon_sym_Include] = ACTIONS(2201), - [anon_sym_include] = ACTIONS(2201), - [anon_sym_INCLUDE] = ACTIONS(2201), - [anon_sym_Interface] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_INTERFACE] = ACTIONS(2201), - [anon_sym_New] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_NEW] = ACTIONS(2201), - [anon_sym_Package] = ACTIONS(2201), - [anon_sym_package] = ACTIONS(2201), - [anon_sym_PACKAGE] = ACTIONS(2201), - [anon_sym_Private] = ACTIONS(2201), - [anon_sym_private] = ACTIONS(2201), - [anon_sym_PRIVATE] = ACTIONS(2201), - [anon_sym_Property] = ACTIONS(2201), - [anon_sym_property] = ACTIONS(2201), - [anon_sym_PROPERTY] = ACTIONS(2201), - [anon_sym_Public] = ACTIONS(2201), - [anon_sym_public] = ACTIONS(2201), - [anon_sym_PUBLIC] = ACTIONS(2201), - [anon_sym_Remote] = ACTIONS(2201), - [anon_sym_remote] = ACTIONS(2201), - [anon_sym_REMOTE] = ACTIONS(2201), - [anon_sym_Return] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_RETURN] = ACTIONS(2201), - [anon_sym_Static] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_STATIC] = ACTIONS(2201), - [anon_sym_Switch] = ACTIONS(2201), - [anon_sym_switch] = ACTIONS(2201), - [anon_sym_SWITCH] = ACTIONS(2201), - [anon_sym_Throw] = ACTIONS(2201), - [anon_sym_throw] = ACTIONS(2201), - [anon_sym_THROW] = ACTIONS(2201), - [anon_sym_Try] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_TRY] = ACTIONS(2201), - [anon_sym_Var] = ACTIONS(2201), - [anon_sym_var] = ACTIONS(2201), - [anon_sym_VAR] = ACTIONS(2201), - [anon_sym_While] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_WHILE] = ACTIONS(2201), - [anon_sym_With] = ACTIONS(2201), - [anon_sym_with] = ACTIONS(2201), - [anon_sym_WITH] = ACTIONS(2201), - [sym_cf_comment] = ACTIONS(2199), - [sym__java_block_open] = ACTIONS(2199), - [sym__static_type_prefix] = ACTIONS(2199), - }, [STATE(431)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [sym_identifier] = ACTIONS(2141), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(432)] = { [ts_builtin_sym_end] = ACTIONS(2203), [sym_identifier] = ACTIONS(2205), [anon_sym_LBRACE] = ACTIONS(2203), @@ -111173,184 +111435,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2203), [sym__static_type_prefix] = ACTIONS(2203), }, - [STATE(432)] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_Query] = ACTIONS(2209), - [anon_sym_query] = ACTIONS(2209), - [anon_sym_QUERY] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2207), - [aux_sym_unary_operator_token1] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2207), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2209), - [aux_sym_number_token2] = ACTIONS(2207), - [anon_sym_This] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(2209), - [anon_sym_THIS] = ACTIONS(2209), - [anon_sym_Super] = ACTIONS(2209), - [anon_sym_super] = ACTIONS(2209), - [anon_sym_SUPER] = ACTIONS(2209), - [anon_sym_True] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_TRUE] = ACTIONS(2209), - [anon_sym_False] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_FALSE] = ACTIONS(2209), - [anon_sym_Null] = ACTIONS(2209), - [anon_sym_null] = ACTIONS(2209), - [anon_sym_NULL] = ACTIONS(2209), - [anon_sym_Undefined] = ACTIONS(2209), - [anon_sym_undefined] = ACTIONS(2209), - [anon_sym_UNDEFINED] = ACTIONS(2209), - [anon_sym_get] = ACTIONS(2209), - [anon_sym_set] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2209), - [sym_hash_empty] = ACTIONS(2207), - [anon_sym_export] = ACTIONS(2209), - [anon_sym_QueryExecute] = ACTIONS(2209), - [anon_sym_queryexecute] = ACTIONS(2209), - [anon_sym_QUERYEXECUTE] = ACTIONS(2209), - [anon_sym_queryExecute] = ACTIONS(2209), - [anon_sym_BQUOTE] = ACTIONS(2209), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2207), - [anon_sym_Abstract] = ACTIONS(2209), - [anon_sym_abstract] = ACTIONS(2209), - [anon_sym_ABSTRACT] = ACTIONS(2209), - [anon_sym_Break] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_BREAK] = ACTIONS(2209), - [anon_sym_Case] = ACTIONS(2209), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_CASE] = ACTIONS(2209), - [anon_sym_Catch] = ACTIONS(2209), - [anon_sym_catch] = ACTIONS(2209), - [anon_sym_CATCH] = ACTIONS(2209), - [anon_sym_Component] = ACTIONS(2209), - [anon_sym_component] = ACTIONS(2209), - [anon_sym_COMPONENT] = ACTIONS(2209), - [anon_sym_Continue] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_CONTINUE] = ACTIONS(2209), - [anon_sym_Debugger] = ACTIONS(2209), - [anon_sym_debugger] = ACTIONS(2209), - [anon_sym_DEBUGGER] = ACTIONS(2209), - [anon_sym_Default] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_DEFAULT] = ACTIONS(2209), - [anon_sym_Do] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_DO] = ACTIONS(2209), - [anon_sym_Else] = ACTIONS(2209), - [anon_sym_else] = ACTIONS(2209), - [anon_sym_ELSE] = ACTIONS(2209), - [anon_sym_Final] = ACTIONS(2209), - [anon_sym_final] = ACTIONS(2209), - [anon_sym_FINAL] = ACTIONS(2209), - [anon_sym_Finally] = ACTIONS(2209), - [anon_sym_finally] = ACTIONS(2209), - [anon_sym_FINALLY] = ACTIONS(2209), - [anon_sym_For] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_FOR] = ACTIONS(2209), - [anon_sym_Function] = ACTIONS(2209), - [anon_sym_function] = ACTIONS(2209), - [anon_sym_FUNCTION] = ACTIONS(2209), - [anon_sym_If] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_IF] = ACTIONS(2209), - [anon_sym_Import] = ACTIONS(2209), - [anon_sym_import] = ACTIONS(2209), - [anon_sym_IMPORT] = ACTIONS(2209), - [anon_sym_Include] = ACTIONS(2209), - [anon_sym_include] = ACTIONS(2209), - [anon_sym_INCLUDE] = ACTIONS(2209), - [anon_sym_Interface] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_INTERFACE] = ACTIONS(2209), - [anon_sym_New] = ACTIONS(2209), - [anon_sym_new] = ACTIONS(2209), - [anon_sym_NEW] = ACTIONS(2209), - [anon_sym_Package] = ACTIONS(2209), - [anon_sym_package] = ACTIONS(2209), - [anon_sym_PACKAGE] = ACTIONS(2209), - [anon_sym_Private] = ACTIONS(2209), - [anon_sym_private] = ACTIONS(2209), - [anon_sym_PRIVATE] = ACTIONS(2209), - [anon_sym_Property] = ACTIONS(2209), - [anon_sym_property] = ACTIONS(2209), - [anon_sym_PROPERTY] = ACTIONS(2209), - [anon_sym_Public] = ACTIONS(2209), - [anon_sym_public] = ACTIONS(2209), - [anon_sym_PUBLIC] = ACTIONS(2209), - [anon_sym_Remote] = ACTIONS(2209), - [anon_sym_remote] = ACTIONS(2209), - [anon_sym_REMOTE] = ACTIONS(2209), - [anon_sym_Return] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_RETURN] = ACTIONS(2209), - [anon_sym_Static] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_STATIC] = ACTIONS(2209), - [anon_sym_Switch] = ACTIONS(2209), - [anon_sym_switch] = ACTIONS(2209), - [anon_sym_SWITCH] = ACTIONS(2209), - [anon_sym_Throw] = ACTIONS(2209), - [anon_sym_throw] = ACTIONS(2209), - [anon_sym_THROW] = ACTIONS(2209), - [anon_sym_Try] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_TRY] = ACTIONS(2209), - [anon_sym_Var] = ACTIONS(2209), - [anon_sym_var] = ACTIONS(2209), - [anon_sym_VAR] = ACTIONS(2209), - [anon_sym_While] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_WHILE] = ACTIONS(2209), - [anon_sym_With] = ACTIONS(2209), - [anon_sym_with] = ACTIONS(2209), - [anon_sym_WITH] = ACTIONS(2209), - [sym_cf_comment] = ACTIONS(2207), - [sym__java_block_open] = ACTIONS(2207), - [sym__static_type_prefix] = ACTIONS(2207), - }, [STATE(433)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(2145), + [sym_catch_clause] = STATE(485), + [sym_finally_clause] = STATE(824), + [aux_sym_try_statement_repeat1] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_Query] = ACTIONS(2172), + [anon_sym_query] = ACTIONS(2172), + [anon_sym_QUERY] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_TILDE] = ACTIONS(2170), + [aux_sym_unary_operator_token1] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2170), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2172), + [aux_sym_number_token2] = ACTIONS(2170), + [anon_sym_This] = ACTIONS(2172), + [anon_sym_this] = ACTIONS(2172), + [anon_sym_THIS] = ACTIONS(2172), + [anon_sym_Super] = ACTIONS(2172), + [anon_sym_super] = ACTIONS(2172), + [anon_sym_SUPER] = ACTIONS(2172), + [anon_sym_True] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_TRUE] = ACTIONS(2172), + [anon_sym_False] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_FALSE] = ACTIONS(2172), + [anon_sym_Null] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2172), + [anon_sym_NULL] = ACTIONS(2172), + [anon_sym_Undefined] = ACTIONS(2172), + [anon_sym_undefined] = ACTIONS(2172), + [anon_sym_UNDEFINED] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [sym_hash_empty] = ACTIONS(2170), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_QueryExecute] = ACTIONS(2172), + [anon_sym_queryexecute] = ACTIONS(2172), + [anon_sym_QUERYEXECUTE] = ACTIONS(2172), + [anon_sym_queryExecute] = ACTIONS(2172), + [anon_sym_BQUOTE] = ACTIONS(2172), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2170), + [anon_sym_Abstract] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_ABSTRACT] = ACTIONS(2172), + [anon_sym_Break] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_BREAK] = ACTIONS(2172), + [anon_sym_Case] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_CASE] = ACTIONS(2172), + [anon_sym_Catch] = ACTIONS(2195), + [anon_sym_catch] = ACTIONS(2195), + [anon_sym_CATCH] = ACTIONS(2195), + [anon_sym_Component] = ACTIONS(2172), + [anon_sym_component] = ACTIONS(2172), + [anon_sym_COMPONENT] = ACTIONS(2172), + [anon_sym_Continue] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_CONTINUE] = ACTIONS(2172), + [anon_sym_Debugger] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_DEBUGGER] = ACTIONS(2172), + [anon_sym_Default] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_DEFAULT] = ACTIONS(2172), + [anon_sym_Do] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_DO] = ACTIONS(2172), + [anon_sym_Final] = ACTIONS(2172), + [anon_sym_final] = ACTIONS(2172), + [anon_sym_FINAL] = ACTIONS(2172), + [anon_sym_Finally] = ACTIONS(2197), + [anon_sym_finally] = ACTIONS(2197), + [anon_sym_FINALLY] = ACTIONS(2197), + [anon_sym_For] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_FOR] = ACTIONS(2172), + [anon_sym_Function] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_FUNCTION] = ACTIONS(2172), + [anon_sym_If] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_IF] = ACTIONS(2172), + [anon_sym_Import] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_IMPORT] = ACTIONS(2172), + [anon_sym_Include] = ACTIONS(2172), + [anon_sym_include] = ACTIONS(2172), + [anon_sym_INCLUDE] = ACTIONS(2172), + [anon_sym_Interface] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_INTERFACE] = ACTIONS(2172), + [anon_sym_New] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_NEW] = ACTIONS(2172), + [anon_sym_Package] = ACTIONS(2172), + [anon_sym_package] = ACTIONS(2172), + [anon_sym_PACKAGE] = ACTIONS(2172), + [anon_sym_Private] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_PRIVATE] = ACTIONS(2172), + [anon_sym_Property] = ACTIONS(2172), + [anon_sym_property] = ACTIONS(2172), + [anon_sym_PROPERTY] = ACTIONS(2172), + [anon_sym_Public] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_PUBLIC] = ACTIONS(2172), + [anon_sym_Remote] = ACTIONS(2172), + [anon_sym_remote] = ACTIONS(2172), + [anon_sym_REMOTE] = ACTIONS(2172), + [anon_sym_Return] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_RETURN] = ACTIONS(2172), + [anon_sym_Static] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_STATIC] = ACTIONS(2172), + [anon_sym_Switch] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_SWITCH] = ACTIONS(2172), + [anon_sym_Throw] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_THROW] = ACTIONS(2172), + [anon_sym_Try] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_TRY] = ACTIONS(2172), + [anon_sym_Var] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_VAR] = ACTIONS(2172), + [anon_sym_While] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_WHILE] = ACTIONS(2172), + [anon_sym_With] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_WITH] = ACTIONS(2172), + [sym_cf_comment] = ACTIONS(2170), + [sym__java_block_open] = ACTIONS(2170), + [sym__static_type_prefix] = ACTIONS(2170), + }, + [STATE(434)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [sym_identifier] = ACTIONS(2141), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -111419,554 +111681,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(434)] = { - [sym_catch_clause] = STATE(525), - [sym_finally_clause] = STATE(836), - [aux_sym_try_statement_repeat1] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_Query] = ACTIONS(2168), - [anon_sym_query] = ACTIONS(2168), - [anon_sym_QUERY] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_TILDE] = ACTIONS(2166), - [aux_sym_unary_operator_token1] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2166), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2168), - [aux_sym_number_token2] = ACTIONS(2166), - [anon_sym_This] = ACTIONS(2168), - [anon_sym_this] = ACTIONS(2168), - [anon_sym_THIS] = ACTIONS(2168), - [anon_sym_Super] = ACTIONS(2168), - [anon_sym_super] = ACTIONS(2168), - [anon_sym_SUPER] = ACTIONS(2168), - [anon_sym_True] = ACTIONS(2168), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_TRUE] = ACTIONS(2168), - [anon_sym_False] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_FALSE] = ACTIONS(2168), - [anon_sym_Null] = ACTIONS(2168), - [anon_sym_null] = ACTIONS(2168), - [anon_sym_NULL] = ACTIONS(2168), - [anon_sym_Undefined] = ACTIONS(2168), - [anon_sym_undefined] = ACTIONS(2168), - [anon_sym_UNDEFINED] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_POUND] = ACTIONS(2168), - [sym_hash_empty] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_QueryExecute] = ACTIONS(2168), - [anon_sym_queryexecute] = ACTIONS(2168), - [anon_sym_QUERYEXECUTE] = ACTIONS(2168), - [anon_sym_queryExecute] = ACTIONS(2168), - [anon_sym_BQUOTE] = ACTIONS(2168), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2166), - [anon_sym_Abstract] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_ABSTRACT] = ACTIONS(2168), - [anon_sym_Break] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_BREAK] = ACTIONS(2168), - [anon_sym_Case] = ACTIONS(2168), - [anon_sym_case] = ACTIONS(2168), - [anon_sym_CASE] = ACTIONS(2168), - [anon_sym_Catch] = ACTIONS(2211), - [anon_sym_catch] = ACTIONS(2211), - [anon_sym_CATCH] = ACTIONS(2211), - [anon_sym_Component] = ACTIONS(2168), - [anon_sym_component] = ACTIONS(2168), - [anon_sym_COMPONENT] = ACTIONS(2168), - [anon_sym_Continue] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_CONTINUE] = ACTIONS(2168), - [anon_sym_Debugger] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_DEBUGGER] = ACTIONS(2168), - [anon_sym_Default] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_DEFAULT] = ACTIONS(2168), - [anon_sym_Do] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_DO] = ACTIONS(2168), - [anon_sym_Final] = ACTIONS(2168), - [anon_sym_final] = ACTIONS(2168), - [anon_sym_FINAL] = ACTIONS(2168), - [anon_sym_Finally] = ACTIONS(2213), - [anon_sym_finally] = ACTIONS(2213), - [anon_sym_FINALLY] = ACTIONS(2213), - [anon_sym_For] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_FOR] = ACTIONS(2168), - [anon_sym_Function] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_FUNCTION] = ACTIONS(2168), - [anon_sym_If] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_IF] = ACTIONS(2168), - [anon_sym_Import] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_IMPORT] = ACTIONS(2168), - [anon_sym_Include] = ACTIONS(2168), - [anon_sym_include] = ACTIONS(2168), - [anon_sym_INCLUDE] = ACTIONS(2168), - [anon_sym_Interface] = ACTIONS(2168), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_INTERFACE] = ACTIONS(2168), - [anon_sym_New] = ACTIONS(2168), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_NEW] = ACTIONS(2168), - [anon_sym_Package] = ACTIONS(2168), - [anon_sym_package] = ACTIONS(2168), - [anon_sym_PACKAGE] = ACTIONS(2168), - [anon_sym_Private] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_PRIVATE] = ACTIONS(2168), - [anon_sym_Property] = ACTIONS(2168), - [anon_sym_property] = ACTIONS(2168), - [anon_sym_PROPERTY] = ACTIONS(2168), - [anon_sym_Public] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_PUBLIC] = ACTIONS(2168), - [anon_sym_Remote] = ACTIONS(2168), - [anon_sym_remote] = ACTIONS(2168), - [anon_sym_REMOTE] = ACTIONS(2168), - [anon_sym_Return] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_RETURN] = ACTIONS(2168), - [anon_sym_Static] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_STATIC] = ACTIONS(2168), - [anon_sym_Switch] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_SWITCH] = ACTIONS(2168), - [anon_sym_Throw] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_THROW] = ACTIONS(2168), - [anon_sym_Try] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_TRY] = ACTIONS(2168), - [anon_sym_Var] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_VAR] = ACTIONS(2168), - [anon_sym_While] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_WHILE] = ACTIONS(2168), - [anon_sym_With] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_WITH] = ACTIONS(2168), - [sym_cf_comment] = ACTIONS(2166), - [sym__java_block_open] = ACTIONS(2166), - [sym__static_type_prefix] = ACTIONS(2166), - }, [STATE(435)] = { - [sym_catch_clause] = STATE(525), - [sym_finally_clause] = STATE(817), - [aux_sym_try_statement_repeat1] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_Query] = ACTIONS(2176), - [anon_sym_query] = ACTIONS(2176), - [anon_sym_QUERY] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [aux_sym_unary_operator_token1] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2174), - [anon_sym_DQUOTE] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2174), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2176), - [aux_sym_number_token2] = ACTIONS(2174), - [anon_sym_This] = ACTIONS(2176), - [anon_sym_this] = ACTIONS(2176), - [anon_sym_THIS] = ACTIONS(2176), - [anon_sym_Super] = ACTIONS(2176), - [anon_sym_super] = ACTIONS(2176), - [anon_sym_SUPER] = ACTIONS(2176), - [anon_sym_True] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_TRUE] = ACTIONS(2176), - [anon_sym_False] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [anon_sym_FALSE] = ACTIONS(2176), - [anon_sym_Null] = ACTIONS(2176), - [anon_sym_null] = ACTIONS(2176), - [anon_sym_NULL] = ACTIONS(2176), - [anon_sym_Undefined] = ACTIONS(2176), - [anon_sym_undefined] = ACTIONS(2176), - [anon_sym_UNDEFINED] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(2176), - [sym_hash_empty] = ACTIONS(2174), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_QueryExecute] = ACTIONS(2176), - [anon_sym_queryexecute] = ACTIONS(2176), - [anon_sym_QUERYEXECUTE] = ACTIONS(2176), - [anon_sym_queryExecute] = ACTIONS(2176), - [anon_sym_BQUOTE] = ACTIONS(2176), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2174), - [anon_sym_Abstract] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_ABSTRACT] = ACTIONS(2176), - [anon_sym_Break] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_BREAK] = ACTIONS(2176), - [anon_sym_Case] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_CASE] = ACTIONS(2176), - [anon_sym_Catch] = ACTIONS(2211), - [anon_sym_catch] = ACTIONS(2211), - [anon_sym_CATCH] = ACTIONS(2211), - [anon_sym_Component] = ACTIONS(2176), - [anon_sym_component] = ACTIONS(2176), - [anon_sym_COMPONENT] = ACTIONS(2176), - [anon_sym_Continue] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_CONTINUE] = ACTIONS(2176), - [anon_sym_Debugger] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_DEBUGGER] = ACTIONS(2176), - [anon_sym_Default] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_DEFAULT] = ACTIONS(2176), - [anon_sym_Do] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_DO] = ACTIONS(2176), - [anon_sym_Final] = ACTIONS(2176), - [anon_sym_final] = ACTIONS(2176), - [anon_sym_FINAL] = ACTIONS(2176), - [anon_sym_Finally] = ACTIONS(2213), - [anon_sym_finally] = ACTIONS(2213), - [anon_sym_FINALLY] = ACTIONS(2213), - [anon_sym_For] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_FOR] = ACTIONS(2176), - [anon_sym_Function] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_FUNCTION] = ACTIONS(2176), - [anon_sym_If] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_IF] = ACTIONS(2176), - [anon_sym_Import] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_IMPORT] = ACTIONS(2176), - [anon_sym_Include] = ACTIONS(2176), - [anon_sym_include] = ACTIONS(2176), - [anon_sym_INCLUDE] = ACTIONS(2176), - [anon_sym_Interface] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_INTERFACE] = ACTIONS(2176), - [anon_sym_New] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_NEW] = ACTIONS(2176), - [anon_sym_Package] = ACTIONS(2176), - [anon_sym_package] = ACTIONS(2176), - [anon_sym_PACKAGE] = ACTIONS(2176), - [anon_sym_Private] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_PRIVATE] = ACTIONS(2176), - [anon_sym_Property] = ACTIONS(2176), - [anon_sym_property] = ACTIONS(2176), - [anon_sym_PROPERTY] = ACTIONS(2176), - [anon_sym_Public] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_PUBLIC] = ACTIONS(2176), - [anon_sym_Remote] = ACTIONS(2176), - [anon_sym_remote] = ACTIONS(2176), - [anon_sym_REMOTE] = ACTIONS(2176), - [anon_sym_Return] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_RETURN] = ACTIONS(2176), - [anon_sym_Static] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_STATIC] = ACTIONS(2176), - [anon_sym_Switch] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_SWITCH] = ACTIONS(2176), - [anon_sym_Throw] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_THROW] = ACTIONS(2176), - [anon_sym_Try] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_TRY] = ACTIONS(2176), - [anon_sym_Var] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_VAR] = ACTIONS(2176), - [anon_sym_While] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_WHILE] = ACTIONS(2176), - [anon_sym_With] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_WITH] = ACTIONS(2176), - [sym_cf_comment] = ACTIONS(2174), - [sym__java_block_open] = ACTIONS(2174), - [sym__static_type_prefix] = ACTIONS(2174), - }, - [STATE(436)] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_Query] = ACTIONS(2217), - [anon_sym_query] = ACTIONS(2217), - [anon_sym_QUERY] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2215), - [aux_sym_unary_operator_token1] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2217), - [aux_sym_number_token2] = ACTIONS(2215), - [anon_sym_This] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(2217), - [anon_sym_THIS] = ACTIONS(2217), - [anon_sym_Super] = ACTIONS(2217), - [anon_sym_super] = ACTIONS(2217), - [anon_sym_SUPER] = ACTIONS(2217), - [anon_sym_True] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_TRUE] = ACTIONS(2217), - [anon_sym_False] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_FALSE] = ACTIONS(2217), - [anon_sym_Null] = ACTIONS(2217), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_NULL] = ACTIONS(2217), - [anon_sym_Undefined] = ACTIONS(2217), - [anon_sym_undefined] = ACTIONS(2217), - [anon_sym_UNDEFINED] = ACTIONS(2217), - [anon_sym_get] = ACTIONS(2217), - [anon_sym_set] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [sym_hash_empty] = ACTIONS(2215), - [anon_sym_export] = ACTIONS(2217), - [anon_sym_QueryExecute] = ACTIONS(2217), - [anon_sym_queryexecute] = ACTIONS(2217), - [anon_sym_QUERYEXECUTE] = ACTIONS(2217), - [anon_sym_queryExecute] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2215), - [anon_sym_Abstract] = ACTIONS(2217), - [anon_sym_abstract] = ACTIONS(2217), - [anon_sym_ABSTRACT] = ACTIONS(2217), - [anon_sym_Break] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_BREAK] = ACTIONS(2217), - [anon_sym_Case] = ACTIONS(2217), - [anon_sym_case] = ACTIONS(2217), - [anon_sym_CASE] = ACTIONS(2217), - [anon_sym_Catch] = ACTIONS(2217), - [anon_sym_catch] = ACTIONS(2217), - [anon_sym_CATCH] = ACTIONS(2217), - [anon_sym_Component] = ACTIONS(2217), - [anon_sym_component] = ACTIONS(2217), - [anon_sym_COMPONENT] = ACTIONS(2217), - [anon_sym_Continue] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_CONTINUE] = ACTIONS(2217), - [anon_sym_Debugger] = ACTIONS(2217), - [anon_sym_debugger] = ACTIONS(2217), - [anon_sym_DEBUGGER] = ACTIONS(2217), - [anon_sym_Default] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_DEFAULT] = ACTIONS(2217), - [anon_sym_Do] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_DO] = ACTIONS(2217), - [anon_sym_Else] = ACTIONS(2217), - [anon_sym_else] = ACTIONS(2217), - [anon_sym_ELSE] = ACTIONS(2217), - [anon_sym_Final] = ACTIONS(2217), - [anon_sym_final] = ACTIONS(2217), - [anon_sym_FINAL] = ACTIONS(2217), - [anon_sym_Finally] = ACTIONS(2217), - [anon_sym_finally] = ACTIONS(2217), - [anon_sym_FINALLY] = ACTIONS(2217), - [anon_sym_For] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_FOR] = ACTIONS(2217), - [anon_sym_Function] = ACTIONS(2217), - [anon_sym_function] = ACTIONS(2217), - [anon_sym_FUNCTION] = ACTIONS(2217), - [anon_sym_If] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_IF] = ACTIONS(2217), - [anon_sym_Import] = ACTIONS(2217), - [anon_sym_import] = ACTIONS(2217), - [anon_sym_IMPORT] = ACTIONS(2217), - [anon_sym_Include] = ACTIONS(2217), - [anon_sym_include] = ACTIONS(2217), - [anon_sym_INCLUDE] = ACTIONS(2217), - [anon_sym_Interface] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_INTERFACE] = ACTIONS(2217), - [anon_sym_New] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_NEW] = ACTIONS(2217), - [anon_sym_Package] = ACTIONS(2217), - [anon_sym_package] = ACTIONS(2217), - [anon_sym_PACKAGE] = ACTIONS(2217), - [anon_sym_Private] = ACTIONS(2217), - [anon_sym_private] = ACTIONS(2217), - [anon_sym_PRIVATE] = ACTIONS(2217), - [anon_sym_Property] = ACTIONS(2217), - [anon_sym_property] = ACTIONS(2217), - [anon_sym_PROPERTY] = ACTIONS(2217), - [anon_sym_Public] = ACTIONS(2217), - [anon_sym_public] = ACTIONS(2217), - [anon_sym_PUBLIC] = ACTIONS(2217), - [anon_sym_Remote] = ACTIONS(2217), - [anon_sym_remote] = ACTIONS(2217), - [anon_sym_REMOTE] = ACTIONS(2217), - [anon_sym_Return] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_RETURN] = ACTIONS(2217), - [anon_sym_Static] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_STATIC] = ACTIONS(2217), - [anon_sym_Switch] = ACTIONS(2217), - [anon_sym_switch] = ACTIONS(2217), - [anon_sym_SWITCH] = ACTIONS(2217), - [anon_sym_Throw] = ACTIONS(2217), - [anon_sym_throw] = ACTIONS(2217), - [anon_sym_THROW] = ACTIONS(2217), - [anon_sym_Try] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_TRY] = ACTIONS(2217), - [anon_sym_Var] = ACTIONS(2217), - [anon_sym_var] = ACTIONS(2217), - [anon_sym_VAR] = ACTIONS(2217), - [anon_sym_While] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_WHILE] = ACTIONS(2217), - [anon_sym_With] = ACTIONS(2217), - [anon_sym_with] = ACTIONS(2217), - [anon_sym_WITH] = ACTIONS(2217), - [sym_cf_comment] = ACTIONS(2215), - [sym__java_block_open] = ACTIONS(2215), - [sym__static_type_prefix] = ACTIONS(2215), - }, - [STATE(437)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(2145), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(2141), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2141), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), @@ -112035,450 +111835,555 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(406), [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(2150), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, + [STATE(436)] = { + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_Query] = ACTIONS(2209), + [anon_sym_query] = ACTIONS(2209), + [anon_sym_QUERY] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [aux_sym_unary_operator_token1] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2209), + [aux_sym_number_token2] = ACTIONS(2207), + [anon_sym_This] = ACTIONS(2209), + [anon_sym_this] = ACTIONS(2209), + [anon_sym_THIS] = ACTIONS(2209), + [anon_sym_Super] = ACTIONS(2209), + [anon_sym_super] = ACTIONS(2209), + [anon_sym_SUPER] = ACTIONS(2209), + [anon_sym_True] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_TRUE] = ACTIONS(2209), + [anon_sym_False] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_FALSE] = ACTIONS(2209), + [anon_sym_Null] = ACTIONS(2209), + [anon_sym_null] = ACTIONS(2209), + [anon_sym_NULL] = ACTIONS(2209), + [anon_sym_Undefined] = ACTIONS(2209), + [anon_sym_undefined] = ACTIONS(2209), + [anon_sym_UNDEFINED] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [sym_hash_empty] = ACTIONS(2207), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_QueryExecute] = ACTIONS(2209), + [anon_sym_queryexecute] = ACTIONS(2209), + [anon_sym_QUERYEXECUTE] = ACTIONS(2209), + [anon_sym_queryExecute] = ACTIONS(2209), + [anon_sym_BQUOTE] = ACTIONS(2209), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2207), + [anon_sym_Abstract] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_ABSTRACT] = ACTIONS(2209), + [anon_sym_Break] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_BREAK] = ACTIONS(2209), + [anon_sym_Case] = ACTIONS(2209), + [anon_sym_case] = ACTIONS(2209), + [anon_sym_CASE] = ACTIONS(2209), + [anon_sym_Catch] = ACTIONS(2209), + [anon_sym_catch] = ACTIONS(2209), + [anon_sym_CATCH] = ACTIONS(2209), + [anon_sym_Component] = ACTIONS(2209), + [anon_sym_component] = ACTIONS(2209), + [anon_sym_COMPONENT] = ACTIONS(2209), + [anon_sym_Continue] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_CONTINUE] = ACTIONS(2209), + [anon_sym_Debugger] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_DEBUGGER] = ACTIONS(2209), + [anon_sym_Default] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_DEFAULT] = ACTIONS(2209), + [anon_sym_Do] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_DO] = ACTIONS(2209), + [anon_sym_Else] = ACTIONS(2209), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_ELSE] = ACTIONS(2209), + [anon_sym_Final] = ACTIONS(2209), + [anon_sym_final] = ACTIONS(2209), + [anon_sym_FINAL] = ACTIONS(2209), + [anon_sym_Finally] = ACTIONS(2209), + [anon_sym_finally] = ACTIONS(2209), + [anon_sym_FINALLY] = ACTIONS(2209), + [anon_sym_For] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_FOR] = ACTIONS(2209), + [anon_sym_Function] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_FUNCTION] = ACTIONS(2209), + [anon_sym_If] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_IF] = ACTIONS(2209), + [anon_sym_Import] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_IMPORT] = ACTIONS(2209), + [anon_sym_Include] = ACTIONS(2209), + [anon_sym_include] = ACTIONS(2209), + [anon_sym_INCLUDE] = ACTIONS(2209), + [anon_sym_Interface] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_INTERFACE] = ACTIONS(2209), + [anon_sym_New] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_NEW] = ACTIONS(2209), + [anon_sym_Package] = ACTIONS(2209), + [anon_sym_package] = ACTIONS(2209), + [anon_sym_PACKAGE] = ACTIONS(2209), + [anon_sym_Private] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_PRIVATE] = ACTIONS(2209), + [anon_sym_Property] = ACTIONS(2209), + [anon_sym_property] = ACTIONS(2209), + [anon_sym_PROPERTY] = ACTIONS(2209), + [anon_sym_Public] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_PUBLIC] = ACTIONS(2209), + [anon_sym_Remote] = ACTIONS(2209), + [anon_sym_remote] = ACTIONS(2209), + [anon_sym_REMOTE] = ACTIONS(2209), + [anon_sym_Return] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_RETURN] = ACTIONS(2209), + [anon_sym_Static] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_STATIC] = ACTIONS(2209), + [anon_sym_Switch] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_SWITCH] = ACTIONS(2209), + [anon_sym_Throw] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_THROW] = ACTIONS(2209), + [anon_sym_Try] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_TRY] = ACTIONS(2209), + [anon_sym_Var] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_VAR] = ACTIONS(2209), + [anon_sym_While] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_WHILE] = ACTIONS(2209), + [anon_sym_With] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_WITH] = ACTIONS(2209), + [sym_cf_comment] = ACTIONS(2207), + [sym__java_block_open] = ACTIONS(2207), + [sym__static_type_prefix] = ACTIONS(2207), + }, + [STATE(437)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_Query] = ACTIONS(2211), + [anon_sym_query] = ACTIONS(2211), + [anon_sym_QUERY] = ACTIONS(2211), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_DASH_GT] = ACTIONS(2215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2213), + [aux_sym_unary_operator_token1] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2211), + [aux_sym_number_token2] = ACTIONS(2211), + [anon_sym_This] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(2211), + [anon_sym_THIS] = ACTIONS(2211), + [anon_sym_Super] = ACTIONS(2211), + [anon_sym_super] = ACTIONS(2211), + [anon_sym_SUPER] = ACTIONS(2211), + [anon_sym_True] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_TRUE] = ACTIONS(2211), + [anon_sym_False] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_FALSE] = ACTIONS(2211), + [anon_sym_Null] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2211), + [anon_sym_NULL] = ACTIONS(2211), + [anon_sym_Undefined] = ACTIONS(2211), + [anon_sym_undefined] = ACTIONS(2211), + [anon_sym_UNDEFINED] = ACTIONS(2211), + [anon_sym_get] = ACTIONS(2211), + [anon_sym_set] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [sym_hash_empty] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2211), + [anon_sym_QueryExecute] = ACTIONS(2211), + [anon_sym_queryexecute] = ACTIONS(2211), + [anon_sym_QUERYEXECUTE] = ACTIONS(2211), + [anon_sym_queryExecute] = ACTIONS(2211), + [anon_sym_BQUOTE] = ACTIONS(2213), + [anon_sym_Abstract] = ACTIONS(2211), + [anon_sym_abstract] = ACTIONS(2211), + [anon_sym_ABSTRACT] = ACTIONS(2211), + [anon_sym_Component] = ACTIONS(2211), + [anon_sym_component] = ACTIONS(2211), + [anon_sym_COMPONENT] = ACTIONS(2211), + [anon_sym_Debugger] = ACTIONS(2211), + [anon_sym_debugger] = ACTIONS(2211), + [anon_sym_DEBUGGER] = ACTIONS(2211), + [anon_sym_Final] = ACTIONS(2211), + [anon_sym_final] = ACTIONS(2211), + [anon_sym_FINAL] = ACTIONS(2211), + [anon_sym_Function] = ACTIONS(2211), + [anon_sym_function] = ACTIONS(2211), + [anon_sym_FUNCTION] = ACTIONS(2211), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_Include] = ACTIONS(2211), + [anon_sym_include] = ACTIONS(2211), + [anon_sym_INCLUDE] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [anon_sym_New] = ACTIONS(2211), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_NEW] = ACTIONS(2211), + [anon_sym_Package] = ACTIONS(2211), + [anon_sym_package] = ACTIONS(2211), + [anon_sym_PACKAGE] = ACTIONS(2211), + [anon_sym_Private] = ACTIONS(2211), + [anon_sym_private] = ACTIONS(2211), + [anon_sym_PRIVATE] = ACTIONS(2211), + [anon_sym_Public] = ACTIONS(2211), + [anon_sym_public] = ACTIONS(2211), + [anon_sym_PUBLIC] = ACTIONS(2211), + [anon_sym_Remote] = ACTIONS(2211), + [anon_sym_remote] = ACTIONS(2211), + [anon_sym_REMOTE] = ACTIONS(2211), + [anon_sym_Static] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_STATIC] = ACTIONS(2211), + [sym__automatic_semicolon] = ACTIONS(2213), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym_tag_linefeed] = ACTIONS(2213), + [sym__java_block_open] = ACTIONS(2213), + [sym__static_type_prefix] = ACTIONS(2213), + }, [STATE(438)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(2154), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Catch] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1590), + [anon_sym_CATCH] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Else] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_ELSE] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_Finally] = ACTIONS(1590), + [anon_sym_finally] = ACTIONS(1590), + [anon_sym_FINALLY] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, [STATE(439)] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1670), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Break] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_BREAK] = ACTIONS(1672), - [anon_sym_Case] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_CASE] = ACTIONS(1672), - [anon_sym_Catch] = ACTIONS(1672), - [anon_sym_catch] = ACTIONS(1672), - [anon_sym_CATCH] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Continue] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_CONTINUE] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Default] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_DEFAULT] = ACTIONS(1672), - [anon_sym_Do] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_DO] = ACTIONS(1672), - [anon_sym_Else] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_ELSE] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_Finally] = ACTIONS(1672), - [anon_sym_finally] = ACTIONS(1672), - [anon_sym_FINALLY] = ACTIONS(1672), - [anon_sym_For] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_FOR] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_If] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_IF] = ACTIONS(1672), - [anon_sym_Import] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_IMPORT] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_Interface] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_INTERFACE] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Property] = ACTIONS(1672), - [anon_sym_property] = ACTIONS(1672), - [anon_sym_PROPERTY] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Return] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_RETURN] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [anon_sym_Switch] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_SWITCH] = ACTIONS(1672), - [anon_sym_Throw] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_THROW] = ACTIONS(1672), - [anon_sym_Try] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_TRY] = ACTIONS(1672), - [anon_sym_Var] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_VAR] = ACTIONS(1672), - [anon_sym_While] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_WHILE] = ACTIONS(1672), - [anon_sym_With] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_WITH] = ACTIONS(1672), - [sym_cf_comment] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), - }, - [STATE(440)] = { + [ts_builtin_sym_end] = ACTIONS(2217), [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2217), [anon_sym_let] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2217), [anon_sym_Query] = ACTIONS(2219), [anon_sym_query] = ACTIONS(2219), [anon_sym_QUERY] = ACTIONS(2219), - [anon_sym_EQ_GT] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), [anon_sym_PLUS] = ACTIONS(2219), [anon_sym_DASH] = ACTIONS(2219), [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_TILDE] = ACTIONS(2217), [aux_sym_unary_operator_token1] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2217), + [anon_sym_DASH_DASH] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(2219), - [aux_sym_number_token2] = ACTIONS(2219), + [aux_sym_number_token2] = ACTIONS(2217), [anon_sym_This] = ACTIONS(2219), [anon_sym_this] = ACTIONS(2219), [anon_sym_THIS] = ACTIONS(2219), @@ -112500,38 +112405,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(2219), [anon_sym_set] = ACTIONS(2219), [anon_sym_POUND] = ACTIONS(2219), - [sym_hash_empty] = ACTIONS(2221), + [sym_hash_empty] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_QueryExecute] = ACTIONS(2219), [anon_sym_queryexecute] = ACTIONS(2219), [anon_sym_QUERYEXECUTE] = ACTIONS(2219), [anon_sym_queryExecute] = ACTIONS(2219), - [anon_sym_BQUOTE] = ACTIONS(2221), + [anon_sym_BQUOTE] = ACTIONS(2219), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2217), [anon_sym_Abstract] = ACTIONS(2219), [anon_sym_abstract] = ACTIONS(2219), [anon_sym_ABSTRACT] = ACTIONS(2219), + [anon_sym_Break] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_BREAK] = ACTIONS(2219), + [anon_sym_Case] = ACTIONS(2219), + [anon_sym_case] = ACTIONS(2219), + [anon_sym_CASE] = ACTIONS(2219), + [anon_sym_Catch] = ACTIONS(2219), + [anon_sym_catch] = ACTIONS(2219), + [anon_sym_CATCH] = ACTIONS(2219), [anon_sym_Component] = ACTIONS(2219), [anon_sym_component] = ACTIONS(2219), [anon_sym_COMPONENT] = ACTIONS(2219), + [anon_sym_Continue] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_CONTINUE] = ACTIONS(2219), [anon_sym_Debugger] = ACTIONS(2219), [anon_sym_debugger] = ACTIONS(2219), [anon_sym_DEBUGGER] = ACTIONS(2219), + [anon_sym_Default] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_DEFAULT] = ACTIONS(2219), + [anon_sym_Do] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_DO] = ACTIONS(2219), + [anon_sym_Else] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_ELSE] = ACTIONS(2219), [anon_sym_Final] = ACTIONS(2219), [anon_sym_final] = ACTIONS(2219), [anon_sym_FINAL] = ACTIONS(2219), + [anon_sym_Finally] = ACTIONS(2219), + [anon_sym_finally] = ACTIONS(2219), + [anon_sym_FINALLY] = ACTIONS(2219), + [anon_sym_For] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_FOR] = ACTIONS(2219), [anon_sym_Function] = ACTIONS(2219), [anon_sym_function] = ACTIONS(2219), [anon_sym_FUNCTION] = ACTIONS(2219), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), + [anon_sym_If] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_IF] = ACTIONS(2219), + [anon_sym_Import] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_IMPORT] = ACTIONS(2219), [anon_sym_Include] = ACTIONS(2219), [anon_sym_include] = ACTIONS(2219), [anon_sym_INCLUDE] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), + [anon_sym_Interface] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_INTERFACE] = ACTIONS(2219), [anon_sym_New] = ACTIONS(2219), [anon_sym_new] = ACTIONS(2219), [anon_sym_NEW] = ACTIONS(2219), @@ -112541,785 +112476,1111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(2219), [anon_sym_private] = ACTIONS(2219), [anon_sym_PRIVATE] = ACTIONS(2219), + [anon_sym_Property] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_PROPERTY] = ACTIONS(2219), [anon_sym_Public] = ACTIONS(2219), [anon_sym_public] = ACTIONS(2219), [anon_sym_PUBLIC] = ACTIONS(2219), [anon_sym_Remote] = ACTIONS(2219), [anon_sym_remote] = ACTIONS(2219), [anon_sym_REMOTE] = ACTIONS(2219), + [anon_sym_Return] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_RETURN] = ACTIONS(2219), [anon_sym_Static] = ACTIONS(2219), [anon_sym_static] = ACTIONS(2219), [anon_sym_STATIC] = ACTIONS(2219), - [sym__automatic_semicolon] = ACTIONS(2221), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym_tag_linefeed] = ACTIONS(2221), - [sym__java_block_open] = ACTIONS(2221), - [sym__static_type_prefix] = ACTIONS(2221), + [anon_sym_Switch] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_SWITCH] = ACTIONS(2219), + [anon_sym_Throw] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_THROW] = ACTIONS(2219), + [anon_sym_Try] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_TRY] = ACTIONS(2219), + [anon_sym_Var] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_VAR] = ACTIONS(2219), + [anon_sym_While] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_WHILE] = ACTIONS(2219), + [anon_sym_With] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_WITH] = ACTIONS(2219), + [sym_cf_comment] = ACTIONS(2217), + [sym__java_block_open] = ACTIONS(2217), + [sym__static_type_prefix] = ACTIONS(2217), + }, + [STATE(440)] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1596), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Break] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_BREAK] = ACTIONS(1598), + [anon_sym_Case] = ACTIONS(1598), + [anon_sym_case] = ACTIONS(1598), + [anon_sym_CASE] = ACTIONS(1598), + [anon_sym_Catch] = ACTIONS(1598), + [anon_sym_catch] = ACTIONS(1598), + [anon_sym_CATCH] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Continue] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_CONTINUE] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Default] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_DEFAULT] = ACTIONS(1598), + [anon_sym_Do] = ACTIONS(1598), + [anon_sym_do] = ACTIONS(1598), + [anon_sym_DO] = ACTIONS(1598), + [anon_sym_Else] = ACTIONS(1598), + [anon_sym_else] = ACTIONS(1598), + [anon_sym_ELSE] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_Finally] = ACTIONS(1598), + [anon_sym_finally] = ACTIONS(1598), + [anon_sym_FINALLY] = ACTIONS(1598), + [anon_sym_For] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_FOR] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_If] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_IF] = ACTIONS(1598), + [anon_sym_Import] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_IMPORT] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_Interface] = ACTIONS(1598), + [anon_sym_interface] = ACTIONS(1598), + [anon_sym_INTERFACE] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Property] = ACTIONS(1598), + [anon_sym_property] = ACTIONS(1598), + [anon_sym_PROPERTY] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Return] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_RETURN] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [anon_sym_Switch] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1598), + [anon_sym_SWITCH] = ACTIONS(1598), + [anon_sym_Throw] = ACTIONS(1598), + [anon_sym_throw] = ACTIONS(1598), + [anon_sym_THROW] = ACTIONS(1598), + [anon_sym_Try] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_TRY] = ACTIONS(1598), + [anon_sym_Var] = ACTIONS(1598), + [anon_sym_var] = ACTIONS(1598), + [anon_sym_VAR] = ACTIONS(1598), + [anon_sym_While] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_WHILE] = ACTIONS(1598), + [anon_sym_With] = ACTIONS(1598), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_WITH] = ACTIONS(1598), + [sym_cf_comment] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), }, [STATE(441)] = { - [sym_catch_clause] = STATE(525), + [sym_catch_clause] = STATE(485), [aux_sym_try_statement_repeat1] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_Query] = ACTIONS(2180), - [anon_sym_query] = ACTIONS(2180), - [anon_sym_QUERY] = ACTIONS(2180), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_SLASH] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2178), - [aux_sym_unary_operator_token1] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2180), - [aux_sym_number_token2] = ACTIONS(2178), - [anon_sym_This] = ACTIONS(2180), - [anon_sym_this] = ACTIONS(2180), - [anon_sym_THIS] = ACTIONS(2180), - [anon_sym_Super] = ACTIONS(2180), - [anon_sym_super] = ACTIONS(2180), - [anon_sym_SUPER] = ACTIONS(2180), - [anon_sym_True] = ACTIONS(2180), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_TRUE] = ACTIONS(2180), - [anon_sym_False] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [anon_sym_FALSE] = ACTIONS(2180), - [anon_sym_Null] = ACTIONS(2180), - [anon_sym_null] = ACTIONS(2180), - [anon_sym_NULL] = ACTIONS(2180), - [anon_sym_Undefined] = ACTIONS(2180), - [anon_sym_undefined] = ACTIONS(2180), - [anon_sym_UNDEFINED] = ACTIONS(2180), - [anon_sym_get] = ACTIONS(2180), - [anon_sym_set] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2180), - [sym_hash_empty] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2180), - [anon_sym_QueryExecute] = ACTIONS(2180), - [anon_sym_queryexecute] = ACTIONS(2180), - [anon_sym_QUERYEXECUTE] = ACTIONS(2180), - [anon_sym_queryExecute] = ACTIONS(2180), - [anon_sym_BQUOTE] = ACTIONS(2180), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2178), - [anon_sym_Abstract] = ACTIONS(2180), - [anon_sym_abstract] = ACTIONS(2180), - [anon_sym_ABSTRACT] = ACTIONS(2180), - [anon_sym_Break] = ACTIONS(2180), - [anon_sym_break] = ACTIONS(2180), - [anon_sym_BREAK] = ACTIONS(2180), - [anon_sym_Case] = ACTIONS(2180), - [anon_sym_case] = ACTIONS(2180), - [anon_sym_CASE] = ACTIONS(2180), - [anon_sym_Catch] = ACTIONS(2225), - [anon_sym_catch] = ACTIONS(2225), - [anon_sym_CATCH] = ACTIONS(2225), - [anon_sym_Component] = ACTIONS(2180), - [anon_sym_component] = ACTIONS(2180), - [anon_sym_COMPONENT] = ACTIONS(2180), - [anon_sym_Continue] = ACTIONS(2180), - [anon_sym_continue] = ACTIONS(2180), - [anon_sym_CONTINUE] = ACTIONS(2180), - [anon_sym_Debugger] = ACTIONS(2180), - [anon_sym_debugger] = ACTIONS(2180), - [anon_sym_DEBUGGER] = ACTIONS(2180), - [anon_sym_Default] = ACTIONS(2180), - [anon_sym_default] = ACTIONS(2180), - [anon_sym_DEFAULT] = ACTIONS(2180), - [anon_sym_Do] = ACTIONS(2180), - [anon_sym_do] = ACTIONS(2180), - [anon_sym_DO] = ACTIONS(2180), - [anon_sym_Final] = ACTIONS(2180), - [anon_sym_final] = ACTIONS(2180), - [anon_sym_FINAL] = ACTIONS(2180), - [anon_sym_Finally] = ACTIONS(2180), - [anon_sym_finally] = ACTIONS(2180), - [anon_sym_FINALLY] = ACTIONS(2180), - [anon_sym_For] = ACTIONS(2180), - [anon_sym_for] = ACTIONS(2180), - [anon_sym_FOR] = ACTIONS(2180), - [anon_sym_Function] = ACTIONS(2180), - [anon_sym_function] = ACTIONS(2180), - [anon_sym_FUNCTION] = ACTIONS(2180), - [anon_sym_If] = ACTIONS(2180), - [anon_sym_if] = ACTIONS(2180), - [anon_sym_IF] = ACTIONS(2180), - [anon_sym_Import] = ACTIONS(2180), - [anon_sym_import] = ACTIONS(2180), - [anon_sym_IMPORT] = ACTIONS(2180), - [anon_sym_Include] = ACTIONS(2180), - [anon_sym_include] = ACTIONS(2180), - [anon_sym_INCLUDE] = ACTIONS(2180), - [anon_sym_Interface] = ACTIONS(2180), - [anon_sym_interface] = ACTIONS(2180), - [anon_sym_INTERFACE] = ACTIONS(2180), - [anon_sym_New] = ACTIONS(2180), - [anon_sym_new] = ACTIONS(2180), - [anon_sym_NEW] = ACTIONS(2180), - [anon_sym_Package] = ACTIONS(2180), - [anon_sym_package] = ACTIONS(2180), - [anon_sym_PACKAGE] = ACTIONS(2180), - [anon_sym_Private] = ACTIONS(2180), - [anon_sym_private] = ACTIONS(2180), - [anon_sym_PRIVATE] = ACTIONS(2180), - [anon_sym_Property] = ACTIONS(2180), - [anon_sym_property] = ACTIONS(2180), - [anon_sym_PROPERTY] = ACTIONS(2180), - [anon_sym_Public] = ACTIONS(2180), - [anon_sym_public] = ACTIONS(2180), - [anon_sym_PUBLIC] = ACTIONS(2180), - [anon_sym_Remote] = ACTIONS(2180), - [anon_sym_remote] = ACTIONS(2180), - [anon_sym_REMOTE] = ACTIONS(2180), - [anon_sym_Return] = ACTIONS(2180), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_RETURN] = ACTIONS(2180), - [anon_sym_Static] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_STATIC] = ACTIONS(2180), - [anon_sym_Switch] = ACTIONS(2180), - [anon_sym_switch] = ACTIONS(2180), - [anon_sym_SWITCH] = ACTIONS(2180), - [anon_sym_Throw] = ACTIONS(2180), - [anon_sym_throw] = ACTIONS(2180), - [anon_sym_THROW] = ACTIONS(2180), - [anon_sym_Try] = ACTIONS(2180), - [anon_sym_try] = ACTIONS(2180), - [anon_sym_TRY] = ACTIONS(2180), - [anon_sym_Var] = ACTIONS(2180), - [anon_sym_var] = ACTIONS(2180), - [anon_sym_VAR] = ACTIONS(2180), - [anon_sym_While] = ACTIONS(2180), - [anon_sym_while] = ACTIONS(2180), - [anon_sym_WHILE] = ACTIONS(2180), - [anon_sym_With] = ACTIONS(2180), - [anon_sym_with] = ACTIONS(2180), - [anon_sym_WITH] = ACTIONS(2180), - [sym_cf_comment] = ACTIONS(2178), - [sym__java_block_open] = ACTIONS(2178), - [sym__static_type_prefix] = ACTIONS(2178), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_Query] = ACTIONS(2176), + [anon_sym_query] = ACTIONS(2176), + [anon_sym_QUERY] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [aux_sym_unary_operator_token1] = ACTIONS(2176), + [anon_sym_PLUS_PLUS] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2174), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2176), + [aux_sym_number_token2] = ACTIONS(2174), + [anon_sym_This] = ACTIONS(2176), + [anon_sym_this] = ACTIONS(2176), + [anon_sym_THIS] = ACTIONS(2176), + [anon_sym_Super] = ACTIONS(2176), + [anon_sym_super] = ACTIONS(2176), + [anon_sym_SUPER] = ACTIONS(2176), + [anon_sym_True] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_TRUE] = ACTIONS(2176), + [anon_sym_False] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [anon_sym_FALSE] = ACTIONS(2176), + [anon_sym_Null] = ACTIONS(2176), + [anon_sym_null] = ACTIONS(2176), + [anon_sym_NULL] = ACTIONS(2176), + [anon_sym_Undefined] = ACTIONS(2176), + [anon_sym_undefined] = ACTIONS(2176), + [anon_sym_UNDEFINED] = ACTIONS(2176), + [anon_sym_get] = ACTIONS(2176), + [anon_sym_set] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(2176), + [sym_hash_empty] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2176), + [anon_sym_QueryExecute] = ACTIONS(2176), + [anon_sym_queryexecute] = ACTIONS(2176), + [anon_sym_QUERYEXECUTE] = ACTIONS(2176), + [anon_sym_queryExecute] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2174), + [anon_sym_Abstract] = ACTIONS(2176), + [anon_sym_abstract] = ACTIONS(2176), + [anon_sym_ABSTRACT] = ACTIONS(2176), + [anon_sym_Break] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_BREAK] = ACTIONS(2176), + [anon_sym_Case] = ACTIONS(2176), + [anon_sym_case] = ACTIONS(2176), + [anon_sym_CASE] = ACTIONS(2176), + [anon_sym_Catch] = ACTIONS(2221), + [anon_sym_catch] = ACTIONS(2221), + [anon_sym_CATCH] = ACTIONS(2221), + [anon_sym_Component] = ACTIONS(2176), + [anon_sym_component] = ACTIONS(2176), + [anon_sym_COMPONENT] = ACTIONS(2176), + [anon_sym_Continue] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_CONTINUE] = ACTIONS(2176), + [anon_sym_Debugger] = ACTIONS(2176), + [anon_sym_debugger] = ACTIONS(2176), + [anon_sym_DEBUGGER] = ACTIONS(2176), + [anon_sym_Default] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_DEFAULT] = ACTIONS(2176), + [anon_sym_Do] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_DO] = ACTIONS(2176), + [anon_sym_Final] = ACTIONS(2176), + [anon_sym_final] = ACTIONS(2176), + [anon_sym_FINAL] = ACTIONS(2176), + [anon_sym_Finally] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_FINALLY] = ACTIONS(2176), + [anon_sym_For] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_FOR] = ACTIONS(2176), + [anon_sym_Function] = ACTIONS(2176), + [anon_sym_function] = ACTIONS(2176), + [anon_sym_FUNCTION] = ACTIONS(2176), + [anon_sym_If] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_IF] = ACTIONS(2176), + [anon_sym_Import] = ACTIONS(2176), + [anon_sym_import] = ACTIONS(2176), + [anon_sym_IMPORT] = ACTIONS(2176), + [anon_sym_Include] = ACTIONS(2176), + [anon_sym_include] = ACTIONS(2176), + [anon_sym_INCLUDE] = ACTIONS(2176), + [anon_sym_Interface] = ACTIONS(2176), + [anon_sym_interface] = ACTIONS(2176), + [anon_sym_INTERFACE] = ACTIONS(2176), + [anon_sym_New] = ACTIONS(2176), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_NEW] = ACTIONS(2176), + [anon_sym_Package] = ACTIONS(2176), + [anon_sym_package] = ACTIONS(2176), + [anon_sym_PACKAGE] = ACTIONS(2176), + [anon_sym_Private] = ACTIONS(2176), + [anon_sym_private] = ACTIONS(2176), + [anon_sym_PRIVATE] = ACTIONS(2176), + [anon_sym_Property] = ACTIONS(2176), + [anon_sym_property] = ACTIONS(2176), + [anon_sym_PROPERTY] = ACTIONS(2176), + [anon_sym_Public] = ACTIONS(2176), + [anon_sym_public] = ACTIONS(2176), + [anon_sym_PUBLIC] = ACTIONS(2176), + [anon_sym_Remote] = ACTIONS(2176), + [anon_sym_remote] = ACTIONS(2176), + [anon_sym_REMOTE] = ACTIONS(2176), + [anon_sym_Return] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_RETURN] = ACTIONS(2176), + [anon_sym_Static] = ACTIONS(2176), + [anon_sym_static] = ACTIONS(2176), + [anon_sym_STATIC] = ACTIONS(2176), + [anon_sym_Switch] = ACTIONS(2176), + [anon_sym_switch] = ACTIONS(2176), + [anon_sym_SWITCH] = ACTIONS(2176), + [anon_sym_Throw] = ACTIONS(2176), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_THROW] = ACTIONS(2176), + [anon_sym_Try] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_TRY] = ACTIONS(2176), + [anon_sym_Var] = ACTIONS(2176), + [anon_sym_var] = ACTIONS(2176), + [anon_sym_VAR] = ACTIONS(2176), + [anon_sym_While] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_WHILE] = ACTIONS(2176), + [anon_sym_With] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_WITH] = ACTIONS(2176), + [sym_cf_comment] = ACTIONS(2174), + [sym__java_block_open] = ACTIONS(2174), + [sym__static_type_prefix] = ACTIONS(2174), }, [STATE(442)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_Query] = ACTIONS(2015), - [anon_sym_query] = ACTIONS(2015), - [anon_sym_QUERY] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2015), - [sym_optional_chain] = ACTIONS(2023), - [sym_static_chain] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_GT_GT_GT] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_STAR_STAR] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2023), - [anon_sym_LT_GT] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2023), - [aux_sym_binary_expression_token1] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2015), - [aux_sym_binary_expression_token2] = ACTIONS(2015), - [aux_sym_binary_expression_token3] = ACTIONS(2015), - [aux_sym_binary_expression_token4] = ACTIONS(2023), - [aux_sym_binary_expression_token5] = ACTIONS(2023), - [aux_sym_binary_expression_token6] = ACTIONS(2023), - [anon_sym_QMARK_QMARK] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2023), - [aux_sym_unary_operator_token1] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2015), - [aux_sym_number_token2] = ACTIONS(2015), - [anon_sym_This] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(2015), - [anon_sym_THIS] = ACTIONS(2015), - [anon_sym_Super] = ACTIONS(2015), - [anon_sym_super] = ACTIONS(2015), - [anon_sym_SUPER] = ACTIONS(2015), - [anon_sym_True] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_TRUE] = ACTIONS(2015), - [anon_sym_False] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_FALSE] = ACTIONS(2015), - [anon_sym_Null] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [anon_sym_NULL] = ACTIONS(2015), - [anon_sym_Undefined] = ACTIONS(2015), - [anon_sym_undefined] = ACTIONS(2015), - [anon_sym_UNDEFINED] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(2015), - [anon_sym_set] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(2015), - [sym_hash_empty] = ACTIONS(2023), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_QueryExecute] = ACTIONS(2015), - [anon_sym_queryexecute] = ACTIONS(2015), - [anon_sym_QUERYEXECUTE] = ACTIONS(2015), - [anon_sym_queryExecute] = ACTIONS(2015), - [anon_sym_BQUOTE] = ACTIONS(2023), - [anon_sym_Abstract] = ACTIONS(2015), - [anon_sym_abstract] = ACTIONS(2015), - [anon_sym_ABSTRACT] = ACTIONS(2015), - [anon_sym_Component] = ACTIONS(2015), - [anon_sym_component] = ACTIONS(2015), - [anon_sym_COMPONENT] = ACTIONS(2015), - [anon_sym_Debugger] = ACTIONS(2015), - [anon_sym_debugger] = ACTIONS(2015), - [anon_sym_DEBUGGER] = ACTIONS(2015), - [anon_sym_Final] = ACTIONS(2015), - [anon_sym_final] = ACTIONS(2015), - [anon_sym_FINAL] = ACTIONS(2015), - [anon_sym_Function] = ACTIONS(2015), - [anon_sym_function] = ACTIONS(2015), - [anon_sym_FUNCTION] = ACTIONS(2015), - [anon_sym_In] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_IN] = ACTIONS(2015), - [anon_sym_Include] = ACTIONS(2015), - [anon_sym_include] = ACTIONS(2015), - [anon_sym_INCLUDE] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2015), - [anon_sym_instanceof] = ACTIONS(2015), - [anon_sym_INSTANCEOF] = ACTIONS(2015), - [anon_sym_instanceOf] = ACTIONS(2015), - [anon_sym_New] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_NEW] = ACTIONS(2015), - [anon_sym_Package] = ACTIONS(2015), - [anon_sym_package] = ACTIONS(2015), - [anon_sym_PACKAGE] = ACTIONS(2015), - [anon_sym_Private] = ACTIONS(2015), - [anon_sym_private] = ACTIONS(2015), - [anon_sym_PRIVATE] = ACTIONS(2015), - [anon_sym_Public] = ACTIONS(2015), - [anon_sym_public] = ACTIONS(2015), - [anon_sym_PUBLIC] = ACTIONS(2015), - [anon_sym_Remote] = ACTIONS(2015), - [anon_sym_remote] = ACTIONS(2015), - [anon_sym_REMOTE] = ACTIONS(2015), - [anon_sym_Static] = ACTIONS(2015), - [anon_sym_static] = ACTIONS(2015), - [anon_sym_STATIC] = ACTIONS(2015), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2023), - [sym__elvis_operator] = ACTIONS(2023), - [sym_logical_or] = ACTIONS(2023), - [sym_tag_linefeed] = ACTIONS(2023), - [sym__java_block_open] = ACTIONS(2023), - [sym__static_type_prefix] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_COLON] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_Query] = ACTIONS(2224), + [anon_sym_query] = ACTIONS(2224), + [anon_sym_QUERY] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2224), + [sym_optional_chain] = ACTIONS(2226), + [sym_static_chain] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2226), + [anon_sym_PIPE_PIPE] = ACTIONS(2226), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2226), + [anon_sym_BSLASH] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2226), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2226), + [anon_sym_LT_GT] = ACTIONS(2226), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2226), + [aux_sym_binary_expression_token1] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2224), + [aux_sym_binary_expression_token2] = ACTIONS(2224), + [aux_sym_binary_expression_token3] = ACTIONS(2224), + [aux_sym_binary_expression_token4] = ACTIONS(2226), + [aux_sym_binary_expression_token5] = ACTIONS(2226), + [aux_sym_binary_expression_token6] = ACTIONS(2226), + [anon_sym_QMARK_QMARK] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2226), + [aux_sym_unary_operator_token1] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2224), + [aux_sym_number_token2] = ACTIONS(2224), + [anon_sym_This] = ACTIONS(2224), + [anon_sym_this] = ACTIONS(2224), + [anon_sym_THIS] = ACTIONS(2224), + [anon_sym_Super] = ACTIONS(2224), + [anon_sym_super] = ACTIONS(2224), + [anon_sym_SUPER] = ACTIONS(2224), + [anon_sym_True] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2224), + [anon_sym_TRUE] = ACTIONS(2224), + [anon_sym_False] = ACTIONS(2224), + [anon_sym_false] = ACTIONS(2224), + [anon_sym_FALSE] = ACTIONS(2224), + [anon_sym_Null] = ACTIONS(2224), + [anon_sym_null] = ACTIONS(2224), + [anon_sym_NULL] = ACTIONS(2224), + [anon_sym_Undefined] = ACTIONS(2224), + [anon_sym_undefined] = ACTIONS(2224), + [anon_sym_UNDEFINED] = ACTIONS(2224), + [anon_sym_get] = ACTIONS(2224), + [anon_sym_set] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [sym_hash_empty] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_QueryExecute] = ACTIONS(2224), + [anon_sym_queryexecute] = ACTIONS(2224), + [anon_sym_QUERYEXECUTE] = ACTIONS(2224), + [anon_sym_queryExecute] = ACTIONS(2224), + [anon_sym_BQUOTE] = ACTIONS(2226), + [anon_sym_Abstract] = ACTIONS(2224), + [anon_sym_abstract] = ACTIONS(2224), + [anon_sym_ABSTRACT] = ACTIONS(2224), + [anon_sym_Component] = ACTIONS(2224), + [anon_sym_component] = ACTIONS(2224), + [anon_sym_COMPONENT] = ACTIONS(2224), + [anon_sym_Debugger] = ACTIONS(2224), + [anon_sym_debugger] = ACTIONS(2224), + [anon_sym_DEBUGGER] = ACTIONS(2224), + [anon_sym_Final] = ACTIONS(2224), + [anon_sym_final] = ACTIONS(2224), + [anon_sym_FINAL] = ACTIONS(2224), + [anon_sym_Function] = ACTIONS(2224), + [anon_sym_function] = ACTIONS(2224), + [anon_sym_FUNCTION] = ACTIONS(2224), + [anon_sym_In] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_IN] = ACTIONS(2224), + [anon_sym_Include] = ACTIONS(2224), + [anon_sym_include] = ACTIONS(2224), + [anon_sym_INCLUDE] = ACTIONS(2224), + [anon_sym_InstanceOf] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_INSTANCEOF] = ACTIONS(2224), + [anon_sym_instanceOf] = ACTIONS(2224), + [anon_sym_New] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_NEW] = ACTIONS(2224), + [anon_sym_Package] = ACTIONS(2224), + [anon_sym_package] = ACTIONS(2224), + [anon_sym_PACKAGE] = ACTIONS(2224), + [anon_sym_Private] = ACTIONS(2224), + [anon_sym_private] = ACTIONS(2224), + [anon_sym_PRIVATE] = ACTIONS(2224), + [anon_sym_Public] = ACTIONS(2224), + [anon_sym_public] = ACTIONS(2224), + [anon_sym_PUBLIC] = ACTIONS(2224), + [anon_sym_Remote] = ACTIONS(2224), + [anon_sym_remote] = ACTIONS(2224), + [anon_sym_REMOTE] = ACTIONS(2224), + [anon_sym_Static] = ACTIONS(2224), + [anon_sym_static] = ACTIONS(2224), + [anon_sym_STATIC] = ACTIONS(2224), + [sym__automatic_semicolon] = ACTIONS(2226), + [sym__ternary_qmark] = ACTIONS(2226), + [sym__elvis_operator] = ACTIONS(2226), + [sym_logical_or] = ACTIONS(2226), + [sym_tag_linefeed] = ACTIONS(2226), + [sym__java_block_open] = ACTIONS(2226), + [sym__static_type_prefix] = ACTIONS(2226), }, [STATE(443)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Catch] = ACTIONS(1686), - [anon_sym_catch] = ACTIONS(1686), - [anon_sym_CATCH] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_Finally] = ACTIONS(1686), - [anon_sym_finally] = ACTIONS(1686), - [anon_sym_FINALLY] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(2228), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [sym_identifier] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_Query] = ACTIONS(2228), + [anon_sym_query] = ACTIONS(2228), + [anon_sym_QUERY] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2230), + [aux_sym_unary_operator_token1] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2228), + [aux_sym_number_token2] = ACTIONS(2228), + [anon_sym_This] = ACTIONS(2228), + [anon_sym_this] = ACTIONS(2228), + [anon_sym_THIS] = ACTIONS(2228), + [anon_sym_Super] = ACTIONS(2228), + [anon_sym_super] = ACTIONS(2228), + [anon_sym_SUPER] = ACTIONS(2228), + [anon_sym_True] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_TRUE] = ACTIONS(2228), + [anon_sym_False] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_FALSE] = ACTIONS(2228), + [anon_sym_Null] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [anon_sym_NULL] = ACTIONS(2228), + [anon_sym_Undefined] = ACTIONS(2228), + [anon_sym_undefined] = ACTIONS(2228), + [anon_sym_UNDEFINED] = ACTIONS(2228), + [anon_sym_get] = ACTIONS(2228), + [anon_sym_set] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(2228), + [sym_hash_empty] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_QueryExecute] = ACTIONS(2228), + [anon_sym_queryexecute] = ACTIONS(2228), + [anon_sym_QUERYEXECUTE] = ACTIONS(2228), + [anon_sym_queryExecute] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_Abstract] = ACTIONS(2228), + [anon_sym_abstract] = ACTIONS(2228), + [anon_sym_ABSTRACT] = ACTIONS(2228), + [anon_sym_Component] = ACTIONS(2228), + [anon_sym_component] = ACTIONS(2228), + [anon_sym_COMPONENT] = ACTIONS(2228), + [anon_sym_Debugger] = ACTIONS(2228), + [anon_sym_debugger] = ACTIONS(2228), + [anon_sym_DEBUGGER] = ACTIONS(2228), + [anon_sym_Final] = ACTIONS(2228), + [anon_sym_final] = ACTIONS(2228), + [anon_sym_FINAL] = ACTIONS(2228), + [anon_sym_Function] = ACTIONS(2228), + [anon_sym_function] = ACTIONS(2228), + [anon_sym_FUNCTION] = ACTIONS(2228), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_Include] = ACTIONS(2228), + [anon_sym_include] = ACTIONS(2228), + [anon_sym_INCLUDE] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_INSTANCEOF] = ACTIONS(2228), + [anon_sym_instanceOf] = ACTIONS(2228), + [anon_sym_New] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2228), + [anon_sym_NEW] = ACTIONS(2228), + [anon_sym_Package] = ACTIONS(2228), + [anon_sym_package] = ACTIONS(2228), + [anon_sym_PACKAGE] = ACTIONS(2228), + [anon_sym_Private] = ACTIONS(2228), + [anon_sym_private] = ACTIONS(2228), + [anon_sym_PRIVATE] = ACTIONS(2228), + [anon_sym_Public] = ACTIONS(2228), + [anon_sym_public] = ACTIONS(2228), + [anon_sym_PUBLIC] = ACTIONS(2228), + [anon_sym_Remote] = ACTIONS(2228), + [anon_sym_remote] = ACTIONS(2228), + [anon_sym_REMOTE] = ACTIONS(2228), + [anon_sym_Static] = ACTIONS(2228), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_STATIC] = ACTIONS(2228), + [sym__automatic_semicolon] = ACTIONS(2230), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), + [sym_tag_linefeed] = ACTIONS(2230), + [sym__java_block_open] = ACTIONS(2230), + [sym__static_type_prefix] = ACTIONS(2230), }, [STATE(444)] = { - [sym_arguments] = STATE(456), - [sym_identifier] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_Query] = ACTIONS(2230), - [anon_sym_query] = ACTIONS(2230), - [anon_sym_QUERY] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2233), - [aux_sym_unary_operator_token1] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2230), - [aux_sym_number_token2] = ACTIONS(2230), - [anon_sym_This] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2230), - [anon_sym_THIS] = ACTIONS(2230), - [anon_sym_Super] = ACTIONS(2230), - [anon_sym_super] = ACTIONS(2230), - [anon_sym_SUPER] = ACTIONS(2230), - [anon_sym_True] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_TRUE] = ACTIONS(2230), - [anon_sym_False] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [anon_sym_FALSE] = ACTIONS(2230), - [anon_sym_Null] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2230), - [anon_sym_NULL] = ACTIONS(2230), - [anon_sym_Undefined] = ACTIONS(2230), - [anon_sym_undefined] = ACTIONS(2230), - [anon_sym_UNDEFINED] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [sym_hash_empty] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_QueryExecute] = ACTIONS(2230), - [anon_sym_queryexecute] = ACTIONS(2230), - [anon_sym_QUERYEXECUTE] = ACTIONS(2230), - [anon_sym_queryExecute] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2233), - [anon_sym_Abstract] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_ABSTRACT] = ACTIONS(2230), - [anon_sym_Component] = ACTIONS(2230), - [anon_sym_component] = ACTIONS(2230), - [anon_sym_COMPONENT] = ACTIONS(2230), - [anon_sym_Debugger] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_DEBUGGER] = ACTIONS(2230), - [anon_sym_Final] = ACTIONS(2230), - [anon_sym_final] = ACTIONS(2230), - [anon_sym_FINAL] = ACTIONS(2230), - [anon_sym_Function] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_FUNCTION] = ACTIONS(2230), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_Include] = ACTIONS(2230), - [anon_sym_include] = ACTIONS(2230), - [anon_sym_INCLUDE] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_INSTANCEOF] = ACTIONS(2230), - [anon_sym_instanceOf] = ACTIONS(2230), - [anon_sym_New] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_NEW] = ACTIONS(2230), - [anon_sym_Package] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2230), - [anon_sym_PACKAGE] = ACTIONS(2230), - [anon_sym_Private] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_PRIVATE] = ACTIONS(2230), - [anon_sym_Public] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_PUBLIC] = ACTIONS(2230), - [anon_sym_Remote] = ACTIONS(2230), - [anon_sym_remote] = ACTIONS(2230), - [anon_sym_REMOTE] = ACTIONS(2230), - [anon_sym_Static] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_STATIC] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2233), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), - [sym_tag_linefeed] = ACTIONS(2233), - [sym__java_block_open] = ACTIONS(2233), - [sym__static_type_prefix] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_Query] = ACTIONS(2232), + [anon_sym_query] = ACTIONS(2232), + [anon_sym_QUERY] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2234), + [aux_sym_unary_operator_token1] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2232), + [aux_sym_number_token2] = ACTIONS(2232), + [anon_sym_This] = ACTIONS(2232), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_THIS] = ACTIONS(2232), + [anon_sym_Super] = ACTIONS(2232), + [anon_sym_super] = ACTIONS(2232), + [anon_sym_SUPER] = ACTIONS(2232), + [anon_sym_True] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_TRUE] = ACTIONS(2232), + [anon_sym_False] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_FALSE] = ACTIONS(2232), + [anon_sym_Null] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [anon_sym_NULL] = ACTIONS(2232), + [anon_sym_Undefined] = ACTIONS(2232), + [anon_sym_undefined] = ACTIONS(2232), + [anon_sym_UNDEFINED] = ACTIONS(2232), + [anon_sym_get] = ACTIONS(2232), + [anon_sym_set] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [sym_hash_empty] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2232), + [anon_sym_QueryExecute] = ACTIONS(2232), + [anon_sym_queryexecute] = ACTIONS(2232), + [anon_sym_QUERYEXECUTE] = ACTIONS(2232), + [anon_sym_queryExecute] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2234), + [anon_sym_Abstract] = ACTIONS(2232), + [anon_sym_abstract] = ACTIONS(2232), + [anon_sym_ABSTRACT] = ACTIONS(2232), + [anon_sym_Component] = ACTIONS(2232), + [anon_sym_component] = ACTIONS(2232), + [anon_sym_COMPONENT] = ACTIONS(2232), + [anon_sym_Debugger] = ACTIONS(2232), + [anon_sym_debugger] = ACTIONS(2232), + [anon_sym_DEBUGGER] = ACTIONS(2232), + [anon_sym_Final] = ACTIONS(2232), + [anon_sym_final] = ACTIONS(2232), + [anon_sym_FINAL] = ACTIONS(2232), + [anon_sym_Function] = ACTIONS(2232), + [anon_sym_function] = ACTIONS(2232), + [anon_sym_FUNCTION] = ACTIONS(2232), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_Include] = ACTIONS(2232), + [anon_sym_include] = ACTIONS(2232), + [anon_sym_INCLUDE] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [anon_sym_New] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_NEW] = ACTIONS(2232), + [anon_sym_Package] = ACTIONS(2232), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_PACKAGE] = ACTIONS(2232), + [anon_sym_Private] = ACTIONS(2232), + [anon_sym_private] = ACTIONS(2232), + [anon_sym_PRIVATE] = ACTIONS(2232), + [anon_sym_Public] = ACTIONS(2232), + [anon_sym_public] = ACTIONS(2232), + [anon_sym_PUBLIC] = ACTIONS(2232), + [anon_sym_Remote] = ACTIONS(2232), + [anon_sym_remote] = ACTIONS(2232), + [anon_sym_REMOTE] = ACTIONS(2232), + [anon_sym_Static] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_STATIC] = ACTIONS(2232), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym_tag_linefeed] = ACTIONS(2234), + [sym__java_block_open] = ACTIONS(2234), + [sym__static_type_prefix] = ACTIONS(2234), }, [STATE(445)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_Query] = ACTIONS(2238), - [anon_sym_query] = ACTIONS(2238), - [anon_sym_QUERY] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2240), - [aux_sym_unary_operator_token1] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2238), - [aux_sym_number_token2] = ACTIONS(2238), - [anon_sym_This] = ACTIONS(2238), - [anon_sym_this] = ACTIONS(2238), - [anon_sym_THIS] = ACTIONS(2238), - [anon_sym_Super] = ACTIONS(2238), - [anon_sym_super] = ACTIONS(2238), - [anon_sym_SUPER] = ACTIONS(2238), - [anon_sym_True] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_TRUE] = ACTIONS(2238), - [anon_sym_False] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_FALSE] = ACTIONS(2238), - [anon_sym_Null] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_NULL] = ACTIONS(2238), - [anon_sym_Undefined] = ACTIONS(2238), - [anon_sym_undefined] = ACTIONS(2238), - [anon_sym_UNDEFINED] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [sym_hash_empty] = ACTIONS(2240), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_QueryExecute] = ACTIONS(2238), - [anon_sym_queryexecute] = ACTIONS(2238), - [anon_sym_QUERYEXECUTE] = ACTIONS(2238), - [anon_sym_queryExecute] = ACTIONS(2238), - [anon_sym_BQUOTE] = ACTIONS(2240), - [anon_sym_Abstract] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_ABSTRACT] = ACTIONS(2238), - [anon_sym_Component] = ACTIONS(2238), - [anon_sym_component] = ACTIONS(2238), - [anon_sym_COMPONENT] = ACTIONS(2238), - [anon_sym_Debugger] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_DEBUGGER] = ACTIONS(2238), - [anon_sym_Final] = ACTIONS(2238), - [anon_sym_final] = ACTIONS(2238), - [anon_sym_FINAL] = ACTIONS(2238), - [anon_sym_Function] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_FUNCTION] = ACTIONS(2238), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_Include] = ACTIONS(2238), - [anon_sym_include] = ACTIONS(2238), - [anon_sym_INCLUDE] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [anon_sym_New] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_NEW] = ACTIONS(2238), - [anon_sym_Package] = ACTIONS(2238), - [anon_sym_package] = ACTIONS(2238), - [anon_sym_PACKAGE] = ACTIONS(2238), - [anon_sym_Private] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_PRIVATE] = ACTIONS(2238), - [anon_sym_Public] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_PUBLIC] = ACTIONS(2238), - [anon_sym_Remote] = ACTIONS(2238), - [anon_sym_remote] = ACTIONS(2238), - [anon_sym_REMOTE] = ACTIONS(2238), - [anon_sym_Static] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_STATIC] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym_tag_linefeed] = ACTIONS(2240), - [sym__java_block_open] = ACTIONS(2240), - [sym__static_type_prefix] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_Query] = ACTIONS(2236), + [anon_sym_query] = ACTIONS(2236), + [anon_sym_QUERY] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2238), + [aux_sym_unary_operator_token1] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2236), + [aux_sym_number_token2] = ACTIONS(2236), + [anon_sym_This] = ACTIONS(2236), + [anon_sym_this] = ACTIONS(2236), + [anon_sym_THIS] = ACTIONS(2236), + [anon_sym_Super] = ACTIONS(2236), + [anon_sym_super] = ACTIONS(2236), + [anon_sym_SUPER] = ACTIONS(2236), + [anon_sym_True] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2236), + [anon_sym_TRUE] = ACTIONS(2236), + [anon_sym_False] = ACTIONS(2236), + [anon_sym_false] = ACTIONS(2236), + [anon_sym_FALSE] = ACTIONS(2236), + [anon_sym_Null] = ACTIONS(2236), + [anon_sym_null] = ACTIONS(2236), + [anon_sym_NULL] = ACTIONS(2236), + [anon_sym_Undefined] = ACTIONS(2236), + [anon_sym_undefined] = ACTIONS(2236), + [anon_sym_UNDEFINED] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(2236), + [sym_hash_empty] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_QueryExecute] = ACTIONS(2236), + [anon_sym_queryexecute] = ACTIONS(2236), + [anon_sym_QUERYEXECUTE] = ACTIONS(2236), + [anon_sym_queryExecute] = ACTIONS(2236), + [anon_sym_BQUOTE] = ACTIONS(2238), + [anon_sym_Abstract] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_ABSTRACT] = ACTIONS(2236), + [anon_sym_Component] = ACTIONS(2236), + [anon_sym_component] = ACTIONS(2236), + [anon_sym_COMPONENT] = ACTIONS(2236), + [anon_sym_Debugger] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_DEBUGGER] = ACTIONS(2236), + [anon_sym_Final] = ACTIONS(2236), + [anon_sym_final] = ACTIONS(2236), + [anon_sym_FINAL] = ACTIONS(2236), + [anon_sym_Function] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_FUNCTION] = ACTIONS(2236), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_Include] = ACTIONS(2236), + [anon_sym_include] = ACTIONS(2236), + [anon_sym_INCLUDE] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_INSTANCEOF] = ACTIONS(2236), + [anon_sym_instanceOf] = ACTIONS(2236), + [anon_sym_New] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_NEW] = ACTIONS(2236), + [anon_sym_Package] = ACTIONS(2236), + [anon_sym_package] = ACTIONS(2236), + [anon_sym_PACKAGE] = ACTIONS(2236), + [anon_sym_Private] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_PRIVATE] = ACTIONS(2236), + [anon_sym_Public] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_PUBLIC] = ACTIONS(2236), + [anon_sym_Remote] = ACTIONS(2236), + [anon_sym_remote] = ACTIONS(2236), + [anon_sym_REMOTE] = ACTIONS(2236), + [anon_sym_Static] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_STATIC] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2238), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), + [sym_tag_linefeed] = ACTIONS(2238), + [sym__java_block_open] = ACTIONS(2238), + [sym__static_type_prefix] = ACTIONS(2238), }, [STATE(446)] = { + [sym_identifier] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_Query] = ACTIONS(2240), + [anon_sym_query] = ACTIONS(2240), + [anon_sym_QUERY] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2240), + [sym_optional_chain] = ACTIONS(2242), + [sym_static_chain] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2242), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2242), + [aux_sym_binary_expression_token1] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2240), + [aux_sym_binary_expression_token2] = ACTIONS(2240), + [aux_sym_binary_expression_token3] = ACTIONS(2240), + [aux_sym_binary_expression_token4] = ACTIONS(2242), + [aux_sym_binary_expression_token5] = ACTIONS(2242), + [aux_sym_binary_expression_token6] = ACTIONS(2242), + [anon_sym_QMARK_QMARK] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2242), + [aux_sym_unary_operator_token1] = ACTIONS(2240), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2240), + [aux_sym_number_token2] = ACTIONS(2240), + [anon_sym_This] = ACTIONS(2240), + [anon_sym_this] = ACTIONS(2240), + [anon_sym_THIS] = ACTIONS(2240), + [anon_sym_Super] = ACTIONS(2240), + [anon_sym_super] = ACTIONS(2240), + [anon_sym_SUPER] = ACTIONS(2240), + [anon_sym_True] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2240), + [anon_sym_TRUE] = ACTIONS(2240), + [anon_sym_False] = ACTIONS(2240), + [anon_sym_false] = ACTIONS(2240), + [anon_sym_FALSE] = ACTIONS(2240), + [anon_sym_Null] = ACTIONS(2240), + [anon_sym_null] = ACTIONS(2240), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_Undefined] = ACTIONS(2240), + [anon_sym_undefined] = ACTIONS(2240), + [anon_sym_UNDEFINED] = ACTIONS(2240), + [anon_sym_get] = ACTIONS(2240), + [anon_sym_set] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2240), + [sym_hash_empty] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_QueryExecute] = ACTIONS(2240), + [anon_sym_queryexecute] = ACTIONS(2240), + [anon_sym_QUERYEXECUTE] = ACTIONS(2240), + [anon_sym_queryExecute] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_Abstract] = ACTIONS(2240), + [anon_sym_abstract] = ACTIONS(2240), + [anon_sym_ABSTRACT] = ACTIONS(2240), + [anon_sym_Component] = ACTIONS(2240), + [anon_sym_component] = ACTIONS(2240), + [anon_sym_COMPONENT] = ACTIONS(2240), + [anon_sym_Debugger] = ACTIONS(2240), + [anon_sym_debugger] = ACTIONS(2240), + [anon_sym_DEBUGGER] = ACTIONS(2240), + [anon_sym_Final] = ACTIONS(2240), + [anon_sym_final] = ACTIONS(2240), + [anon_sym_FINAL] = ACTIONS(2240), + [anon_sym_Function] = ACTIONS(2240), + [anon_sym_function] = ACTIONS(2240), + [anon_sym_FUNCTION] = ACTIONS(2240), + [anon_sym_In] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_IN] = ACTIONS(2240), + [anon_sym_Include] = ACTIONS(2240), + [anon_sym_include] = ACTIONS(2240), + [anon_sym_INCLUDE] = ACTIONS(2240), + [anon_sym_InstanceOf] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_INSTANCEOF] = ACTIONS(2240), + [anon_sym_instanceOf] = ACTIONS(2240), + [anon_sym_New] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_NEW] = ACTIONS(2240), + [anon_sym_Package] = ACTIONS(2240), + [anon_sym_package] = ACTIONS(2240), + [anon_sym_PACKAGE] = ACTIONS(2240), + [anon_sym_Private] = ACTIONS(2240), + [anon_sym_private] = ACTIONS(2240), + [anon_sym_PRIVATE] = ACTIONS(2240), + [anon_sym_Public] = ACTIONS(2240), + [anon_sym_public] = ACTIONS(2240), + [anon_sym_PUBLIC] = ACTIONS(2240), + [anon_sym_Remote] = ACTIONS(2240), + [anon_sym_remote] = ACTIONS(2240), + [anon_sym_REMOTE] = ACTIONS(2240), + [anon_sym_Static] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_STATIC] = ACTIONS(2240), + [sym__automatic_semicolon] = ACTIONS(2242), + [sym__ternary_qmark] = ACTIONS(2242), + [sym__elvis_operator] = ACTIONS(2242), + [sym_logical_or] = ACTIONS(2242), + [sym_tag_linefeed] = ACTIONS(2242), + [sym__java_block_open] = ACTIONS(2242), + [sym__static_type_prefix] = ACTIONS(2242), + }, + [STATE(447)] = { [sym_identifier] = ACTIONS(2244), [anon_sym_DOT] = ACTIONS(2246), [anon_sym_STAR] = ACTIONS(2244), @@ -113328,7 +113589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2246), [anon_sym_SEMI] = ACTIONS(2246), [anon_sym_let] = ACTIONS(2244), - [anon_sym_EQ] = ACTIONS(2248), + [anon_sym_COLON] = ACTIONS(2244), [anon_sym_LBRACK] = ACTIONS(2246), [anon_sym_Query] = ACTIONS(2244), [anon_sym_query] = ACTIONS(2244), @@ -113471,150 +113732,758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2246), [sym__static_type_prefix] = ACTIONS(2246), }, - [STATE(447)] = { - [sym_arguments] = STATE(456), - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2250), + [STATE(448)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_Query] = ACTIONS(1947), + [anon_sym_query] = ACTIONS(1947), + [anon_sym_QUERY] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1947), + [sym_optional_chain] = ACTIONS(1955), + [sym_static_chain] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_BSLASH] = ACTIONS(1947), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_LT_GT] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [aux_sym_binary_expression_token1] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1947), + [aux_sym_binary_expression_token2] = ACTIONS(1947), + [aux_sym_binary_expression_token3] = ACTIONS(1947), + [aux_sym_binary_expression_token4] = ACTIONS(1955), + [aux_sym_binary_expression_token5] = ACTIONS(1955), + [aux_sym_binary_expression_token6] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1955), + [aux_sym_unary_operator_token1] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1947), + [aux_sym_number_token2] = ACTIONS(1947), + [anon_sym_This] = ACTIONS(1947), + [anon_sym_this] = ACTIONS(1947), + [anon_sym_THIS] = ACTIONS(1947), + [anon_sym_Super] = ACTIONS(1947), + [anon_sym_super] = ACTIONS(1947), + [anon_sym_SUPER] = ACTIONS(1947), + [anon_sym_True] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_TRUE] = ACTIONS(1947), + [anon_sym_False] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_FALSE] = ACTIONS(1947), + [anon_sym_Null] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_Undefined] = ACTIONS(1947), + [anon_sym_undefined] = ACTIONS(1947), + [anon_sym_UNDEFINED] = ACTIONS(1947), + [anon_sym_get] = ACTIONS(1947), + [anon_sym_set] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1947), + [sym_hash_empty] = ACTIONS(1955), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_QueryExecute] = ACTIONS(1947), + [anon_sym_queryexecute] = ACTIONS(1947), + [anon_sym_QUERYEXECUTE] = ACTIONS(1947), + [anon_sym_queryExecute] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1955), + [anon_sym_Abstract] = ACTIONS(1947), + [anon_sym_abstract] = ACTIONS(1947), + [anon_sym_ABSTRACT] = ACTIONS(1947), + [anon_sym_Component] = ACTIONS(1947), + [anon_sym_component] = ACTIONS(1947), + [anon_sym_COMPONENT] = ACTIONS(1947), + [anon_sym_Debugger] = ACTIONS(1947), + [anon_sym_debugger] = ACTIONS(1947), + [anon_sym_DEBUGGER] = ACTIONS(1947), + [anon_sym_Final] = ACTIONS(1947), + [anon_sym_final] = ACTIONS(1947), + [anon_sym_FINAL] = ACTIONS(1947), + [anon_sym_Function] = ACTIONS(1947), + [anon_sym_function] = ACTIONS(1947), + [anon_sym_FUNCTION] = ACTIONS(1947), + [anon_sym_In] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_IN] = ACTIONS(1947), + [anon_sym_Include] = ACTIONS(1947), + [anon_sym_include] = ACTIONS(1947), + [anon_sym_INCLUDE] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1947), + [anon_sym_instanceof] = ACTIONS(1947), + [anon_sym_INSTANCEOF] = ACTIONS(1947), + [anon_sym_instanceOf] = ACTIONS(1947), + [anon_sym_New] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_NEW] = ACTIONS(1947), + [anon_sym_Package] = ACTIONS(1947), + [anon_sym_package] = ACTIONS(1947), + [anon_sym_PACKAGE] = ACTIONS(1947), + [anon_sym_Private] = ACTIONS(1947), + [anon_sym_private] = ACTIONS(1947), + [anon_sym_PRIVATE] = ACTIONS(1947), + [anon_sym_Public] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_PUBLIC] = ACTIONS(1947), + [anon_sym_Remote] = ACTIONS(1947), + [anon_sym_remote] = ACTIONS(1947), + [anon_sym_REMOTE] = ACTIONS(1947), + [anon_sym_Static] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_STATIC] = ACTIONS(1947), + [sym__automatic_semicolon] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1955), + [sym__elvis_operator] = ACTIONS(1955), + [sym_logical_or] = ACTIONS(1955), + [sym_tag_linefeed] = ACTIONS(1955), + [sym__java_block_open] = ACTIONS(1955), + [sym__static_type_prefix] = ACTIONS(1955), + }, + [STATE(449)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_Query] = ACTIONS(2232), + [anon_sym_query] = ACTIONS(2232), + [anon_sym_QUERY] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2234), + [aux_sym_unary_operator_token1] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2232), + [aux_sym_number_token2] = ACTIONS(2232), + [anon_sym_This] = ACTIONS(2232), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_THIS] = ACTIONS(2232), + [anon_sym_Super] = ACTIONS(2232), + [anon_sym_super] = ACTIONS(2232), + [anon_sym_SUPER] = ACTIONS(2232), + [anon_sym_True] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_TRUE] = ACTIONS(2232), + [anon_sym_False] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_FALSE] = ACTIONS(2232), + [anon_sym_Null] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [anon_sym_NULL] = ACTIONS(2232), + [anon_sym_Undefined] = ACTIONS(2232), + [anon_sym_undefined] = ACTIONS(2232), + [anon_sym_UNDEFINED] = ACTIONS(2232), + [anon_sym_get] = ACTIONS(2232), + [anon_sym_set] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [sym_hash_empty] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2232), + [anon_sym_QueryExecute] = ACTIONS(2232), + [anon_sym_queryexecute] = ACTIONS(2232), + [anon_sym_QUERYEXECUTE] = ACTIONS(2232), + [anon_sym_queryExecute] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2234), + [anon_sym_Abstract] = ACTIONS(2232), + [anon_sym_abstract] = ACTIONS(2232), + [anon_sym_ABSTRACT] = ACTIONS(2232), + [anon_sym_Component] = ACTIONS(2232), + [anon_sym_component] = ACTIONS(2232), + [anon_sym_COMPONENT] = ACTIONS(2232), + [anon_sym_Debugger] = ACTIONS(2232), + [anon_sym_debugger] = ACTIONS(2232), + [anon_sym_DEBUGGER] = ACTIONS(2232), + [anon_sym_Final] = ACTIONS(2232), + [anon_sym_final] = ACTIONS(2232), + [anon_sym_FINAL] = ACTIONS(2232), + [anon_sym_Function] = ACTIONS(2232), + [anon_sym_function] = ACTIONS(2232), + [anon_sym_FUNCTION] = ACTIONS(2232), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_Include] = ACTIONS(2232), + [anon_sym_include] = ACTIONS(2232), + [anon_sym_INCLUDE] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [anon_sym_New] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_NEW] = ACTIONS(2232), + [anon_sym_Package] = ACTIONS(2232), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_PACKAGE] = ACTIONS(2232), + [anon_sym_Private] = ACTIONS(2232), + [anon_sym_private] = ACTIONS(2232), + [anon_sym_PRIVATE] = ACTIONS(2232), + [anon_sym_Public] = ACTIONS(2232), + [anon_sym_public] = ACTIONS(2232), + [anon_sym_PUBLIC] = ACTIONS(2232), + [anon_sym_Remote] = ACTIONS(2232), + [anon_sym_remote] = ACTIONS(2232), + [anon_sym_REMOTE] = ACTIONS(2232), + [anon_sym_Static] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_STATIC] = ACTIONS(2232), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym_tag_linefeed] = ACTIONS(2234), + [sym__java_block_open] = ACTIONS(2234), + [sym__static_type_prefix] = ACTIONS(2234), + }, + [STATE(450)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1083), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Catch] = ACTIONS(1085), + [anon_sym_catch] = ACTIONS(1085), + [anon_sym_CATCH] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_Finally] = ACTIONS(1085), + [anon_sym_finally] = ACTIONS(1085), + [anon_sym_FINALLY] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1218), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(451)] = { + [sym_identifier] = ACTIONS(2248), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_COLON] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_Query] = ACTIONS(2248), + [anon_sym_query] = ACTIONS(2248), + [anon_sym_QUERY] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2248), + [sym_optional_chain] = ACTIONS(2250), + [sym_static_chain] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2248), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2248), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_LT_GT] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [aux_sym_binary_expression_token1] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2248), + [aux_sym_binary_expression_token2] = ACTIONS(2248), + [aux_sym_binary_expression_token3] = ACTIONS(2248), + [aux_sym_binary_expression_token4] = ACTIONS(2250), + [aux_sym_binary_expression_token5] = ACTIONS(2250), + [aux_sym_binary_expression_token6] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2250), + [aux_sym_unary_operator_token1] = ACTIONS(2248), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2248), + [aux_sym_number_token2] = ACTIONS(2248), + [anon_sym_This] = ACTIONS(2248), + [anon_sym_this] = ACTIONS(2248), + [anon_sym_THIS] = ACTIONS(2248), + [anon_sym_Super] = ACTIONS(2248), + [anon_sym_super] = ACTIONS(2248), + [anon_sym_SUPER] = ACTIONS(2248), + [anon_sym_True] = ACTIONS(2248), + [anon_sym_true] = ACTIONS(2248), + [anon_sym_TRUE] = ACTIONS(2248), + [anon_sym_False] = ACTIONS(2248), + [anon_sym_false] = ACTIONS(2248), + [anon_sym_FALSE] = ACTIONS(2248), + [anon_sym_Null] = ACTIONS(2248), + [anon_sym_null] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2248), + [anon_sym_Undefined] = ACTIONS(2248), + [anon_sym_undefined] = ACTIONS(2248), + [anon_sym_UNDEFINED] = ACTIONS(2248), + [anon_sym_get] = ACTIONS(2248), + [anon_sym_set] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(2248), + [sym_hash_empty] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_QueryExecute] = ACTIONS(2248), + [anon_sym_queryexecute] = ACTIONS(2248), + [anon_sym_QUERYEXECUTE] = ACTIONS(2248), + [anon_sym_queryExecute] = ACTIONS(2248), + [anon_sym_BQUOTE] = ACTIONS(2250), + [anon_sym_Abstract] = ACTIONS(2248), + [anon_sym_abstract] = ACTIONS(2248), + [anon_sym_ABSTRACT] = ACTIONS(2248), + [anon_sym_Component] = ACTIONS(2248), + [anon_sym_component] = ACTIONS(2248), + [anon_sym_COMPONENT] = ACTIONS(2248), + [anon_sym_Debugger] = ACTIONS(2248), + [anon_sym_debugger] = ACTIONS(2248), + [anon_sym_DEBUGGER] = ACTIONS(2248), + [anon_sym_Final] = ACTIONS(2248), + [anon_sym_final] = ACTIONS(2248), + [anon_sym_FINAL] = ACTIONS(2248), + [anon_sym_Function] = ACTIONS(2248), + [anon_sym_function] = ACTIONS(2248), + [anon_sym_FUNCTION] = ACTIONS(2248), + [anon_sym_In] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [anon_sym_IN] = ACTIONS(2248), + [anon_sym_Include] = ACTIONS(2248), + [anon_sym_include] = ACTIONS(2248), + [anon_sym_INCLUDE] = ACTIONS(2248), + [anon_sym_InstanceOf] = ACTIONS(2248), + [anon_sym_instanceof] = ACTIONS(2248), + [anon_sym_INSTANCEOF] = ACTIONS(2248), + [anon_sym_instanceOf] = ACTIONS(2248), + [anon_sym_New] = ACTIONS(2248), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_NEW] = ACTIONS(2248), + [anon_sym_Package] = ACTIONS(2248), + [anon_sym_package] = ACTIONS(2248), + [anon_sym_PACKAGE] = ACTIONS(2248), + [anon_sym_Private] = ACTIONS(2248), + [anon_sym_private] = ACTIONS(2248), + [anon_sym_PRIVATE] = ACTIONS(2248), + [anon_sym_Public] = ACTIONS(2248), + [anon_sym_public] = ACTIONS(2248), + [anon_sym_PUBLIC] = ACTIONS(2248), + [anon_sym_Remote] = ACTIONS(2248), + [anon_sym_remote] = ACTIONS(2248), + [anon_sym_REMOTE] = ACTIONS(2248), + [anon_sym_Static] = ACTIONS(2248), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_STATIC] = ACTIONS(2248), + [sym__automatic_semicolon] = ACTIONS(2250), + [sym__ternary_qmark] = ACTIONS(2250), + [sym__elvis_operator] = ACTIONS(2250), + [sym_logical_or] = ACTIONS(2250), + [sym_tag_linefeed] = ACTIONS(2250), + [sym__java_block_open] = ACTIONS(2250), + [sym__static_type_prefix] = ACTIONS(2250), + }, + [STATE(452)] = { + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2252), [anon_sym_COMMA] = ACTIONS(2254), [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2254), [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2250), - [anon_sym_query] = ACTIONS(2250), - [anon_sym_QUERY] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2258), - [sym_static_chain] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_COLON] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_Query] = ACTIONS(2252), + [anon_sym_query] = ACTIONS(2252), + [anon_sym_QUERY] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2252), + [sym_optional_chain] = ACTIONS(2254), + [sym_static_chain] = ACTIONS(2254), [anon_sym_AMP_AMP] = ACTIONS(2254), [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2252), [anon_sym_GT_GT_GT] = ACTIONS(2254), [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2252), [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_SLASH] = ACTIONS(2252), [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2252), [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2252), [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2252), [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), [aux_sym_binary_expression_token1] = ACTIONS(2254), [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2252), + [aux_sym_binary_expression_token2] = ACTIONS(2252), + [aux_sym_binary_expression_token3] = ACTIONS(2252), [aux_sym_binary_expression_token4] = ACTIONS(2254), [aux_sym_binary_expression_token5] = ACTIONS(2254), [aux_sym_binary_expression_token6] = ACTIONS(2254), [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2252), [anon_sym_TILDE] = ACTIONS(2254), - [aux_sym_unary_operator_token1] = ACTIONS(2250), + [aux_sym_unary_operator_token1] = ACTIONS(2252), [anon_sym_PLUS_PLUS] = ACTIONS(2254), [anon_sym_DASH_DASH] = ACTIONS(2254), [anon_sym_DQUOTE] = ACTIONS(2254), [anon_sym_SQUOTE] = ACTIONS(2254), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2250), - [aux_sym_number_token2] = ACTIONS(2250), - [anon_sym_This] = ACTIONS(2250), - [anon_sym_this] = ACTIONS(2250), - [anon_sym_THIS] = ACTIONS(2250), - [anon_sym_Super] = ACTIONS(2250), - [anon_sym_super] = ACTIONS(2250), - [anon_sym_SUPER] = ACTIONS(2250), - [anon_sym_True] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_TRUE] = ACTIONS(2250), - [anon_sym_False] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_FALSE] = ACTIONS(2250), - [anon_sym_Null] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [anon_sym_NULL] = ACTIONS(2250), - [anon_sym_Undefined] = ACTIONS(2250), - [anon_sym_undefined] = ACTIONS(2250), - [anon_sym_UNDEFINED] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), + [aux_sym_number_token1] = ACTIONS(2252), + [aux_sym_number_token2] = ACTIONS(2252), + [anon_sym_This] = ACTIONS(2252), + [anon_sym_this] = ACTIONS(2252), + [anon_sym_THIS] = ACTIONS(2252), + [anon_sym_Super] = ACTIONS(2252), + [anon_sym_super] = ACTIONS(2252), + [anon_sym_SUPER] = ACTIONS(2252), + [anon_sym_True] = ACTIONS(2252), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_TRUE] = ACTIONS(2252), + [anon_sym_False] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_FALSE] = ACTIONS(2252), + [anon_sym_Null] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2252), + [anon_sym_NULL] = ACTIONS(2252), + [anon_sym_Undefined] = ACTIONS(2252), + [anon_sym_undefined] = ACTIONS(2252), + [anon_sym_UNDEFINED] = ACTIONS(2252), + [anon_sym_get] = ACTIONS(2252), + [anon_sym_set] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(2252), [sym_hash_empty] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_QueryExecute] = ACTIONS(2250), - [anon_sym_queryexecute] = ACTIONS(2250), - [anon_sym_QUERYEXECUTE] = ACTIONS(2250), - [anon_sym_queryExecute] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_QueryExecute] = ACTIONS(2252), + [anon_sym_queryexecute] = ACTIONS(2252), + [anon_sym_QUERYEXECUTE] = ACTIONS(2252), + [anon_sym_queryExecute] = ACTIONS(2252), [anon_sym_BQUOTE] = ACTIONS(2254), - [anon_sym_Abstract] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_ABSTRACT] = ACTIONS(2250), - [anon_sym_Component] = ACTIONS(2250), - [anon_sym_component] = ACTIONS(2250), - [anon_sym_COMPONENT] = ACTIONS(2250), - [anon_sym_Debugger] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_DEBUGGER] = ACTIONS(2250), - [anon_sym_Final] = ACTIONS(2250), - [anon_sym_final] = ACTIONS(2250), - [anon_sym_FINAL] = ACTIONS(2250), - [anon_sym_Function] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_FUNCTION] = ACTIONS(2250), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_Include] = ACTIONS(2250), - [anon_sym_include] = ACTIONS(2250), - [anon_sym_INCLUDE] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [anon_sym_New] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_NEW] = ACTIONS(2250), - [anon_sym_Package] = ACTIONS(2250), - [anon_sym_package] = ACTIONS(2250), - [anon_sym_PACKAGE] = ACTIONS(2250), - [anon_sym_Private] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_PRIVATE] = ACTIONS(2250), - [anon_sym_Public] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_PUBLIC] = ACTIONS(2250), - [anon_sym_Remote] = ACTIONS(2250), - [anon_sym_remote] = ACTIONS(2250), - [anon_sym_REMOTE] = ACTIONS(2250), - [anon_sym_Static] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_STATIC] = ACTIONS(2250), + [anon_sym_Abstract] = ACTIONS(2252), + [anon_sym_abstract] = ACTIONS(2252), + [anon_sym_ABSTRACT] = ACTIONS(2252), + [anon_sym_Component] = ACTIONS(2252), + [anon_sym_component] = ACTIONS(2252), + [anon_sym_COMPONENT] = ACTIONS(2252), + [anon_sym_Debugger] = ACTIONS(2252), + [anon_sym_debugger] = ACTIONS(2252), + [anon_sym_DEBUGGER] = ACTIONS(2252), + [anon_sym_Final] = ACTIONS(2252), + [anon_sym_final] = ACTIONS(2252), + [anon_sym_FINAL] = ACTIONS(2252), + [anon_sym_Function] = ACTIONS(2252), + [anon_sym_function] = ACTIONS(2252), + [anon_sym_FUNCTION] = ACTIONS(2252), + [anon_sym_In] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_IN] = ACTIONS(2252), + [anon_sym_Include] = ACTIONS(2252), + [anon_sym_include] = ACTIONS(2252), + [anon_sym_INCLUDE] = ACTIONS(2252), + [anon_sym_InstanceOf] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_INSTANCEOF] = ACTIONS(2252), + [anon_sym_instanceOf] = ACTIONS(2252), + [anon_sym_New] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2252), + [anon_sym_NEW] = ACTIONS(2252), + [anon_sym_Package] = ACTIONS(2252), + [anon_sym_package] = ACTIONS(2252), + [anon_sym_PACKAGE] = ACTIONS(2252), + [anon_sym_Private] = ACTIONS(2252), + [anon_sym_private] = ACTIONS(2252), + [anon_sym_PRIVATE] = ACTIONS(2252), + [anon_sym_Public] = ACTIONS(2252), + [anon_sym_public] = ACTIONS(2252), + [anon_sym_PUBLIC] = ACTIONS(2252), + [anon_sym_Remote] = ACTIONS(2252), + [anon_sym_remote] = ACTIONS(2252), + [anon_sym_REMOTE] = ACTIONS(2252), + [anon_sym_Static] = ACTIONS(2252), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_STATIC] = ACTIONS(2252), [sym__automatic_semicolon] = ACTIONS(2254), [sym__ternary_qmark] = ACTIONS(2254), [sym__elvis_operator] = ACTIONS(2254), @@ -113623,311 +114492,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2254), [sym__static_type_prefix] = ACTIONS(2254), }, - [STATE(448)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_let] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_Query] = ACTIONS(507), - [anon_sym_query] = ACTIONS(507), - [anon_sym_QUERY] = ACTIONS(507), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(509), - [aux_sym_unary_operator_token1] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(507), - [aux_sym_number_token2] = ACTIONS(507), - [anon_sym_This] = ACTIONS(507), - [anon_sym_this] = ACTIONS(507), - [anon_sym_THIS] = ACTIONS(507), - [anon_sym_Super] = ACTIONS(507), - [anon_sym_super] = ACTIONS(507), - [anon_sym_SUPER] = ACTIONS(507), - [anon_sym_True] = ACTIONS(507), - [anon_sym_true] = ACTIONS(507), - [anon_sym_TRUE] = ACTIONS(507), - [anon_sym_False] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_FALSE] = ACTIONS(507), - [anon_sym_Null] = ACTIONS(507), - [anon_sym_null] = ACTIONS(507), - [anon_sym_NULL] = ACTIONS(507), - [anon_sym_Undefined] = ACTIONS(507), - [anon_sym_undefined] = ACTIONS(507), - [anon_sym_UNDEFINED] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(507), - [sym_hash_empty] = ACTIONS(509), - [anon_sym_export] = ACTIONS(507), - [anon_sym_QueryExecute] = ACTIONS(507), - [anon_sym_queryexecute] = ACTIONS(507), - [anon_sym_QUERYEXECUTE] = ACTIONS(507), - [anon_sym_queryExecute] = ACTIONS(507), - [anon_sym_BQUOTE] = ACTIONS(509), - [anon_sym_Abstract] = ACTIONS(507), - [anon_sym_abstract] = ACTIONS(507), - [anon_sym_ABSTRACT] = ACTIONS(507), - [anon_sym_Component] = ACTIONS(507), - [anon_sym_component] = ACTIONS(507), - [anon_sym_COMPONENT] = ACTIONS(507), - [anon_sym_Debugger] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_DEBUGGER] = ACTIONS(507), - [anon_sym_Final] = ACTIONS(507), - [anon_sym_final] = ACTIONS(507), - [anon_sym_FINAL] = ACTIONS(507), - [anon_sym_Function] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_FUNCTION] = ACTIONS(507), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(507), - [anon_sym_include] = ACTIONS(507), - [anon_sym_INCLUDE] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_NEW] = ACTIONS(507), - [anon_sym_Package] = ACTIONS(507), - [anon_sym_package] = ACTIONS(507), - [anon_sym_PACKAGE] = ACTIONS(507), - [anon_sym_Private] = ACTIONS(507), - [anon_sym_private] = ACTIONS(507), - [anon_sym_PRIVATE] = ACTIONS(507), - [anon_sym_Public] = ACTIONS(507), - [anon_sym_public] = ACTIONS(507), - [anon_sym_PUBLIC] = ACTIONS(507), - [anon_sym_Remote] = ACTIONS(507), - [anon_sym_remote] = ACTIONS(507), - [anon_sym_REMOTE] = ACTIONS(507), - [anon_sym_Static] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_STATIC] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(509), - [sym__static_type_prefix] = ACTIONS(509), - }, - [STATE(449)] = { - [sym_arguments] = STATE(456), - [sym_identifier] = ACTIONS(2264), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_Query] = ACTIONS(2264), - [anon_sym_query] = ACTIONS(2264), - [anon_sym_QUERY] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2264), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2267), - [aux_sym_unary_operator_token1] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2264), - [aux_sym_number_token2] = ACTIONS(2264), - [anon_sym_This] = ACTIONS(2264), - [anon_sym_this] = ACTIONS(2264), - [anon_sym_THIS] = ACTIONS(2264), - [anon_sym_Super] = ACTIONS(2264), - [anon_sym_super] = ACTIONS(2264), - [anon_sym_SUPER] = ACTIONS(2264), - [anon_sym_True] = ACTIONS(2264), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_TRUE] = ACTIONS(2264), - [anon_sym_False] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [anon_sym_FALSE] = ACTIONS(2264), - [anon_sym_Null] = ACTIONS(2264), - [anon_sym_null] = ACTIONS(2264), - [anon_sym_NULL] = ACTIONS(2264), - [anon_sym_Undefined] = ACTIONS(2264), - [anon_sym_undefined] = ACTIONS(2264), - [anon_sym_UNDEFINED] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_POUND] = ACTIONS(2264), - [sym_hash_empty] = ACTIONS(2267), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_QueryExecute] = ACTIONS(2264), - [anon_sym_queryexecute] = ACTIONS(2264), - [anon_sym_QUERYEXECUTE] = ACTIONS(2264), - [anon_sym_queryExecute] = ACTIONS(2264), - [anon_sym_BQUOTE] = ACTIONS(2267), - [anon_sym_Abstract] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_ABSTRACT] = ACTIONS(2264), - [anon_sym_Component] = ACTIONS(2264), - [anon_sym_component] = ACTIONS(2264), - [anon_sym_COMPONENT] = ACTIONS(2264), - [anon_sym_Debugger] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_DEBUGGER] = ACTIONS(2264), - [anon_sym_Final] = ACTIONS(2264), - [anon_sym_final] = ACTIONS(2264), - [anon_sym_FINAL] = ACTIONS(2264), - [anon_sym_Function] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_FUNCTION] = ACTIONS(2264), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_Include] = ACTIONS(2264), - [anon_sym_include] = ACTIONS(2264), - [anon_sym_INCLUDE] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2264), - [anon_sym_instanceof] = ACTIONS(2264), - [anon_sym_INSTANCEOF] = ACTIONS(2264), - [anon_sym_instanceOf] = ACTIONS(2264), - [anon_sym_New] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_NEW] = ACTIONS(2264), - [anon_sym_Package] = ACTIONS(2264), - [anon_sym_package] = ACTIONS(2264), - [anon_sym_PACKAGE] = ACTIONS(2264), - [anon_sym_Private] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_PRIVATE] = ACTIONS(2264), - [anon_sym_Public] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_PUBLIC] = ACTIONS(2264), - [anon_sym_Remote] = ACTIONS(2264), - [anon_sym_remote] = ACTIONS(2264), - [anon_sym_REMOTE] = ACTIONS(2264), - [anon_sym_Static] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_STATIC] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2267), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), - [sym_tag_linefeed] = ACTIONS(2267), - [sym__java_block_open] = ACTIONS(2267), - [sym__static_type_prefix] = ACTIONS(2267), + [STATE(453)] = { + [sym_arguments] = STATE(472), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2256), + [anon_sym_query] = ACTIONS(2256), + [anon_sym_QUERY] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2266), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2260), + [aux_sym_unary_operator_token1] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2256), + [aux_sym_number_token2] = ACTIONS(2256), + [anon_sym_This] = ACTIONS(2256), + [anon_sym_this] = ACTIONS(2256), + [anon_sym_THIS] = ACTIONS(2256), + [anon_sym_Super] = ACTIONS(2256), + [anon_sym_super] = ACTIONS(2256), + [anon_sym_SUPER] = ACTIONS(2256), + [anon_sym_True] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_TRUE] = ACTIONS(2256), + [anon_sym_False] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_FALSE] = ACTIONS(2256), + [anon_sym_Null] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_Undefined] = ACTIONS(2256), + [anon_sym_undefined] = ACTIONS(2256), + [anon_sym_UNDEFINED] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [sym_hash_empty] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_QueryExecute] = ACTIONS(2256), + [anon_sym_queryexecute] = ACTIONS(2256), + [anon_sym_QUERYEXECUTE] = ACTIONS(2256), + [anon_sym_queryExecute] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2260), + [anon_sym_Abstract] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_ABSTRACT] = ACTIONS(2256), + [anon_sym_Component] = ACTIONS(2256), + [anon_sym_component] = ACTIONS(2256), + [anon_sym_COMPONENT] = ACTIONS(2256), + [anon_sym_Debugger] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_DEBUGGER] = ACTIONS(2256), + [anon_sym_Final] = ACTIONS(2256), + [anon_sym_final] = ACTIONS(2256), + [anon_sym_FINAL] = ACTIONS(2256), + [anon_sym_Function] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_FUNCTION] = ACTIONS(2256), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_Include] = ACTIONS(2256), + [anon_sym_include] = ACTIONS(2256), + [anon_sym_INCLUDE] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [anon_sym_New] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_NEW] = ACTIONS(2256), + [anon_sym_Package] = ACTIONS(2256), + [anon_sym_package] = ACTIONS(2256), + [anon_sym_PACKAGE] = ACTIONS(2256), + [anon_sym_Private] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_PRIVATE] = ACTIONS(2256), + [anon_sym_Public] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_PUBLIC] = ACTIONS(2256), + [anon_sym_Remote] = ACTIONS(2256), + [anon_sym_remote] = ACTIONS(2256), + [anon_sym_REMOTE] = ACTIONS(2256), + [anon_sym_Static] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_STATIC] = ACTIONS(2256), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym_tag_linefeed] = ACTIONS(2260), + [sym__java_block_open] = ACTIONS(2260), + [sym__static_type_prefix] = ACTIONS(2260), }, - [STATE(450)] = { + [STATE(454)] = { [sym_identifier] = ACTIONS(2270), [anon_sym_DOT] = ACTIONS(2272), [anon_sym_STAR] = ACTIONS(2270), @@ -113936,7 +114653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2272), [anon_sym_SEMI] = ACTIONS(2272), [anon_sym_let] = ACTIONS(2270), - [anon_sym_EQ] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2270), [anon_sym_LBRACK] = ACTIONS(2272), [anon_sym_Query] = ACTIONS(2270), [anon_sym_query] = ACTIONS(2270), @@ -114079,7 +114796,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2272), [sym__static_type_prefix] = ACTIONS(2272), }, - [STATE(451)] = { + [STATE(455)] = { + [sym_identifier] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_Query] = ACTIONS(2274), + [anon_sym_query] = ACTIONS(2274), + [anon_sym_QUERY] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), + [sym_optional_chain] = ACTIONS(2276), + [sym_static_chain] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_BSLASH] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT_EQ] = ACTIONS(2276), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2276), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), + [aux_sym_binary_expression_token1] = ACTIONS(2276), + [anon_sym_GT_EQ] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2274), + [aux_sym_binary_expression_token2] = ACTIONS(2274), + [aux_sym_binary_expression_token3] = ACTIONS(2274), + [aux_sym_binary_expression_token4] = ACTIONS(2276), + [aux_sym_binary_expression_token5] = ACTIONS(2276), + [aux_sym_binary_expression_token6] = ACTIONS(2276), + [anon_sym_QMARK_QMARK] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2276), + [aux_sym_unary_operator_token1] = ACTIONS(2274), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2274), + [aux_sym_number_token2] = ACTIONS(2274), + [anon_sym_This] = ACTIONS(2274), + [anon_sym_this] = ACTIONS(2274), + [anon_sym_THIS] = ACTIONS(2274), + [anon_sym_Super] = ACTIONS(2274), + [anon_sym_super] = ACTIONS(2274), + [anon_sym_SUPER] = ACTIONS(2274), + [anon_sym_True] = ACTIONS(2274), + [anon_sym_true] = ACTIONS(2274), + [anon_sym_TRUE] = ACTIONS(2274), + [anon_sym_False] = ACTIONS(2274), + [anon_sym_false] = ACTIONS(2274), + [anon_sym_FALSE] = ACTIONS(2274), + [anon_sym_Null] = ACTIONS(2274), + [anon_sym_null] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2274), + [anon_sym_Undefined] = ACTIONS(2274), + [anon_sym_undefined] = ACTIONS(2274), + [anon_sym_UNDEFINED] = ACTIONS(2274), + [anon_sym_get] = ACTIONS(2274), + [anon_sym_set] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(2274), + [sym_hash_empty] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_QueryExecute] = ACTIONS(2274), + [anon_sym_queryexecute] = ACTIONS(2274), + [anon_sym_QUERYEXECUTE] = ACTIONS(2274), + [anon_sym_queryExecute] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2276), + [anon_sym_Abstract] = ACTIONS(2274), + [anon_sym_abstract] = ACTIONS(2274), + [anon_sym_ABSTRACT] = ACTIONS(2274), + [anon_sym_Component] = ACTIONS(2274), + [anon_sym_component] = ACTIONS(2274), + [anon_sym_COMPONENT] = ACTIONS(2274), + [anon_sym_Debugger] = ACTIONS(2274), + [anon_sym_debugger] = ACTIONS(2274), + [anon_sym_DEBUGGER] = ACTIONS(2274), + [anon_sym_Final] = ACTIONS(2274), + [anon_sym_final] = ACTIONS(2274), + [anon_sym_FINAL] = ACTIONS(2274), + [anon_sym_Function] = ACTIONS(2274), + [anon_sym_function] = ACTIONS(2274), + [anon_sym_FUNCTION] = ACTIONS(2274), + [anon_sym_In] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_IN] = ACTIONS(2274), + [anon_sym_Include] = ACTIONS(2274), + [anon_sym_include] = ACTIONS(2274), + [anon_sym_INCLUDE] = ACTIONS(2274), + [anon_sym_InstanceOf] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_INSTANCEOF] = ACTIONS(2274), + [anon_sym_instanceOf] = ACTIONS(2274), + [anon_sym_New] = ACTIONS(2274), + [anon_sym_new] = ACTIONS(2274), + [anon_sym_NEW] = ACTIONS(2274), + [anon_sym_Package] = ACTIONS(2274), + [anon_sym_package] = ACTIONS(2274), + [anon_sym_PACKAGE] = ACTIONS(2274), + [anon_sym_Private] = ACTIONS(2274), + [anon_sym_private] = ACTIONS(2274), + [anon_sym_PRIVATE] = ACTIONS(2274), + [anon_sym_Public] = ACTIONS(2274), + [anon_sym_public] = ACTIONS(2274), + [anon_sym_PUBLIC] = ACTIONS(2274), + [anon_sym_Remote] = ACTIONS(2274), + [anon_sym_remote] = ACTIONS(2274), + [anon_sym_REMOTE] = ACTIONS(2274), + [anon_sym_Static] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_STATIC] = ACTIONS(2274), + [sym__automatic_semicolon] = ACTIONS(2276), + [sym__ternary_qmark] = ACTIONS(2276), + [sym__elvis_operator] = ACTIONS(2276), + [sym_logical_or] = ACTIONS(2276), + [sym_tag_linefeed] = ACTIONS(2276), + [sym__java_block_open] = ACTIONS(2276), + [sym__static_type_prefix] = ACTIONS(2276), + }, + [STATE(456)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), @@ -114088,7 +114957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_COLON] = ACTIONS(2278), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), @@ -114231,1223 +115100,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(452)] = { - [sym_arguments] = STATE(456), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(1722), - [anon_sym_query] = ACTIONS(1722), - [anon_sym_QUERY] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(2258), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [aux_sym_unary_operator_token1] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1722), - [aux_sym_number_token2] = ACTIONS(1722), - [anon_sym_This] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1722), - [anon_sym_THIS] = ACTIONS(1722), - [anon_sym_Super] = ACTIONS(1722), - [anon_sym_super] = ACTIONS(1722), - [anon_sym_SUPER] = ACTIONS(1722), - [anon_sym_True] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_TRUE] = ACTIONS(1722), - [anon_sym_False] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [anon_sym_FALSE] = ACTIONS(1722), - [anon_sym_Null] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1722), - [anon_sym_NULL] = ACTIONS(1722), - [anon_sym_Undefined] = ACTIONS(1722), - [anon_sym_undefined] = ACTIONS(1722), - [anon_sym_UNDEFINED] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [sym_hash_empty] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_QueryExecute] = ACTIONS(1722), - [anon_sym_queryexecute] = ACTIONS(1722), - [anon_sym_QUERYEXECUTE] = ACTIONS(1722), - [anon_sym_queryExecute] = ACTIONS(1722), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_Abstract] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_ABSTRACT] = ACTIONS(1722), - [anon_sym_Component] = ACTIONS(1722), - [anon_sym_component] = ACTIONS(1722), - [anon_sym_COMPONENT] = ACTIONS(1722), - [anon_sym_Debugger] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_DEBUGGER] = ACTIONS(1722), - [anon_sym_Final] = ACTIONS(1722), - [anon_sym_final] = ACTIONS(1722), - [anon_sym_FINAL] = ACTIONS(1722), - [anon_sym_Function] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_FUNCTION] = ACTIONS(1722), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(1722), - [anon_sym_include] = ACTIONS(1722), - [anon_sym_INCLUDE] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_NEW] = ACTIONS(1722), - [anon_sym_Package] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1722), - [anon_sym_PACKAGE] = ACTIONS(1722), - [anon_sym_Private] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_PRIVATE] = ACTIONS(1722), - [anon_sym_Public] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_PUBLIC] = ACTIONS(1722), - [anon_sym_Remote] = ACTIONS(1722), - [anon_sym_remote] = ACTIONS(1722), - [anon_sym_REMOTE] = ACTIONS(1722), - [anon_sym_Static] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_STATIC] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), - [sym__java_block_open] = ACTIONS(1720), - [sym__static_type_prefix] = ACTIONS(1720), - }, - [STATE(453)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_Query] = ACTIONS(507), - [anon_sym_query] = ACTIONS(507), - [anon_sym_QUERY] = ACTIONS(507), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(509), - [aux_sym_unary_operator_token1] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(507), - [aux_sym_number_token2] = ACTIONS(507), - [anon_sym_This] = ACTIONS(507), - [anon_sym_this] = ACTIONS(507), - [anon_sym_THIS] = ACTIONS(507), - [anon_sym_Super] = ACTIONS(507), - [anon_sym_super] = ACTIONS(507), - [anon_sym_SUPER] = ACTIONS(507), - [anon_sym_True] = ACTIONS(507), - [anon_sym_true] = ACTIONS(507), - [anon_sym_TRUE] = ACTIONS(507), - [anon_sym_False] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_FALSE] = ACTIONS(507), - [anon_sym_Null] = ACTIONS(507), - [anon_sym_null] = ACTIONS(507), - [anon_sym_NULL] = ACTIONS(507), - [anon_sym_Undefined] = ACTIONS(507), - [anon_sym_undefined] = ACTIONS(507), - [anon_sym_UNDEFINED] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(507), - [sym_hash_empty] = ACTIONS(509), - [anon_sym_export] = ACTIONS(507), - [anon_sym_QueryExecute] = ACTIONS(507), - [anon_sym_queryexecute] = ACTIONS(507), - [anon_sym_QUERYEXECUTE] = ACTIONS(507), - [anon_sym_queryExecute] = ACTIONS(507), - [anon_sym_BQUOTE] = ACTIONS(509), - [anon_sym_Abstract] = ACTIONS(507), - [anon_sym_abstract] = ACTIONS(507), - [anon_sym_ABSTRACT] = ACTIONS(507), - [anon_sym_Component] = ACTIONS(507), - [anon_sym_component] = ACTIONS(507), - [anon_sym_COMPONENT] = ACTIONS(507), - [anon_sym_Debugger] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_DEBUGGER] = ACTIONS(507), - [anon_sym_Final] = ACTIONS(507), - [anon_sym_final] = ACTIONS(507), - [anon_sym_FINAL] = ACTIONS(507), - [anon_sym_Function] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_FUNCTION] = ACTIONS(507), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(507), - [anon_sym_include] = ACTIONS(507), - [anon_sym_INCLUDE] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_NEW] = ACTIONS(507), - [anon_sym_Package] = ACTIONS(507), - [anon_sym_package] = ACTIONS(507), - [anon_sym_PACKAGE] = ACTIONS(507), - [anon_sym_Private] = ACTIONS(507), - [anon_sym_private] = ACTIONS(507), - [anon_sym_PRIVATE] = ACTIONS(507), - [anon_sym_Public] = ACTIONS(507), - [anon_sym_public] = ACTIONS(507), - [anon_sym_PUBLIC] = ACTIONS(507), - [anon_sym_Remote] = ACTIONS(507), - [anon_sym_remote] = ACTIONS(507), - [anon_sym_REMOTE] = ACTIONS(507), - [anon_sym_Static] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_STATIC] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(509), - [sym__static_type_prefix] = ACTIONS(509), - }, - [STATE(454)] = { - [sym_identifier] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_COLON] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_Query] = ACTIONS(2274), - [anon_sym_query] = ACTIONS(2274), - [anon_sym_QUERY] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), - [sym_optional_chain] = ACTIONS(2276), - [sym_static_chain] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2276), - [anon_sym_BSLASH] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2276), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), - [anon_sym_LT_GT] = ACTIONS(2276), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), - [aux_sym_binary_expression_token1] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2274), - [aux_sym_binary_expression_token2] = ACTIONS(2274), - [aux_sym_binary_expression_token3] = ACTIONS(2274), - [aux_sym_binary_expression_token4] = ACTIONS(2276), - [aux_sym_binary_expression_token5] = ACTIONS(2276), - [aux_sym_binary_expression_token6] = ACTIONS(2276), - [anon_sym_QMARK_QMARK] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2276), - [aux_sym_unary_operator_token1] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2274), - [aux_sym_number_token2] = ACTIONS(2274), - [anon_sym_This] = ACTIONS(2274), - [anon_sym_this] = ACTIONS(2274), - [anon_sym_THIS] = ACTIONS(2274), - [anon_sym_Super] = ACTIONS(2274), - [anon_sym_super] = ACTIONS(2274), - [anon_sym_SUPER] = ACTIONS(2274), - [anon_sym_True] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2274), - [anon_sym_TRUE] = ACTIONS(2274), - [anon_sym_False] = ACTIONS(2274), - [anon_sym_false] = ACTIONS(2274), - [anon_sym_FALSE] = ACTIONS(2274), - [anon_sym_Null] = ACTIONS(2274), - [anon_sym_null] = ACTIONS(2274), - [anon_sym_NULL] = ACTIONS(2274), - [anon_sym_Undefined] = ACTIONS(2274), - [anon_sym_undefined] = ACTIONS(2274), - [anon_sym_UNDEFINED] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_POUND] = ACTIONS(2274), - [sym_hash_empty] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_QueryExecute] = ACTIONS(2274), - [anon_sym_queryexecute] = ACTIONS(2274), - [anon_sym_QUERYEXECUTE] = ACTIONS(2274), - [anon_sym_queryExecute] = ACTIONS(2274), - [anon_sym_BQUOTE] = ACTIONS(2276), - [anon_sym_Abstract] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_ABSTRACT] = ACTIONS(2274), - [anon_sym_Component] = ACTIONS(2274), - [anon_sym_component] = ACTIONS(2274), - [anon_sym_COMPONENT] = ACTIONS(2274), - [anon_sym_Debugger] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_DEBUGGER] = ACTIONS(2274), - [anon_sym_Final] = ACTIONS(2274), - [anon_sym_final] = ACTIONS(2274), - [anon_sym_FINAL] = ACTIONS(2274), - [anon_sym_Function] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_FUNCTION] = ACTIONS(2274), - [anon_sym_In] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_IN] = ACTIONS(2274), - [anon_sym_Include] = ACTIONS(2274), - [anon_sym_include] = ACTIONS(2274), - [anon_sym_INCLUDE] = ACTIONS(2274), - [anon_sym_InstanceOf] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_INSTANCEOF] = ACTIONS(2274), - [anon_sym_instanceOf] = ACTIONS(2274), - [anon_sym_New] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_NEW] = ACTIONS(2274), - [anon_sym_Package] = ACTIONS(2274), - [anon_sym_package] = ACTIONS(2274), - [anon_sym_PACKAGE] = ACTIONS(2274), - [anon_sym_Private] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_PRIVATE] = ACTIONS(2274), - [anon_sym_Public] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_PUBLIC] = ACTIONS(2274), - [anon_sym_Remote] = ACTIONS(2274), - [anon_sym_remote] = ACTIONS(2274), - [anon_sym_REMOTE] = ACTIONS(2274), - [anon_sym_Static] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_STATIC] = ACTIONS(2274), - [sym__automatic_semicolon] = ACTIONS(2276), - [sym__ternary_qmark] = ACTIONS(2276), - [sym__elvis_operator] = ACTIONS(2276), - [sym_logical_or] = ACTIONS(2276), - [sym_tag_linefeed] = ACTIONS(2276), - [sym__java_block_open] = ACTIONS(2276), - [sym__static_type_prefix] = ACTIONS(2276), - }, - [STATE(455)] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_Query] = ACTIONS(2278), - [anon_sym_query] = ACTIONS(2278), - [anon_sym_QUERY] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(2280), - [aux_sym_unary_operator_token1] = ACTIONS(2278), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2278), - [aux_sym_number_token2] = ACTIONS(2278), - [anon_sym_This] = ACTIONS(2278), - [anon_sym_this] = ACTIONS(2278), - [anon_sym_THIS] = ACTIONS(2278), - [anon_sym_Super] = ACTIONS(2278), - [anon_sym_super] = ACTIONS(2278), - [anon_sym_SUPER] = ACTIONS(2278), - [anon_sym_True] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2278), - [anon_sym_TRUE] = ACTIONS(2278), - [anon_sym_False] = ACTIONS(2278), - [anon_sym_false] = ACTIONS(2278), - [anon_sym_FALSE] = ACTIONS(2278), - [anon_sym_Null] = ACTIONS(2278), - [anon_sym_null] = ACTIONS(2278), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_Undefined] = ACTIONS(2278), - [anon_sym_undefined] = ACTIONS(2278), - [anon_sym_UNDEFINED] = ACTIONS(2278), - [anon_sym_get] = ACTIONS(2278), - [anon_sym_set] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(2278), - [sym_hash_empty] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2278), - [anon_sym_QueryExecute] = ACTIONS(2278), - [anon_sym_queryexecute] = ACTIONS(2278), - [anon_sym_QUERYEXECUTE] = ACTIONS(2278), - [anon_sym_queryExecute] = ACTIONS(2278), - [anon_sym_BQUOTE] = ACTIONS(2280), - [anon_sym_Abstract] = ACTIONS(2278), - [anon_sym_abstract] = ACTIONS(2278), - [anon_sym_ABSTRACT] = ACTIONS(2278), - [anon_sym_Component] = ACTIONS(2278), - [anon_sym_component] = ACTIONS(2278), - [anon_sym_COMPONENT] = ACTIONS(2278), - [anon_sym_Debugger] = ACTIONS(2278), - [anon_sym_debugger] = ACTIONS(2278), - [anon_sym_DEBUGGER] = ACTIONS(2278), - [anon_sym_Final] = ACTIONS(2278), - [anon_sym_final] = ACTIONS(2278), - [anon_sym_FINAL] = ACTIONS(2278), - [anon_sym_Function] = ACTIONS(2278), - [anon_sym_function] = ACTIONS(2278), - [anon_sym_FUNCTION] = ACTIONS(2278), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_Include] = ACTIONS(2278), - [anon_sym_include] = ACTIONS(2278), - [anon_sym_INCLUDE] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_INSTANCEOF] = ACTIONS(2278), - [anon_sym_instanceOf] = ACTIONS(2278), - [anon_sym_New] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [anon_sym_NEW] = ACTIONS(2278), - [anon_sym_Package] = ACTIONS(2278), - [anon_sym_package] = ACTIONS(2278), - [anon_sym_PACKAGE] = ACTIONS(2278), - [anon_sym_Private] = ACTIONS(2278), - [anon_sym_private] = ACTIONS(2278), - [anon_sym_PRIVATE] = ACTIONS(2278), - [anon_sym_Public] = ACTIONS(2278), - [anon_sym_public] = ACTIONS(2278), - [anon_sym_PUBLIC] = ACTIONS(2278), - [anon_sym_Remote] = ACTIONS(2278), - [anon_sym_remote] = ACTIONS(2278), - [anon_sym_REMOTE] = ACTIONS(2278), - [anon_sym_Static] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_STATIC] = ACTIONS(2278), - [sym__automatic_semicolon] = ACTIONS(2280), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), - [sym_tag_linefeed] = ACTIONS(2280), - [sym__java_block_open] = ACTIONS(2280), - [sym__static_type_prefix] = ACTIONS(2280), - }, - [STATE(456)] = { - [sym_identifier] = ACTIONS(2242), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_Query] = ACTIONS(2242), - [anon_sym_query] = ACTIONS(2242), - [anon_sym_QUERY] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2242), - [sym_optional_chain] = ACTIONS(2282), - [sym_static_chain] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2242), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_BSLASH] = ACTIONS(2242), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_LT_GT] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [aux_sym_binary_expression_token1] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2242), - [aux_sym_binary_expression_token2] = ACTIONS(2242), - [aux_sym_binary_expression_token3] = ACTIONS(2242), - [aux_sym_binary_expression_token4] = ACTIONS(2282), - [aux_sym_binary_expression_token5] = ACTIONS(2282), - [aux_sym_binary_expression_token6] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_TILDE] = ACTIONS(2282), - [aux_sym_unary_operator_token1] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2282), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2242), - [aux_sym_number_token2] = ACTIONS(2242), - [anon_sym_This] = ACTIONS(2242), - [anon_sym_this] = ACTIONS(2242), - [anon_sym_THIS] = ACTIONS(2242), - [anon_sym_Super] = ACTIONS(2242), - [anon_sym_super] = ACTIONS(2242), - [anon_sym_SUPER] = ACTIONS(2242), - [anon_sym_True] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2242), - [anon_sym_TRUE] = ACTIONS(2242), - [anon_sym_False] = ACTIONS(2242), - [anon_sym_false] = ACTIONS(2242), - [anon_sym_FALSE] = ACTIONS(2242), - [anon_sym_Null] = ACTIONS(2242), - [anon_sym_null] = ACTIONS(2242), - [anon_sym_NULL] = ACTIONS(2242), - [anon_sym_Undefined] = ACTIONS(2242), - [anon_sym_undefined] = ACTIONS(2242), - [anon_sym_UNDEFINED] = ACTIONS(2242), - [anon_sym_get] = ACTIONS(2242), - [anon_sym_set] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(2242), - [sym_hash_empty] = ACTIONS(2282), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_QueryExecute] = ACTIONS(2242), - [anon_sym_queryexecute] = ACTIONS(2242), - [anon_sym_QUERYEXECUTE] = ACTIONS(2242), - [anon_sym_queryExecute] = ACTIONS(2242), - [anon_sym_BQUOTE] = ACTIONS(2282), - [anon_sym_Abstract] = ACTIONS(2242), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_ABSTRACT] = ACTIONS(2242), - [anon_sym_Component] = ACTIONS(2242), - [anon_sym_component] = ACTIONS(2242), - [anon_sym_COMPONENT] = ACTIONS(2242), - [anon_sym_Debugger] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_DEBUGGER] = ACTIONS(2242), - [anon_sym_Final] = ACTIONS(2242), - [anon_sym_final] = ACTIONS(2242), - [anon_sym_FINAL] = ACTIONS(2242), - [anon_sym_Function] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_FUNCTION] = ACTIONS(2242), - [anon_sym_In] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_IN] = ACTIONS(2242), - [anon_sym_Include] = ACTIONS(2242), - [anon_sym_include] = ACTIONS(2242), - [anon_sym_INCLUDE] = ACTIONS(2242), - [anon_sym_InstanceOf] = ACTIONS(2242), - [anon_sym_instanceof] = ACTIONS(2242), - [anon_sym_INSTANCEOF] = ACTIONS(2242), - [anon_sym_instanceOf] = ACTIONS(2242), - [anon_sym_New] = ACTIONS(2242), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_NEW] = ACTIONS(2242), - [anon_sym_Package] = ACTIONS(2242), - [anon_sym_package] = ACTIONS(2242), - [anon_sym_PACKAGE] = ACTIONS(2242), - [anon_sym_Private] = ACTIONS(2242), - [anon_sym_private] = ACTIONS(2242), - [anon_sym_PRIVATE] = ACTIONS(2242), - [anon_sym_Public] = ACTIONS(2242), - [anon_sym_public] = ACTIONS(2242), - [anon_sym_PUBLIC] = ACTIONS(2242), - [anon_sym_Remote] = ACTIONS(2242), - [anon_sym_remote] = ACTIONS(2242), - [anon_sym_REMOTE] = ACTIONS(2242), - [anon_sym_Static] = ACTIONS(2242), - [anon_sym_static] = ACTIONS(2242), - [anon_sym_STATIC] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2282), - [sym__ternary_qmark] = ACTIONS(2282), - [sym__elvis_operator] = ACTIONS(2282), - [sym_logical_or] = ACTIONS(2282), - [sym_tag_linefeed] = ACTIONS(2282), - [sym__java_block_open] = ACTIONS(2282), - [sym__static_type_prefix] = ACTIONS(2282), - }, - [STATE(457)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1081), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Catch] = ACTIONS(1083), - [anon_sym_catch] = ACTIONS(1083), - [anon_sym_CATCH] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_Finally] = ACTIONS(1083), - [anon_sym_finally] = ACTIONS(1083), - [anon_sym_FINALLY] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1391), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [STATE(457)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_COLON] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_Query] = ACTIONS(1718), + [anon_sym_query] = ACTIONS(1718), + [anon_sym_QUERY] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [aux_sym_unary_operator_token1] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1718), + [aux_sym_number_token2] = ACTIONS(1718), + [anon_sym_This] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_THIS] = ACTIONS(1718), + [anon_sym_Super] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(1718), + [anon_sym_SUPER] = ACTIONS(1718), + [anon_sym_True] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_TRUE] = ACTIONS(1718), + [anon_sym_False] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_FALSE] = ACTIONS(1718), + [anon_sym_Null] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_NULL] = ACTIONS(1718), + [anon_sym_Undefined] = ACTIONS(1718), + [anon_sym_undefined] = ACTIONS(1718), + [anon_sym_UNDEFINED] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [sym_hash_empty] = ACTIONS(1716), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_QueryExecute] = ACTIONS(1718), + [anon_sym_queryexecute] = ACTIONS(1718), + [anon_sym_QUERYEXECUTE] = ACTIONS(1718), + [anon_sym_queryExecute] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_Abstract] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_ABSTRACT] = ACTIONS(1718), + [anon_sym_Component] = ACTIONS(1718), + [anon_sym_component] = ACTIONS(1718), + [anon_sym_COMPONENT] = ACTIONS(1718), + [anon_sym_Debugger] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_DEBUGGER] = ACTIONS(1718), + [anon_sym_Final] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_FINAL] = ACTIONS(1718), + [anon_sym_Function] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_FUNCTION] = ACTIONS(1718), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1718), + [anon_sym_include] = ACTIONS(1718), + [anon_sym_INCLUDE] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_NEW] = ACTIONS(1718), + [anon_sym_Package] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_PACKAGE] = ACTIONS(1718), + [anon_sym_Private] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_PRIVATE] = ACTIONS(1718), + [anon_sym_Public] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_PUBLIC] = ACTIONS(1718), + [anon_sym_Remote] = ACTIONS(1718), + [anon_sym_remote] = ACTIONS(1718), + [anon_sym_REMOTE] = ACTIONS(1718), + [anon_sym_Static] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_STATIC] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(1716), + [sym__static_type_prefix] = ACTIONS(1716), }, [STATE(458)] = { - [sym_identifier] = ACTIONS(2284), + [sym_identifier] = ACTIONS(2282), + [anon_sym_DOT] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2282), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_Query] = ACTIONS(2282), + [anon_sym_query] = ACTIONS(2282), + [anon_sym_QUERY] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2282), + [sym_optional_chain] = ACTIONS(2284), + [sym_static_chain] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_GT_GT_GT] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2282), + [anon_sym_STAR_STAR] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_LT_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2284), + [anon_sym_LT_GT] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2284), + [aux_sym_binary_expression_token1] = ACTIONS(2284), + [anon_sym_GT_EQ] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2282), + [aux_sym_binary_expression_token2] = ACTIONS(2282), + [aux_sym_binary_expression_token3] = ACTIONS(2282), + [aux_sym_binary_expression_token4] = ACTIONS(2284), + [aux_sym_binary_expression_token5] = ACTIONS(2284), + [aux_sym_binary_expression_token6] = ACTIONS(2284), + [anon_sym_QMARK_QMARK] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2282), + [anon_sym_TILDE] = ACTIONS(2284), + [aux_sym_unary_operator_token1] = ACTIONS(2282), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2282), + [aux_sym_number_token2] = ACTIONS(2282), + [anon_sym_This] = ACTIONS(2282), + [anon_sym_this] = ACTIONS(2282), + [anon_sym_THIS] = ACTIONS(2282), + [anon_sym_Super] = ACTIONS(2282), + [anon_sym_super] = ACTIONS(2282), + [anon_sym_SUPER] = ACTIONS(2282), + [anon_sym_True] = ACTIONS(2282), + [anon_sym_true] = ACTIONS(2282), + [anon_sym_TRUE] = ACTIONS(2282), + [anon_sym_False] = ACTIONS(2282), + [anon_sym_false] = ACTIONS(2282), + [anon_sym_FALSE] = ACTIONS(2282), + [anon_sym_Null] = ACTIONS(2282), + [anon_sym_null] = ACTIONS(2282), + [anon_sym_NULL] = ACTIONS(2282), + [anon_sym_Undefined] = ACTIONS(2282), + [anon_sym_undefined] = ACTIONS(2282), + [anon_sym_UNDEFINED] = ACTIONS(2282), + [anon_sym_get] = ACTIONS(2282), + [anon_sym_set] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(2282), + [sym_hash_empty] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2282), + [anon_sym_QueryExecute] = ACTIONS(2282), + [anon_sym_queryexecute] = ACTIONS(2282), + [anon_sym_QUERYEXECUTE] = ACTIONS(2282), + [anon_sym_queryExecute] = ACTIONS(2282), + [anon_sym_BQUOTE] = ACTIONS(2284), + [anon_sym_Abstract] = ACTIONS(2282), + [anon_sym_abstract] = ACTIONS(2282), + [anon_sym_ABSTRACT] = ACTIONS(2282), + [anon_sym_Component] = ACTIONS(2282), + [anon_sym_component] = ACTIONS(2282), + [anon_sym_COMPONENT] = ACTIONS(2282), + [anon_sym_Debugger] = ACTIONS(2282), + [anon_sym_debugger] = ACTIONS(2282), + [anon_sym_DEBUGGER] = ACTIONS(2282), + [anon_sym_Final] = ACTIONS(2282), + [anon_sym_final] = ACTIONS(2282), + [anon_sym_FINAL] = ACTIONS(2282), + [anon_sym_Function] = ACTIONS(2282), + [anon_sym_function] = ACTIONS(2282), + [anon_sym_FUNCTION] = ACTIONS(2282), + [anon_sym_In] = ACTIONS(2282), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_IN] = ACTIONS(2282), + [anon_sym_Include] = ACTIONS(2282), + [anon_sym_include] = ACTIONS(2282), + [anon_sym_INCLUDE] = ACTIONS(2282), + [anon_sym_InstanceOf] = ACTIONS(2282), + [anon_sym_instanceof] = ACTIONS(2282), + [anon_sym_INSTANCEOF] = ACTIONS(2282), + [anon_sym_instanceOf] = ACTIONS(2282), + [anon_sym_New] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2282), + [anon_sym_NEW] = ACTIONS(2282), + [anon_sym_Package] = ACTIONS(2282), + [anon_sym_package] = ACTIONS(2282), + [anon_sym_PACKAGE] = ACTIONS(2282), + [anon_sym_Private] = ACTIONS(2282), + [anon_sym_private] = ACTIONS(2282), + [anon_sym_PRIVATE] = ACTIONS(2282), + [anon_sym_Public] = ACTIONS(2282), + [anon_sym_public] = ACTIONS(2282), + [anon_sym_PUBLIC] = ACTIONS(2282), + [anon_sym_Remote] = ACTIONS(2282), + [anon_sym_remote] = ACTIONS(2282), + [anon_sym_REMOTE] = ACTIONS(2282), + [anon_sym_Static] = ACTIONS(2282), + [anon_sym_static] = ACTIONS(2282), + [anon_sym_STATIC] = ACTIONS(2282), + [sym__automatic_semicolon] = ACTIONS(2284), + [sym__ternary_qmark] = ACTIONS(2284), + [sym__elvis_operator] = ACTIONS(2284), + [sym_logical_or] = ACTIONS(2284), + [sym_tag_linefeed] = ACTIONS(2284), + [sym__java_block_open] = ACTIONS(2284), + [sym__static_type_prefix] = ACTIONS(2284), + }, + [STATE(459)] = { + [sym_identifier] = ACTIONS(2256), [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_COLON] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2292), [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_Query] = ACTIONS(2284), - [anon_sym_query] = ACTIONS(2284), - [anon_sym_QUERY] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), + [anon_sym_Query] = ACTIONS(2256), + [anon_sym_query] = ACTIONS(2256), + [anon_sym_QUERY] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), [sym_optional_chain] = ACTIONS(2286), [sym_static_chain] = ACTIONS(2286), [anon_sym_AMP_AMP] = ACTIONS(2286), [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2289), [anon_sym_GT_GT_GT] = ACTIONS(2286), [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2289), [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2289), [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2289), [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2289), [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2289), [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), [aux_sym_binary_expression_token1] = ACTIONS(2286), [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), [aux_sym_binary_expression_token4] = ACTIONS(2286), [aux_sym_binary_expression_token5] = ACTIONS(2286), [aux_sym_binary_expression_token6] = ACTIONS(2286), [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2286), - [aux_sym_unary_operator_token1] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2260), + [aux_sym_unary_operator_token1] = ACTIONS(2256), [anon_sym_PLUS_PLUS] = ACTIONS(2286), [anon_sym_DASH_DASH] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2284), - [aux_sym_number_token2] = ACTIONS(2284), - [anon_sym_This] = ACTIONS(2284), - [anon_sym_this] = ACTIONS(2284), - [anon_sym_THIS] = ACTIONS(2284), - [anon_sym_Super] = ACTIONS(2284), - [anon_sym_super] = ACTIONS(2284), - [anon_sym_SUPER] = ACTIONS(2284), - [anon_sym_True] = ACTIONS(2284), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_TRUE] = ACTIONS(2284), - [anon_sym_False] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_FALSE] = ACTIONS(2284), - [anon_sym_Null] = ACTIONS(2284), - [anon_sym_null] = ACTIONS(2284), - [anon_sym_NULL] = ACTIONS(2284), - [anon_sym_Undefined] = ACTIONS(2284), - [anon_sym_undefined] = ACTIONS(2284), - [anon_sym_UNDEFINED] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2284), - [sym_hash_empty] = ACTIONS(2286), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_QueryExecute] = ACTIONS(2284), - [anon_sym_queryexecute] = ACTIONS(2284), - [anon_sym_QUERYEXECUTE] = ACTIONS(2284), - [anon_sym_queryExecute] = ACTIONS(2284), - [anon_sym_BQUOTE] = ACTIONS(2286), - [anon_sym_Abstract] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_ABSTRACT] = ACTIONS(2284), - [anon_sym_Component] = ACTIONS(2284), - [anon_sym_component] = ACTIONS(2284), - [anon_sym_COMPONENT] = ACTIONS(2284), - [anon_sym_Debugger] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_DEBUGGER] = ACTIONS(2284), - [anon_sym_Final] = ACTIONS(2284), - [anon_sym_final] = ACTIONS(2284), - [anon_sym_FINAL] = ACTIONS(2284), - [anon_sym_Function] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_FUNCTION] = ACTIONS(2284), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_Include] = ACTIONS(2284), - [anon_sym_include] = ACTIONS(2284), - [anon_sym_INCLUDE] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [anon_sym_New] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_NEW] = ACTIONS(2284), - [anon_sym_Package] = ACTIONS(2284), - [anon_sym_package] = ACTIONS(2284), - [anon_sym_PACKAGE] = ACTIONS(2284), - [anon_sym_Private] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_PRIVATE] = ACTIONS(2284), - [anon_sym_Public] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_PUBLIC] = ACTIONS(2284), - [anon_sym_Remote] = ACTIONS(2284), - [anon_sym_remote] = ACTIONS(2284), - [anon_sym_REMOTE] = ACTIONS(2284), - [anon_sym_Static] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_STATIC] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2256), + [aux_sym_number_token2] = ACTIONS(2256), + [anon_sym_This] = ACTIONS(2256), + [anon_sym_this] = ACTIONS(2256), + [anon_sym_THIS] = ACTIONS(2256), + [anon_sym_Super] = ACTIONS(2256), + [anon_sym_super] = ACTIONS(2256), + [anon_sym_SUPER] = ACTIONS(2256), + [anon_sym_True] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_TRUE] = ACTIONS(2256), + [anon_sym_False] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_FALSE] = ACTIONS(2256), + [anon_sym_Null] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_Undefined] = ACTIONS(2256), + [anon_sym_undefined] = ACTIONS(2256), + [anon_sym_UNDEFINED] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [sym_hash_empty] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_QueryExecute] = ACTIONS(2256), + [anon_sym_queryexecute] = ACTIONS(2256), + [anon_sym_QUERYEXECUTE] = ACTIONS(2256), + [anon_sym_queryExecute] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2260), + [anon_sym_Abstract] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_ABSTRACT] = ACTIONS(2256), + [anon_sym_Component] = ACTIONS(2256), + [anon_sym_component] = ACTIONS(2256), + [anon_sym_COMPONENT] = ACTIONS(2256), + [anon_sym_Debugger] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_DEBUGGER] = ACTIONS(2256), + [anon_sym_Final] = ACTIONS(2256), + [anon_sym_final] = ACTIONS(2256), + [anon_sym_FINAL] = ACTIONS(2256), + [anon_sym_Function] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_FUNCTION] = ACTIONS(2256), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_Include] = ACTIONS(2256), + [anon_sym_include] = ACTIONS(2256), + [anon_sym_INCLUDE] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [anon_sym_New] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_NEW] = ACTIONS(2256), + [anon_sym_Package] = ACTIONS(2256), + [anon_sym_package] = ACTIONS(2256), + [anon_sym_PACKAGE] = ACTIONS(2256), + [anon_sym_Private] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_PRIVATE] = ACTIONS(2256), + [anon_sym_Public] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_PUBLIC] = ACTIONS(2256), + [anon_sym_Remote] = ACTIONS(2256), + [anon_sym_remote] = ACTIONS(2256), + [anon_sym_REMOTE] = ACTIONS(2256), + [anon_sym_Static] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_STATIC] = ACTIONS(2256), + [sym__automatic_semicolon] = ACTIONS(2260), [sym__ternary_qmark] = ACTIONS(2286), [sym__elvis_operator] = ACTIONS(2286), [sym_logical_or] = ACTIONS(2286), - [sym_tag_linefeed] = ACTIONS(2286), - [sym__java_block_open] = ACTIONS(2286), - [sym__static_type_prefix] = ACTIONS(2286), - }, - [STATE(459)] = { - [sym_identifier] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_Query] = ACTIONS(2288), - [anon_sym_query] = ACTIONS(2288), - [anon_sym_QUERY] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2288), - [sym_optional_chain] = ACTIONS(2290), - [sym_static_chain] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_BSLASH] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_LT_GT] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [aux_sym_binary_expression_token1] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [aux_sym_binary_expression_token2] = ACTIONS(2288), - [aux_sym_binary_expression_token3] = ACTIONS(2288), - [aux_sym_binary_expression_token4] = ACTIONS(2290), - [aux_sym_binary_expression_token5] = ACTIONS(2290), - [aux_sym_binary_expression_token6] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2290), - [aux_sym_unary_operator_token1] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2290), - [sym_comment] = ACTIONS(129), - [sym_regex_flags] = ACTIONS(2292), - [aux_sym_number_token1] = ACTIONS(2288), - [aux_sym_number_token2] = ACTIONS(2288), - [anon_sym_This] = ACTIONS(2288), - [anon_sym_this] = ACTIONS(2288), - [anon_sym_THIS] = ACTIONS(2288), - [anon_sym_Super] = ACTIONS(2288), - [anon_sym_super] = ACTIONS(2288), - [anon_sym_SUPER] = ACTIONS(2288), - [anon_sym_True] = ACTIONS(2288), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_TRUE] = ACTIONS(2288), - [anon_sym_False] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [anon_sym_FALSE] = ACTIONS(2288), - [anon_sym_Null] = ACTIONS(2288), - [anon_sym_null] = ACTIONS(2288), - [anon_sym_NULL] = ACTIONS(2288), - [anon_sym_Undefined] = ACTIONS(2288), - [anon_sym_undefined] = ACTIONS(2288), - [anon_sym_UNDEFINED] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(2288), - [sym_hash_empty] = ACTIONS(2290), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_QueryExecute] = ACTIONS(2288), - [anon_sym_queryexecute] = ACTIONS(2288), - [anon_sym_QUERYEXECUTE] = ACTIONS(2288), - [anon_sym_queryExecute] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2290), - [anon_sym_Abstract] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_ABSTRACT] = ACTIONS(2288), - [anon_sym_Component] = ACTIONS(2288), - [anon_sym_component] = ACTIONS(2288), - [anon_sym_COMPONENT] = ACTIONS(2288), - [anon_sym_Debugger] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_DEBUGGER] = ACTIONS(2288), - [anon_sym_Final] = ACTIONS(2288), - [anon_sym_final] = ACTIONS(2288), - [anon_sym_FINAL] = ACTIONS(2288), - [anon_sym_Function] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_FUNCTION] = ACTIONS(2288), - [anon_sym_In] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_IN] = ACTIONS(2288), - [anon_sym_Include] = ACTIONS(2288), - [anon_sym_include] = ACTIONS(2288), - [anon_sym_INCLUDE] = ACTIONS(2288), - [anon_sym_InstanceOf] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_INSTANCEOF] = ACTIONS(2288), - [anon_sym_instanceOf] = ACTIONS(2288), - [anon_sym_New] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_NEW] = ACTIONS(2288), - [anon_sym_Package] = ACTIONS(2288), - [anon_sym_package] = ACTIONS(2288), - [anon_sym_PACKAGE] = ACTIONS(2288), - [anon_sym_Private] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_PRIVATE] = ACTIONS(2288), - [anon_sym_Public] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_PUBLIC] = ACTIONS(2288), - [anon_sym_Remote] = ACTIONS(2288), - [anon_sym_remote] = ACTIONS(2288), - [anon_sym_REMOTE] = ACTIONS(2288), - [anon_sym_Static] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_STATIC] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym__ternary_qmark] = ACTIONS(2290), - [sym__elvis_operator] = ACTIONS(2290), - [sym_logical_or] = ACTIONS(2290), - [sym_tag_linefeed] = ACTIONS(2290), - [sym__java_block_open] = ACTIONS(2290), - [sym__static_type_prefix] = ACTIONS(2290), + [sym_tag_linefeed] = ACTIONS(2260), + [sym__java_block_open] = ACTIONS(2260), + [sym__static_type_prefix] = ACTIONS(2260), }, [STATE(460)] = { + [sym_identifier] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_Query] = ACTIONS(2294), + [anon_sym_query] = ACTIONS(2294), + [anon_sym_QUERY] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2294), + [sym_optional_chain] = ACTIONS(2296), + [sym_static_chain] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_LT_GT] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [aux_sym_binary_expression_token1] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2294), + [aux_sym_binary_expression_token2] = ACTIONS(2294), + [aux_sym_binary_expression_token3] = ACTIONS(2294), + [aux_sym_binary_expression_token4] = ACTIONS(2296), + [aux_sym_binary_expression_token5] = ACTIONS(2296), + [aux_sym_binary_expression_token6] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2296), + [aux_sym_unary_operator_token1] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2294), + [aux_sym_number_token2] = ACTIONS(2294), + [anon_sym_This] = ACTIONS(2294), + [anon_sym_this] = ACTIONS(2294), + [anon_sym_THIS] = ACTIONS(2294), + [anon_sym_Super] = ACTIONS(2294), + [anon_sym_super] = ACTIONS(2294), + [anon_sym_SUPER] = ACTIONS(2294), + [anon_sym_True] = ACTIONS(2294), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_TRUE] = ACTIONS(2294), + [anon_sym_False] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [anon_sym_FALSE] = ACTIONS(2294), + [anon_sym_Null] = ACTIONS(2294), + [anon_sym_null] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_Undefined] = ACTIONS(2294), + [anon_sym_undefined] = ACTIONS(2294), + [anon_sym_UNDEFINED] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [sym_hash_empty] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_QueryExecute] = ACTIONS(2294), + [anon_sym_queryexecute] = ACTIONS(2294), + [anon_sym_QUERYEXECUTE] = ACTIONS(2294), + [anon_sym_queryExecute] = ACTIONS(2294), + [anon_sym_BQUOTE] = ACTIONS(2296), + [anon_sym_Abstract] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_ABSTRACT] = ACTIONS(2294), + [anon_sym_Component] = ACTIONS(2294), + [anon_sym_component] = ACTIONS(2294), + [anon_sym_COMPONENT] = ACTIONS(2294), + [anon_sym_Debugger] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_DEBUGGER] = ACTIONS(2294), + [anon_sym_Final] = ACTIONS(2294), + [anon_sym_final] = ACTIONS(2294), + [anon_sym_FINAL] = ACTIONS(2294), + [anon_sym_Function] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_FUNCTION] = ACTIONS(2294), + [anon_sym_In] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_IN] = ACTIONS(2294), + [anon_sym_Include] = ACTIONS(2294), + [anon_sym_include] = ACTIONS(2294), + [anon_sym_INCLUDE] = ACTIONS(2294), + [anon_sym_InstanceOf] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_INSTANCEOF] = ACTIONS(2294), + [anon_sym_instanceOf] = ACTIONS(2294), + [anon_sym_New] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_NEW] = ACTIONS(2294), + [anon_sym_Package] = ACTIONS(2294), + [anon_sym_package] = ACTIONS(2294), + [anon_sym_PACKAGE] = ACTIONS(2294), + [anon_sym_Private] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_PRIVATE] = ACTIONS(2294), + [anon_sym_Public] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_PUBLIC] = ACTIONS(2294), + [anon_sym_Remote] = ACTIONS(2294), + [anon_sym_remote] = ACTIONS(2294), + [anon_sym_REMOTE] = ACTIONS(2294), + [anon_sym_Static] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_STATIC] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2296), + [sym__ternary_qmark] = ACTIONS(2296), + [sym__elvis_operator] = ACTIONS(2296), + [sym_logical_or] = ACTIONS(2296), + [sym_tag_linefeed] = ACTIONS(2296), + [sym__java_block_open] = ACTIONS(2296), + [sym__static_type_prefix] = ACTIONS(2296), + }, + [STATE(461)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Catch] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1590), + [anon_sym_CATCH] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_Finally] = ACTIONS(1590), + [anon_sym_finally] = ACTIONS(1590), + [anon_sym_FINALLY] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(2298), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(462)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), @@ -115456,7 +115869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), @@ -115599,321 +116012,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(461)] = { - [sym_identifier] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_Query] = ACTIONS(2296), - [anon_sym_query] = ACTIONS(2296), - [anon_sym_QUERY] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2296), - [sym_optional_chain] = ACTIONS(2298), - [sym_static_chain] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_BSLASH] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), - [anon_sym_LT_GT] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), - [aux_sym_binary_expression_token1] = ACTIONS(2298), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [aux_sym_binary_expression_token2] = ACTIONS(2296), - [aux_sym_binary_expression_token3] = ACTIONS(2296), - [aux_sym_binary_expression_token4] = ACTIONS(2298), - [aux_sym_binary_expression_token5] = ACTIONS(2298), - [aux_sym_binary_expression_token6] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2298), - [aux_sym_unary_operator_token1] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2296), - [aux_sym_number_token2] = ACTIONS(2296), - [anon_sym_This] = ACTIONS(2296), - [anon_sym_this] = ACTIONS(2296), - [anon_sym_THIS] = ACTIONS(2296), - [anon_sym_Super] = ACTIONS(2296), - [anon_sym_super] = ACTIONS(2296), - [anon_sym_SUPER] = ACTIONS(2296), - [anon_sym_True] = ACTIONS(2296), - [anon_sym_true] = ACTIONS(2296), - [anon_sym_TRUE] = ACTIONS(2296), - [anon_sym_False] = ACTIONS(2296), - [anon_sym_false] = ACTIONS(2296), - [anon_sym_FALSE] = ACTIONS(2296), - [anon_sym_Null] = ACTIONS(2296), - [anon_sym_null] = ACTIONS(2296), - [anon_sym_NULL] = ACTIONS(2296), - [anon_sym_Undefined] = ACTIONS(2296), - [anon_sym_undefined] = ACTIONS(2296), - [anon_sym_UNDEFINED] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(2296), - [sym_hash_empty] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_QueryExecute] = ACTIONS(2296), - [anon_sym_queryexecute] = ACTIONS(2296), - [anon_sym_QUERYEXECUTE] = ACTIONS(2296), - [anon_sym_queryExecute] = ACTIONS(2296), - [anon_sym_BQUOTE] = ACTIONS(2298), - [anon_sym_Abstract] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_ABSTRACT] = ACTIONS(2296), - [anon_sym_Component] = ACTIONS(2296), - [anon_sym_component] = ACTIONS(2296), - [anon_sym_COMPONENT] = ACTIONS(2296), - [anon_sym_Debugger] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_DEBUGGER] = ACTIONS(2296), - [anon_sym_Final] = ACTIONS(2296), - [anon_sym_final] = ACTIONS(2296), - [anon_sym_FINAL] = ACTIONS(2296), - [anon_sym_Function] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_FUNCTION] = ACTIONS(2296), - [anon_sym_In] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_IN] = ACTIONS(2296), - [anon_sym_Include] = ACTIONS(2296), - [anon_sym_include] = ACTIONS(2296), - [anon_sym_INCLUDE] = ACTIONS(2296), - [anon_sym_InstanceOf] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_INSTANCEOF] = ACTIONS(2296), - [anon_sym_instanceOf] = ACTIONS(2296), - [anon_sym_New] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_NEW] = ACTIONS(2296), - [anon_sym_Package] = ACTIONS(2296), - [anon_sym_package] = ACTIONS(2296), - [anon_sym_PACKAGE] = ACTIONS(2296), - [anon_sym_Private] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_PRIVATE] = ACTIONS(2296), - [anon_sym_Public] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_PUBLIC] = ACTIONS(2296), - [anon_sym_Remote] = ACTIONS(2296), - [anon_sym_remote] = ACTIONS(2296), - [anon_sym_REMOTE] = ACTIONS(2296), - [anon_sym_Static] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_STATIC] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym__ternary_qmark] = ACTIONS(2298), - [sym__elvis_operator] = ACTIONS(2298), - [sym_logical_or] = ACTIONS(2298), - [sym_tag_linefeed] = ACTIONS(2298), - [sym__java_block_open] = ACTIONS(2298), - [sym__static_type_prefix] = ACTIONS(2298), - }, - [STATE(462)] = { - [sym_arguments] = STATE(456), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_Query] = ACTIONS(1722), - [anon_sym_query] = ACTIONS(1722), - [anon_sym_QUERY] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [aux_sym_unary_operator_token1] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1722), - [aux_sym_number_token2] = ACTIONS(1722), - [anon_sym_This] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1722), - [anon_sym_THIS] = ACTIONS(1722), - [anon_sym_Super] = ACTIONS(1722), - [anon_sym_super] = ACTIONS(1722), - [anon_sym_SUPER] = ACTIONS(1722), - [anon_sym_True] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_TRUE] = ACTIONS(1722), - [anon_sym_False] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [anon_sym_FALSE] = ACTIONS(1722), - [anon_sym_Null] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1722), - [anon_sym_NULL] = ACTIONS(1722), - [anon_sym_Undefined] = ACTIONS(1722), - [anon_sym_undefined] = ACTIONS(1722), - [anon_sym_UNDEFINED] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [sym_hash_empty] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_QueryExecute] = ACTIONS(1722), - [anon_sym_queryexecute] = ACTIONS(1722), - [anon_sym_QUERYEXECUTE] = ACTIONS(1722), - [anon_sym_queryExecute] = ACTIONS(1722), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_Abstract] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_ABSTRACT] = ACTIONS(1722), - [anon_sym_Component] = ACTIONS(1722), - [anon_sym_component] = ACTIONS(1722), - [anon_sym_COMPONENT] = ACTIONS(1722), - [anon_sym_Debugger] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_DEBUGGER] = ACTIONS(1722), - [anon_sym_Final] = ACTIONS(1722), - [anon_sym_final] = ACTIONS(1722), - [anon_sym_FINAL] = ACTIONS(1722), - [anon_sym_Function] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_FUNCTION] = ACTIONS(1722), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(1722), - [anon_sym_include] = ACTIONS(1722), - [anon_sym_INCLUDE] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_NEW] = ACTIONS(1722), - [anon_sym_Package] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1722), - [anon_sym_PACKAGE] = ACTIONS(1722), - [anon_sym_Private] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_PRIVATE] = ACTIONS(1722), - [anon_sym_Public] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_PUBLIC] = ACTIONS(1722), - [anon_sym_Remote] = ACTIONS(1722), - [anon_sym_remote] = ACTIONS(1722), - [anon_sym_REMOTE] = ACTIONS(1722), - [anon_sym_Static] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_STATIC] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), - [sym__java_block_open] = ACTIONS(1720), - [sym__static_type_prefix] = ACTIONS(1720), - }, [STATE(463)] = { + [sym_arguments] = STATE(472), [sym_identifier] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2303), [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2303), [anon_sym_let] = ACTIONS(2300), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2303), [anon_sym_Query] = ACTIONS(2300), [anon_sym_query] = ACTIONS(2300), [anon_sym_QUERY] = ACTIONS(2300), @@ -115934,45 +116043,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), + [anon_sym_CARET] = ACTIONS(2303), [anon_sym_PIPE] = ACTIONS(2300), [anon_sym_PLUS] = ACTIONS(2300), [anon_sym_DASH] = ACTIONS(2300), [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2303), [anon_sym_BSLASH] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2302), + [anon_sym_STAR_STAR] = ACTIONS(2303), [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2303), [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), [anon_sym_GT] = ACTIONS(2300), [aux_sym_binary_expression_token2] = ACTIONS(2300), [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2303), [aux_sym_unary_operator_token1] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(2300), [aux_sym_number_token2] = ACTIONS(2300), @@ -115997,13 +116106,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(2300), [anon_sym_set] = ACTIONS(2300), [anon_sym_POUND] = ACTIONS(2300), - [sym_hash_empty] = ACTIONS(2302), + [sym_hash_empty] = ACTIONS(2303), [anon_sym_export] = ACTIONS(2300), [anon_sym_QueryExecute] = ACTIONS(2300), [anon_sym_queryexecute] = ACTIONS(2300), [anon_sym_QUERYEXECUTE] = ACTIONS(2300), [anon_sym_queryExecute] = ACTIONS(2300), - [anon_sym_BQUOTE] = ACTIONS(2302), + [anon_sym_BQUOTE] = ACTIONS(2303), [anon_sym_Abstract] = ACTIONS(2300), [anon_sym_abstract] = ACTIONS(2300), [anon_sym_ABSTRACT] = ACTIONS(2300), @@ -116047,1225 +116156,1079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(2300), [anon_sym_static] = ACTIONS(2300), [anon_sym_STATIC] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), - [sym_tag_linefeed] = ACTIONS(2302), - [sym__java_block_open] = ACTIONS(2302), - [sym__static_type_prefix] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2303), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), + [sym_tag_linefeed] = ACTIONS(2303), + [sym__java_block_open] = ACTIONS(2303), + [sym__static_type_prefix] = ACTIONS(2303), }, [STATE(464)] = { - [sym_identifier] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_COMMA] = ACTIONS(2306), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_COLON] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_Query] = ACTIONS(2304), - [anon_sym_query] = ACTIONS(2304), - [anon_sym_QUERY] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2304), - [sym_optional_chain] = ACTIONS(2306), - [sym_static_chain] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_BSLASH] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2306), - [anon_sym_LT_GT] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2306), - [aux_sym_binary_expression_token1] = ACTIONS(2306), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [aux_sym_binary_expression_token2] = ACTIONS(2304), - [aux_sym_binary_expression_token3] = ACTIONS(2304), - [aux_sym_binary_expression_token4] = ACTIONS(2306), - [aux_sym_binary_expression_token5] = ACTIONS(2306), - [aux_sym_binary_expression_token6] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2306), - [aux_sym_unary_operator_token1] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [anon_sym_DQUOTE] = ACTIONS(2306), - [anon_sym_SQUOTE] = ACTIONS(2306), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2304), - [aux_sym_number_token2] = ACTIONS(2304), - [anon_sym_This] = ACTIONS(2304), - [anon_sym_this] = ACTIONS(2304), - [anon_sym_THIS] = ACTIONS(2304), - [anon_sym_Super] = ACTIONS(2304), - [anon_sym_super] = ACTIONS(2304), - [anon_sym_SUPER] = ACTIONS(2304), - [anon_sym_True] = ACTIONS(2304), - [anon_sym_true] = ACTIONS(2304), - [anon_sym_TRUE] = ACTIONS(2304), - [anon_sym_False] = ACTIONS(2304), - [anon_sym_false] = ACTIONS(2304), - [anon_sym_FALSE] = ACTIONS(2304), - [anon_sym_Null] = ACTIONS(2304), - [anon_sym_null] = ACTIONS(2304), - [anon_sym_NULL] = ACTIONS(2304), - [anon_sym_Undefined] = ACTIONS(2304), - [anon_sym_undefined] = ACTIONS(2304), - [anon_sym_UNDEFINED] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_POUND] = ACTIONS(2304), - [sym_hash_empty] = ACTIONS(2306), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_QueryExecute] = ACTIONS(2304), - [anon_sym_queryexecute] = ACTIONS(2304), - [anon_sym_QUERYEXECUTE] = ACTIONS(2304), - [anon_sym_queryExecute] = ACTIONS(2304), - [anon_sym_BQUOTE] = ACTIONS(2306), - [anon_sym_Abstract] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_ABSTRACT] = ACTIONS(2304), - [anon_sym_Component] = ACTIONS(2304), - [anon_sym_component] = ACTIONS(2304), - [anon_sym_COMPONENT] = ACTIONS(2304), - [anon_sym_Debugger] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_DEBUGGER] = ACTIONS(2304), - [anon_sym_Final] = ACTIONS(2304), - [anon_sym_final] = ACTIONS(2304), - [anon_sym_FINAL] = ACTIONS(2304), - [anon_sym_Function] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_FUNCTION] = ACTIONS(2304), - [anon_sym_In] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_IN] = ACTIONS(2304), - [anon_sym_Include] = ACTIONS(2304), - [anon_sym_include] = ACTIONS(2304), - [anon_sym_INCLUDE] = ACTIONS(2304), - [anon_sym_InstanceOf] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_INSTANCEOF] = ACTIONS(2304), - [anon_sym_instanceOf] = ACTIONS(2304), - [anon_sym_New] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_NEW] = ACTIONS(2304), - [anon_sym_Package] = ACTIONS(2304), - [anon_sym_package] = ACTIONS(2304), - [anon_sym_PACKAGE] = ACTIONS(2304), - [anon_sym_Private] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_PRIVATE] = ACTIONS(2304), - [anon_sym_Public] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_PUBLIC] = ACTIONS(2304), - [anon_sym_Remote] = ACTIONS(2304), - [anon_sym_remote] = ACTIONS(2304), - [anon_sym_REMOTE] = ACTIONS(2304), - [anon_sym_Static] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_STATIC] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2306), - [sym__elvis_operator] = ACTIONS(2306), - [sym_logical_or] = ACTIONS(2306), - [sym_tag_linefeed] = ACTIONS(2306), - [sym__java_block_open] = ACTIONS(2306), - [sym__static_type_prefix] = ACTIONS(2306), + [sym_arguments] = STATE(472), + [sym_identifier] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2306), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_Query] = ACTIONS(2306), + [anon_sym_query] = ACTIONS(2306), + [anon_sym_QUERY] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2306), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2306), + [anon_sym_TILDE] = ACTIONS(2309), + [aux_sym_unary_operator_token1] = ACTIONS(2306), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2306), + [aux_sym_number_token2] = ACTIONS(2306), + [anon_sym_This] = ACTIONS(2306), + [anon_sym_this] = ACTIONS(2306), + [anon_sym_THIS] = ACTIONS(2306), + [anon_sym_Super] = ACTIONS(2306), + [anon_sym_super] = ACTIONS(2306), + [anon_sym_SUPER] = ACTIONS(2306), + [anon_sym_True] = ACTIONS(2306), + [anon_sym_true] = ACTIONS(2306), + [anon_sym_TRUE] = ACTIONS(2306), + [anon_sym_False] = ACTIONS(2306), + [anon_sym_false] = ACTIONS(2306), + [anon_sym_FALSE] = ACTIONS(2306), + [anon_sym_Null] = ACTIONS(2306), + [anon_sym_null] = ACTIONS(2306), + [anon_sym_NULL] = ACTIONS(2306), + [anon_sym_Undefined] = ACTIONS(2306), + [anon_sym_undefined] = ACTIONS(2306), + [anon_sym_UNDEFINED] = ACTIONS(2306), + [anon_sym_get] = ACTIONS(2306), + [anon_sym_set] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(2306), + [sym_hash_empty] = ACTIONS(2309), + [anon_sym_export] = ACTIONS(2306), + [anon_sym_QueryExecute] = ACTIONS(2306), + [anon_sym_queryexecute] = ACTIONS(2306), + [anon_sym_QUERYEXECUTE] = ACTIONS(2306), + [anon_sym_queryExecute] = ACTIONS(2306), + [anon_sym_BQUOTE] = ACTIONS(2309), + [anon_sym_Abstract] = ACTIONS(2306), + [anon_sym_abstract] = ACTIONS(2306), + [anon_sym_ABSTRACT] = ACTIONS(2306), + [anon_sym_Component] = ACTIONS(2306), + [anon_sym_component] = ACTIONS(2306), + [anon_sym_COMPONENT] = ACTIONS(2306), + [anon_sym_Debugger] = ACTIONS(2306), + [anon_sym_debugger] = ACTIONS(2306), + [anon_sym_DEBUGGER] = ACTIONS(2306), + [anon_sym_Final] = ACTIONS(2306), + [anon_sym_final] = ACTIONS(2306), + [anon_sym_FINAL] = ACTIONS(2306), + [anon_sym_Function] = ACTIONS(2306), + [anon_sym_function] = ACTIONS(2306), + [anon_sym_FUNCTION] = ACTIONS(2306), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_Include] = ACTIONS(2306), + [anon_sym_include] = ACTIONS(2306), + [anon_sym_INCLUDE] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2306), + [anon_sym_instanceof] = ACTIONS(2306), + [anon_sym_INSTANCEOF] = ACTIONS(2306), + [anon_sym_instanceOf] = ACTIONS(2306), + [anon_sym_New] = ACTIONS(2306), + [anon_sym_new] = ACTIONS(2306), + [anon_sym_NEW] = ACTIONS(2306), + [anon_sym_Package] = ACTIONS(2306), + [anon_sym_package] = ACTIONS(2306), + [anon_sym_PACKAGE] = ACTIONS(2306), + [anon_sym_Private] = ACTIONS(2306), + [anon_sym_private] = ACTIONS(2306), + [anon_sym_PRIVATE] = ACTIONS(2306), + [anon_sym_Public] = ACTIONS(2306), + [anon_sym_public] = ACTIONS(2306), + [anon_sym_PUBLIC] = ACTIONS(2306), + [anon_sym_Remote] = ACTIONS(2306), + [anon_sym_remote] = ACTIONS(2306), + [anon_sym_REMOTE] = ACTIONS(2306), + [anon_sym_Static] = ACTIONS(2306), + [anon_sym_static] = ACTIONS(2306), + [anon_sym_STATIC] = ACTIONS(2306), + [sym__automatic_semicolon] = ACTIONS(2309), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), + [sym_tag_linefeed] = ACTIONS(2309), + [sym__java_block_open] = ACTIONS(2309), + [sym__static_type_prefix] = ACTIONS(2309), }, [STATE(465)] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_Query] = ACTIONS(2219), - [anon_sym_query] = ACTIONS(2219), - [anon_sym_QUERY] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2221), - [aux_sym_unary_operator_token1] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2219), - [aux_sym_number_token2] = ACTIONS(2219), - [anon_sym_This] = ACTIONS(2219), - [anon_sym_this] = ACTIONS(2219), - [anon_sym_THIS] = ACTIONS(2219), - [anon_sym_Super] = ACTIONS(2219), - [anon_sym_super] = ACTIONS(2219), - [anon_sym_SUPER] = ACTIONS(2219), - [anon_sym_True] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_TRUE] = ACTIONS(2219), - [anon_sym_False] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [anon_sym_FALSE] = ACTIONS(2219), - [anon_sym_Null] = ACTIONS(2219), - [anon_sym_null] = ACTIONS(2219), - [anon_sym_NULL] = ACTIONS(2219), - [anon_sym_Undefined] = ACTIONS(2219), - [anon_sym_undefined] = ACTIONS(2219), - [anon_sym_UNDEFINED] = ACTIONS(2219), - [anon_sym_get] = ACTIONS(2219), - [anon_sym_set] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(2219), - [sym_hash_empty] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2219), - [anon_sym_QueryExecute] = ACTIONS(2219), - [anon_sym_queryexecute] = ACTIONS(2219), - [anon_sym_QUERYEXECUTE] = ACTIONS(2219), - [anon_sym_queryExecute] = ACTIONS(2219), - [anon_sym_BQUOTE] = ACTIONS(2221), - [anon_sym_Abstract] = ACTIONS(2219), - [anon_sym_abstract] = ACTIONS(2219), - [anon_sym_ABSTRACT] = ACTIONS(2219), - [anon_sym_Component] = ACTIONS(2219), - [anon_sym_component] = ACTIONS(2219), - [anon_sym_COMPONENT] = ACTIONS(2219), - [anon_sym_Debugger] = ACTIONS(2219), - [anon_sym_debugger] = ACTIONS(2219), - [anon_sym_DEBUGGER] = ACTIONS(2219), - [anon_sym_Final] = ACTIONS(2219), - [anon_sym_final] = ACTIONS(2219), - [anon_sym_FINAL] = ACTIONS(2219), - [anon_sym_Function] = ACTIONS(2219), - [anon_sym_function] = ACTIONS(2219), - [anon_sym_FUNCTION] = ACTIONS(2219), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_Include] = ACTIONS(2219), - [anon_sym_include] = ACTIONS(2219), - [anon_sym_INCLUDE] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), - [anon_sym_New] = ACTIONS(2219), - [anon_sym_new] = ACTIONS(2219), - [anon_sym_NEW] = ACTIONS(2219), - [anon_sym_Package] = ACTIONS(2219), - [anon_sym_package] = ACTIONS(2219), - [anon_sym_PACKAGE] = ACTIONS(2219), - [anon_sym_Private] = ACTIONS(2219), - [anon_sym_private] = ACTIONS(2219), - [anon_sym_PRIVATE] = ACTIONS(2219), - [anon_sym_Public] = ACTIONS(2219), - [anon_sym_public] = ACTIONS(2219), - [anon_sym_PUBLIC] = ACTIONS(2219), - [anon_sym_Remote] = ACTIONS(2219), - [anon_sym_remote] = ACTIONS(2219), - [anon_sym_REMOTE] = ACTIONS(2219), - [anon_sym_Static] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2219), - [anon_sym_STATIC] = ACTIONS(2219), - [sym__automatic_semicolon] = ACTIONS(2221), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym_tag_linefeed] = ACTIONS(2221), - [sym__java_block_open] = ACTIONS(2221), - [sym__static_type_prefix] = ACTIONS(2221), + [sym_arguments] = STATE(472), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_Query] = ACTIONS(1718), + [anon_sym_query] = ACTIONS(1718), + [anon_sym_QUERY] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [aux_sym_unary_operator_token1] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1718), + [aux_sym_number_token2] = ACTIONS(1718), + [anon_sym_This] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_THIS] = ACTIONS(1718), + [anon_sym_Super] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(1718), + [anon_sym_SUPER] = ACTIONS(1718), + [anon_sym_True] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_TRUE] = ACTIONS(1718), + [anon_sym_False] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_FALSE] = ACTIONS(1718), + [anon_sym_Null] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_NULL] = ACTIONS(1718), + [anon_sym_Undefined] = ACTIONS(1718), + [anon_sym_undefined] = ACTIONS(1718), + [anon_sym_UNDEFINED] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [sym_hash_empty] = ACTIONS(1716), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_QueryExecute] = ACTIONS(1718), + [anon_sym_queryexecute] = ACTIONS(1718), + [anon_sym_QUERYEXECUTE] = ACTIONS(1718), + [anon_sym_queryExecute] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_Abstract] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_ABSTRACT] = ACTIONS(1718), + [anon_sym_Component] = ACTIONS(1718), + [anon_sym_component] = ACTIONS(1718), + [anon_sym_COMPONENT] = ACTIONS(1718), + [anon_sym_Debugger] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_DEBUGGER] = ACTIONS(1718), + [anon_sym_Final] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_FINAL] = ACTIONS(1718), + [anon_sym_Function] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_FUNCTION] = ACTIONS(1718), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1718), + [anon_sym_include] = ACTIONS(1718), + [anon_sym_INCLUDE] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_NEW] = ACTIONS(1718), + [anon_sym_Package] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_PACKAGE] = ACTIONS(1718), + [anon_sym_Private] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_PRIVATE] = ACTIONS(1718), + [anon_sym_Public] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_PUBLIC] = ACTIONS(1718), + [anon_sym_Remote] = ACTIONS(1718), + [anon_sym_remote] = ACTIONS(1718), + [anon_sym_REMOTE] = ACTIONS(1718), + [anon_sym_Static] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_STATIC] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(1716), + [sym__static_type_prefix] = ACTIONS(1716), }, [STATE(466)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_Query] = ACTIONS(2308), - [anon_sym_query] = ACTIONS(2308), - [anon_sym_QUERY] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2308), - [sym_optional_chain] = ACTIONS(2310), - [sym_static_chain] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_BSLASH] = ACTIONS(2308), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_LT_GT] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [aux_sym_binary_expression_token1] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [aux_sym_binary_expression_token2] = ACTIONS(2308), - [aux_sym_binary_expression_token3] = ACTIONS(2308), - [aux_sym_binary_expression_token4] = ACTIONS(2310), - [aux_sym_binary_expression_token5] = ACTIONS(2310), - [aux_sym_binary_expression_token6] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2310), - [aux_sym_unary_operator_token1] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2308), - [aux_sym_number_token2] = ACTIONS(2308), - [anon_sym_This] = ACTIONS(2308), - [anon_sym_this] = ACTIONS(2308), - [anon_sym_THIS] = ACTIONS(2308), - [anon_sym_Super] = ACTIONS(2308), - [anon_sym_super] = ACTIONS(2308), - [anon_sym_SUPER] = ACTIONS(2308), - [anon_sym_True] = ACTIONS(2308), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_TRUE] = ACTIONS(2308), - [anon_sym_False] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [anon_sym_FALSE] = ACTIONS(2308), - [anon_sym_Null] = ACTIONS(2308), - [anon_sym_null] = ACTIONS(2308), - [anon_sym_NULL] = ACTIONS(2308), - [anon_sym_Undefined] = ACTIONS(2308), - [anon_sym_undefined] = ACTIONS(2308), - [anon_sym_UNDEFINED] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2308), - [sym_hash_empty] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_QueryExecute] = ACTIONS(2308), - [anon_sym_queryexecute] = ACTIONS(2308), - [anon_sym_QUERYEXECUTE] = ACTIONS(2308), - [anon_sym_queryExecute] = ACTIONS(2308), - [anon_sym_BQUOTE] = ACTIONS(2310), - [anon_sym_Abstract] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_ABSTRACT] = ACTIONS(2308), - [anon_sym_Component] = ACTIONS(2308), - [anon_sym_component] = ACTIONS(2308), - [anon_sym_COMPONENT] = ACTIONS(2308), - [anon_sym_Debugger] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_DEBUGGER] = ACTIONS(2308), - [anon_sym_Final] = ACTIONS(2308), - [anon_sym_final] = ACTIONS(2308), - [anon_sym_FINAL] = ACTIONS(2308), - [anon_sym_Function] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_FUNCTION] = ACTIONS(2308), - [anon_sym_In] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2308), - [anon_sym_IN] = ACTIONS(2308), - [anon_sym_Include] = ACTIONS(2308), - [anon_sym_include] = ACTIONS(2308), - [anon_sym_INCLUDE] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(2308), - [anon_sym_instanceof] = ACTIONS(2308), - [anon_sym_INSTANCEOF] = ACTIONS(2308), - [anon_sym_instanceOf] = ACTIONS(2308), - [anon_sym_New] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_NEW] = ACTIONS(2308), - [anon_sym_Package] = ACTIONS(2308), - [anon_sym_package] = ACTIONS(2308), - [anon_sym_PACKAGE] = ACTIONS(2308), - [anon_sym_Private] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_PRIVATE] = ACTIONS(2308), - [anon_sym_Public] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_PUBLIC] = ACTIONS(2308), - [anon_sym_Remote] = ACTIONS(2308), - [anon_sym_remote] = ACTIONS(2308), - [anon_sym_REMOTE] = ACTIONS(2308), - [anon_sym_Static] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_STATIC] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2310), - [sym__ternary_qmark] = ACTIONS(2310), - [sym__elvis_operator] = ACTIONS(2310), - [sym_logical_or] = ACTIONS(2310), - [sym_tag_linefeed] = ACTIONS(2310), - [sym__java_block_open] = ACTIONS(2310), - [sym__static_type_prefix] = ACTIONS(2310), + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_let] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_Query] = ACTIONS(507), + [anon_sym_query] = ACTIONS(507), + [anon_sym_QUERY] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [aux_sym_unary_operator_token1] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(507), + [aux_sym_number_token2] = ACTIONS(507), + [anon_sym_This] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), + [anon_sym_THIS] = ACTIONS(507), + [anon_sym_Super] = ACTIONS(507), + [anon_sym_super] = ACTIONS(507), + [anon_sym_SUPER] = ACTIONS(507), + [anon_sym_True] = ACTIONS(507), + [anon_sym_true] = ACTIONS(507), + [anon_sym_TRUE] = ACTIONS(507), + [anon_sym_False] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_FALSE] = ACTIONS(507), + [anon_sym_Null] = ACTIONS(507), + [anon_sym_null] = ACTIONS(507), + [anon_sym_NULL] = ACTIONS(507), + [anon_sym_Undefined] = ACTIONS(507), + [anon_sym_undefined] = ACTIONS(507), + [anon_sym_UNDEFINED] = ACTIONS(507), + [anon_sym_get] = ACTIONS(507), + [anon_sym_set] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [sym_hash_empty] = ACTIONS(509), + [anon_sym_export] = ACTIONS(507), + [anon_sym_QueryExecute] = ACTIONS(507), + [anon_sym_queryexecute] = ACTIONS(507), + [anon_sym_QUERYEXECUTE] = ACTIONS(507), + [anon_sym_queryExecute] = ACTIONS(507), + [anon_sym_BQUOTE] = ACTIONS(509), + [anon_sym_Abstract] = ACTIONS(507), + [anon_sym_abstract] = ACTIONS(507), + [anon_sym_ABSTRACT] = ACTIONS(507), + [anon_sym_Component] = ACTIONS(507), + [anon_sym_component] = ACTIONS(507), + [anon_sym_COMPONENT] = ACTIONS(507), + [anon_sym_Debugger] = ACTIONS(507), + [anon_sym_debugger] = ACTIONS(507), + [anon_sym_DEBUGGER] = ACTIONS(507), + [anon_sym_Final] = ACTIONS(507), + [anon_sym_final] = ACTIONS(507), + [anon_sym_FINAL] = ACTIONS(507), + [anon_sym_Function] = ACTIONS(507), + [anon_sym_function] = ACTIONS(507), + [anon_sym_FUNCTION] = ACTIONS(507), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(507), + [anon_sym_include] = ACTIONS(507), + [anon_sym_INCLUDE] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(507), + [anon_sym_new] = ACTIONS(507), + [anon_sym_NEW] = ACTIONS(507), + [anon_sym_Package] = ACTIONS(507), + [anon_sym_package] = ACTIONS(507), + [anon_sym_PACKAGE] = ACTIONS(507), + [anon_sym_Private] = ACTIONS(507), + [anon_sym_private] = ACTIONS(507), + [anon_sym_PRIVATE] = ACTIONS(507), + [anon_sym_Public] = ACTIONS(507), + [anon_sym_public] = ACTIONS(507), + [anon_sym_PUBLIC] = ACTIONS(507), + [anon_sym_Remote] = ACTIONS(507), + [anon_sym_remote] = ACTIONS(507), + [anon_sym_REMOTE] = ACTIONS(507), + [anon_sym_Static] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_STATIC] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(509), + [sym__static_type_prefix] = ACTIONS(509), }, [STATE(467)] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_Query] = ACTIONS(2209), - [anon_sym_query] = ACTIONS(2209), - [anon_sym_QUERY] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2207), - [aux_sym_unary_operator_token1] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2207), - [anon_sym_DASH_DASH] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2207), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2209), - [aux_sym_number_token2] = ACTIONS(2207), - [anon_sym_This] = ACTIONS(2209), - [anon_sym_this] = ACTIONS(2209), - [anon_sym_THIS] = ACTIONS(2209), - [anon_sym_Super] = ACTIONS(2209), - [anon_sym_super] = ACTIONS(2209), - [anon_sym_SUPER] = ACTIONS(2209), - [anon_sym_True] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_TRUE] = ACTIONS(2209), - [anon_sym_False] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_FALSE] = ACTIONS(2209), - [anon_sym_Null] = ACTIONS(2209), - [anon_sym_null] = ACTIONS(2209), - [anon_sym_NULL] = ACTIONS(2209), - [anon_sym_Undefined] = ACTIONS(2209), - [anon_sym_undefined] = ACTIONS(2209), - [anon_sym_UNDEFINED] = ACTIONS(2209), - [anon_sym_get] = ACTIONS(2209), - [anon_sym_set] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2209), - [sym_hash_empty] = ACTIONS(2207), - [anon_sym_export] = ACTIONS(2209), - [anon_sym_QueryExecute] = ACTIONS(2209), - [anon_sym_queryexecute] = ACTIONS(2209), - [anon_sym_QUERYEXECUTE] = ACTIONS(2209), - [anon_sym_queryExecute] = ACTIONS(2209), - [anon_sym_BQUOTE] = ACTIONS(2209), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2207), - [anon_sym_Abstract] = ACTIONS(2209), - [anon_sym_abstract] = ACTIONS(2209), - [anon_sym_ABSTRACT] = ACTIONS(2209), - [anon_sym_Break] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_BREAK] = ACTIONS(2209), - [anon_sym_Case] = ACTIONS(2209), - [anon_sym_case] = ACTIONS(2209), - [anon_sym_CASE] = ACTIONS(2209), - [anon_sym_Catch] = ACTIONS(2209), - [anon_sym_catch] = ACTIONS(2209), - [anon_sym_CATCH] = ACTIONS(2209), - [anon_sym_Component] = ACTIONS(2209), - [anon_sym_component] = ACTIONS(2209), - [anon_sym_COMPONENT] = ACTIONS(2209), - [anon_sym_Continue] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_CONTINUE] = ACTIONS(2209), - [anon_sym_Debugger] = ACTIONS(2209), - [anon_sym_debugger] = ACTIONS(2209), - [anon_sym_DEBUGGER] = ACTIONS(2209), - [anon_sym_Default] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_DEFAULT] = ACTIONS(2209), - [anon_sym_Do] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_DO] = ACTIONS(2209), - [anon_sym_Final] = ACTIONS(2209), - [anon_sym_final] = ACTIONS(2209), - [anon_sym_FINAL] = ACTIONS(2209), - [anon_sym_Finally] = ACTIONS(2209), - [anon_sym_finally] = ACTIONS(2209), - [anon_sym_FINALLY] = ACTIONS(2209), - [anon_sym_For] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_FOR] = ACTIONS(2209), - [anon_sym_Function] = ACTIONS(2209), - [anon_sym_function] = ACTIONS(2209), - [anon_sym_FUNCTION] = ACTIONS(2209), - [anon_sym_If] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_IF] = ACTIONS(2209), - [anon_sym_Import] = ACTIONS(2209), - [anon_sym_import] = ACTIONS(2209), - [anon_sym_IMPORT] = ACTIONS(2209), - [anon_sym_Include] = ACTIONS(2209), - [anon_sym_include] = ACTIONS(2209), - [anon_sym_INCLUDE] = ACTIONS(2209), - [anon_sym_Interface] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_INTERFACE] = ACTIONS(2209), - [anon_sym_New] = ACTIONS(2209), - [anon_sym_new] = ACTIONS(2209), - [anon_sym_NEW] = ACTIONS(2209), - [anon_sym_Package] = ACTIONS(2209), - [anon_sym_package] = ACTIONS(2209), - [anon_sym_PACKAGE] = ACTIONS(2209), - [anon_sym_Private] = ACTIONS(2209), - [anon_sym_private] = ACTIONS(2209), - [anon_sym_PRIVATE] = ACTIONS(2209), - [anon_sym_Property] = ACTIONS(2209), - [anon_sym_property] = ACTIONS(2209), - [anon_sym_PROPERTY] = ACTIONS(2209), - [anon_sym_Public] = ACTIONS(2209), - [anon_sym_public] = ACTIONS(2209), - [anon_sym_PUBLIC] = ACTIONS(2209), - [anon_sym_Remote] = ACTIONS(2209), - [anon_sym_remote] = ACTIONS(2209), - [anon_sym_REMOTE] = ACTIONS(2209), - [anon_sym_Return] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_RETURN] = ACTIONS(2209), - [anon_sym_Static] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_STATIC] = ACTIONS(2209), - [anon_sym_Switch] = ACTIONS(2209), - [anon_sym_switch] = ACTIONS(2209), - [anon_sym_SWITCH] = ACTIONS(2209), - [anon_sym_Throw] = ACTIONS(2209), - [anon_sym_throw] = ACTIONS(2209), - [anon_sym_THROW] = ACTIONS(2209), - [anon_sym_Try] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_TRY] = ACTIONS(2209), - [anon_sym_Var] = ACTIONS(2209), - [anon_sym_var] = ACTIONS(2209), - [anon_sym_VAR] = ACTIONS(2209), - [anon_sym_While] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_WHILE] = ACTIONS(2209), - [anon_sym_With] = ACTIONS(2209), - [anon_sym_with] = ACTIONS(2209), - [anon_sym_WITH] = ACTIONS(2209), - [sym_cf_comment] = ACTIONS(2207), - [sym__java_block_open] = ACTIONS(2207), - [sym__static_type_prefix] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2316), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2316), + [anon_sym_Query] = ACTIONS(2314), + [anon_sym_query] = ACTIONS(2314), + [anon_sym_QUERY] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2314), + [sym_optional_chain] = ACTIONS(2316), + [sym_static_chain] = ACTIONS(2316), + [anon_sym_AMP_AMP] = ACTIONS(2316), + [anon_sym_PIPE_PIPE] = ACTIONS(2316), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2316), + [anon_sym_LT_LT] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2316), + [anon_sym_BSLASH] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2316), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2316), + [anon_sym_LT_GT] = ACTIONS(2316), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2316), + [aux_sym_binary_expression_token1] = ACTIONS(2316), + [anon_sym_GT_EQ] = ACTIONS(2316), + [anon_sym_GT] = ACTIONS(2314), + [aux_sym_binary_expression_token2] = ACTIONS(2314), + [aux_sym_binary_expression_token3] = ACTIONS(2314), + [aux_sym_binary_expression_token4] = ACTIONS(2316), + [aux_sym_binary_expression_token5] = ACTIONS(2316), + [aux_sym_binary_expression_token6] = ACTIONS(2316), + [anon_sym_QMARK_QMARK] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2316), + [aux_sym_unary_operator_token1] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2316), + [anon_sym_DASH_DASH] = ACTIONS(2316), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_SQUOTE] = ACTIONS(2316), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2314), + [aux_sym_number_token2] = ACTIONS(2314), + [anon_sym_This] = ACTIONS(2314), + [anon_sym_this] = ACTIONS(2314), + [anon_sym_THIS] = ACTIONS(2314), + [anon_sym_Super] = ACTIONS(2314), + [anon_sym_super] = ACTIONS(2314), + [anon_sym_SUPER] = ACTIONS(2314), + [anon_sym_True] = ACTIONS(2314), + [anon_sym_true] = ACTIONS(2314), + [anon_sym_TRUE] = ACTIONS(2314), + [anon_sym_False] = ACTIONS(2314), + [anon_sym_false] = ACTIONS(2314), + [anon_sym_FALSE] = ACTIONS(2314), + [anon_sym_Null] = ACTIONS(2314), + [anon_sym_null] = ACTIONS(2314), + [anon_sym_NULL] = ACTIONS(2314), + [anon_sym_Undefined] = ACTIONS(2314), + [anon_sym_undefined] = ACTIONS(2314), + [anon_sym_UNDEFINED] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(2314), + [sym_hash_empty] = ACTIONS(2316), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_QueryExecute] = ACTIONS(2314), + [anon_sym_queryexecute] = ACTIONS(2314), + [anon_sym_QUERYEXECUTE] = ACTIONS(2314), + [anon_sym_queryExecute] = ACTIONS(2314), + [anon_sym_BQUOTE] = ACTIONS(2316), + [anon_sym_Abstract] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_ABSTRACT] = ACTIONS(2314), + [anon_sym_Component] = ACTIONS(2314), + [anon_sym_component] = ACTIONS(2314), + [anon_sym_COMPONENT] = ACTIONS(2314), + [anon_sym_Debugger] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_DEBUGGER] = ACTIONS(2314), + [anon_sym_Final] = ACTIONS(2314), + [anon_sym_final] = ACTIONS(2314), + [anon_sym_FINAL] = ACTIONS(2314), + [anon_sym_Function] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_FUNCTION] = ACTIONS(2314), + [anon_sym_In] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_IN] = ACTIONS(2314), + [anon_sym_Include] = ACTIONS(2314), + [anon_sym_include] = ACTIONS(2314), + [anon_sym_INCLUDE] = ACTIONS(2314), + [anon_sym_InstanceOf] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_INSTANCEOF] = ACTIONS(2314), + [anon_sym_instanceOf] = ACTIONS(2314), + [anon_sym_New] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_NEW] = ACTIONS(2314), + [anon_sym_Package] = ACTIONS(2314), + [anon_sym_package] = ACTIONS(2314), + [anon_sym_PACKAGE] = ACTIONS(2314), + [anon_sym_Private] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_PRIVATE] = ACTIONS(2314), + [anon_sym_Public] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_PUBLIC] = ACTIONS(2314), + [anon_sym_Remote] = ACTIONS(2314), + [anon_sym_remote] = ACTIONS(2314), + [anon_sym_REMOTE] = ACTIONS(2314), + [anon_sym_Static] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_STATIC] = ACTIONS(2314), + [sym__automatic_semicolon] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2316), + [sym__elvis_operator] = ACTIONS(2316), + [sym_logical_or] = ACTIONS(2316), + [sym_tag_linefeed] = ACTIONS(2316), + [sym__java_block_open] = ACTIONS(2316), + [sym__static_type_prefix] = ACTIONS(2316), }, [STATE(468)] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_Query] = ACTIONS(1088), - [anon_sym_query] = ACTIONS(1088), - [anon_sym_QUERY] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1085), - [aux_sym_unary_operator_token1] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1088), - [aux_sym_number_token2] = ACTIONS(1088), - [anon_sym_This] = ACTIONS(1088), - [anon_sym_this] = ACTIONS(1088), - [anon_sym_THIS] = ACTIONS(1088), - [anon_sym_Super] = ACTIONS(1088), - [anon_sym_super] = ACTIONS(1088), - [anon_sym_SUPER] = ACTIONS(1088), - [anon_sym_True] = ACTIONS(1088), - [anon_sym_true] = ACTIONS(1088), - [anon_sym_TRUE] = ACTIONS(1088), - [anon_sym_False] = ACTIONS(1088), - [anon_sym_false] = ACTIONS(1088), - [anon_sym_FALSE] = ACTIONS(1088), - [anon_sym_Null] = ACTIONS(1088), - [anon_sym_null] = ACTIONS(1088), - [anon_sym_NULL] = ACTIONS(1088), - [anon_sym_Undefined] = ACTIONS(1088), - [anon_sym_undefined] = ACTIONS(1088), - [anon_sym_UNDEFINED] = ACTIONS(1088), - [anon_sym_get] = ACTIONS(1088), - [anon_sym_set] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1088), - [sym_hash_empty] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1088), - [anon_sym_QueryExecute] = ACTIONS(1088), - [anon_sym_queryexecute] = ACTIONS(1088), - [anon_sym_QUERYEXECUTE] = ACTIONS(1088), - [anon_sym_queryExecute] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1085), - [anon_sym_Abstract] = ACTIONS(1088), - [anon_sym_abstract] = ACTIONS(1088), - [anon_sym_ABSTRACT] = ACTIONS(1088), - [anon_sym_Component] = ACTIONS(1088), - [anon_sym_component] = ACTIONS(1088), - [anon_sym_COMPONENT] = ACTIONS(1088), - [anon_sym_Debugger] = ACTIONS(1088), - [anon_sym_debugger] = ACTIONS(1088), - [anon_sym_DEBUGGER] = ACTIONS(1088), - [anon_sym_Final] = ACTIONS(1088), - [anon_sym_final] = ACTIONS(1088), - [anon_sym_FINAL] = ACTIONS(1088), - [anon_sym_Function] = ACTIONS(1088), - [anon_sym_function] = ACTIONS(1088), - [anon_sym_FUNCTION] = ACTIONS(1088), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(1088), - [anon_sym_include] = ACTIONS(1088), - [anon_sym_INCLUDE] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_New] = ACTIONS(1088), - [anon_sym_new] = ACTIONS(1088), - [anon_sym_NEW] = ACTIONS(1088), - [anon_sym_Package] = ACTIONS(1088), - [anon_sym_package] = ACTIONS(1088), - [anon_sym_PACKAGE] = ACTIONS(1088), - [anon_sym_Private] = ACTIONS(1088), - [anon_sym_private] = ACTIONS(1088), - [anon_sym_PRIVATE] = ACTIONS(1088), - [anon_sym_Public] = ACTIONS(1088), - [anon_sym_public] = ACTIONS(1088), - [anon_sym_PUBLIC] = ACTIONS(1088), - [anon_sym_Remote] = ACTIONS(1088), - [anon_sym_remote] = ACTIONS(1088), - [anon_sym_REMOTE] = ACTIONS(1088), - [anon_sym_Static] = ACTIONS(1088), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_STATIC] = ACTIONS(1088), - [sym__automatic_semicolon] = ACTIONS(1085), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_tag_linefeed] = ACTIONS(1085), - [sym__java_block_open] = ACTIONS(1085), - [sym__static_type_prefix] = ACTIONS(1085), + [sym_identifier] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym_Query] = ACTIONS(2318), + [anon_sym_query] = ACTIONS(2318), + [anon_sym_QUERY] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2320), + [aux_sym_unary_operator_token1] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2318), + [aux_sym_number_token2] = ACTIONS(2318), + [anon_sym_This] = ACTIONS(2318), + [anon_sym_this] = ACTIONS(2318), + [anon_sym_THIS] = ACTIONS(2318), + [anon_sym_Super] = ACTIONS(2318), + [anon_sym_super] = ACTIONS(2318), + [anon_sym_SUPER] = ACTIONS(2318), + [anon_sym_True] = ACTIONS(2318), + [anon_sym_true] = ACTIONS(2318), + [anon_sym_TRUE] = ACTIONS(2318), + [anon_sym_False] = ACTIONS(2318), + [anon_sym_false] = ACTIONS(2318), + [anon_sym_FALSE] = ACTIONS(2318), + [anon_sym_Null] = ACTIONS(2318), + [anon_sym_null] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_Undefined] = ACTIONS(2318), + [anon_sym_undefined] = ACTIONS(2318), + [anon_sym_UNDEFINED] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [sym_hash_empty] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_QueryExecute] = ACTIONS(2318), + [anon_sym_queryexecute] = ACTIONS(2318), + [anon_sym_QUERYEXECUTE] = ACTIONS(2318), + [anon_sym_queryExecute] = ACTIONS(2318), + [anon_sym_BQUOTE] = ACTIONS(2320), + [anon_sym_Abstract] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_ABSTRACT] = ACTIONS(2318), + [anon_sym_Component] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_COMPONENT] = ACTIONS(2318), + [anon_sym_Debugger] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_DEBUGGER] = ACTIONS(2318), + [anon_sym_Final] = ACTIONS(2318), + [anon_sym_final] = ACTIONS(2318), + [anon_sym_FINAL] = ACTIONS(2318), + [anon_sym_Function] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_FUNCTION] = ACTIONS(2318), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_Include] = ACTIONS(2318), + [anon_sym_include] = ACTIONS(2318), + [anon_sym_INCLUDE] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_INSTANCEOF] = ACTIONS(2318), + [anon_sym_instanceOf] = ACTIONS(2318), + [anon_sym_New] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_NEW] = ACTIONS(2318), + [anon_sym_Package] = ACTIONS(2318), + [anon_sym_package] = ACTIONS(2318), + [anon_sym_PACKAGE] = ACTIONS(2318), + [anon_sym_Private] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_PRIVATE] = ACTIONS(2318), + [anon_sym_Public] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_PUBLIC] = ACTIONS(2318), + [anon_sym_Remote] = ACTIONS(2318), + [anon_sym_remote] = ACTIONS(2318), + [anon_sym_REMOTE] = ACTIONS(2318), + [anon_sym_Static] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_STATIC] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + [sym_tag_linefeed] = ACTIONS(2320), + [sym__java_block_open] = ACTIONS(2320), + [sym__static_type_prefix] = ACTIONS(2320), }, [STATE(469)] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_Query] = ACTIONS(2312), - [anon_sym_query] = ACTIONS(2312), - [anon_sym_QUERY] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2312), - [sym_optional_chain] = ACTIONS(2314), - [sym_static_chain] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_BSLASH] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_LT_GT] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [aux_sym_binary_expression_token1] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [aux_sym_binary_expression_token2] = ACTIONS(2312), - [aux_sym_binary_expression_token3] = ACTIONS(2312), - [aux_sym_binary_expression_token4] = ACTIONS(2314), - [aux_sym_binary_expression_token5] = ACTIONS(2314), - [aux_sym_binary_expression_token6] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [aux_sym_unary_operator_token1] = ACTIONS(2312), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2312), - [aux_sym_number_token2] = ACTIONS(2312), - [anon_sym_This] = ACTIONS(2312), - [anon_sym_this] = ACTIONS(2312), - [anon_sym_THIS] = ACTIONS(2312), - [anon_sym_Super] = ACTIONS(2312), - [anon_sym_super] = ACTIONS(2312), - [anon_sym_SUPER] = ACTIONS(2312), - [anon_sym_True] = ACTIONS(2312), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_TRUE] = ACTIONS(2312), - [anon_sym_False] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [anon_sym_FALSE] = ACTIONS(2312), - [anon_sym_Null] = ACTIONS(2312), - [anon_sym_null] = ACTIONS(2312), - [anon_sym_NULL] = ACTIONS(2312), - [anon_sym_Undefined] = ACTIONS(2312), - [anon_sym_undefined] = ACTIONS(2312), - [anon_sym_UNDEFINED] = ACTIONS(2312), - [anon_sym_get] = ACTIONS(2312), - [anon_sym_set] = ACTIONS(2312), - [anon_sym_POUND] = ACTIONS(2312), - [sym_hash_empty] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2312), - [anon_sym_QueryExecute] = ACTIONS(2312), - [anon_sym_queryexecute] = ACTIONS(2312), - [anon_sym_QUERYEXECUTE] = ACTIONS(2312), - [anon_sym_queryExecute] = ACTIONS(2312), - [anon_sym_BQUOTE] = ACTIONS(2314), - [anon_sym_Abstract] = ACTIONS(2312), - [anon_sym_abstract] = ACTIONS(2312), - [anon_sym_ABSTRACT] = ACTIONS(2312), - [anon_sym_Component] = ACTIONS(2312), - [anon_sym_component] = ACTIONS(2312), - [anon_sym_COMPONENT] = ACTIONS(2312), - [anon_sym_Debugger] = ACTIONS(2312), - [anon_sym_debugger] = ACTIONS(2312), - [anon_sym_DEBUGGER] = ACTIONS(2312), - [anon_sym_Final] = ACTIONS(2312), - [anon_sym_final] = ACTIONS(2312), - [anon_sym_FINAL] = ACTIONS(2312), - [anon_sym_Function] = ACTIONS(2312), - [anon_sym_function] = ACTIONS(2312), - [anon_sym_FUNCTION] = ACTIONS(2312), - [anon_sym_In] = ACTIONS(2312), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_IN] = ACTIONS(2312), - [anon_sym_Include] = ACTIONS(2312), - [anon_sym_include] = ACTIONS(2312), - [anon_sym_INCLUDE] = ACTIONS(2312), - [anon_sym_InstanceOf] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_INSTANCEOF] = ACTIONS(2312), - [anon_sym_instanceOf] = ACTIONS(2312), - [anon_sym_New] = ACTIONS(2312), - [anon_sym_new] = ACTIONS(2312), - [anon_sym_NEW] = ACTIONS(2312), - [anon_sym_Package] = ACTIONS(2312), - [anon_sym_package] = ACTIONS(2312), - [anon_sym_PACKAGE] = ACTIONS(2312), - [anon_sym_Private] = ACTIONS(2312), - [anon_sym_private] = ACTIONS(2312), - [anon_sym_PRIVATE] = ACTIONS(2312), - [anon_sym_Public] = ACTIONS(2312), - [anon_sym_public] = ACTIONS(2312), - [anon_sym_PUBLIC] = ACTIONS(2312), - [anon_sym_Remote] = ACTIONS(2312), - [anon_sym_remote] = ACTIONS(2312), - [anon_sym_REMOTE] = ACTIONS(2312), - [anon_sym_Static] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2312), - [anon_sym_STATIC] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(2314), - [sym__ternary_qmark] = ACTIONS(2314), - [sym__elvis_operator] = ACTIONS(2314), - [sym_logical_or] = ACTIONS(2314), - [sym_tag_linefeed] = ACTIONS(2314), - [sym__java_block_open] = ACTIONS(2314), - [sym__static_type_prefix] = ACTIONS(2314), + [sym_arguments] = STATE(472), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(1718), + [anon_sym_query] = ACTIONS(1718), + [anon_sym_QUERY] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(2266), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [aux_sym_unary_operator_token1] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1718), + [aux_sym_number_token2] = ACTIONS(1718), + [anon_sym_This] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_THIS] = ACTIONS(1718), + [anon_sym_Super] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(1718), + [anon_sym_SUPER] = ACTIONS(1718), + [anon_sym_True] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_TRUE] = ACTIONS(1718), + [anon_sym_False] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_FALSE] = ACTIONS(1718), + [anon_sym_Null] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_NULL] = ACTIONS(1718), + [anon_sym_Undefined] = ACTIONS(1718), + [anon_sym_undefined] = ACTIONS(1718), + [anon_sym_UNDEFINED] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [sym_hash_empty] = ACTIONS(1716), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_QueryExecute] = ACTIONS(1718), + [anon_sym_queryexecute] = ACTIONS(1718), + [anon_sym_QUERYEXECUTE] = ACTIONS(1718), + [anon_sym_queryExecute] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_Abstract] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_ABSTRACT] = ACTIONS(1718), + [anon_sym_Component] = ACTIONS(1718), + [anon_sym_component] = ACTIONS(1718), + [anon_sym_COMPONENT] = ACTIONS(1718), + [anon_sym_Debugger] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_DEBUGGER] = ACTIONS(1718), + [anon_sym_Final] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_FINAL] = ACTIONS(1718), + [anon_sym_Function] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_FUNCTION] = ACTIONS(1718), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1718), + [anon_sym_include] = ACTIONS(1718), + [anon_sym_INCLUDE] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_NEW] = ACTIONS(1718), + [anon_sym_Package] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_PACKAGE] = ACTIONS(1718), + [anon_sym_Private] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_PRIVATE] = ACTIONS(1718), + [anon_sym_Public] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_PUBLIC] = ACTIONS(1718), + [anon_sym_Remote] = ACTIONS(1718), + [anon_sym_remote] = ACTIONS(1718), + [anon_sym_REMOTE] = ACTIONS(1718), + [anon_sym_Static] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_STATIC] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(1716), + [sym__static_type_prefix] = ACTIONS(1716), }, [STATE(470)] = { - [sym_identifier] = ACTIONS(2316), - [anon_sym_DOT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_COMMA] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_Query] = ACTIONS(2316), - [anon_sym_query] = ACTIONS(2316), - [anon_sym_QUERY] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2316), - [sym_optional_chain] = ACTIONS(2318), - [sym_static_chain] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_BSLASH] = ACTIONS(2316), - [anon_sym_STAR_STAR] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2316), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), - [anon_sym_LT_GT] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2316), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), - [aux_sym_binary_expression_token1] = ACTIONS(2318), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [aux_sym_binary_expression_token2] = ACTIONS(2316), - [aux_sym_binary_expression_token3] = ACTIONS(2316), - [aux_sym_binary_expression_token4] = ACTIONS(2318), - [aux_sym_binary_expression_token5] = ACTIONS(2318), - [aux_sym_binary_expression_token6] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_BANG] = ACTIONS(2316), - [anon_sym_TILDE] = ACTIONS(2318), - [aux_sym_unary_operator_token1] = ACTIONS(2316), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_DQUOTE] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2318), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2316), - [aux_sym_number_token2] = ACTIONS(2316), - [anon_sym_This] = ACTIONS(2316), - [anon_sym_this] = ACTIONS(2316), - [anon_sym_THIS] = ACTIONS(2316), - [anon_sym_Super] = ACTIONS(2316), - [anon_sym_super] = ACTIONS(2316), - [anon_sym_SUPER] = ACTIONS(2316), - [anon_sym_True] = ACTIONS(2316), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_TRUE] = ACTIONS(2316), - [anon_sym_False] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [anon_sym_FALSE] = ACTIONS(2316), - [anon_sym_Null] = ACTIONS(2316), - [anon_sym_null] = ACTIONS(2316), - [anon_sym_NULL] = ACTIONS(2316), - [anon_sym_Undefined] = ACTIONS(2316), - [anon_sym_undefined] = ACTIONS(2316), - [anon_sym_UNDEFINED] = ACTIONS(2316), - [anon_sym_get] = ACTIONS(2316), - [anon_sym_set] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2316), - [sym_hash_empty] = ACTIONS(2318), - [anon_sym_export] = ACTIONS(2316), - [anon_sym_QueryExecute] = ACTIONS(2316), - [anon_sym_queryexecute] = ACTIONS(2316), - [anon_sym_QUERYEXECUTE] = ACTIONS(2316), - [anon_sym_queryExecute] = ACTIONS(2316), - [anon_sym_BQUOTE] = ACTIONS(2318), - [anon_sym_Abstract] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2316), - [anon_sym_ABSTRACT] = ACTIONS(2316), - [anon_sym_Component] = ACTIONS(2316), - [anon_sym_component] = ACTIONS(2316), - [anon_sym_COMPONENT] = ACTIONS(2316), - [anon_sym_Debugger] = ACTIONS(2316), - [anon_sym_debugger] = ACTIONS(2316), - [anon_sym_DEBUGGER] = ACTIONS(2316), - [anon_sym_Final] = ACTIONS(2316), - [anon_sym_final] = ACTIONS(2316), - [anon_sym_FINAL] = ACTIONS(2316), - [anon_sym_Function] = ACTIONS(2316), - [anon_sym_function] = ACTIONS(2316), - [anon_sym_FUNCTION] = ACTIONS(2316), - [anon_sym_In] = ACTIONS(2316), - [anon_sym_in] = ACTIONS(2316), - [anon_sym_IN] = ACTIONS(2316), - [anon_sym_Include] = ACTIONS(2316), - [anon_sym_include] = ACTIONS(2316), - [anon_sym_INCLUDE] = ACTIONS(2316), - [anon_sym_InstanceOf] = ACTIONS(2316), - [anon_sym_instanceof] = ACTIONS(2316), - [anon_sym_INSTANCEOF] = ACTIONS(2316), - [anon_sym_instanceOf] = ACTIONS(2316), - [anon_sym_New] = ACTIONS(2316), - [anon_sym_new] = ACTIONS(2316), - [anon_sym_NEW] = ACTIONS(2316), - [anon_sym_Package] = ACTIONS(2316), - [anon_sym_package] = ACTIONS(2316), - [anon_sym_PACKAGE] = ACTIONS(2316), - [anon_sym_Private] = ACTIONS(2316), - [anon_sym_private] = ACTIONS(2316), - [anon_sym_PRIVATE] = ACTIONS(2316), - [anon_sym_Public] = ACTIONS(2316), - [anon_sym_public] = ACTIONS(2316), - [anon_sym_PUBLIC] = ACTIONS(2316), - [anon_sym_Remote] = ACTIONS(2316), - [anon_sym_remote] = ACTIONS(2316), - [anon_sym_REMOTE] = ACTIONS(2316), - [anon_sym_Static] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_STATIC] = ACTIONS(2316), - [sym__automatic_semicolon] = ACTIONS(2318), - [sym__ternary_qmark] = ACTIONS(2318), - [sym__elvis_operator] = ACTIONS(2318), - [sym_logical_or] = ACTIONS(2318), - [sym_tag_linefeed] = ACTIONS(2318), - [sym__java_block_open] = ACTIONS(2318), - [sym__static_type_prefix] = ACTIONS(2318), + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_let] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_Query] = ACTIONS(507), + [anon_sym_query] = ACTIONS(507), + [anon_sym_QUERY] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [aux_sym_unary_operator_token1] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(507), + [aux_sym_number_token2] = ACTIONS(507), + [anon_sym_This] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), + [anon_sym_THIS] = ACTIONS(507), + [anon_sym_Super] = ACTIONS(507), + [anon_sym_super] = ACTIONS(507), + [anon_sym_SUPER] = ACTIONS(507), + [anon_sym_True] = ACTIONS(507), + [anon_sym_true] = ACTIONS(507), + [anon_sym_TRUE] = ACTIONS(507), + [anon_sym_False] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_FALSE] = ACTIONS(507), + [anon_sym_Null] = ACTIONS(507), + [anon_sym_null] = ACTIONS(507), + [anon_sym_NULL] = ACTIONS(507), + [anon_sym_Undefined] = ACTIONS(507), + [anon_sym_undefined] = ACTIONS(507), + [anon_sym_UNDEFINED] = ACTIONS(507), + [anon_sym_get] = ACTIONS(507), + [anon_sym_set] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [sym_hash_empty] = ACTIONS(509), + [anon_sym_export] = ACTIONS(507), + [anon_sym_QueryExecute] = ACTIONS(507), + [anon_sym_queryexecute] = ACTIONS(507), + [anon_sym_QUERYEXECUTE] = ACTIONS(507), + [anon_sym_queryExecute] = ACTIONS(507), + [anon_sym_BQUOTE] = ACTIONS(509), + [anon_sym_Abstract] = ACTIONS(507), + [anon_sym_abstract] = ACTIONS(507), + [anon_sym_ABSTRACT] = ACTIONS(507), + [anon_sym_Component] = ACTIONS(507), + [anon_sym_component] = ACTIONS(507), + [anon_sym_COMPONENT] = ACTIONS(507), + [anon_sym_Debugger] = ACTIONS(507), + [anon_sym_debugger] = ACTIONS(507), + [anon_sym_DEBUGGER] = ACTIONS(507), + [anon_sym_Final] = ACTIONS(507), + [anon_sym_final] = ACTIONS(507), + [anon_sym_FINAL] = ACTIONS(507), + [anon_sym_Function] = ACTIONS(507), + [anon_sym_function] = ACTIONS(507), + [anon_sym_FUNCTION] = ACTIONS(507), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(507), + [anon_sym_include] = ACTIONS(507), + [anon_sym_INCLUDE] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(507), + [anon_sym_new] = ACTIONS(507), + [anon_sym_NEW] = ACTIONS(507), + [anon_sym_Package] = ACTIONS(507), + [anon_sym_package] = ACTIONS(507), + [anon_sym_PACKAGE] = ACTIONS(507), + [anon_sym_Private] = ACTIONS(507), + [anon_sym_private] = ACTIONS(507), + [anon_sym_PRIVATE] = ACTIONS(507), + [anon_sym_Public] = ACTIONS(507), + [anon_sym_public] = ACTIONS(507), + [anon_sym_PUBLIC] = ACTIONS(507), + [anon_sym_Remote] = ACTIONS(507), + [anon_sym_remote] = ACTIONS(507), + [anon_sym_REMOTE] = ACTIONS(507), + [anon_sym_Static] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_STATIC] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(509), + [sym__static_type_prefix] = ACTIONS(509), }, [STATE(471)] = { - [sym_identifier] = ACTIONS(2320), - [anon_sym_DOT] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_Query] = ACTIONS(2320), - [anon_sym_query] = ACTIONS(2320), - [anon_sym_QUERY] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2320), - [sym_optional_chain] = ACTIONS(2322), - [sym_static_chain] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_BSLASH] = ACTIONS(2320), - [anon_sym_STAR_STAR] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_LT_GT] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2322), - [aux_sym_binary_expression_token1] = ACTIONS(2322), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [aux_sym_binary_expression_token2] = ACTIONS(2320), - [aux_sym_binary_expression_token3] = ACTIONS(2320), - [aux_sym_binary_expression_token4] = ACTIONS(2322), - [aux_sym_binary_expression_token5] = ACTIONS(2322), - [aux_sym_binary_expression_token6] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2322), - [aux_sym_unary_operator_token1] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_DQUOTE] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2322), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2320), - [aux_sym_number_token2] = ACTIONS(2320), - [anon_sym_This] = ACTIONS(2320), - [anon_sym_this] = ACTIONS(2320), - [anon_sym_THIS] = ACTIONS(2320), - [anon_sym_Super] = ACTIONS(2320), - [anon_sym_super] = ACTIONS(2320), - [anon_sym_SUPER] = ACTIONS(2320), - [anon_sym_True] = ACTIONS(2320), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_TRUE] = ACTIONS(2320), - [anon_sym_False] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [anon_sym_FALSE] = ACTIONS(2320), - [anon_sym_Null] = ACTIONS(2320), - [anon_sym_null] = ACTIONS(2320), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_Undefined] = ACTIONS(2320), - [anon_sym_undefined] = ACTIONS(2320), - [anon_sym_UNDEFINED] = ACTIONS(2320), - [anon_sym_get] = ACTIONS(2320), - [anon_sym_set] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(2320), - [sym_hash_empty] = ACTIONS(2322), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_QueryExecute] = ACTIONS(2320), - [anon_sym_queryexecute] = ACTIONS(2320), - [anon_sym_QUERYEXECUTE] = ACTIONS(2320), - [anon_sym_queryExecute] = ACTIONS(2320), - [anon_sym_BQUOTE] = ACTIONS(2322), - [anon_sym_Abstract] = ACTIONS(2320), - [anon_sym_abstract] = ACTIONS(2320), - [anon_sym_ABSTRACT] = ACTIONS(2320), - [anon_sym_Component] = ACTIONS(2320), - [anon_sym_component] = ACTIONS(2320), - [anon_sym_COMPONENT] = ACTIONS(2320), - [anon_sym_Debugger] = ACTIONS(2320), - [anon_sym_debugger] = ACTIONS(2320), - [anon_sym_DEBUGGER] = ACTIONS(2320), - [anon_sym_Final] = ACTIONS(2320), - [anon_sym_final] = ACTIONS(2320), - [anon_sym_FINAL] = ACTIONS(2320), - [anon_sym_Function] = ACTIONS(2320), - [anon_sym_function] = ACTIONS(2320), - [anon_sym_FUNCTION] = ACTIONS(2320), - [anon_sym_In] = ACTIONS(2320), - [anon_sym_in] = ACTIONS(2320), - [anon_sym_IN] = ACTIONS(2320), - [anon_sym_Include] = ACTIONS(2320), - [anon_sym_include] = ACTIONS(2320), - [anon_sym_INCLUDE] = ACTIONS(2320), - [anon_sym_InstanceOf] = ACTIONS(2320), - [anon_sym_instanceof] = ACTIONS(2320), - [anon_sym_INSTANCEOF] = ACTIONS(2320), - [anon_sym_instanceOf] = ACTIONS(2320), - [anon_sym_New] = ACTIONS(2320), - [anon_sym_new] = ACTIONS(2320), - [anon_sym_NEW] = ACTIONS(2320), - [anon_sym_Package] = ACTIONS(2320), - [anon_sym_package] = ACTIONS(2320), - [anon_sym_PACKAGE] = ACTIONS(2320), - [anon_sym_Private] = ACTIONS(2320), - [anon_sym_private] = ACTIONS(2320), - [anon_sym_PRIVATE] = ACTIONS(2320), - [anon_sym_Public] = ACTIONS(2320), - [anon_sym_public] = ACTIONS(2320), - [anon_sym_PUBLIC] = ACTIONS(2320), - [anon_sym_Remote] = ACTIONS(2320), - [anon_sym_remote] = ACTIONS(2320), - [anon_sym_REMOTE] = ACTIONS(2320), - [anon_sym_Static] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_STATIC] = ACTIONS(2320), - [sym__automatic_semicolon] = ACTIONS(2322), - [sym__ternary_qmark] = ACTIONS(2322), - [sym__elvis_operator] = ACTIONS(2322), - [sym_logical_or] = ACTIONS(2322), - [sym_tag_linefeed] = ACTIONS(2322), - [sym__java_block_open] = ACTIONS(2322), - [sym__static_type_prefix] = ACTIONS(2322), - }, - [STATE(472)] = { [sym_identifier] = ACTIONS(2324), [anon_sym_DOT] = ACTIONS(2326), [anon_sym_STAR] = ACTIONS(2324), @@ -117274,6 +117237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2326), [anon_sym_SEMI] = ACTIONS(2326), [anon_sym_let] = ACTIONS(2324), + [anon_sym_COLON] = ACTIONS(2324), [anon_sym_LBRACK] = ACTIONS(2326), [anon_sym_Query] = ACTIONS(2324), [anon_sym_query] = ACTIONS(2324), @@ -117416,7 +117380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2326), [sym__static_type_prefix] = ACTIONS(2326), }, - [STATE(473)] = { + [STATE(472)] = { [sym_identifier] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(2330), [anon_sym_STAR] = ACTIONS(2328), @@ -117425,6 +117389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2330), [anon_sym_SEMI] = ACTIONS(2330), [anon_sym_let] = ACTIONS(2328), + [anon_sym_COLON] = ACTIONS(2328), [anon_sym_LBRACK] = ACTIONS(2330), [anon_sym_Query] = ACTIONS(2328), [anon_sym_query] = ACTIONS(2328), @@ -117567,6 +117532,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2330), [sym__static_type_prefix] = ACTIONS(2330), }, + [STATE(473)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_Query] = ACTIONS(2211), + [anon_sym_query] = ACTIONS(2211), + [anon_sym_QUERY] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2213), + [aux_sym_unary_operator_token1] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2211), + [aux_sym_number_token2] = ACTIONS(2211), + [anon_sym_This] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(2211), + [anon_sym_THIS] = ACTIONS(2211), + [anon_sym_Super] = ACTIONS(2211), + [anon_sym_super] = ACTIONS(2211), + [anon_sym_SUPER] = ACTIONS(2211), + [anon_sym_True] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_TRUE] = ACTIONS(2211), + [anon_sym_False] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_FALSE] = ACTIONS(2211), + [anon_sym_Null] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2211), + [anon_sym_NULL] = ACTIONS(2211), + [anon_sym_Undefined] = ACTIONS(2211), + [anon_sym_undefined] = ACTIONS(2211), + [anon_sym_UNDEFINED] = ACTIONS(2211), + [anon_sym_get] = ACTIONS(2211), + [anon_sym_set] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [sym_hash_empty] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2211), + [anon_sym_QueryExecute] = ACTIONS(2211), + [anon_sym_queryexecute] = ACTIONS(2211), + [anon_sym_QUERYEXECUTE] = ACTIONS(2211), + [anon_sym_queryExecute] = ACTIONS(2211), + [anon_sym_BQUOTE] = ACTIONS(2213), + [anon_sym_Abstract] = ACTIONS(2211), + [anon_sym_abstract] = ACTIONS(2211), + [anon_sym_ABSTRACT] = ACTIONS(2211), + [anon_sym_Component] = ACTIONS(2211), + [anon_sym_component] = ACTIONS(2211), + [anon_sym_COMPONENT] = ACTIONS(2211), + [anon_sym_Debugger] = ACTIONS(2211), + [anon_sym_debugger] = ACTIONS(2211), + [anon_sym_DEBUGGER] = ACTIONS(2211), + [anon_sym_Final] = ACTIONS(2211), + [anon_sym_final] = ACTIONS(2211), + [anon_sym_FINAL] = ACTIONS(2211), + [anon_sym_Function] = ACTIONS(2211), + [anon_sym_function] = ACTIONS(2211), + [anon_sym_FUNCTION] = ACTIONS(2211), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_Include] = ACTIONS(2211), + [anon_sym_include] = ACTIONS(2211), + [anon_sym_INCLUDE] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [anon_sym_New] = ACTIONS(2211), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_NEW] = ACTIONS(2211), + [anon_sym_Package] = ACTIONS(2211), + [anon_sym_package] = ACTIONS(2211), + [anon_sym_PACKAGE] = ACTIONS(2211), + [anon_sym_Private] = ACTIONS(2211), + [anon_sym_private] = ACTIONS(2211), + [anon_sym_PRIVATE] = ACTIONS(2211), + [anon_sym_Public] = ACTIONS(2211), + [anon_sym_public] = ACTIONS(2211), + [anon_sym_PUBLIC] = ACTIONS(2211), + [anon_sym_Remote] = ACTIONS(2211), + [anon_sym_remote] = ACTIONS(2211), + [anon_sym_REMOTE] = ACTIONS(2211), + [anon_sym_Static] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_STATIC] = ACTIONS(2211), + [sym__automatic_semicolon] = ACTIONS(2213), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym_tag_linefeed] = ACTIONS(2213), + [sym__java_block_open] = ACTIONS(2213), + [sym__static_type_prefix] = ACTIONS(2213), + }, [STATE(474)] = { [sym_identifier] = ACTIONS(2332), [anon_sym_DOT] = ACTIONS(2334), @@ -117637,6 +117754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2334), [anon_sym_SQUOTE] = ACTIONS(2334), [sym_comment] = ACTIONS(129), + [sym_regex_flags] = ACTIONS(2336), [aux_sym_number_token1] = ACTIONS(2332), [aux_sym_number_token2] = ACTIONS(2332), [anon_sym_This] = ACTIONS(2332), @@ -117719,5291 +117837,1972 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__static_type_prefix] = ACTIONS(2334), }, [STATE(475)] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_Query] = ACTIONS(2336), - [anon_sym_query] = ACTIONS(2336), - [anon_sym_QUERY] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2336), - [sym_optional_chain] = ACTIONS(2338), - [sym_static_chain] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_BSLASH] = ACTIONS(2336), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2336), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_LT_GT] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2336), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [aux_sym_binary_expression_token1] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [aux_sym_binary_expression_token2] = ACTIONS(2336), - [aux_sym_binary_expression_token3] = ACTIONS(2336), - [aux_sym_binary_expression_token4] = ACTIONS(2338), - [aux_sym_binary_expression_token5] = ACTIONS(2338), - [aux_sym_binary_expression_token6] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2338), - [aux_sym_unary_operator_token1] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2336), - [aux_sym_number_token2] = ACTIONS(2336), - [anon_sym_This] = ACTIONS(2336), - [anon_sym_this] = ACTIONS(2336), - [anon_sym_THIS] = ACTIONS(2336), - [anon_sym_Super] = ACTIONS(2336), - [anon_sym_super] = ACTIONS(2336), - [anon_sym_SUPER] = ACTIONS(2336), - [anon_sym_True] = ACTIONS(2336), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_TRUE] = ACTIONS(2336), - [anon_sym_False] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [anon_sym_FALSE] = ACTIONS(2336), - [anon_sym_Null] = ACTIONS(2336), - [anon_sym_null] = ACTIONS(2336), - [anon_sym_NULL] = ACTIONS(2336), - [anon_sym_Undefined] = ACTIONS(2336), - [anon_sym_undefined] = ACTIONS(2336), - [anon_sym_UNDEFINED] = ACTIONS(2336), - [anon_sym_get] = ACTIONS(2336), - [anon_sym_set] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2336), - [sym_hash_empty] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_QueryExecute] = ACTIONS(2336), - [anon_sym_queryexecute] = ACTIONS(2336), - [anon_sym_QUERYEXECUTE] = ACTIONS(2336), - [anon_sym_queryExecute] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_Abstract] = ACTIONS(2336), - [anon_sym_abstract] = ACTIONS(2336), - [anon_sym_ABSTRACT] = ACTIONS(2336), - [anon_sym_Component] = ACTIONS(2336), - [anon_sym_component] = ACTIONS(2336), - [anon_sym_COMPONENT] = ACTIONS(2336), - [anon_sym_Debugger] = ACTIONS(2336), - [anon_sym_debugger] = ACTIONS(2336), - [anon_sym_DEBUGGER] = ACTIONS(2336), - [anon_sym_Final] = ACTIONS(2336), - [anon_sym_final] = ACTIONS(2336), - [anon_sym_FINAL] = ACTIONS(2336), - [anon_sym_Function] = ACTIONS(2336), - [anon_sym_function] = ACTIONS(2336), - [anon_sym_FUNCTION] = ACTIONS(2336), - [anon_sym_In] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_IN] = ACTIONS(2336), - [anon_sym_Include] = ACTIONS(2336), - [anon_sym_include] = ACTIONS(2336), - [anon_sym_INCLUDE] = ACTIONS(2336), - [anon_sym_InstanceOf] = ACTIONS(2336), - [anon_sym_instanceof] = ACTIONS(2336), - [anon_sym_INSTANCEOF] = ACTIONS(2336), - [anon_sym_instanceOf] = ACTIONS(2336), - [anon_sym_New] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_NEW] = ACTIONS(2336), - [anon_sym_Package] = ACTIONS(2336), - [anon_sym_package] = ACTIONS(2336), - [anon_sym_PACKAGE] = ACTIONS(2336), - [anon_sym_Private] = ACTIONS(2336), - [anon_sym_private] = ACTIONS(2336), - [anon_sym_PRIVATE] = ACTIONS(2336), - [anon_sym_Public] = ACTIONS(2336), - [anon_sym_public] = ACTIONS(2336), - [anon_sym_PUBLIC] = ACTIONS(2336), - [anon_sym_Remote] = ACTIONS(2336), - [anon_sym_remote] = ACTIONS(2336), - [anon_sym_REMOTE] = ACTIONS(2336), - [anon_sym_Static] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_STATIC] = ACTIONS(2336), - [sym__automatic_semicolon] = ACTIONS(2338), - [sym__ternary_qmark] = ACTIONS(2338), - [sym__elvis_operator] = ACTIONS(2338), - [sym_logical_or] = ACTIONS(2338), - [sym_tag_linefeed] = ACTIONS(2338), - [sym__java_block_open] = ACTIONS(2338), - [sym__static_type_prefix] = ACTIONS(2338), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_Query] = ACTIONS(2256), + [anon_sym_query] = ACTIONS(2256), + [anon_sym_QUERY] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2260), + [sym_static_chain] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2260), + [aux_sym_unary_operator_token1] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2256), + [aux_sym_number_token2] = ACTIONS(2256), + [anon_sym_This] = ACTIONS(2256), + [anon_sym_this] = ACTIONS(2256), + [anon_sym_THIS] = ACTIONS(2256), + [anon_sym_Super] = ACTIONS(2256), + [anon_sym_super] = ACTIONS(2256), + [anon_sym_SUPER] = ACTIONS(2256), + [anon_sym_True] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_TRUE] = ACTIONS(2256), + [anon_sym_False] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_FALSE] = ACTIONS(2256), + [anon_sym_Null] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_Undefined] = ACTIONS(2256), + [anon_sym_undefined] = ACTIONS(2256), + [anon_sym_UNDEFINED] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [sym_hash_empty] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_QueryExecute] = ACTIONS(2256), + [anon_sym_queryexecute] = ACTIONS(2256), + [anon_sym_QUERYEXECUTE] = ACTIONS(2256), + [anon_sym_queryExecute] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2260), + [anon_sym_Abstract] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_ABSTRACT] = ACTIONS(2256), + [anon_sym_Component] = ACTIONS(2256), + [anon_sym_component] = ACTIONS(2256), + [anon_sym_COMPONENT] = ACTIONS(2256), + [anon_sym_Debugger] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_DEBUGGER] = ACTIONS(2256), + [anon_sym_Final] = ACTIONS(2256), + [anon_sym_final] = ACTIONS(2256), + [anon_sym_FINAL] = ACTIONS(2256), + [anon_sym_Function] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_FUNCTION] = ACTIONS(2256), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_Include] = ACTIONS(2256), + [anon_sym_include] = ACTIONS(2256), + [anon_sym_INCLUDE] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [anon_sym_New] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_NEW] = ACTIONS(2256), + [anon_sym_Package] = ACTIONS(2256), + [anon_sym_package] = ACTIONS(2256), + [anon_sym_PACKAGE] = ACTIONS(2256), + [anon_sym_Private] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_PRIVATE] = ACTIONS(2256), + [anon_sym_Public] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_PUBLIC] = ACTIONS(2256), + [anon_sym_Remote] = ACTIONS(2256), + [anon_sym_remote] = ACTIONS(2256), + [anon_sym_REMOTE] = ACTIONS(2256), + [anon_sym_Static] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_STATIC] = ACTIONS(2256), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym_tag_linefeed] = ACTIONS(2260), + [sym__java_block_open] = ACTIONS(2260), + [sym__static_type_prefix] = ACTIONS(2260), }, [STATE(476)] = { - [sym_identifier] = ACTIONS(2340), - [anon_sym_DOT] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_Query] = ACTIONS(2244), + [anon_sym_query] = ACTIONS(2244), + [anon_sym_QUERY] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [aux_sym_unary_operator_token1] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2244), + [aux_sym_number_token2] = ACTIONS(2244), + [anon_sym_This] = ACTIONS(2244), + [anon_sym_this] = ACTIONS(2244), + [anon_sym_THIS] = ACTIONS(2244), + [anon_sym_Super] = ACTIONS(2244), + [anon_sym_super] = ACTIONS(2244), + [anon_sym_SUPER] = ACTIONS(2244), + [anon_sym_True] = ACTIONS(2244), + [anon_sym_true] = ACTIONS(2244), + [anon_sym_TRUE] = ACTIONS(2244), + [anon_sym_False] = ACTIONS(2244), + [anon_sym_false] = ACTIONS(2244), + [anon_sym_FALSE] = ACTIONS(2244), + [anon_sym_Null] = ACTIONS(2244), + [anon_sym_null] = ACTIONS(2244), + [anon_sym_NULL] = ACTIONS(2244), + [anon_sym_Undefined] = ACTIONS(2244), + [anon_sym_undefined] = ACTIONS(2244), + [anon_sym_UNDEFINED] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(2244), + [sym_hash_empty] = ACTIONS(2246), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_QueryExecute] = ACTIONS(2244), + [anon_sym_queryexecute] = ACTIONS(2244), + [anon_sym_QUERYEXECUTE] = ACTIONS(2244), + [anon_sym_queryExecute] = ACTIONS(2244), + [anon_sym_BQUOTE] = ACTIONS(2246), + [anon_sym_Abstract] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_ABSTRACT] = ACTIONS(2244), + [anon_sym_Component] = ACTIONS(2244), + [anon_sym_component] = ACTIONS(2244), + [anon_sym_COMPONENT] = ACTIONS(2244), + [anon_sym_Debugger] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_DEBUGGER] = ACTIONS(2244), + [anon_sym_Final] = ACTIONS(2244), + [anon_sym_final] = ACTIONS(2244), + [anon_sym_FINAL] = ACTIONS(2244), + [anon_sym_Function] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_FUNCTION] = ACTIONS(2244), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_Include] = ACTIONS(2244), + [anon_sym_include] = ACTIONS(2244), + [anon_sym_INCLUDE] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [anon_sym_New] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_NEW] = ACTIONS(2244), + [anon_sym_Package] = ACTIONS(2244), + [anon_sym_package] = ACTIONS(2244), + [anon_sym_PACKAGE] = ACTIONS(2244), + [anon_sym_Private] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_PRIVATE] = ACTIONS(2244), + [anon_sym_Public] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_PUBLIC] = ACTIONS(2244), + [anon_sym_Remote] = ACTIONS(2244), + [anon_sym_remote] = ACTIONS(2244), + [anon_sym_REMOTE] = ACTIONS(2244), + [anon_sym_Static] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_STATIC] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym_tag_linefeed] = ACTIONS(2246), + [sym__java_block_open] = ACTIONS(2246), + [sym__static_type_prefix] = ACTIONS(2246), + }, + [STATE(477)] = { + [sym_arguments] = STATE(472), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2256), + [anon_sym_query] = ACTIONS(2256), + [anon_sym_QUERY] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(2266), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2289), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2260), + [aux_sym_unary_operator_token1] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2256), + [aux_sym_number_token2] = ACTIONS(2256), + [anon_sym_This] = ACTIONS(2256), + [anon_sym_this] = ACTIONS(2256), + [anon_sym_THIS] = ACTIONS(2256), + [anon_sym_Super] = ACTIONS(2256), + [anon_sym_super] = ACTIONS(2256), + [anon_sym_SUPER] = ACTIONS(2256), + [anon_sym_True] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_TRUE] = ACTIONS(2256), + [anon_sym_False] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_FALSE] = ACTIONS(2256), + [anon_sym_Null] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_Undefined] = ACTIONS(2256), + [anon_sym_undefined] = ACTIONS(2256), + [anon_sym_UNDEFINED] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [sym_hash_empty] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_QueryExecute] = ACTIONS(2256), + [anon_sym_queryexecute] = ACTIONS(2256), + [anon_sym_QUERYEXECUTE] = ACTIONS(2256), + [anon_sym_queryExecute] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2260), + [anon_sym_Abstract] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_ABSTRACT] = ACTIONS(2256), + [anon_sym_Component] = ACTIONS(2256), + [anon_sym_component] = ACTIONS(2256), + [anon_sym_COMPONENT] = ACTIONS(2256), + [anon_sym_Debugger] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_DEBUGGER] = ACTIONS(2256), + [anon_sym_Final] = ACTIONS(2256), + [anon_sym_final] = ACTIONS(2256), + [anon_sym_FINAL] = ACTIONS(2256), + [anon_sym_Function] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_FUNCTION] = ACTIONS(2256), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_Include] = ACTIONS(2256), + [anon_sym_include] = ACTIONS(2256), + [anon_sym_INCLUDE] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [anon_sym_New] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_NEW] = ACTIONS(2256), + [anon_sym_Package] = ACTIONS(2256), + [anon_sym_package] = ACTIONS(2256), + [anon_sym_PACKAGE] = ACTIONS(2256), + [anon_sym_Private] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_PRIVATE] = ACTIONS(2256), + [anon_sym_Public] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_PUBLIC] = ACTIONS(2256), + [anon_sym_Remote] = ACTIONS(2256), + [anon_sym_remote] = ACTIONS(2256), + [anon_sym_REMOTE] = ACTIONS(2256), + [anon_sym_Static] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_STATIC] = ACTIONS(2256), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + [sym_tag_linefeed] = ACTIONS(2260), + [sym__java_block_open] = ACTIONS(2260), + [sym__static_type_prefix] = ACTIONS(2260), + }, + [STATE(478)] = { + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2258), [anon_sym_STAR] = ACTIONS(2340), [anon_sym_COMMA] = ACTIONS(2342), [anon_sym_LBRACE] = ACTIONS(2342), [anon_sym_LPAREN] = ACTIONS(2342), [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_Query] = ACTIONS(2340), - [anon_sym_query] = ACTIONS(2340), - [anon_sym_QUERY] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2338), + [anon_sym_query] = ACTIONS(2338), + [anon_sym_QUERY] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2340), - [sym_optional_chain] = ACTIONS(2342), - [sym_static_chain] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_PERCENT] = ACTIONS(2372), [anon_sym_BSLASH] = ACTIONS(2340), - [anon_sym_STAR_STAR] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_GT] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [aux_sym_binary_expression_token1] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [aux_sym_binary_expression_token2] = ACTIONS(2340), - [aux_sym_binary_expression_token3] = ACTIONS(2340), - [aux_sym_binary_expression_token4] = ACTIONS(2342), - [aux_sym_binary_expression_token5] = ACTIONS(2342), - [aux_sym_binary_expression_token6] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2338), [anon_sym_TILDE] = ACTIONS(2342), - [aux_sym_unary_operator_token1] = ACTIONS(2340), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), + [aux_sym_unary_operator_token1] = ACTIONS(2338), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), [anon_sym_DQUOTE] = ACTIONS(2342), [anon_sym_SQUOTE] = ACTIONS(2342), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2340), - [aux_sym_number_token2] = ACTIONS(2340), - [anon_sym_This] = ACTIONS(2340), - [anon_sym_this] = ACTIONS(2340), - [anon_sym_THIS] = ACTIONS(2340), - [anon_sym_Super] = ACTIONS(2340), - [anon_sym_super] = ACTIONS(2340), - [anon_sym_SUPER] = ACTIONS(2340), - [anon_sym_True] = ACTIONS(2340), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_TRUE] = ACTIONS(2340), - [anon_sym_False] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [anon_sym_FALSE] = ACTIONS(2340), - [anon_sym_Null] = ACTIONS(2340), - [anon_sym_null] = ACTIONS(2340), - [anon_sym_NULL] = ACTIONS(2340), - [anon_sym_Undefined] = ACTIONS(2340), - [anon_sym_undefined] = ACTIONS(2340), - [anon_sym_UNDEFINED] = ACTIONS(2340), - [anon_sym_get] = ACTIONS(2340), - [anon_sym_set] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2340), + [aux_sym_number_token1] = ACTIONS(2338), + [aux_sym_number_token2] = ACTIONS(2338), + [anon_sym_This] = ACTIONS(2338), + [anon_sym_this] = ACTIONS(2338), + [anon_sym_THIS] = ACTIONS(2338), + [anon_sym_Super] = ACTIONS(2338), + [anon_sym_super] = ACTIONS(2338), + [anon_sym_SUPER] = ACTIONS(2338), + [anon_sym_True] = ACTIONS(2338), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_TRUE] = ACTIONS(2338), + [anon_sym_False] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_FALSE] = ACTIONS(2338), + [anon_sym_Null] = ACTIONS(2338), + [anon_sym_null] = ACTIONS(2338), + [anon_sym_NULL] = ACTIONS(2338), + [anon_sym_Undefined] = ACTIONS(2338), + [anon_sym_undefined] = ACTIONS(2338), + [anon_sym_UNDEFINED] = ACTIONS(2338), + [anon_sym_get] = ACTIONS(2338), + [anon_sym_set] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(2338), [sym_hash_empty] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2340), - [anon_sym_QueryExecute] = ACTIONS(2340), - [anon_sym_queryexecute] = ACTIONS(2340), - [anon_sym_QUERYEXECUTE] = ACTIONS(2340), - [anon_sym_queryExecute] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_QueryExecute] = ACTIONS(2338), + [anon_sym_queryexecute] = ACTIONS(2338), + [anon_sym_QUERYEXECUTE] = ACTIONS(2338), + [anon_sym_queryExecute] = ACTIONS(2338), [anon_sym_BQUOTE] = ACTIONS(2342), - [anon_sym_Abstract] = ACTIONS(2340), - [anon_sym_abstract] = ACTIONS(2340), - [anon_sym_ABSTRACT] = ACTIONS(2340), - [anon_sym_Component] = ACTIONS(2340), - [anon_sym_component] = ACTIONS(2340), - [anon_sym_COMPONENT] = ACTIONS(2340), - [anon_sym_Debugger] = ACTIONS(2340), - [anon_sym_debugger] = ACTIONS(2340), - [anon_sym_DEBUGGER] = ACTIONS(2340), - [anon_sym_Final] = ACTIONS(2340), - [anon_sym_final] = ACTIONS(2340), - [anon_sym_FINAL] = ACTIONS(2340), - [anon_sym_Function] = ACTIONS(2340), - [anon_sym_function] = ACTIONS(2340), - [anon_sym_FUNCTION] = ACTIONS(2340), - [anon_sym_In] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_IN] = ACTIONS(2340), - [anon_sym_Include] = ACTIONS(2340), - [anon_sym_include] = ACTIONS(2340), - [anon_sym_INCLUDE] = ACTIONS(2340), - [anon_sym_InstanceOf] = ACTIONS(2340), - [anon_sym_instanceof] = ACTIONS(2340), - [anon_sym_INSTANCEOF] = ACTIONS(2340), - [anon_sym_instanceOf] = ACTIONS(2340), - [anon_sym_New] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(2340), - [anon_sym_NEW] = ACTIONS(2340), - [anon_sym_Package] = ACTIONS(2340), - [anon_sym_package] = ACTIONS(2340), - [anon_sym_PACKAGE] = ACTIONS(2340), - [anon_sym_Private] = ACTIONS(2340), - [anon_sym_private] = ACTIONS(2340), - [anon_sym_PRIVATE] = ACTIONS(2340), - [anon_sym_Public] = ACTIONS(2340), - [anon_sym_public] = ACTIONS(2340), - [anon_sym_PUBLIC] = ACTIONS(2340), - [anon_sym_Remote] = ACTIONS(2340), - [anon_sym_remote] = ACTIONS(2340), - [anon_sym_REMOTE] = ACTIONS(2340), - [anon_sym_Static] = ACTIONS(2340), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_STATIC] = ACTIONS(2340), + [anon_sym_Abstract] = ACTIONS(2338), + [anon_sym_abstract] = ACTIONS(2338), + [anon_sym_ABSTRACT] = ACTIONS(2338), + [anon_sym_Component] = ACTIONS(2338), + [anon_sym_component] = ACTIONS(2338), + [anon_sym_COMPONENT] = ACTIONS(2338), + [anon_sym_Debugger] = ACTIONS(2338), + [anon_sym_debugger] = ACTIONS(2338), + [anon_sym_DEBUGGER] = ACTIONS(2338), + [anon_sym_Final] = ACTIONS(2338), + [anon_sym_final] = ACTIONS(2338), + [anon_sym_FINAL] = ACTIONS(2338), + [anon_sym_Function] = ACTIONS(2338), + [anon_sym_function] = ACTIONS(2338), + [anon_sym_FUNCTION] = ACTIONS(2338), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2338), + [anon_sym_include] = ACTIONS(2338), + [anon_sym_INCLUDE] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2338), + [anon_sym_new] = ACTIONS(2338), + [anon_sym_NEW] = ACTIONS(2338), + [anon_sym_Package] = ACTIONS(2338), + [anon_sym_package] = ACTIONS(2338), + [anon_sym_PACKAGE] = ACTIONS(2338), + [anon_sym_Private] = ACTIONS(2338), + [anon_sym_private] = ACTIONS(2338), + [anon_sym_PRIVATE] = ACTIONS(2338), + [anon_sym_Public] = ACTIONS(2338), + [anon_sym_public] = ACTIONS(2338), + [anon_sym_PUBLIC] = ACTIONS(2338), + [anon_sym_Remote] = ACTIONS(2338), + [anon_sym_remote] = ACTIONS(2338), + [anon_sym_REMOTE] = ACTIONS(2338), + [anon_sym_Static] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2338), + [anon_sym_STATIC] = ACTIONS(2338), [sym__automatic_semicolon] = ACTIONS(2342), - [sym__ternary_qmark] = ACTIONS(2342), - [sym__elvis_operator] = ACTIONS(2342), - [sym_logical_or] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(2384), + [sym__elvis_operator] = ACTIONS(2386), + [sym_logical_or] = ACTIONS(2358), [sym_tag_linefeed] = ACTIONS(2342), [sym__java_block_open] = ACTIONS(2342), [sym__static_type_prefix] = ACTIONS(2342), }, - [STATE(477)] = { - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_Query] = ACTIONS(2197), - [anon_sym_query] = ACTIONS(2197), - [anon_sym_QUERY] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [aux_sym_unary_operator_token1] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2197), - [aux_sym_number_token2] = ACTIONS(2195), - [anon_sym_This] = ACTIONS(2197), - [anon_sym_this] = ACTIONS(2197), - [anon_sym_THIS] = ACTIONS(2197), - [anon_sym_Super] = ACTIONS(2197), - [anon_sym_super] = ACTIONS(2197), - [anon_sym_SUPER] = ACTIONS(2197), - [anon_sym_True] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_TRUE] = ACTIONS(2197), - [anon_sym_False] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_FALSE] = ACTIONS(2197), - [anon_sym_Null] = ACTIONS(2197), - [anon_sym_null] = ACTIONS(2197), - [anon_sym_NULL] = ACTIONS(2197), - [anon_sym_Undefined] = ACTIONS(2197), - [anon_sym_undefined] = ACTIONS(2197), - [anon_sym_UNDEFINED] = ACTIONS(2197), - [anon_sym_get] = ACTIONS(2197), - [anon_sym_set] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2197), - [sym_hash_empty] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_QueryExecute] = ACTIONS(2197), - [anon_sym_queryexecute] = ACTIONS(2197), - [anon_sym_QUERYEXECUTE] = ACTIONS(2197), - [anon_sym_queryExecute] = ACTIONS(2197), - [anon_sym_BQUOTE] = ACTIONS(2197), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2195), - [anon_sym_Abstract] = ACTIONS(2197), - [anon_sym_abstract] = ACTIONS(2197), - [anon_sym_ABSTRACT] = ACTIONS(2197), - [anon_sym_Break] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_BREAK] = ACTIONS(2197), - [anon_sym_Case] = ACTIONS(2197), - [anon_sym_case] = ACTIONS(2197), - [anon_sym_CASE] = ACTIONS(2197), - [anon_sym_Catch] = ACTIONS(2197), - [anon_sym_catch] = ACTIONS(2197), - [anon_sym_CATCH] = ACTIONS(2197), - [anon_sym_Component] = ACTIONS(2197), - [anon_sym_component] = ACTIONS(2197), - [anon_sym_COMPONENT] = ACTIONS(2197), - [anon_sym_Continue] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_CONTINUE] = ACTIONS(2197), - [anon_sym_Debugger] = ACTIONS(2197), - [anon_sym_debugger] = ACTIONS(2197), - [anon_sym_DEBUGGER] = ACTIONS(2197), - [anon_sym_Default] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_DEFAULT] = ACTIONS(2197), - [anon_sym_Do] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_DO] = ACTIONS(2197), - [anon_sym_Final] = ACTIONS(2197), - [anon_sym_final] = ACTIONS(2197), - [anon_sym_FINAL] = ACTIONS(2197), - [anon_sym_Finally] = ACTIONS(2197), - [anon_sym_finally] = ACTIONS(2197), - [anon_sym_FINALLY] = ACTIONS(2197), - [anon_sym_For] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_FOR] = ACTIONS(2197), - [anon_sym_Function] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(2197), - [anon_sym_FUNCTION] = ACTIONS(2197), - [anon_sym_If] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_IF] = ACTIONS(2197), - [anon_sym_Import] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_IMPORT] = ACTIONS(2197), - [anon_sym_Include] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_INCLUDE] = ACTIONS(2197), - [anon_sym_Interface] = ACTIONS(2197), - [anon_sym_interface] = ACTIONS(2197), - [anon_sym_INTERFACE] = ACTIONS(2197), - [anon_sym_New] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_NEW] = ACTIONS(2197), - [anon_sym_Package] = ACTIONS(2197), - [anon_sym_package] = ACTIONS(2197), - [anon_sym_PACKAGE] = ACTIONS(2197), - [anon_sym_Private] = ACTIONS(2197), - [anon_sym_private] = ACTIONS(2197), - [anon_sym_PRIVATE] = ACTIONS(2197), - [anon_sym_Property] = ACTIONS(2197), - [anon_sym_property] = ACTIONS(2197), - [anon_sym_PROPERTY] = ACTIONS(2197), - [anon_sym_Public] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_PUBLIC] = ACTIONS(2197), - [anon_sym_Remote] = ACTIONS(2197), - [anon_sym_remote] = ACTIONS(2197), - [anon_sym_REMOTE] = ACTIONS(2197), - [anon_sym_Return] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_RETURN] = ACTIONS(2197), - [anon_sym_Static] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_STATIC] = ACTIONS(2197), - [anon_sym_Switch] = ACTIONS(2197), - [anon_sym_switch] = ACTIONS(2197), - [anon_sym_SWITCH] = ACTIONS(2197), - [anon_sym_Throw] = ACTIONS(2197), - [anon_sym_throw] = ACTIONS(2197), - [anon_sym_THROW] = ACTIONS(2197), - [anon_sym_Try] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_TRY] = ACTIONS(2197), - [anon_sym_Var] = ACTIONS(2197), - [anon_sym_var] = ACTIONS(2197), - [anon_sym_VAR] = ACTIONS(2197), - [anon_sym_While] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_WHILE] = ACTIONS(2197), - [anon_sym_With] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_WITH] = ACTIONS(2197), - [sym_cf_comment] = ACTIONS(2195), - [sym__java_block_open] = ACTIONS(2195), - [sym__static_type_prefix] = ACTIONS(2195), + [STATE(479)] = { + [sym_identifier] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_Query] = ACTIONS(2388), + [anon_sym_query] = ACTIONS(2388), + [anon_sym_QUERY] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2388), + [sym_optional_chain] = ACTIONS(2390), + [sym_static_chain] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_BSLASH] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_LT_GT] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [aux_sym_binary_expression_token1] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2388), + [aux_sym_binary_expression_token2] = ACTIONS(2388), + [aux_sym_binary_expression_token3] = ACTIONS(2388), + [aux_sym_binary_expression_token4] = ACTIONS(2390), + [aux_sym_binary_expression_token5] = ACTIONS(2390), + [aux_sym_binary_expression_token6] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2390), + [aux_sym_unary_operator_token1] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2388), + [aux_sym_number_token2] = ACTIONS(2388), + [anon_sym_This] = ACTIONS(2388), + [anon_sym_this] = ACTIONS(2388), + [anon_sym_THIS] = ACTIONS(2388), + [anon_sym_Super] = ACTIONS(2388), + [anon_sym_super] = ACTIONS(2388), + [anon_sym_SUPER] = ACTIONS(2388), + [anon_sym_True] = ACTIONS(2388), + [anon_sym_true] = ACTIONS(2388), + [anon_sym_TRUE] = ACTIONS(2388), + [anon_sym_False] = ACTIONS(2388), + [anon_sym_false] = ACTIONS(2388), + [anon_sym_FALSE] = ACTIONS(2388), + [anon_sym_Null] = ACTIONS(2388), + [anon_sym_null] = ACTIONS(2388), + [anon_sym_NULL] = ACTIONS(2388), + [anon_sym_Undefined] = ACTIONS(2388), + [anon_sym_undefined] = ACTIONS(2388), + [anon_sym_UNDEFINED] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(2388), + [sym_hash_empty] = ACTIONS(2390), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_QueryExecute] = ACTIONS(2388), + [anon_sym_queryexecute] = ACTIONS(2388), + [anon_sym_QUERYEXECUTE] = ACTIONS(2388), + [anon_sym_queryExecute] = ACTIONS(2388), + [anon_sym_BQUOTE] = ACTIONS(2390), + [anon_sym_Abstract] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_ABSTRACT] = ACTIONS(2388), + [anon_sym_Component] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_COMPONENT] = ACTIONS(2388), + [anon_sym_Debugger] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_DEBUGGER] = ACTIONS(2388), + [anon_sym_Final] = ACTIONS(2388), + [anon_sym_final] = ACTIONS(2388), + [anon_sym_FINAL] = ACTIONS(2388), + [anon_sym_Function] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_FUNCTION] = ACTIONS(2388), + [anon_sym_In] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_IN] = ACTIONS(2388), + [anon_sym_Include] = ACTIONS(2388), + [anon_sym_include] = ACTIONS(2388), + [anon_sym_INCLUDE] = ACTIONS(2388), + [anon_sym_InstanceOf] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_INSTANCEOF] = ACTIONS(2388), + [anon_sym_instanceOf] = ACTIONS(2388), + [anon_sym_New] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_NEW] = ACTIONS(2388), + [anon_sym_Package] = ACTIONS(2388), + [anon_sym_package] = ACTIONS(2388), + [anon_sym_PACKAGE] = ACTIONS(2388), + [anon_sym_Private] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_PRIVATE] = ACTIONS(2388), + [anon_sym_Public] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_PUBLIC] = ACTIONS(2388), + [anon_sym_Remote] = ACTIONS(2388), + [anon_sym_remote] = ACTIONS(2388), + [anon_sym_REMOTE] = ACTIONS(2388), + [anon_sym_Static] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_STATIC] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2390), + [sym__ternary_qmark] = ACTIONS(2390), + [sym__elvis_operator] = ACTIONS(2390), + [sym_logical_or] = ACTIONS(2390), + [sym_tag_linefeed] = ACTIONS(2390), + [sym__java_block_open] = ACTIONS(2390), + [sym__static_type_prefix] = ACTIONS(2390), }, - [STATE(478)] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_Query] = ACTIONS(2344), - [anon_sym_query] = ACTIONS(2344), - [anon_sym_QUERY] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2347), - [aux_sym_unary_operator_token1] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2344), - [aux_sym_number_token2] = ACTIONS(2344), - [anon_sym_This] = ACTIONS(2344), - [anon_sym_this] = ACTIONS(2344), - [anon_sym_THIS] = ACTIONS(2344), - [anon_sym_Super] = ACTIONS(2344), - [anon_sym_super] = ACTIONS(2344), - [anon_sym_SUPER] = ACTIONS(2344), - [anon_sym_True] = ACTIONS(2344), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_TRUE] = ACTIONS(2344), - [anon_sym_False] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_FALSE] = ACTIONS(2344), - [anon_sym_Null] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [anon_sym_NULL] = ACTIONS(2344), - [anon_sym_Undefined] = ACTIONS(2344), - [anon_sym_undefined] = ACTIONS(2344), - [anon_sym_UNDEFINED] = ACTIONS(2344), - [anon_sym_get] = ACTIONS(2344), - [anon_sym_set] = ACTIONS(2344), - [anon_sym_POUND] = ACTIONS(2344), - [sym_hash_empty] = ACTIONS(2347), - [anon_sym_export] = ACTIONS(2344), - [anon_sym_QueryExecute] = ACTIONS(2344), - [anon_sym_queryexecute] = ACTIONS(2344), - [anon_sym_QUERYEXECUTE] = ACTIONS(2344), - [anon_sym_queryExecute] = ACTIONS(2344), - [anon_sym_BQUOTE] = ACTIONS(2347), - [anon_sym_Abstract] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2344), - [anon_sym_ABSTRACT] = ACTIONS(2344), - [anon_sym_Component] = ACTIONS(2344), - [anon_sym_component] = ACTIONS(2344), - [anon_sym_COMPONENT] = ACTIONS(2344), - [anon_sym_Debugger] = ACTIONS(2344), - [anon_sym_debugger] = ACTIONS(2344), - [anon_sym_DEBUGGER] = ACTIONS(2344), - [anon_sym_Final] = ACTIONS(2344), - [anon_sym_final] = ACTIONS(2344), - [anon_sym_FINAL] = ACTIONS(2344), - [anon_sym_Function] = ACTIONS(2344), - [anon_sym_function] = ACTIONS(2344), - [anon_sym_FUNCTION] = ACTIONS(2344), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_Include] = ACTIONS(2344), - [anon_sym_include] = ACTIONS(2344), - [anon_sym_INCLUDE] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [anon_sym_New] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_NEW] = ACTIONS(2344), - [anon_sym_Package] = ACTIONS(2344), - [anon_sym_package] = ACTIONS(2344), - [anon_sym_PACKAGE] = ACTIONS(2344), - [anon_sym_Private] = ACTIONS(2344), - [anon_sym_private] = ACTIONS(2344), - [anon_sym_PRIVATE] = ACTIONS(2344), - [anon_sym_Public] = ACTIONS(2344), - [anon_sym_public] = ACTIONS(2344), - [anon_sym_PUBLIC] = ACTIONS(2344), - [anon_sym_Remote] = ACTIONS(2344), - [anon_sym_remote] = ACTIONS(2344), - [anon_sym_REMOTE] = ACTIONS(2344), - [anon_sym_Static] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_STATIC] = ACTIONS(2344), - [sym__automatic_semicolon] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym_tag_linefeed] = ACTIONS(2347), - [sym__java_block_open] = ACTIONS(2347), - [sym__static_type_prefix] = ACTIONS(2347), + [STATE(480)] = { + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_Query] = ACTIONS(2201), + [anon_sym_query] = ACTIONS(2201), + [anon_sym_QUERY] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [aux_sym_unary_operator_token1] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2201), + [aux_sym_number_token2] = ACTIONS(2199), + [anon_sym_This] = ACTIONS(2201), + [anon_sym_this] = ACTIONS(2201), + [anon_sym_THIS] = ACTIONS(2201), + [anon_sym_Super] = ACTIONS(2201), + [anon_sym_super] = ACTIONS(2201), + [anon_sym_SUPER] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [anon_sym_Undefined] = ACTIONS(2201), + [anon_sym_undefined] = ACTIONS(2201), + [anon_sym_UNDEFINED] = ACTIONS(2201), + [anon_sym_get] = ACTIONS(2201), + [anon_sym_set] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [sym_hash_empty] = ACTIONS(2199), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_QueryExecute] = ACTIONS(2201), + [anon_sym_queryexecute] = ACTIONS(2201), + [anon_sym_QUERYEXECUTE] = ACTIONS(2201), + [anon_sym_queryExecute] = ACTIONS(2201), + [anon_sym_BQUOTE] = ACTIONS(2201), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2199), + [anon_sym_Abstract] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_ABSTRACT] = ACTIONS(2201), + [anon_sym_Break] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_BREAK] = ACTIONS(2201), + [anon_sym_Case] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(2201), + [anon_sym_CASE] = ACTIONS(2201), + [anon_sym_Catch] = ACTIONS(2201), + [anon_sym_catch] = ACTIONS(2201), + [anon_sym_CATCH] = ACTIONS(2201), + [anon_sym_Component] = ACTIONS(2201), + [anon_sym_component] = ACTIONS(2201), + [anon_sym_COMPONENT] = ACTIONS(2201), + [anon_sym_Continue] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_CONTINUE] = ACTIONS(2201), + [anon_sym_Debugger] = ACTIONS(2201), + [anon_sym_debugger] = ACTIONS(2201), + [anon_sym_DEBUGGER] = ACTIONS(2201), + [anon_sym_Default] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_DEFAULT] = ACTIONS(2201), + [anon_sym_Do] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_DO] = ACTIONS(2201), + [anon_sym_Final] = ACTIONS(2201), + [anon_sym_final] = ACTIONS(2201), + [anon_sym_FINAL] = ACTIONS(2201), + [anon_sym_Finally] = ACTIONS(2201), + [anon_sym_finally] = ACTIONS(2201), + [anon_sym_FINALLY] = ACTIONS(2201), + [anon_sym_For] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_FOR] = ACTIONS(2201), + [anon_sym_Function] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_FUNCTION] = ACTIONS(2201), + [anon_sym_If] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_IF] = ACTIONS(2201), + [anon_sym_Import] = ACTIONS(2201), + [anon_sym_import] = ACTIONS(2201), + [anon_sym_IMPORT] = ACTIONS(2201), + [anon_sym_Include] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_INCLUDE] = ACTIONS(2201), + [anon_sym_Interface] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_INTERFACE] = ACTIONS(2201), + [anon_sym_New] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_NEW] = ACTIONS(2201), + [anon_sym_Package] = ACTIONS(2201), + [anon_sym_package] = ACTIONS(2201), + [anon_sym_PACKAGE] = ACTIONS(2201), + [anon_sym_Private] = ACTIONS(2201), + [anon_sym_private] = ACTIONS(2201), + [anon_sym_PRIVATE] = ACTIONS(2201), + [anon_sym_Property] = ACTIONS(2201), + [anon_sym_property] = ACTIONS(2201), + [anon_sym_PROPERTY] = ACTIONS(2201), + [anon_sym_Public] = ACTIONS(2201), + [anon_sym_public] = ACTIONS(2201), + [anon_sym_PUBLIC] = ACTIONS(2201), + [anon_sym_Remote] = ACTIONS(2201), + [anon_sym_remote] = ACTIONS(2201), + [anon_sym_REMOTE] = ACTIONS(2201), + [anon_sym_Return] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_RETURN] = ACTIONS(2201), + [anon_sym_Static] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_STATIC] = ACTIONS(2201), + [anon_sym_Switch] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_SWITCH] = ACTIONS(2201), + [anon_sym_Throw] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_THROW] = ACTIONS(2201), + [anon_sym_Try] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_TRY] = ACTIONS(2201), + [anon_sym_Var] = ACTIONS(2201), + [anon_sym_var] = ACTIONS(2201), + [anon_sym_VAR] = ACTIONS(2201), + [anon_sym_While] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_WHILE] = ACTIONS(2201), + [anon_sym_With] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2201), + [anon_sym_WITH] = ACTIONS(2201), + [sym_cf_comment] = ACTIONS(2199), + [sym__java_block_open] = ACTIONS(2199), + [sym__static_type_prefix] = ACTIONS(2199), }, - [STATE(479)] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_Query] = ACTIONS(2350), - [anon_sym_query] = ACTIONS(2350), - [anon_sym_QUERY] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), + [STATE(481)] = { + [sym_identifier] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_Query] = ACTIONS(2392), + [anon_sym_query] = ACTIONS(2392), + [anon_sym_QUERY] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2392), + [sym_optional_chain] = ACTIONS(2394), + [sym_static_chain] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_BSLASH] = ACTIONS(2392), + [anon_sym_STAR_STAR] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2394), + [aux_sym_binary_expression_token1] = ACTIONS(2394), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [aux_sym_binary_expression_token2] = ACTIONS(2392), + [aux_sym_binary_expression_token3] = ACTIONS(2392), + [aux_sym_binary_expression_token4] = ACTIONS(2394), + [aux_sym_binary_expression_token5] = ACTIONS(2394), + [aux_sym_binary_expression_token6] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2394), + [aux_sym_unary_operator_token1] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2394), + [anon_sym_SQUOTE] = ACTIONS(2394), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2392), + [aux_sym_number_token2] = ACTIONS(2392), + [anon_sym_This] = ACTIONS(2392), + [anon_sym_this] = ACTIONS(2392), + [anon_sym_THIS] = ACTIONS(2392), + [anon_sym_Super] = ACTIONS(2392), + [anon_sym_super] = ACTIONS(2392), + [anon_sym_SUPER] = ACTIONS(2392), + [anon_sym_True] = ACTIONS(2392), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_TRUE] = ACTIONS(2392), + [anon_sym_False] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [anon_sym_FALSE] = ACTIONS(2392), + [anon_sym_Null] = ACTIONS(2392), + [anon_sym_null] = ACTIONS(2392), + [anon_sym_NULL] = ACTIONS(2392), + [anon_sym_Undefined] = ACTIONS(2392), + [anon_sym_undefined] = ACTIONS(2392), + [anon_sym_UNDEFINED] = ACTIONS(2392), + [anon_sym_get] = ACTIONS(2392), + [anon_sym_set] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [sym_hash_empty] = ACTIONS(2394), + [anon_sym_export] = ACTIONS(2392), + [anon_sym_QueryExecute] = ACTIONS(2392), + [anon_sym_queryexecute] = ACTIONS(2392), + [anon_sym_QUERYEXECUTE] = ACTIONS(2392), + [anon_sym_queryExecute] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2394), + [anon_sym_Abstract] = ACTIONS(2392), + [anon_sym_abstract] = ACTIONS(2392), + [anon_sym_ABSTRACT] = ACTIONS(2392), + [anon_sym_Component] = ACTIONS(2392), + [anon_sym_component] = ACTIONS(2392), + [anon_sym_COMPONENT] = ACTIONS(2392), + [anon_sym_Debugger] = ACTIONS(2392), + [anon_sym_debugger] = ACTIONS(2392), + [anon_sym_DEBUGGER] = ACTIONS(2392), + [anon_sym_Final] = ACTIONS(2392), + [anon_sym_final] = ACTIONS(2392), + [anon_sym_FINAL] = ACTIONS(2392), + [anon_sym_Function] = ACTIONS(2392), + [anon_sym_function] = ACTIONS(2392), + [anon_sym_FUNCTION] = ACTIONS(2392), + [anon_sym_In] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_IN] = ACTIONS(2392), + [anon_sym_Include] = ACTIONS(2392), + [anon_sym_include] = ACTIONS(2392), + [anon_sym_INCLUDE] = ACTIONS(2392), + [anon_sym_InstanceOf] = ACTIONS(2392), + [anon_sym_instanceof] = ACTIONS(2392), + [anon_sym_INSTANCEOF] = ACTIONS(2392), + [anon_sym_instanceOf] = ACTIONS(2392), + [anon_sym_New] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_NEW] = ACTIONS(2392), + [anon_sym_Package] = ACTIONS(2392), + [anon_sym_package] = ACTIONS(2392), + [anon_sym_PACKAGE] = ACTIONS(2392), + [anon_sym_Private] = ACTIONS(2392), + [anon_sym_private] = ACTIONS(2392), + [anon_sym_PRIVATE] = ACTIONS(2392), + [anon_sym_Public] = ACTIONS(2392), + [anon_sym_public] = ACTIONS(2392), + [anon_sym_PUBLIC] = ACTIONS(2392), + [anon_sym_Remote] = ACTIONS(2392), + [anon_sym_remote] = ACTIONS(2392), + [anon_sym_REMOTE] = ACTIONS(2392), + [anon_sym_Static] = ACTIONS(2392), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_STATIC] = ACTIONS(2392), + [sym__automatic_semicolon] = ACTIONS(2394), + [sym__ternary_qmark] = ACTIONS(2394), + [sym__elvis_operator] = ACTIONS(2394), + [sym_logical_or] = ACTIONS(2394), + [sym_tag_linefeed] = ACTIONS(2394), + [sym__java_block_open] = ACTIONS(2394), + [sym__static_type_prefix] = ACTIONS(2394), + }, + [STATE(482)] = { + [sym_identifier] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_Query] = ACTIONS(2396), + [anon_sym_query] = ACTIONS(2396), + [anon_sym_QUERY] = ACTIONS(2396), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_SLASH] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2400), + [aux_sym_unary_operator_token1] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2400), + [anon_sym_SQUOTE] = ACTIONS(2400), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2396), + [aux_sym_number_token2] = ACTIONS(2396), + [anon_sym_This] = ACTIONS(2396), + [anon_sym_this] = ACTIONS(2396), + [anon_sym_THIS] = ACTIONS(2396), + [anon_sym_Super] = ACTIONS(2396), + [anon_sym_super] = ACTIONS(2396), + [anon_sym_SUPER] = ACTIONS(2396), + [anon_sym_True] = ACTIONS(2396), + [anon_sym_true] = ACTIONS(2396), + [anon_sym_TRUE] = ACTIONS(2396), + [anon_sym_False] = ACTIONS(2396), + [anon_sym_false] = ACTIONS(2396), + [anon_sym_FALSE] = ACTIONS(2396), + [anon_sym_Null] = ACTIONS(2396), + [anon_sym_null] = ACTIONS(2396), + [anon_sym_NULL] = ACTIONS(2396), + [anon_sym_Undefined] = ACTIONS(2396), + [anon_sym_undefined] = ACTIONS(2396), + [anon_sym_UNDEFINED] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(2396), + [sym_hash_empty] = ACTIONS(2400), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_QueryExecute] = ACTIONS(2396), + [anon_sym_queryexecute] = ACTIONS(2396), + [anon_sym_QUERYEXECUTE] = ACTIONS(2396), + [anon_sym_queryExecute] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2400), + [anon_sym_Abstract] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_ABSTRACT] = ACTIONS(2396), + [anon_sym_Component] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_COMPONENT] = ACTIONS(2396), + [anon_sym_Debugger] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_DEBUGGER] = ACTIONS(2396), + [anon_sym_Final] = ACTIONS(2396), + [anon_sym_final] = ACTIONS(2396), + [anon_sym_FINAL] = ACTIONS(2396), + [anon_sym_Function] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_FUNCTION] = ACTIONS(2396), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(2396), + [anon_sym_include] = ACTIONS(2396), + [anon_sym_INCLUDE] = ACTIONS(2396), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_NEW] = ACTIONS(2396), + [anon_sym_Package] = ACTIONS(2396), + [anon_sym_package] = ACTIONS(2396), + [anon_sym_PACKAGE] = ACTIONS(2396), + [anon_sym_Private] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_PRIVATE] = ACTIONS(2396), + [anon_sym_Public] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_PUBLIC] = ACTIONS(2396), + [anon_sym_Remote] = ACTIONS(2396), + [anon_sym_remote] = ACTIONS(2396), + [anon_sym_REMOTE] = ACTIONS(2396), + [anon_sym_Static] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_STATIC] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2400), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(2400), + [sym__java_block_open] = ACTIONS(2400), + [sym__static_type_prefix] = ACTIONS(2400), + }, + [STATE(483)] = { + [sym_identifier] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2408), + [anon_sym_query] = ACTIONS(2408), + [anon_sym_QUERY] = ACTIONS(2408), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), [anon_sym_GT] = ACTIONS(2350), [aux_sym_binary_expression_token2] = ACTIONS(2350), [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2353), - [aux_sym_unary_operator_token1] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2350), - [aux_sym_number_token2] = ACTIONS(2350), - [anon_sym_This] = ACTIONS(2350), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_THIS] = ACTIONS(2350), - [anon_sym_Super] = ACTIONS(2350), - [anon_sym_super] = ACTIONS(2350), - [anon_sym_SUPER] = ACTIONS(2350), - [anon_sym_True] = ACTIONS(2350), - [anon_sym_true] = ACTIONS(2350), - [anon_sym_TRUE] = ACTIONS(2350), - [anon_sym_False] = ACTIONS(2350), - [anon_sym_false] = ACTIONS(2350), - [anon_sym_FALSE] = ACTIONS(2350), - [anon_sym_Null] = ACTIONS(2350), - [anon_sym_null] = ACTIONS(2350), - [anon_sym_NULL] = ACTIONS(2350), - [anon_sym_Undefined] = ACTIONS(2350), - [anon_sym_undefined] = ACTIONS(2350), - [anon_sym_UNDEFINED] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(2350), - [sym_hash_empty] = ACTIONS(2353), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_QueryExecute] = ACTIONS(2350), - [anon_sym_queryexecute] = ACTIONS(2350), - [anon_sym_QUERYEXECUTE] = ACTIONS(2350), - [anon_sym_queryExecute] = ACTIONS(2350), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_Abstract] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_ABSTRACT] = ACTIONS(2350), - [anon_sym_Component] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_COMPONENT] = ACTIONS(2350), - [anon_sym_Debugger] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_DEBUGGER] = ACTIONS(2350), - [anon_sym_Final] = ACTIONS(2350), - [anon_sym_final] = ACTIONS(2350), - [anon_sym_FINAL] = ACTIONS(2350), - [anon_sym_Function] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_FUNCTION] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2408), + [anon_sym_TILDE] = ACTIONS(2410), + [aux_sym_unary_operator_token1] = ACTIONS(2408), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2408), + [aux_sym_number_token2] = ACTIONS(2408), + [anon_sym_This] = ACTIONS(2408), + [anon_sym_this] = ACTIONS(2408), + [anon_sym_THIS] = ACTIONS(2408), + [anon_sym_Super] = ACTIONS(2408), + [anon_sym_super] = ACTIONS(2408), + [anon_sym_SUPER] = ACTIONS(2408), + [anon_sym_True] = ACTIONS(2408), + [anon_sym_true] = ACTIONS(2408), + [anon_sym_TRUE] = ACTIONS(2408), + [anon_sym_False] = ACTIONS(2408), + [anon_sym_false] = ACTIONS(2408), + [anon_sym_FALSE] = ACTIONS(2408), + [anon_sym_Null] = ACTIONS(2408), + [anon_sym_null] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_Undefined] = ACTIONS(2408), + [anon_sym_undefined] = ACTIONS(2408), + [anon_sym_UNDEFINED] = ACTIONS(2408), + [anon_sym_get] = ACTIONS(2408), + [anon_sym_set] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [sym_hash_empty] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2408), + [anon_sym_QueryExecute] = ACTIONS(2408), + [anon_sym_queryexecute] = ACTIONS(2408), + [anon_sym_QUERYEXECUTE] = ACTIONS(2408), + [anon_sym_queryExecute] = ACTIONS(2408), + [anon_sym_BQUOTE] = ACTIONS(2410), + [anon_sym_Abstract] = ACTIONS(2408), + [anon_sym_abstract] = ACTIONS(2408), + [anon_sym_ABSTRACT] = ACTIONS(2408), + [anon_sym_Component] = ACTIONS(2408), + [anon_sym_component] = ACTIONS(2408), + [anon_sym_COMPONENT] = ACTIONS(2408), + [anon_sym_Debugger] = ACTIONS(2408), + [anon_sym_debugger] = ACTIONS(2408), + [anon_sym_DEBUGGER] = ACTIONS(2408), + [anon_sym_Final] = ACTIONS(2408), + [anon_sym_final] = ACTIONS(2408), + [anon_sym_FINAL] = ACTIONS(2408), + [anon_sym_Function] = ACTIONS(2408), + [anon_sym_function] = ACTIONS(2408), + [anon_sym_FUNCTION] = ACTIONS(2408), [anon_sym_In] = ACTIONS(2350), [anon_sym_in] = ACTIONS(2350), [anon_sym_IN] = ACTIONS(2350), - [anon_sym_Include] = ACTIONS(2350), - [anon_sym_include] = ACTIONS(2350), - [anon_sym_INCLUDE] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2408), + [anon_sym_include] = ACTIONS(2408), + [anon_sym_INCLUDE] = ACTIONS(2408), [anon_sym_InstanceOf] = ACTIONS(2350), [anon_sym_instanceof] = ACTIONS(2350), [anon_sym_INSTANCEOF] = ACTIONS(2350), [anon_sym_instanceOf] = ACTIONS(2350), - [anon_sym_New] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_NEW] = ACTIONS(2350), - [anon_sym_Package] = ACTIONS(2350), - [anon_sym_package] = ACTIONS(2350), - [anon_sym_PACKAGE] = ACTIONS(2350), - [anon_sym_Private] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_PRIVATE] = ACTIONS(2350), - [anon_sym_Public] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_PUBLIC] = ACTIONS(2350), - [anon_sym_Remote] = ACTIONS(2350), - [anon_sym_remote] = ACTIONS(2350), - [anon_sym_REMOTE] = ACTIONS(2350), - [anon_sym_Static] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_STATIC] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2353), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym_tag_linefeed] = ACTIONS(2353), - [sym__java_block_open] = ACTIONS(2353), - [sym__static_type_prefix] = ACTIONS(2353), - }, - [STATE(480)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_Query] = ACTIONS(2238), - [anon_sym_query] = ACTIONS(2238), - [anon_sym_QUERY] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2240), - [aux_sym_unary_operator_token1] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2238), - [aux_sym_number_token2] = ACTIONS(2238), - [anon_sym_This] = ACTIONS(2238), - [anon_sym_this] = ACTIONS(2238), - [anon_sym_THIS] = ACTIONS(2238), - [anon_sym_Super] = ACTIONS(2238), - [anon_sym_super] = ACTIONS(2238), - [anon_sym_SUPER] = ACTIONS(2238), - [anon_sym_True] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_TRUE] = ACTIONS(2238), - [anon_sym_False] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_FALSE] = ACTIONS(2238), - [anon_sym_Null] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_NULL] = ACTIONS(2238), - [anon_sym_Undefined] = ACTIONS(2238), - [anon_sym_undefined] = ACTIONS(2238), - [anon_sym_UNDEFINED] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [sym_hash_empty] = ACTIONS(2240), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_QueryExecute] = ACTIONS(2238), - [anon_sym_queryexecute] = ACTIONS(2238), - [anon_sym_QUERYEXECUTE] = ACTIONS(2238), - [anon_sym_queryExecute] = ACTIONS(2238), - [anon_sym_BQUOTE] = ACTIONS(2240), - [anon_sym_Abstract] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_ABSTRACT] = ACTIONS(2238), - [anon_sym_Component] = ACTIONS(2238), - [anon_sym_component] = ACTIONS(2238), - [anon_sym_COMPONENT] = ACTIONS(2238), - [anon_sym_Debugger] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_DEBUGGER] = ACTIONS(2238), - [anon_sym_Final] = ACTIONS(2238), - [anon_sym_final] = ACTIONS(2238), - [anon_sym_FINAL] = ACTIONS(2238), - [anon_sym_Function] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_FUNCTION] = ACTIONS(2238), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_Include] = ACTIONS(2238), - [anon_sym_include] = ACTIONS(2238), - [anon_sym_INCLUDE] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [anon_sym_New] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_NEW] = ACTIONS(2238), - [anon_sym_Package] = ACTIONS(2238), - [anon_sym_package] = ACTIONS(2238), - [anon_sym_PACKAGE] = ACTIONS(2238), - [anon_sym_Private] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_PRIVATE] = ACTIONS(2238), - [anon_sym_Public] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_PUBLIC] = ACTIONS(2238), - [anon_sym_Remote] = ACTIONS(2238), - [anon_sym_remote] = ACTIONS(2238), - [anon_sym_REMOTE] = ACTIONS(2238), - [anon_sym_Static] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_STATIC] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym_tag_linefeed] = ACTIONS(2240), - [sym__java_block_open] = ACTIONS(2240), - [sym__static_type_prefix] = ACTIONS(2240), - }, - [STATE(481)] = { - [sym_identifier] = ACTIONS(2356), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_let] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_Query] = ACTIONS(2356), - [anon_sym_query] = ACTIONS(2356), - [anon_sym_QUERY] = ACTIONS(2356), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_SLASH] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(2356), - [anon_sym_TILDE] = ACTIONS(2360), - [aux_sym_unary_operator_token1] = ACTIONS(2356), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2356), - [aux_sym_number_token2] = ACTIONS(2356), - [anon_sym_This] = ACTIONS(2356), - [anon_sym_this] = ACTIONS(2356), - [anon_sym_THIS] = ACTIONS(2356), - [anon_sym_Super] = ACTIONS(2356), - [anon_sym_super] = ACTIONS(2356), - [anon_sym_SUPER] = ACTIONS(2356), - [anon_sym_True] = ACTIONS(2356), - [anon_sym_true] = ACTIONS(2356), - [anon_sym_TRUE] = ACTIONS(2356), - [anon_sym_False] = ACTIONS(2356), - [anon_sym_false] = ACTIONS(2356), - [anon_sym_FALSE] = ACTIONS(2356), - [anon_sym_Null] = ACTIONS(2356), - [anon_sym_null] = ACTIONS(2356), - [anon_sym_NULL] = ACTIONS(2356), - [anon_sym_Undefined] = ACTIONS(2356), - [anon_sym_undefined] = ACTIONS(2356), - [anon_sym_UNDEFINED] = ACTIONS(2356), - [anon_sym_get] = ACTIONS(2356), - [anon_sym_set] = ACTIONS(2356), - [anon_sym_POUND] = ACTIONS(2356), - [sym_hash_empty] = ACTIONS(2360), - [anon_sym_export] = ACTIONS(2356), - [anon_sym_QueryExecute] = ACTIONS(2356), - [anon_sym_queryexecute] = ACTIONS(2356), - [anon_sym_QUERYEXECUTE] = ACTIONS(2356), - [anon_sym_queryExecute] = ACTIONS(2356), - [anon_sym_BQUOTE] = ACTIONS(2360), - [anon_sym_Abstract] = ACTIONS(2356), - [anon_sym_abstract] = ACTIONS(2356), - [anon_sym_ABSTRACT] = ACTIONS(2356), - [anon_sym_Component] = ACTIONS(2356), - [anon_sym_component] = ACTIONS(2356), - [anon_sym_COMPONENT] = ACTIONS(2356), - [anon_sym_Debugger] = ACTIONS(2356), - [anon_sym_debugger] = ACTIONS(2356), - [anon_sym_DEBUGGER] = ACTIONS(2356), - [anon_sym_Final] = ACTIONS(2356), - [anon_sym_final] = ACTIONS(2356), - [anon_sym_FINAL] = ACTIONS(2356), - [anon_sym_Function] = ACTIONS(2356), - [anon_sym_function] = ACTIONS(2356), - [anon_sym_FUNCTION] = ACTIONS(2356), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(2356), - [anon_sym_include] = ACTIONS(2356), - [anon_sym_INCLUDE] = ACTIONS(2356), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2356), - [anon_sym_NEW] = ACTIONS(2356), - [anon_sym_Package] = ACTIONS(2356), - [anon_sym_package] = ACTIONS(2356), - [anon_sym_PACKAGE] = ACTIONS(2356), - [anon_sym_Private] = ACTIONS(2356), - [anon_sym_private] = ACTIONS(2356), - [anon_sym_PRIVATE] = ACTIONS(2356), - [anon_sym_Public] = ACTIONS(2356), - [anon_sym_public] = ACTIONS(2356), - [anon_sym_PUBLIC] = ACTIONS(2356), - [anon_sym_Remote] = ACTIONS(2356), - [anon_sym_remote] = ACTIONS(2356), - [anon_sym_REMOTE] = ACTIONS(2356), - [anon_sym_Static] = ACTIONS(2356), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_STATIC] = ACTIONS(2356), - [sym__automatic_semicolon] = ACTIONS(2360), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(2360), - [sym__java_block_open] = ACTIONS(2360), - [sym__static_type_prefix] = ACTIONS(2360), - }, - [STATE(482)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1686), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(2368), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_tag_linefeed] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), - }, - [STATE(483)] = { - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1083), - [anon_sym_instanceof] = ACTIONS(1083), - [anon_sym_INSTANCEOF] = ACTIONS(1083), - [anon_sym_instanceOf] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(2370), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), - [sym_tag_linefeed] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [anon_sym_New] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_NEW] = ACTIONS(2408), + [anon_sym_Package] = ACTIONS(2408), + [anon_sym_package] = ACTIONS(2408), + [anon_sym_PACKAGE] = ACTIONS(2408), + [anon_sym_Private] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_PRIVATE] = ACTIONS(2408), + [anon_sym_Public] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_PUBLIC] = ACTIONS(2408), + [anon_sym_Remote] = ACTIONS(2408), + [anon_sym_remote] = ACTIONS(2408), + [anon_sym_REMOTE] = ACTIONS(2408), + [anon_sym_Static] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_STATIC] = ACTIONS(2408), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(2384), + [sym__elvis_operator] = ACTIONS(2386), + [sym_logical_or] = ACTIONS(2358), + [sym_tag_linefeed] = ACTIONS(2410), + [sym__java_block_open] = ACTIONS(2410), + [sym__static_type_prefix] = ACTIONS(2410), }, [STATE(484)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2308), - [anon_sym_query] = ACTIONS(2308), - [anon_sym_QUERY] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2310), - [aux_sym_unary_operator_token1] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2308), - [aux_sym_number_token2] = ACTIONS(2308), - [anon_sym_This] = ACTIONS(2308), - [anon_sym_this] = ACTIONS(2308), - [anon_sym_THIS] = ACTIONS(2308), - [anon_sym_Super] = ACTIONS(2308), - [anon_sym_super] = ACTIONS(2308), - [anon_sym_SUPER] = ACTIONS(2308), - [anon_sym_True] = ACTIONS(2308), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_TRUE] = ACTIONS(2308), - [anon_sym_False] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [anon_sym_FALSE] = ACTIONS(2308), - [anon_sym_Null] = ACTIONS(2308), - [anon_sym_null] = ACTIONS(2308), - [anon_sym_NULL] = ACTIONS(2308), - [anon_sym_Undefined] = ACTIONS(2308), - [anon_sym_undefined] = ACTIONS(2308), - [anon_sym_UNDEFINED] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2308), - [sym_hash_empty] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_QueryExecute] = ACTIONS(2308), - [anon_sym_queryexecute] = ACTIONS(2308), - [anon_sym_QUERYEXECUTE] = ACTIONS(2308), - [anon_sym_queryExecute] = ACTIONS(2308), - [anon_sym_BQUOTE] = ACTIONS(2310), - [anon_sym_Abstract] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_ABSTRACT] = ACTIONS(2308), - [anon_sym_Component] = ACTIONS(2308), - [anon_sym_component] = ACTIONS(2308), - [anon_sym_COMPONENT] = ACTIONS(2308), - [anon_sym_Debugger] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_DEBUGGER] = ACTIONS(2308), - [anon_sym_Final] = ACTIONS(2308), - [anon_sym_final] = ACTIONS(2308), - [anon_sym_FINAL] = ACTIONS(2308), - [anon_sym_Function] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_FUNCTION] = ACTIONS(2308), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2308), - [anon_sym_include] = ACTIONS(2308), - [anon_sym_INCLUDE] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_NEW] = ACTIONS(2308), - [anon_sym_Package] = ACTIONS(2308), - [anon_sym_package] = ACTIONS(2308), - [anon_sym_PACKAGE] = ACTIONS(2308), - [anon_sym_Private] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_PRIVATE] = ACTIONS(2308), - [anon_sym_Public] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_PUBLIC] = ACTIONS(2308), - [anon_sym_Remote] = ACTIONS(2308), - [anon_sym_remote] = ACTIONS(2308), - [anon_sym_REMOTE] = ACTIONS(2308), - [anon_sym_Static] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_STATIC] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2310), + [sym_identifier] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_Query] = ACTIONS(2412), + [anon_sym_query] = ACTIONS(2412), + [anon_sym_QUERY] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2412), + [sym_optional_chain] = ACTIONS(2414), + [sym_static_chain] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_BSLASH] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_LT_GT] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [aux_sym_binary_expression_token1] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [aux_sym_binary_expression_token2] = ACTIONS(2412), + [aux_sym_binary_expression_token3] = ACTIONS(2412), + [aux_sym_binary_expression_token4] = ACTIONS(2414), + [aux_sym_binary_expression_token5] = ACTIONS(2414), + [aux_sym_binary_expression_token6] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2414), + [aux_sym_unary_operator_token1] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2412), + [aux_sym_number_token2] = ACTIONS(2412), + [anon_sym_This] = ACTIONS(2412), + [anon_sym_this] = ACTIONS(2412), + [anon_sym_THIS] = ACTIONS(2412), + [anon_sym_Super] = ACTIONS(2412), + [anon_sym_super] = ACTIONS(2412), + [anon_sym_SUPER] = ACTIONS(2412), + [anon_sym_True] = ACTIONS(2412), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_TRUE] = ACTIONS(2412), + [anon_sym_False] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [anon_sym_FALSE] = ACTIONS(2412), + [anon_sym_Null] = ACTIONS(2412), + [anon_sym_null] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_Undefined] = ACTIONS(2412), + [anon_sym_undefined] = ACTIONS(2412), + [anon_sym_UNDEFINED] = ACTIONS(2412), + [anon_sym_get] = ACTIONS(2412), + [anon_sym_set] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [sym_hash_empty] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_QueryExecute] = ACTIONS(2412), + [anon_sym_queryexecute] = ACTIONS(2412), + [anon_sym_QUERYEXECUTE] = ACTIONS(2412), + [anon_sym_queryExecute] = ACTIONS(2412), + [anon_sym_BQUOTE] = ACTIONS(2414), + [anon_sym_Abstract] = ACTIONS(2412), + [anon_sym_abstract] = ACTIONS(2412), + [anon_sym_ABSTRACT] = ACTIONS(2412), + [anon_sym_Component] = ACTIONS(2412), + [anon_sym_component] = ACTIONS(2412), + [anon_sym_COMPONENT] = ACTIONS(2412), + [anon_sym_Debugger] = ACTIONS(2412), + [anon_sym_debugger] = ACTIONS(2412), + [anon_sym_DEBUGGER] = ACTIONS(2412), + [anon_sym_Final] = ACTIONS(2412), + [anon_sym_final] = ACTIONS(2412), + [anon_sym_FINAL] = ACTIONS(2412), + [anon_sym_Function] = ACTIONS(2412), + [anon_sym_function] = ACTIONS(2412), + [anon_sym_FUNCTION] = ACTIONS(2412), + [anon_sym_In] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_IN] = ACTIONS(2412), + [anon_sym_Include] = ACTIONS(2412), + [anon_sym_include] = ACTIONS(2412), + [anon_sym_INCLUDE] = ACTIONS(2412), + [anon_sym_InstanceOf] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_INSTANCEOF] = ACTIONS(2412), + [anon_sym_instanceOf] = ACTIONS(2412), + [anon_sym_New] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_NEW] = ACTIONS(2412), + [anon_sym_Package] = ACTIONS(2412), + [anon_sym_package] = ACTIONS(2412), + [anon_sym_PACKAGE] = ACTIONS(2412), + [anon_sym_Private] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_PRIVATE] = ACTIONS(2412), + [anon_sym_Public] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_PUBLIC] = ACTIONS(2412), + [anon_sym_Remote] = ACTIONS(2412), + [anon_sym_remote] = ACTIONS(2412), + [anon_sym_REMOTE] = ACTIONS(2412), + [anon_sym_Static] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_STATIC] = ACTIONS(2412), + [sym__automatic_semicolon] = ACTIONS(2414), [sym__ternary_qmark] = ACTIONS(2414), - [sym__elvis_operator] = ACTIONS(2416), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2310), - [sym__java_block_open] = ACTIONS(2310), - [sym__static_type_prefix] = ACTIONS(2310), + [sym__elvis_operator] = ACTIONS(2414), + [sym_logical_or] = ACTIONS(2414), + [sym_tag_linefeed] = ACTIONS(2414), + [sym__java_block_open] = ACTIONS(2414), + [sym__static_type_prefix] = ACTIONS(2414), }, [STATE(485)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2418), - [anon_sym_query] = ACTIONS(2418), - [anon_sym_QUERY] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2420), - [aux_sym_unary_operator_token1] = ACTIONS(2418), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2418), - [aux_sym_number_token2] = ACTIONS(2418), - [anon_sym_This] = ACTIONS(2418), - [anon_sym_this] = ACTIONS(2418), - [anon_sym_THIS] = ACTIONS(2418), - [anon_sym_Super] = ACTIONS(2418), - [anon_sym_super] = ACTIONS(2418), - [anon_sym_SUPER] = ACTIONS(2418), - [anon_sym_True] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_TRUE] = ACTIONS(2418), - [anon_sym_False] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_FALSE] = ACTIONS(2418), - [anon_sym_Null] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2418), - [anon_sym_Undefined] = ACTIONS(2418), - [anon_sym_undefined] = ACTIONS(2418), - [anon_sym_UNDEFINED] = ACTIONS(2418), - [anon_sym_get] = ACTIONS(2418), - [anon_sym_set] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2418), - [sym_hash_empty] = ACTIONS(2420), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_QueryExecute] = ACTIONS(2418), - [anon_sym_queryexecute] = ACTIONS(2418), - [anon_sym_QUERYEXECUTE] = ACTIONS(2418), - [anon_sym_queryExecute] = ACTIONS(2418), - [anon_sym_BQUOTE] = ACTIONS(2420), - [anon_sym_Abstract] = ACTIONS(2418), - [anon_sym_abstract] = ACTIONS(2418), - [anon_sym_ABSTRACT] = ACTIONS(2418), - [anon_sym_Component] = ACTIONS(2418), - [anon_sym_component] = ACTIONS(2418), - [anon_sym_COMPONENT] = ACTIONS(2418), - [anon_sym_Debugger] = ACTIONS(2418), - [anon_sym_debugger] = ACTIONS(2418), - [anon_sym_DEBUGGER] = ACTIONS(2418), - [anon_sym_Final] = ACTIONS(2418), - [anon_sym_final] = ACTIONS(2418), - [anon_sym_FINAL] = ACTIONS(2418), - [anon_sym_Function] = ACTIONS(2418), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_FUNCTION] = ACTIONS(2418), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2418), - [anon_sym_include] = ACTIONS(2418), - [anon_sym_INCLUDE] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2418), - [anon_sym_NEW] = ACTIONS(2418), - [anon_sym_Package] = ACTIONS(2418), - [anon_sym_package] = ACTIONS(2418), - [anon_sym_PACKAGE] = ACTIONS(2418), - [anon_sym_Private] = ACTIONS(2418), - [anon_sym_private] = ACTIONS(2418), - [anon_sym_PRIVATE] = ACTIONS(2418), - [anon_sym_Public] = ACTIONS(2418), - [anon_sym_public] = ACTIONS(2418), - [anon_sym_PUBLIC] = ACTIONS(2418), - [anon_sym_Remote] = ACTIONS(2418), - [anon_sym_remote] = ACTIONS(2418), - [anon_sym_REMOTE] = ACTIONS(2418), - [anon_sym_Static] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_STATIC] = ACTIONS(2418), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(2414), - [sym__elvis_operator] = ACTIONS(2416), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2420), - [sym__java_block_open] = ACTIONS(2420), - [sym__static_type_prefix] = ACTIONS(2420), - }, - [STATE(486)] = { - [sym_identifier] = ACTIONS(2422), - [anon_sym_DOT] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_COMMA] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_Query] = ACTIONS(2422), - [anon_sym_query] = ACTIONS(2422), - [anon_sym_QUERY] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2422), - [sym_optional_chain] = ACTIONS(2424), - [sym_static_chain] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2422), - [anon_sym_GT_GT_GT] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_CARET] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2424), - [anon_sym_BSLASH] = ACTIONS(2422), - [anon_sym_STAR_STAR] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), - [anon_sym_LT_GT] = ACTIONS(2424), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), - [aux_sym_binary_expression_token1] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2422), - [aux_sym_binary_expression_token2] = ACTIONS(2422), - [aux_sym_binary_expression_token3] = ACTIONS(2422), - [aux_sym_binary_expression_token4] = ACTIONS(2424), - [aux_sym_binary_expression_token5] = ACTIONS(2424), - [aux_sym_binary_expression_token6] = ACTIONS(2424), - [anon_sym_QMARK_QMARK] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2422), - [anon_sym_TILDE] = ACTIONS(2424), - [aux_sym_unary_operator_token1] = ACTIONS(2422), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2422), - [aux_sym_number_token2] = ACTIONS(2422), - [anon_sym_This] = ACTIONS(2422), - [anon_sym_this] = ACTIONS(2422), - [anon_sym_THIS] = ACTIONS(2422), - [anon_sym_Super] = ACTIONS(2422), - [anon_sym_super] = ACTIONS(2422), - [anon_sym_SUPER] = ACTIONS(2422), - [anon_sym_True] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_TRUE] = ACTIONS(2422), - [anon_sym_False] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_FALSE] = ACTIONS(2422), - [anon_sym_Null] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2422), - [anon_sym_NULL] = ACTIONS(2422), - [anon_sym_Undefined] = ACTIONS(2422), - [anon_sym_undefined] = ACTIONS(2422), - [anon_sym_UNDEFINED] = ACTIONS(2422), - [anon_sym_get] = ACTIONS(2422), - [anon_sym_set] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(2422), - [sym_hash_empty] = ACTIONS(2424), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_QueryExecute] = ACTIONS(2422), - [anon_sym_queryexecute] = ACTIONS(2422), - [anon_sym_QUERYEXECUTE] = ACTIONS(2422), - [anon_sym_queryExecute] = ACTIONS(2422), - [anon_sym_BQUOTE] = ACTIONS(2424), - [anon_sym_Abstract] = ACTIONS(2422), - [anon_sym_abstract] = ACTIONS(2422), - [anon_sym_ABSTRACT] = ACTIONS(2422), - [anon_sym_Component] = ACTIONS(2422), - [anon_sym_component] = ACTIONS(2422), - [anon_sym_COMPONENT] = ACTIONS(2422), - [anon_sym_Debugger] = ACTIONS(2422), - [anon_sym_debugger] = ACTIONS(2422), - [anon_sym_DEBUGGER] = ACTIONS(2422), - [anon_sym_Final] = ACTIONS(2422), - [anon_sym_final] = ACTIONS(2422), - [anon_sym_FINAL] = ACTIONS(2422), - [anon_sym_Function] = ACTIONS(2422), - [anon_sym_function] = ACTIONS(2422), - [anon_sym_FUNCTION] = ACTIONS(2422), - [anon_sym_In] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_IN] = ACTIONS(2422), - [anon_sym_Include] = ACTIONS(2422), - [anon_sym_include] = ACTIONS(2422), - [anon_sym_INCLUDE] = ACTIONS(2422), - [anon_sym_InstanceOf] = ACTIONS(2422), - [anon_sym_instanceof] = ACTIONS(2422), - [anon_sym_INSTANCEOF] = ACTIONS(2422), - [anon_sym_instanceOf] = ACTIONS(2422), - [anon_sym_New] = ACTIONS(2422), - [anon_sym_new] = ACTIONS(2422), - [anon_sym_NEW] = ACTIONS(2422), - [anon_sym_Package] = ACTIONS(2422), - [anon_sym_package] = ACTIONS(2422), - [anon_sym_PACKAGE] = ACTIONS(2422), - [anon_sym_Private] = ACTIONS(2422), - [anon_sym_private] = ACTIONS(2422), - [anon_sym_PRIVATE] = ACTIONS(2422), - [anon_sym_Public] = ACTIONS(2422), - [anon_sym_public] = ACTIONS(2422), - [anon_sym_PUBLIC] = ACTIONS(2422), - [anon_sym_Remote] = ACTIONS(2422), - [anon_sym_remote] = ACTIONS(2422), - [anon_sym_REMOTE] = ACTIONS(2422), - [anon_sym_Static] = ACTIONS(2422), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_STATIC] = ACTIONS(2422), - [sym__automatic_semicolon] = ACTIONS(2424), - [sym__ternary_qmark] = ACTIONS(2424), - [sym__elvis_operator] = ACTIONS(2424), - [sym_logical_or] = ACTIONS(2424), - [sym_tag_linefeed] = ACTIONS(2424), - [sym__java_block_open] = ACTIONS(2424), - [sym__static_type_prefix] = ACTIONS(2424), - }, - [STATE(487)] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2426), - [anon_sym_query] = ACTIONS(2426), - [anon_sym_QUERY] = ACTIONS(2426), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_TILDE] = ACTIONS(2428), - [aux_sym_unary_operator_token1] = ACTIONS(2426), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2428), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2426), - [aux_sym_number_token2] = ACTIONS(2426), - [anon_sym_This] = ACTIONS(2426), - [anon_sym_this] = ACTIONS(2426), - [anon_sym_THIS] = ACTIONS(2426), - [anon_sym_Super] = ACTIONS(2426), - [anon_sym_super] = ACTIONS(2426), - [anon_sym_SUPER] = ACTIONS(2426), - [anon_sym_True] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_TRUE] = ACTIONS(2426), - [anon_sym_False] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_FALSE] = ACTIONS(2426), - [anon_sym_Null] = ACTIONS(2426), - [anon_sym_null] = ACTIONS(2426), - [anon_sym_NULL] = ACTIONS(2426), - [anon_sym_Undefined] = ACTIONS(2426), - [anon_sym_undefined] = ACTIONS(2426), - [anon_sym_UNDEFINED] = ACTIONS(2426), - [anon_sym_get] = ACTIONS(2426), - [anon_sym_set] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [sym_hash_empty] = ACTIONS(2428), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_QueryExecute] = ACTIONS(2426), - [anon_sym_queryexecute] = ACTIONS(2426), - [anon_sym_QUERYEXECUTE] = ACTIONS(2426), - [anon_sym_queryExecute] = ACTIONS(2426), - [anon_sym_BQUOTE] = ACTIONS(2428), - [anon_sym_Abstract] = ACTIONS(2426), - [anon_sym_abstract] = ACTIONS(2426), - [anon_sym_ABSTRACT] = ACTIONS(2426), - [anon_sym_Component] = ACTIONS(2426), - [anon_sym_component] = ACTIONS(2426), - [anon_sym_COMPONENT] = ACTIONS(2426), - [anon_sym_Debugger] = ACTIONS(2426), - [anon_sym_debugger] = ACTIONS(2426), - [anon_sym_DEBUGGER] = ACTIONS(2426), - [anon_sym_Final] = ACTIONS(2426), - [anon_sym_final] = ACTIONS(2426), - [anon_sym_FINAL] = ACTIONS(2426), - [anon_sym_Function] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_FUNCTION] = ACTIONS(2426), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2426), - [anon_sym_include] = ACTIONS(2426), - [anon_sym_INCLUDE] = ACTIONS(2426), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2426), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_NEW] = ACTIONS(2426), - [anon_sym_Package] = ACTIONS(2426), - [anon_sym_package] = ACTIONS(2426), - [anon_sym_PACKAGE] = ACTIONS(2426), - [anon_sym_Private] = ACTIONS(2426), - [anon_sym_private] = ACTIONS(2426), - [anon_sym_PRIVATE] = ACTIONS(2426), - [anon_sym_Public] = ACTIONS(2426), - [anon_sym_public] = ACTIONS(2426), - [anon_sym_PUBLIC] = ACTIONS(2426), - [anon_sym_Remote] = ACTIONS(2426), - [anon_sym_remote] = ACTIONS(2426), - [anon_sym_REMOTE] = ACTIONS(2426), - [anon_sym_Static] = ACTIONS(2426), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_STATIC] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(2414), - [sym__elvis_operator] = ACTIONS(2416), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2428), - [sym__java_block_open] = ACTIONS(2428), - [sym__static_type_prefix] = ACTIONS(2428), - }, - [STATE(488)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(489)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(490)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(491)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1686), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(1684), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_tag_linefeed] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), - }, - [STATE(492)] = { - [sym_identifier] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_Query] = ACTIONS(2434), - [anon_sym_query] = ACTIONS(2434), - [anon_sym_QUERY] = ACTIONS(2434), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2436), - [aux_sym_unary_operator_token1] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2436), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2434), - [aux_sym_number_token2] = ACTIONS(2434), - [anon_sym_This] = ACTIONS(2434), - [anon_sym_this] = ACTIONS(2434), - [anon_sym_THIS] = ACTIONS(2434), - [anon_sym_Super] = ACTIONS(2434), - [anon_sym_super] = ACTIONS(2434), - [anon_sym_SUPER] = ACTIONS(2434), - [anon_sym_True] = ACTIONS(2434), - [anon_sym_true] = ACTIONS(2434), - [anon_sym_TRUE] = ACTIONS(2434), - [anon_sym_False] = ACTIONS(2434), - [anon_sym_false] = ACTIONS(2434), - [anon_sym_FALSE] = ACTIONS(2434), - [anon_sym_Null] = ACTIONS(2434), - [anon_sym_null] = ACTIONS(2434), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_Undefined] = ACTIONS(2434), - [anon_sym_undefined] = ACTIONS(2434), - [anon_sym_UNDEFINED] = ACTIONS(2434), - [anon_sym_get] = ACTIONS(2434), - [anon_sym_set] = ACTIONS(2434), - [anon_sym_POUND] = ACTIONS(2434), - [sym_hash_empty] = ACTIONS(2436), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_QueryExecute] = ACTIONS(2434), - [anon_sym_queryexecute] = ACTIONS(2434), - [anon_sym_QUERYEXECUTE] = ACTIONS(2434), - [anon_sym_queryExecute] = ACTIONS(2434), - [anon_sym_BQUOTE] = ACTIONS(2436), - [anon_sym_Abstract] = ACTIONS(2434), - [anon_sym_abstract] = ACTIONS(2434), - [anon_sym_ABSTRACT] = ACTIONS(2434), - [anon_sym_Component] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_COMPONENT] = ACTIONS(2434), - [anon_sym_Debugger] = ACTIONS(2434), - [anon_sym_debugger] = ACTIONS(2434), - [anon_sym_DEBUGGER] = ACTIONS(2434), - [anon_sym_Final] = ACTIONS(2434), - [anon_sym_final] = ACTIONS(2434), - [anon_sym_FINAL] = ACTIONS(2434), - [anon_sym_Function] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_FUNCTION] = ACTIONS(2434), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(2434), - [anon_sym_include] = ACTIONS(2434), - [anon_sym_INCLUDE] = ACTIONS(2434), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_New] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_NEW] = ACTIONS(2434), - [anon_sym_Package] = ACTIONS(2434), - [anon_sym_package] = ACTIONS(2434), - [anon_sym_PACKAGE] = ACTIONS(2434), - [anon_sym_Private] = ACTIONS(2434), - [anon_sym_private] = ACTIONS(2434), - [anon_sym_PRIVATE] = ACTIONS(2434), - [anon_sym_Public] = ACTIONS(2434), - [anon_sym_public] = ACTIONS(2434), - [anon_sym_PUBLIC] = ACTIONS(2434), - [anon_sym_Remote] = ACTIONS(2434), - [anon_sym_remote] = ACTIONS(2434), - [anon_sym_REMOTE] = ACTIONS(2434), - [anon_sym_Static] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_STATIC] = ACTIONS(2434), - [sym__automatic_semicolon] = ACTIONS(2436), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_tag_linefeed] = ACTIONS(2436), - [sym__java_block_open] = ACTIONS(2436), - [sym__static_type_prefix] = ACTIONS(2436), - }, - [STATE(493)] = { - [sym_identifier] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1672), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_INSTANCEOF] = ACTIONS(1672), - [anon_sym_instanceOf] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - [sym_tag_linefeed] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), - }, - [STATE(494)] = { - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_Query] = ACTIONS(2193), - [anon_sym_query] = ACTIONS(2193), - [anon_sym_QUERY] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [aux_sym_unary_operator_token1] = ACTIONS(2193), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(2191), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_Query] = ACTIONS(2205), + [anon_sym_query] = ACTIONS(2205), + [anon_sym_QUERY] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [aux_sym_unary_operator_token1] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DQUOTE] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2193), - [aux_sym_number_token2] = ACTIONS(2191), - [anon_sym_This] = ACTIONS(2193), - [anon_sym_this] = ACTIONS(2193), - [anon_sym_THIS] = ACTIONS(2193), - [anon_sym_Super] = ACTIONS(2193), - [anon_sym_super] = ACTIONS(2193), - [anon_sym_SUPER] = ACTIONS(2193), - [anon_sym_True] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_TRUE] = ACTIONS(2193), - [anon_sym_False] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [anon_sym_FALSE] = ACTIONS(2193), - [anon_sym_Null] = ACTIONS(2193), - [anon_sym_null] = ACTIONS(2193), - [anon_sym_NULL] = ACTIONS(2193), - [anon_sym_Undefined] = ACTIONS(2193), - [anon_sym_undefined] = ACTIONS(2193), - [anon_sym_UNDEFINED] = ACTIONS(2193), - [anon_sym_get] = ACTIONS(2193), - [anon_sym_set] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2193), - [sym_hash_empty] = ACTIONS(2191), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_QueryExecute] = ACTIONS(2193), - [anon_sym_queryexecute] = ACTIONS(2193), - [anon_sym_QUERYEXECUTE] = ACTIONS(2193), - [anon_sym_queryExecute] = ACTIONS(2193), - [anon_sym_BQUOTE] = ACTIONS(2193), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2191), - [anon_sym_Abstract] = ACTIONS(2193), - [anon_sym_abstract] = ACTIONS(2193), - [anon_sym_ABSTRACT] = ACTIONS(2193), - [anon_sym_Break] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_BREAK] = ACTIONS(2193), - [anon_sym_Case] = ACTIONS(2193), - [anon_sym_case] = ACTIONS(2193), - [anon_sym_CASE] = ACTIONS(2193), - [anon_sym_Catch] = ACTIONS(2193), - [anon_sym_catch] = ACTIONS(2193), - [anon_sym_CATCH] = ACTIONS(2193), - [anon_sym_Component] = ACTIONS(2193), - [anon_sym_component] = ACTIONS(2193), - [anon_sym_COMPONENT] = ACTIONS(2193), - [anon_sym_Continue] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_CONTINUE] = ACTIONS(2193), - [anon_sym_Debugger] = ACTIONS(2193), - [anon_sym_debugger] = ACTIONS(2193), - [anon_sym_DEBUGGER] = ACTIONS(2193), - [anon_sym_Default] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_DEFAULT] = ACTIONS(2193), - [anon_sym_Do] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_DO] = ACTIONS(2193), - [anon_sym_Final] = ACTIONS(2193), - [anon_sym_final] = ACTIONS(2193), - [anon_sym_FINAL] = ACTIONS(2193), - [anon_sym_Finally] = ACTIONS(2193), - [anon_sym_finally] = ACTIONS(2193), - [anon_sym_FINALLY] = ACTIONS(2193), - [anon_sym_For] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_FOR] = ACTIONS(2193), - [anon_sym_Function] = ACTIONS(2193), - [anon_sym_function] = ACTIONS(2193), - [anon_sym_FUNCTION] = ACTIONS(2193), - [anon_sym_If] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_IF] = ACTIONS(2193), - [anon_sym_Import] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_IMPORT] = ACTIONS(2193), - [anon_sym_Include] = ACTIONS(2193), - [anon_sym_include] = ACTIONS(2193), - [anon_sym_INCLUDE] = ACTIONS(2193), - [anon_sym_Interface] = ACTIONS(2193), - [anon_sym_interface] = ACTIONS(2193), - [anon_sym_INTERFACE] = ACTIONS(2193), - [anon_sym_New] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_NEW] = ACTIONS(2193), - [anon_sym_Package] = ACTIONS(2193), - [anon_sym_package] = ACTIONS(2193), - [anon_sym_PACKAGE] = ACTIONS(2193), - [anon_sym_Private] = ACTIONS(2193), - [anon_sym_private] = ACTIONS(2193), - [anon_sym_PRIVATE] = ACTIONS(2193), - [anon_sym_Property] = ACTIONS(2193), - [anon_sym_property] = ACTIONS(2193), - [anon_sym_PROPERTY] = ACTIONS(2193), - [anon_sym_Public] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_PUBLIC] = ACTIONS(2193), - [anon_sym_Remote] = ACTIONS(2193), - [anon_sym_remote] = ACTIONS(2193), - [anon_sym_REMOTE] = ACTIONS(2193), - [anon_sym_Return] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_RETURN] = ACTIONS(2193), - [anon_sym_Static] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_STATIC] = ACTIONS(2193), - [anon_sym_Switch] = ACTIONS(2193), - [anon_sym_switch] = ACTIONS(2193), - [anon_sym_SWITCH] = ACTIONS(2193), - [anon_sym_Throw] = ACTIONS(2193), - [anon_sym_throw] = ACTIONS(2193), - [anon_sym_THROW] = ACTIONS(2193), - [anon_sym_Try] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_TRY] = ACTIONS(2193), - [anon_sym_Var] = ACTIONS(2193), - [anon_sym_var] = ACTIONS(2193), - [anon_sym_VAR] = ACTIONS(2193), - [anon_sym_While] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_WHILE] = ACTIONS(2193), - [anon_sym_With] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_WITH] = ACTIONS(2193), - [sym_cf_comment] = ACTIONS(2191), - [sym__java_block_open] = ACTIONS(2191), - [sym__static_type_prefix] = ACTIONS(2191), + [aux_sym_number_token1] = ACTIONS(2205), + [aux_sym_number_token2] = ACTIONS(2203), + [anon_sym_This] = ACTIONS(2205), + [anon_sym_this] = ACTIONS(2205), + [anon_sym_THIS] = ACTIONS(2205), + [anon_sym_Super] = ACTIONS(2205), + [anon_sym_super] = ACTIONS(2205), + [anon_sym_SUPER] = ACTIONS(2205), + [anon_sym_True] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_TRUE] = ACTIONS(2205), + [anon_sym_False] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_FALSE] = ACTIONS(2205), + [anon_sym_Null] = ACTIONS(2205), + [anon_sym_null] = ACTIONS(2205), + [anon_sym_NULL] = ACTIONS(2205), + [anon_sym_Undefined] = ACTIONS(2205), + [anon_sym_undefined] = ACTIONS(2205), + [anon_sym_UNDEFINED] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2205), + [sym_hash_empty] = ACTIONS(2203), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_QueryExecute] = ACTIONS(2205), + [anon_sym_queryexecute] = ACTIONS(2205), + [anon_sym_QUERYEXECUTE] = ACTIONS(2205), + [anon_sym_queryExecute] = ACTIONS(2205), + [anon_sym_BQUOTE] = ACTIONS(2205), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2203), + [anon_sym_Abstract] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_ABSTRACT] = ACTIONS(2205), + [anon_sym_Break] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_BREAK] = ACTIONS(2205), + [anon_sym_Case] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_CASE] = ACTIONS(2205), + [anon_sym_Catch] = ACTIONS(2205), + [anon_sym_catch] = ACTIONS(2205), + [anon_sym_CATCH] = ACTIONS(2205), + [anon_sym_Component] = ACTIONS(2205), + [anon_sym_component] = ACTIONS(2205), + [anon_sym_COMPONENT] = ACTIONS(2205), + [anon_sym_Continue] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_CONTINUE] = ACTIONS(2205), + [anon_sym_Debugger] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_DEBUGGER] = ACTIONS(2205), + [anon_sym_Default] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_DEFAULT] = ACTIONS(2205), + [anon_sym_Do] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_DO] = ACTIONS(2205), + [anon_sym_Final] = ACTIONS(2205), + [anon_sym_final] = ACTIONS(2205), + [anon_sym_FINAL] = ACTIONS(2205), + [anon_sym_Finally] = ACTIONS(2205), + [anon_sym_finally] = ACTIONS(2205), + [anon_sym_FINALLY] = ACTIONS(2205), + [anon_sym_For] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_FOR] = ACTIONS(2205), + [anon_sym_Function] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_FUNCTION] = ACTIONS(2205), + [anon_sym_If] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_IF] = ACTIONS(2205), + [anon_sym_Import] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_IMPORT] = ACTIONS(2205), + [anon_sym_Include] = ACTIONS(2205), + [anon_sym_include] = ACTIONS(2205), + [anon_sym_INCLUDE] = ACTIONS(2205), + [anon_sym_Interface] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_INTERFACE] = ACTIONS(2205), + [anon_sym_New] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_NEW] = ACTIONS(2205), + [anon_sym_Package] = ACTIONS(2205), + [anon_sym_package] = ACTIONS(2205), + [anon_sym_PACKAGE] = ACTIONS(2205), + [anon_sym_Private] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_PRIVATE] = ACTIONS(2205), + [anon_sym_Property] = ACTIONS(2205), + [anon_sym_property] = ACTIONS(2205), + [anon_sym_PROPERTY] = ACTIONS(2205), + [anon_sym_Public] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_PUBLIC] = ACTIONS(2205), + [anon_sym_Remote] = ACTIONS(2205), + [anon_sym_remote] = ACTIONS(2205), + [anon_sym_REMOTE] = ACTIONS(2205), + [anon_sym_Return] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_RETURN] = ACTIONS(2205), + [anon_sym_Static] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_STATIC] = ACTIONS(2205), + [anon_sym_Switch] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_SWITCH] = ACTIONS(2205), + [anon_sym_Throw] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_THROW] = ACTIONS(2205), + [anon_sym_Try] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_TRY] = ACTIONS(2205), + [anon_sym_Var] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_VAR] = ACTIONS(2205), + [anon_sym_While] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_WHILE] = ACTIONS(2205), + [anon_sym_With] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_WITH] = ACTIONS(2205), + [sym_cf_comment] = ACTIONS(2203), + [sym__java_block_open] = ACTIONS(2203), + [sym__static_type_prefix] = ACTIONS(2203), }, - [STATE(495)] = { - [sym_identifier] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_Query] = ACTIONS(2438), - [anon_sym_query] = ACTIONS(2438), - [anon_sym_QUERY] = ACTIONS(2438), + [STATE(486)] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2416), + [anon_sym_query] = ACTIONS(2416), + [anon_sym_QUERY] = ACTIONS(2416), [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2440), - [aux_sym_unary_operator_token1] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(2440), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2438), - [aux_sym_number_token2] = ACTIONS(2438), - [anon_sym_This] = ACTIONS(2438), - [anon_sym_this] = ACTIONS(2438), - [anon_sym_THIS] = ACTIONS(2438), - [anon_sym_Super] = ACTIONS(2438), - [anon_sym_super] = ACTIONS(2438), - [anon_sym_SUPER] = ACTIONS(2438), - [anon_sym_True] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(2438), - [anon_sym_TRUE] = ACTIONS(2438), - [anon_sym_False] = ACTIONS(2438), - [anon_sym_false] = ACTIONS(2438), - [anon_sym_FALSE] = ACTIONS(2438), - [anon_sym_Null] = ACTIONS(2438), - [anon_sym_null] = ACTIONS(2438), - [anon_sym_NULL] = ACTIONS(2438), - [anon_sym_Undefined] = ACTIONS(2438), - [anon_sym_undefined] = ACTIONS(2438), - [anon_sym_UNDEFINED] = ACTIONS(2438), - [anon_sym_get] = ACTIONS(2438), - [anon_sym_set] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(2438), - [sym_hash_empty] = ACTIONS(2440), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_QueryExecute] = ACTIONS(2438), - [anon_sym_queryexecute] = ACTIONS(2438), - [anon_sym_QUERYEXECUTE] = ACTIONS(2438), - [anon_sym_queryExecute] = ACTIONS(2438), - [anon_sym_BQUOTE] = ACTIONS(2440), - [anon_sym_Abstract] = ACTIONS(2438), - [anon_sym_abstract] = ACTIONS(2438), - [anon_sym_ABSTRACT] = ACTIONS(2438), - [anon_sym_Component] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_COMPONENT] = ACTIONS(2438), - [anon_sym_Debugger] = ACTIONS(2438), - [anon_sym_debugger] = ACTIONS(2438), - [anon_sym_DEBUGGER] = ACTIONS(2438), - [anon_sym_Final] = ACTIONS(2438), - [anon_sym_final] = ACTIONS(2438), - [anon_sym_FINAL] = ACTIONS(2438), - [anon_sym_Function] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_FUNCTION] = ACTIONS(2438), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_Include] = ACTIONS(2438), - [anon_sym_include] = ACTIONS(2438), - [anon_sym_INCLUDE] = ACTIONS(2438), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [anon_sym_New] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_NEW] = ACTIONS(2438), - [anon_sym_Package] = ACTIONS(2438), - [anon_sym_package] = ACTIONS(2438), - [anon_sym_PACKAGE] = ACTIONS(2438), - [anon_sym_Private] = ACTIONS(2438), - [anon_sym_private] = ACTIONS(2438), - [anon_sym_PRIVATE] = ACTIONS(2438), - [anon_sym_Public] = ACTIONS(2438), - [anon_sym_public] = ACTIONS(2438), - [anon_sym_PUBLIC] = ACTIONS(2438), - [anon_sym_Remote] = ACTIONS(2438), - [anon_sym_remote] = ACTIONS(2438), - [anon_sym_REMOTE] = ACTIONS(2438), - [anon_sym_Static] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_STATIC] = ACTIONS(2438), - [sym__automatic_semicolon] = ACTIONS(2440), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym_tag_linefeed] = ACTIONS(2440), - [sym__java_block_open] = ACTIONS(2440), - [sym__static_type_prefix] = ACTIONS(2440), - }, - [STATE(496)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_Query] = ACTIONS(2442), - [anon_sym_query] = ACTIONS(2442), - [anon_sym_QUERY] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), [anon_sym_GT] = ACTIONS(2350), [aux_sym_binary_expression_token2] = ACTIONS(2350), [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2444), - [aux_sym_unary_operator_token1] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2442), - [aux_sym_number_token2] = ACTIONS(2442), - [anon_sym_This] = ACTIONS(2442), - [anon_sym_this] = ACTIONS(2442), - [anon_sym_THIS] = ACTIONS(2442), - [anon_sym_Super] = ACTIONS(2442), - [anon_sym_super] = ACTIONS(2442), - [anon_sym_SUPER] = ACTIONS(2442), - [anon_sym_True] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_TRUE] = ACTIONS(2442), - [anon_sym_False] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_FALSE] = ACTIONS(2442), - [anon_sym_Null] = ACTIONS(2442), - [anon_sym_null] = ACTIONS(2442), - [anon_sym_NULL] = ACTIONS(2442), - [anon_sym_Undefined] = ACTIONS(2442), - [anon_sym_undefined] = ACTIONS(2442), - [anon_sym_UNDEFINED] = ACTIONS(2442), - [anon_sym_get] = ACTIONS(2442), - [anon_sym_set] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(2442), - [sym_hash_empty] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_QueryExecute] = ACTIONS(2442), - [anon_sym_queryexecute] = ACTIONS(2442), - [anon_sym_QUERYEXECUTE] = ACTIONS(2442), - [anon_sym_queryExecute] = ACTIONS(2442), - [anon_sym_BQUOTE] = ACTIONS(2444), - [anon_sym_Abstract] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_ABSTRACT] = ACTIONS(2442), - [anon_sym_Component] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_COMPONENT] = ACTIONS(2442), - [anon_sym_Debugger] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_DEBUGGER] = ACTIONS(2442), - [anon_sym_Final] = ACTIONS(2442), - [anon_sym_final] = ACTIONS(2442), - [anon_sym_FINAL] = ACTIONS(2442), - [anon_sym_Function] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_FUNCTION] = ACTIONS(2442), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2418), + [aux_sym_unary_operator_token1] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2416), + [aux_sym_number_token2] = ACTIONS(2416), + [anon_sym_This] = ACTIONS(2416), + [anon_sym_this] = ACTIONS(2416), + [anon_sym_THIS] = ACTIONS(2416), + [anon_sym_Super] = ACTIONS(2416), + [anon_sym_super] = ACTIONS(2416), + [anon_sym_SUPER] = ACTIONS(2416), + [anon_sym_True] = ACTIONS(2416), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_TRUE] = ACTIONS(2416), + [anon_sym_False] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [anon_sym_FALSE] = ACTIONS(2416), + [anon_sym_Null] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_Undefined] = ACTIONS(2416), + [anon_sym_undefined] = ACTIONS(2416), + [anon_sym_UNDEFINED] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [sym_hash_empty] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_QueryExecute] = ACTIONS(2416), + [anon_sym_queryexecute] = ACTIONS(2416), + [anon_sym_QUERYEXECUTE] = ACTIONS(2416), + [anon_sym_queryExecute] = ACTIONS(2416), + [anon_sym_BQUOTE] = ACTIONS(2418), + [anon_sym_Abstract] = ACTIONS(2416), + [anon_sym_abstract] = ACTIONS(2416), + [anon_sym_ABSTRACT] = ACTIONS(2416), + [anon_sym_Component] = ACTIONS(2416), + [anon_sym_component] = ACTIONS(2416), + [anon_sym_COMPONENT] = ACTIONS(2416), + [anon_sym_Debugger] = ACTIONS(2416), + [anon_sym_debugger] = ACTIONS(2416), + [anon_sym_DEBUGGER] = ACTIONS(2416), + [anon_sym_Final] = ACTIONS(2416), + [anon_sym_final] = ACTIONS(2416), + [anon_sym_FINAL] = ACTIONS(2416), + [anon_sym_Function] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2416), + [anon_sym_FUNCTION] = ACTIONS(2416), [anon_sym_In] = ACTIONS(2350), [anon_sym_in] = ACTIONS(2350), [anon_sym_IN] = ACTIONS(2350), - [anon_sym_Include] = ACTIONS(2442), - [anon_sym_include] = ACTIONS(2442), - [anon_sym_INCLUDE] = ACTIONS(2442), + [anon_sym_Include] = ACTIONS(2416), + [anon_sym_include] = ACTIONS(2416), + [anon_sym_INCLUDE] = ACTIONS(2416), [anon_sym_InstanceOf] = ACTIONS(2350), [anon_sym_instanceof] = ACTIONS(2350), [anon_sym_INSTANCEOF] = ACTIONS(2350), [anon_sym_instanceOf] = ACTIONS(2350), - [anon_sym_New] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_NEW] = ACTIONS(2442), - [anon_sym_Package] = ACTIONS(2442), - [anon_sym_package] = ACTIONS(2442), - [anon_sym_PACKAGE] = ACTIONS(2442), - [anon_sym_Private] = ACTIONS(2442), - [anon_sym_private] = ACTIONS(2442), - [anon_sym_PRIVATE] = ACTIONS(2442), - [anon_sym_Public] = ACTIONS(2442), - [anon_sym_public] = ACTIONS(2442), - [anon_sym_PUBLIC] = ACTIONS(2442), - [anon_sym_Remote] = ACTIONS(2442), - [anon_sym_remote] = ACTIONS(2442), - [anon_sym_REMOTE] = ACTIONS(2442), - [anon_sym_Static] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_STATIC] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym_tag_linefeed] = ACTIONS(2444), - [sym__java_block_open] = ACTIONS(2444), - [sym__static_type_prefix] = ACTIONS(2444), - }, - [STATE(497)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(498)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(499)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(500)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(501)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(502)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(503)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(504)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(505)] = { - [sym_identifier] = ACTIONS(2446), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_Query] = ACTIONS(2446), - [anon_sym_query] = ACTIONS(2446), - [anon_sym_QUERY] = ACTIONS(2446), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_SLASH] = ACTIONS(2455), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2450), - [aux_sym_unary_operator_token1] = ACTIONS(2446), - [anon_sym_PLUS_PLUS] = ACTIONS(2452), - [anon_sym_DASH_DASH] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2446), - [aux_sym_number_token2] = ACTIONS(2446), - [anon_sym_This] = ACTIONS(2446), - [anon_sym_this] = ACTIONS(2446), - [anon_sym_THIS] = ACTIONS(2446), - [anon_sym_Super] = ACTIONS(2446), - [anon_sym_super] = ACTIONS(2446), - [anon_sym_SUPER] = ACTIONS(2446), - [anon_sym_True] = ACTIONS(2446), - [anon_sym_true] = ACTIONS(2446), - [anon_sym_TRUE] = ACTIONS(2446), - [anon_sym_False] = ACTIONS(2446), - [anon_sym_false] = ACTIONS(2446), - [anon_sym_FALSE] = ACTIONS(2446), - [anon_sym_Null] = ACTIONS(2446), - [anon_sym_null] = ACTIONS(2446), - [anon_sym_NULL] = ACTIONS(2446), - [anon_sym_Undefined] = ACTIONS(2446), - [anon_sym_undefined] = ACTIONS(2446), - [anon_sym_UNDEFINED] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_POUND] = ACTIONS(2446), - [sym_hash_empty] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_QueryExecute] = ACTIONS(2446), - [anon_sym_queryexecute] = ACTIONS(2446), - [anon_sym_QUERYEXECUTE] = ACTIONS(2446), - [anon_sym_queryExecute] = ACTIONS(2446), - [anon_sym_BQUOTE] = ACTIONS(2450), - [anon_sym_Abstract] = ACTIONS(2446), - [anon_sym_abstract] = ACTIONS(2446), - [anon_sym_ABSTRACT] = ACTIONS(2446), - [anon_sym_Component] = ACTIONS(2446), - [anon_sym_component] = ACTIONS(2446), - [anon_sym_COMPONENT] = ACTIONS(2446), - [anon_sym_Debugger] = ACTIONS(2446), - [anon_sym_debugger] = ACTIONS(2446), - [anon_sym_DEBUGGER] = ACTIONS(2446), - [anon_sym_Final] = ACTIONS(2446), - [anon_sym_final] = ACTIONS(2446), - [anon_sym_FINAL] = ACTIONS(2446), - [anon_sym_Function] = ACTIONS(2446), - [anon_sym_function] = ACTIONS(2446), - [anon_sym_FUNCTION] = ACTIONS(2446), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(2446), - [anon_sym_include] = ACTIONS(2446), - [anon_sym_INCLUDE] = ACTIONS(2446), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(2446), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_NEW] = ACTIONS(2446), - [anon_sym_Package] = ACTIONS(2446), - [anon_sym_package] = ACTIONS(2446), - [anon_sym_PACKAGE] = ACTIONS(2446), - [anon_sym_Private] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_PRIVATE] = ACTIONS(2446), - [anon_sym_Public] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_PUBLIC] = ACTIONS(2446), - [anon_sym_Remote] = ACTIONS(2446), - [anon_sym_remote] = ACTIONS(2446), - [anon_sym_REMOTE] = ACTIONS(2446), - [anon_sym_Static] = ACTIONS(2446), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_STATIC] = ACTIONS(2446), - [sym__automatic_semicolon] = ACTIONS(2450), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(2450), - [sym__java_block_open] = ACTIONS(2450), - [sym__static_type_prefix] = ACTIONS(2450), - }, - [STATE(506)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(507)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(508)] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2458), - [anon_sym_query] = ACTIONS(2458), - [anon_sym_QUERY] = ACTIONS(2458), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2460), - [aux_sym_unary_operator_token1] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2460), - [anon_sym_SQUOTE] = ACTIONS(2460), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2458), - [aux_sym_number_token2] = ACTIONS(2458), - [anon_sym_This] = ACTIONS(2458), - [anon_sym_this] = ACTIONS(2458), - [anon_sym_THIS] = ACTIONS(2458), - [anon_sym_Super] = ACTIONS(2458), - [anon_sym_super] = ACTIONS(2458), - [anon_sym_SUPER] = ACTIONS(2458), - [anon_sym_True] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(2458), - [anon_sym_TRUE] = ACTIONS(2458), - [anon_sym_False] = ACTIONS(2458), - [anon_sym_false] = ACTIONS(2458), - [anon_sym_FALSE] = ACTIONS(2458), - [anon_sym_Null] = ACTIONS(2458), - [anon_sym_null] = ACTIONS(2458), - [anon_sym_NULL] = ACTIONS(2458), - [anon_sym_Undefined] = ACTIONS(2458), - [anon_sym_undefined] = ACTIONS(2458), - [anon_sym_UNDEFINED] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(2458), - [sym_hash_empty] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_QueryExecute] = ACTIONS(2458), - [anon_sym_queryexecute] = ACTIONS(2458), - [anon_sym_QUERYEXECUTE] = ACTIONS(2458), - [anon_sym_queryExecute] = ACTIONS(2458), - [anon_sym_BQUOTE] = ACTIONS(2460), - [anon_sym_Abstract] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_ABSTRACT] = ACTIONS(2458), - [anon_sym_Component] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_COMPONENT] = ACTIONS(2458), - [anon_sym_Debugger] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_DEBUGGER] = ACTIONS(2458), - [anon_sym_Final] = ACTIONS(2458), - [anon_sym_final] = ACTIONS(2458), - [anon_sym_FINAL] = ACTIONS(2458), - [anon_sym_Function] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_FUNCTION] = ACTIONS(2458), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2458), - [anon_sym_include] = ACTIONS(2458), - [anon_sym_INCLUDE] = ACTIONS(2458), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2458), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_NEW] = ACTIONS(2458), - [anon_sym_Package] = ACTIONS(2458), - [anon_sym_package] = ACTIONS(2458), - [anon_sym_PACKAGE] = ACTIONS(2458), - [anon_sym_Private] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_PRIVATE] = ACTIONS(2458), - [anon_sym_Public] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_PUBLIC] = ACTIONS(2458), - [anon_sym_Remote] = ACTIONS(2458), - [anon_sym_remote] = ACTIONS(2458), - [anon_sym_REMOTE] = ACTIONS(2458), - [anon_sym_Static] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_STATIC] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(2414), - [sym__elvis_operator] = ACTIONS(2416), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2460), - [sym__java_block_open] = ACTIONS(2460), - [sym__static_type_prefix] = ACTIONS(2460), + [anon_sym_New] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_NEW] = ACTIONS(2416), + [anon_sym_Package] = ACTIONS(2416), + [anon_sym_package] = ACTIONS(2416), + [anon_sym_PACKAGE] = ACTIONS(2416), + [anon_sym_Private] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_PRIVATE] = ACTIONS(2416), + [anon_sym_Public] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_PUBLIC] = ACTIONS(2416), + [anon_sym_Remote] = ACTIONS(2416), + [anon_sym_remote] = ACTIONS(2416), + [anon_sym_REMOTE] = ACTIONS(2416), + [anon_sym_Static] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_STATIC] = ACTIONS(2416), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(2384), + [sym__elvis_operator] = ACTIONS(2386), + [sym_logical_or] = ACTIONS(2358), + [sym_tag_linefeed] = ACTIONS(2418), + [sym__java_block_open] = ACTIONS(2418), + [sym__static_type_prefix] = ACTIONS(2418), }, - [STATE(509)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2462), - [anon_sym_query] = ACTIONS(2462), - [anon_sym_QUERY] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_TILDE] = ACTIONS(2464), - [aux_sym_unary_operator_token1] = ACTIONS(2462), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2464), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2462), - [aux_sym_number_token2] = ACTIONS(2462), - [anon_sym_This] = ACTIONS(2462), - [anon_sym_this] = ACTIONS(2462), - [anon_sym_THIS] = ACTIONS(2462), - [anon_sym_Super] = ACTIONS(2462), - [anon_sym_super] = ACTIONS(2462), - [anon_sym_SUPER] = ACTIONS(2462), - [anon_sym_True] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2462), - [anon_sym_TRUE] = ACTIONS(2462), - [anon_sym_False] = ACTIONS(2462), - [anon_sym_false] = ACTIONS(2462), - [anon_sym_FALSE] = ACTIONS(2462), - [anon_sym_Null] = ACTIONS(2462), - [anon_sym_null] = ACTIONS(2462), - [anon_sym_NULL] = ACTIONS(2462), - [anon_sym_Undefined] = ACTIONS(2462), - [anon_sym_undefined] = ACTIONS(2462), - [anon_sym_UNDEFINED] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(2462), - [sym_hash_empty] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_QueryExecute] = ACTIONS(2462), - [anon_sym_queryexecute] = ACTIONS(2462), - [anon_sym_QUERYEXECUTE] = ACTIONS(2462), - [anon_sym_queryExecute] = ACTIONS(2462), - [anon_sym_BQUOTE] = ACTIONS(2464), - [anon_sym_Abstract] = ACTIONS(2462), - [anon_sym_abstract] = ACTIONS(2462), - [anon_sym_ABSTRACT] = ACTIONS(2462), - [anon_sym_Component] = ACTIONS(2462), - [anon_sym_component] = ACTIONS(2462), - [anon_sym_COMPONENT] = ACTIONS(2462), - [anon_sym_Debugger] = ACTIONS(2462), - [anon_sym_debugger] = ACTIONS(2462), - [anon_sym_DEBUGGER] = ACTIONS(2462), - [anon_sym_Final] = ACTIONS(2462), - [anon_sym_final] = ACTIONS(2462), - [anon_sym_FINAL] = ACTIONS(2462), - [anon_sym_Function] = ACTIONS(2462), - [anon_sym_function] = ACTIONS(2462), - [anon_sym_FUNCTION] = ACTIONS(2462), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2462), - [anon_sym_include] = ACTIONS(2462), - [anon_sym_INCLUDE] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_NEW] = ACTIONS(2462), - [anon_sym_Package] = ACTIONS(2462), - [anon_sym_package] = ACTIONS(2462), - [anon_sym_PACKAGE] = ACTIONS(2462), - [anon_sym_Private] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_PRIVATE] = ACTIONS(2462), - [anon_sym_Public] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_PUBLIC] = ACTIONS(2462), - [anon_sym_Remote] = ACTIONS(2462), - [anon_sym_remote] = ACTIONS(2462), - [anon_sym_REMOTE] = ACTIONS(2462), - [anon_sym_Static] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_STATIC] = ACTIONS(2462), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(2414), - [sym__elvis_operator] = ACTIONS(2416), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2464), - [sym__java_block_open] = ACTIONS(2464), - [sym__static_type_prefix] = ACTIONS(2464), + [STATE(487)] = { + [sym_identifier] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_COMMA] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_Query] = ACTIONS(2420), + [anon_sym_query] = ACTIONS(2420), + [anon_sym_QUERY] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2420), + [sym_optional_chain] = ACTIONS(2422), + [sym_static_chain] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_BSLASH] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2422), + [anon_sym_LT_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2422), + [aux_sym_binary_expression_token1] = ACTIONS(2422), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [aux_sym_binary_expression_token2] = ACTIONS(2420), + [aux_sym_binary_expression_token3] = ACTIONS(2420), + [aux_sym_binary_expression_token4] = ACTIONS(2422), + [aux_sym_binary_expression_token5] = ACTIONS(2422), + [aux_sym_binary_expression_token6] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2422), + [aux_sym_unary_operator_token1] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2420), + [aux_sym_number_token2] = ACTIONS(2420), + [anon_sym_This] = ACTIONS(2420), + [anon_sym_this] = ACTIONS(2420), + [anon_sym_THIS] = ACTIONS(2420), + [anon_sym_Super] = ACTIONS(2420), + [anon_sym_super] = ACTIONS(2420), + [anon_sym_SUPER] = ACTIONS(2420), + [anon_sym_True] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_TRUE] = ACTIONS(2420), + [anon_sym_False] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [anon_sym_FALSE] = ACTIONS(2420), + [anon_sym_Null] = ACTIONS(2420), + [anon_sym_null] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_Undefined] = ACTIONS(2420), + [anon_sym_undefined] = ACTIONS(2420), + [anon_sym_UNDEFINED] = ACTIONS(2420), + [anon_sym_get] = ACTIONS(2420), + [anon_sym_set] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [sym_hash_empty] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_QueryExecute] = ACTIONS(2420), + [anon_sym_queryexecute] = ACTIONS(2420), + [anon_sym_QUERYEXECUTE] = ACTIONS(2420), + [anon_sym_queryExecute] = ACTIONS(2420), + [anon_sym_BQUOTE] = ACTIONS(2422), + [anon_sym_Abstract] = ACTIONS(2420), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_ABSTRACT] = ACTIONS(2420), + [anon_sym_Component] = ACTIONS(2420), + [anon_sym_component] = ACTIONS(2420), + [anon_sym_COMPONENT] = ACTIONS(2420), + [anon_sym_Debugger] = ACTIONS(2420), + [anon_sym_debugger] = ACTIONS(2420), + [anon_sym_DEBUGGER] = ACTIONS(2420), + [anon_sym_Final] = ACTIONS(2420), + [anon_sym_final] = ACTIONS(2420), + [anon_sym_FINAL] = ACTIONS(2420), + [anon_sym_Function] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2420), + [anon_sym_FUNCTION] = ACTIONS(2420), + [anon_sym_In] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_IN] = ACTIONS(2420), + [anon_sym_Include] = ACTIONS(2420), + [anon_sym_include] = ACTIONS(2420), + [anon_sym_INCLUDE] = ACTIONS(2420), + [anon_sym_InstanceOf] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_INSTANCEOF] = ACTIONS(2420), + [anon_sym_instanceOf] = ACTIONS(2420), + [anon_sym_New] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_NEW] = ACTIONS(2420), + [anon_sym_Package] = ACTIONS(2420), + [anon_sym_package] = ACTIONS(2420), + [anon_sym_PACKAGE] = ACTIONS(2420), + [anon_sym_Private] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_PRIVATE] = ACTIONS(2420), + [anon_sym_Public] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_PUBLIC] = ACTIONS(2420), + [anon_sym_Remote] = ACTIONS(2420), + [anon_sym_remote] = ACTIONS(2420), + [anon_sym_REMOTE] = ACTIONS(2420), + [anon_sym_Static] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_STATIC] = ACTIONS(2420), + [sym__automatic_semicolon] = ACTIONS(2422), + [sym__ternary_qmark] = ACTIONS(2422), + [sym__elvis_operator] = ACTIONS(2422), + [sym_logical_or] = ACTIONS(2422), + [sym_tag_linefeed] = ACTIONS(2422), + [sym__java_block_open] = ACTIONS(2422), + [sym__static_type_prefix] = ACTIONS(2422), }, - [STATE(510)] = { + [STATE(488)] = { [ts_builtin_sym_end] = ACTIONS(2187), [sym_identifier] = ACTIONS(2189), [anon_sym_LBRACE] = ACTIONS(2187), @@ -123154,922 +119953,2130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2187), [sym__static_type_prefix] = ACTIONS(2187), }, - [STATE(511)] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2466), - [anon_sym_query] = ACTIONS(2466), - [anon_sym_QUERY] = ACTIONS(2466), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [aux_sym_unary_operator_token1] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2466), - [aux_sym_number_token2] = ACTIONS(2466), - [anon_sym_This] = ACTIONS(2466), - [anon_sym_this] = ACTIONS(2466), - [anon_sym_THIS] = ACTIONS(2466), - [anon_sym_Super] = ACTIONS(2466), - [anon_sym_super] = ACTIONS(2466), - [anon_sym_SUPER] = ACTIONS(2466), - [anon_sym_True] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(2466), - [anon_sym_TRUE] = ACTIONS(2466), - [anon_sym_False] = ACTIONS(2466), - [anon_sym_false] = ACTIONS(2466), - [anon_sym_FALSE] = ACTIONS(2466), - [anon_sym_Null] = ACTIONS(2466), - [anon_sym_null] = ACTIONS(2466), - [anon_sym_NULL] = ACTIONS(2466), - [anon_sym_Undefined] = ACTIONS(2466), - [anon_sym_undefined] = ACTIONS(2466), - [anon_sym_UNDEFINED] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(2466), - [sym_hash_empty] = ACTIONS(2468), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_QueryExecute] = ACTIONS(2466), - [anon_sym_queryexecute] = ACTIONS(2466), - [anon_sym_QUERYEXECUTE] = ACTIONS(2466), - [anon_sym_queryExecute] = ACTIONS(2466), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_Abstract] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_ABSTRACT] = ACTIONS(2466), - [anon_sym_Component] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_COMPONENT] = ACTIONS(2466), - [anon_sym_Debugger] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_DEBUGGER] = ACTIONS(2466), - [anon_sym_Final] = ACTIONS(2466), - [anon_sym_final] = ACTIONS(2466), - [anon_sym_FINAL] = ACTIONS(2466), - [anon_sym_Function] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_FUNCTION] = ACTIONS(2466), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2466), - [anon_sym_include] = ACTIONS(2466), - [anon_sym_INCLUDE] = ACTIONS(2466), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_NEW] = ACTIONS(2466), - [anon_sym_Package] = ACTIONS(2466), - [anon_sym_package] = ACTIONS(2466), - [anon_sym_PACKAGE] = ACTIONS(2466), - [anon_sym_Private] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_PRIVATE] = ACTIONS(2466), - [anon_sym_Public] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_PUBLIC] = ACTIONS(2466), - [anon_sym_Remote] = ACTIONS(2466), - [anon_sym_remote] = ACTIONS(2466), - [anon_sym_REMOTE] = ACTIONS(2466), - [anon_sym_Static] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_STATIC] = ACTIONS(2466), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(2414), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2468), - [sym__java_block_open] = ACTIONS(2468), - [sym__static_type_prefix] = ACTIONS(2468), - }, - [STATE(512)] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2470), - [anon_sym_query] = ACTIONS(2470), - [anon_sym_QUERY] = ACTIONS(2470), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [aux_sym_unary_operator_token1] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2470), - [aux_sym_number_token2] = ACTIONS(2470), - [anon_sym_This] = ACTIONS(2470), - [anon_sym_this] = ACTIONS(2470), - [anon_sym_THIS] = ACTIONS(2470), - [anon_sym_Super] = ACTIONS(2470), - [anon_sym_super] = ACTIONS(2470), - [anon_sym_SUPER] = ACTIONS(2470), - [anon_sym_True] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_TRUE] = ACTIONS(2470), - [anon_sym_False] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_FALSE] = ACTIONS(2470), - [anon_sym_Null] = ACTIONS(2470), - [anon_sym_null] = ACTIONS(2470), - [anon_sym_NULL] = ACTIONS(2470), - [anon_sym_Undefined] = ACTIONS(2470), - [anon_sym_undefined] = ACTIONS(2470), - [anon_sym_UNDEFINED] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(2470), - [sym_hash_empty] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_QueryExecute] = ACTIONS(2470), - [anon_sym_queryexecute] = ACTIONS(2470), - [anon_sym_QUERYEXECUTE] = ACTIONS(2470), - [anon_sym_queryExecute] = ACTIONS(2470), - [anon_sym_BQUOTE] = ACTIONS(2472), - [anon_sym_Abstract] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_ABSTRACT] = ACTIONS(2470), - [anon_sym_Component] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_COMPONENT] = ACTIONS(2470), - [anon_sym_Debugger] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_DEBUGGER] = ACTIONS(2470), - [anon_sym_Final] = ACTIONS(2470), - [anon_sym_final] = ACTIONS(2470), - [anon_sym_FINAL] = ACTIONS(2470), - [anon_sym_Function] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_FUNCTION] = ACTIONS(2470), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2470), - [anon_sym_include] = ACTIONS(2470), - [anon_sym_INCLUDE] = ACTIONS(2470), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_NEW] = ACTIONS(2470), - [anon_sym_Package] = ACTIONS(2470), - [anon_sym_package] = ACTIONS(2470), - [anon_sym_PACKAGE] = ACTIONS(2470), - [anon_sym_Private] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_PRIVATE] = ACTIONS(2470), - [anon_sym_Public] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_PUBLIC] = ACTIONS(2470), - [anon_sym_Remote] = ACTIONS(2470), - [anon_sym_remote] = ACTIONS(2470), - [anon_sym_REMOTE] = ACTIONS(2470), - [anon_sym_Static] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_STATIC] = ACTIONS(2470), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(2414), - [sym__elvis_operator] = ACTIONS(2416), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2472), - [sym__java_block_open] = ACTIONS(2472), - [sym__static_type_prefix] = ACTIONS(2472), + [STATE(489)] = { + [sym_identifier] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_Query] = ACTIONS(2424), + [anon_sym_query] = ACTIONS(2424), + [anon_sym_QUERY] = ACTIONS(2424), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_SLASH] = ACTIONS(2433), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2428), + [aux_sym_unary_operator_token1] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2428), + [anon_sym_SQUOTE] = ACTIONS(2428), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2424), + [aux_sym_number_token2] = ACTIONS(2424), + [anon_sym_This] = ACTIONS(2424), + [anon_sym_this] = ACTIONS(2424), + [anon_sym_THIS] = ACTIONS(2424), + [anon_sym_Super] = ACTIONS(2424), + [anon_sym_super] = ACTIONS(2424), + [anon_sym_SUPER] = ACTIONS(2424), + [anon_sym_True] = ACTIONS(2424), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_TRUE] = ACTIONS(2424), + [anon_sym_False] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [anon_sym_FALSE] = ACTIONS(2424), + [anon_sym_Null] = ACTIONS(2424), + [anon_sym_null] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_Undefined] = ACTIONS(2424), + [anon_sym_undefined] = ACTIONS(2424), + [anon_sym_UNDEFINED] = ACTIONS(2424), + [anon_sym_get] = ACTIONS(2424), + [anon_sym_set] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [sym_hash_empty] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_QueryExecute] = ACTIONS(2424), + [anon_sym_queryexecute] = ACTIONS(2424), + [anon_sym_QUERYEXECUTE] = ACTIONS(2424), + [anon_sym_queryExecute] = ACTIONS(2424), + [anon_sym_BQUOTE] = ACTIONS(2428), + [anon_sym_Abstract] = ACTIONS(2424), + [anon_sym_abstract] = ACTIONS(2424), + [anon_sym_ABSTRACT] = ACTIONS(2424), + [anon_sym_Component] = ACTIONS(2424), + [anon_sym_component] = ACTIONS(2424), + [anon_sym_COMPONENT] = ACTIONS(2424), + [anon_sym_Debugger] = ACTIONS(2424), + [anon_sym_debugger] = ACTIONS(2424), + [anon_sym_DEBUGGER] = ACTIONS(2424), + [anon_sym_Final] = ACTIONS(2424), + [anon_sym_final] = ACTIONS(2424), + [anon_sym_FINAL] = ACTIONS(2424), + [anon_sym_Function] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2424), + [anon_sym_FUNCTION] = ACTIONS(2424), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(2424), + [anon_sym_include] = ACTIONS(2424), + [anon_sym_INCLUDE] = ACTIONS(2424), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_NEW] = ACTIONS(2424), + [anon_sym_Package] = ACTIONS(2424), + [anon_sym_package] = ACTIONS(2424), + [anon_sym_PACKAGE] = ACTIONS(2424), + [anon_sym_Private] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_PRIVATE] = ACTIONS(2424), + [anon_sym_Public] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_PUBLIC] = ACTIONS(2424), + [anon_sym_Remote] = ACTIONS(2424), + [anon_sym_remote] = ACTIONS(2424), + [anon_sym_REMOTE] = ACTIONS(2424), + [anon_sym_Static] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_STATIC] = ACTIONS(2424), + [sym__automatic_semicolon] = ACTIONS(2428), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(2428), + [sym__java_block_open] = ACTIONS(2428), + [sym__static_type_prefix] = ACTIONS(2428), }, - [STATE(513)] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2474), - [anon_sym_query] = ACTIONS(2474), - [anon_sym_QUERY] = ACTIONS(2474), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2374), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2376), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2378), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2372), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2382), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2380), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2380), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2388), - [anon_sym_GT_GT] = ACTIONS(2390), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_BSLASH] = ACTIONS(2372), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2382), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2408), - [anon_sym_LT_GT] = ACTIONS(2408), - [anon_sym_BANG_EQ] = ACTIONS(2382), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2408), - [aux_sym_binary_expression_token1] = ACTIONS(2408), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2380), - [aux_sym_binary_expression_token2] = ACTIONS(2380), - [aux_sym_binary_expression_token3] = ACTIONS(2380), - [aux_sym_binary_expression_token4] = ACTIONS(2406), - [aux_sym_binary_expression_token5] = ACTIONS(2406), - [aux_sym_binary_expression_token6] = ACTIONS(2408), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2476), - [aux_sym_unary_operator_token1] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2476), - [anon_sym_SQUOTE] = ACTIONS(2476), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2474), - [aux_sym_number_token2] = ACTIONS(2474), - [anon_sym_This] = ACTIONS(2474), - [anon_sym_this] = ACTIONS(2474), - [anon_sym_THIS] = ACTIONS(2474), - [anon_sym_Super] = ACTIONS(2474), - [anon_sym_super] = ACTIONS(2474), - [anon_sym_SUPER] = ACTIONS(2474), - [anon_sym_True] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2474), - [anon_sym_TRUE] = ACTIONS(2474), - [anon_sym_False] = ACTIONS(2474), - [anon_sym_false] = ACTIONS(2474), - [anon_sym_FALSE] = ACTIONS(2474), - [anon_sym_Null] = ACTIONS(2474), - [anon_sym_null] = ACTIONS(2474), - [anon_sym_NULL] = ACTIONS(2474), - [anon_sym_Undefined] = ACTIONS(2474), - [anon_sym_undefined] = ACTIONS(2474), - [anon_sym_UNDEFINED] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_POUND] = ACTIONS(2474), - [sym_hash_empty] = ACTIONS(2476), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_QueryExecute] = ACTIONS(2474), - [anon_sym_queryexecute] = ACTIONS(2474), - [anon_sym_QUERYEXECUTE] = ACTIONS(2474), - [anon_sym_queryExecute] = ACTIONS(2474), - [anon_sym_BQUOTE] = ACTIONS(2476), - [anon_sym_Abstract] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_ABSTRACT] = ACTIONS(2474), - [anon_sym_Component] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_COMPONENT] = ACTIONS(2474), - [anon_sym_Debugger] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_DEBUGGER] = ACTIONS(2474), - [anon_sym_Final] = ACTIONS(2474), - [anon_sym_final] = ACTIONS(2474), - [anon_sym_FINAL] = ACTIONS(2474), - [anon_sym_Function] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_FUNCTION] = ACTIONS(2474), - [anon_sym_In] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_IN] = ACTIONS(2380), - [anon_sym_Include] = ACTIONS(2474), - [anon_sym_include] = ACTIONS(2474), - [anon_sym_INCLUDE] = ACTIONS(2474), - [anon_sym_InstanceOf] = ACTIONS(2380), - [anon_sym_instanceof] = ACTIONS(2380), - [anon_sym_INSTANCEOF] = ACTIONS(2380), - [anon_sym_instanceOf] = ACTIONS(2380), - [anon_sym_New] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_NEW] = ACTIONS(2474), - [anon_sym_Package] = ACTIONS(2474), - [anon_sym_package] = ACTIONS(2474), - [anon_sym_PACKAGE] = ACTIONS(2474), - [anon_sym_Private] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_PRIVATE] = ACTIONS(2474), - [anon_sym_Public] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_PUBLIC] = ACTIONS(2474), - [anon_sym_Remote] = ACTIONS(2474), - [anon_sym_remote] = ACTIONS(2474), - [anon_sym_REMOTE] = ACTIONS(2474), - [anon_sym_Static] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_STATIC] = ACTIONS(2474), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2414), - [sym__elvis_operator] = ACTIONS(2416), - [sym_logical_or] = ACTIONS(2388), - [sym_tag_linefeed] = ACTIONS(2476), - [sym__java_block_open] = ACTIONS(2476), - [sym__static_type_prefix] = ACTIONS(2476), + [STATE(490)] = { + [sym_identifier] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_COMMA] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_Query] = ACTIONS(2436), + [anon_sym_query] = ACTIONS(2436), + [anon_sym_QUERY] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2436), + [sym_optional_chain] = ACTIONS(2438), + [sym_static_chain] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_BSLASH] = ACTIONS(2436), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2436), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_LT_GT] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2436), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [aux_sym_binary_expression_token1] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [aux_sym_binary_expression_token2] = ACTIONS(2436), + [aux_sym_binary_expression_token3] = ACTIONS(2436), + [aux_sym_binary_expression_token4] = ACTIONS(2438), + [aux_sym_binary_expression_token5] = ACTIONS(2438), + [aux_sym_binary_expression_token6] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2436), + [anon_sym_TILDE] = ACTIONS(2438), + [aux_sym_unary_operator_token1] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2436), + [aux_sym_number_token2] = ACTIONS(2436), + [anon_sym_This] = ACTIONS(2436), + [anon_sym_this] = ACTIONS(2436), + [anon_sym_THIS] = ACTIONS(2436), + [anon_sym_Super] = ACTIONS(2436), + [anon_sym_super] = ACTIONS(2436), + [anon_sym_SUPER] = ACTIONS(2436), + [anon_sym_True] = ACTIONS(2436), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_TRUE] = ACTIONS(2436), + [anon_sym_False] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [anon_sym_FALSE] = ACTIONS(2436), + [anon_sym_Null] = ACTIONS(2436), + [anon_sym_null] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_Undefined] = ACTIONS(2436), + [anon_sym_undefined] = ACTIONS(2436), + [anon_sym_UNDEFINED] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [sym_hash_empty] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_QueryExecute] = ACTIONS(2436), + [anon_sym_queryexecute] = ACTIONS(2436), + [anon_sym_QUERYEXECUTE] = ACTIONS(2436), + [anon_sym_queryExecute] = ACTIONS(2436), + [anon_sym_BQUOTE] = ACTIONS(2438), + [anon_sym_Abstract] = ACTIONS(2436), + [anon_sym_abstract] = ACTIONS(2436), + [anon_sym_ABSTRACT] = ACTIONS(2436), + [anon_sym_Component] = ACTIONS(2436), + [anon_sym_component] = ACTIONS(2436), + [anon_sym_COMPONENT] = ACTIONS(2436), + [anon_sym_Debugger] = ACTIONS(2436), + [anon_sym_debugger] = ACTIONS(2436), + [anon_sym_DEBUGGER] = ACTIONS(2436), + [anon_sym_Final] = ACTIONS(2436), + [anon_sym_final] = ACTIONS(2436), + [anon_sym_FINAL] = ACTIONS(2436), + [anon_sym_Function] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_FUNCTION] = ACTIONS(2436), + [anon_sym_In] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_IN] = ACTIONS(2436), + [anon_sym_Include] = ACTIONS(2436), + [anon_sym_include] = ACTIONS(2436), + [anon_sym_INCLUDE] = ACTIONS(2436), + [anon_sym_InstanceOf] = ACTIONS(2436), + [anon_sym_instanceof] = ACTIONS(2436), + [anon_sym_INSTANCEOF] = ACTIONS(2436), + [anon_sym_instanceOf] = ACTIONS(2436), + [anon_sym_New] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_NEW] = ACTIONS(2436), + [anon_sym_Package] = ACTIONS(2436), + [anon_sym_package] = ACTIONS(2436), + [anon_sym_PACKAGE] = ACTIONS(2436), + [anon_sym_Private] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_PRIVATE] = ACTIONS(2436), + [anon_sym_Public] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_PUBLIC] = ACTIONS(2436), + [anon_sym_Remote] = ACTIONS(2436), + [anon_sym_remote] = ACTIONS(2436), + [anon_sym_REMOTE] = ACTIONS(2436), + [anon_sym_Static] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_STATIC] = ACTIONS(2436), + [sym__automatic_semicolon] = ACTIONS(2438), + [sym__ternary_qmark] = ACTIONS(2438), + [sym__elvis_operator] = ACTIONS(2438), + [sym_logical_or] = ACTIONS(2438), + [sym_tag_linefeed] = ACTIONS(2438), + [sym__java_block_open] = ACTIONS(2438), + [sym__static_type_prefix] = ACTIONS(2438), }, - [STATE(514)] = { - [sym_identifier] = ACTIONS(2478), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_Query] = ACTIONS(2478), - [anon_sym_query] = ACTIONS(2478), - [anon_sym_QUERY] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2478), - [sym_optional_chain] = ACTIONS(2480), - [sym_static_chain] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_BSLASH] = ACTIONS(2478), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_LT_GT] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [aux_sym_binary_expression_token1] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2478), - [aux_sym_binary_expression_token2] = ACTIONS(2478), - [aux_sym_binary_expression_token3] = ACTIONS(2478), - [aux_sym_binary_expression_token4] = ACTIONS(2480), - [aux_sym_binary_expression_token5] = ACTIONS(2480), - [aux_sym_binary_expression_token6] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2480), - [aux_sym_unary_operator_token1] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2478), - [aux_sym_number_token2] = ACTIONS(2478), - [anon_sym_This] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(2478), - [anon_sym_THIS] = ACTIONS(2478), - [anon_sym_Super] = ACTIONS(2478), - [anon_sym_super] = ACTIONS(2478), - [anon_sym_SUPER] = ACTIONS(2478), - [anon_sym_True] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2478), - [anon_sym_TRUE] = ACTIONS(2478), - [anon_sym_False] = ACTIONS(2478), - [anon_sym_false] = ACTIONS(2478), - [anon_sym_FALSE] = ACTIONS(2478), - [anon_sym_Null] = ACTIONS(2478), - [anon_sym_null] = ACTIONS(2478), - [anon_sym_NULL] = ACTIONS(2478), - [anon_sym_Undefined] = ACTIONS(2478), - [anon_sym_undefined] = ACTIONS(2478), - [anon_sym_UNDEFINED] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_POUND] = ACTIONS(2478), - [sym_hash_empty] = ACTIONS(2480), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_QueryExecute] = ACTIONS(2478), - [anon_sym_queryexecute] = ACTIONS(2478), - [anon_sym_QUERYEXECUTE] = ACTIONS(2478), - [anon_sym_queryExecute] = ACTIONS(2478), - [anon_sym_BQUOTE] = ACTIONS(2480), - [anon_sym_Abstract] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_ABSTRACT] = ACTIONS(2478), - [anon_sym_Component] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_COMPONENT] = ACTIONS(2478), - [anon_sym_Debugger] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_DEBUGGER] = ACTIONS(2478), - [anon_sym_Final] = ACTIONS(2478), - [anon_sym_final] = ACTIONS(2478), - [anon_sym_FINAL] = ACTIONS(2478), - [anon_sym_Function] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_FUNCTION] = ACTIONS(2478), - [anon_sym_In] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_IN] = ACTIONS(2478), - [anon_sym_Include] = ACTIONS(2478), - [anon_sym_include] = ACTIONS(2478), - [anon_sym_INCLUDE] = ACTIONS(2478), - [anon_sym_InstanceOf] = ACTIONS(2478), - [anon_sym_instanceof] = ACTIONS(2478), - [anon_sym_INSTANCEOF] = ACTIONS(2478), - [anon_sym_instanceOf] = ACTIONS(2478), - [anon_sym_New] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_NEW] = ACTIONS(2478), - [anon_sym_Package] = ACTIONS(2478), - [anon_sym_package] = ACTIONS(2478), - [anon_sym_PACKAGE] = ACTIONS(2478), - [anon_sym_Private] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_PRIVATE] = ACTIONS(2478), - [anon_sym_Public] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_PUBLIC] = ACTIONS(2478), - [anon_sym_Remote] = ACTIONS(2478), - [anon_sym_remote] = ACTIONS(2478), - [anon_sym_REMOTE] = ACTIONS(2478), - [anon_sym_Static] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_STATIC] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2480), - [sym__ternary_qmark] = ACTIONS(2480), - [sym__elvis_operator] = ACTIONS(2480), - [sym_logical_or] = ACTIONS(2480), - [sym_tag_linefeed] = ACTIONS(2480), - [sym__java_block_open] = ACTIONS(2480), - [sym__static_type_prefix] = ACTIONS(2480), + [STATE(491)] = { + [sym_identifier] = ACTIONS(2440), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_Query] = ACTIONS(2440), + [anon_sym_query] = ACTIONS(2440), + [anon_sym_QUERY] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2443), + [aux_sym_unary_operator_token1] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2440), + [aux_sym_number_token2] = ACTIONS(2440), + [anon_sym_This] = ACTIONS(2440), + [anon_sym_this] = ACTIONS(2440), + [anon_sym_THIS] = ACTIONS(2440), + [anon_sym_Super] = ACTIONS(2440), + [anon_sym_super] = ACTIONS(2440), + [anon_sym_SUPER] = ACTIONS(2440), + [anon_sym_True] = ACTIONS(2440), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_TRUE] = ACTIONS(2440), + [anon_sym_False] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [anon_sym_FALSE] = ACTIONS(2440), + [anon_sym_Null] = ACTIONS(2440), + [anon_sym_null] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_Undefined] = ACTIONS(2440), + [anon_sym_undefined] = ACTIONS(2440), + [anon_sym_UNDEFINED] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_POUND] = ACTIONS(2440), + [sym_hash_empty] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_QueryExecute] = ACTIONS(2440), + [anon_sym_queryexecute] = ACTIONS(2440), + [anon_sym_QUERYEXECUTE] = ACTIONS(2440), + [anon_sym_queryExecute] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2443), + [anon_sym_Abstract] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_ABSTRACT] = ACTIONS(2440), + [anon_sym_Component] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_COMPONENT] = ACTIONS(2440), + [anon_sym_Debugger] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_DEBUGGER] = ACTIONS(2440), + [anon_sym_Final] = ACTIONS(2440), + [anon_sym_final] = ACTIONS(2440), + [anon_sym_FINAL] = ACTIONS(2440), + [anon_sym_Function] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_FUNCTION] = ACTIONS(2440), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_Include] = ACTIONS(2440), + [anon_sym_include] = ACTIONS(2440), + [anon_sym_INCLUDE] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [anon_sym_New] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_NEW] = ACTIONS(2440), + [anon_sym_Package] = ACTIONS(2440), + [anon_sym_package] = ACTIONS(2440), + [anon_sym_PACKAGE] = ACTIONS(2440), + [anon_sym_Private] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_PRIVATE] = ACTIONS(2440), + [anon_sym_Public] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_PUBLIC] = ACTIONS(2440), + [anon_sym_Remote] = ACTIONS(2440), + [anon_sym_remote] = ACTIONS(2440), + [anon_sym_REMOTE] = ACTIONS(2440), + [anon_sym_Static] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_STATIC] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym_tag_linefeed] = ACTIONS(2443), + [sym__java_block_open] = ACTIONS(2443), + [sym__static_type_prefix] = ACTIONS(2443), }, - [STATE(515)] = { - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_Query] = ACTIONS(2205), - [anon_sym_query] = ACTIONS(2205), - [anon_sym_QUERY] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_SLASH] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [aux_sym_unary_operator_token1] = ACTIONS(2205), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), + [STATE(492)] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_Query] = ACTIONS(2446), + [anon_sym_query] = ACTIONS(2446), + [anon_sym_QUERY] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2449), + [aux_sym_unary_operator_token1] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [anon_sym_SQUOTE] = ACTIONS(2449), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2205), - [aux_sym_number_token2] = ACTIONS(2203), - [anon_sym_This] = ACTIONS(2205), - [anon_sym_this] = ACTIONS(2205), - [anon_sym_THIS] = ACTIONS(2205), - [anon_sym_Super] = ACTIONS(2205), - [anon_sym_super] = ACTIONS(2205), - [anon_sym_SUPER] = ACTIONS(2205), - [anon_sym_True] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_TRUE] = ACTIONS(2205), - [anon_sym_False] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_FALSE] = ACTIONS(2205), - [anon_sym_Null] = ACTIONS(2205), - [anon_sym_null] = ACTIONS(2205), - [anon_sym_NULL] = ACTIONS(2205), - [anon_sym_Undefined] = ACTIONS(2205), - [anon_sym_undefined] = ACTIONS(2205), - [anon_sym_UNDEFINED] = ACTIONS(2205), - [anon_sym_get] = ACTIONS(2205), - [anon_sym_set] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2205), - [sym_hash_empty] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_QueryExecute] = ACTIONS(2205), - [anon_sym_queryexecute] = ACTIONS(2205), - [anon_sym_QUERYEXECUTE] = ACTIONS(2205), - [anon_sym_queryExecute] = ACTIONS(2205), - [anon_sym_BQUOTE] = ACTIONS(2205), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2203), - [anon_sym_Abstract] = ACTIONS(2205), - [anon_sym_abstract] = ACTIONS(2205), - [anon_sym_ABSTRACT] = ACTIONS(2205), - [anon_sym_Break] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_BREAK] = ACTIONS(2205), - [anon_sym_Case] = ACTIONS(2205), - [anon_sym_case] = ACTIONS(2205), - [anon_sym_CASE] = ACTIONS(2205), - [anon_sym_Catch] = ACTIONS(2205), - [anon_sym_catch] = ACTIONS(2205), - [anon_sym_CATCH] = ACTIONS(2205), - [anon_sym_Component] = ACTIONS(2205), - [anon_sym_component] = ACTIONS(2205), - [anon_sym_COMPONENT] = ACTIONS(2205), - [anon_sym_Continue] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_CONTINUE] = ACTIONS(2205), - [anon_sym_Debugger] = ACTIONS(2205), - [anon_sym_debugger] = ACTIONS(2205), - [anon_sym_DEBUGGER] = ACTIONS(2205), - [anon_sym_Default] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_DEFAULT] = ACTIONS(2205), - [anon_sym_Do] = ACTIONS(2205), - [anon_sym_do] = ACTIONS(2205), - [anon_sym_DO] = ACTIONS(2205), - [anon_sym_Final] = ACTIONS(2205), - [anon_sym_final] = ACTIONS(2205), - [anon_sym_FINAL] = ACTIONS(2205), - [anon_sym_Finally] = ACTIONS(2205), - [anon_sym_finally] = ACTIONS(2205), - [anon_sym_FINALLY] = ACTIONS(2205), - [anon_sym_For] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_FOR] = ACTIONS(2205), - [anon_sym_Function] = ACTIONS(2205), - [anon_sym_function] = ACTIONS(2205), - [anon_sym_FUNCTION] = ACTIONS(2205), - [anon_sym_If] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_IF] = ACTIONS(2205), - [anon_sym_Import] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_IMPORT] = ACTIONS(2205), - [anon_sym_Include] = ACTIONS(2205), - [anon_sym_include] = ACTIONS(2205), - [anon_sym_INCLUDE] = ACTIONS(2205), - [anon_sym_Interface] = ACTIONS(2205), - [anon_sym_interface] = ACTIONS(2205), - [anon_sym_INTERFACE] = ACTIONS(2205), - [anon_sym_New] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_NEW] = ACTIONS(2205), - [anon_sym_Package] = ACTIONS(2205), - [anon_sym_package] = ACTIONS(2205), - [anon_sym_PACKAGE] = ACTIONS(2205), - [anon_sym_Private] = ACTIONS(2205), - [anon_sym_private] = ACTIONS(2205), - [anon_sym_PRIVATE] = ACTIONS(2205), - [anon_sym_Property] = ACTIONS(2205), - [anon_sym_property] = ACTIONS(2205), - [anon_sym_PROPERTY] = ACTIONS(2205), - [anon_sym_Public] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_PUBLIC] = ACTIONS(2205), - [anon_sym_Remote] = ACTIONS(2205), - [anon_sym_remote] = ACTIONS(2205), - [anon_sym_REMOTE] = ACTIONS(2205), - [anon_sym_Return] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_RETURN] = ACTIONS(2205), - [anon_sym_Static] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_STATIC] = ACTIONS(2205), - [anon_sym_Switch] = ACTIONS(2205), - [anon_sym_switch] = ACTIONS(2205), - [anon_sym_SWITCH] = ACTIONS(2205), - [anon_sym_Throw] = ACTIONS(2205), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_THROW] = ACTIONS(2205), - [anon_sym_Try] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_TRY] = ACTIONS(2205), - [anon_sym_Var] = ACTIONS(2205), - [anon_sym_var] = ACTIONS(2205), - [anon_sym_VAR] = ACTIONS(2205), - [anon_sym_While] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_WHILE] = ACTIONS(2205), - [anon_sym_With] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_WITH] = ACTIONS(2205), - [sym_cf_comment] = ACTIONS(2203), - [sym__java_block_open] = ACTIONS(2203), - [sym__static_type_prefix] = ACTIONS(2203), + [aux_sym_number_token1] = ACTIONS(2446), + [aux_sym_number_token2] = ACTIONS(2446), + [anon_sym_This] = ACTIONS(2446), + [anon_sym_this] = ACTIONS(2446), + [anon_sym_THIS] = ACTIONS(2446), + [anon_sym_Super] = ACTIONS(2446), + [anon_sym_super] = ACTIONS(2446), + [anon_sym_SUPER] = ACTIONS(2446), + [anon_sym_True] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2446), + [anon_sym_TRUE] = ACTIONS(2446), + [anon_sym_False] = ACTIONS(2446), + [anon_sym_false] = ACTIONS(2446), + [anon_sym_FALSE] = ACTIONS(2446), + [anon_sym_Null] = ACTIONS(2446), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_Undefined] = ACTIONS(2446), + [anon_sym_undefined] = ACTIONS(2446), + [anon_sym_UNDEFINED] = ACTIONS(2446), + [anon_sym_get] = ACTIONS(2446), + [anon_sym_set] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [sym_hash_empty] = ACTIONS(2449), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_QueryExecute] = ACTIONS(2446), + [anon_sym_queryexecute] = ACTIONS(2446), + [anon_sym_QUERYEXECUTE] = ACTIONS(2446), + [anon_sym_queryExecute] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2449), + [anon_sym_Abstract] = ACTIONS(2446), + [anon_sym_abstract] = ACTIONS(2446), + [anon_sym_ABSTRACT] = ACTIONS(2446), + [anon_sym_Component] = ACTIONS(2446), + [anon_sym_component] = ACTIONS(2446), + [anon_sym_COMPONENT] = ACTIONS(2446), + [anon_sym_Debugger] = ACTIONS(2446), + [anon_sym_debugger] = ACTIONS(2446), + [anon_sym_DEBUGGER] = ACTIONS(2446), + [anon_sym_Final] = ACTIONS(2446), + [anon_sym_final] = ACTIONS(2446), + [anon_sym_FINAL] = ACTIONS(2446), + [anon_sym_Function] = ACTIONS(2446), + [anon_sym_function] = ACTIONS(2446), + [anon_sym_FUNCTION] = ACTIONS(2446), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_Include] = ACTIONS(2446), + [anon_sym_include] = ACTIONS(2446), + [anon_sym_INCLUDE] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [anon_sym_New] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2446), + [anon_sym_NEW] = ACTIONS(2446), + [anon_sym_Package] = ACTIONS(2446), + [anon_sym_package] = ACTIONS(2446), + [anon_sym_PACKAGE] = ACTIONS(2446), + [anon_sym_Private] = ACTIONS(2446), + [anon_sym_private] = ACTIONS(2446), + [anon_sym_PRIVATE] = ACTIONS(2446), + [anon_sym_Public] = ACTIONS(2446), + [anon_sym_public] = ACTIONS(2446), + [anon_sym_PUBLIC] = ACTIONS(2446), + [anon_sym_Remote] = ACTIONS(2446), + [anon_sym_remote] = ACTIONS(2446), + [anon_sym_REMOTE] = ACTIONS(2446), + [anon_sym_Static] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_STATIC] = ACTIONS(2446), + [sym__automatic_semicolon] = ACTIONS(2449), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym_tag_linefeed] = ACTIONS(2449), + [sym__java_block_open] = ACTIONS(2449), + [sym__static_type_prefix] = ACTIONS(2449), }, - [STATE(516)] = { - [sym_identifier] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_Query] = ACTIONS(1652), - [anon_sym_query] = ACTIONS(1652), - [anon_sym_QUERY] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1652), - [anon_sym_TILDE] = ACTIONS(1650), - [aux_sym_unary_operator_token1] = ACTIONS(1652), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1652), - [aux_sym_number_token2] = ACTIONS(1652), - [anon_sym_This] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(1652), - [anon_sym_THIS] = ACTIONS(1652), - [anon_sym_Super] = ACTIONS(1652), - [anon_sym_super] = ACTIONS(1652), - [anon_sym_SUPER] = ACTIONS(1652), - [anon_sym_True] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_TRUE] = ACTIONS(1652), - [anon_sym_False] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_FALSE] = ACTIONS(1652), - [anon_sym_Null] = ACTIONS(1652), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_NULL] = ACTIONS(1652), - [anon_sym_Undefined] = ACTIONS(1652), - [anon_sym_undefined] = ACTIONS(1652), - [anon_sym_UNDEFINED] = ACTIONS(1652), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(1652), - [sym_hash_empty] = ACTIONS(1650), - [anon_sym_export] = ACTIONS(1652), - [anon_sym_QueryExecute] = ACTIONS(1652), - [anon_sym_queryexecute] = ACTIONS(1652), - [anon_sym_QUERYEXECUTE] = ACTIONS(1652), - [anon_sym_queryExecute] = ACTIONS(1652), - [anon_sym_BQUOTE] = ACTIONS(1650), - [anon_sym_Abstract] = ACTIONS(1652), - [anon_sym_abstract] = ACTIONS(1652), - [anon_sym_ABSTRACT] = ACTIONS(1652), - [anon_sym_Component] = ACTIONS(1652), - [anon_sym_component] = ACTIONS(1652), - [anon_sym_COMPONENT] = ACTIONS(1652), - [anon_sym_Debugger] = ACTIONS(1652), - [anon_sym_debugger] = ACTIONS(1652), - [anon_sym_DEBUGGER] = ACTIONS(1652), - [anon_sym_Final] = ACTIONS(1652), - [anon_sym_final] = ACTIONS(1652), - [anon_sym_FINAL] = ACTIONS(1652), - [anon_sym_Function] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(1652), - [anon_sym_FUNCTION] = ACTIONS(1652), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_Include] = ACTIONS(1652), - [anon_sym_include] = ACTIONS(1652), - [anon_sym_INCLUDE] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [anon_sym_New] = ACTIONS(1652), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_NEW] = ACTIONS(1652), - [anon_sym_Package] = ACTIONS(1652), - [anon_sym_package] = ACTIONS(1652), - [anon_sym_PACKAGE] = ACTIONS(1652), - [anon_sym_Private] = ACTIONS(1652), - [anon_sym_private] = ACTIONS(1652), - [anon_sym_PRIVATE] = ACTIONS(1652), - [anon_sym_Public] = ACTIONS(1652), - [anon_sym_public] = ACTIONS(1652), - [anon_sym_PUBLIC] = ACTIONS(1652), - [anon_sym_Remote] = ACTIONS(1652), - [anon_sym_remote] = ACTIONS(1652), - [anon_sym_REMOTE] = ACTIONS(1652), - [anon_sym_Static] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_STATIC] = ACTIONS(1652), - [sym__automatic_semicolon] = ACTIONS(1650), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym_tag_linefeed] = ACTIONS(1650), - [sym__java_block_open] = ACTIONS(1650), - [sym__static_type_prefix] = ACTIONS(1650), + [STATE(493)] = { + [sym_identifier] = ACTIONS(2452), + [anon_sym_DOT] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_COMMA] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_Query] = ACTIONS(2452), + [anon_sym_query] = ACTIONS(2452), + [anon_sym_QUERY] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2452), + [sym_optional_chain] = ACTIONS(2454), + [sym_static_chain] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_BSLASH] = ACTIONS(2452), + [anon_sym_STAR_STAR] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2454), + [anon_sym_LT_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2454), + [aux_sym_binary_expression_token1] = ACTIONS(2454), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [aux_sym_binary_expression_token2] = ACTIONS(2452), + [aux_sym_binary_expression_token3] = ACTIONS(2452), + [aux_sym_binary_expression_token4] = ACTIONS(2454), + [aux_sym_binary_expression_token5] = ACTIONS(2454), + [aux_sym_binary_expression_token6] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2454), + [aux_sym_unary_operator_token1] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2452), + [aux_sym_number_token2] = ACTIONS(2452), + [anon_sym_This] = ACTIONS(2452), + [anon_sym_this] = ACTIONS(2452), + [anon_sym_THIS] = ACTIONS(2452), + [anon_sym_Super] = ACTIONS(2452), + [anon_sym_super] = ACTIONS(2452), + [anon_sym_SUPER] = ACTIONS(2452), + [anon_sym_True] = ACTIONS(2452), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_TRUE] = ACTIONS(2452), + [anon_sym_False] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [anon_sym_FALSE] = ACTIONS(2452), + [anon_sym_Null] = ACTIONS(2452), + [anon_sym_null] = ACTIONS(2452), + [anon_sym_NULL] = ACTIONS(2452), + [anon_sym_Undefined] = ACTIONS(2452), + [anon_sym_undefined] = ACTIONS(2452), + [anon_sym_UNDEFINED] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(2452), + [sym_hash_empty] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_QueryExecute] = ACTIONS(2452), + [anon_sym_queryexecute] = ACTIONS(2452), + [anon_sym_QUERYEXECUTE] = ACTIONS(2452), + [anon_sym_queryExecute] = ACTIONS(2452), + [anon_sym_BQUOTE] = ACTIONS(2454), + [anon_sym_Abstract] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_ABSTRACT] = ACTIONS(2452), + [anon_sym_Component] = ACTIONS(2452), + [anon_sym_component] = ACTIONS(2452), + [anon_sym_COMPONENT] = ACTIONS(2452), + [anon_sym_Debugger] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_DEBUGGER] = ACTIONS(2452), + [anon_sym_Final] = ACTIONS(2452), + [anon_sym_final] = ACTIONS(2452), + [anon_sym_FINAL] = ACTIONS(2452), + [anon_sym_Function] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_FUNCTION] = ACTIONS(2452), + [anon_sym_In] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(2452), + [anon_sym_IN] = ACTIONS(2452), + [anon_sym_Include] = ACTIONS(2452), + [anon_sym_include] = ACTIONS(2452), + [anon_sym_INCLUDE] = ACTIONS(2452), + [anon_sym_InstanceOf] = ACTIONS(2452), + [anon_sym_instanceof] = ACTIONS(2452), + [anon_sym_INSTANCEOF] = ACTIONS(2452), + [anon_sym_instanceOf] = ACTIONS(2452), + [anon_sym_New] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_NEW] = ACTIONS(2452), + [anon_sym_Package] = ACTIONS(2452), + [anon_sym_package] = ACTIONS(2452), + [anon_sym_PACKAGE] = ACTIONS(2452), + [anon_sym_Private] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_PRIVATE] = ACTIONS(2452), + [anon_sym_Public] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_PUBLIC] = ACTIONS(2452), + [anon_sym_Remote] = ACTIONS(2452), + [anon_sym_remote] = ACTIONS(2452), + [anon_sym_REMOTE] = ACTIONS(2452), + [anon_sym_Static] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_STATIC] = ACTIONS(2452), + [sym__automatic_semicolon] = ACTIONS(2454), + [sym__ternary_qmark] = ACTIONS(2454), + [sym__elvis_operator] = ACTIONS(2454), + [sym_logical_or] = ACTIONS(2454), + [sym_tag_linefeed] = ACTIONS(2454), + [sym__java_block_open] = ACTIONS(2454), + [sym__static_type_prefix] = ACTIONS(2454), }, - [STATE(517)] = { + [STATE(494)] = { + [sym_identifier] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_Query] = ACTIONS(2456), + [anon_sym_query] = ACTIONS(2456), + [anon_sym_QUERY] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2456), + [sym_optional_chain] = ACTIONS(2458), + [sym_static_chain] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_BSLASH] = ACTIONS(2456), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2456), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_LT_GT] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2456), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [aux_sym_binary_expression_token1] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [aux_sym_binary_expression_token2] = ACTIONS(2456), + [aux_sym_binary_expression_token3] = ACTIONS(2456), + [aux_sym_binary_expression_token4] = ACTIONS(2458), + [aux_sym_binary_expression_token5] = ACTIONS(2458), + [aux_sym_binary_expression_token6] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2458), + [aux_sym_unary_operator_token1] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2456), + [aux_sym_number_token2] = ACTIONS(2456), + [anon_sym_This] = ACTIONS(2456), + [anon_sym_this] = ACTIONS(2456), + [anon_sym_THIS] = ACTIONS(2456), + [anon_sym_Super] = ACTIONS(2456), + [anon_sym_super] = ACTIONS(2456), + [anon_sym_SUPER] = ACTIONS(2456), + [anon_sym_True] = ACTIONS(2456), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_TRUE] = ACTIONS(2456), + [anon_sym_False] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [anon_sym_FALSE] = ACTIONS(2456), + [anon_sym_Null] = ACTIONS(2456), + [anon_sym_null] = ACTIONS(2456), + [anon_sym_NULL] = ACTIONS(2456), + [anon_sym_Undefined] = ACTIONS(2456), + [anon_sym_undefined] = ACTIONS(2456), + [anon_sym_UNDEFINED] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(2456), + [sym_hash_empty] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_QueryExecute] = ACTIONS(2456), + [anon_sym_queryexecute] = ACTIONS(2456), + [anon_sym_QUERYEXECUTE] = ACTIONS(2456), + [anon_sym_queryExecute] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_Abstract] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_ABSTRACT] = ACTIONS(2456), + [anon_sym_Component] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_COMPONENT] = ACTIONS(2456), + [anon_sym_Debugger] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_DEBUGGER] = ACTIONS(2456), + [anon_sym_Final] = ACTIONS(2456), + [anon_sym_final] = ACTIONS(2456), + [anon_sym_FINAL] = ACTIONS(2456), + [anon_sym_Function] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_FUNCTION] = ACTIONS(2456), + [anon_sym_In] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2456), + [anon_sym_IN] = ACTIONS(2456), + [anon_sym_Include] = ACTIONS(2456), + [anon_sym_include] = ACTIONS(2456), + [anon_sym_INCLUDE] = ACTIONS(2456), + [anon_sym_InstanceOf] = ACTIONS(2456), + [anon_sym_instanceof] = ACTIONS(2456), + [anon_sym_INSTANCEOF] = ACTIONS(2456), + [anon_sym_instanceOf] = ACTIONS(2456), + [anon_sym_New] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_NEW] = ACTIONS(2456), + [anon_sym_Package] = ACTIONS(2456), + [anon_sym_package] = ACTIONS(2456), + [anon_sym_PACKAGE] = ACTIONS(2456), + [anon_sym_Private] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_PRIVATE] = ACTIONS(2456), + [anon_sym_Public] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_PUBLIC] = ACTIONS(2456), + [anon_sym_Remote] = ACTIONS(2456), + [anon_sym_remote] = ACTIONS(2456), + [anon_sym_REMOTE] = ACTIONS(2456), + [anon_sym_Static] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_STATIC] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2458), + [sym__ternary_qmark] = ACTIONS(2458), + [sym__elvis_operator] = ACTIONS(2458), + [sym_logical_or] = ACTIONS(2458), + [sym_tag_linefeed] = ACTIONS(2458), + [sym__java_block_open] = ACTIONS(2458), + [sym__static_type_prefix] = ACTIONS(2458), + }, + [STATE(495)] = { + [sym_identifier] = ACTIONS(2460), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_Query] = ACTIONS(2460), + [anon_sym_query] = ACTIONS(2460), + [anon_sym_QUERY] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2460), + [sym_optional_chain] = ACTIONS(2462), + [sym_static_chain] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_BSLASH] = ACTIONS(2460), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_LT_GT] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [aux_sym_binary_expression_token1] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [aux_sym_binary_expression_token2] = ACTIONS(2460), + [aux_sym_binary_expression_token3] = ACTIONS(2460), + [aux_sym_binary_expression_token4] = ACTIONS(2462), + [aux_sym_binary_expression_token5] = ACTIONS(2462), + [aux_sym_binary_expression_token6] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2462), + [aux_sym_unary_operator_token1] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2460), + [aux_sym_number_token2] = ACTIONS(2460), + [anon_sym_This] = ACTIONS(2460), + [anon_sym_this] = ACTIONS(2460), + [anon_sym_THIS] = ACTIONS(2460), + [anon_sym_Super] = ACTIONS(2460), + [anon_sym_super] = ACTIONS(2460), + [anon_sym_SUPER] = ACTIONS(2460), + [anon_sym_True] = ACTIONS(2460), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_TRUE] = ACTIONS(2460), + [anon_sym_False] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [anon_sym_FALSE] = ACTIONS(2460), + [anon_sym_Null] = ACTIONS(2460), + [anon_sym_null] = ACTIONS(2460), + [anon_sym_NULL] = ACTIONS(2460), + [anon_sym_Undefined] = ACTIONS(2460), + [anon_sym_undefined] = ACTIONS(2460), + [anon_sym_UNDEFINED] = ACTIONS(2460), + [anon_sym_get] = ACTIONS(2460), + [anon_sym_set] = ACTIONS(2460), + [anon_sym_POUND] = ACTIONS(2460), + [sym_hash_empty] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2460), + [anon_sym_QueryExecute] = ACTIONS(2460), + [anon_sym_queryexecute] = ACTIONS(2460), + [anon_sym_QUERYEXECUTE] = ACTIONS(2460), + [anon_sym_queryExecute] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2462), + [anon_sym_Abstract] = ACTIONS(2460), + [anon_sym_abstract] = ACTIONS(2460), + [anon_sym_ABSTRACT] = ACTIONS(2460), + [anon_sym_Component] = ACTIONS(2460), + [anon_sym_component] = ACTIONS(2460), + [anon_sym_COMPONENT] = ACTIONS(2460), + [anon_sym_Debugger] = ACTIONS(2460), + [anon_sym_debugger] = ACTIONS(2460), + [anon_sym_DEBUGGER] = ACTIONS(2460), + [anon_sym_Final] = ACTIONS(2460), + [anon_sym_final] = ACTIONS(2460), + [anon_sym_FINAL] = ACTIONS(2460), + [anon_sym_Function] = ACTIONS(2460), + [anon_sym_function] = ACTIONS(2460), + [anon_sym_FUNCTION] = ACTIONS(2460), + [anon_sym_In] = ACTIONS(2460), + [anon_sym_in] = ACTIONS(2460), + [anon_sym_IN] = ACTIONS(2460), + [anon_sym_Include] = ACTIONS(2460), + [anon_sym_include] = ACTIONS(2460), + [anon_sym_INCLUDE] = ACTIONS(2460), + [anon_sym_InstanceOf] = ACTIONS(2460), + [anon_sym_instanceof] = ACTIONS(2460), + [anon_sym_INSTANCEOF] = ACTIONS(2460), + [anon_sym_instanceOf] = ACTIONS(2460), + [anon_sym_New] = ACTIONS(2460), + [anon_sym_new] = ACTIONS(2460), + [anon_sym_NEW] = ACTIONS(2460), + [anon_sym_Package] = ACTIONS(2460), + [anon_sym_package] = ACTIONS(2460), + [anon_sym_PACKAGE] = ACTIONS(2460), + [anon_sym_Private] = ACTIONS(2460), + [anon_sym_private] = ACTIONS(2460), + [anon_sym_PRIVATE] = ACTIONS(2460), + [anon_sym_Public] = ACTIONS(2460), + [anon_sym_public] = ACTIONS(2460), + [anon_sym_PUBLIC] = ACTIONS(2460), + [anon_sym_Remote] = ACTIONS(2460), + [anon_sym_remote] = ACTIONS(2460), + [anon_sym_REMOTE] = ACTIONS(2460), + [anon_sym_Static] = ACTIONS(2460), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_STATIC] = ACTIONS(2460), + [sym__automatic_semicolon] = ACTIONS(2462), + [sym__ternary_qmark] = ACTIONS(2462), + [sym__elvis_operator] = ACTIONS(2462), + [sym_logical_or] = ACTIONS(2462), + [sym_tag_linefeed] = ACTIONS(2462), + [sym__java_block_open] = ACTIONS(2462), + [sym__static_type_prefix] = ACTIONS(2462), + }, + [STATE(496)] = { + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2464), + [anon_sym_query] = ACTIONS(2464), + [anon_sym_QUERY] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2466), + [aux_sym_unary_operator_token1] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2464), + [aux_sym_number_token2] = ACTIONS(2464), + [anon_sym_This] = ACTIONS(2464), + [anon_sym_this] = ACTIONS(2464), + [anon_sym_THIS] = ACTIONS(2464), + [anon_sym_Super] = ACTIONS(2464), + [anon_sym_super] = ACTIONS(2464), + [anon_sym_SUPER] = ACTIONS(2464), + [anon_sym_True] = ACTIONS(2464), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_TRUE] = ACTIONS(2464), + [anon_sym_False] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_FALSE] = ACTIONS(2464), + [anon_sym_Null] = ACTIONS(2464), + [anon_sym_null] = ACTIONS(2464), + [anon_sym_NULL] = ACTIONS(2464), + [anon_sym_Undefined] = ACTIONS(2464), + [anon_sym_undefined] = ACTIONS(2464), + [anon_sym_UNDEFINED] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2464), + [sym_hash_empty] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_QueryExecute] = ACTIONS(2464), + [anon_sym_queryexecute] = ACTIONS(2464), + [anon_sym_QUERYEXECUTE] = ACTIONS(2464), + [anon_sym_queryExecute] = ACTIONS(2464), + [anon_sym_BQUOTE] = ACTIONS(2466), + [anon_sym_Abstract] = ACTIONS(2464), + [anon_sym_abstract] = ACTIONS(2464), + [anon_sym_ABSTRACT] = ACTIONS(2464), + [anon_sym_Component] = ACTIONS(2464), + [anon_sym_component] = ACTIONS(2464), + [anon_sym_COMPONENT] = ACTIONS(2464), + [anon_sym_Debugger] = ACTIONS(2464), + [anon_sym_debugger] = ACTIONS(2464), + [anon_sym_DEBUGGER] = ACTIONS(2464), + [anon_sym_Final] = ACTIONS(2464), + [anon_sym_final] = ACTIONS(2464), + [anon_sym_FINAL] = ACTIONS(2464), + [anon_sym_Function] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2464), + [anon_sym_FUNCTION] = ACTIONS(2464), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2464), + [anon_sym_include] = ACTIONS(2464), + [anon_sym_INCLUDE] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_NEW] = ACTIONS(2464), + [anon_sym_Package] = ACTIONS(2464), + [anon_sym_package] = ACTIONS(2464), + [anon_sym_PACKAGE] = ACTIONS(2464), + [anon_sym_Private] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_PRIVATE] = ACTIONS(2464), + [anon_sym_Public] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_PUBLIC] = ACTIONS(2464), + [anon_sym_Remote] = ACTIONS(2464), + [anon_sym_remote] = ACTIONS(2464), + [anon_sym_REMOTE] = ACTIONS(2464), + [anon_sym_Static] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_STATIC] = ACTIONS(2464), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(2384), + [sym__elvis_operator] = ACTIONS(2386), + [sym_logical_or] = ACTIONS(2358), + [sym_tag_linefeed] = ACTIONS(2466), + [sym__java_block_open] = ACTIONS(2466), + [sym__static_type_prefix] = ACTIONS(2466), + }, + [STATE(497)] = { + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2468), + [anon_sym_query] = ACTIONS(2468), + [anon_sym_QUERY] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2470), + [aux_sym_unary_operator_token1] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2468), + [aux_sym_number_token2] = ACTIONS(2468), + [anon_sym_This] = ACTIONS(2468), + [anon_sym_this] = ACTIONS(2468), + [anon_sym_THIS] = ACTIONS(2468), + [anon_sym_Super] = ACTIONS(2468), + [anon_sym_super] = ACTIONS(2468), + [anon_sym_SUPER] = ACTIONS(2468), + [anon_sym_True] = ACTIONS(2468), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_TRUE] = ACTIONS(2468), + [anon_sym_False] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_FALSE] = ACTIONS(2468), + [anon_sym_Null] = ACTIONS(2468), + [anon_sym_null] = ACTIONS(2468), + [anon_sym_NULL] = ACTIONS(2468), + [anon_sym_Undefined] = ACTIONS(2468), + [anon_sym_undefined] = ACTIONS(2468), + [anon_sym_UNDEFINED] = ACTIONS(2468), + [anon_sym_get] = ACTIONS(2468), + [anon_sym_set] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(2468), + [sym_hash_empty] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_QueryExecute] = ACTIONS(2468), + [anon_sym_queryexecute] = ACTIONS(2468), + [anon_sym_QUERYEXECUTE] = ACTIONS(2468), + [anon_sym_queryExecute] = ACTIONS(2468), + [anon_sym_BQUOTE] = ACTIONS(2470), + [anon_sym_Abstract] = ACTIONS(2468), + [anon_sym_abstract] = ACTIONS(2468), + [anon_sym_ABSTRACT] = ACTIONS(2468), + [anon_sym_Component] = ACTIONS(2468), + [anon_sym_component] = ACTIONS(2468), + [anon_sym_COMPONENT] = ACTIONS(2468), + [anon_sym_Debugger] = ACTIONS(2468), + [anon_sym_debugger] = ACTIONS(2468), + [anon_sym_DEBUGGER] = ACTIONS(2468), + [anon_sym_Final] = ACTIONS(2468), + [anon_sym_final] = ACTIONS(2468), + [anon_sym_FINAL] = ACTIONS(2468), + [anon_sym_Function] = ACTIONS(2468), + [anon_sym_function] = ACTIONS(2468), + [anon_sym_FUNCTION] = ACTIONS(2468), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2468), + [anon_sym_include] = ACTIONS(2468), + [anon_sym_INCLUDE] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2468), + [anon_sym_new] = ACTIONS(2468), + [anon_sym_NEW] = ACTIONS(2468), + [anon_sym_Package] = ACTIONS(2468), + [anon_sym_package] = ACTIONS(2468), + [anon_sym_PACKAGE] = ACTIONS(2468), + [anon_sym_Private] = ACTIONS(2468), + [anon_sym_private] = ACTIONS(2468), + [anon_sym_PRIVATE] = ACTIONS(2468), + [anon_sym_Public] = ACTIONS(2468), + [anon_sym_public] = ACTIONS(2468), + [anon_sym_PUBLIC] = ACTIONS(2468), + [anon_sym_Remote] = ACTIONS(2468), + [anon_sym_remote] = ACTIONS(2468), + [anon_sym_REMOTE] = ACTIONS(2468), + [anon_sym_Static] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_STATIC] = ACTIONS(2468), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(2384), + [sym__elvis_operator] = ACTIONS(2386), + [sym_logical_or] = ACTIONS(2358), + [sym_tag_linefeed] = ACTIONS(2470), + [sym__java_block_open] = ACTIONS(2470), + [sym__static_type_prefix] = ACTIONS(2470), + }, + [STATE(498)] = { + [sym_identifier] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_Query] = ACTIONS(2472), + [anon_sym_query] = ACTIONS(2472), + [anon_sym_QUERY] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2472), + [sym_optional_chain] = ACTIONS(2474), + [sym_static_chain] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_BSLASH] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), + [anon_sym_LT_GT] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), + [aux_sym_binary_expression_token1] = ACTIONS(2474), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [aux_sym_binary_expression_token2] = ACTIONS(2472), + [aux_sym_binary_expression_token3] = ACTIONS(2472), + [aux_sym_binary_expression_token4] = ACTIONS(2474), + [aux_sym_binary_expression_token5] = ACTIONS(2474), + [aux_sym_binary_expression_token6] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2474), + [aux_sym_unary_operator_token1] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2472), + [aux_sym_number_token2] = ACTIONS(2472), + [anon_sym_This] = ACTIONS(2472), + [anon_sym_this] = ACTIONS(2472), + [anon_sym_THIS] = ACTIONS(2472), + [anon_sym_Super] = ACTIONS(2472), + [anon_sym_super] = ACTIONS(2472), + [anon_sym_SUPER] = ACTIONS(2472), + [anon_sym_True] = ACTIONS(2472), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_TRUE] = ACTIONS(2472), + [anon_sym_False] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_FALSE] = ACTIONS(2472), + [anon_sym_Null] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2472), + [anon_sym_NULL] = ACTIONS(2472), + [anon_sym_Undefined] = ACTIONS(2472), + [anon_sym_undefined] = ACTIONS(2472), + [anon_sym_UNDEFINED] = ACTIONS(2472), + [anon_sym_get] = ACTIONS(2472), + [anon_sym_set] = ACTIONS(2472), + [anon_sym_POUND] = ACTIONS(2472), + [sym_hash_empty] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2472), + [anon_sym_QueryExecute] = ACTIONS(2472), + [anon_sym_queryexecute] = ACTIONS(2472), + [anon_sym_QUERYEXECUTE] = ACTIONS(2472), + [anon_sym_queryExecute] = ACTIONS(2472), + [anon_sym_BQUOTE] = ACTIONS(2474), + [anon_sym_Abstract] = ACTIONS(2472), + [anon_sym_abstract] = ACTIONS(2472), + [anon_sym_ABSTRACT] = ACTIONS(2472), + [anon_sym_Component] = ACTIONS(2472), + [anon_sym_component] = ACTIONS(2472), + [anon_sym_COMPONENT] = ACTIONS(2472), + [anon_sym_Debugger] = ACTIONS(2472), + [anon_sym_debugger] = ACTIONS(2472), + [anon_sym_DEBUGGER] = ACTIONS(2472), + [anon_sym_Final] = ACTIONS(2472), + [anon_sym_final] = ACTIONS(2472), + [anon_sym_FINAL] = ACTIONS(2472), + [anon_sym_Function] = ACTIONS(2472), + [anon_sym_function] = ACTIONS(2472), + [anon_sym_FUNCTION] = ACTIONS(2472), + [anon_sym_In] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_IN] = ACTIONS(2472), + [anon_sym_Include] = ACTIONS(2472), + [anon_sym_include] = ACTIONS(2472), + [anon_sym_INCLUDE] = ACTIONS(2472), + [anon_sym_InstanceOf] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_INSTANCEOF] = ACTIONS(2472), + [anon_sym_instanceOf] = ACTIONS(2472), + [anon_sym_New] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2472), + [anon_sym_NEW] = ACTIONS(2472), + [anon_sym_Package] = ACTIONS(2472), + [anon_sym_package] = ACTIONS(2472), + [anon_sym_PACKAGE] = ACTIONS(2472), + [anon_sym_Private] = ACTIONS(2472), + [anon_sym_private] = ACTIONS(2472), + [anon_sym_PRIVATE] = ACTIONS(2472), + [anon_sym_Public] = ACTIONS(2472), + [anon_sym_public] = ACTIONS(2472), + [anon_sym_PUBLIC] = ACTIONS(2472), + [anon_sym_Remote] = ACTIONS(2472), + [anon_sym_remote] = ACTIONS(2472), + [anon_sym_REMOTE] = ACTIONS(2472), + [anon_sym_Static] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2472), + [anon_sym_STATIC] = ACTIONS(2472), + [sym__automatic_semicolon] = ACTIONS(2474), + [sym__ternary_qmark] = ACTIONS(2474), + [sym__elvis_operator] = ACTIONS(2474), + [sym_logical_or] = ACTIONS(2474), + [sym_tag_linefeed] = ACTIONS(2474), + [sym__java_block_open] = ACTIONS(2474), + [sym__static_type_prefix] = ACTIONS(2474), + }, + [STATE(499)] = { + [sym_identifier] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2476), + [anon_sym_query] = ACTIONS(2476), + [anon_sym_QUERY] = ACTIONS(2476), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2478), + [aux_sym_unary_operator_token1] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2476), + [aux_sym_number_token2] = ACTIONS(2476), + [anon_sym_This] = ACTIONS(2476), + [anon_sym_this] = ACTIONS(2476), + [anon_sym_THIS] = ACTIONS(2476), + [anon_sym_Super] = ACTIONS(2476), + [anon_sym_super] = ACTIONS(2476), + [anon_sym_SUPER] = ACTIONS(2476), + [anon_sym_True] = ACTIONS(2476), + [anon_sym_true] = ACTIONS(2476), + [anon_sym_TRUE] = ACTIONS(2476), + [anon_sym_False] = ACTIONS(2476), + [anon_sym_false] = ACTIONS(2476), + [anon_sym_FALSE] = ACTIONS(2476), + [anon_sym_Null] = ACTIONS(2476), + [anon_sym_null] = ACTIONS(2476), + [anon_sym_NULL] = ACTIONS(2476), + [anon_sym_Undefined] = ACTIONS(2476), + [anon_sym_undefined] = ACTIONS(2476), + [anon_sym_UNDEFINED] = ACTIONS(2476), + [anon_sym_get] = ACTIONS(2476), + [anon_sym_set] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2476), + [sym_hash_empty] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2476), + [anon_sym_QueryExecute] = ACTIONS(2476), + [anon_sym_queryexecute] = ACTIONS(2476), + [anon_sym_QUERYEXECUTE] = ACTIONS(2476), + [anon_sym_queryExecute] = ACTIONS(2476), + [anon_sym_BQUOTE] = ACTIONS(2478), + [anon_sym_Abstract] = ACTIONS(2476), + [anon_sym_abstract] = ACTIONS(2476), + [anon_sym_ABSTRACT] = ACTIONS(2476), + [anon_sym_Component] = ACTIONS(2476), + [anon_sym_component] = ACTIONS(2476), + [anon_sym_COMPONENT] = ACTIONS(2476), + [anon_sym_Debugger] = ACTIONS(2476), + [anon_sym_debugger] = ACTIONS(2476), + [anon_sym_DEBUGGER] = ACTIONS(2476), + [anon_sym_Final] = ACTIONS(2476), + [anon_sym_final] = ACTIONS(2476), + [anon_sym_FINAL] = ACTIONS(2476), + [anon_sym_Function] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2476), + [anon_sym_FUNCTION] = ACTIONS(2476), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2476), + [anon_sym_include] = ACTIONS(2476), + [anon_sym_INCLUDE] = ACTIONS(2476), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_NEW] = ACTIONS(2476), + [anon_sym_Package] = ACTIONS(2476), + [anon_sym_package] = ACTIONS(2476), + [anon_sym_PACKAGE] = ACTIONS(2476), + [anon_sym_Private] = ACTIONS(2476), + [anon_sym_private] = ACTIONS(2476), + [anon_sym_PRIVATE] = ACTIONS(2476), + [anon_sym_Public] = ACTIONS(2476), + [anon_sym_public] = ACTIONS(2476), + [anon_sym_PUBLIC] = ACTIONS(2476), + [anon_sym_Remote] = ACTIONS(2476), + [anon_sym_remote] = ACTIONS(2476), + [anon_sym_REMOTE] = ACTIONS(2476), + [anon_sym_Static] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_STATIC] = ACTIONS(2476), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(2384), + [sym__elvis_operator] = ACTIONS(2386), + [sym_logical_or] = ACTIONS(2358), + [sym_tag_linefeed] = ACTIONS(2478), + [sym__java_block_open] = ACTIONS(2478), + [sym__static_type_prefix] = ACTIONS(2478), + }, + [STATE(500)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1590), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(2480), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_tag_linefeed] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(501)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), + }, + [STATE(502)] = { + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_COMMA] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1085), + [anon_sym_instanceof] = ACTIONS(1085), + [anon_sym_INSTANCEOF] = ACTIONS(1085), + [anon_sym_instanceOf] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(2486), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), + [sym_tag_linefeed] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(503)] = { [sym_identifier] = ACTIONS(2482), - [anon_sym_DOT] = ACTIONS(2484), + [anon_sym_DOT] = ACTIONS(2258), [anon_sym_STAR] = ACTIONS(2482), [anon_sym_COMMA] = ACTIONS(2484), [anon_sym_LBRACE] = ACTIONS(2484), [anon_sym_LPAREN] = ACTIONS(2484), [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_let] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2264), [anon_sym_Query] = ACTIONS(2482), [anon_sym_query] = ACTIONS(2482), [anon_sym_QUERY] = ACTIONS(2482), @@ -124090,8 +122097,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), - [sym_optional_chain] = ACTIONS(2484), - [sym_static_chain] = ACTIONS(2484), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), [anon_sym_AMP_AMP] = ACTIONS(2484), [anon_sym_PIPE_PIPE] = ACTIONS(2484), [anon_sym_GT_GT] = ACTIONS(2482), @@ -124105,7 +122112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(2482), [anon_sym_PERCENT] = ACTIONS(2484), [anon_sym_BSLASH] = ACTIONS(2482), - [anon_sym_STAR_STAR] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(2374), [anon_sym_LT] = ACTIONS(2482), [anon_sym_LT_EQ] = ACTIONS(2484), [anon_sym_EQ_EQ] = ACTIONS(2482), @@ -124125,8 +122132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(2482), [anon_sym_TILDE] = ACTIONS(2484), [aux_sym_unary_operator_token1] = ACTIONS(2482), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), [anon_sym_DQUOTE] = ACTIONS(2484), [anon_sym_SQUOTE] = ACTIONS(2484), [sym_comment] = ACTIONS(129), @@ -124211,460 +122218,1517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2484), [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(518)] = { - [sym_identifier] = ACTIONS(2486), - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_Query] = ACTIONS(2486), - [anon_sym_query] = ACTIONS(2486), - [anon_sym_QUERY] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2486), - [sym_optional_chain] = ACTIONS(2488), - [sym_static_chain] = ACTIONS(2488), - [anon_sym_AMP_AMP] = ACTIONS(2488), - [anon_sym_PIPE_PIPE] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2486), - [anon_sym_GT_GT_GT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_BSLASH] = ACTIONS(2486), - [anon_sym_STAR_STAR] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2488), - [anon_sym_LT_GT] = ACTIONS(2488), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2488), - [aux_sym_binary_expression_token1] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2486), - [aux_sym_binary_expression_token2] = ACTIONS(2486), - [aux_sym_binary_expression_token3] = ACTIONS(2486), - [aux_sym_binary_expression_token4] = ACTIONS(2488), - [aux_sym_binary_expression_token5] = ACTIONS(2488), - [aux_sym_binary_expression_token6] = ACTIONS(2488), - [anon_sym_QMARK_QMARK] = ACTIONS(2488), - [anon_sym_BANG] = ACTIONS(2486), - [anon_sym_TILDE] = ACTIONS(2488), - [aux_sym_unary_operator_token1] = ACTIONS(2486), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2488), - [anon_sym_DQUOTE] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2488), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2486), - [aux_sym_number_token2] = ACTIONS(2486), - [anon_sym_This] = ACTIONS(2486), - [anon_sym_this] = ACTIONS(2486), - [anon_sym_THIS] = ACTIONS(2486), - [anon_sym_Super] = ACTIONS(2486), - [anon_sym_super] = ACTIONS(2486), - [anon_sym_SUPER] = ACTIONS(2486), - [anon_sym_True] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2486), - [anon_sym_TRUE] = ACTIONS(2486), - [anon_sym_False] = ACTIONS(2486), - [anon_sym_false] = ACTIONS(2486), - [anon_sym_FALSE] = ACTIONS(2486), - [anon_sym_Null] = ACTIONS(2486), - [anon_sym_null] = ACTIONS(2486), - [anon_sym_NULL] = ACTIONS(2486), - [anon_sym_Undefined] = ACTIONS(2486), - [anon_sym_undefined] = ACTIONS(2486), - [anon_sym_UNDEFINED] = ACTIONS(2486), - [anon_sym_get] = ACTIONS(2486), - [anon_sym_set] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(2486), - [sym_hash_empty] = ACTIONS(2488), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_QueryExecute] = ACTIONS(2486), - [anon_sym_queryexecute] = ACTIONS(2486), - [anon_sym_QUERYEXECUTE] = ACTIONS(2486), - [anon_sym_queryExecute] = ACTIONS(2486), - [anon_sym_BQUOTE] = ACTIONS(2488), - [anon_sym_Abstract] = ACTIONS(2486), - [anon_sym_abstract] = ACTIONS(2486), - [anon_sym_ABSTRACT] = ACTIONS(2486), - [anon_sym_Component] = ACTIONS(2486), - [anon_sym_component] = ACTIONS(2486), - [anon_sym_COMPONENT] = ACTIONS(2486), - [anon_sym_Debugger] = ACTIONS(2486), - [anon_sym_debugger] = ACTIONS(2486), - [anon_sym_DEBUGGER] = ACTIONS(2486), - [anon_sym_Final] = ACTIONS(2486), - [anon_sym_final] = ACTIONS(2486), - [anon_sym_FINAL] = ACTIONS(2486), - [anon_sym_Function] = ACTIONS(2486), - [anon_sym_function] = ACTIONS(2486), - [anon_sym_FUNCTION] = ACTIONS(2486), - [anon_sym_In] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_IN] = ACTIONS(2486), - [anon_sym_Include] = ACTIONS(2486), - [anon_sym_include] = ACTIONS(2486), - [anon_sym_INCLUDE] = ACTIONS(2486), - [anon_sym_InstanceOf] = ACTIONS(2486), - [anon_sym_instanceof] = ACTIONS(2486), - [anon_sym_INSTANCEOF] = ACTIONS(2486), - [anon_sym_instanceOf] = ACTIONS(2486), - [anon_sym_New] = ACTIONS(2486), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_NEW] = ACTIONS(2486), - [anon_sym_Package] = ACTIONS(2486), - [anon_sym_package] = ACTIONS(2486), - [anon_sym_PACKAGE] = ACTIONS(2486), - [anon_sym_Private] = ACTIONS(2486), - [anon_sym_private] = ACTIONS(2486), - [anon_sym_PRIVATE] = ACTIONS(2486), - [anon_sym_Public] = ACTIONS(2486), - [anon_sym_public] = ACTIONS(2486), - [anon_sym_PUBLIC] = ACTIONS(2486), - [anon_sym_Remote] = ACTIONS(2486), - [anon_sym_remote] = ACTIONS(2486), - [anon_sym_REMOTE] = ACTIONS(2486), - [anon_sym_Static] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_STATIC] = ACTIONS(2486), - [sym__automatic_semicolon] = ACTIONS(2488), - [sym__ternary_qmark] = ACTIONS(2488), - [sym__elvis_operator] = ACTIONS(2488), - [sym_logical_or] = ACTIONS(2488), - [sym_tag_linefeed] = ACTIONS(2488), - [sym__java_block_open] = ACTIONS(2488), - [sym__static_type_prefix] = ACTIONS(2488), + [STATE(504)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(519)] = { - [sym_identifier] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_COMMA] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_Query] = ACTIONS(2490), - [anon_sym_query] = ACTIONS(2490), - [anon_sym_QUERY] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2490), - [sym_optional_chain] = ACTIONS(2492), - [sym_static_chain] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_GT_GT_GT] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_BSLASH] = ACTIONS(2490), - [anon_sym_STAR_STAR] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2492), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2492), - [anon_sym_LT_GT] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2492), - [aux_sym_binary_expression_token1] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2490), - [aux_sym_binary_expression_token2] = ACTIONS(2490), - [aux_sym_binary_expression_token3] = ACTIONS(2490), - [aux_sym_binary_expression_token4] = ACTIONS(2492), - [aux_sym_binary_expression_token5] = ACTIONS(2492), - [aux_sym_binary_expression_token6] = ACTIONS(2492), - [anon_sym_QMARK_QMARK] = ACTIONS(2492), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2492), - [aux_sym_unary_operator_token1] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2492), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2490), - [aux_sym_number_token2] = ACTIONS(2490), - [anon_sym_This] = ACTIONS(2490), - [anon_sym_this] = ACTIONS(2490), - [anon_sym_THIS] = ACTIONS(2490), - [anon_sym_Super] = ACTIONS(2490), - [anon_sym_super] = ACTIONS(2490), - [anon_sym_SUPER] = ACTIONS(2490), - [anon_sym_True] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2490), - [anon_sym_TRUE] = ACTIONS(2490), - [anon_sym_False] = ACTIONS(2490), - [anon_sym_false] = ACTIONS(2490), - [anon_sym_FALSE] = ACTIONS(2490), - [anon_sym_Null] = ACTIONS(2490), - [anon_sym_null] = ACTIONS(2490), - [anon_sym_NULL] = ACTIONS(2490), - [anon_sym_Undefined] = ACTIONS(2490), - [anon_sym_undefined] = ACTIONS(2490), - [anon_sym_UNDEFINED] = ACTIONS(2490), - [anon_sym_get] = ACTIONS(2490), - [anon_sym_set] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(2490), - [sym_hash_empty] = ACTIONS(2492), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_QueryExecute] = ACTIONS(2490), - [anon_sym_queryexecute] = ACTIONS(2490), - [anon_sym_QUERYEXECUTE] = ACTIONS(2490), - [anon_sym_queryExecute] = ACTIONS(2490), - [anon_sym_BQUOTE] = ACTIONS(2492), - [anon_sym_Abstract] = ACTIONS(2490), - [anon_sym_abstract] = ACTIONS(2490), - [anon_sym_ABSTRACT] = ACTIONS(2490), - [anon_sym_Component] = ACTIONS(2490), - [anon_sym_component] = ACTIONS(2490), - [anon_sym_COMPONENT] = ACTIONS(2490), - [anon_sym_Debugger] = ACTIONS(2490), - [anon_sym_debugger] = ACTIONS(2490), - [anon_sym_DEBUGGER] = ACTIONS(2490), - [anon_sym_Final] = ACTIONS(2490), - [anon_sym_final] = ACTIONS(2490), - [anon_sym_FINAL] = ACTIONS(2490), - [anon_sym_Function] = ACTIONS(2490), - [anon_sym_function] = ACTIONS(2490), - [anon_sym_FUNCTION] = ACTIONS(2490), - [anon_sym_In] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_IN] = ACTIONS(2490), - [anon_sym_Include] = ACTIONS(2490), - [anon_sym_include] = ACTIONS(2490), - [anon_sym_INCLUDE] = ACTIONS(2490), - [anon_sym_InstanceOf] = ACTIONS(2490), - [anon_sym_instanceof] = ACTIONS(2490), - [anon_sym_INSTANCEOF] = ACTIONS(2490), - [anon_sym_instanceOf] = ACTIONS(2490), - [anon_sym_New] = ACTIONS(2490), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_NEW] = ACTIONS(2490), - [anon_sym_Package] = ACTIONS(2490), - [anon_sym_package] = ACTIONS(2490), - [anon_sym_PACKAGE] = ACTIONS(2490), - [anon_sym_Private] = ACTIONS(2490), - [anon_sym_private] = ACTIONS(2490), - [anon_sym_PRIVATE] = ACTIONS(2490), - [anon_sym_Public] = ACTIONS(2490), - [anon_sym_public] = ACTIONS(2490), - [anon_sym_PUBLIC] = ACTIONS(2490), - [anon_sym_Remote] = ACTIONS(2490), - [anon_sym_remote] = ACTIONS(2490), - [anon_sym_REMOTE] = ACTIONS(2490), - [anon_sym_Static] = ACTIONS(2490), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_STATIC] = ACTIONS(2490), - [sym__automatic_semicolon] = ACTIONS(2492), - [sym__ternary_qmark] = ACTIONS(2492), - [sym__elvis_operator] = ACTIONS(2492), - [sym_logical_or] = ACTIONS(2492), - [sym_tag_linefeed] = ACTIONS(2492), - [sym__java_block_open] = ACTIONS(2492), - [sym__static_type_prefix] = ACTIONS(2492), + [STATE(505)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(520)] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_COMMA] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_Query] = ACTIONS(2494), - [anon_sym_query] = ACTIONS(2494), - [anon_sym_QUERY] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2494), - [sym_optional_chain] = ACTIONS(2496), - [sym_static_chain] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_GT_GT_GT] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_BSLASH] = ACTIONS(2494), - [anon_sym_STAR_STAR] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2496), - [anon_sym_LT_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2496), - [aux_sym_binary_expression_token1] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [aux_sym_binary_expression_token2] = ACTIONS(2494), - [aux_sym_binary_expression_token3] = ACTIONS(2494), - [aux_sym_binary_expression_token4] = ACTIONS(2496), - [aux_sym_binary_expression_token5] = ACTIONS(2496), - [aux_sym_binary_expression_token6] = ACTIONS(2496), - [anon_sym_QMARK_QMARK] = ACTIONS(2496), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2496), - [aux_sym_unary_operator_token1] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2496), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2494), - [aux_sym_number_token2] = ACTIONS(2494), - [anon_sym_This] = ACTIONS(2494), - [anon_sym_this] = ACTIONS(2494), - [anon_sym_THIS] = ACTIONS(2494), - [anon_sym_Super] = ACTIONS(2494), - [anon_sym_super] = ACTIONS(2494), - [anon_sym_SUPER] = ACTIONS(2494), - [anon_sym_True] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2494), - [anon_sym_TRUE] = ACTIONS(2494), - [anon_sym_False] = ACTIONS(2494), - [anon_sym_false] = ACTIONS(2494), - [anon_sym_FALSE] = ACTIONS(2494), - [anon_sym_Null] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2494), - [anon_sym_NULL] = ACTIONS(2494), - [anon_sym_Undefined] = ACTIONS(2494), - [anon_sym_undefined] = ACTIONS(2494), - [anon_sym_UNDEFINED] = ACTIONS(2494), - [anon_sym_get] = ACTIONS(2494), - [anon_sym_set] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(2494), - [sym_hash_empty] = ACTIONS(2496), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_QueryExecute] = ACTIONS(2494), - [anon_sym_queryexecute] = ACTIONS(2494), - [anon_sym_QUERYEXECUTE] = ACTIONS(2494), - [anon_sym_queryExecute] = ACTIONS(2494), - [anon_sym_BQUOTE] = ACTIONS(2496), - [anon_sym_Abstract] = ACTIONS(2494), - [anon_sym_abstract] = ACTIONS(2494), - [anon_sym_ABSTRACT] = ACTIONS(2494), - [anon_sym_Component] = ACTIONS(2494), - [anon_sym_component] = ACTIONS(2494), - [anon_sym_COMPONENT] = ACTIONS(2494), - [anon_sym_Debugger] = ACTIONS(2494), - [anon_sym_debugger] = ACTIONS(2494), - [anon_sym_DEBUGGER] = ACTIONS(2494), - [anon_sym_Final] = ACTIONS(2494), - [anon_sym_final] = ACTIONS(2494), - [anon_sym_FINAL] = ACTIONS(2494), - [anon_sym_Function] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2494), - [anon_sym_FUNCTION] = ACTIONS(2494), - [anon_sym_In] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_IN] = ACTIONS(2494), - [anon_sym_Include] = ACTIONS(2494), - [anon_sym_include] = ACTIONS(2494), - [anon_sym_INCLUDE] = ACTIONS(2494), - [anon_sym_InstanceOf] = ACTIONS(2494), - [anon_sym_instanceof] = ACTIONS(2494), - [anon_sym_INSTANCEOF] = ACTIONS(2494), - [anon_sym_instanceOf] = ACTIONS(2494), - [anon_sym_New] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_NEW] = ACTIONS(2494), - [anon_sym_Package] = ACTIONS(2494), - [anon_sym_package] = ACTIONS(2494), - [anon_sym_PACKAGE] = ACTIONS(2494), - [anon_sym_Private] = ACTIONS(2494), - [anon_sym_private] = ACTIONS(2494), - [anon_sym_PRIVATE] = ACTIONS(2494), - [anon_sym_Public] = ACTIONS(2494), - [anon_sym_public] = ACTIONS(2494), - [anon_sym_PUBLIC] = ACTIONS(2494), - [anon_sym_Remote] = ACTIONS(2494), - [anon_sym_remote] = ACTIONS(2494), - [anon_sym_REMOTE] = ACTIONS(2494), - [anon_sym_Static] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_STATIC] = ACTIONS(2494), - [sym__automatic_semicolon] = ACTIONS(2496), - [sym__ternary_qmark] = ACTIONS(2496), - [sym__elvis_operator] = ACTIONS(2496), - [sym_logical_or] = ACTIONS(2496), - [sym_tag_linefeed] = ACTIONS(2496), - [sym__java_block_open] = ACTIONS(2496), - [sym__static_type_prefix] = ACTIONS(2496), + [STATE(506)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(521)] = { + [STATE(507)] = { + [sym_identifier] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_COMMA] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_Query] = ACTIONS(2488), + [anon_sym_query] = ACTIONS(2488), + [anon_sym_QUERY] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2488), + [sym_optional_chain] = ACTIONS(2490), + [sym_static_chain] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_BSLASH] = ACTIONS(2488), + [anon_sym_STAR_STAR] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2490), + [anon_sym_LT_GT] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2490), + [aux_sym_binary_expression_token1] = ACTIONS(2490), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [aux_sym_binary_expression_token2] = ACTIONS(2488), + [aux_sym_binary_expression_token3] = ACTIONS(2488), + [aux_sym_binary_expression_token4] = ACTIONS(2490), + [aux_sym_binary_expression_token5] = ACTIONS(2490), + [aux_sym_binary_expression_token6] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2490), + [aux_sym_unary_operator_token1] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2490), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2488), + [aux_sym_number_token2] = ACTIONS(2488), + [anon_sym_This] = ACTIONS(2488), + [anon_sym_this] = ACTIONS(2488), + [anon_sym_THIS] = ACTIONS(2488), + [anon_sym_Super] = ACTIONS(2488), + [anon_sym_super] = ACTIONS(2488), + [anon_sym_SUPER] = ACTIONS(2488), + [anon_sym_True] = ACTIONS(2488), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_TRUE] = ACTIONS(2488), + [anon_sym_False] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [anon_sym_FALSE] = ACTIONS(2488), + [anon_sym_Null] = ACTIONS(2488), + [anon_sym_null] = ACTIONS(2488), + [anon_sym_NULL] = ACTIONS(2488), + [anon_sym_Undefined] = ACTIONS(2488), + [anon_sym_undefined] = ACTIONS(2488), + [anon_sym_UNDEFINED] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(2488), + [sym_hash_empty] = ACTIONS(2490), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_QueryExecute] = ACTIONS(2488), + [anon_sym_queryexecute] = ACTIONS(2488), + [anon_sym_QUERYEXECUTE] = ACTIONS(2488), + [anon_sym_queryExecute] = ACTIONS(2488), + [anon_sym_BQUOTE] = ACTIONS(2490), + [anon_sym_Abstract] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_ABSTRACT] = ACTIONS(2488), + [anon_sym_Component] = ACTIONS(2488), + [anon_sym_component] = ACTIONS(2488), + [anon_sym_COMPONENT] = ACTIONS(2488), + [anon_sym_Debugger] = ACTIONS(2488), + [anon_sym_debugger] = ACTIONS(2488), + [anon_sym_DEBUGGER] = ACTIONS(2488), + [anon_sym_Final] = ACTIONS(2488), + [anon_sym_final] = ACTIONS(2488), + [anon_sym_FINAL] = ACTIONS(2488), + [anon_sym_Function] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_FUNCTION] = ACTIONS(2488), + [anon_sym_In] = ACTIONS(2488), + [anon_sym_in] = ACTIONS(2488), + [anon_sym_IN] = ACTIONS(2488), + [anon_sym_Include] = ACTIONS(2488), + [anon_sym_include] = ACTIONS(2488), + [anon_sym_INCLUDE] = ACTIONS(2488), + [anon_sym_InstanceOf] = ACTIONS(2488), + [anon_sym_instanceof] = ACTIONS(2488), + [anon_sym_INSTANCEOF] = ACTIONS(2488), + [anon_sym_instanceOf] = ACTIONS(2488), + [anon_sym_New] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_NEW] = ACTIONS(2488), + [anon_sym_Package] = ACTIONS(2488), + [anon_sym_package] = ACTIONS(2488), + [anon_sym_PACKAGE] = ACTIONS(2488), + [anon_sym_Private] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_PRIVATE] = ACTIONS(2488), + [anon_sym_Public] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_PUBLIC] = ACTIONS(2488), + [anon_sym_Remote] = ACTIONS(2488), + [anon_sym_remote] = ACTIONS(2488), + [anon_sym_REMOTE] = ACTIONS(2488), + [anon_sym_Static] = ACTIONS(2488), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_STATIC] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(2490), + [sym__ternary_qmark] = ACTIONS(2490), + [sym__elvis_operator] = ACTIONS(2490), + [sym_logical_or] = ACTIONS(2490), + [sym_tag_linefeed] = ACTIONS(2490), + [sym__java_block_open] = ACTIONS(2490), + [sym__static_type_prefix] = ACTIONS(2490), + }, + [STATE(508)] = { + [sym_identifier] = ACTIONS(2492), + [anon_sym_DOT] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_COMMA] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_Query] = ACTIONS(2492), + [anon_sym_query] = ACTIONS(2492), + [anon_sym_QUERY] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2492), + [sym_optional_chain] = ACTIONS(2494), + [sym_static_chain] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_BSLASH] = ACTIONS(2492), + [anon_sym_STAR_STAR] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2494), + [anon_sym_LT_GT] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2494), + [aux_sym_binary_expression_token1] = ACTIONS(2494), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [aux_sym_binary_expression_token2] = ACTIONS(2492), + [aux_sym_binary_expression_token3] = ACTIONS(2492), + [aux_sym_binary_expression_token4] = ACTIONS(2494), + [aux_sym_binary_expression_token5] = ACTIONS(2494), + [aux_sym_binary_expression_token6] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2494), + [aux_sym_unary_operator_token1] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2494), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2492), + [aux_sym_number_token2] = ACTIONS(2492), + [anon_sym_This] = ACTIONS(2492), + [anon_sym_this] = ACTIONS(2492), + [anon_sym_THIS] = ACTIONS(2492), + [anon_sym_Super] = ACTIONS(2492), + [anon_sym_super] = ACTIONS(2492), + [anon_sym_SUPER] = ACTIONS(2492), + [anon_sym_True] = ACTIONS(2492), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_TRUE] = ACTIONS(2492), + [anon_sym_False] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [anon_sym_FALSE] = ACTIONS(2492), + [anon_sym_Null] = ACTIONS(2492), + [anon_sym_null] = ACTIONS(2492), + [anon_sym_NULL] = ACTIONS(2492), + [anon_sym_Undefined] = ACTIONS(2492), + [anon_sym_undefined] = ACTIONS(2492), + [anon_sym_UNDEFINED] = ACTIONS(2492), + [anon_sym_get] = ACTIONS(2492), + [anon_sym_set] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(2492), + [sym_hash_empty] = ACTIONS(2494), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_QueryExecute] = ACTIONS(2492), + [anon_sym_queryexecute] = ACTIONS(2492), + [anon_sym_QUERYEXECUTE] = ACTIONS(2492), + [anon_sym_queryExecute] = ACTIONS(2492), + [anon_sym_BQUOTE] = ACTIONS(2494), + [anon_sym_Abstract] = ACTIONS(2492), + [anon_sym_abstract] = ACTIONS(2492), + [anon_sym_ABSTRACT] = ACTIONS(2492), + [anon_sym_Component] = ACTIONS(2492), + [anon_sym_component] = ACTIONS(2492), + [anon_sym_COMPONENT] = ACTIONS(2492), + [anon_sym_Debugger] = ACTIONS(2492), + [anon_sym_debugger] = ACTIONS(2492), + [anon_sym_DEBUGGER] = ACTIONS(2492), + [anon_sym_Final] = ACTIONS(2492), + [anon_sym_final] = ACTIONS(2492), + [anon_sym_FINAL] = ACTIONS(2492), + [anon_sym_Function] = ACTIONS(2492), + [anon_sym_function] = ACTIONS(2492), + [anon_sym_FUNCTION] = ACTIONS(2492), + [anon_sym_In] = ACTIONS(2492), + [anon_sym_in] = ACTIONS(2492), + [anon_sym_IN] = ACTIONS(2492), + [anon_sym_Include] = ACTIONS(2492), + [anon_sym_include] = ACTIONS(2492), + [anon_sym_INCLUDE] = ACTIONS(2492), + [anon_sym_InstanceOf] = ACTIONS(2492), + [anon_sym_instanceof] = ACTIONS(2492), + [anon_sym_INSTANCEOF] = ACTIONS(2492), + [anon_sym_instanceOf] = ACTIONS(2492), + [anon_sym_New] = ACTIONS(2492), + [anon_sym_new] = ACTIONS(2492), + [anon_sym_NEW] = ACTIONS(2492), + [anon_sym_Package] = ACTIONS(2492), + [anon_sym_package] = ACTIONS(2492), + [anon_sym_PACKAGE] = ACTIONS(2492), + [anon_sym_Private] = ACTIONS(2492), + [anon_sym_private] = ACTIONS(2492), + [anon_sym_PRIVATE] = ACTIONS(2492), + [anon_sym_Public] = ACTIONS(2492), + [anon_sym_public] = ACTIONS(2492), + [anon_sym_PUBLIC] = ACTIONS(2492), + [anon_sym_Remote] = ACTIONS(2492), + [anon_sym_remote] = ACTIONS(2492), + [anon_sym_REMOTE] = ACTIONS(2492), + [anon_sym_Static] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_STATIC] = ACTIONS(2492), + [sym__automatic_semicolon] = ACTIONS(2494), + [sym__ternary_qmark] = ACTIONS(2494), + [sym__elvis_operator] = ACTIONS(2494), + [sym_logical_or] = ACTIONS(2494), + [sym_tag_linefeed] = ACTIONS(2494), + [sym__java_block_open] = ACTIONS(2494), + [sym__static_type_prefix] = ACTIONS(2494), + }, + [STATE(509)] = { + [sym_identifier] = ACTIONS(2496), + [anon_sym_DOT] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_Query] = ACTIONS(2496), + [anon_sym_query] = ACTIONS(2496), + [anon_sym_QUERY] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2496), + [sym_optional_chain] = ACTIONS(2498), + [sym_static_chain] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_BSLASH] = ACTIONS(2496), + [anon_sym_STAR_STAR] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), + [anon_sym_LT_GT] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), + [aux_sym_binary_expression_token1] = ACTIONS(2498), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [aux_sym_binary_expression_token2] = ACTIONS(2496), + [aux_sym_binary_expression_token3] = ACTIONS(2496), + [aux_sym_binary_expression_token4] = ACTIONS(2498), + [aux_sym_binary_expression_token5] = ACTIONS(2498), + [aux_sym_binary_expression_token6] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2498), + [aux_sym_unary_operator_token1] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2498), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2496), + [aux_sym_number_token2] = ACTIONS(2496), + [anon_sym_This] = ACTIONS(2496), + [anon_sym_this] = ACTIONS(2496), + [anon_sym_THIS] = ACTIONS(2496), + [anon_sym_Super] = ACTIONS(2496), + [anon_sym_super] = ACTIONS(2496), + [anon_sym_SUPER] = ACTIONS(2496), + [anon_sym_True] = ACTIONS(2496), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_TRUE] = ACTIONS(2496), + [anon_sym_False] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [anon_sym_FALSE] = ACTIONS(2496), + [anon_sym_Null] = ACTIONS(2496), + [anon_sym_null] = ACTIONS(2496), + [anon_sym_NULL] = ACTIONS(2496), + [anon_sym_Undefined] = ACTIONS(2496), + [anon_sym_undefined] = ACTIONS(2496), + [anon_sym_UNDEFINED] = ACTIONS(2496), + [anon_sym_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_POUND] = ACTIONS(2496), + [sym_hash_empty] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_QueryExecute] = ACTIONS(2496), + [anon_sym_queryexecute] = ACTIONS(2496), + [anon_sym_QUERYEXECUTE] = ACTIONS(2496), + [anon_sym_queryExecute] = ACTIONS(2496), + [anon_sym_BQUOTE] = ACTIONS(2498), + [anon_sym_Abstract] = ACTIONS(2496), + [anon_sym_abstract] = ACTIONS(2496), + [anon_sym_ABSTRACT] = ACTIONS(2496), + [anon_sym_Component] = ACTIONS(2496), + [anon_sym_component] = ACTIONS(2496), + [anon_sym_COMPONENT] = ACTIONS(2496), + [anon_sym_Debugger] = ACTIONS(2496), + [anon_sym_debugger] = ACTIONS(2496), + [anon_sym_DEBUGGER] = ACTIONS(2496), + [anon_sym_Final] = ACTIONS(2496), + [anon_sym_final] = ACTIONS(2496), + [anon_sym_FINAL] = ACTIONS(2496), + [anon_sym_Function] = ACTIONS(2496), + [anon_sym_function] = ACTIONS(2496), + [anon_sym_FUNCTION] = ACTIONS(2496), + [anon_sym_In] = ACTIONS(2496), + [anon_sym_in] = ACTIONS(2496), + [anon_sym_IN] = ACTIONS(2496), + [anon_sym_Include] = ACTIONS(2496), + [anon_sym_include] = ACTIONS(2496), + [anon_sym_INCLUDE] = ACTIONS(2496), + [anon_sym_InstanceOf] = ACTIONS(2496), + [anon_sym_instanceof] = ACTIONS(2496), + [anon_sym_INSTANCEOF] = ACTIONS(2496), + [anon_sym_instanceOf] = ACTIONS(2496), + [anon_sym_New] = ACTIONS(2496), + [anon_sym_new] = ACTIONS(2496), + [anon_sym_NEW] = ACTIONS(2496), + [anon_sym_Package] = ACTIONS(2496), + [anon_sym_package] = ACTIONS(2496), + [anon_sym_PACKAGE] = ACTIONS(2496), + [anon_sym_Private] = ACTIONS(2496), + [anon_sym_private] = ACTIONS(2496), + [anon_sym_PRIVATE] = ACTIONS(2496), + [anon_sym_Public] = ACTIONS(2496), + [anon_sym_public] = ACTIONS(2496), + [anon_sym_PUBLIC] = ACTIONS(2496), + [anon_sym_Remote] = ACTIONS(2496), + [anon_sym_remote] = ACTIONS(2496), + [anon_sym_REMOTE] = ACTIONS(2496), + [anon_sym_Static] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_STATIC] = ACTIONS(2496), + [sym__automatic_semicolon] = ACTIONS(2498), + [sym__ternary_qmark] = ACTIONS(2498), + [sym__elvis_operator] = ACTIONS(2498), + [sym_logical_or] = ACTIONS(2498), + [sym_tag_linefeed] = ACTIONS(2498), + [sym__java_block_open] = ACTIONS(2498), + [sym__static_type_prefix] = ACTIONS(2498), + }, + [STATE(510)] = { + [sym_identifier] = ACTIONS(2500), + [anon_sym_DOT] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_COMMA] = ACTIONS(2502), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_Query] = ACTIONS(2500), + [anon_sym_query] = ACTIONS(2500), + [anon_sym_QUERY] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2500), + [sym_optional_chain] = ACTIONS(2502), + [sym_static_chain] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(2500), + [anon_sym_STAR_STAR] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2500), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), + [anon_sym_LT_GT] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2500), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), + [aux_sym_binary_expression_token1] = ACTIONS(2502), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [aux_sym_binary_expression_token2] = ACTIONS(2500), + [aux_sym_binary_expression_token3] = ACTIONS(2500), + [aux_sym_binary_expression_token4] = ACTIONS(2502), + [aux_sym_binary_expression_token5] = ACTIONS(2502), + [aux_sym_binary_expression_token6] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2502), + [aux_sym_unary_operator_token1] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2502), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2500), + [aux_sym_number_token2] = ACTIONS(2500), + [anon_sym_This] = ACTIONS(2500), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_THIS] = ACTIONS(2500), + [anon_sym_Super] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2500), + [anon_sym_SUPER] = ACTIONS(2500), + [anon_sym_True] = ACTIONS(2500), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_TRUE] = ACTIONS(2500), + [anon_sym_False] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_FALSE] = ACTIONS(2500), + [anon_sym_Null] = ACTIONS(2500), + [anon_sym_null] = ACTIONS(2500), + [anon_sym_NULL] = ACTIONS(2500), + [anon_sym_Undefined] = ACTIONS(2500), + [anon_sym_undefined] = ACTIONS(2500), + [anon_sym_UNDEFINED] = ACTIONS(2500), + [anon_sym_get] = ACTIONS(2500), + [anon_sym_set] = ACTIONS(2500), + [anon_sym_POUND] = ACTIONS(2500), + [sym_hash_empty] = ACTIONS(2502), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_QueryExecute] = ACTIONS(2500), + [anon_sym_queryexecute] = ACTIONS(2500), + [anon_sym_QUERYEXECUTE] = ACTIONS(2500), + [anon_sym_queryExecute] = ACTIONS(2500), + [anon_sym_BQUOTE] = ACTIONS(2502), + [anon_sym_Abstract] = ACTIONS(2500), + [anon_sym_abstract] = ACTIONS(2500), + [anon_sym_ABSTRACT] = ACTIONS(2500), + [anon_sym_Component] = ACTIONS(2500), + [anon_sym_component] = ACTIONS(2500), + [anon_sym_COMPONENT] = ACTIONS(2500), + [anon_sym_Debugger] = ACTIONS(2500), + [anon_sym_debugger] = ACTIONS(2500), + [anon_sym_DEBUGGER] = ACTIONS(2500), + [anon_sym_Final] = ACTIONS(2500), + [anon_sym_final] = ACTIONS(2500), + [anon_sym_FINAL] = ACTIONS(2500), + [anon_sym_Function] = ACTIONS(2500), + [anon_sym_function] = ACTIONS(2500), + [anon_sym_FUNCTION] = ACTIONS(2500), + [anon_sym_In] = ACTIONS(2500), + [anon_sym_in] = ACTIONS(2500), + [anon_sym_IN] = ACTIONS(2500), + [anon_sym_Include] = ACTIONS(2500), + [anon_sym_include] = ACTIONS(2500), + [anon_sym_INCLUDE] = ACTIONS(2500), + [anon_sym_InstanceOf] = ACTIONS(2500), + [anon_sym_instanceof] = ACTIONS(2500), + [anon_sym_INSTANCEOF] = ACTIONS(2500), + [anon_sym_instanceOf] = ACTIONS(2500), + [anon_sym_New] = ACTIONS(2500), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_NEW] = ACTIONS(2500), + [anon_sym_Package] = ACTIONS(2500), + [anon_sym_package] = ACTIONS(2500), + [anon_sym_PACKAGE] = ACTIONS(2500), + [anon_sym_Private] = ACTIONS(2500), + [anon_sym_private] = ACTIONS(2500), + [anon_sym_PRIVATE] = ACTIONS(2500), + [anon_sym_Public] = ACTIONS(2500), + [anon_sym_public] = ACTIONS(2500), + [anon_sym_PUBLIC] = ACTIONS(2500), + [anon_sym_Remote] = ACTIONS(2500), + [anon_sym_remote] = ACTIONS(2500), + [anon_sym_REMOTE] = ACTIONS(2500), + [anon_sym_Static] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_STATIC] = ACTIONS(2500), + [sym__automatic_semicolon] = ACTIONS(2502), + [sym__ternary_qmark] = ACTIONS(2502), + [sym__elvis_operator] = ACTIONS(2502), + [sym_logical_or] = ACTIONS(2502), + [sym_tag_linefeed] = ACTIONS(2502), + [sym__java_block_open] = ACTIONS(2502), + [sym__static_type_prefix] = ACTIONS(2502), + }, + [STATE(511)] = { + [sym_identifier] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_Query] = ACTIONS(2504), + [anon_sym_query] = ACTIONS(2504), + [anon_sym_QUERY] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2504), + [sym_optional_chain] = ACTIONS(2506), + [sym_static_chain] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_BSLASH] = ACTIONS(2504), + [anon_sym_STAR_STAR] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2504), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), + [anon_sym_LT_GT] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2504), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), + [aux_sym_binary_expression_token1] = ACTIONS(2506), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [aux_sym_binary_expression_token2] = ACTIONS(2504), + [aux_sym_binary_expression_token3] = ACTIONS(2504), + [aux_sym_binary_expression_token4] = ACTIONS(2506), + [aux_sym_binary_expression_token5] = ACTIONS(2506), + [aux_sym_binary_expression_token6] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2506), + [aux_sym_unary_operator_token1] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2506), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2504), + [aux_sym_number_token2] = ACTIONS(2504), + [anon_sym_This] = ACTIONS(2504), + [anon_sym_this] = ACTIONS(2504), + [anon_sym_THIS] = ACTIONS(2504), + [anon_sym_Super] = ACTIONS(2504), + [anon_sym_super] = ACTIONS(2504), + [anon_sym_SUPER] = ACTIONS(2504), + [anon_sym_True] = ACTIONS(2504), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_TRUE] = ACTIONS(2504), + [anon_sym_False] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [anon_sym_FALSE] = ACTIONS(2504), + [anon_sym_Null] = ACTIONS(2504), + [anon_sym_null] = ACTIONS(2504), + [anon_sym_NULL] = ACTIONS(2504), + [anon_sym_Undefined] = ACTIONS(2504), + [anon_sym_undefined] = ACTIONS(2504), + [anon_sym_UNDEFINED] = ACTIONS(2504), + [anon_sym_get] = ACTIONS(2504), + [anon_sym_set] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [sym_hash_empty] = ACTIONS(2506), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_QueryExecute] = ACTIONS(2504), + [anon_sym_queryexecute] = ACTIONS(2504), + [anon_sym_QUERYEXECUTE] = ACTIONS(2504), + [anon_sym_queryExecute] = ACTIONS(2504), + [anon_sym_BQUOTE] = ACTIONS(2506), + [anon_sym_Abstract] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_ABSTRACT] = ACTIONS(2504), + [anon_sym_Component] = ACTIONS(2504), + [anon_sym_component] = ACTIONS(2504), + [anon_sym_COMPONENT] = ACTIONS(2504), + [anon_sym_Debugger] = ACTIONS(2504), + [anon_sym_debugger] = ACTIONS(2504), + [anon_sym_DEBUGGER] = ACTIONS(2504), + [anon_sym_Final] = ACTIONS(2504), + [anon_sym_final] = ACTIONS(2504), + [anon_sym_FINAL] = ACTIONS(2504), + [anon_sym_Function] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_FUNCTION] = ACTIONS(2504), + [anon_sym_In] = ACTIONS(2504), + [anon_sym_in] = ACTIONS(2504), + [anon_sym_IN] = ACTIONS(2504), + [anon_sym_Include] = ACTIONS(2504), + [anon_sym_include] = ACTIONS(2504), + [anon_sym_INCLUDE] = ACTIONS(2504), + [anon_sym_InstanceOf] = ACTIONS(2504), + [anon_sym_instanceof] = ACTIONS(2504), + [anon_sym_INSTANCEOF] = ACTIONS(2504), + [anon_sym_instanceOf] = ACTIONS(2504), + [anon_sym_New] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_NEW] = ACTIONS(2504), + [anon_sym_Package] = ACTIONS(2504), + [anon_sym_package] = ACTIONS(2504), + [anon_sym_PACKAGE] = ACTIONS(2504), + [anon_sym_Private] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_PRIVATE] = ACTIONS(2504), + [anon_sym_Public] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_PUBLIC] = ACTIONS(2504), + [anon_sym_Remote] = ACTIONS(2504), + [anon_sym_remote] = ACTIONS(2504), + [anon_sym_REMOTE] = ACTIONS(2504), + [anon_sym_Static] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_STATIC] = ACTIONS(2504), + [sym__automatic_semicolon] = ACTIONS(2506), + [sym__ternary_qmark] = ACTIONS(2506), + [sym__elvis_operator] = ACTIONS(2506), + [sym_logical_or] = ACTIONS(2506), + [sym_tag_linefeed] = ACTIONS(2506), + [sym__java_block_open] = ACTIONS(2506), + [sym__static_type_prefix] = ACTIONS(2506), + }, + [STATE(512)] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1596), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Break] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_BREAK] = ACTIONS(1598), + [anon_sym_Case] = ACTIONS(1598), + [anon_sym_case] = ACTIONS(1598), + [anon_sym_CASE] = ACTIONS(1598), + [anon_sym_Catch] = ACTIONS(1598), + [anon_sym_catch] = ACTIONS(1598), + [anon_sym_CATCH] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Continue] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_CONTINUE] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Default] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_DEFAULT] = ACTIONS(1598), + [anon_sym_Do] = ACTIONS(1598), + [anon_sym_do] = ACTIONS(1598), + [anon_sym_DO] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_Finally] = ACTIONS(1598), + [anon_sym_finally] = ACTIONS(1598), + [anon_sym_FINALLY] = ACTIONS(1598), + [anon_sym_For] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_FOR] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_If] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_IF] = ACTIONS(1598), + [anon_sym_Import] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_IMPORT] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_Interface] = ACTIONS(1598), + [anon_sym_interface] = ACTIONS(1598), + [anon_sym_INTERFACE] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Property] = ACTIONS(1598), + [anon_sym_property] = ACTIONS(1598), + [anon_sym_PROPERTY] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Return] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_RETURN] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [anon_sym_Switch] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1598), + [anon_sym_SWITCH] = ACTIONS(1598), + [anon_sym_Throw] = ACTIONS(1598), + [anon_sym_throw] = ACTIONS(1598), + [anon_sym_THROW] = ACTIONS(1598), + [anon_sym_Try] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_TRY] = ACTIONS(1598), + [anon_sym_Var] = ACTIONS(1598), + [anon_sym_var] = ACTIONS(1598), + [anon_sym_VAR] = ACTIONS(1598), + [anon_sym_While] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_WHILE] = ACTIONS(1598), + [anon_sym_With] = ACTIONS(1598), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_WITH] = ACTIONS(1598), + [sym_cf_comment] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), + }, + [STATE(513)] = { + [sym_identifier] = ACTIONS(2508), + [anon_sym_DOT] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_COMMA] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_Query] = ACTIONS(2508), + [anon_sym_query] = ACTIONS(2508), + [anon_sym_QUERY] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2508), + [sym_optional_chain] = ACTIONS(2510), + [sym_static_chain] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_BSLASH] = ACTIONS(2508), + [anon_sym_STAR_STAR] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), + [anon_sym_LT_GT] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), + [aux_sym_binary_expression_token1] = ACTIONS(2510), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [aux_sym_binary_expression_token2] = ACTIONS(2508), + [aux_sym_binary_expression_token3] = ACTIONS(2508), + [aux_sym_binary_expression_token4] = ACTIONS(2510), + [aux_sym_binary_expression_token5] = ACTIONS(2510), + [aux_sym_binary_expression_token6] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_TILDE] = ACTIONS(2510), + [aux_sym_unary_operator_token1] = ACTIONS(2508), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2508), + [aux_sym_number_token2] = ACTIONS(2508), + [anon_sym_This] = ACTIONS(2508), + [anon_sym_this] = ACTIONS(2508), + [anon_sym_THIS] = ACTIONS(2508), + [anon_sym_Super] = ACTIONS(2508), + [anon_sym_super] = ACTIONS(2508), + [anon_sym_SUPER] = ACTIONS(2508), + [anon_sym_True] = ACTIONS(2508), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_TRUE] = ACTIONS(2508), + [anon_sym_False] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [anon_sym_FALSE] = ACTIONS(2508), + [anon_sym_Null] = ACTIONS(2508), + [anon_sym_null] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_Undefined] = ACTIONS(2508), + [anon_sym_undefined] = ACTIONS(2508), + [anon_sym_UNDEFINED] = ACTIONS(2508), + [anon_sym_get] = ACTIONS(2508), + [anon_sym_set] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [sym_hash_empty] = ACTIONS(2510), + [anon_sym_export] = ACTIONS(2508), + [anon_sym_QueryExecute] = ACTIONS(2508), + [anon_sym_queryexecute] = ACTIONS(2508), + [anon_sym_QUERYEXECUTE] = ACTIONS(2508), + [anon_sym_queryExecute] = ACTIONS(2508), + [anon_sym_BQUOTE] = ACTIONS(2510), + [anon_sym_Abstract] = ACTIONS(2508), + [anon_sym_abstract] = ACTIONS(2508), + [anon_sym_ABSTRACT] = ACTIONS(2508), + [anon_sym_Component] = ACTIONS(2508), + [anon_sym_component] = ACTIONS(2508), + [anon_sym_COMPONENT] = ACTIONS(2508), + [anon_sym_Debugger] = ACTIONS(2508), + [anon_sym_debugger] = ACTIONS(2508), + [anon_sym_DEBUGGER] = ACTIONS(2508), + [anon_sym_Final] = ACTIONS(2508), + [anon_sym_final] = ACTIONS(2508), + [anon_sym_FINAL] = ACTIONS(2508), + [anon_sym_Function] = ACTIONS(2508), + [anon_sym_function] = ACTIONS(2508), + [anon_sym_FUNCTION] = ACTIONS(2508), + [anon_sym_In] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_IN] = ACTIONS(2508), + [anon_sym_Include] = ACTIONS(2508), + [anon_sym_include] = ACTIONS(2508), + [anon_sym_INCLUDE] = ACTIONS(2508), + [anon_sym_InstanceOf] = ACTIONS(2508), + [anon_sym_instanceof] = ACTIONS(2508), + [anon_sym_INSTANCEOF] = ACTIONS(2508), + [anon_sym_instanceOf] = ACTIONS(2508), + [anon_sym_New] = ACTIONS(2508), + [anon_sym_new] = ACTIONS(2508), + [anon_sym_NEW] = ACTIONS(2508), + [anon_sym_Package] = ACTIONS(2508), + [anon_sym_package] = ACTIONS(2508), + [anon_sym_PACKAGE] = ACTIONS(2508), + [anon_sym_Private] = ACTIONS(2508), + [anon_sym_private] = ACTIONS(2508), + [anon_sym_PRIVATE] = ACTIONS(2508), + [anon_sym_Public] = ACTIONS(2508), + [anon_sym_public] = ACTIONS(2508), + [anon_sym_PUBLIC] = ACTIONS(2508), + [anon_sym_Remote] = ACTIONS(2508), + [anon_sym_remote] = ACTIONS(2508), + [anon_sym_REMOTE] = ACTIONS(2508), + [anon_sym_Static] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_STATIC] = ACTIONS(2508), + [sym__automatic_semicolon] = ACTIONS(2510), + [sym__ternary_qmark] = ACTIONS(2510), + [sym__elvis_operator] = ACTIONS(2510), + [sym_logical_or] = ACTIONS(2510), + [sym_tag_linefeed] = ACTIONS(2510), + [sym__java_block_open] = ACTIONS(2510), + [sym__static_type_prefix] = ACTIONS(2510), + }, + [STATE(514)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), @@ -124815,5807 +123879,5316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(522)] = { - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_Query] = ACTIONS(1722), - [anon_sym_query] = ACTIONS(1722), - [anon_sym_QUERY] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [aux_sym_unary_operator_token1] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1722), - [aux_sym_number_token2] = ACTIONS(1722), - [anon_sym_This] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1722), - [anon_sym_THIS] = ACTIONS(1722), - [anon_sym_Super] = ACTIONS(1722), - [anon_sym_super] = ACTIONS(1722), - [anon_sym_SUPER] = ACTIONS(1722), - [anon_sym_True] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_TRUE] = ACTIONS(1722), - [anon_sym_False] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [anon_sym_FALSE] = ACTIONS(1722), - [anon_sym_Null] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1722), - [anon_sym_NULL] = ACTIONS(1722), - [anon_sym_Undefined] = ACTIONS(1722), - [anon_sym_undefined] = ACTIONS(1722), - [anon_sym_UNDEFINED] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [sym_hash_empty] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_QueryExecute] = ACTIONS(1722), - [anon_sym_queryexecute] = ACTIONS(1722), - [anon_sym_QUERYEXECUTE] = ACTIONS(1722), - [anon_sym_queryExecute] = ACTIONS(1722), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_Abstract] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_ABSTRACT] = ACTIONS(1722), - [anon_sym_Component] = ACTIONS(1722), - [anon_sym_component] = ACTIONS(1722), - [anon_sym_COMPONENT] = ACTIONS(1722), - [anon_sym_Debugger] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_DEBUGGER] = ACTIONS(1722), - [anon_sym_Final] = ACTIONS(1722), - [anon_sym_final] = ACTIONS(1722), - [anon_sym_FINAL] = ACTIONS(1722), - [anon_sym_Function] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_FUNCTION] = ACTIONS(1722), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(1722), - [anon_sym_include] = ACTIONS(1722), - [anon_sym_INCLUDE] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_NEW] = ACTIONS(1722), - [anon_sym_Package] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1722), - [anon_sym_PACKAGE] = ACTIONS(1722), - [anon_sym_Private] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_PRIVATE] = ACTIONS(1722), - [anon_sym_Public] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_PUBLIC] = ACTIONS(1722), - [anon_sym_Remote] = ACTIONS(1722), - [anon_sym_remote] = ACTIONS(1722), - [anon_sym_REMOTE] = ACTIONS(1722), - [anon_sym_Static] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_STATIC] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), - [sym__java_block_open] = ACTIONS(1720), - [sym__static_type_prefix] = ACTIONS(1720), - }, - [STATE(523)] = { - [sym_identifier] = ACTIONS(2498), - [anon_sym_DOT] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_COMMA] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_Query] = ACTIONS(2498), - [anon_sym_query] = ACTIONS(2498), - [anon_sym_QUERY] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2498), - [sym_optional_chain] = ACTIONS(2500), - [sym_static_chain] = ACTIONS(2500), - [anon_sym_AMP_AMP] = ACTIONS(2500), - [anon_sym_PIPE_PIPE] = ACTIONS(2500), - [anon_sym_GT_GT] = ACTIONS(2498), - [anon_sym_GT_GT_GT] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_BSLASH] = ACTIONS(2498), - [anon_sym_STAR_STAR] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_LT_EQ] = ACTIONS(2500), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2500), - [anon_sym_LT_GT] = ACTIONS(2500), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2500), - [aux_sym_binary_expression_token1] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2498), - [aux_sym_binary_expression_token2] = ACTIONS(2498), - [aux_sym_binary_expression_token3] = ACTIONS(2498), - [aux_sym_binary_expression_token4] = ACTIONS(2500), - [aux_sym_binary_expression_token5] = ACTIONS(2500), - [aux_sym_binary_expression_token6] = ACTIONS(2500), - [anon_sym_QMARK_QMARK] = ACTIONS(2500), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2500), - [aux_sym_unary_operator_token1] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2498), - [aux_sym_number_token2] = ACTIONS(2498), - [anon_sym_This] = ACTIONS(2498), - [anon_sym_this] = ACTIONS(2498), - [anon_sym_THIS] = ACTIONS(2498), - [anon_sym_Super] = ACTIONS(2498), - [anon_sym_super] = ACTIONS(2498), - [anon_sym_SUPER] = ACTIONS(2498), - [anon_sym_True] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_TRUE] = ACTIONS(2498), - [anon_sym_False] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_FALSE] = ACTIONS(2498), - [anon_sym_Null] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2498), - [anon_sym_NULL] = ACTIONS(2498), - [anon_sym_Undefined] = ACTIONS(2498), - [anon_sym_undefined] = ACTIONS(2498), - [anon_sym_UNDEFINED] = ACTIONS(2498), - [anon_sym_get] = ACTIONS(2498), - [anon_sym_set] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(2498), - [sym_hash_empty] = ACTIONS(2500), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_QueryExecute] = ACTIONS(2498), - [anon_sym_queryexecute] = ACTIONS(2498), - [anon_sym_QUERYEXECUTE] = ACTIONS(2498), - [anon_sym_queryExecute] = ACTIONS(2498), - [anon_sym_BQUOTE] = ACTIONS(2500), - [anon_sym_Abstract] = ACTIONS(2498), - [anon_sym_abstract] = ACTIONS(2498), - [anon_sym_ABSTRACT] = ACTIONS(2498), - [anon_sym_Component] = ACTIONS(2498), - [anon_sym_component] = ACTIONS(2498), - [anon_sym_COMPONENT] = ACTIONS(2498), - [anon_sym_Debugger] = ACTIONS(2498), - [anon_sym_debugger] = ACTIONS(2498), - [anon_sym_DEBUGGER] = ACTIONS(2498), - [anon_sym_Final] = ACTIONS(2498), - [anon_sym_final] = ACTIONS(2498), - [anon_sym_FINAL] = ACTIONS(2498), - [anon_sym_Function] = ACTIONS(2498), - [anon_sym_function] = ACTIONS(2498), - [anon_sym_FUNCTION] = ACTIONS(2498), - [anon_sym_In] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_IN] = ACTIONS(2498), - [anon_sym_Include] = ACTIONS(2498), - [anon_sym_include] = ACTIONS(2498), - [anon_sym_INCLUDE] = ACTIONS(2498), - [anon_sym_InstanceOf] = ACTIONS(2498), - [anon_sym_instanceof] = ACTIONS(2498), - [anon_sym_INSTANCEOF] = ACTIONS(2498), - [anon_sym_instanceOf] = ACTIONS(2498), - [anon_sym_New] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(2498), - [anon_sym_NEW] = ACTIONS(2498), - [anon_sym_Package] = ACTIONS(2498), - [anon_sym_package] = ACTIONS(2498), - [anon_sym_PACKAGE] = ACTIONS(2498), - [anon_sym_Private] = ACTIONS(2498), - [anon_sym_private] = ACTIONS(2498), - [anon_sym_PRIVATE] = ACTIONS(2498), - [anon_sym_Public] = ACTIONS(2498), - [anon_sym_public] = ACTIONS(2498), - [anon_sym_PUBLIC] = ACTIONS(2498), - [anon_sym_Remote] = ACTIONS(2498), - [anon_sym_remote] = ACTIONS(2498), - [anon_sym_REMOTE] = ACTIONS(2498), - [anon_sym_Static] = ACTIONS(2498), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_STATIC] = ACTIONS(2498), - [sym__automatic_semicolon] = ACTIONS(2500), - [sym__ternary_qmark] = ACTIONS(2500), - [sym__elvis_operator] = ACTIONS(2500), - [sym_logical_or] = ACTIONS(2500), - [sym_tag_linefeed] = ACTIONS(2500), - [sym__java_block_open] = ACTIONS(2500), - [sym__static_type_prefix] = ACTIONS(2500), + [STATE(515)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_Query] = ACTIONS(1718), + [anon_sym_query] = ACTIONS(1718), + [anon_sym_QUERY] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [aux_sym_unary_operator_token1] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1718), + [aux_sym_number_token2] = ACTIONS(1718), + [anon_sym_This] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_THIS] = ACTIONS(1718), + [anon_sym_Super] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(1718), + [anon_sym_SUPER] = ACTIONS(1718), + [anon_sym_True] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_TRUE] = ACTIONS(1718), + [anon_sym_False] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_FALSE] = ACTIONS(1718), + [anon_sym_Null] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_NULL] = ACTIONS(1718), + [anon_sym_Undefined] = ACTIONS(1718), + [anon_sym_undefined] = ACTIONS(1718), + [anon_sym_UNDEFINED] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [sym_hash_empty] = ACTIONS(1716), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_QueryExecute] = ACTIONS(1718), + [anon_sym_queryexecute] = ACTIONS(1718), + [anon_sym_QUERYEXECUTE] = ACTIONS(1718), + [anon_sym_queryExecute] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_Abstract] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_ABSTRACT] = ACTIONS(1718), + [anon_sym_Component] = ACTIONS(1718), + [anon_sym_component] = ACTIONS(1718), + [anon_sym_COMPONENT] = ACTIONS(1718), + [anon_sym_Debugger] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_DEBUGGER] = ACTIONS(1718), + [anon_sym_Final] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_FINAL] = ACTIONS(1718), + [anon_sym_Function] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_FUNCTION] = ACTIONS(1718), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1718), + [anon_sym_include] = ACTIONS(1718), + [anon_sym_INCLUDE] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_NEW] = ACTIONS(1718), + [anon_sym_Package] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_PACKAGE] = ACTIONS(1718), + [anon_sym_Private] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_PRIVATE] = ACTIONS(1718), + [anon_sym_Public] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_PUBLIC] = ACTIONS(1718), + [anon_sym_Remote] = ACTIONS(1718), + [anon_sym_remote] = ACTIONS(1718), + [anon_sym_REMOTE] = ACTIONS(1718), + [anon_sym_Static] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_STATIC] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(1716), + [sym__static_type_prefix] = ACTIONS(1716), }, - [STATE(524)] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_Query] = ACTIONS(2502), - [anon_sym_query] = ACTIONS(2502), - [anon_sym_QUERY] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2502), - [sym_optional_chain] = ACTIONS(2504), - [sym_static_chain] = ACTIONS(2504), - [anon_sym_AMP_AMP] = ACTIONS(2504), - [anon_sym_PIPE_PIPE] = ACTIONS(2504), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_GT_GT_GT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_BSLASH] = ACTIONS(2502), - [anon_sym_STAR_STAR] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_LT_EQ] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2504), - [anon_sym_LT_GT] = ACTIONS(2504), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2504), - [aux_sym_binary_expression_token1] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2504), - [anon_sym_GT] = ACTIONS(2502), - [aux_sym_binary_expression_token2] = ACTIONS(2502), - [aux_sym_binary_expression_token3] = ACTIONS(2502), - [aux_sym_binary_expression_token4] = ACTIONS(2504), - [aux_sym_binary_expression_token5] = ACTIONS(2504), - [aux_sym_binary_expression_token6] = ACTIONS(2504), - [anon_sym_QMARK_QMARK] = ACTIONS(2504), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2504), - [aux_sym_unary_operator_token1] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2504), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2502), - [aux_sym_number_token2] = ACTIONS(2502), - [anon_sym_This] = ACTIONS(2502), - [anon_sym_this] = ACTIONS(2502), - [anon_sym_THIS] = ACTIONS(2502), - [anon_sym_Super] = ACTIONS(2502), - [anon_sym_super] = ACTIONS(2502), - [anon_sym_SUPER] = ACTIONS(2502), - [anon_sym_True] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_TRUE] = ACTIONS(2502), - [anon_sym_False] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [anon_sym_FALSE] = ACTIONS(2502), - [anon_sym_Null] = ACTIONS(2502), - [anon_sym_null] = ACTIONS(2502), - [anon_sym_NULL] = ACTIONS(2502), - [anon_sym_Undefined] = ACTIONS(2502), - [anon_sym_undefined] = ACTIONS(2502), - [anon_sym_UNDEFINED] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(2502), - [anon_sym_set] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(2502), - [sym_hash_empty] = ACTIONS(2504), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_QueryExecute] = ACTIONS(2502), - [anon_sym_queryexecute] = ACTIONS(2502), - [anon_sym_QUERYEXECUTE] = ACTIONS(2502), - [anon_sym_queryExecute] = ACTIONS(2502), - [anon_sym_BQUOTE] = ACTIONS(2504), - [anon_sym_Abstract] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2502), - [anon_sym_ABSTRACT] = ACTIONS(2502), - [anon_sym_Component] = ACTIONS(2502), - [anon_sym_component] = ACTIONS(2502), - [anon_sym_COMPONENT] = ACTIONS(2502), - [anon_sym_Debugger] = ACTIONS(2502), - [anon_sym_debugger] = ACTIONS(2502), - [anon_sym_DEBUGGER] = ACTIONS(2502), - [anon_sym_Final] = ACTIONS(2502), - [anon_sym_final] = ACTIONS(2502), - [anon_sym_FINAL] = ACTIONS(2502), - [anon_sym_Function] = ACTIONS(2502), - [anon_sym_function] = ACTIONS(2502), - [anon_sym_FUNCTION] = ACTIONS(2502), - [anon_sym_In] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_IN] = ACTIONS(2502), - [anon_sym_Include] = ACTIONS(2502), - [anon_sym_include] = ACTIONS(2502), - [anon_sym_INCLUDE] = ACTIONS(2502), - [anon_sym_InstanceOf] = ACTIONS(2502), - [anon_sym_instanceof] = ACTIONS(2502), - [anon_sym_INSTANCEOF] = ACTIONS(2502), - [anon_sym_instanceOf] = ACTIONS(2502), - [anon_sym_New] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_NEW] = ACTIONS(2502), - [anon_sym_Package] = ACTIONS(2502), - [anon_sym_package] = ACTIONS(2502), - [anon_sym_PACKAGE] = ACTIONS(2502), - [anon_sym_Private] = ACTIONS(2502), - [anon_sym_private] = ACTIONS(2502), - [anon_sym_PRIVATE] = ACTIONS(2502), - [anon_sym_Public] = ACTIONS(2502), - [anon_sym_public] = ACTIONS(2502), - [anon_sym_PUBLIC] = ACTIONS(2502), - [anon_sym_Remote] = ACTIONS(2502), - [anon_sym_remote] = ACTIONS(2502), - [anon_sym_REMOTE] = ACTIONS(2502), - [anon_sym_Static] = ACTIONS(2502), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_STATIC] = ACTIONS(2502), - [sym__automatic_semicolon] = ACTIONS(2504), - [sym__ternary_qmark] = ACTIONS(2504), - [sym__elvis_operator] = ACTIONS(2504), - [sym_logical_or] = ACTIONS(2504), - [sym_tag_linefeed] = ACTIONS(2504), - [sym__java_block_open] = ACTIONS(2504), - [sym__static_type_prefix] = ACTIONS(2504), + [STATE(516)] = { + [sym_identifier] = ACTIONS(2512), + [anon_sym_DOT] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_Query] = ACTIONS(2512), + [anon_sym_query] = ACTIONS(2512), + [anon_sym_QUERY] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2512), + [sym_optional_chain] = ACTIONS(2514), + [sym_static_chain] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_BSLASH] = ACTIONS(2512), + [anon_sym_STAR_STAR] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2512), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2514), + [anon_sym_LT_GT] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2512), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2514), + [aux_sym_binary_expression_token1] = ACTIONS(2514), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [aux_sym_binary_expression_token2] = ACTIONS(2512), + [aux_sym_binary_expression_token3] = ACTIONS(2512), + [aux_sym_binary_expression_token4] = ACTIONS(2514), + [aux_sym_binary_expression_token5] = ACTIONS(2514), + [aux_sym_binary_expression_token6] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_unary_operator_token1] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2512), + [aux_sym_number_token2] = ACTIONS(2512), + [anon_sym_This] = ACTIONS(2512), + [anon_sym_this] = ACTIONS(2512), + [anon_sym_THIS] = ACTIONS(2512), + [anon_sym_Super] = ACTIONS(2512), + [anon_sym_super] = ACTIONS(2512), + [anon_sym_SUPER] = ACTIONS(2512), + [anon_sym_True] = ACTIONS(2512), + [anon_sym_true] = ACTIONS(2512), + [anon_sym_TRUE] = ACTIONS(2512), + [anon_sym_False] = ACTIONS(2512), + [anon_sym_false] = ACTIONS(2512), + [anon_sym_FALSE] = ACTIONS(2512), + [anon_sym_Null] = ACTIONS(2512), + [anon_sym_null] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_Undefined] = ACTIONS(2512), + [anon_sym_undefined] = ACTIONS(2512), + [anon_sym_UNDEFINED] = ACTIONS(2512), + [anon_sym_get] = ACTIONS(2512), + [anon_sym_set] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [sym_hash_empty] = ACTIONS(2514), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_QueryExecute] = ACTIONS(2512), + [anon_sym_queryexecute] = ACTIONS(2512), + [anon_sym_QUERYEXECUTE] = ACTIONS(2512), + [anon_sym_queryExecute] = ACTIONS(2512), + [anon_sym_BQUOTE] = ACTIONS(2514), + [anon_sym_Abstract] = ACTIONS(2512), + [anon_sym_abstract] = ACTIONS(2512), + [anon_sym_ABSTRACT] = ACTIONS(2512), + [anon_sym_Component] = ACTIONS(2512), + [anon_sym_component] = ACTIONS(2512), + [anon_sym_COMPONENT] = ACTIONS(2512), + [anon_sym_Debugger] = ACTIONS(2512), + [anon_sym_debugger] = ACTIONS(2512), + [anon_sym_DEBUGGER] = ACTIONS(2512), + [anon_sym_Final] = ACTIONS(2512), + [anon_sym_final] = ACTIONS(2512), + [anon_sym_FINAL] = ACTIONS(2512), + [anon_sym_Function] = ACTIONS(2512), + [anon_sym_function] = ACTIONS(2512), + [anon_sym_FUNCTION] = ACTIONS(2512), + [anon_sym_In] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_IN] = ACTIONS(2512), + [anon_sym_Include] = ACTIONS(2512), + [anon_sym_include] = ACTIONS(2512), + [anon_sym_INCLUDE] = ACTIONS(2512), + [anon_sym_InstanceOf] = ACTIONS(2512), + [anon_sym_instanceof] = ACTIONS(2512), + [anon_sym_INSTANCEOF] = ACTIONS(2512), + [anon_sym_instanceOf] = ACTIONS(2512), + [anon_sym_New] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_NEW] = ACTIONS(2512), + [anon_sym_Package] = ACTIONS(2512), + [anon_sym_package] = ACTIONS(2512), + [anon_sym_PACKAGE] = ACTIONS(2512), + [anon_sym_Private] = ACTIONS(2512), + [anon_sym_private] = ACTIONS(2512), + [anon_sym_PRIVATE] = ACTIONS(2512), + [anon_sym_Public] = ACTIONS(2512), + [anon_sym_public] = ACTIONS(2512), + [anon_sym_PUBLIC] = ACTIONS(2512), + [anon_sym_Remote] = ACTIONS(2512), + [anon_sym_remote] = ACTIONS(2512), + [anon_sym_REMOTE] = ACTIONS(2512), + [anon_sym_Static] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_STATIC] = ACTIONS(2512), + [sym__automatic_semicolon] = ACTIONS(2514), + [sym__ternary_qmark] = ACTIONS(2514), + [sym__elvis_operator] = ACTIONS(2514), + [sym_logical_or] = ACTIONS(2514), + [sym_tag_linefeed] = ACTIONS(2514), + [sym__java_block_open] = ACTIONS(2514), + [sym__static_type_prefix] = ACTIONS(2514), }, - [STATE(525)] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_Query] = ACTIONS(2217), - [anon_sym_query] = ACTIONS(2217), - [anon_sym_QUERY] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2215), - [aux_sym_unary_operator_token1] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2215), - [anon_sym_DASH_DASH] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), + [STATE(517)] = { + [sym_identifier] = ACTIONS(2516), + [anon_sym_DOT] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_COMMA] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_Query] = ACTIONS(2516), + [anon_sym_query] = ACTIONS(2516), + [anon_sym_QUERY] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2516), + [sym_optional_chain] = ACTIONS(2518), + [sym_static_chain] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_BSLASH] = ACTIONS(2516), + [anon_sym_STAR_STAR] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2518), + [anon_sym_LT_GT] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2518), + [aux_sym_binary_expression_token1] = ACTIONS(2518), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [aux_sym_binary_expression_token2] = ACTIONS(2516), + [aux_sym_binary_expression_token3] = ACTIONS(2516), + [aux_sym_binary_expression_token4] = ACTIONS(2518), + [aux_sym_binary_expression_token5] = ACTIONS(2518), + [aux_sym_binary_expression_token6] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_TILDE] = ACTIONS(2518), + [aux_sym_unary_operator_token1] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2516), + [aux_sym_number_token2] = ACTIONS(2516), + [anon_sym_This] = ACTIONS(2516), + [anon_sym_this] = ACTIONS(2516), + [anon_sym_THIS] = ACTIONS(2516), + [anon_sym_Super] = ACTIONS(2516), + [anon_sym_super] = ACTIONS(2516), + [anon_sym_SUPER] = ACTIONS(2516), + [anon_sym_True] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2516), + [anon_sym_TRUE] = ACTIONS(2516), + [anon_sym_False] = ACTIONS(2516), + [anon_sym_false] = ACTIONS(2516), + [anon_sym_FALSE] = ACTIONS(2516), + [anon_sym_Null] = ACTIONS(2516), + [anon_sym_null] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_Undefined] = ACTIONS(2516), + [anon_sym_undefined] = ACTIONS(2516), + [anon_sym_UNDEFINED] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [sym_hash_empty] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_QueryExecute] = ACTIONS(2516), + [anon_sym_queryexecute] = ACTIONS(2516), + [anon_sym_QUERYEXECUTE] = ACTIONS(2516), + [anon_sym_queryExecute] = ACTIONS(2516), + [anon_sym_BQUOTE] = ACTIONS(2518), + [anon_sym_Abstract] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_ABSTRACT] = ACTIONS(2516), + [anon_sym_Component] = ACTIONS(2516), + [anon_sym_component] = ACTIONS(2516), + [anon_sym_COMPONENT] = ACTIONS(2516), + [anon_sym_Debugger] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_DEBUGGER] = ACTIONS(2516), + [anon_sym_Final] = ACTIONS(2516), + [anon_sym_final] = ACTIONS(2516), + [anon_sym_FINAL] = ACTIONS(2516), + [anon_sym_Function] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_FUNCTION] = ACTIONS(2516), + [anon_sym_In] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_IN] = ACTIONS(2516), + [anon_sym_Include] = ACTIONS(2516), + [anon_sym_include] = ACTIONS(2516), + [anon_sym_INCLUDE] = ACTIONS(2516), + [anon_sym_InstanceOf] = ACTIONS(2516), + [anon_sym_instanceof] = ACTIONS(2516), + [anon_sym_INSTANCEOF] = ACTIONS(2516), + [anon_sym_instanceOf] = ACTIONS(2516), + [anon_sym_New] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_NEW] = ACTIONS(2516), + [anon_sym_Package] = ACTIONS(2516), + [anon_sym_package] = ACTIONS(2516), + [anon_sym_PACKAGE] = ACTIONS(2516), + [anon_sym_Private] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_PRIVATE] = ACTIONS(2516), + [anon_sym_Public] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_PUBLIC] = ACTIONS(2516), + [anon_sym_Remote] = ACTIONS(2516), + [anon_sym_remote] = ACTIONS(2516), + [anon_sym_REMOTE] = ACTIONS(2516), + [anon_sym_Static] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_STATIC] = ACTIONS(2516), + [sym__automatic_semicolon] = ACTIONS(2518), + [sym__ternary_qmark] = ACTIONS(2518), + [sym__elvis_operator] = ACTIONS(2518), + [sym_logical_or] = ACTIONS(2518), + [sym_tag_linefeed] = ACTIONS(2518), + [sym__java_block_open] = ACTIONS(2518), + [sym__static_type_prefix] = ACTIONS(2518), + }, + [STATE(518)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2217), - [aux_sym_number_token2] = ACTIONS(2215), - [anon_sym_This] = ACTIONS(2217), - [anon_sym_this] = ACTIONS(2217), - [anon_sym_THIS] = ACTIONS(2217), - [anon_sym_Super] = ACTIONS(2217), - [anon_sym_super] = ACTIONS(2217), - [anon_sym_SUPER] = ACTIONS(2217), - [anon_sym_True] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_TRUE] = ACTIONS(2217), - [anon_sym_False] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_FALSE] = ACTIONS(2217), - [anon_sym_Null] = ACTIONS(2217), - [anon_sym_null] = ACTIONS(2217), - [anon_sym_NULL] = ACTIONS(2217), - [anon_sym_Undefined] = ACTIONS(2217), - [anon_sym_undefined] = ACTIONS(2217), - [anon_sym_UNDEFINED] = ACTIONS(2217), - [anon_sym_get] = ACTIONS(2217), - [anon_sym_set] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [sym_hash_empty] = ACTIONS(2215), - [anon_sym_export] = ACTIONS(2217), - [anon_sym_QueryExecute] = ACTIONS(2217), - [anon_sym_queryexecute] = ACTIONS(2217), - [anon_sym_QUERYEXECUTE] = ACTIONS(2217), - [anon_sym_queryExecute] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2215), - [anon_sym_Abstract] = ACTIONS(2217), - [anon_sym_abstract] = ACTIONS(2217), - [anon_sym_ABSTRACT] = ACTIONS(2217), - [anon_sym_Break] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_BREAK] = ACTIONS(2217), - [anon_sym_Case] = ACTIONS(2217), - [anon_sym_case] = ACTIONS(2217), - [anon_sym_CASE] = ACTIONS(2217), - [anon_sym_Catch] = ACTIONS(2217), - [anon_sym_catch] = ACTIONS(2217), - [anon_sym_CATCH] = ACTIONS(2217), - [anon_sym_Component] = ACTIONS(2217), - [anon_sym_component] = ACTIONS(2217), - [anon_sym_COMPONENT] = ACTIONS(2217), - [anon_sym_Continue] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_CONTINUE] = ACTIONS(2217), - [anon_sym_Debugger] = ACTIONS(2217), - [anon_sym_debugger] = ACTIONS(2217), - [anon_sym_DEBUGGER] = ACTIONS(2217), - [anon_sym_Default] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_DEFAULT] = ACTIONS(2217), - [anon_sym_Do] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_DO] = ACTIONS(2217), - [anon_sym_Final] = ACTIONS(2217), - [anon_sym_final] = ACTIONS(2217), - [anon_sym_FINAL] = ACTIONS(2217), - [anon_sym_Finally] = ACTIONS(2217), - [anon_sym_finally] = ACTIONS(2217), - [anon_sym_FINALLY] = ACTIONS(2217), - [anon_sym_For] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_FOR] = ACTIONS(2217), - [anon_sym_Function] = ACTIONS(2217), - [anon_sym_function] = ACTIONS(2217), - [anon_sym_FUNCTION] = ACTIONS(2217), - [anon_sym_If] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_IF] = ACTIONS(2217), - [anon_sym_Import] = ACTIONS(2217), - [anon_sym_import] = ACTIONS(2217), - [anon_sym_IMPORT] = ACTIONS(2217), - [anon_sym_Include] = ACTIONS(2217), - [anon_sym_include] = ACTIONS(2217), - [anon_sym_INCLUDE] = ACTIONS(2217), - [anon_sym_Interface] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_INTERFACE] = ACTIONS(2217), - [anon_sym_New] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_NEW] = ACTIONS(2217), - [anon_sym_Package] = ACTIONS(2217), - [anon_sym_package] = ACTIONS(2217), - [anon_sym_PACKAGE] = ACTIONS(2217), - [anon_sym_Private] = ACTIONS(2217), - [anon_sym_private] = ACTIONS(2217), - [anon_sym_PRIVATE] = ACTIONS(2217), - [anon_sym_Property] = ACTIONS(2217), - [anon_sym_property] = ACTIONS(2217), - [anon_sym_PROPERTY] = ACTIONS(2217), - [anon_sym_Public] = ACTIONS(2217), - [anon_sym_public] = ACTIONS(2217), - [anon_sym_PUBLIC] = ACTIONS(2217), - [anon_sym_Remote] = ACTIONS(2217), - [anon_sym_remote] = ACTIONS(2217), - [anon_sym_REMOTE] = ACTIONS(2217), - [anon_sym_Return] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_RETURN] = ACTIONS(2217), - [anon_sym_Static] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_STATIC] = ACTIONS(2217), - [anon_sym_Switch] = ACTIONS(2217), - [anon_sym_switch] = ACTIONS(2217), - [anon_sym_SWITCH] = ACTIONS(2217), - [anon_sym_Throw] = ACTIONS(2217), - [anon_sym_throw] = ACTIONS(2217), - [anon_sym_THROW] = ACTIONS(2217), - [anon_sym_Try] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_TRY] = ACTIONS(2217), - [anon_sym_Var] = ACTIONS(2217), - [anon_sym_var] = ACTIONS(2217), - [anon_sym_VAR] = ACTIONS(2217), - [anon_sym_While] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_WHILE] = ACTIONS(2217), - [anon_sym_With] = ACTIONS(2217), - [anon_sym_with] = ACTIONS(2217), - [anon_sym_WITH] = ACTIONS(2217), - [sym_cf_comment] = ACTIONS(2215), - [sym__java_block_open] = ACTIONS(2215), - [sym__static_type_prefix] = ACTIONS(2215), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), + }, + [STATE(519)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), + }, + [STATE(520)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), + }, + [STATE(521)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), + }, + [STATE(522)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), + }, + [STATE(523)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), + }, + [STATE(524)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), + }, + [STATE(525)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1590), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(1588), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_tag_linefeed] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, [STATE(526)] = { - [sym_identifier] = ACTIONS(2506), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_COMMA] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2506), - [anon_sym_query] = ACTIONS(2506), - [anon_sym_QUERY] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2506), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_GT_GT_GT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2506), - [anon_sym_STAR_STAR] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2508), - [anon_sym_LT_GT] = ACTIONS(2508), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2508), - [aux_sym_binary_expression_token1] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2506), - [aux_sym_binary_expression_token2] = ACTIONS(2506), - [aux_sym_binary_expression_token3] = ACTIONS(2506), - [aux_sym_binary_expression_token4] = ACTIONS(2508), - [aux_sym_binary_expression_token5] = ACTIONS(2508), - [aux_sym_binary_expression_token6] = ACTIONS(2508), - [anon_sym_QMARK_QMARK] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2508), - [aux_sym_unary_operator_token1] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2506), - [aux_sym_number_token2] = ACTIONS(2506), - [anon_sym_This] = ACTIONS(2506), - [anon_sym_this] = ACTIONS(2506), - [anon_sym_THIS] = ACTIONS(2506), - [anon_sym_Super] = ACTIONS(2506), - [anon_sym_super] = ACTIONS(2506), - [anon_sym_SUPER] = ACTIONS(2506), - [anon_sym_True] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2506), - [anon_sym_TRUE] = ACTIONS(2506), - [anon_sym_False] = ACTIONS(2506), - [anon_sym_false] = ACTIONS(2506), - [anon_sym_FALSE] = ACTIONS(2506), - [anon_sym_Null] = ACTIONS(2506), - [anon_sym_null] = ACTIONS(2506), - [anon_sym_NULL] = ACTIONS(2506), - [anon_sym_Undefined] = ACTIONS(2506), - [anon_sym_undefined] = ACTIONS(2506), - [anon_sym_UNDEFINED] = ACTIONS(2506), - [anon_sym_get] = ACTIONS(2506), - [anon_sym_set] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2506), - [sym_hash_empty] = ACTIONS(2508), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_QueryExecute] = ACTIONS(2506), - [anon_sym_queryexecute] = ACTIONS(2506), - [anon_sym_QUERYEXECUTE] = ACTIONS(2506), - [anon_sym_queryExecute] = ACTIONS(2506), - [anon_sym_BQUOTE] = ACTIONS(2508), - [anon_sym_Abstract] = ACTIONS(2506), - [anon_sym_abstract] = ACTIONS(2506), - [anon_sym_ABSTRACT] = ACTIONS(2506), - [anon_sym_Component] = ACTIONS(2506), - [anon_sym_component] = ACTIONS(2506), - [anon_sym_COMPONENT] = ACTIONS(2506), - [anon_sym_Debugger] = ACTIONS(2506), - [anon_sym_debugger] = ACTIONS(2506), - [anon_sym_DEBUGGER] = ACTIONS(2506), - [anon_sym_Final] = ACTIONS(2506), - [anon_sym_final] = ACTIONS(2506), - [anon_sym_FINAL] = ACTIONS(2506), - [anon_sym_Function] = ACTIONS(2506), - [anon_sym_function] = ACTIONS(2506), - [anon_sym_FUNCTION] = ACTIONS(2506), - [anon_sym_In] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_IN] = ACTIONS(2506), - [anon_sym_Include] = ACTIONS(2506), - [anon_sym_include] = ACTIONS(2506), - [anon_sym_INCLUDE] = ACTIONS(2506), - [anon_sym_InstanceOf] = ACTIONS(2506), - [anon_sym_instanceof] = ACTIONS(2506), - [anon_sym_INSTANCEOF] = ACTIONS(2506), - [anon_sym_instanceOf] = ACTIONS(2506), - [anon_sym_New] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(2506), - [anon_sym_NEW] = ACTIONS(2506), - [anon_sym_Package] = ACTIONS(2506), - [anon_sym_package] = ACTIONS(2506), - [anon_sym_PACKAGE] = ACTIONS(2506), - [anon_sym_Private] = ACTIONS(2506), - [anon_sym_private] = ACTIONS(2506), - [anon_sym_PRIVATE] = ACTIONS(2506), - [anon_sym_Public] = ACTIONS(2506), - [anon_sym_public] = ACTIONS(2506), - [anon_sym_PUBLIC] = ACTIONS(2506), - [anon_sym_Remote] = ACTIONS(2506), - [anon_sym_remote] = ACTIONS(2506), - [anon_sym_REMOTE] = ACTIONS(2506), - [anon_sym_Static] = ACTIONS(2506), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_STATIC] = ACTIONS(2506), - [sym__automatic_semicolon] = ACTIONS(2508), - [sym__ternary_qmark] = ACTIONS(2508), - [sym__elvis_operator] = ACTIONS(2508), - [sym_logical_or] = ACTIONS(2508), - [sym_tag_linefeed] = ACTIONS(2508), - [sym__java_block_open] = ACTIONS(2508), - [sym__static_type_prefix] = ACTIONS(2508), + [sym_identifier] = ACTIONS(2520), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_COMMA] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2520), + [anon_sym_query] = ACTIONS(2520), + [anon_sym_QUERY] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2520), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_BSLASH] = ACTIONS(2520), + [anon_sym_STAR_STAR] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2520), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2522), + [anon_sym_LT_GT] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2520), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2522), + [aux_sym_binary_expression_token1] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [aux_sym_binary_expression_token2] = ACTIONS(2520), + [aux_sym_binary_expression_token3] = ACTIONS(2520), + [aux_sym_binary_expression_token4] = ACTIONS(2522), + [aux_sym_binary_expression_token5] = ACTIONS(2522), + [aux_sym_binary_expression_token6] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_TILDE] = ACTIONS(2522), + [aux_sym_unary_operator_token1] = ACTIONS(2520), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2520), + [aux_sym_number_token2] = ACTIONS(2520), + [anon_sym_This] = ACTIONS(2520), + [anon_sym_this] = ACTIONS(2520), + [anon_sym_THIS] = ACTIONS(2520), + [anon_sym_Super] = ACTIONS(2520), + [anon_sym_super] = ACTIONS(2520), + [anon_sym_SUPER] = ACTIONS(2520), + [anon_sym_True] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2520), + [anon_sym_TRUE] = ACTIONS(2520), + [anon_sym_False] = ACTIONS(2520), + [anon_sym_false] = ACTIONS(2520), + [anon_sym_FALSE] = ACTIONS(2520), + [anon_sym_Null] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_Undefined] = ACTIONS(2520), + [anon_sym_undefined] = ACTIONS(2520), + [anon_sym_UNDEFINED] = ACTIONS(2520), + [anon_sym_get] = ACTIONS(2520), + [anon_sym_set] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [sym_hash_empty] = ACTIONS(2522), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_QueryExecute] = ACTIONS(2520), + [anon_sym_queryexecute] = ACTIONS(2520), + [anon_sym_QUERYEXECUTE] = ACTIONS(2520), + [anon_sym_queryExecute] = ACTIONS(2520), + [anon_sym_BQUOTE] = ACTIONS(2522), + [anon_sym_Abstract] = ACTIONS(2520), + [anon_sym_abstract] = ACTIONS(2520), + [anon_sym_ABSTRACT] = ACTIONS(2520), + [anon_sym_Component] = ACTIONS(2520), + [anon_sym_component] = ACTIONS(2520), + [anon_sym_COMPONENT] = ACTIONS(2520), + [anon_sym_Debugger] = ACTIONS(2520), + [anon_sym_debugger] = ACTIONS(2520), + [anon_sym_DEBUGGER] = ACTIONS(2520), + [anon_sym_Final] = ACTIONS(2520), + [anon_sym_final] = ACTIONS(2520), + [anon_sym_FINAL] = ACTIONS(2520), + [anon_sym_Function] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2520), + [anon_sym_FUNCTION] = ACTIONS(2520), + [anon_sym_In] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_IN] = ACTIONS(2520), + [anon_sym_Include] = ACTIONS(2520), + [anon_sym_include] = ACTIONS(2520), + [anon_sym_INCLUDE] = ACTIONS(2520), + [anon_sym_InstanceOf] = ACTIONS(2520), + [anon_sym_instanceof] = ACTIONS(2520), + [anon_sym_INSTANCEOF] = ACTIONS(2520), + [anon_sym_instanceOf] = ACTIONS(2520), + [anon_sym_New] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_NEW] = ACTIONS(2520), + [anon_sym_Package] = ACTIONS(2520), + [anon_sym_package] = ACTIONS(2520), + [anon_sym_PACKAGE] = ACTIONS(2520), + [anon_sym_Private] = ACTIONS(2520), + [anon_sym_private] = ACTIONS(2520), + [anon_sym_PRIVATE] = ACTIONS(2520), + [anon_sym_Public] = ACTIONS(2520), + [anon_sym_public] = ACTIONS(2520), + [anon_sym_PUBLIC] = ACTIONS(2520), + [anon_sym_Remote] = ACTIONS(2520), + [anon_sym_remote] = ACTIONS(2520), + [anon_sym_REMOTE] = ACTIONS(2520), + [anon_sym_Static] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_STATIC] = ACTIONS(2520), + [sym__automatic_semicolon] = ACTIONS(2522), + [sym__ternary_qmark] = ACTIONS(2522), + [sym__elvis_operator] = ACTIONS(2522), + [sym_logical_or] = ACTIONS(2522), + [sym_tag_linefeed] = ACTIONS(2522), + [sym__java_block_open] = ACTIONS(2522), + [sym__static_type_prefix] = ACTIONS(2522), }, [STATE(527)] = { - [sym_identifier] = ACTIONS(2510), - [anon_sym_DOT] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_COMMA] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2512), - [anon_sym_Query] = ACTIONS(2510), - [anon_sym_query] = ACTIONS(2510), - [anon_sym_QUERY] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2510), - [sym_optional_chain] = ACTIONS(2512), - [sym_static_chain] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_PIPE_PIPE] = ACTIONS(2512), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_GT_GT_GT] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_CARET] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2512), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_STAR_STAR] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2512), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2512), - [anon_sym_LT_GT] = ACTIONS(2512), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2512), - [aux_sym_binary_expression_token1] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2512), - [anon_sym_GT] = ACTIONS(2510), - [aux_sym_binary_expression_token2] = ACTIONS(2510), - [aux_sym_binary_expression_token3] = ACTIONS(2510), - [aux_sym_binary_expression_token4] = ACTIONS(2512), - [aux_sym_binary_expression_token5] = ACTIONS(2512), - [aux_sym_binary_expression_token6] = ACTIONS(2512), - [anon_sym_QMARK_QMARK] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2512), - [aux_sym_unary_operator_token1] = ACTIONS(2510), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2510), - [aux_sym_number_token2] = ACTIONS(2510), - [anon_sym_This] = ACTIONS(2510), - [anon_sym_this] = ACTIONS(2510), - [anon_sym_THIS] = ACTIONS(2510), - [anon_sym_Super] = ACTIONS(2510), - [anon_sym_super] = ACTIONS(2510), - [anon_sym_SUPER] = ACTIONS(2510), - [anon_sym_True] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_TRUE] = ACTIONS(2510), - [anon_sym_False] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_FALSE] = ACTIONS(2510), - [anon_sym_Null] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2510), - [anon_sym_NULL] = ACTIONS(2510), - [anon_sym_Undefined] = ACTIONS(2510), - [anon_sym_undefined] = ACTIONS(2510), - [anon_sym_UNDEFINED] = ACTIONS(2510), - [anon_sym_get] = ACTIONS(2510), - [anon_sym_set] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(2510), - [sym_hash_empty] = ACTIONS(2512), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_QueryExecute] = ACTIONS(2510), - [anon_sym_queryexecute] = ACTIONS(2510), - [anon_sym_QUERYEXECUTE] = ACTIONS(2510), - [anon_sym_queryExecute] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_Abstract] = ACTIONS(2510), - [anon_sym_abstract] = ACTIONS(2510), - [anon_sym_ABSTRACT] = ACTIONS(2510), - [anon_sym_Component] = ACTIONS(2510), - [anon_sym_component] = ACTIONS(2510), - [anon_sym_COMPONENT] = ACTIONS(2510), - [anon_sym_Debugger] = ACTIONS(2510), - [anon_sym_debugger] = ACTIONS(2510), - [anon_sym_DEBUGGER] = ACTIONS(2510), - [anon_sym_Final] = ACTIONS(2510), - [anon_sym_final] = ACTIONS(2510), - [anon_sym_FINAL] = ACTIONS(2510), - [anon_sym_Function] = ACTIONS(2510), - [anon_sym_function] = ACTIONS(2510), - [anon_sym_FUNCTION] = ACTIONS(2510), - [anon_sym_In] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_IN] = ACTIONS(2510), - [anon_sym_Include] = ACTIONS(2510), - [anon_sym_include] = ACTIONS(2510), - [anon_sym_INCLUDE] = ACTIONS(2510), - [anon_sym_InstanceOf] = ACTIONS(2510), - [anon_sym_instanceof] = ACTIONS(2510), - [anon_sym_INSTANCEOF] = ACTIONS(2510), - [anon_sym_instanceOf] = ACTIONS(2510), - [anon_sym_New] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_NEW] = ACTIONS(2510), - [anon_sym_Package] = ACTIONS(2510), - [anon_sym_package] = ACTIONS(2510), - [anon_sym_PACKAGE] = ACTIONS(2510), - [anon_sym_Private] = ACTIONS(2510), - [anon_sym_private] = ACTIONS(2510), - [anon_sym_PRIVATE] = ACTIONS(2510), - [anon_sym_Public] = ACTIONS(2510), - [anon_sym_public] = ACTIONS(2510), - [anon_sym_PUBLIC] = ACTIONS(2510), - [anon_sym_Remote] = ACTIONS(2510), - [anon_sym_remote] = ACTIONS(2510), - [anon_sym_REMOTE] = ACTIONS(2510), - [anon_sym_Static] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_STATIC] = ACTIONS(2510), - [sym__automatic_semicolon] = ACTIONS(2512), - [sym__ternary_qmark] = ACTIONS(2512), - [sym__elvis_operator] = ACTIONS(2512), - [sym_logical_or] = ACTIONS(2512), - [sym_tag_linefeed] = ACTIONS(2512), - [sym__java_block_open] = ACTIONS(2512), - [sym__static_type_prefix] = ACTIONS(2512), + [sym_identifier] = ACTIONS(2524), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_Query] = ACTIONS(2524), + [anon_sym_query] = ACTIONS(2524), + [anon_sym_QUERY] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2524), + [sym_optional_chain] = ACTIONS(2526), + [sym_static_chain] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_BSLASH] = ACTIONS(2524), + [anon_sym_STAR_STAR] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2526), + [anon_sym_LT_GT] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2526), + [aux_sym_binary_expression_token1] = ACTIONS(2526), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [aux_sym_binary_expression_token2] = ACTIONS(2524), + [aux_sym_binary_expression_token3] = ACTIONS(2524), + [aux_sym_binary_expression_token4] = ACTIONS(2526), + [aux_sym_binary_expression_token5] = ACTIONS(2526), + [aux_sym_binary_expression_token6] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_unary_operator_token1] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2524), + [aux_sym_number_token2] = ACTIONS(2524), + [anon_sym_This] = ACTIONS(2524), + [anon_sym_this] = ACTIONS(2524), + [anon_sym_THIS] = ACTIONS(2524), + [anon_sym_Super] = ACTIONS(2524), + [anon_sym_super] = ACTIONS(2524), + [anon_sym_SUPER] = ACTIONS(2524), + [anon_sym_True] = ACTIONS(2524), + [anon_sym_true] = ACTIONS(2524), + [anon_sym_TRUE] = ACTIONS(2524), + [anon_sym_False] = ACTIONS(2524), + [anon_sym_false] = ACTIONS(2524), + [anon_sym_FALSE] = ACTIONS(2524), + [anon_sym_Null] = ACTIONS(2524), + [anon_sym_null] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_Undefined] = ACTIONS(2524), + [anon_sym_undefined] = ACTIONS(2524), + [anon_sym_UNDEFINED] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [sym_hash_empty] = ACTIONS(2526), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_QueryExecute] = ACTIONS(2524), + [anon_sym_queryexecute] = ACTIONS(2524), + [anon_sym_QUERYEXECUTE] = ACTIONS(2524), + [anon_sym_queryExecute] = ACTIONS(2524), + [anon_sym_BQUOTE] = ACTIONS(2526), + [anon_sym_Abstract] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_ABSTRACT] = ACTIONS(2524), + [anon_sym_Component] = ACTIONS(2524), + [anon_sym_component] = ACTIONS(2524), + [anon_sym_COMPONENT] = ACTIONS(2524), + [anon_sym_Debugger] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_DEBUGGER] = ACTIONS(2524), + [anon_sym_Final] = ACTIONS(2524), + [anon_sym_final] = ACTIONS(2524), + [anon_sym_FINAL] = ACTIONS(2524), + [anon_sym_Function] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_FUNCTION] = ACTIONS(2524), + [anon_sym_In] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_IN] = ACTIONS(2524), + [anon_sym_Include] = ACTIONS(2524), + [anon_sym_include] = ACTIONS(2524), + [anon_sym_INCLUDE] = ACTIONS(2524), + [anon_sym_InstanceOf] = ACTIONS(2524), + [anon_sym_instanceof] = ACTIONS(2524), + [anon_sym_INSTANCEOF] = ACTIONS(2524), + [anon_sym_instanceOf] = ACTIONS(2524), + [anon_sym_New] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_NEW] = ACTIONS(2524), + [anon_sym_Package] = ACTIONS(2524), + [anon_sym_package] = ACTIONS(2524), + [anon_sym_PACKAGE] = ACTIONS(2524), + [anon_sym_Private] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_PRIVATE] = ACTIONS(2524), + [anon_sym_Public] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_PUBLIC] = ACTIONS(2524), + [anon_sym_Remote] = ACTIONS(2524), + [anon_sym_remote] = ACTIONS(2524), + [anon_sym_REMOTE] = ACTIONS(2524), + [anon_sym_Static] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_STATIC] = ACTIONS(2524), + [sym__automatic_semicolon] = ACTIONS(2526), + [sym__ternary_qmark] = ACTIONS(2526), + [sym__elvis_operator] = ACTIONS(2526), + [sym_logical_or] = ACTIONS(2526), + [sym_tag_linefeed] = ACTIONS(2526), + [sym__java_block_open] = ACTIONS(2526), + [sym__static_type_prefix] = ACTIONS(2526), }, [STATE(528)] = { - [sym_identifier] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_COMMA] = ACTIONS(2516), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2516), - [anon_sym_Query] = ACTIONS(2514), - [anon_sym_query] = ACTIONS(2514), - [anon_sym_QUERY] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2514), - [sym_optional_chain] = ACTIONS(2516), - [sym_static_chain] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_GT_GT_GT] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_CARET] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2516), - [anon_sym_BSLASH] = ACTIONS(2514), - [anon_sym_STAR_STAR] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2516), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2516), - [anon_sym_LT_GT] = ACTIONS(2516), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2516), - [aux_sym_binary_expression_token1] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2516), - [anon_sym_GT] = ACTIONS(2514), - [aux_sym_binary_expression_token2] = ACTIONS(2514), - [aux_sym_binary_expression_token3] = ACTIONS(2514), - [aux_sym_binary_expression_token4] = ACTIONS(2516), - [aux_sym_binary_expression_token5] = ACTIONS(2516), - [aux_sym_binary_expression_token6] = ACTIONS(2516), - [anon_sym_QMARK_QMARK] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_TILDE] = ACTIONS(2516), - [aux_sym_unary_operator_token1] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2516), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2514), - [aux_sym_number_token2] = ACTIONS(2514), - [anon_sym_This] = ACTIONS(2514), - [anon_sym_this] = ACTIONS(2514), - [anon_sym_THIS] = ACTIONS(2514), - [anon_sym_Super] = ACTIONS(2514), - [anon_sym_super] = ACTIONS(2514), - [anon_sym_SUPER] = ACTIONS(2514), - [anon_sym_True] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2514), - [anon_sym_TRUE] = ACTIONS(2514), - [anon_sym_False] = ACTIONS(2514), - [anon_sym_false] = ACTIONS(2514), - [anon_sym_FALSE] = ACTIONS(2514), - [anon_sym_Null] = ACTIONS(2514), - [anon_sym_null] = ACTIONS(2514), - [anon_sym_NULL] = ACTIONS(2514), - [anon_sym_Undefined] = ACTIONS(2514), - [anon_sym_undefined] = ACTIONS(2514), - [anon_sym_UNDEFINED] = ACTIONS(2514), - [anon_sym_get] = ACTIONS(2514), - [anon_sym_set] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(2514), - [sym_hash_empty] = ACTIONS(2516), - [anon_sym_export] = ACTIONS(2514), - [anon_sym_QueryExecute] = ACTIONS(2514), - [anon_sym_queryexecute] = ACTIONS(2514), - [anon_sym_QUERYEXECUTE] = ACTIONS(2514), - [anon_sym_queryExecute] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_Abstract] = ACTIONS(2514), - [anon_sym_abstract] = ACTIONS(2514), - [anon_sym_ABSTRACT] = ACTIONS(2514), - [anon_sym_Component] = ACTIONS(2514), - [anon_sym_component] = ACTIONS(2514), - [anon_sym_COMPONENT] = ACTIONS(2514), - [anon_sym_Debugger] = ACTIONS(2514), - [anon_sym_debugger] = ACTIONS(2514), - [anon_sym_DEBUGGER] = ACTIONS(2514), - [anon_sym_Final] = ACTIONS(2514), - [anon_sym_final] = ACTIONS(2514), - [anon_sym_FINAL] = ACTIONS(2514), - [anon_sym_Function] = ACTIONS(2514), - [anon_sym_function] = ACTIONS(2514), - [anon_sym_FUNCTION] = ACTIONS(2514), - [anon_sym_In] = ACTIONS(2514), - [anon_sym_in] = ACTIONS(2514), - [anon_sym_IN] = ACTIONS(2514), - [anon_sym_Include] = ACTIONS(2514), - [anon_sym_include] = ACTIONS(2514), - [anon_sym_INCLUDE] = ACTIONS(2514), - [anon_sym_InstanceOf] = ACTIONS(2514), - [anon_sym_instanceof] = ACTIONS(2514), - [anon_sym_INSTANCEOF] = ACTIONS(2514), - [anon_sym_instanceOf] = ACTIONS(2514), - [anon_sym_New] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_NEW] = ACTIONS(2514), - [anon_sym_Package] = ACTIONS(2514), - [anon_sym_package] = ACTIONS(2514), - [anon_sym_PACKAGE] = ACTIONS(2514), - [anon_sym_Private] = ACTIONS(2514), - [anon_sym_private] = ACTIONS(2514), - [anon_sym_PRIVATE] = ACTIONS(2514), - [anon_sym_Public] = ACTIONS(2514), - [anon_sym_public] = ACTIONS(2514), - [anon_sym_PUBLIC] = ACTIONS(2514), - [anon_sym_Remote] = ACTIONS(2514), - [anon_sym_remote] = ACTIONS(2514), - [anon_sym_REMOTE] = ACTIONS(2514), - [anon_sym_Static] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_STATIC] = ACTIONS(2514), - [sym__automatic_semicolon] = ACTIONS(2516), - [sym__ternary_qmark] = ACTIONS(2516), - [sym__elvis_operator] = ACTIONS(2516), - [sym_logical_or] = ACTIONS(2516), - [sym_tag_linefeed] = ACTIONS(2516), - [sym__java_block_open] = ACTIONS(2516), - [sym__static_type_prefix] = ACTIONS(2516), + [sym_identifier] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_Query] = ACTIONS(2528), + [anon_sym_query] = ACTIONS(2528), + [anon_sym_QUERY] = ACTIONS(2528), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2530), + [aux_sym_unary_operator_token1] = ACTIONS(2528), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2528), + [aux_sym_number_token2] = ACTIONS(2528), + [anon_sym_This] = ACTIONS(2528), + [anon_sym_this] = ACTIONS(2528), + [anon_sym_THIS] = ACTIONS(2528), + [anon_sym_Super] = ACTIONS(2528), + [anon_sym_super] = ACTIONS(2528), + [anon_sym_SUPER] = ACTIONS(2528), + [anon_sym_True] = ACTIONS(2528), + [anon_sym_true] = ACTIONS(2528), + [anon_sym_TRUE] = ACTIONS(2528), + [anon_sym_False] = ACTIONS(2528), + [anon_sym_false] = ACTIONS(2528), + [anon_sym_FALSE] = ACTIONS(2528), + [anon_sym_Null] = ACTIONS(2528), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_Undefined] = ACTIONS(2528), + [anon_sym_undefined] = ACTIONS(2528), + [anon_sym_UNDEFINED] = ACTIONS(2528), + [anon_sym_get] = ACTIONS(2528), + [anon_sym_set] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [sym_hash_empty] = ACTIONS(2530), + [anon_sym_export] = ACTIONS(2528), + [anon_sym_QueryExecute] = ACTIONS(2528), + [anon_sym_queryexecute] = ACTIONS(2528), + [anon_sym_QUERYEXECUTE] = ACTIONS(2528), + [anon_sym_queryExecute] = ACTIONS(2528), + [anon_sym_BQUOTE] = ACTIONS(2530), + [anon_sym_Abstract] = ACTIONS(2528), + [anon_sym_abstract] = ACTIONS(2528), + [anon_sym_ABSTRACT] = ACTIONS(2528), + [anon_sym_Component] = ACTIONS(2528), + [anon_sym_component] = ACTIONS(2528), + [anon_sym_COMPONENT] = ACTIONS(2528), + [anon_sym_Debugger] = ACTIONS(2528), + [anon_sym_debugger] = ACTIONS(2528), + [anon_sym_DEBUGGER] = ACTIONS(2528), + [anon_sym_Final] = ACTIONS(2528), + [anon_sym_final] = ACTIONS(2528), + [anon_sym_FINAL] = ACTIONS(2528), + [anon_sym_Function] = ACTIONS(2528), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_FUNCTION] = ACTIONS(2528), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(2528), + [anon_sym_include] = ACTIONS(2528), + [anon_sym_INCLUDE] = ACTIONS(2528), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_New] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_NEW] = ACTIONS(2528), + [anon_sym_Package] = ACTIONS(2528), + [anon_sym_package] = ACTIONS(2528), + [anon_sym_PACKAGE] = ACTIONS(2528), + [anon_sym_Private] = ACTIONS(2528), + [anon_sym_private] = ACTIONS(2528), + [anon_sym_PRIVATE] = ACTIONS(2528), + [anon_sym_Public] = ACTIONS(2528), + [anon_sym_public] = ACTIONS(2528), + [anon_sym_PUBLIC] = ACTIONS(2528), + [anon_sym_Remote] = ACTIONS(2528), + [anon_sym_remote] = ACTIONS(2528), + [anon_sym_REMOTE] = ACTIONS(2528), + [anon_sym_Static] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_STATIC] = ACTIONS(2528), + [sym__automatic_semicolon] = ACTIONS(2530), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_tag_linefeed] = ACTIONS(2530), + [sym__java_block_open] = ACTIONS(2530), + [sym__static_type_prefix] = ACTIONS(2530), }, [STATE(529)] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_DOT] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_Query] = ACTIONS(2518), - [anon_sym_query] = ACTIONS(2518), - [anon_sym_QUERY] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2518), - [sym_optional_chain] = ACTIONS(2520), - [sym_static_chain] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_GT_GT_GT] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_BSLASH] = ACTIONS(2518), - [anon_sym_STAR_STAR] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2520), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2520), - [anon_sym_LT_GT] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2520), - [aux_sym_binary_expression_token1] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [aux_sym_binary_expression_token2] = ACTIONS(2518), - [aux_sym_binary_expression_token3] = ACTIONS(2518), - [aux_sym_binary_expression_token4] = ACTIONS(2520), - [aux_sym_binary_expression_token5] = ACTIONS(2520), - [aux_sym_binary_expression_token6] = ACTIONS(2520), - [anon_sym_QMARK_QMARK] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_unary_operator_token1] = ACTIONS(2518), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2518), - [aux_sym_number_token2] = ACTIONS(2518), - [anon_sym_This] = ACTIONS(2518), - [anon_sym_this] = ACTIONS(2518), - [anon_sym_THIS] = ACTIONS(2518), - [anon_sym_Super] = ACTIONS(2518), - [anon_sym_super] = ACTIONS(2518), - [anon_sym_SUPER] = ACTIONS(2518), - [anon_sym_True] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2518), - [anon_sym_TRUE] = ACTIONS(2518), - [anon_sym_False] = ACTIONS(2518), - [anon_sym_false] = ACTIONS(2518), - [anon_sym_FALSE] = ACTIONS(2518), - [anon_sym_Null] = ACTIONS(2518), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_NULL] = ACTIONS(2518), - [anon_sym_Undefined] = ACTIONS(2518), - [anon_sym_undefined] = ACTIONS(2518), - [anon_sym_UNDEFINED] = ACTIONS(2518), - [anon_sym_get] = ACTIONS(2518), - [anon_sym_set] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [sym_hash_empty] = ACTIONS(2520), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_QueryExecute] = ACTIONS(2518), - [anon_sym_queryexecute] = ACTIONS(2518), - [anon_sym_QUERYEXECUTE] = ACTIONS(2518), - [anon_sym_queryExecute] = ACTIONS(2518), - [anon_sym_BQUOTE] = ACTIONS(2520), - [anon_sym_Abstract] = ACTIONS(2518), - [anon_sym_abstract] = ACTIONS(2518), - [anon_sym_ABSTRACT] = ACTIONS(2518), - [anon_sym_Component] = ACTIONS(2518), - [anon_sym_component] = ACTIONS(2518), - [anon_sym_COMPONENT] = ACTIONS(2518), - [anon_sym_Debugger] = ACTIONS(2518), - [anon_sym_debugger] = ACTIONS(2518), - [anon_sym_DEBUGGER] = ACTIONS(2518), - [anon_sym_Final] = ACTIONS(2518), - [anon_sym_final] = ACTIONS(2518), - [anon_sym_FINAL] = ACTIONS(2518), - [anon_sym_Function] = ACTIONS(2518), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_FUNCTION] = ACTIONS(2518), - [anon_sym_In] = ACTIONS(2518), - [anon_sym_in] = ACTIONS(2518), - [anon_sym_IN] = ACTIONS(2518), - [anon_sym_Include] = ACTIONS(2518), - [anon_sym_include] = ACTIONS(2518), - [anon_sym_INCLUDE] = ACTIONS(2518), - [anon_sym_InstanceOf] = ACTIONS(2518), - [anon_sym_instanceof] = ACTIONS(2518), - [anon_sym_INSTANCEOF] = ACTIONS(2518), - [anon_sym_instanceOf] = ACTIONS(2518), - [anon_sym_New] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_NEW] = ACTIONS(2518), - [anon_sym_Package] = ACTIONS(2518), - [anon_sym_package] = ACTIONS(2518), - [anon_sym_PACKAGE] = ACTIONS(2518), - [anon_sym_Private] = ACTIONS(2518), - [anon_sym_private] = ACTIONS(2518), - [anon_sym_PRIVATE] = ACTIONS(2518), - [anon_sym_Public] = ACTIONS(2518), - [anon_sym_public] = ACTIONS(2518), - [anon_sym_PUBLIC] = ACTIONS(2518), - [anon_sym_Remote] = ACTIONS(2518), - [anon_sym_remote] = ACTIONS(2518), - [anon_sym_REMOTE] = ACTIONS(2518), - [anon_sym_Static] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_STATIC] = ACTIONS(2518), - [sym__automatic_semicolon] = ACTIONS(2520), - [sym__ternary_qmark] = ACTIONS(2520), - [sym__elvis_operator] = ACTIONS(2520), - [sym_logical_or] = ACTIONS(2520), - [sym_tag_linefeed] = ACTIONS(2520), - [sym__java_block_open] = ACTIONS(2520), - [sym__static_type_prefix] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_Query] = ACTIONS(2532), + [anon_sym_query] = ACTIONS(2532), + [anon_sym_QUERY] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2532), + [sym_optional_chain] = ACTIONS(2534), + [sym_static_chain] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_BSLASH] = ACTIONS(2532), + [anon_sym_STAR_STAR] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2534), + [anon_sym_LT_GT] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2534), + [aux_sym_binary_expression_token1] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [aux_sym_binary_expression_token2] = ACTIONS(2532), + [aux_sym_binary_expression_token3] = ACTIONS(2532), + [aux_sym_binary_expression_token4] = ACTIONS(2534), + [aux_sym_binary_expression_token5] = ACTIONS(2534), + [aux_sym_binary_expression_token6] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2534), + [aux_sym_unary_operator_token1] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2532), + [aux_sym_number_token2] = ACTIONS(2532), + [anon_sym_This] = ACTIONS(2532), + [anon_sym_this] = ACTIONS(2532), + [anon_sym_THIS] = ACTIONS(2532), + [anon_sym_Super] = ACTIONS(2532), + [anon_sym_super] = ACTIONS(2532), + [anon_sym_SUPER] = ACTIONS(2532), + [anon_sym_True] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_TRUE] = ACTIONS(2532), + [anon_sym_False] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [anon_sym_FALSE] = ACTIONS(2532), + [anon_sym_Null] = ACTIONS(2532), + [anon_sym_null] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_Undefined] = ACTIONS(2532), + [anon_sym_undefined] = ACTIONS(2532), + [anon_sym_UNDEFINED] = ACTIONS(2532), + [anon_sym_get] = ACTIONS(2532), + [anon_sym_set] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [sym_hash_empty] = ACTIONS(2534), + [anon_sym_export] = ACTIONS(2532), + [anon_sym_QueryExecute] = ACTIONS(2532), + [anon_sym_queryexecute] = ACTIONS(2532), + [anon_sym_QUERYEXECUTE] = ACTIONS(2532), + [anon_sym_queryExecute] = ACTIONS(2532), + [anon_sym_BQUOTE] = ACTIONS(2534), + [anon_sym_Abstract] = ACTIONS(2532), + [anon_sym_abstract] = ACTIONS(2532), + [anon_sym_ABSTRACT] = ACTIONS(2532), + [anon_sym_Component] = ACTIONS(2532), + [anon_sym_component] = ACTIONS(2532), + [anon_sym_COMPONENT] = ACTIONS(2532), + [anon_sym_Debugger] = ACTIONS(2532), + [anon_sym_debugger] = ACTIONS(2532), + [anon_sym_DEBUGGER] = ACTIONS(2532), + [anon_sym_Final] = ACTIONS(2532), + [anon_sym_final] = ACTIONS(2532), + [anon_sym_FINAL] = ACTIONS(2532), + [anon_sym_Function] = ACTIONS(2532), + [anon_sym_function] = ACTIONS(2532), + [anon_sym_FUNCTION] = ACTIONS(2532), + [anon_sym_In] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_IN] = ACTIONS(2532), + [anon_sym_Include] = ACTIONS(2532), + [anon_sym_include] = ACTIONS(2532), + [anon_sym_INCLUDE] = ACTIONS(2532), + [anon_sym_InstanceOf] = ACTIONS(2532), + [anon_sym_instanceof] = ACTIONS(2532), + [anon_sym_INSTANCEOF] = ACTIONS(2532), + [anon_sym_instanceOf] = ACTIONS(2532), + [anon_sym_New] = ACTIONS(2532), + [anon_sym_new] = ACTIONS(2532), + [anon_sym_NEW] = ACTIONS(2532), + [anon_sym_Package] = ACTIONS(2532), + [anon_sym_package] = ACTIONS(2532), + [anon_sym_PACKAGE] = ACTIONS(2532), + [anon_sym_Private] = ACTIONS(2532), + [anon_sym_private] = ACTIONS(2532), + [anon_sym_PRIVATE] = ACTIONS(2532), + [anon_sym_Public] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), + [anon_sym_PUBLIC] = ACTIONS(2532), + [anon_sym_Remote] = ACTIONS(2532), + [anon_sym_remote] = ACTIONS(2532), + [anon_sym_REMOTE] = ACTIONS(2532), + [anon_sym_Static] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_STATIC] = ACTIONS(2532), + [sym__automatic_semicolon] = ACTIONS(2534), + [sym__ternary_qmark] = ACTIONS(2534), + [sym__elvis_operator] = ACTIONS(2534), + [sym_logical_or] = ACTIONS(2534), + [sym_tag_linefeed] = ACTIONS(2534), + [sym__java_block_open] = ACTIONS(2534), + [sym__static_type_prefix] = ACTIONS(2534), }, [STATE(530)] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_COMMA] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_Query] = ACTIONS(2522), - [anon_sym_query] = ACTIONS(2522), - [anon_sym_QUERY] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2522), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2524), - [anon_sym_BSLASH] = ACTIONS(2522), - [anon_sym_STAR_STAR] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2524), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2524), - [anon_sym_LT_GT] = ACTIONS(2524), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2524), - [aux_sym_binary_expression_token1] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2522), - [aux_sym_binary_expression_token2] = ACTIONS(2522), - [aux_sym_binary_expression_token3] = ACTIONS(2522), - [aux_sym_binary_expression_token4] = ACTIONS(2524), - [aux_sym_binary_expression_token5] = ACTIONS(2524), - [aux_sym_binary_expression_token6] = ACTIONS(2524), - [anon_sym_QMARK_QMARK] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2524), - [aux_sym_unary_operator_token1] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2522), - [aux_sym_number_token2] = ACTIONS(2522), - [anon_sym_This] = ACTIONS(2522), - [anon_sym_this] = ACTIONS(2522), - [anon_sym_THIS] = ACTIONS(2522), - [anon_sym_Super] = ACTIONS(2522), - [anon_sym_super] = ACTIONS(2522), - [anon_sym_SUPER] = ACTIONS(2522), - [anon_sym_True] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2522), - [anon_sym_TRUE] = ACTIONS(2522), - [anon_sym_False] = ACTIONS(2522), - [anon_sym_false] = ACTIONS(2522), - [anon_sym_FALSE] = ACTIONS(2522), - [anon_sym_Null] = ACTIONS(2522), - [anon_sym_null] = ACTIONS(2522), - [anon_sym_NULL] = ACTIONS(2522), - [anon_sym_Undefined] = ACTIONS(2522), - [anon_sym_undefined] = ACTIONS(2522), - [anon_sym_UNDEFINED] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [sym_hash_empty] = ACTIONS(2524), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_QueryExecute] = ACTIONS(2522), - [anon_sym_queryexecute] = ACTIONS(2522), - [anon_sym_QUERYEXECUTE] = ACTIONS(2522), - [anon_sym_queryExecute] = ACTIONS(2522), - [anon_sym_BQUOTE] = ACTIONS(2524), - [anon_sym_Abstract] = ACTIONS(2522), - [anon_sym_abstract] = ACTIONS(2522), - [anon_sym_ABSTRACT] = ACTIONS(2522), - [anon_sym_Component] = ACTIONS(2522), - [anon_sym_component] = ACTIONS(2522), - [anon_sym_COMPONENT] = ACTIONS(2522), - [anon_sym_Debugger] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_DEBUGGER] = ACTIONS(2522), - [anon_sym_Final] = ACTIONS(2522), - [anon_sym_final] = ACTIONS(2522), - [anon_sym_FINAL] = ACTIONS(2522), - [anon_sym_Function] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_FUNCTION] = ACTIONS(2522), - [anon_sym_In] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_IN] = ACTIONS(2522), - [anon_sym_Include] = ACTIONS(2522), - [anon_sym_include] = ACTIONS(2522), - [anon_sym_INCLUDE] = ACTIONS(2522), - [anon_sym_InstanceOf] = ACTIONS(2522), - [anon_sym_instanceof] = ACTIONS(2522), - [anon_sym_INSTANCEOF] = ACTIONS(2522), - [anon_sym_instanceOf] = ACTIONS(2522), - [anon_sym_New] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_NEW] = ACTIONS(2522), - [anon_sym_Package] = ACTIONS(2522), - [anon_sym_package] = ACTIONS(2522), - [anon_sym_PACKAGE] = ACTIONS(2522), - [anon_sym_Private] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_PRIVATE] = ACTIONS(2522), - [anon_sym_Public] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_PUBLIC] = ACTIONS(2522), - [anon_sym_Remote] = ACTIONS(2522), - [anon_sym_remote] = ACTIONS(2522), - [anon_sym_REMOTE] = ACTIONS(2522), - [anon_sym_Static] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_STATIC] = ACTIONS(2522), - [sym__automatic_semicolon] = ACTIONS(2524), - [sym__ternary_qmark] = ACTIONS(2524), - [sym__elvis_operator] = ACTIONS(2524), - [sym_logical_or] = ACTIONS(2524), - [sym_tag_linefeed] = ACTIONS(2524), - [sym__java_block_open] = ACTIONS(2524), - [sym__static_type_prefix] = ACTIONS(2524), + [sym_identifier] = ACTIONS(2536), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_Query] = ACTIONS(2536), + [anon_sym_query] = ACTIONS(2536), + [anon_sym_QUERY] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2536), + [sym_optional_chain] = ACTIONS(2538), + [sym_static_chain] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_BSLASH] = ACTIONS(2536), + [anon_sym_STAR_STAR] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2538), + [anon_sym_LT_GT] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2538), + [aux_sym_binary_expression_token1] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [aux_sym_binary_expression_token2] = ACTIONS(2536), + [aux_sym_binary_expression_token3] = ACTIONS(2536), + [aux_sym_binary_expression_token4] = ACTIONS(2538), + [aux_sym_binary_expression_token5] = ACTIONS(2538), + [aux_sym_binary_expression_token6] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_TILDE] = ACTIONS(2538), + [aux_sym_unary_operator_token1] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2536), + [aux_sym_number_token2] = ACTIONS(2536), + [anon_sym_This] = ACTIONS(2536), + [anon_sym_this] = ACTIONS(2536), + [anon_sym_THIS] = ACTIONS(2536), + [anon_sym_Super] = ACTIONS(2536), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_SUPER] = ACTIONS(2536), + [anon_sym_True] = ACTIONS(2536), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_TRUE] = ACTIONS(2536), + [anon_sym_False] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [anon_sym_FALSE] = ACTIONS(2536), + [anon_sym_Null] = ACTIONS(2536), + [anon_sym_null] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_Undefined] = ACTIONS(2536), + [anon_sym_undefined] = ACTIONS(2536), + [anon_sym_UNDEFINED] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [sym_hash_empty] = ACTIONS(2538), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_QueryExecute] = ACTIONS(2536), + [anon_sym_queryexecute] = ACTIONS(2536), + [anon_sym_QUERYEXECUTE] = ACTIONS(2536), + [anon_sym_queryExecute] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2538), + [anon_sym_Abstract] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_ABSTRACT] = ACTIONS(2536), + [anon_sym_Component] = ACTIONS(2536), + [anon_sym_component] = ACTIONS(2536), + [anon_sym_COMPONENT] = ACTIONS(2536), + [anon_sym_Debugger] = ACTIONS(2536), + [anon_sym_debugger] = ACTIONS(2536), + [anon_sym_DEBUGGER] = ACTIONS(2536), + [anon_sym_Final] = ACTIONS(2536), + [anon_sym_final] = ACTIONS(2536), + [anon_sym_FINAL] = ACTIONS(2536), + [anon_sym_Function] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_FUNCTION] = ACTIONS(2536), + [anon_sym_In] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_IN] = ACTIONS(2536), + [anon_sym_Include] = ACTIONS(2536), + [anon_sym_include] = ACTIONS(2536), + [anon_sym_INCLUDE] = ACTIONS(2536), + [anon_sym_InstanceOf] = ACTIONS(2536), + [anon_sym_instanceof] = ACTIONS(2536), + [anon_sym_INSTANCEOF] = ACTIONS(2536), + [anon_sym_instanceOf] = ACTIONS(2536), + [anon_sym_New] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_NEW] = ACTIONS(2536), + [anon_sym_Package] = ACTIONS(2536), + [anon_sym_package] = ACTIONS(2536), + [anon_sym_PACKAGE] = ACTIONS(2536), + [anon_sym_Private] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_PRIVATE] = ACTIONS(2536), + [anon_sym_Public] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_PUBLIC] = ACTIONS(2536), + [anon_sym_Remote] = ACTIONS(2536), + [anon_sym_remote] = ACTIONS(2536), + [anon_sym_REMOTE] = ACTIONS(2536), + [anon_sym_Static] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_STATIC] = ACTIONS(2536), + [sym__automatic_semicolon] = ACTIONS(2538), + [sym__ternary_qmark] = ACTIONS(2538), + [sym__elvis_operator] = ACTIONS(2538), + [sym_logical_or] = ACTIONS(2538), + [sym_tag_linefeed] = ACTIONS(2538), + [sym__java_block_open] = ACTIONS(2538), + [sym__static_type_prefix] = ACTIONS(2538), }, [STATE(531)] = { - [sym_identifier] = ACTIONS(2526), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_COMMA] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_Query] = ACTIONS(2526), - [anon_sym_query] = ACTIONS(2526), - [anon_sym_QUERY] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2526), - [sym_optional_chain] = ACTIONS(2528), - [sym_static_chain] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_GT_GT_GT] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_BSLASH] = ACTIONS(2526), - [anon_sym_STAR_STAR] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2528), - [anon_sym_LT_GT] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2528), - [aux_sym_binary_expression_token1] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [aux_sym_binary_expression_token2] = ACTIONS(2526), - [aux_sym_binary_expression_token3] = ACTIONS(2526), - [aux_sym_binary_expression_token4] = ACTIONS(2528), - [aux_sym_binary_expression_token5] = ACTIONS(2528), - [aux_sym_binary_expression_token6] = ACTIONS(2528), - [anon_sym_QMARK_QMARK] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2528), - [aux_sym_unary_operator_token1] = ACTIONS(2526), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2526), - [aux_sym_number_token2] = ACTIONS(2526), - [anon_sym_This] = ACTIONS(2526), - [anon_sym_this] = ACTIONS(2526), - [anon_sym_THIS] = ACTIONS(2526), - [anon_sym_Super] = ACTIONS(2526), - [anon_sym_super] = ACTIONS(2526), - [anon_sym_SUPER] = ACTIONS(2526), - [anon_sym_True] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2526), - [anon_sym_TRUE] = ACTIONS(2526), - [anon_sym_False] = ACTIONS(2526), - [anon_sym_false] = ACTIONS(2526), - [anon_sym_FALSE] = ACTIONS(2526), - [anon_sym_Null] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2526), - [anon_sym_NULL] = ACTIONS(2526), - [anon_sym_Undefined] = ACTIONS(2526), - [anon_sym_undefined] = ACTIONS(2526), - [anon_sym_UNDEFINED] = ACTIONS(2526), - [anon_sym_get] = ACTIONS(2526), - [anon_sym_set] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(2526), - [sym_hash_empty] = ACTIONS(2528), - [anon_sym_export] = ACTIONS(2526), - [anon_sym_QueryExecute] = ACTIONS(2526), - [anon_sym_queryexecute] = ACTIONS(2526), - [anon_sym_QUERYEXECUTE] = ACTIONS(2526), - [anon_sym_queryExecute] = ACTIONS(2526), - [anon_sym_BQUOTE] = ACTIONS(2528), - [anon_sym_Abstract] = ACTIONS(2526), - [anon_sym_abstract] = ACTIONS(2526), - [anon_sym_ABSTRACT] = ACTIONS(2526), - [anon_sym_Component] = ACTIONS(2526), - [anon_sym_component] = ACTIONS(2526), - [anon_sym_COMPONENT] = ACTIONS(2526), - [anon_sym_Debugger] = ACTIONS(2526), - [anon_sym_debugger] = ACTIONS(2526), - [anon_sym_DEBUGGER] = ACTIONS(2526), - [anon_sym_Final] = ACTIONS(2526), - [anon_sym_final] = ACTIONS(2526), - [anon_sym_FINAL] = ACTIONS(2526), - [anon_sym_Function] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2526), - [anon_sym_FUNCTION] = ACTIONS(2526), - [anon_sym_In] = ACTIONS(2526), - [anon_sym_in] = ACTIONS(2526), - [anon_sym_IN] = ACTIONS(2526), - [anon_sym_Include] = ACTIONS(2526), - [anon_sym_include] = ACTIONS(2526), - [anon_sym_INCLUDE] = ACTIONS(2526), - [anon_sym_InstanceOf] = ACTIONS(2526), - [anon_sym_instanceof] = ACTIONS(2526), - [anon_sym_INSTANCEOF] = ACTIONS(2526), - [anon_sym_instanceOf] = ACTIONS(2526), - [anon_sym_New] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_NEW] = ACTIONS(2526), - [anon_sym_Package] = ACTIONS(2526), - [anon_sym_package] = ACTIONS(2526), - [anon_sym_PACKAGE] = ACTIONS(2526), - [anon_sym_Private] = ACTIONS(2526), - [anon_sym_private] = ACTIONS(2526), - [anon_sym_PRIVATE] = ACTIONS(2526), - [anon_sym_Public] = ACTIONS(2526), - [anon_sym_public] = ACTIONS(2526), - [anon_sym_PUBLIC] = ACTIONS(2526), - [anon_sym_Remote] = ACTIONS(2526), - [anon_sym_remote] = ACTIONS(2526), - [anon_sym_REMOTE] = ACTIONS(2526), - [anon_sym_Static] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_STATIC] = ACTIONS(2526), - [sym__automatic_semicolon] = ACTIONS(2528), - [sym__ternary_qmark] = ACTIONS(2528), - [sym__elvis_operator] = ACTIONS(2528), - [sym_logical_or] = ACTIONS(2528), - [sym_tag_linefeed] = ACTIONS(2528), - [sym__java_block_open] = ACTIONS(2528), - [sym__static_type_prefix] = ACTIONS(2528), + [sym_identifier] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_COMMA] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_Query] = ACTIONS(2540), + [anon_sym_query] = ACTIONS(2540), + [anon_sym_QUERY] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2540), + [sym_optional_chain] = ACTIONS(2542), + [sym_static_chain] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_BSLASH] = ACTIONS(2540), + [anon_sym_STAR_STAR] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2540), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2542), + [anon_sym_LT_GT] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2540), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2542), + [aux_sym_binary_expression_token1] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [aux_sym_binary_expression_token2] = ACTIONS(2540), + [aux_sym_binary_expression_token3] = ACTIONS(2540), + [aux_sym_binary_expression_token4] = ACTIONS(2542), + [aux_sym_binary_expression_token5] = ACTIONS(2542), + [aux_sym_binary_expression_token6] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2542), + [aux_sym_unary_operator_token1] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2540), + [aux_sym_number_token2] = ACTIONS(2540), + [anon_sym_This] = ACTIONS(2540), + [anon_sym_this] = ACTIONS(2540), + [anon_sym_THIS] = ACTIONS(2540), + [anon_sym_Super] = ACTIONS(2540), + [anon_sym_super] = ACTIONS(2540), + [anon_sym_SUPER] = ACTIONS(2540), + [anon_sym_True] = ACTIONS(2540), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_TRUE] = ACTIONS(2540), + [anon_sym_False] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [anon_sym_FALSE] = ACTIONS(2540), + [anon_sym_Null] = ACTIONS(2540), + [anon_sym_null] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_Undefined] = ACTIONS(2540), + [anon_sym_undefined] = ACTIONS(2540), + [anon_sym_UNDEFINED] = ACTIONS(2540), + [anon_sym_get] = ACTIONS(2540), + [anon_sym_set] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [sym_hash_empty] = ACTIONS(2542), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_QueryExecute] = ACTIONS(2540), + [anon_sym_queryexecute] = ACTIONS(2540), + [anon_sym_QUERYEXECUTE] = ACTIONS(2540), + [anon_sym_queryExecute] = ACTIONS(2540), + [anon_sym_BQUOTE] = ACTIONS(2542), + [anon_sym_Abstract] = ACTIONS(2540), + [anon_sym_abstract] = ACTIONS(2540), + [anon_sym_ABSTRACT] = ACTIONS(2540), + [anon_sym_Component] = ACTIONS(2540), + [anon_sym_component] = ACTIONS(2540), + [anon_sym_COMPONENT] = ACTIONS(2540), + [anon_sym_Debugger] = ACTIONS(2540), + [anon_sym_debugger] = ACTIONS(2540), + [anon_sym_DEBUGGER] = ACTIONS(2540), + [anon_sym_Final] = ACTIONS(2540), + [anon_sym_final] = ACTIONS(2540), + [anon_sym_FINAL] = ACTIONS(2540), + [anon_sym_Function] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_FUNCTION] = ACTIONS(2540), + [anon_sym_In] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_IN] = ACTIONS(2540), + [anon_sym_Include] = ACTIONS(2540), + [anon_sym_include] = ACTIONS(2540), + [anon_sym_INCLUDE] = ACTIONS(2540), + [anon_sym_InstanceOf] = ACTIONS(2540), + [anon_sym_instanceof] = ACTIONS(2540), + [anon_sym_INSTANCEOF] = ACTIONS(2540), + [anon_sym_instanceOf] = ACTIONS(2540), + [anon_sym_New] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2540), + [anon_sym_NEW] = ACTIONS(2540), + [anon_sym_Package] = ACTIONS(2540), + [anon_sym_package] = ACTIONS(2540), + [anon_sym_PACKAGE] = ACTIONS(2540), + [anon_sym_Private] = ACTIONS(2540), + [anon_sym_private] = ACTIONS(2540), + [anon_sym_PRIVATE] = ACTIONS(2540), + [anon_sym_Public] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2540), + [anon_sym_PUBLIC] = ACTIONS(2540), + [anon_sym_Remote] = ACTIONS(2540), + [anon_sym_remote] = ACTIONS(2540), + [anon_sym_REMOTE] = ACTIONS(2540), + [anon_sym_Static] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_STATIC] = ACTIONS(2540), + [sym__automatic_semicolon] = ACTIONS(2542), + [sym__ternary_qmark] = ACTIONS(2542), + [sym__elvis_operator] = ACTIONS(2542), + [sym_logical_or] = ACTIONS(2542), + [sym_tag_linefeed] = ACTIONS(2542), + [sym__java_block_open] = ACTIONS(2542), + [sym__static_type_prefix] = ACTIONS(2542), }, [STATE(532)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Catch] = ACTIONS(1686), - [anon_sym_catch] = ACTIONS(1686), - [anon_sym_CATCH] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_Finally] = ACTIONS(1686), - [anon_sym_finally] = ACTIONS(1686), - [anon_sym_FINALLY] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [sym_identifier] = ACTIONS(2544), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_COMMA] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2544), + [anon_sym_query] = ACTIONS(2544), + [anon_sym_QUERY] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2544), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_BSLASH] = ACTIONS(2544), + [anon_sym_STAR_STAR] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2544), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2546), + [anon_sym_LT_GT] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2544), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2546), + [aux_sym_binary_expression_token1] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [aux_sym_binary_expression_token2] = ACTIONS(2544), + [aux_sym_binary_expression_token3] = ACTIONS(2544), + [aux_sym_binary_expression_token4] = ACTIONS(2546), + [aux_sym_binary_expression_token5] = ACTIONS(2546), + [aux_sym_binary_expression_token6] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_TILDE] = ACTIONS(2546), + [aux_sym_unary_operator_token1] = ACTIONS(2544), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2544), + [aux_sym_number_token2] = ACTIONS(2544), + [anon_sym_This] = ACTIONS(2544), + [anon_sym_this] = ACTIONS(2544), + [anon_sym_THIS] = ACTIONS(2544), + [anon_sym_Super] = ACTIONS(2544), + [anon_sym_super] = ACTIONS(2544), + [anon_sym_SUPER] = ACTIONS(2544), + [anon_sym_True] = ACTIONS(2544), + [anon_sym_true] = ACTIONS(2544), + [anon_sym_TRUE] = ACTIONS(2544), + [anon_sym_False] = ACTIONS(2544), + [anon_sym_false] = ACTIONS(2544), + [anon_sym_FALSE] = ACTIONS(2544), + [anon_sym_Null] = ACTIONS(2544), + [anon_sym_null] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_Undefined] = ACTIONS(2544), + [anon_sym_undefined] = ACTIONS(2544), + [anon_sym_UNDEFINED] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [sym_hash_empty] = ACTIONS(2546), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_QueryExecute] = ACTIONS(2544), + [anon_sym_queryexecute] = ACTIONS(2544), + [anon_sym_QUERYEXECUTE] = ACTIONS(2544), + [anon_sym_queryExecute] = ACTIONS(2544), + [anon_sym_BQUOTE] = ACTIONS(2546), + [anon_sym_Abstract] = ACTIONS(2544), + [anon_sym_abstract] = ACTIONS(2544), + [anon_sym_ABSTRACT] = ACTIONS(2544), + [anon_sym_Component] = ACTIONS(2544), + [anon_sym_component] = ACTIONS(2544), + [anon_sym_COMPONENT] = ACTIONS(2544), + [anon_sym_Debugger] = ACTIONS(2544), + [anon_sym_debugger] = ACTIONS(2544), + [anon_sym_DEBUGGER] = ACTIONS(2544), + [anon_sym_Final] = ACTIONS(2544), + [anon_sym_final] = ACTIONS(2544), + [anon_sym_FINAL] = ACTIONS(2544), + [anon_sym_Function] = ACTIONS(2544), + [anon_sym_function] = ACTIONS(2544), + [anon_sym_FUNCTION] = ACTIONS(2544), + [anon_sym_In] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_IN] = ACTIONS(2544), + [anon_sym_Include] = ACTIONS(2544), + [anon_sym_include] = ACTIONS(2544), + [anon_sym_INCLUDE] = ACTIONS(2544), + [anon_sym_InstanceOf] = ACTIONS(2544), + [anon_sym_instanceof] = ACTIONS(2544), + [anon_sym_INSTANCEOF] = ACTIONS(2544), + [anon_sym_instanceOf] = ACTIONS(2544), + [anon_sym_New] = ACTIONS(2544), + [anon_sym_new] = ACTIONS(2544), + [anon_sym_NEW] = ACTIONS(2544), + [anon_sym_Package] = ACTIONS(2544), + [anon_sym_package] = ACTIONS(2544), + [anon_sym_PACKAGE] = ACTIONS(2544), + [anon_sym_Private] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_PRIVATE] = ACTIONS(2544), + [anon_sym_Public] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_PUBLIC] = ACTIONS(2544), + [anon_sym_Remote] = ACTIONS(2544), + [anon_sym_remote] = ACTIONS(2544), + [anon_sym_REMOTE] = ACTIONS(2544), + [anon_sym_Static] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_STATIC] = ACTIONS(2544), + [sym__automatic_semicolon] = ACTIONS(2546), + [sym__ternary_qmark] = ACTIONS(2546), + [sym__elvis_operator] = ACTIONS(2546), + [sym_logical_or] = ACTIONS(2546), + [sym_tag_linefeed] = ACTIONS(2546), + [sym__java_block_open] = ACTIONS(2546), + [sym__static_type_prefix] = ACTIONS(2546), }, [STATE(533)] = { - [sym_identifier] = ACTIONS(2530), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_COMMA] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_Query] = ACTIONS(2530), - [anon_sym_query] = ACTIONS(2530), - [anon_sym_QUERY] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2530), - [sym_optional_chain] = ACTIONS(2532), - [sym_static_chain] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_BSLASH] = ACTIONS(2530), - [anon_sym_STAR_STAR] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2532), - [anon_sym_LT_GT] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2532), - [aux_sym_binary_expression_token1] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2530), - [aux_sym_binary_expression_token2] = ACTIONS(2530), - [aux_sym_binary_expression_token3] = ACTIONS(2530), - [aux_sym_binary_expression_token4] = ACTIONS(2532), - [aux_sym_binary_expression_token5] = ACTIONS(2532), - [aux_sym_binary_expression_token6] = ACTIONS(2532), - [anon_sym_QMARK_QMARK] = ACTIONS(2532), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_TILDE] = ACTIONS(2532), - [aux_sym_unary_operator_token1] = ACTIONS(2530), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(2532), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2530), - [aux_sym_number_token2] = ACTIONS(2530), - [anon_sym_This] = ACTIONS(2530), - [anon_sym_this] = ACTIONS(2530), - [anon_sym_THIS] = ACTIONS(2530), - [anon_sym_Super] = ACTIONS(2530), - [anon_sym_super] = ACTIONS(2530), - [anon_sym_SUPER] = ACTIONS(2530), - [anon_sym_True] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_TRUE] = ACTIONS(2530), - [anon_sym_False] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_FALSE] = ACTIONS(2530), - [anon_sym_Null] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2530), - [anon_sym_NULL] = ACTIONS(2530), - [anon_sym_Undefined] = ACTIONS(2530), - [anon_sym_undefined] = ACTIONS(2530), - [anon_sym_UNDEFINED] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [sym_hash_empty] = ACTIONS(2532), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_QueryExecute] = ACTIONS(2530), - [anon_sym_queryexecute] = ACTIONS(2530), - [anon_sym_QUERYEXECUTE] = ACTIONS(2530), - [anon_sym_queryExecute] = ACTIONS(2530), - [anon_sym_BQUOTE] = ACTIONS(2532), - [anon_sym_Abstract] = ACTIONS(2530), - [anon_sym_abstract] = ACTIONS(2530), - [anon_sym_ABSTRACT] = ACTIONS(2530), - [anon_sym_Component] = ACTIONS(2530), - [anon_sym_component] = ACTIONS(2530), - [anon_sym_COMPONENT] = ACTIONS(2530), - [anon_sym_Debugger] = ACTIONS(2530), - [anon_sym_debugger] = ACTIONS(2530), - [anon_sym_DEBUGGER] = ACTIONS(2530), - [anon_sym_Final] = ACTIONS(2530), - [anon_sym_final] = ACTIONS(2530), - [anon_sym_FINAL] = ACTIONS(2530), - [anon_sym_Function] = ACTIONS(2530), - [anon_sym_function] = ACTIONS(2530), - [anon_sym_FUNCTION] = ACTIONS(2530), - [anon_sym_In] = ACTIONS(2530), - [anon_sym_in] = ACTIONS(2530), - [anon_sym_IN] = ACTIONS(2530), - [anon_sym_Include] = ACTIONS(2530), - [anon_sym_include] = ACTIONS(2530), - [anon_sym_INCLUDE] = ACTIONS(2530), - [anon_sym_InstanceOf] = ACTIONS(2530), - [anon_sym_instanceof] = ACTIONS(2530), - [anon_sym_INSTANCEOF] = ACTIONS(2530), - [anon_sym_instanceOf] = ACTIONS(2530), - [anon_sym_New] = ACTIONS(2530), - [anon_sym_new] = ACTIONS(2530), - [anon_sym_NEW] = ACTIONS(2530), - [anon_sym_Package] = ACTIONS(2530), - [anon_sym_package] = ACTIONS(2530), - [anon_sym_PACKAGE] = ACTIONS(2530), - [anon_sym_Private] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_PRIVATE] = ACTIONS(2530), - [anon_sym_Public] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_PUBLIC] = ACTIONS(2530), - [anon_sym_Remote] = ACTIONS(2530), - [anon_sym_remote] = ACTIONS(2530), - [anon_sym_REMOTE] = ACTIONS(2530), - [anon_sym_Static] = ACTIONS(2530), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_STATIC] = ACTIONS(2530), - [sym__automatic_semicolon] = ACTIONS(2532), - [sym__ternary_qmark] = ACTIONS(2532), - [sym__elvis_operator] = ACTIONS(2532), - [sym_logical_or] = ACTIONS(2532), - [sym_tag_linefeed] = ACTIONS(2532), - [sym__java_block_open] = ACTIONS(2532), - [sym__static_type_prefix] = ACTIONS(2532), + [sym_identifier] = ACTIONS(2548), + [anon_sym_DOT] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_Query] = ACTIONS(2548), + [anon_sym_query] = ACTIONS(2548), + [anon_sym_QUERY] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2548), + [sym_optional_chain] = ACTIONS(2550), + [sym_static_chain] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(2548), + [anon_sym_STAR_STAR] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2550), + [anon_sym_LT_GT] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2550), + [aux_sym_binary_expression_token1] = ACTIONS(2550), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [aux_sym_binary_expression_token2] = ACTIONS(2548), + [aux_sym_binary_expression_token3] = ACTIONS(2548), + [aux_sym_binary_expression_token4] = ACTIONS(2550), + [aux_sym_binary_expression_token5] = ACTIONS(2550), + [aux_sym_binary_expression_token6] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2550), + [aux_sym_unary_operator_token1] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2548), + [aux_sym_number_token2] = ACTIONS(2548), + [anon_sym_This] = ACTIONS(2548), + [anon_sym_this] = ACTIONS(2548), + [anon_sym_THIS] = ACTIONS(2548), + [anon_sym_Super] = ACTIONS(2548), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_SUPER] = ACTIONS(2548), + [anon_sym_True] = ACTIONS(2548), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_TRUE] = ACTIONS(2548), + [anon_sym_False] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [anon_sym_FALSE] = ACTIONS(2548), + [anon_sym_Null] = ACTIONS(2548), + [anon_sym_null] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_Undefined] = ACTIONS(2548), + [anon_sym_undefined] = ACTIONS(2548), + [anon_sym_UNDEFINED] = ACTIONS(2548), + [anon_sym_get] = ACTIONS(2548), + [anon_sym_set] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [sym_hash_empty] = ACTIONS(2550), + [anon_sym_export] = ACTIONS(2548), + [anon_sym_QueryExecute] = ACTIONS(2548), + [anon_sym_queryexecute] = ACTIONS(2548), + [anon_sym_QUERYEXECUTE] = ACTIONS(2548), + [anon_sym_queryExecute] = ACTIONS(2548), + [anon_sym_BQUOTE] = ACTIONS(2550), + [anon_sym_Abstract] = ACTIONS(2548), + [anon_sym_abstract] = ACTIONS(2548), + [anon_sym_ABSTRACT] = ACTIONS(2548), + [anon_sym_Component] = ACTIONS(2548), + [anon_sym_component] = ACTIONS(2548), + [anon_sym_COMPONENT] = ACTIONS(2548), + [anon_sym_Debugger] = ACTIONS(2548), + [anon_sym_debugger] = ACTIONS(2548), + [anon_sym_DEBUGGER] = ACTIONS(2548), + [anon_sym_Final] = ACTIONS(2548), + [anon_sym_final] = ACTIONS(2548), + [anon_sym_FINAL] = ACTIONS(2548), + [anon_sym_Function] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(2548), + [anon_sym_FUNCTION] = ACTIONS(2548), + [anon_sym_In] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_IN] = ACTIONS(2548), + [anon_sym_Include] = ACTIONS(2548), + [anon_sym_include] = ACTIONS(2548), + [anon_sym_INCLUDE] = ACTIONS(2548), + [anon_sym_InstanceOf] = ACTIONS(2548), + [anon_sym_instanceof] = ACTIONS(2548), + [anon_sym_INSTANCEOF] = ACTIONS(2548), + [anon_sym_instanceOf] = ACTIONS(2548), + [anon_sym_New] = ACTIONS(2548), + [anon_sym_new] = ACTIONS(2548), + [anon_sym_NEW] = ACTIONS(2548), + [anon_sym_Package] = ACTIONS(2548), + [anon_sym_package] = ACTIONS(2548), + [anon_sym_PACKAGE] = ACTIONS(2548), + [anon_sym_Private] = ACTIONS(2548), + [anon_sym_private] = ACTIONS(2548), + [anon_sym_PRIVATE] = ACTIONS(2548), + [anon_sym_Public] = ACTIONS(2548), + [anon_sym_public] = ACTIONS(2548), + [anon_sym_PUBLIC] = ACTIONS(2548), + [anon_sym_Remote] = ACTIONS(2548), + [anon_sym_remote] = ACTIONS(2548), + [anon_sym_REMOTE] = ACTIONS(2548), + [anon_sym_Static] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_STATIC] = ACTIONS(2548), + [sym__automatic_semicolon] = ACTIONS(2550), + [sym__ternary_qmark] = ACTIONS(2550), + [sym__elvis_operator] = ACTIONS(2550), + [sym_logical_or] = ACTIONS(2550), + [sym_tag_linefeed] = ACTIONS(2550), + [sym__java_block_open] = ACTIONS(2550), + [sym__static_type_prefix] = ACTIONS(2550), }, [STATE(534)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_Query] = ACTIONS(2442), - [anon_sym_query] = ACTIONS(2442), - [anon_sym_QUERY] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2442), - [sym_optional_chain] = ACTIONS(2444), - [sym_static_chain] = ACTIONS(2444), - [anon_sym_AMP_AMP] = ACTIONS(2444), - [anon_sym_PIPE_PIPE] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_BSLASH] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2444), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), - [anon_sym_LT_GT] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), - [aux_sym_binary_expression_token1] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2442), - [aux_sym_binary_expression_token2] = ACTIONS(2442), - [aux_sym_binary_expression_token3] = ACTIONS(2442), - [aux_sym_binary_expression_token4] = ACTIONS(2444), - [aux_sym_binary_expression_token5] = ACTIONS(2444), - [aux_sym_binary_expression_token6] = ACTIONS(2444), - [anon_sym_QMARK_QMARK] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2444), - [aux_sym_unary_operator_token1] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2442), - [aux_sym_number_token2] = ACTIONS(2442), - [anon_sym_This] = ACTIONS(2442), - [anon_sym_this] = ACTIONS(2442), - [anon_sym_THIS] = ACTIONS(2442), - [anon_sym_Super] = ACTIONS(2442), - [anon_sym_super] = ACTIONS(2442), - [anon_sym_SUPER] = ACTIONS(2442), - [anon_sym_True] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_TRUE] = ACTIONS(2442), - [anon_sym_False] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_FALSE] = ACTIONS(2442), - [anon_sym_Null] = ACTIONS(2442), - [anon_sym_null] = ACTIONS(2442), - [anon_sym_NULL] = ACTIONS(2442), - [anon_sym_Undefined] = ACTIONS(2442), - [anon_sym_undefined] = ACTIONS(2442), - [anon_sym_UNDEFINED] = ACTIONS(2442), - [anon_sym_get] = ACTIONS(2442), - [anon_sym_set] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(2442), - [sym_hash_empty] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_QueryExecute] = ACTIONS(2442), - [anon_sym_queryexecute] = ACTIONS(2442), - [anon_sym_QUERYEXECUTE] = ACTIONS(2442), - [anon_sym_queryExecute] = ACTIONS(2442), - [anon_sym_BQUOTE] = ACTIONS(2444), - [anon_sym_Abstract] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_ABSTRACT] = ACTIONS(2442), - [anon_sym_Component] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_COMPONENT] = ACTIONS(2442), - [anon_sym_Debugger] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_DEBUGGER] = ACTIONS(2442), - [anon_sym_Final] = ACTIONS(2442), - [anon_sym_final] = ACTIONS(2442), - [anon_sym_FINAL] = ACTIONS(2442), - [anon_sym_Function] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_FUNCTION] = ACTIONS(2442), - [anon_sym_In] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_IN] = ACTIONS(2442), - [anon_sym_Include] = ACTIONS(2442), - [anon_sym_include] = ACTIONS(2442), - [anon_sym_INCLUDE] = ACTIONS(2442), - [anon_sym_InstanceOf] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_INSTANCEOF] = ACTIONS(2442), - [anon_sym_instanceOf] = ACTIONS(2442), - [anon_sym_New] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_NEW] = ACTIONS(2442), - [anon_sym_Package] = ACTIONS(2442), - [anon_sym_package] = ACTIONS(2442), - [anon_sym_PACKAGE] = ACTIONS(2442), - [anon_sym_Private] = ACTIONS(2442), - [anon_sym_private] = ACTIONS(2442), - [anon_sym_PRIVATE] = ACTIONS(2442), - [anon_sym_Public] = ACTIONS(2442), - [anon_sym_public] = ACTIONS(2442), - [anon_sym_PUBLIC] = ACTIONS(2442), - [anon_sym_Remote] = ACTIONS(2442), - [anon_sym_remote] = ACTIONS(2442), - [anon_sym_REMOTE] = ACTIONS(2442), - [anon_sym_Static] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_STATIC] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), - [sym__elvis_operator] = ACTIONS(2444), - [sym_logical_or] = ACTIONS(2444), - [sym_tag_linefeed] = ACTIONS(2444), - [sym__java_block_open] = ACTIONS(2444), - [sym__static_type_prefix] = ACTIONS(2444), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Catch] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1590), + [anon_sym_CATCH] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_Finally] = ACTIONS(1590), + [anon_sym_finally] = ACTIONS(1590), + [anon_sym_FINALLY] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, [STATE(535)] = { - [sym_identifier] = ACTIONS(2534), - [anon_sym_DOT] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_COMMA] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2536), - [anon_sym_let] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_Query] = ACTIONS(2534), - [anon_sym_query] = ACTIONS(2534), - [anon_sym_QUERY] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2534), - [sym_optional_chain] = ACTIONS(2536), - [sym_static_chain] = ACTIONS(2536), - [anon_sym_AMP_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2534), - [anon_sym_GT_GT_GT] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_BSLASH] = ACTIONS(2534), - [anon_sym_STAR_STAR] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_LT_EQ] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2536), - [anon_sym_LT_GT] = ACTIONS(2536), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2536), - [aux_sym_binary_expression_token1] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2534), - [aux_sym_binary_expression_token2] = ACTIONS(2534), - [aux_sym_binary_expression_token3] = ACTIONS(2534), - [aux_sym_binary_expression_token4] = ACTIONS(2536), - [aux_sym_binary_expression_token5] = ACTIONS(2536), - [aux_sym_binary_expression_token6] = ACTIONS(2536), - [anon_sym_QMARK_QMARK] = ACTIONS(2536), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_TILDE] = ACTIONS(2536), - [aux_sym_unary_operator_token1] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [anon_sym_DQUOTE] = ACTIONS(2536), - [anon_sym_SQUOTE] = ACTIONS(2536), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2534), - [aux_sym_number_token2] = ACTIONS(2534), - [anon_sym_This] = ACTIONS(2534), - [anon_sym_this] = ACTIONS(2534), - [anon_sym_THIS] = ACTIONS(2534), - [anon_sym_Super] = ACTIONS(2534), - [anon_sym_super] = ACTIONS(2534), - [anon_sym_SUPER] = ACTIONS(2534), - [anon_sym_True] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2534), - [anon_sym_TRUE] = ACTIONS(2534), - [anon_sym_False] = ACTIONS(2534), - [anon_sym_false] = ACTIONS(2534), - [anon_sym_FALSE] = ACTIONS(2534), - [anon_sym_Null] = ACTIONS(2534), - [anon_sym_null] = ACTIONS(2534), - [anon_sym_NULL] = ACTIONS(2534), - [anon_sym_Undefined] = ACTIONS(2534), - [anon_sym_undefined] = ACTIONS(2534), - [anon_sym_UNDEFINED] = ACTIONS(2534), - [anon_sym_get] = ACTIONS(2534), - [anon_sym_set] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(2534), - [sym_hash_empty] = ACTIONS(2536), - [anon_sym_export] = ACTIONS(2534), - [anon_sym_QueryExecute] = ACTIONS(2534), - [anon_sym_queryexecute] = ACTIONS(2534), - [anon_sym_QUERYEXECUTE] = ACTIONS(2534), - [anon_sym_queryExecute] = ACTIONS(2534), - [anon_sym_BQUOTE] = ACTIONS(2536), - [anon_sym_Abstract] = ACTIONS(2534), - [anon_sym_abstract] = ACTIONS(2534), - [anon_sym_ABSTRACT] = ACTIONS(2534), - [anon_sym_Component] = ACTIONS(2534), - [anon_sym_component] = ACTIONS(2534), - [anon_sym_COMPONENT] = ACTIONS(2534), - [anon_sym_Debugger] = ACTIONS(2534), - [anon_sym_debugger] = ACTIONS(2534), - [anon_sym_DEBUGGER] = ACTIONS(2534), - [anon_sym_Final] = ACTIONS(2534), - [anon_sym_final] = ACTIONS(2534), - [anon_sym_FINAL] = ACTIONS(2534), - [anon_sym_Function] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(2534), - [anon_sym_FUNCTION] = ACTIONS(2534), - [anon_sym_In] = ACTIONS(2534), - [anon_sym_in] = ACTIONS(2534), - [anon_sym_IN] = ACTIONS(2534), - [anon_sym_Include] = ACTIONS(2534), - [anon_sym_include] = ACTIONS(2534), - [anon_sym_INCLUDE] = ACTIONS(2534), - [anon_sym_InstanceOf] = ACTIONS(2534), - [anon_sym_instanceof] = ACTIONS(2534), - [anon_sym_INSTANCEOF] = ACTIONS(2534), - [anon_sym_instanceOf] = ACTIONS(2534), - [anon_sym_New] = ACTIONS(2534), - [anon_sym_new] = ACTIONS(2534), - [anon_sym_NEW] = ACTIONS(2534), - [anon_sym_Package] = ACTIONS(2534), - [anon_sym_package] = ACTIONS(2534), - [anon_sym_PACKAGE] = ACTIONS(2534), - [anon_sym_Private] = ACTIONS(2534), - [anon_sym_private] = ACTIONS(2534), - [anon_sym_PRIVATE] = ACTIONS(2534), - [anon_sym_Public] = ACTIONS(2534), - [anon_sym_public] = ACTIONS(2534), - [anon_sym_PUBLIC] = ACTIONS(2534), - [anon_sym_Remote] = ACTIONS(2534), - [anon_sym_remote] = ACTIONS(2534), - [anon_sym_REMOTE] = ACTIONS(2534), - [anon_sym_Static] = ACTIONS(2534), - [anon_sym_static] = ACTIONS(2534), - [anon_sym_STATIC] = ACTIONS(2534), - [sym__automatic_semicolon] = ACTIONS(2536), - [sym__ternary_qmark] = ACTIONS(2536), - [sym__elvis_operator] = ACTIONS(2536), - [sym_logical_or] = ACTIONS(2536), - [sym_tag_linefeed] = ACTIONS(2536), - [sym__java_block_open] = ACTIONS(2536), - [sym__static_type_prefix] = ACTIONS(2536), + [sym_identifier] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1598), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1598), + [anon_sym_instanceof] = ACTIONS(1598), + [anon_sym_INSTANCEOF] = ACTIONS(1598), + [anon_sym_instanceOf] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [sym__automatic_semicolon] = ACTIONS(1596), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), + [sym_tag_linefeed] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), }, [STATE(536)] = { - [sym_identifier] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_let] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_Query] = ACTIONS(2538), - [anon_sym_query] = ACTIONS(2538), - [anon_sym_QUERY] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2538), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2540), - [aux_sym_unary_operator_token1] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2538), - [aux_sym_number_token2] = ACTIONS(2538), - [anon_sym_This] = ACTIONS(2538), - [anon_sym_this] = ACTIONS(2538), - [anon_sym_THIS] = ACTIONS(2538), - [anon_sym_Super] = ACTIONS(2538), - [anon_sym_super] = ACTIONS(2538), - [anon_sym_SUPER] = ACTIONS(2538), - [anon_sym_True] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2538), - [anon_sym_TRUE] = ACTIONS(2538), - [anon_sym_False] = ACTIONS(2538), - [anon_sym_false] = ACTIONS(2538), - [anon_sym_FALSE] = ACTIONS(2538), - [anon_sym_Null] = ACTIONS(2538), - [anon_sym_null] = ACTIONS(2538), - [anon_sym_NULL] = ACTIONS(2538), - [anon_sym_Undefined] = ACTIONS(2538), - [anon_sym_undefined] = ACTIONS(2538), - [anon_sym_UNDEFINED] = ACTIONS(2538), - [anon_sym_get] = ACTIONS(2538), - [anon_sym_set] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [sym_hash_empty] = ACTIONS(2540), - [anon_sym_export] = ACTIONS(2538), - [anon_sym_QueryExecute] = ACTIONS(2538), - [anon_sym_queryexecute] = ACTIONS(2538), - [anon_sym_QUERYEXECUTE] = ACTIONS(2538), - [anon_sym_queryExecute] = ACTIONS(2538), - [anon_sym_BQUOTE] = ACTIONS(2540), - [anon_sym_Abstract] = ACTIONS(2538), - [anon_sym_abstract] = ACTIONS(2538), - [anon_sym_ABSTRACT] = ACTIONS(2538), - [anon_sym_Component] = ACTIONS(2538), - [anon_sym_component] = ACTIONS(2538), - [anon_sym_COMPONENT] = ACTIONS(2538), - [anon_sym_Debugger] = ACTIONS(2538), - [anon_sym_debugger] = ACTIONS(2538), - [anon_sym_DEBUGGER] = ACTIONS(2538), - [anon_sym_Final] = ACTIONS(2538), - [anon_sym_final] = ACTIONS(2538), - [anon_sym_FINAL] = ACTIONS(2538), - [anon_sym_Function] = ACTIONS(2538), - [anon_sym_function] = ACTIONS(2538), - [anon_sym_FUNCTION] = ACTIONS(2538), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_Include] = ACTIONS(2538), - [anon_sym_include] = ACTIONS(2538), - [anon_sym_INCLUDE] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2538), - [anon_sym_instanceof] = ACTIONS(2538), - [anon_sym_INSTANCEOF] = ACTIONS(2538), - [anon_sym_instanceOf] = ACTIONS(2538), - [anon_sym_New] = ACTIONS(2538), - [anon_sym_new] = ACTIONS(2538), - [anon_sym_NEW] = ACTIONS(2538), - [anon_sym_Package] = ACTIONS(2538), - [anon_sym_package] = ACTIONS(2538), - [anon_sym_PACKAGE] = ACTIONS(2538), - [anon_sym_Private] = ACTIONS(2538), - [anon_sym_private] = ACTIONS(2538), - [anon_sym_PRIVATE] = ACTIONS(2538), - [anon_sym_Public] = ACTIONS(2538), - [anon_sym_public] = ACTIONS(2538), - [anon_sym_PUBLIC] = ACTIONS(2538), - [anon_sym_Remote] = ACTIONS(2538), - [anon_sym_remote] = ACTIONS(2538), - [anon_sym_REMOTE] = ACTIONS(2538), - [anon_sym_Static] = ACTIONS(2538), - [anon_sym_static] = ACTIONS(2538), - [anon_sym_STATIC] = ACTIONS(2538), - [sym__automatic_semicolon] = ACTIONS(2540), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), - [sym_tag_linefeed] = ACTIONS(2540), - [sym__java_block_open] = ACTIONS(2540), - [sym__static_type_prefix] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2552), + [anon_sym_DOT] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_let] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_Query] = ACTIONS(2552), + [anon_sym_query] = ACTIONS(2552), + [anon_sym_QUERY] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2552), + [sym_optional_chain] = ACTIONS(2554), + [sym_static_chain] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_BSLASH] = ACTIONS(2552), + [anon_sym_STAR_STAR] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2554), + [anon_sym_LT_GT] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2554), + [aux_sym_binary_expression_token1] = ACTIONS(2554), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [aux_sym_binary_expression_token2] = ACTIONS(2552), + [aux_sym_binary_expression_token3] = ACTIONS(2552), + [aux_sym_binary_expression_token4] = ACTIONS(2554), + [aux_sym_binary_expression_token5] = ACTIONS(2554), + [aux_sym_binary_expression_token6] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2552), + [anon_sym_TILDE] = ACTIONS(2554), + [aux_sym_unary_operator_token1] = ACTIONS(2552), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2552), + [aux_sym_number_token2] = ACTIONS(2552), + [anon_sym_This] = ACTIONS(2552), + [anon_sym_this] = ACTIONS(2552), + [anon_sym_THIS] = ACTIONS(2552), + [anon_sym_Super] = ACTIONS(2552), + [anon_sym_super] = ACTIONS(2552), + [anon_sym_SUPER] = ACTIONS(2552), + [anon_sym_True] = ACTIONS(2552), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_TRUE] = ACTIONS(2552), + [anon_sym_False] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_FALSE] = ACTIONS(2552), + [anon_sym_Null] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_Undefined] = ACTIONS(2552), + [anon_sym_undefined] = ACTIONS(2552), + [anon_sym_UNDEFINED] = ACTIONS(2552), + [anon_sym_get] = ACTIONS(2552), + [anon_sym_set] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [sym_hash_empty] = ACTIONS(2554), + [anon_sym_export] = ACTIONS(2552), + [anon_sym_QueryExecute] = ACTIONS(2552), + [anon_sym_queryexecute] = ACTIONS(2552), + [anon_sym_QUERYEXECUTE] = ACTIONS(2552), + [anon_sym_queryExecute] = ACTIONS(2552), + [anon_sym_BQUOTE] = ACTIONS(2554), + [anon_sym_Abstract] = ACTIONS(2552), + [anon_sym_abstract] = ACTIONS(2552), + [anon_sym_ABSTRACT] = ACTIONS(2552), + [anon_sym_Component] = ACTIONS(2552), + [anon_sym_component] = ACTIONS(2552), + [anon_sym_COMPONENT] = ACTIONS(2552), + [anon_sym_Debugger] = ACTIONS(2552), + [anon_sym_debugger] = ACTIONS(2552), + [anon_sym_DEBUGGER] = ACTIONS(2552), + [anon_sym_Final] = ACTIONS(2552), + [anon_sym_final] = ACTIONS(2552), + [anon_sym_FINAL] = ACTIONS(2552), + [anon_sym_Function] = ACTIONS(2552), + [anon_sym_function] = ACTIONS(2552), + [anon_sym_FUNCTION] = ACTIONS(2552), + [anon_sym_In] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_IN] = ACTIONS(2552), + [anon_sym_Include] = ACTIONS(2552), + [anon_sym_include] = ACTIONS(2552), + [anon_sym_INCLUDE] = ACTIONS(2552), + [anon_sym_InstanceOf] = ACTIONS(2552), + [anon_sym_instanceof] = ACTIONS(2552), + [anon_sym_INSTANCEOF] = ACTIONS(2552), + [anon_sym_instanceOf] = ACTIONS(2552), + [anon_sym_New] = ACTIONS(2552), + [anon_sym_new] = ACTIONS(2552), + [anon_sym_NEW] = ACTIONS(2552), + [anon_sym_Package] = ACTIONS(2552), + [anon_sym_package] = ACTIONS(2552), + [anon_sym_PACKAGE] = ACTIONS(2552), + [anon_sym_Private] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_PRIVATE] = ACTIONS(2552), + [anon_sym_Public] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_PUBLIC] = ACTIONS(2552), + [anon_sym_Remote] = ACTIONS(2552), + [anon_sym_remote] = ACTIONS(2552), + [anon_sym_REMOTE] = ACTIONS(2552), + [anon_sym_Static] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_STATIC] = ACTIONS(2552), + [sym__automatic_semicolon] = ACTIONS(2554), + [sym__ternary_qmark] = ACTIONS(2554), + [sym__elvis_operator] = ACTIONS(2554), + [sym_logical_or] = ACTIONS(2554), + [sym_tag_linefeed] = ACTIONS(2554), + [sym__java_block_open] = ACTIONS(2554), + [sym__static_type_prefix] = ACTIONS(2554), }, [STATE(537)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_Query] = ACTIONS(2418), - [anon_sym_query] = ACTIONS(2418), - [anon_sym_QUERY] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2418), - [sym_optional_chain] = ACTIONS(2420), - [sym_static_chain] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2420), - [anon_sym_BSLASH] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), - [anon_sym_LT_GT] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), - [aux_sym_binary_expression_token1] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_GT] = ACTIONS(2418), - [aux_sym_binary_expression_token2] = ACTIONS(2418), - [aux_sym_binary_expression_token3] = ACTIONS(2418), - [aux_sym_binary_expression_token4] = ACTIONS(2420), - [aux_sym_binary_expression_token5] = ACTIONS(2420), - [aux_sym_binary_expression_token6] = ACTIONS(2420), - [anon_sym_QMARK_QMARK] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2420), - [aux_sym_unary_operator_token1] = ACTIONS(2418), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DQUOTE] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2418), - [aux_sym_number_token2] = ACTIONS(2418), - [anon_sym_This] = ACTIONS(2418), - [anon_sym_this] = ACTIONS(2418), - [anon_sym_THIS] = ACTIONS(2418), - [anon_sym_Super] = ACTIONS(2418), - [anon_sym_super] = ACTIONS(2418), - [anon_sym_SUPER] = ACTIONS(2418), - [anon_sym_True] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_TRUE] = ACTIONS(2418), - [anon_sym_False] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_FALSE] = ACTIONS(2418), - [anon_sym_Null] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2418), - [anon_sym_Undefined] = ACTIONS(2418), - [anon_sym_undefined] = ACTIONS(2418), - [anon_sym_UNDEFINED] = ACTIONS(2418), - [anon_sym_get] = ACTIONS(2418), - [anon_sym_set] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2418), - [sym_hash_empty] = ACTIONS(2420), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_QueryExecute] = ACTIONS(2418), - [anon_sym_queryexecute] = ACTIONS(2418), - [anon_sym_QUERYEXECUTE] = ACTIONS(2418), - [anon_sym_queryExecute] = ACTIONS(2418), - [anon_sym_BQUOTE] = ACTIONS(2420), - [anon_sym_Abstract] = ACTIONS(2418), - [anon_sym_abstract] = ACTIONS(2418), - [anon_sym_ABSTRACT] = ACTIONS(2418), - [anon_sym_Component] = ACTIONS(2418), - [anon_sym_component] = ACTIONS(2418), - [anon_sym_COMPONENT] = ACTIONS(2418), - [anon_sym_Debugger] = ACTIONS(2418), - [anon_sym_debugger] = ACTIONS(2418), - [anon_sym_DEBUGGER] = ACTIONS(2418), - [anon_sym_Final] = ACTIONS(2418), - [anon_sym_final] = ACTIONS(2418), - [anon_sym_FINAL] = ACTIONS(2418), - [anon_sym_Function] = ACTIONS(2418), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_FUNCTION] = ACTIONS(2418), - [anon_sym_In] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_IN] = ACTIONS(2418), - [anon_sym_Include] = ACTIONS(2418), - [anon_sym_include] = ACTIONS(2418), - [anon_sym_INCLUDE] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_INSTANCEOF] = ACTIONS(2418), - [anon_sym_instanceOf] = ACTIONS(2418), - [anon_sym_New] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2418), - [anon_sym_NEW] = ACTIONS(2418), - [anon_sym_Package] = ACTIONS(2418), - [anon_sym_package] = ACTIONS(2418), - [anon_sym_PACKAGE] = ACTIONS(2418), - [anon_sym_Private] = ACTIONS(2418), - [anon_sym_private] = ACTIONS(2418), - [anon_sym_PRIVATE] = ACTIONS(2418), - [anon_sym_Public] = ACTIONS(2418), - [anon_sym_public] = ACTIONS(2418), - [anon_sym_PUBLIC] = ACTIONS(2418), - [anon_sym_Remote] = ACTIONS(2418), - [anon_sym_remote] = ACTIONS(2418), - [anon_sym_REMOTE] = ACTIONS(2418), - [anon_sym_Static] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_STATIC] = ACTIONS(2418), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(2420), - [sym__elvis_operator] = ACTIONS(2420), - [sym_logical_or] = ACTIONS(2420), - [sym_tag_linefeed] = ACTIONS(2420), - [sym__java_block_open] = ACTIONS(2420), - [sym__static_type_prefix] = ACTIONS(2420), + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_Query] = ACTIONS(2556), + [anon_sym_query] = ACTIONS(2556), + [anon_sym_QUERY] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2556), + [sym_optional_chain] = ACTIONS(2558), + [sym_static_chain] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_BSLASH] = ACTIONS(2556), + [anon_sym_STAR_STAR] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2558), + [anon_sym_LT_GT] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2558), + [aux_sym_binary_expression_token1] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [aux_sym_binary_expression_token2] = ACTIONS(2556), + [aux_sym_binary_expression_token3] = ACTIONS(2556), + [aux_sym_binary_expression_token4] = ACTIONS(2558), + [aux_sym_binary_expression_token5] = ACTIONS(2558), + [aux_sym_binary_expression_token6] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_TILDE] = ACTIONS(2558), + [aux_sym_unary_operator_token1] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2556), + [aux_sym_number_token2] = ACTIONS(2556), + [anon_sym_This] = ACTIONS(2556), + [anon_sym_this] = ACTIONS(2556), + [anon_sym_THIS] = ACTIONS(2556), + [anon_sym_Super] = ACTIONS(2556), + [anon_sym_super] = ACTIONS(2556), + [anon_sym_SUPER] = ACTIONS(2556), + [anon_sym_True] = ACTIONS(2556), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_TRUE] = ACTIONS(2556), + [anon_sym_False] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_FALSE] = ACTIONS(2556), + [anon_sym_Null] = ACTIONS(2556), + [anon_sym_null] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_Undefined] = ACTIONS(2556), + [anon_sym_undefined] = ACTIONS(2556), + [anon_sym_UNDEFINED] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [sym_hash_empty] = ACTIONS(2558), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_QueryExecute] = ACTIONS(2556), + [anon_sym_queryexecute] = ACTIONS(2556), + [anon_sym_QUERYEXECUTE] = ACTIONS(2556), + [anon_sym_queryExecute] = ACTIONS(2556), + [anon_sym_BQUOTE] = ACTIONS(2558), + [anon_sym_Abstract] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_ABSTRACT] = ACTIONS(2556), + [anon_sym_Component] = ACTIONS(2556), + [anon_sym_component] = ACTIONS(2556), + [anon_sym_COMPONENT] = ACTIONS(2556), + [anon_sym_Debugger] = ACTIONS(2556), + [anon_sym_debugger] = ACTIONS(2556), + [anon_sym_DEBUGGER] = ACTIONS(2556), + [anon_sym_Final] = ACTIONS(2556), + [anon_sym_final] = ACTIONS(2556), + [anon_sym_FINAL] = ACTIONS(2556), + [anon_sym_Function] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_FUNCTION] = ACTIONS(2556), + [anon_sym_In] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_IN] = ACTIONS(2556), + [anon_sym_Include] = ACTIONS(2556), + [anon_sym_include] = ACTIONS(2556), + [anon_sym_INCLUDE] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2556), + [anon_sym_instanceof] = ACTIONS(2556), + [anon_sym_INSTANCEOF] = ACTIONS(2556), + [anon_sym_instanceOf] = ACTIONS(2556), + [anon_sym_New] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_NEW] = ACTIONS(2556), + [anon_sym_Package] = ACTIONS(2556), + [anon_sym_package] = ACTIONS(2556), + [anon_sym_PACKAGE] = ACTIONS(2556), + [anon_sym_Private] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_PRIVATE] = ACTIONS(2556), + [anon_sym_Public] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_PUBLIC] = ACTIONS(2556), + [anon_sym_Remote] = ACTIONS(2556), + [anon_sym_remote] = ACTIONS(2556), + [anon_sym_REMOTE] = ACTIONS(2556), + [anon_sym_Static] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_STATIC] = ACTIONS(2556), + [sym__automatic_semicolon] = ACTIONS(2558), + [sym__ternary_qmark] = ACTIONS(2558), + [sym__elvis_operator] = ACTIONS(2558), + [sym_logical_or] = ACTIONS(2558), + [sym_tag_linefeed] = ACTIONS(2558), + [sym__java_block_open] = ACTIONS(2558), + [sym__static_type_prefix] = ACTIONS(2558), }, [STATE(538)] = { - [sym_identifier] = ACTIONS(2542), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2544), - [anon_sym_Query] = ACTIONS(2542), - [anon_sym_query] = ACTIONS(2542), - [anon_sym_QUERY] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2542), - [sym_optional_chain] = ACTIONS(2544), - [sym_static_chain] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2544), - [anon_sym_BSLASH] = ACTIONS(2542), - [anon_sym_STAR_STAR] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2544), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2544), - [anon_sym_LT_GT] = ACTIONS(2544), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2544), - [aux_sym_binary_expression_token1] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2544), - [anon_sym_GT] = ACTIONS(2542), - [aux_sym_binary_expression_token2] = ACTIONS(2542), - [aux_sym_binary_expression_token3] = ACTIONS(2542), - [aux_sym_binary_expression_token4] = ACTIONS(2544), - [aux_sym_binary_expression_token5] = ACTIONS(2544), - [aux_sym_binary_expression_token6] = ACTIONS(2544), - [anon_sym_QMARK_QMARK] = ACTIONS(2544), - [anon_sym_BANG] = ACTIONS(2542), - [anon_sym_TILDE] = ACTIONS(2544), - [aux_sym_unary_operator_token1] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2542), - [aux_sym_number_token2] = ACTIONS(2542), - [anon_sym_This] = ACTIONS(2542), - [anon_sym_this] = ACTIONS(2542), - [anon_sym_THIS] = ACTIONS(2542), - [anon_sym_Super] = ACTIONS(2542), - [anon_sym_super] = ACTIONS(2542), - [anon_sym_SUPER] = ACTIONS(2542), - [anon_sym_True] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2542), - [anon_sym_TRUE] = ACTIONS(2542), - [anon_sym_False] = ACTIONS(2542), - [anon_sym_false] = ACTIONS(2542), - [anon_sym_FALSE] = ACTIONS(2542), - [anon_sym_Null] = ACTIONS(2542), - [anon_sym_null] = ACTIONS(2542), - [anon_sym_NULL] = ACTIONS(2542), - [anon_sym_Undefined] = ACTIONS(2542), - [anon_sym_undefined] = ACTIONS(2542), - [anon_sym_UNDEFINED] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [sym_hash_empty] = ACTIONS(2544), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_QueryExecute] = ACTIONS(2542), - [anon_sym_queryexecute] = ACTIONS(2542), - [anon_sym_QUERYEXECUTE] = ACTIONS(2542), - [anon_sym_queryExecute] = ACTIONS(2542), - [anon_sym_BQUOTE] = ACTIONS(2544), - [anon_sym_Abstract] = ACTIONS(2542), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_ABSTRACT] = ACTIONS(2542), - [anon_sym_Component] = ACTIONS(2542), - [anon_sym_component] = ACTIONS(2542), - [anon_sym_COMPONENT] = ACTIONS(2542), - [anon_sym_Debugger] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_DEBUGGER] = ACTIONS(2542), - [anon_sym_Final] = ACTIONS(2542), - [anon_sym_final] = ACTIONS(2542), - [anon_sym_FINAL] = ACTIONS(2542), - [anon_sym_Function] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_FUNCTION] = ACTIONS(2542), - [anon_sym_In] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_IN] = ACTIONS(2542), - [anon_sym_Include] = ACTIONS(2542), - [anon_sym_include] = ACTIONS(2542), - [anon_sym_INCLUDE] = ACTIONS(2542), - [anon_sym_InstanceOf] = ACTIONS(2542), - [anon_sym_instanceof] = ACTIONS(2542), - [anon_sym_INSTANCEOF] = ACTIONS(2542), - [anon_sym_instanceOf] = ACTIONS(2542), - [anon_sym_New] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_NEW] = ACTIONS(2542), - [anon_sym_Package] = ACTIONS(2542), - [anon_sym_package] = ACTIONS(2542), - [anon_sym_PACKAGE] = ACTIONS(2542), - [anon_sym_Private] = ACTIONS(2542), - [anon_sym_private] = ACTIONS(2542), - [anon_sym_PRIVATE] = ACTIONS(2542), - [anon_sym_Public] = ACTIONS(2542), - [anon_sym_public] = ACTIONS(2542), - [anon_sym_PUBLIC] = ACTIONS(2542), - [anon_sym_Remote] = ACTIONS(2542), - [anon_sym_remote] = ACTIONS(2542), - [anon_sym_REMOTE] = ACTIONS(2542), - [anon_sym_Static] = ACTIONS(2542), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_STATIC] = ACTIONS(2542), - [sym__automatic_semicolon] = ACTIONS(2544), - [sym__ternary_qmark] = ACTIONS(2544), - [sym__elvis_operator] = ACTIONS(2544), - [sym_logical_or] = ACTIONS(2544), - [sym_tag_linefeed] = ACTIONS(2544), - [sym__java_block_open] = ACTIONS(2544), - [sym__static_type_prefix] = ACTIONS(2544), + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_Query] = ACTIONS(2464), + [anon_sym_query] = ACTIONS(2464), + [anon_sym_QUERY] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2464), + [sym_optional_chain] = ACTIONS(2466), + [sym_static_chain] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_BSLASH] = ACTIONS(2464), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_LT_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [aux_sym_binary_expression_token1] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [aux_sym_binary_expression_token2] = ACTIONS(2464), + [aux_sym_binary_expression_token3] = ACTIONS(2464), + [aux_sym_binary_expression_token4] = ACTIONS(2466), + [aux_sym_binary_expression_token5] = ACTIONS(2466), + [aux_sym_binary_expression_token6] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2466), + [aux_sym_unary_operator_token1] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2464), + [aux_sym_number_token2] = ACTIONS(2464), + [anon_sym_This] = ACTIONS(2464), + [anon_sym_this] = ACTIONS(2464), + [anon_sym_THIS] = ACTIONS(2464), + [anon_sym_Super] = ACTIONS(2464), + [anon_sym_super] = ACTIONS(2464), + [anon_sym_SUPER] = ACTIONS(2464), + [anon_sym_True] = ACTIONS(2464), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_TRUE] = ACTIONS(2464), + [anon_sym_False] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_FALSE] = ACTIONS(2464), + [anon_sym_Null] = ACTIONS(2464), + [anon_sym_null] = ACTIONS(2464), + [anon_sym_NULL] = ACTIONS(2464), + [anon_sym_Undefined] = ACTIONS(2464), + [anon_sym_undefined] = ACTIONS(2464), + [anon_sym_UNDEFINED] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2464), + [sym_hash_empty] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_QueryExecute] = ACTIONS(2464), + [anon_sym_queryexecute] = ACTIONS(2464), + [anon_sym_QUERYEXECUTE] = ACTIONS(2464), + [anon_sym_queryExecute] = ACTIONS(2464), + [anon_sym_BQUOTE] = ACTIONS(2466), + [anon_sym_Abstract] = ACTIONS(2464), + [anon_sym_abstract] = ACTIONS(2464), + [anon_sym_ABSTRACT] = ACTIONS(2464), + [anon_sym_Component] = ACTIONS(2464), + [anon_sym_component] = ACTIONS(2464), + [anon_sym_COMPONENT] = ACTIONS(2464), + [anon_sym_Debugger] = ACTIONS(2464), + [anon_sym_debugger] = ACTIONS(2464), + [anon_sym_DEBUGGER] = ACTIONS(2464), + [anon_sym_Final] = ACTIONS(2464), + [anon_sym_final] = ACTIONS(2464), + [anon_sym_FINAL] = ACTIONS(2464), + [anon_sym_Function] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2464), + [anon_sym_FUNCTION] = ACTIONS(2464), + [anon_sym_In] = ACTIONS(2464), + [anon_sym_in] = ACTIONS(2464), + [anon_sym_IN] = ACTIONS(2464), + [anon_sym_Include] = ACTIONS(2464), + [anon_sym_include] = ACTIONS(2464), + [anon_sym_INCLUDE] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(2464), + [anon_sym_instanceof] = ACTIONS(2464), + [anon_sym_INSTANCEOF] = ACTIONS(2464), + [anon_sym_instanceOf] = ACTIONS(2464), + [anon_sym_New] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_NEW] = ACTIONS(2464), + [anon_sym_Package] = ACTIONS(2464), + [anon_sym_package] = ACTIONS(2464), + [anon_sym_PACKAGE] = ACTIONS(2464), + [anon_sym_Private] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_PRIVATE] = ACTIONS(2464), + [anon_sym_Public] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_PUBLIC] = ACTIONS(2464), + [anon_sym_Remote] = ACTIONS(2464), + [anon_sym_remote] = ACTIONS(2464), + [anon_sym_REMOTE] = ACTIONS(2464), + [anon_sym_Static] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_STATIC] = ACTIONS(2464), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(2466), + [sym__elvis_operator] = ACTIONS(2466), + [sym_logical_or] = ACTIONS(2466), + [sym_tag_linefeed] = ACTIONS(2466), + [sym__java_block_open] = ACTIONS(2466), + [sym__static_type_prefix] = ACTIONS(2466), }, [STATE(539)] = { - [sym_identifier] = ACTIONS(2546), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_Query] = ACTIONS(2546), - [anon_sym_query] = ACTIONS(2546), - [anon_sym_QUERY] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2546), - [sym_optional_chain] = ACTIONS(2548), - [sym_static_chain] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_GT_GT] = ACTIONS(2546), - [anon_sym_GT_GT_GT] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_BSLASH] = ACTIONS(2546), - [anon_sym_STAR_STAR] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_LT_EQ] = ACTIONS(2548), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2548), - [anon_sym_LT_GT] = ACTIONS(2548), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2548), - [aux_sym_binary_expression_token1] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(2546), - [aux_sym_binary_expression_token2] = ACTIONS(2546), - [aux_sym_binary_expression_token3] = ACTIONS(2546), - [aux_sym_binary_expression_token4] = ACTIONS(2548), - [aux_sym_binary_expression_token5] = ACTIONS(2548), - [aux_sym_binary_expression_token6] = ACTIONS(2548), - [anon_sym_QMARK_QMARK] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2548), - [aux_sym_unary_operator_token1] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2546), - [aux_sym_number_token2] = ACTIONS(2546), - [anon_sym_This] = ACTIONS(2546), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_THIS] = ACTIONS(2546), - [anon_sym_Super] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2546), - [anon_sym_SUPER] = ACTIONS(2546), - [anon_sym_True] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2546), - [anon_sym_TRUE] = ACTIONS(2546), - [anon_sym_False] = ACTIONS(2546), - [anon_sym_false] = ACTIONS(2546), - [anon_sym_FALSE] = ACTIONS(2546), - [anon_sym_Null] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2546), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_Undefined] = ACTIONS(2546), - [anon_sym_undefined] = ACTIONS(2546), - [anon_sym_UNDEFINED] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_POUND] = ACTIONS(2546), - [sym_hash_empty] = ACTIONS(2548), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_QueryExecute] = ACTIONS(2546), - [anon_sym_queryexecute] = ACTIONS(2546), - [anon_sym_QUERYEXECUTE] = ACTIONS(2546), - [anon_sym_queryExecute] = ACTIONS(2546), - [anon_sym_BQUOTE] = ACTIONS(2548), - [anon_sym_Abstract] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_ABSTRACT] = ACTIONS(2546), - [anon_sym_Component] = ACTIONS(2546), - [anon_sym_component] = ACTIONS(2546), - [anon_sym_COMPONENT] = ACTIONS(2546), - [anon_sym_Debugger] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_DEBUGGER] = ACTIONS(2546), - [anon_sym_Final] = ACTIONS(2546), - [anon_sym_final] = ACTIONS(2546), - [anon_sym_FINAL] = ACTIONS(2546), - [anon_sym_Function] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_FUNCTION] = ACTIONS(2546), - [anon_sym_In] = ACTIONS(2546), - [anon_sym_in] = ACTIONS(2546), - [anon_sym_IN] = ACTIONS(2546), - [anon_sym_Include] = ACTIONS(2546), - [anon_sym_include] = ACTIONS(2546), - [anon_sym_INCLUDE] = ACTIONS(2546), - [anon_sym_InstanceOf] = ACTIONS(2546), - [anon_sym_instanceof] = ACTIONS(2546), - [anon_sym_INSTANCEOF] = ACTIONS(2546), - [anon_sym_instanceOf] = ACTIONS(2546), - [anon_sym_New] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_NEW] = ACTIONS(2546), - [anon_sym_Package] = ACTIONS(2546), - [anon_sym_package] = ACTIONS(2546), - [anon_sym_PACKAGE] = ACTIONS(2546), - [anon_sym_Private] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_PRIVATE] = ACTIONS(2546), - [anon_sym_Public] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_PUBLIC] = ACTIONS(2546), - [anon_sym_Remote] = ACTIONS(2546), - [anon_sym_remote] = ACTIONS(2546), - [anon_sym_REMOTE] = ACTIONS(2546), - [anon_sym_Static] = ACTIONS(2546), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_STATIC] = ACTIONS(2546), - [sym__automatic_semicolon] = ACTIONS(2548), - [sym__ternary_qmark] = ACTIONS(2548), - [sym__elvis_operator] = ACTIONS(2548), - [sym_logical_or] = ACTIONS(2548), - [sym_tag_linefeed] = ACTIONS(2548), - [sym__java_block_open] = ACTIONS(2548), - [sym__static_type_prefix] = ACTIONS(2548), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2358), + [sym_tag_linefeed] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, [STATE(540)] = { - [sym_identifier] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_COMMA] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_Query] = ACTIONS(2550), - [anon_sym_query] = ACTIONS(2550), - [anon_sym_QUERY] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2550), - [sym_optional_chain] = ACTIONS(2552), - [sym_static_chain] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2550), - [anon_sym_GT_GT_GT] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_CARET] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_STAR_STAR] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_LT_EQ] = ACTIONS(2552), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2552), - [anon_sym_LT_GT] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2552), - [aux_sym_binary_expression_token1] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2550), - [aux_sym_binary_expression_token2] = ACTIONS(2550), - [aux_sym_binary_expression_token3] = ACTIONS(2550), - [aux_sym_binary_expression_token4] = ACTIONS(2552), - [aux_sym_binary_expression_token5] = ACTIONS(2552), - [aux_sym_binary_expression_token6] = ACTIONS(2552), - [anon_sym_QMARK_QMARK] = ACTIONS(2552), - [anon_sym_BANG] = ACTIONS(2550), - [anon_sym_TILDE] = ACTIONS(2552), - [aux_sym_unary_operator_token1] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [anon_sym_DQUOTE] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2552), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2550), - [aux_sym_number_token2] = ACTIONS(2550), - [anon_sym_This] = ACTIONS(2550), - [anon_sym_this] = ACTIONS(2550), - [anon_sym_THIS] = ACTIONS(2550), - [anon_sym_Super] = ACTIONS(2550), - [anon_sym_super] = ACTIONS(2550), - [anon_sym_SUPER] = ACTIONS(2550), - [anon_sym_True] = ACTIONS(2550), - [anon_sym_true] = ACTIONS(2550), - [anon_sym_TRUE] = ACTIONS(2550), - [anon_sym_False] = ACTIONS(2550), - [anon_sym_false] = ACTIONS(2550), - [anon_sym_FALSE] = ACTIONS(2550), - [anon_sym_Null] = ACTIONS(2550), - [anon_sym_null] = ACTIONS(2550), - [anon_sym_NULL] = ACTIONS(2550), - [anon_sym_Undefined] = ACTIONS(2550), - [anon_sym_undefined] = ACTIONS(2550), - [anon_sym_UNDEFINED] = ACTIONS(2550), - [anon_sym_get] = ACTIONS(2550), - [anon_sym_set] = ACTIONS(2550), - [anon_sym_POUND] = ACTIONS(2550), - [sym_hash_empty] = ACTIONS(2552), - [anon_sym_export] = ACTIONS(2550), - [anon_sym_QueryExecute] = ACTIONS(2550), - [anon_sym_queryexecute] = ACTIONS(2550), - [anon_sym_QUERYEXECUTE] = ACTIONS(2550), - [anon_sym_queryExecute] = ACTIONS(2550), - [anon_sym_BQUOTE] = ACTIONS(2552), - [anon_sym_Abstract] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2550), - [anon_sym_ABSTRACT] = ACTIONS(2550), - [anon_sym_Component] = ACTIONS(2550), - [anon_sym_component] = ACTIONS(2550), - [anon_sym_COMPONENT] = ACTIONS(2550), - [anon_sym_Debugger] = ACTIONS(2550), - [anon_sym_debugger] = ACTIONS(2550), - [anon_sym_DEBUGGER] = ACTIONS(2550), - [anon_sym_Final] = ACTIONS(2550), - [anon_sym_final] = ACTIONS(2550), - [anon_sym_FINAL] = ACTIONS(2550), - [anon_sym_Function] = ACTIONS(2550), - [anon_sym_function] = ACTIONS(2550), - [anon_sym_FUNCTION] = ACTIONS(2550), - [anon_sym_In] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_IN] = ACTIONS(2550), - [anon_sym_Include] = ACTIONS(2550), - [anon_sym_include] = ACTIONS(2550), - [anon_sym_INCLUDE] = ACTIONS(2550), - [anon_sym_InstanceOf] = ACTIONS(2550), - [anon_sym_instanceof] = ACTIONS(2550), - [anon_sym_INSTANCEOF] = ACTIONS(2550), - [anon_sym_instanceOf] = ACTIONS(2550), - [anon_sym_New] = ACTIONS(2550), - [anon_sym_new] = ACTIONS(2550), - [anon_sym_NEW] = ACTIONS(2550), - [anon_sym_Package] = ACTIONS(2550), - [anon_sym_package] = ACTIONS(2550), - [anon_sym_PACKAGE] = ACTIONS(2550), - [anon_sym_Private] = ACTIONS(2550), - [anon_sym_private] = ACTIONS(2550), - [anon_sym_PRIVATE] = ACTIONS(2550), - [anon_sym_Public] = ACTIONS(2550), - [anon_sym_public] = ACTIONS(2550), - [anon_sym_PUBLIC] = ACTIONS(2550), - [anon_sym_Remote] = ACTIONS(2550), - [anon_sym_remote] = ACTIONS(2550), - [anon_sym_REMOTE] = ACTIONS(2550), - [anon_sym_Static] = ACTIONS(2550), - [anon_sym_static] = ACTIONS(2550), - [anon_sym_STATIC] = ACTIONS(2550), - [sym__automatic_semicolon] = ACTIONS(2552), - [sym__ternary_qmark] = ACTIONS(2552), - [sym__elvis_operator] = ACTIONS(2552), - [sym_logical_or] = ACTIONS(2552), - [sym_tag_linefeed] = ACTIONS(2552), - [sym__java_block_open] = ACTIONS(2552), - [sym__static_type_prefix] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2560), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_Query] = ACTIONS(2560), + [anon_sym_query] = ACTIONS(2560), + [anon_sym_QUERY] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2560), + [sym_optional_chain] = ACTIONS(2562), + [sym_static_chain] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_BSLASH] = ACTIONS(2560), + [anon_sym_STAR_STAR] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2562), + [anon_sym_LT_GT] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2562), + [aux_sym_binary_expression_token1] = ACTIONS(2562), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [aux_sym_binary_expression_token2] = ACTIONS(2560), + [aux_sym_binary_expression_token3] = ACTIONS(2560), + [aux_sym_binary_expression_token4] = ACTIONS(2562), + [aux_sym_binary_expression_token5] = ACTIONS(2562), + [aux_sym_binary_expression_token6] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [aux_sym_unary_operator_token1] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2560), + [aux_sym_number_token2] = ACTIONS(2560), + [anon_sym_This] = ACTIONS(2560), + [anon_sym_this] = ACTIONS(2560), + [anon_sym_THIS] = ACTIONS(2560), + [anon_sym_Super] = ACTIONS(2560), + [anon_sym_super] = ACTIONS(2560), + [anon_sym_SUPER] = ACTIONS(2560), + [anon_sym_True] = ACTIONS(2560), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_TRUE] = ACTIONS(2560), + [anon_sym_False] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_FALSE] = ACTIONS(2560), + [anon_sym_Null] = ACTIONS(2560), + [anon_sym_null] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_Undefined] = ACTIONS(2560), + [anon_sym_undefined] = ACTIONS(2560), + [anon_sym_UNDEFINED] = ACTIONS(2560), + [anon_sym_get] = ACTIONS(2560), + [anon_sym_set] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [sym_hash_empty] = ACTIONS(2562), + [anon_sym_export] = ACTIONS(2560), + [anon_sym_QueryExecute] = ACTIONS(2560), + [anon_sym_queryexecute] = ACTIONS(2560), + [anon_sym_QUERYEXECUTE] = ACTIONS(2560), + [anon_sym_queryExecute] = ACTIONS(2560), + [anon_sym_BQUOTE] = ACTIONS(2562), + [anon_sym_Abstract] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_ABSTRACT] = ACTIONS(2560), + [anon_sym_Component] = ACTIONS(2560), + [anon_sym_component] = ACTIONS(2560), + [anon_sym_COMPONENT] = ACTIONS(2560), + [anon_sym_Debugger] = ACTIONS(2560), + [anon_sym_debugger] = ACTIONS(2560), + [anon_sym_DEBUGGER] = ACTIONS(2560), + [anon_sym_Final] = ACTIONS(2560), + [anon_sym_final] = ACTIONS(2560), + [anon_sym_FINAL] = ACTIONS(2560), + [anon_sym_Function] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_FUNCTION] = ACTIONS(2560), + [anon_sym_In] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_IN] = ACTIONS(2560), + [anon_sym_Include] = ACTIONS(2560), + [anon_sym_include] = ACTIONS(2560), + [anon_sym_INCLUDE] = ACTIONS(2560), + [anon_sym_InstanceOf] = ACTIONS(2560), + [anon_sym_instanceof] = ACTIONS(2560), + [anon_sym_INSTANCEOF] = ACTIONS(2560), + [anon_sym_instanceOf] = ACTIONS(2560), + [anon_sym_New] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_NEW] = ACTIONS(2560), + [anon_sym_Package] = ACTIONS(2560), + [anon_sym_package] = ACTIONS(2560), + [anon_sym_PACKAGE] = ACTIONS(2560), + [anon_sym_Private] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_PRIVATE] = ACTIONS(2560), + [anon_sym_Public] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_PUBLIC] = ACTIONS(2560), + [anon_sym_Remote] = ACTIONS(2560), + [anon_sym_remote] = ACTIONS(2560), + [anon_sym_REMOTE] = ACTIONS(2560), + [anon_sym_Static] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_STATIC] = ACTIONS(2560), + [sym__automatic_semicolon] = ACTIONS(2562), + [sym__ternary_qmark] = ACTIONS(2562), + [sym__elvis_operator] = ACTIONS(2562), + [sym_logical_or] = ACTIONS(2562), + [sym_tag_linefeed] = ACTIONS(2562), + [sym__java_block_open] = ACTIONS(2562), + [sym__static_type_prefix] = ACTIONS(2562), }, [STATE(541)] = { - [sym_identifier] = ACTIONS(2554), - [anon_sym_DOT] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_COMMA] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_Query] = ACTIONS(2554), - [anon_sym_query] = ACTIONS(2554), - [anon_sym_QUERY] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2554), - [sym_optional_chain] = ACTIONS(2556), - [sym_static_chain] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2554), - [anon_sym_GT_GT_GT] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2556), - [anon_sym_BSLASH] = ACTIONS(2554), - [anon_sym_STAR_STAR] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2556), - [anon_sym_LT_GT] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2556), - [aux_sym_binary_expression_token1] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2554), - [aux_sym_binary_expression_token2] = ACTIONS(2554), - [aux_sym_binary_expression_token3] = ACTIONS(2554), - [aux_sym_binary_expression_token4] = ACTIONS(2556), - [aux_sym_binary_expression_token5] = ACTIONS(2556), - [aux_sym_binary_expression_token6] = ACTIONS(2556), - [anon_sym_QMARK_QMARK] = ACTIONS(2556), - [anon_sym_BANG] = ACTIONS(2554), - [anon_sym_TILDE] = ACTIONS(2556), - [aux_sym_unary_operator_token1] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2556), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2554), - [aux_sym_number_token2] = ACTIONS(2554), - [anon_sym_This] = ACTIONS(2554), - [anon_sym_this] = ACTIONS(2554), - [anon_sym_THIS] = ACTIONS(2554), - [anon_sym_Super] = ACTIONS(2554), - [anon_sym_super] = ACTIONS(2554), - [anon_sym_SUPER] = ACTIONS(2554), - [anon_sym_True] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2554), - [anon_sym_TRUE] = ACTIONS(2554), - [anon_sym_False] = ACTIONS(2554), - [anon_sym_false] = ACTIONS(2554), - [anon_sym_FALSE] = ACTIONS(2554), - [anon_sym_Null] = ACTIONS(2554), - [anon_sym_null] = ACTIONS(2554), - [anon_sym_NULL] = ACTIONS(2554), - [anon_sym_Undefined] = ACTIONS(2554), - [anon_sym_undefined] = ACTIONS(2554), - [anon_sym_UNDEFINED] = ACTIONS(2554), - [anon_sym_get] = ACTIONS(2554), - [anon_sym_set] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(2554), - [sym_hash_empty] = ACTIONS(2556), - [anon_sym_export] = ACTIONS(2554), - [anon_sym_QueryExecute] = ACTIONS(2554), - [anon_sym_queryexecute] = ACTIONS(2554), - [anon_sym_QUERYEXECUTE] = ACTIONS(2554), - [anon_sym_queryExecute] = ACTIONS(2554), - [anon_sym_BQUOTE] = ACTIONS(2556), - [anon_sym_Abstract] = ACTIONS(2554), - [anon_sym_abstract] = ACTIONS(2554), - [anon_sym_ABSTRACT] = ACTIONS(2554), - [anon_sym_Component] = ACTIONS(2554), - [anon_sym_component] = ACTIONS(2554), - [anon_sym_COMPONENT] = ACTIONS(2554), - [anon_sym_Debugger] = ACTIONS(2554), - [anon_sym_debugger] = ACTIONS(2554), - [anon_sym_DEBUGGER] = ACTIONS(2554), - [anon_sym_Final] = ACTIONS(2554), - [anon_sym_final] = ACTIONS(2554), - [anon_sym_FINAL] = ACTIONS(2554), - [anon_sym_Function] = ACTIONS(2554), - [anon_sym_function] = ACTIONS(2554), - [anon_sym_FUNCTION] = ACTIONS(2554), - [anon_sym_In] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [anon_sym_IN] = ACTIONS(2554), - [anon_sym_Include] = ACTIONS(2554), - [anon_sym_include] = ACTIONS(2554), - [anon_sym_INCLUDE] = ACTIONS(2554), - [anon_sym_InstanceOf] = ACTIONS(2554), - [anon_sym_instanceof] = ACTIONS(2554), - [anon_sym_INSTANCEOF] = ACTIONS(2554), - [anon_sym_instanceOf] = ACTIONS(2554), - [anon_sym_New] = ACTIONS(2554), - [anon_sym_new] = ACTIONS(2554), - [anon_sym_NEW] = ACTIONS(2554), - [anon_sym_Package] = ACTIONS(2554), - [anon_sym_package] = ACTIONS(2554), - [anon_sym_PACKAGE] = ACTIONS(2554), - [anon_sym_Private] = ACTIONS(2554), - [anon_sym_private] = ACTIONS(2554), - [anon_sym_PRIVATE] = ACTIONS(2554), - [anon_sym_Public] = ACTIONS(2554), - [anon_sym_public] = ACTIONS(2554), - [anon_sym_PUBLIC] = ACTIONS(2554), - [anon_sym_Remote] = ACTIONS(2554), - [anon_sym_remote] = ACTIONS(2554), - [anon_sym_REMOTE] = ACTIONS(2554), - [anon_sym_Static] = ACTIONS(2554), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_STATIC] = ACTIONS(2554), - [sym__automatic_semicolon] = ACTIONS(2556), - [sym__ternary_qmark] = ACTIONS(2556), - [sym__elvis_operator] = ACTIONS(2556), - [sym_logical_or] = ACTIONS(2556), - [sym_tag_linefeed] = ACTIONS(2556), - [sym__java_block_open] = ACTIONS(2556), - [sym__static_type_prefix] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_Query] = ACTIONS(2564), + [anon_sym_query] = ACTIONS(2564), + [anon_sym_QUERY] = ACTIONS(2564), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2564), + [anon_sym_TILDE] = ACTIONS(2566), + [aux_sym_unary_operator_token1] = ACTIONS(2564), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2564), + [aux_sym_number_token2] = ACTIONS(2564), + [anon_sym_This] = ACTIONS(2564), + [anon_sym_this] = ACTIONS(2564), + [anon_sym_THIS] = ACTIONS(2564), + [anon_sym_Super] = ACTIONS(2564), + [anon_sym_super] = ACTIONS(2564), + [anon_sym_SUPER] = ACTIONS(2564), + [anon_sym_True] = ACTIONS(2564), + [anon_sym_true] = ACTIONS(2564), + [anon_sym_TRUE] = ACTIONS(2564), + [anon_sym_False] = ACTIONS(2564), + [anon_sym_false] = ACTIONS(2564), + [anon_sym_FALSE] = ACTIONS(2564), + [anon_sym_Null] = ACTIONS(2564), + [anon_sym_null] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_Undefined] = ACTIONS(2564), + [anon_sym_undefined] = ACTIONS(2564), + [anon_sym_UNDEFINED] = ACTIONS(2564), + [anon_sym_get] = ACTIONS(2564), + [anon_sym_set] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [sym_hash_empty] = ACTIONS(2566), + [anon_sym_export] = ACTIONS(2564), + [anon_sym_QueryExecute] = ACTIONS(2564), + [anon_sym_queryexecute] = ACTIONS(2564), + [anon_sym_QUERYEXECUTE] = ACTIONS(2564), + [anon_sym_queryExecute] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2566), + [anon_sym_Abstract] = ACTIONS(2564), + [anon_sym_abstract] = ACTIONS(2564), + [anon_sym_ABSTRACT] = ACTIONS(2564), + [anon_sym_Component] = ACTIONS(2564), + [anon_sym_component] = ACTIONS(2564), + [anon_sym_COMPONENT] = ACTIONS(2564), + [anon_sym_Debugger] = ACTIONS(2564), + [anon_sym_debugger] = ACTIONS(2564), + [anon_sym_DEBUGGER] = ACTIONS(2564), + [anon_sym_Final] = ACTIONS(2564), + [anon_sym_final] = ACTIONS(2564), + [anon_sym_FINAL] = ACTIONS(2564), + [anon_sym_Function] = ACTIONS(2564), + [anon_sym_function] = ACTIONS(2564), + [anon_sym_FUNCTION] = ACTIONS(2564), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_Include] = ACTIONS(2564), + [anon_sym_include] = ACTIONS(2564), + [anon_sym_INCLUDE] = ACTIONS(2564), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [anon_sym_New] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(2564), + [anon_sym_NEW] = ACTIONS(2564), + [anon_sym_Package] = ACTIONS(2564), + [anon_sym_package] = ACTIONS(2564), + [anon_sym_PACKAGE] = ACTIONS(2564), + [anon_sym_Private] = ACTIONS(2564), + [anon_sym_private] = ACTIONS(2564), + [anon_sym_PRIVATE] = ACTIONS(2564), + [anon_sym_Public] = ACTIONS(2564), + [anon_sym_public] = ACTIONS(2564), + [anon_sym_PUBLIC] = ACTIONS(2564), + [anon_sym_Remote] = ACTIONS(2564), + [anon_sym_remote] = ACTIONS(2564), + [anon_sym_REMOTE] = ACTIONS(2564), + [anon_sym_Static] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_STATIC] = ACTIONS(2564), + [sym__automatic_semicolon] = ACTIONS(2566), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym_tag_linefeed] = ACTIONS(2566), + [sym__java_block_open] = ACTIONS(2566), + [sym__static_type_prefix] = ACTIONS(2566), }, [STATE(542)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_Query] = ACTIONS(2284), - [anon_sym_query] = ACTIONS(2284), - [anon_sym_QUERY] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2286), - [aux_sym_unary_operator_token1] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2284), - [aux_sym_number_token2] = ACTIONS(2284), - [anon_sym_This] = ACTIONS(2284), - [anon_sym_this] = ACTIONS(2284), - [anon_sym_THIS] = ACTIONS(2284), - [anon_sym_Super] = ACTIONS(2284), - [anon_sym_super] = ACTIONS(2284), - [anon_sym_SUPER] = ACTIONS(2284), - [anon_sym_True] = ACTIONS(2284), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_TRUE] = ACTIONS(2284), - [anon_sym_False] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_FALSE] = ACTIONS(2284), - [anon_sym_Null] = ACTIONS(2284), - [anon_sym_null] = ACTIONS(2284), - [anon_sym_NULL] = ACTIONS(2284), - [anon_sym_Undefined] = ACTIONS(2284), - [anon_sym_undefined] = ACTIONS(2284), - [anon_sym_UNDEFINED] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2284), - [sym_hash_empty] = ACTIONS(2286), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_QueryExecute] = ACTIONS(2284), - [anon_sym_queryexecute] = ACTIONS(2284), - [anon_sym_QUERYEXECUTE] = ACTIONS(2284), - [anon_sym_queryExecute] = ACTIONS(2284), - [anon_sym_BQUOTE] = ACTIONS(2286), - [anon_sym_Abstract] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_ABSTRACT] = ACTIONS(2284), - [anon_sym_Component] = ACTIONS(2284), - [anon_sym_component] = ACTIONS(2284), - [anon_sym_COMPONENT] = ACTIONS(2284), - [anon_sym_Debugger] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_DEBUGGER] = ACTIONS(2284), - [anon_sym_Final] = ACTIONS(2284), - [anon_sym_final] = ACTIONS(2284), - [anon_sym_FINAL] = ACTIONS(2284), - [anon_sym_Function] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_FUNCTION] = ACTIONS(2284), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_Include] = ACTIONS(2284), - [anon_sym_include] = ACTIONS(2284), - [anon_sym_INCLUDE] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [anon_sym_New] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_NEW] = ACTIONS(2284), - [anon_sym_Package] = ACTIONS(2284), - [anon_sym_package] = ACTIONS(2284), - [anon_sym_PACKAGE] = ACTIONS(2284), - [anon_sym_Private] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_PRIVATE] = ACTIONS(2284), - [anon_sym_Public] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_PUBLIC] = ACTIONS(2284), - [anon_sym_Remote] = ACTIONS(2284), - [anon_sym_remote] = ACTIONS(2284), - [anon_sym_REMOTE] = ACTIONS(2284), - [anon_sym_Static] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_STATIC] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym_tag_linefeed] = ACTIONS(2286), - [sym__java_block_open] = ACTIONS(2286), - [sym__static_type_prefix] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_Query] = ACTIONS(2556), + [anon_sym_query] = ACTIONS(2556), + [anon_sym_QUERY] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_TILDE] = ACTIONS(2558), + [aux_sym_unary_operator_token1] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2556), + [aux_sym_number_token2] = ACTIONS(2556), + [anon_sym_This] = ACTIONS(2556), + [anon_sym_this] = ACTIONS(2556), + [anon_sym_THIS] = ACTIONS(2556), + [anon_sym_Super] = ACTIONS(2556), + [anon_sym_super] = ACTIONS(2556), + [anon_sym_SUPER] = ACTIONS(2556), + [anon_sym_True] = ACTIONS(2556), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_TRUE] = ACTIONS(2556), + [anon_sym_False] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_FALSE] = ACTIONS(2556), + [anon_sym_Null] = ACTIONS(2556), + [anon_sym_null] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_Undefined] = ACTIONS(2556), + [anon_sym_undefined] = ACTIONS(2556), + [anon_sym_UNDEFINED] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [sym_hash_empty] = ACTIONS(2558), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_QueryExecute] = ACTIONS(2556), + [anon_sym_queryexecute] = ACTIONS(2556), + [anon_sym_QUERYEXECUTE] = ACTIONS(2556), + [anon_sym_queryExecute] = ACTIONS(2556), + [anon_sym_BQUOTE] = ACTIONS(2558), + [anon_sym_Abstract] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_ABSTRACT] = ACTIONS(2556), + [anon_sym_Component] = ACTIONS(2556), + [anon_sym_component] = ACTIONS(2556), + [anon_sym_COMPONENT] = ACTIONS(2556), + [anon_sym_Debugger] = ACTIONS(2556), + [anon_sym_debugger] = ACTIONS(2556), + [anon_sym_DEBUGGER] = ACTIONS(2556), + [anon_sym_Final] = ACTIONS(2556), + [anon_sym_final] = ACTIONS(2556), + [anon_sym_FINAL] = ACTIONS(2556), + [anon_sym_Function] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_FUNCTION] = ACTIONS(2556), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_Include] = ACTIONS(2556), + [anon_sym_include] = ACTIONS(2556), + [anon_sym_INCLUDE] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [anon_sym_New] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_NEW] = ACTIONS(2556), + [anon_sym_Package] = ACTIONS(2556), + [anon_sym_package] = ACTIONS(2556), + [anon_sym_PACKAGE] = ACTIONS(2556), + [anon_sym_Private] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_PRIVATE] = ACTIONS(2556), + [anon_sym_Public] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_PUBLIC] = ACTIONS(2556), + [anon_sym_Remote] = ACTIONS(2556), + [anon_sym_remote] = ACTIONS(2556), + [anon_sym_REMOTE] = ACTIONS(2556), + [anon_sym_Static] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_STATIC] = ACTIONS(2556), + [sym__automatic_semicolon] = ACTIONS(2558), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym_tag_linefeed] = ACTIONS(2558), + [sym__java_block_open] = ACTIONS(2558), + [sym__static_type_prefix] = ACTIONS(2558), }, [STATE(543)] = { - [sym_identifier] = ACTIONS(2558), - [anon_sym_DOT] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_Query] = ACTIONS(2558), - [anon_sym_query] = ACTIONS(2558), - [anon_sym_QUERY] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2558), - [sym_optional_chain] = ACTIONS(2560), - [sym_static_chain] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_GT_GT_GT] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2560), - [anon_sym_BSLASH] = ACTIONS(2558), - [anon_sym_STAR_STAR] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2560), - [anon_sym_LT_GT] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2560), - [aux_sym_binary_expression_token1] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2558), - [aux_sym_binary_expression_token2] = ACTIONS(2558), - [aux_sym_binary_expression_token3] = ACTIONS(2558), - [aux_sym_binary_expression_token4] = ACTIONS(2560), - [aux_sym_binary_expression_token5] = ACTIONS(2560), - [aux_sym_binary_expression_token6] = ACTIONS(2560), - [anon_sym_QMARK_QMARK] = ACTIONS(2560), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2560), - [aux_sym_unary_operator_token1] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2558), - [aux_sym_number_token2] = ACTIONS(2558), - [anon_sym_This] = ACTIONS(2558), - [anon_sym_this] = ACTIONS(2558), - [anon_sym_THIS] = ACTIONS(2558), - [anon_sym_Super] = ACTIONS(2558), - [anon_sym_super] = ACTIONS(2558), - [anon_sym_SUPER] = ACTIONS(2558), - [anon_sym_True] = ACTIONS(2558), - [anon_sym_true] = ACTIONS(2558), - [anon_sym_TRUE] = ACTIONS(2558), - [anon_sym_False] = ACTIONS(2558), - [anon_sym_false] = ACTIONS(2558), - [anon_sym_FALSE] = ACTIONS(2558), - [anon_sym_Null] = ACTIONS(2558), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_NULL] = ACTIONS(2558), - [anon_sym_Undefined] = ACTIONS(2558), - [anon_sym_undefined] = ACTIONS(2558), - [anon_sym_UNDEFINED] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_POUND] = ACTIONS(2558), - [sym_hash_empty] = ACTIONS(2560), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_QueryExecute] = ACTIONS(2558), - [anon_sym_queryexecute] = ACTIONS(2558), - [anon_sym_QUERYEXECUTE] = ACTIONS(2558), - [anon_sym_queryExecute] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2560), - [anon_sym_Abstract] = ACTIONS(2558), - [anon_sym_abstract] = ACTIONS(2558), - [anon_sym_ABSTRACT] = ACTIONS(2558), - [anon_sym_Component] = ACTIONS(2558), - [anon_sym_component] = ACTIONS(2558), - [anon_sym_COMPONENT] = ACTIONS(2558), - [anon_sym_Debugger] = ACTIONS(2558), - [anon_sym_debugger] = ACTIONS(2558), - [anon_sym_DEBUGGER] = ACTIONS(2558), - [anon_sym_Final] = ACTIONS(2558), - [anon_sym_final] = ACTIONS(2558), - [anon_sym_FINAL] = ACTIONS(2558), - [anon_sym_Function] = ACTIONS(2558), - [anon_sym_function] = ACTIONS(2558), - [anon_sym_FUNCTION] = ACTIONS(2558), - [anon_sym_In] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_IN] = ACTIONS(2558), - [anon_sym_Include] = ACTIONS(2558), - [anon_sym_include] = ACTIONS(2558), - [anon_sym_INCLUDE] = ACTIONS(2558), - [anon_sym_InstanceOf] = ACTIONS(2558), - [anon_sym_instanceof] = ACTIONS(2558), - [anon_sym_INSTANCEOF] = ACTIONS(2558), - [anon_sym_instanceOf] = ACTIONS(2558), - [anon_sym_New] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_NEW] = ACTIONS(2558), - [anon_sym_Package] = ACTIONS(2558), - [anon_sym_package] = ACTIONS(2558), - [anon_sym_PACKAGE] = ACTIONS(2558), - [anon_sym_Private] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_PRIVATE] = ACTIONS(2558), - [anon_sym_Public] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_PUBLIC] = ACTIONS(2558), - [anon_sym_Remote] = ACTIONS(2558), - [anon_sym_remote] = ACTIONS(2558), - [anon_sym_REMOTE] = ACTIONS(2558), - [anon_sym_Static] = ACTIONS(2558), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_STATIC] = ACTIONS(2558), - [sym__automatic_semicolon] = ACTIONS(2560), - [sym__ternary_qmark] = ACTIONS(2560), - [sym__elvis_operator] = ACTIONS(2560), - [sym_logical_or] = ACTIONS(2560), - [sym_tag_linefeed] = ACTIONS(2560), - [sym__java_block_open] = ACTIONS(2560), - [sym__static_type_prefix] = ACTIONS(2560), + [sym_identifier] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_Query] = ACTIONS(2568), + [anon_sym_query] = ACTIONS(2568), + [anon_sym_QUERY] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2568), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [aux_sym_unary_operator_token1] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2568), + [aux_sym_number_token2] = ACTIONS(2568), + [anon_sym_This] = ACTIONS(2568), + [anon_sym_this] = ACTIONS(2568), + [anon_sym_THIS] = ACTIONS(2568), + [anon_sym_Super] = ACTIONS(2568), + [anon_sym_super] = ACTIONS(2568), + [anon_sym_SUPER] = ACTIONS(2568), + [anon_sym_True] = ACTIONS(2568), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_TRUE] = ACTIONS(2568), + [anon_sym_False] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [anon_sym_FALSE] = ACTIONS(2568), + [anon_sym_Null] = ACTIONS(2568), + [anon_sym_null] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_Undefined] = ACTIONS(2568), + [anon_sym_undefined] = ACTIONS(2568), + [anon_sym_UNDEFINED] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [sym_hash_empty] = ACTIONS(2570), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_QueryExecute] = ACTIONS(2568), + [anon_sym_queryexecute] = ACTIONS(2568), + [anon_sym_QUERYEXECUTE] = ACTIONS(2568), + [anon_sym_queryExecute] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2570), + [anon_sym_Abstract] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_ABSTRACT] = ACTIONS(2568), + [anon_sym_Component] = ACTIONS(2568), + [anon_sym_component] = ACTIONS(2568), + [anon_sym_COMPONENT] = ACTIONS(2568), + [anon_sym_Debugger] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_DEBUGGER] = ACTIONS(2568), + [anon_sym_Final] = ACTIONS(2568), + [anon_sym_final] = ACTIONS(2568), + [anon_sym_FINAL] = ACTIONS(2568), + [anon_sym_Function] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_FUNCTION] = ACTIONS(2568), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_Include] = ACTIONS(2568), + [anon_sym_include] = ACTIONS(2568), + [anon_sym_INCLUDE] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2568), + [anon_sym_instanceof] = ACTIONS(2568), + [anon_sym_INSTANCEOF] = ACTIONS(2568), + [anon_sym_instanceOf] = ACTIONS(2568), + [anon_sym_New] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_NEW] = ACTIONS(2568), + [anon_sym_Package] = ACTIONS(2568), + [anon_sym_package] = ACTIONS(2568), + [anon_sym_PACKAGE] = ACTIONS(2568), + [anon_sym_Private] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_PRIVATE] = ACTIONS(2568), + [anon_sym_Public] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_PUBLIC] = ACTIONS(2568), + [anon_sym_Remote] = ACTIONS(2568), + [anon_sym_remote] = ACTIONS(2568), + [anon_sym_REMOTE] = ACTIONS(2568), + [anon_sym_Static] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_STATIC] = ACTIONS(2568), + [sym__automatic_semicolon] = ACTIONS(2570), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), + [sym_tag_linefeed] = ACTIONS(2570), + [sym__java_block_open] = ACTIONS(2570), + [sym__static_type_prefix] = ACTIONS(2570), }, [STATE(544)] = { - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_Query] = ACTIONS(2250), - [anon_sym_query] = ACTIONS(2250), - [anon_sym_QUERY] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2254), - [sym_static_chain] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2254), - [aux_sym_unary_operator_token1] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2250), - [aux_sym_number_token2] = ACTIONS(2250), - [anon_sym_This] = ACTIONS(2250), - [anon_sym_this] = ACTIONS(2250), - [anon_sym_THIS] = ACTIONS(2250), - [anon_sym_Super] = ACTIONS(2250), - [anon_sym_super] = ACTIONS(2250), - [anon_sym_SUPER] = ACTIONS(2250), - [anon_sym_True] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_TRUE] = ACTIONS(2250), - [anon_sym_False] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_FALSE] = ACTIONS(2250), - [anon_sym_Null] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [anon_sym_NULL] = ACTIONS(2250), - [anon_sym_Undefined] = ACTIONS(2250), - [anon_sym_undefined] = ACTIONS(2250), - [anon_sym_UNDEFINED] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), - [sym_hash_empty] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_QueryExecute] = ACTIONS(2250), - [anon_sym_queryexecute] = ACTIONS(2250), - [anon_sym_QUERYEXECUTE] = ACTIONS(2250), - [anon_sym_queryExecute] = ACTIONS(2250), - [anon_sym_BQUOTE] = ACTIONS(2254), - [anon_sym_Abstract] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_ABSTRACT] = ACTIONS(2250), - [anon_sym_Component] = ACTIONS(2250), - [anon_sym_component] = ACTIONS(2250), - [anon_sym_COMPONENT] = ACTIONS(2250), - [anon_sym_Debugger] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_DEBUGGER] = ACTIONS(2250), - [anon_sym_Final] = ACTIONS(2250), - [anon_sym_final] = ACTIONS(2250), - [anon_sym_FINAL] = ACTIONS(2250), - [anon_sym_Function] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_FUNCTION] = ACTIONS(2250), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_Include] = ACTIONS(2250), - [anon_sym_include] = ACTIONS(2250), - [anon_sym_INCLUDE] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [anon_sym_New] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_NEW] = ACTIONS(2250), - [anon_sym_Package] = ACTIONS(2250), - [anon_sym_package] = ACTIONS(2250), - [anon_sym_PACKAGE] = ACTIONS(2250), - [anon_sym_Private] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_PRIVATE] = ACTIONS(2250), - [anon_sym_Public] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_PUBLIC] = ACTIONS(2250), - [anon_sym_Remote] = ACTIONS(2250), - [anon_sym_remote] = ACTIONS(2250), - [anon_sym_REMOTE] = ACTIONS(2250), - [anon_sym_Static] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_STATIC] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - [sym_tag_linefeed] = ACTIONS(2254), - [sym__java_block_open] = ACTIONS(2254), - [sym__static_type_prefix] = ACTIONS(2254), + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_Query] = ACTIONS(2468), + [anon_sym_query] = ACTIONS(2468), + [anon_sym_QUERY] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2468), + [sym_optional_chain] = ACTIONS(2470), + [sym_static_chain] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_BSLASH] = ACTIONS(2468), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_LT_GT] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [aux_sym_binary_expression_token1] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [aux_sym_binary_expression_token2] = ACTIONS(2468), + [aux_sym_binary_expression_token3] = ACTIONS(2468), + [aux_sym_binary_expression_token4] = ACTIONS(2470), + [aux_sym_binary_expression_token5] = ACTIONS(2470), + [aux_sym_binary_expression_token6] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2470), + [aux_sym_unary_operator_token1] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2468), + [aux_sym_number_token2] = ACTIONS(2468), + [anon_sym_This] = ACTIONS(2468), + [anon_sym_this] = ACTIONS(2468), + [anon_sym_THIS] = ACTIONS(2468), + [anon_sym_Super] = ACTIONS(2468), + [anon_sym_super] = ACTIONS(2468), + [anon_sym_SUPER] = ACTIONS(2468), + [anon_sym_True] = ACTIONS(2468), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_TRUE] = ACTIONS(2468), + [anon_sym_False] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_FALSE] = ACTIONS(2468), + [anon_sym_Null] = ACTIONS(2468), + [anon_sym_null] = ACTIONS(2468), + [anon_sym_NULL] = ACTIONS(2468), + [anon_sym_Undefined] = ACTIONS(2468), + [anon_sym_undefined] = ACTIONS(2468), + [anon_sym_UNDEFINED] = ACTIONS(2468), + [anon_sym_get] = ACTIONS(2468), + [anon_sym_set] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(2468), + [sym_hash_empty] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_QueryExecute] = ACTIONS(2468), + [anon_sym_queryexecute] = ACTIONS(2468), + [anon_sym_QUERYEXECUTE] = ACTIONS(2468), + [anon_sym_queryExecute] = ACTIONS(2468), + [anon_sym_BQUOTE] = ACTIONS(2470), + [anon_sym_Abstract] = ACTIONS(2468), + [anon_sym_abstract] = ACTIONS(2468), + [anon_sym_ABSTRACT] = ACTIONS(2468), + [anon_sym_Component] = ACTIONS(2468), + [anon_sym_component] = ACTIONS(2468), + [anon_sym_COMPONENT] = ACTIONS(2468), + [anon_sym_Debugger] = ACTIONS(2468), + [anon_sym_debugger] = ACTIONS(2468), + [anon_sym_DEBUGGER] = ACTIONS(2468), + [anon_sym_Final] = ACTIONS(2468), + [anon_sym_final] = ACTIONS(2468), + [anon_sym_FINAL] = ACTIONS(2468), + [anon_sym_Function] = ACTIONS(2468), + [anon_sym_function] = ACTIONS(2468), + [anon_sym_FUNCTION] = ACTIONS(2468), + [anon_sym_In] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2468), + [anon_sym_IN] = ACTIONS(2468), + [anon_sym_Include] = ACTIONS(2468), + [anon_sym_include] = ACTIONS(2468), + [anon_sym_INCLUDE] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(2468), + [anon_sym_instanceof] = ACTIONS(2468), + [anon_sym_INSTANCEOF] = ACTIONS(2468), + [anon_sym_instanceOf] = ACTIONS(2468), + [anon_sym_New] = ACTIONS(2468), + [anon_sym_new] = ACTIONS(2468), + [anon_sym_NEW] = ACTIONS(2468), + [anon_sym_Package] = ACTIONS(2468), + [anon_sym_package] = ACTIONS(2468), + [anon_sym_PACKAGE] = ACTIONS(2468), + [anon_sym_Private] = ACTIONS(2468), + [anon_sym_private] = ACTIONS(2468), + [anon_sym_PRIVATE] = ACTIONS(2468), + [anon_sym_Public] = ACTIONS(2468), + [anon_sym_public] = ACTIONS(2468), + [anon_sym_PUBLIC] = ACTIONS(2468), + [anon_sym_Remote] = ACTIONS(2468), + [anon_sym_remote] = ACTIONS(2468), + [anon_sym_REMOTE] = ACTIONS(2468), + [anon_sym_Static] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_STATIC] = ACTIONS(2468), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(2470), + [sym__elvis_operator] = ACTIONS(2470), + [sym_logical_or] = ACTIONS(2470), + [sym_tag_linefeed] = ACTIONS(2470), + [sym__java_block_open] = ACTIONS(2470), + [sym__static_type_prefix] = ACTIONS(2470), }, [STATE(545)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_Query] = ACTIONS(2462), - [anon_sym_query] = ACTIONS(2462), - [anon_sym_QUERY] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2462), - [sym_optional_chain] = ACTIONS(2464), - [sym_static_chain] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_GT_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_BSLASH] = ACTIONS(2462), - [anon_sym_STAR_STAR] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_LT_EQ] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_LT_GT] = ACTIONS(2464), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2464), - [aux_sym_binary_expression_token1] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2462), - [aux_sym_binary_expression_token2] = ACTIONS(2462), - [aux_sym_binary_expression_token3] = ACTIONS(2462), - [aux_sym_binary_expression_token4] = ACTIONS(2464), - [aux_sym_binary_expression_token5] = ACTIONS(2464), - [aux_sym_binary_expression_token6] = ACTIONS(2464), - [anon_sym_QMARK_QMARK] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_TILDE] = ACTIONS(2464), - [aux_sym_unary_operator_token1] = ACTIONS(2462), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2464), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2462), - [aux_sym_number_token2] = ACTIONS(2462), - [anon_sym_This] = ACTIONS(2462), - [anon_sym_this] = ACTIONS(2462), - [anon_sym_THIS] = ACTIONS(2462), - [anon_sym_Super] = ACTIONS(2462), - [anon_sym_super] = ACTIONS(2462), - [anon_sym_SUPER] = ACTIONS(2462), - [anon_sym_True] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2462), - [anon_sym_TRUE] = ACTIONS(2462), - [anon_sym_False] = ACTIONS(2462), - [anon_sym_false] = ACTIONS(2462), - [anon_sym_FALSE] = ACTIONS(2462), - [anon_sym_Null] = ACTIONS(2462), - [anon_sym_null] = ACTIONS(2462), - [anon_sym_NULL] = ACTIONS(2462), - [anon_sym_Undefined] = ACTIONS(2462), - [anon_sym_undefined] = ACTIONS(2462), - [anon_sym_UNDEFINED] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(2462), - [sym_hash_empty] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_QueryExecute] = ACTIONS(2462), - [anon_sym_queryexecute] = ACTIONS(2462), - [anon_sym_QUERYEXECUTE] = ACTIONS(2462), - [anon_sym_queryExecute] = ACTIONS(2462), - [anon_sym_BQUOTE] = ACTIONS(2464), - [anon_sym_Abstract] = ACTIONS(2462), - [anon_sym_abstract] = ACTIONS(2462), - [anon_sym_ABSTRACT] = ACTIONS(2462), - [anon_sym_Component] = ACTIONS(2462), - [anon_sym_component] = ACTIONS(2462), - [anon_sym_COMPONENT] = ACTIONS(2462), - [anon_sym_Debugger] = ACTIONS(2462), - [anon_sym_debugger] = ACTIONS(2462), - [anon_sym_DEBUGGER] = ACTIONS(2462), - [anon_sym_Final] = ACTIONS(2462), - [anon_sym_final] = ACTIONS(2462), - [anon_sym_FINAL] = ACTIONS(2462), - [anon_sym_Function] = ACTIONS(2462), - [anon_sym_function] = ACTIONS(2462), - [anon_sym_FUNCTION] = ACTIONS(2462), - [anon_sym_In] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [anon_sym_IN] = ACTIONS(2462), - [anon_sym_Include] = ACTIONS(2462), - [anon_sym_include] = ACTIONS(2462), - [anon_sym_INCLUDE] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(2462), - [anon_sym_instanceof] = ACTIONS(2462), - [anon_sym_INSTANCEOF] = ACTIONS(2462), - [anon_sym_instanceOf] = ACTIONS(2462), - [anon_sym_New] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_NEW] = ACTIONS(2462), - [anon_sym_Package] = ACTIONS(2462), - [anon_sym_package] = ACTIONS(2462), - [anon_sym_PACKAGE] = ACTIONS(2462), - [anon_sym_Private] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_PRIVATE] = ACTIONS(2462), - [anon_sym_Public] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_PUBLIC] = ACTIONS(2462), - [anon_sym_Remote] = ACTIONS(2462), - [anon_sym_remote] = ACTIONS(2462), - [anon_sym_REMOTE] = ACTIONS(2462), - [anon_sym_Static] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_STATIC] = ACTIONS(2462), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(2464), - [sym__elvis_operator] = ACTIONS(2464), - [sym_logical_or] = ACTIONS(2464), - [sym_tag_linefeed] = ACTIONS(2464), - [sym__java_block_open] = ACTIONS(2464), - [sym__static_type_prefix] = ACTIONS(2464), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_Query] = ACTIONS(2209), + [anon_sym_query] = ACTIONS(2209), + [anon_sym_QUERY] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [aux_sym_unary_operator_token1] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2209), + [aux_sym_number_token2] = ACTIONS(2207), + [anon_sym_This] = ACTIONS(2209), + [anon_sym_this] = ACTIONS(2209), + [anon_sym_THIS] = ACTIONS(2209), + [anon_sym_Super] = ACTIONS(2209), + [anon_sym_super] = ACTIONS(2209), + [anon_sym_SUPER] = ACTIONS(2209), + [anon_sym_True] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_TRUE] = ACTIONS(2209), + [anon_sym_False] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_FALSE] = ACTIONS(2209), + [anon_sym_Null] = ACTIONS(2209), + [anon_sym_null] = ACTIONS(2209), + [anon_sym_NULL] = ACTIONS(2209), + [anon_sym_Undefined] = ACTIONS(2209), + [anon_sym_undefined] = ACTIONS(2209), + [anon_sym_UNDEFINED] = ACTIONS(2209), + [anon_sym_get] = ACTIONS(2209), + [anon_sym_set] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [sym_hash_empty] = ACTIONS(2207), + [anon_sym_export] = ACTIONS(2209), + [anon_sym_QueryExecute] = ACTIONS(2209), + [anon_sym_queryexecute] = ACTIONS(2209), + [anon_sym_QUERYEXECUTE] = ACTIONS(2209), + [anon_sym_queryExecute] = ACTIONS(2209), + [anon_sym_BQUOTE] = ACTIONS(2209), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2207), + [anon_sym_Abstract] = ACTIONS(2209), + [anon_sym_abstract] = ACTIONS(2209), + [anon_sym_ABSTRACT] = ACTIONS(2209), + [anon_sym_Break] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_BREAK] = ACTIONS(2209), + [anon_sym_Case] = ACTIONS(2209), + [anon_sym_case] = ACTIONS(2209), + [anon_sym_CASE] = ACTIONS(2209), + [anon_sym_Catch] = ACTIONS(2209), + [anon_sym_catch] = ACTIONS(2209), + [anon_sym_CATCH] = ACTIONS(2209), + [anon_sym_Component] = ACTIONS(2209), + [anon_sym_component] = ACTIONS(2209), + [anon_sym_COMPONENT] = ACTIONS(2209), + [anon_sym_Continue] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_CONTINUE] = ACTIONS(2209), + [anon_sym_Debugger] = ACTIONS(2209), + [anon_sym_debugger] = ACTIONS(2209), + [anon_sym_DEBUGGER] = ACTIONS(2209), + [anon_sym_Default] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_DEFAULT] = ACTIONS(2209), + [anon_sym_Do] = ACTIONS(2209), + [anon_sym_do] = ACTIONS(2209), + [anon_sym_DO] = ACTIONS(2209), + [anon_sym_Final] = ACTIONS(2209), + [anon_sym_final] = ACTIONS(2209), + [anon_sym_FINAL] = ACTIONS(2209), + [anon_sym_Finally] = ACTIONS(2209), + [anon_sym_finally] = ACTIONS(2209), + [anon_sym_FINALLY] = ACTIONS(2209), + [anon_sym_For] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_FOR] = ACTIONS(2209), + [anon_sym_Function] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(2209), + [anon_sym_FUNCTION] = ACTIONS(2209), + [anon_sym_If] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_IF] = ACTIONS(2209), + [anon_sym_Import] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_IMPORT] = ACTIONS(2209), + [anon_sym_Include] = ACTIONS(2209), + [anon_sym_include] = ACTIONS(2209), + [anon_sym_INCLUDE] = ACTIONS(2209), + [anon_sym_Interface] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_INTERFACE] = ACTIONS(2209), + [anon_sym_New] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_NEW] = ACTIONS(2209), + [anon_sym_Package] = ACTIONS(2209), + [anon_sym_package] = ACTIONS(2209), + [anon_sym_PACKAGE] = ACTIONS(2209), + [anon_sym_Private] = ACTIONS(2209), + [anon_sym_private] = ACTIONS(2209), + [anon_sym_PRIVATE] = ACTIONS(2209), + [anon_sym_Property] = ACTIONS(2209), + [anon_sym_property] = ACTIONS(2209), + [anon_sym_PROPERTY] = ACTIONS(2209), + [anon_sym_Public] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_PUBLIC] = ACTIONS(2209), + [anon_sym_Remote] = ACTIONS(2209), + [anon_sym_remote] = ACTIONS(2209), + [anon_sym_REMOTE] = ACTIONS(2209), + [anon_sym_Return] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_RETURN] = ACTIONS(2209), + [anon_sym_Static] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_STATIC] = ACTIONS(2209), + [anon_sym_Switch] = ACTIONS(2209), + [anon_sym_switch] = ACTIONS(2209), + [anon_sym_SWITCH] = ACTIONS(2209), + [anon_sym_Throw] = ACTIONS(2209), + [anon_sym_throw] = ACTIONS(2209), + [anon_sym_THROW] = ACTIONS(2209), + [anon_sym_Try] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_TRY] = ACTIONS(2209), + [anon_sym_Var] = ACTIONS(2209), + [anon_sym_var] = ACTIONS(2209), + [anon_sym_VAR] = ACTIONS(2209), + [anon_sym_While] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_WHILE] = ACTIONS(2209), + [anon_sym_With] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_WITH] = ACTIONS(2209), + [sym_cf_comment] = ACTIONS(2207), + [sym__java_block_open] = ACTIONS(2207), + [sym__static_type_prefix] = ACTIONS(2207), }, [STATE(546)] = { - [sym_identifier] = ACTIONS(2562), - [anon_sym_DOT] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_COMMA] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_Query] = ACTIONS(2562), - [anon_sym_query] = ACTIONS(2562), - [anon_sym_QUERY] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2562), - [sym_optional_chain] = ACTIONS(2564), - [sym_static_chain] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_GT_GT_GT] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2564), - [anon_sym_BSLASH] = ACTIONS(2562), - [anon_sym_STAR_STAR] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2564), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2564), - [anon_sym_LT_GT] = ACTIONS(2564), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2564), - [aux_sym_binary_expression_token1] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2562), - [aux_sym_binary_expression_token2] = ACTIONS(2562), - [aux_sym_binary_expression_token3] = ACTIONS(2562), - [aux_sym_binary_expression_token4] = ACTIONS(2564), - [aux_sym_binary_expression_token5] = ACTIONS(2564), - [aux_sym_binary_expression_token6] = ACTIONS(2564), - [anon_sym_QMARK_QMARK] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2562), - [anon_sym_TILDE] = ACTIONS(2564), - [aux_sym_unary_operator_token1] = ACTIONS(2562), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2562), - [aux_sym_number_token2] = ACTIONS(2562), - [anon_sym_This] = ACTIONS(2562), - [anon_sym_this] = ACTIONS(2562), - [anon_sym_THIS] = ACTIONS(2562), - [anon_sym_Super] = ACTIONS(2562), - [anon_sym_super] = ACTIONS(2562), - [anon_sym_SUPER] = ACTIONS(2562), - [anon_sym_True] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2562), - [anon_sym_TRUE] = ACTIONS(2562), - [anon_sym_False] = ACTIONS(2562), - [anon_sym_false] = ACTIONS(2562), - [anon_sym_FALSE] = ACTIONS(2562), - [anon_sym_Null] = ACTIONS(2562), - [anon_sym_null] = ACTIONS(2562), - [anon_sym_NULL] = ACTIONS(2562), - [anon_sym_Undefined] = ACTIONS(2562), - [anon_sym_undefined] = ACTIONS(2562), - [anon_sym_UNDEFINED] = ACTIONS(2562), - [anon_sym_get] = ACTIONS(2562), - [anon_sym_set] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(2562), - [sym_hash_empty] = ACTIONS(2564), - [anon_sym_export] = ACTIONS(2562), - [anon_sym_QueryExecute] = ACTIONS(2562), - [anon_sym_queryexecute] = ACTIONS(2562), - [anon_sym_QUERYEXECUTE] = ACTIONS(2562), - [anon_sym_queryExecute] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2564), - [anon_sym_Abstract] = ACTIONS(2562), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_ABSTRACT] = ACTIONS(2562), - [anon_sym_Component] = ACTIONS(2562), - [anon_sym_component] = ACTIONS(2562), - [anon_sym_COMPONENT] = ACTIONS(2562), - [anon_sym_Debugger] = ACTIONS(2562), - [anon_sym_debugger] = ACTIONS(2562), - [anon_sym_DEBUGGER] = ACTIONS(2562), - [anon_sym_Final] = ACTIONS(2562), - [anon_sym_final] = ACTIONS(2562), - [anon_sym_FINAL] = ACTIONS(2562), - [anon_sym_Function] = ACTIONS(2562), - [anon_sym_function] = ACTIONS(2562), - [anon_sym_FUNCTION] = ACTIONS(2562), - [anon_sym_In] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2562), - [anon_sym_IN] = ACTIONS(2562), - [anon_sym_Include] = ACTIONS(2562), - [anon_sym_include] = ACTIONS(2562), - [anon_sym_INCLUDE] = ACTIONS(2562), - [anon_sym_InstanceOf] = ACTIONS(2562), - [anon_sym_instanceof] = ACTIONS(2562), - [anon_sym_INSTANCEOF] = ACTIONS(2562), - [anon_sym_instanceOf] = ACTIONS(2562), - [anon_sym_New] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_NEW] = ACTIONS(2562), - [anon_sym_Package] = ACTIONS(2562), - [anon_sym_package] = ACTIONS(2562), - [anon_sym_PACKAGE] = ACTIONS(2562), - [anon_sym_Private] = ACTIONS(2562), - [anon_sym_private] = ACTIONS(2562), - [anon_sym_PRIVATE] = ACTIONS(2562), - [anon_sym_Public] = ACTIONS(2562), - [anon_sym_public] = ACTIONS(2562), - [anon_sym_PUBLIC] = ACTIONS(2562), - [anon_sym_Remote] = ACTIONS(2562), - [anon_sym_remote] = ACTIONS(2562), - [anon_sym_REMOTE] = ACTIONS(2562), - [anon_sym_Static] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_STATIC] = ACTIONS(2562), - [sym__automatic_semicolon] = ACTIONS(2564), - [sym__ternary_qmark] = ACTIONS(2564), - [sym__elvis_operator] = ACTIONS(2564), - [sym_logical_or] = ACTIONS(2564), - [sym_tag_linefeed] = ACTIONS(2564), - [sym__java_block_open] = ACTIONS(2564), - [sym__static_type_prefix] = ACTIONS(2564), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_Query] = ACTIONS(2572), + [anon_sym_query] = ACTIONS(2572), + [anon_sym_QUERY] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2572), + [sym_optional_chain] = ACTIONS(2574), + [sym_static_chain] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_BSLASH] = ACTIONS(2572), + [anon_sym_STAR_STAR] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2574), + [anon_sym_LT_GT] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2574), + [aux_sym_binary_expression_token1] = ACTIONS(2574), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [aux_sym_binary_expression_token2] = ACTIONS(2572), + [aux_sym_binary_expression_token3] = ACTIONS(2572), + [aux_sym_binary_expression_token4] = ACTIONS(2574), + [aux_sym_binary_expression_token5] = ACTIONS(2574), + [aux_sym_binary_expression_token6] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_TILDE] = ACTIONS(2574), + [aux_sym_unary_operator_token1] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2572), + [aux_sym_number_token2] = ACTIONS(2572), + [anon_sym_This] = ACTIONS(2572), + [anon_sym_this] = ACTIONS(2572), + [anon_sym_THIS] = ACTIONS(2572), + [anon_sym_Super] = ACTIONS(2572), + [anon_sym_super] = ACTIONS(2572), + [anon_sym_SUPER] = ACTIONS(2572), + [anon_sym_True] = ACTIONS(2572), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_TRUE] = ACTIONS(2572), + [anon_sym_False] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [anon_sym_FALSE] = ACTIONS(2572), + [anon_sym_Null] = ACTIONS(2572), + [anon_sym_null] = ACTIONS(2572), + [anon_sym_NULL] = ACTIONS(2572), + [anon_sym_Undefined] = ACTIONS(2572), + [anon_sym_undefined] = ACTIONS(2572), + [anon_sym_UNDEFINED] = ACTIONS(2572), + [anon_sym_get] = ACTIONS(2572), + [anon_sym_set] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [sym_hash_empty] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2572), + [anon_sym_QueryExecute] = ACTIONS(2572), + [anon_sym_queryexecute] = ACTIONS(2572), + [anon_sym_QUERYEXECUTE] = ACTIONS(2572), + [anon_sym_queryExecute] = ACTIONS(2572), + [anon_sym_BQUOTE] = ACTIONS(2574), + [anon_sym_Abstract] = ACTIONS(2572), + [anon_sym_abstract] = ACTIONS(2572), + [anon_sym_ABSTRACT] = ACTIONS(2572), + [anon_sym_Component] = ACTIONS(2572), + [anon_sym_component] = ACTIONS(2572), + [anon_sym_COMPONENT] = ACTIONS(2572), + [anon_sym_Debugger] = ACTIONS(2572), + [anon_sym_debugger] = ACTIONS(2572), + [anon_sym_DEBUGGER] = ACTIONS(2572), + [anon_sym_Final] = ACTIONS(2572), + [anon_sym_final] = ACTIONS(2572), + [anon_sym_FINAL] = ACTIONS(2572), + [anon_sym_Function] = ACTIONS(2572), + [anon_sym_function] = ACTIONS(2572), + [anon_sym_FUNCTION] = ACTIONS(2572), + [anon_sym_In] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_IN] = ACTIONS(2572), + [anon_sym_Include] = ACTIONS(2572), + [anon_sym_include] = ACTIONS(2572), + [anon_sym_INCLUDE] = ACTIONS(2572), + [anon_sym_InstanceOf] = ACTIONS(2572), + [anon_sym_instanceof] = ACTIONS(2572), + [anon_sym_INSTANCEOF] = ACTIONS(2572), + [anon_sym_instanceOf] = ACTIONS(2572), + [anon_sym_New] = ACTIONS(2572), + [anon_sym_new] = ACTIONS(2572), + [anon_sym_NEW] = ACTIONS(2572), + [anon_sym_Package] = ACTIONS(2572), + [anon_sym_package] = ACTIONS(2572), + [anon_sym_PACKAGE] = ACTIONS(2572), + [anon_sym_Private] = ACTIONS(2572), + [anon_sym_private] = ACTIONS(2572), + [anon_sym_PRIVATE] = ACTIONS(2572), + [anon_sym_Public] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2572), + [anon_sym_PUBLIC] = ACTIONS(2572), + [anon_sym_Remote] = ACTIONS(2572), + [anon_sym_remote] = ACTIONS(2572), + [anon_sym_REMOTE] = ACTIONS(2572), + [anon_sym_Static] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_STATIC] = ACTIONS(2572), + [sym__automatic_semicolon] = ACTIONS(2574), + [sym__ternary_qmark] = ACTIONS(2574), + [sym__elvis_operator] = ACTIONS(2574), + [sym_logical_or] = ACTIONS(2574), + [sym_tag_linefeed] = ACTIONS(2574), + [sym__java_block_open] = ACTIONS(2574), + [sym__static_type_prefix] = ACTIONS(2574), }, [STATE(547)] = { - [sym_identifier] = ACTIONS(2566), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_COMMA] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_Query] = ACTIONS(2566), - [anon_sym_query] = ACTIONS(2566), - [anon_sym_QUERY] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2566), - [sym_optional_chain] = ACTIONS(2568), - [sym_static_chain] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_GT_GT_GT] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_CARET] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2568), - [anon_sym_BSLASH] = ACTIONS(2566), - [anon_sym_STAR_STAR] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2568), - [anon_sym_LT_GT] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2568), - [aux_sym_binary_expression_token1] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(2566), - [aux_sym_binary_expression_token2] = ACTIONS(2566), - [aux_sym_binary_expression_token3] = ACTIONS(2566), - [aux_sym_binary_expression_token4] = ACTIONS(2568), - [aux_sym_binary_expression_token5] = ACTIONS(2568), - [aux_sym_binary_expression_token6] = ACTIONS(2568), - [anon_sym_QMARK_QMARK] = ACTIONS(2568), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_TILDE] = ACTIONS(2568), - [aux_sym_unary_operator_token1] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2568), - [anon_sym_SQUOTE] = ACTIONS(2568), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2566), - [aux_sym_number_token2] = ACTIONS(2566), - [anon_sym_This] = ACTIONS(2566), - [anon_sym_this] = ACTIONS(2566), - [anon_sym_THIS] = ACTIONS(2566), - [anon_sym_Super] = ACTIONS(2566), - [anon_sym_super] = ACTIONS(2566), - [anon_sym_SUPER] = ACTIONS(2566), - [anon_sym_True] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2566), - [anon_sym_TRUE] = ACTIONS(2566), - [anon_sym_False] = ACTIONS(2566), - [anon_sym_false] = ACTIONS(2566), - [anon_sym_FALSE] = ACTIONS(2566), - [anon_sym_Null] = ACTIONS(2566), - [anon_sym_null] = ACTIONS(2566), - [anon_sym_NULL] = ACTIONS(2566), - [anon_sym_Undefined] = ACTIONS(2566), - [anon_sym_undefined] = ACTIONS(2566), - [anon_sym_UNDEFINED] = ACTIONS(2566), - [anon_sym_get] = ACTIONS(2566), - [anon_sym_set] = ACTIONS(2566), - [anon_sym_POUND] = ACTIONS(2566), - [sym_hash_empty] = ACTIONS(2568), - [anon_sym_export] = ACTIONS(2566), - [anon_sym_QueryExecute] = ACTIONS(2566), - [anon_sym_queryexecute] = ACTIONS(2566), - [anon_sym_QUERYEXECUTE] = ACTIONS(2566), - [anon_sym_queryExecute] = ACTIONS(2566), - [anon_sym_BQUOTE] = ACTIONS(2568), - [anon_sym_Abstract] = ACTIONS(2566), - [anon_sym_abstract] = ACTIONS(2566), - [anon_sym_ABSTRACT] = ACTIONS(2566), - [anon_sym_Component] = ACTIONS(2566), - [anon_sym_component] = ACTIONS(2566), - [anon_sym_COMPONENT] = ACTIONS(2566), - [anon_sym_Debugger] = ACTIONS(2566), - [anon_sym_debugger] = ACTIONS(2566), - [anon_sym_DEBUGGER] = ACTIONS(2566), - [anon_sym_Final] = ACTIONS(2566), - [anon_sym_final] = ACTIONS(2566), - [anon_sym_FINAL] = ACTIONS(2566), - [anon_sym_Function] = ACTIONS(2566), - [anon_sym_function] = ACTIONS(2566), - [anon_sym_FUNCTION] = ACTIONS(2566), - [anon_sym_In] = ACTIONS(2566), - [anon_sym_in] = ACTIONS(2566), - [anon_sym_IN] = ACTIONS(2566), - [anon_sym_Include] = ACTIONS(2566), - [anon_sym_include] = ACTIONS(2566), - [anon_sym_INCLUDE] = ACTIONS(2566), - [anon_sym_InstanceOf] = ACTIONS(2566), - [anon_sym_instanceof] = ACTIONS(2566), - [anon_sym_INSTANCEOF] = ACTIONS(2566), - [anon_sym_instanceOf] = ACTIONS(2566), - [anon_sym_New] = ACTIONS(2566), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_NEW] = ACTIONS(2566), - [anon_sym_Package] = ACTIONS(2566), - [anon_sym_package] = ACTIONS(2566), - [anon_sym_PACKAGE] = ACTIONS(2566), - [anon_sym_Private] = ACTIONS(2566), - [anon_sym_private] = ACTIONS(2566), - [anon_sym_PRIVATE] = ACTIONS(2566), - [anon_sym_Public] = ACTIONS(2566), - [anon_sym_public] = ACTIONS(2566), - [anon_sym_PUBLIC] = ACTIONS(2566), - [anon_sym_Remote] = ACTIONS(2566), - [anon_sym_remote] = ACTIONS(2566), - [anon_sym_REMOTE] = ACTIONS(2566), - [anon_sym_Static] = ACTIONS(2566), - [anon_sym_static] = ACTIONS(2566), - [anon_sym_STATIC] = ACTIONS(2566), - [sym__automatic_semicolon] = ACTIONS(2568), - [sym__ternary_qmark] = ACTIONS(2568), - [sym__elvis_operator] = ACTIONS(2568), - [sym_logical_or] = ACTIONS(2568), - [sym_tag_linefeed] = ACTIONS(2568), - [sym__java_block_open] = ACTIONS(2568), - [sym__static_type_prefix] = ACTIONS(2568), + [sym_identifier] = ACTIONS(2576), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2576), + [anon_sym_query] = ACTIONS(2576), + [anon_sym_QUERY] = ACTIONS(2576), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_TILDE] = ACTIONS(2578), + [aux_sym_unary_operator_token1] = ACTIONS(2576), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2576), + [aux_sym_number_token2] = ACTIONS(2576), + [anon_sym_This] = ACTIONS(2576), + [anon_sym_this] = ACTIONS(2576), + [anon_sym_THIS] = ACTIONS(2576), + [anon_sym_Super] = ACTIONS(2576), + [anon_sym_super] = ACTIONS(2576), + [anon_sym_SUPER] = ACTIONS(2576), + [anon_sym_True] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2576), + [anon_sym_TRUE] = ACTIONS(2576), + [anon_sym_False] = ACTIONS(2576), + [anon_sym_false] = ACTIONS(2576), + [anon_sym_FALSE] = ACTIONS(2576), + [anon_sym_Null] = ACTIONS(2576), + [anon_sym_null] = ACTIONS(2576), + [anon_sym_NULL] = ACTIONS(2576), + [anon_sym_Undefined] = ACTIONS(2576), + [anon_sym_undefined] = ACTIONS(2576), + [anon_sym_UNDEFINED] = ACTIONS(2576), + [anon_sym_get] = ACTIONS(2576), + [anon_sym_set] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [sym_hash_empty] = ACTIONS(2578), + [anon_sym_export] = ACTIONS(2576), + [anon_sym_QueryExecute] = ACTIONS(2576), + [anon_sym_queryexecute] = ACTIONS(2576), + [anon_sym_QUERYEXECUTE] = ACTIONS(2576), + [anon_sym_queryExecute] = ACTIONS(2576), + [anon_sym_BQUOTE] = ACTIONS(2578), + [anon_sym_Abstract] = ACTIONS(2576), + [anon_sym_abstract] = ACTIONS(2576), + [anon_sym_ABSTRACT] = ACTIONS(2576), + [anon_sym_Component] = ACTIONS(2576), + [anon_sym_component] = ACTIONS(2576), + [anon_sym_COMPONENT] = ACTIONS(2576), + [anon_sym_Debugger] = ACTIONS(2576), + [anon_sym_debugger] = ACTIONS(2576), + [anon_sym_DEBUGGER] = ACTIONS(2576), + [anon_sym_Final] = ACTIONS(2576), + [anon_sym_final] = ACTIONS(2576), + [anon_sym_FINAL] = ACTIONS(2576), + [anon_sym_Function] = ACTIONS(2576), + [anon_sym_function] = ACTIONS(2576), + [anon_sym_FUNCTION] = ACTIONS(2576), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2576), + [anon_sym_include] = ACTIONS(2576), + [anon_sym_INCLUDE] = ACTIONS(2576), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2576), + [anon_sym_new] = ACTIONS(2576), + [anon_sym_NEW] = ACTIONS(2576), + [anon_sym_Package] = ACTIONS(2576), + [anon_sym_package] = ACTIONS(2576), + [anon_sym_PACKAGE] = ACTIONS(2576), + [anon_sym_Private] = ACTIONS(2576), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_PRIVATE] = ACTIONS(2576), + [anon_sym_Public] = ACTIONS(2576), + [anon_sym_public] = ACTIONS(2576), + [anon_sym_PUBLIC] = ACTIONS(2576), + [anon_sym_Remote] = ACTIONS(2576), + [anon_sym_remote] = ACTIONS(2576), + [anon_sym_REMOTE] = ACTIONS(2576), + [anon_sym_Static] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_STATIC] = ACTIONS(2576), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(2384), + [sym__elvis_operator] = ACTIONS(2386), + [sym_logical_or] = ACTIONS(2358), + [sym_tag_linefeed] = ACTIONS(2578), + [sym__java_block_open] = ACTIONS(2578), + [sym__static_type_prefix] = ACTIONS(2578), }, [STATE(548)] = { - [sym_identifier] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_COMMA] = ACTIONS(2572), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_Query] = ACTIONS(2570), - [anon_sym_query] = ACTIONS(2570), - [anon_sym_QUERY] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2570), - [sym_optional_chain] = ACTIONS(2572), - [sym_static_chain] = ACTIONS(2572), - [anon_sym_AMP_AMP] = ACTIONS(2572), - [anon_sym_PIPE_PIPE] = ACTIONS(2572), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_GT_GT_GT] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2572), - [anon_sym_BSLASH] = ACTIONS(2570), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2572), - [anon_sym_LT_GT] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2572), - [aux_sym_binary_expression_token1] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2570), - [aux_sym_binary_expression_token2] = ACTIONS(2570), - [aux_sym_binary_expression_token3] = ACTIONS(2570), - [aux_sym_binary_expression_token4] = ACTIONS(2572), - [aux_sym_binary_expression_token5] = ACTIONS(2572), - [aux_sym_binary_expression_token6] = ACTIONS(2572), - [anon_sym_QMARK_QMARK] = ACTIONS(2572), - [anon_sym_BANG] = ACTIONS(2570), - [anon_sym_TILDE] = ACTIONS(2572), - [aux_sym_unary_operator_token1] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2570), - [aux_sym_number_token2] = ACTIONS(2570), - [anon_sym_This] = ACTIONS(2570), - [anon_sym_this] = ACTIONS(2570), - [anon_sym_THIS] = ACTIONS(2570), - [anon_sym_Super] = ACTIONS(2570), - [anon_sym_super] = ACTIONS(2570), - [anon_sym_SUPER] = ACTIONS(2570), - [anon_sym_True] = ACTIONS(2570), - [anon_sym_true] = ACTIONS(2570), - [anon_sym_TRUE] = ACTIONS(2570), - [anon_sym_False] = ACTIONS(2570), - [anon_sym_false] = ACTIONS(2570), - [anon_sym_FALSE] = ACTIONS(2570), - [anon_sym_Null] = ACTIONS(2570), - [anon_sym_null] = ACTIONS(2570), - [anon_sym_NULL] = ACTIONS(2570), - [anon_sym_Undefined] = ACTIONS(2570), - [anon_sym_undefined] = ACTIONS(2570), - [anon_sym_UNDEFINED] = ACTIONS(2570), - [anon_sym_get] = ACTIONS(2570), - [anon_sym_set] = ACTIONS(2570), - [anon_sym_POUND] = ACTIONS(2570), - [sym_hash_empty] = ACTIONS(2572), - [anon_sym_export] = ACTIONS(2570), - [anon_sym_QueryExecute] = ACTIONS(2570), - [anon_sym_queryexecute] = ACTIONS(2570), - [anon_sym_QUERYEXECUTE] = ACTIONS(2570), - [anon_sym_queryExecute] = ACTIONS(2570), - [anon_sym_BQUOTE] = ACTIONS(2572), - [anon_sym_Abstract] = ACTIONS(2570), - [anon_sym_abstract] = ACTIONS(2570), - [anon_sym_ABSTRACT] = ACTIONS(2570), - [anon_sym_Component] = ACTIONS(2570), - [anon_sym_component] = ACTIONS(2570), - [anon_sym_COMPONENT] = ACTIONS(2570), - [anon_sym_Debugger] = ACTIONS(2570), - [anon_sym_debugger] = ACTIONS(2570), - [anon_sym_DEBUGGER] = ACTIONS(2570), - [anon_sym_Final] = ACTIONS(2570), - [anon_sym_final] = ACTIONS(2570), - [anon_sym_FINAL] = ACTIONS(2570), - [anon_sym_Function] = ACTIONS(2570), - [anon_sym_function] = ACTIONS(2570), - [anon_sym_FUNCTION] = ACTIONS(2570), - [anon_sym_In] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [anon_sym_IN] = ACTIONS(2570), - [anon_sym_Include] = ACTIONS(2570), - [anon_sym_include] = ACTIONS(2570), - [anon_sym_INCLUDE] = ACTIONS(2570), - [anon_sym_InstanceOf] = ACTIONS(2570), - [anon_sym_instanceof] = ACTIONS(2570), - [anon_sym_INSTANCEOF] = ACTIONS(2570), - [anon_sym_instanceOf] = ACTIONS(2570), - [anon_sym_New] = ACTIONS(2570), - [anon_sym_new] = ACTIONS(2570), - [anon_sym_NEW] = ACTIONS(2570), - [anon_sym_Package] = ACTIONS(2570), - [anon_sym_package] = ACTIONS(2570), - [anon_sym_PACKAGE] = ACTIONS(2570), - [anon_sym_Private] = ACTIONS(2570), - [anon_sym_private] = ACTIONS(2570), - [anon_sym_PRIVATE] = ACTIONS(2570), - [anon_sym_Public] = ACTIONS(2570), - [anon_sym_public] = ACTIONS(2570), - [anon_sym_PUBLIC] = ACTIONS(2570), - [anon_sym_Remote] = ACTIONS(2570), - [anon_sym_remote] = ACTIONS(2570), - [anon_sym_REMOTE] = ACTIONS(2570), - [anon_sym_Static] = ACTIONS(2570), - [anon_sym_static] = ACTIONS(2570), - [anon_sym_STATIC] = ACTIONS(2570), - [sym__automatic_semicolon] = ACTIONS(2572), - [sym__ternary_qmark] = ACTIONS(2572), - [sym__elvis_operator] = ACTIONS(2572), - [sym_logical_or] = ACTIONS(2572), - [sym_tag_linefeed] = ACTIONS(2572), - [sym__java_block_open] = ACTIONS(2572), - [sym__static_type_prefix] = ACTIONS(2572), + [sym_identifier] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_Query] = ACTIONS(1688), + [anon_sym_query] = ACTIONS(1688), + [anon_sym_QUERY] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1686), + [aux_sym_unary_operator_token1] = ACTIONS(1688), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1688), + [aux_sym_number_token2] = ACTIONS(1688), + [anon_sym_This] = ACTIONS(1688), + [anon_sym_this] = ACTIONS(1688), + [anon_sym_THIS] = ACTIONS(1688), + [anon_sym_Super] = ACTIONS(1688), + [anon_sym_super] = ACTIONS(1688), + [anon_sym_SUPER] = ACTIONS(1688), + [anon_sym_True] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_TRUE] = ACTIONS(1688), + [anon_sym_False] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_FALSE] = ACTIONS(1688), + [anon_sym_Null] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_NULL] = ACTIONS(1688), + [anon_sym_Undefined] = ACTIONS(1688), + [anon_sym_undefined] = ACTIONS(1688), + [anon_sym_UNDEFINED] = ACTIONS(1688), + [anon_sym_get] = ACTIONS(1688), + [anon_sym_set] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(1688), + [sym_hash_empty] = ACTIONS(1686), + [anon_sym_export] = ACTIONS(1688), + [anon_sym_QueryExecute] = ACTIONS(1688), + [anon_sym_queryexecute] = ACTIONS(1688), + [anon_sym_QUERYEXECUTE] = ACTIONS(1688), + [anon_sym_queryExecute] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1686), + [anon_sym_Abstract] = ACTIONS(1688), + [anon_sym_abstract] = ACTIONS(1688), + [anon_sym_ABSTRACT] = ACTIONS(1688), + [anon_sym_Component] = ACTIONS(1688), + [anon_sym_component] = ACTIONS(1688), + [anon_sym_COMPONENT] = ACTIONS(1688), + [anon_sym_Debugger] = ACTIONS(1688), + [anon_sym_debugger] = ACTIONS(1688), + [anon_sym_DEBUGGER] = ACTIONS(1688), + [anon_sym_Final] = ACTIONS(1688), + [anon_sym_final] = ACTIONS(1688), + [anon_sym_FINAL] = ACTIONS(1688), + [anon_sym_Function] = ACTIONS(1688), + [anon_sym_function] = ACTIONS(1688), + [anon_sym_FUNCTION] = ACTIONS(1688), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_Include] = ACTIONS(1688), + [anon_sym_include] = ACTIONS(1688), + [anon_sym_INCLUDE] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [anon_sym_New] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1688), + [anon_sym_NEW] = ACTIONS(1688), + [anon_sym_Package] = ACTIONS(1688), + [anon_sym_package] = ACTIONS(1688), + [anon_sym_PACKAGE] = ACTIONS(1688), + [anon_sym_Private] = ACTIONS(1688), + [anon_sym_private] = ACTIONS(1688), + [anon_sym_PRIVATE] = ACTIONS(1688), + [anon_sym_Public] = ACTIONS(1688), + [anon_sym_public] = ACTIONS(1688), + [anon_sym_PUBLIC] = ACTIONS(1688), + [anon_sym_Remote] = ACTIONS(1688), + [anon_sym_remote] = ACTIONS(1688), + [anon_sym_REMOTE] = ACTIONS(1688), + [anon_sym_Static] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_STATIC] = ACTIONS(1688), + [sym__automatic_semicolon] = ACTIONS(1686), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym_tag_linefeed] = ACTIONS(1686), + [sym__java_block_open] = ACTIONS(1686), + [sym__static_type_prefix] = ACTIONS(1686), }, [STATE(549)] = { - [sym_identifier] = ACTIONS(2574), - [anon_sym_DOT] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_COMMA] = ACTIONS(2576), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_Query] = ACTIONS(2574), - [anon_sym_query] = ACTIONS(2574), - [anon_sym_QUERY] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2574), - [sym_optional_chain] = ACTIONS(2576), - [sym_static_chain] = ACTIONS(2576), - [anon_sym_AMP_AMP] = ACTIONS(2576), - [anon_sym_PIPE_PIPE] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2574), - [anon_sym_GT_GT_GT] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_CARET] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2576), - [anon_sym_BSLASH] = ACTIONS(2574), - [anon_sym_STAR_STAR] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2576), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2576), - [anon_sym_LT_GT] = ACTIONS(2576), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2576), - [aux_sym_binary_expression_token1] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2576), - [anon_sym_GT] = ACTIONS(2574), - [aux_sym_binary_expression_token2] = ACTIONS(2574), - [aux_sym_binary_expression_token3] = ACTIONS(2574), - [aux_sym_binary_expression_token4] = ACTIONS(2576), - [aux_sym_binary_expression_token5] = ACTIONS(2576), - [aux_sym_binary_expression_token6] = ACTIONS(2576), - [anon_sym_QMARK_QMARK] = ACTIONS(2576), - [anon_sym_BANG] = ACTIONS(2574), - [anon_sym_TILDE] = ACTIONS(2576), - [aux_sym_unary_operator_token1] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2576), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2574), - [aux_sym_number_token2] = ACTIONS(2574), - [anon_sym_This] = ACTIONS(2574), - [anon_sym_this] = ACTIONS(2574), - [anon_sym_THIS] = ACTIONS(2574), - [anon_sym_Super] = ACTIONS(2574), - [anon_sym_super] = ACTIONS(2574), - [anon_sym_SUPER] = ACTIONS(2574), - [anon_sym_True] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2574), - [anon_sym_TRUE] = ACTIONS(2574), - [anon_sym_False] = ACTIONS(2574), - [anon_sym_false] = ACTIONS(2574), - [anon_sym_FALSE] = ACTIONS(2574), - [anon_sym_Null] = ACTIONS(2574), - [anon_sym_null] = ACTIONS(2574), - [anon_sym_NULL] = ACTIONS(2574), - [anon_sym_Undefined] = ACTIONS(2574), - [anon_sym_undefined] = ACTIONS(2574), - [anon_sym_UNDEFINED] = ACTIONS(2574), - [anon_sym_get] = ACTIONS(2574), - [anon_sym_set] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(2574), - [sym_hash_empty] = ACTIONS(2576), - [anon_sym_export] = ACTIONS(2574), - [anon_sym_QueryExecute] = ACTIONS(2574), - [anon_sym_queryexecute] = ACTIONS(2574), - [anon_sym_QUERYEXECUTE] = ACTIONS(2574), - [anon_sym_queryExecute] = ACTIONS(2574), - [anon_sym_BQUOTE] = ACTIONS(2576), - [anon_sym_Abstract] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2574), - [anon_sym_ABSTRACT] = ACTIONS(2574), - [anon_sym_Component] = ACTIONS(2574), - [anon_sym_component] = ACTIONS(2574), - [anon_sym_COMPONENT] = ACTIONS(2574), - [anon_sym_Debugger] = ACTIONS(2574), - [anon_sym_debugger] = ACTIONS(2574), - [anon_sym_DEBUGGER] = ACTIONS(2574), - [anon_sym_Final] = ACTIONS(2574), - [anon_sym_final] = ACTIONS(2574), - [anon_sym_FINAL] = ACTIONS(2574), - [anon_sym_Function] = ACTIONS(2574), - [anon_sym_function] = ACTIONS(2574), - [anon_sym_FUNCTION] = ACTIONS(2574), - [anon_sym_In] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [anon_sym_IN] = ACTIONS(2574), - [anon_sym_Include] = ACTIONS(2574), - [anon_sym_include] = ACTIONS(2574), - [anon_sym_INCLUDE] = ACTIONS(2574), - [anon_sym_InstanceOf] = ACTIONS(2574), - [anon_sym_instanceof] = ACTIONS(2574), - [anon_sym_INSTANCEOF] = ACTIONS(2574), - [anon_sym_instanceOf] = ACTIONS(2574), - [anon_sym_New] = ACTIONS(2574), - [anon_sym_new] = ACTIONS(2574), - [anon_sym_NEW] = ACTIONS(2574), - [anon_sym_Package] = ACTIONS(2574), - [anon_sym_package] = ACTIONS(2574), - [anon_sym_PACKAGE] = ACTIONS(2574), - [anon_sym_Private] = ACTIONS(2574), - [anon_sym_private] = ACTIONS(2574), - [anon_sym_PRIVATE] = ACTIONS(2574), - [anon_sym_Public] = ACTIONS(2574), - [anon_sym_public] = ACTIONS(2574), - [anon_sym_PUBLIC] = ACTIONS(2574), - [anon_sym_Remote] = ACTIONS(2574), - [anon_sym_remote] = ACTIONS(2574), - [anon_sym_REMOTE] = ACTIONS(2574), - [anon_sym_Static] = ACTIONS(2574), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_STATIC] = ACTIONS(2574), - [sym__automatic_semicolon] = ACTIONS(2576), - [sym__ternary_qmark] = ACTIONS(2576), - [sym__elvis_operator] = ACTIONS(2576), - [sym_logical_or] = ACTIONS(2576), - [sym_tag_linefeed] = ACTIONS(2576), - [sym__java_block_open] = ACTIONS(2576), - [sym__static_type_prefix] = ACTIONS(2576), + [sym_identifier] = ACTIONS(2580), + [anon_sym_DOT] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_COMMA] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_Query] = ACTIONS(2580), + [anon_sym_query] = ACTIONS(2580), + [anon_sym_QUERY] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2580), + [sym_optional_chain] = ACTIONS(2582), + [sym_static_chain] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_BSLASH] = ACTIONS(2580), + [anon_sym_STAR_STAR] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2582), + [anon_sym_LT_GT] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2582), + [aux_sym_binary_expression_token1] = ACTIONS(2582), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [aux_sym_binary_expression_token2] = ACTIONS(2580), + [aux_sym_binary_expression_token3] = ACTIONS(2580), + [aux_sym_binary_expression_token4] = ACTIONS(2582), + [aux_sym_binary_expression_token5] = ACTIONS(2582), + [aux_sym_binary_expression_token6] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_TILDE] = ACTIONS(2582), + [aux_sym_unary_operator_token1] = ACTIONS(2580), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2582), + [anon_sym_SQUOTE] = ACTIONS(2582), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2580), + [aux_sym_number_token2] = ACTIONS(2580), + [anon_sym_This] = ACTIONS(2580), + [anon_sym_this] = ACTIONS(2580), + [anon_sym_THIS] = ACTIONS(2580), + [anon_sym_Super] = ACTIONS(2580), + [anon_sym_super] = ACTIONS(2580), + [anon_sym_SUPER] = ACTIONS(2580), + [anon_sym_True] = ACTIONS(2580), + [anon_sym_true] = ACTIONS(2580), + [anon_sym_TRUE] = ACTIONS(2580), + [anon_sym_False] = ACTIONS(2580), + [anon_sym_false] = ACTIONS(2580), + [anon_sym_FALSE] = ACTIONS(2580), + [anon_sym_Null] = ACTIONS(2580), + [anon_sym_null] = ACTIONS(2580), + [anon_sym_NULL] = ACTIONS(2580), + [anon_sym_Undefined] = ACTIONS(2580), + [anon_sym_undefined] = ACTIONS(2580), + [anon_sym_UNDEFINED] = ACTIONS(2580), + [anon_sym_get] = ACTIONS(2580), + [anon_sym_set] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(2580), + [sym_hash_empty] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(2580), + [anon_sym_QueryExecute] = ACTIONS(2580), + [anon_sym_queryexecute] = ACTIONS(2580), + [anon_sym_QUERYEXECUTE] = ACTIONS(2580), + [anon_sym_queryExecute] = ACTIONS(2580), + [anon_sym_BQUOTE] = ACTIONS(2582), + [anon_sym_Abstract] = ACTIONS(2580), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_ABSTRACT] = ACTIONS(2580), + [anon_sym_Component] = ACTIONS(2580), + [anon_sym_component] = ACTIONS(2580), + [anon_sym_COMPONENT] = ACTIONS(2580), + [anon_sym_Debugger] = ACTIONS(2580), + [anon_sym_debugger] = ACTIONS(2580), + [anon_sym_DEBUGGER] = ACTIONS(2580), + [anon_sym_Final] = ACTIONS(2580), + [anon_sym_final] = ACTIONS(2580), + [anon_sym_FINAL] = ACTIONS(2580), + [anon_sym_Function] = ACTIONS(2580), + [anon_sym_function] = ACTIONS(2580), + [anon_sym_FUNCTION] = ACTIONS(2580), + [anon_sym_In] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2580), + [anon_sym_IN] = ACTIONS(2580), + [anon_sym_Include] = ACTIONS(2580), + [anon_sym_include] = ACTIONS(2580), + [anon_sym_INCLUDE] = ACTIONS(2580), + [anon_sym_InstanceOf] = ACTIONS(2580), + [anon_sym_instanceof] = ACTIONS(2580), + [anon_sym_INSTANCEOF] = ACTIONS(2580), + [anon_sym_instanceOf] = ACTIONS(2580), + [anon_sym_New] = ACTIONS(2580), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_NEW] = ACTIONS(2580), + [anon_sym_Package] = ACTIONS(2580), + [anon_sym_package] = ACTIONS(2580), + [anon_sym_PACKAGE] = ACTIONS(2580), + [anon_sym_Private] = ACTIONS(2580), + [anon_sym_private] = ACTIONS(2580), + [anon_sym_PRIVATE] = ACTIONS(2580), + [anon_sym_Public] = ACTIONS(2580), + [anon_sym_public] = ACTIONS(2580), + [anon_sym_PUBLIC] = ACTIONS(2580), + [anon_sym_Remote] = ACTIONS(2580), + [anon_sym_remote] = ACTIONS(2580), + [anon_sym_REMOTE] = ACTIONS(2580), + [anon_sym_Static] = ACTIONS(2580), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_STATIC] = ACTIONS(2580), + [sym__automatic_semicolon] = ACTIONS(2582), + [sym__ternary_qmark] = ACTIONS(2582), + [sym__elvis_operator] = ACTIONS(2582), + [sym_logical_or] = ACTIONS(2582), + [sym_tag_linefeed] = ACTIONS(2582), + [sym__java_block_open] = ACTIONS(2582), + [sym__static_type_prefix] = ACTIONS(2582), }, [STATE(550)] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1670), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Break] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_BREAK] = ACTIONS(1672), - [anon_sym_Case] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_CASE] = ACTIONS(1672), - [anon_sym_Catch] = ACTIONS(1672), - [anon_sym_catch] = ACTIONS(1672), - [anon_sym_CATCH] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Continue] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_CONTINUE] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Default] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_DEFAULT] = ACTIONS(1672), - [anon_sym_Do] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_DO] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_Finally] = ACTIONS(1672), - [anon_sym_finally] = ACTIONS(1672), - [anon_sym_FINALLY] = ACTIONS(1672), - [anon_sym_For] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_FOR] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_If] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_IF] = ACTIONS(1672), - [anon_sym_Import] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_IMPORT] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_Interface] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_INTERFACE] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Property] = ACTIONS(1672), - [anon_sym_property] = ACTIONS(1672), - [anon_sym_PROPERTY] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Return] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_RETURN] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [anon_sym_Switch] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_SWITCH] = ACTIONS(1672), - [anon_sym_Throw] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_THROW] = ACTIONS(1672), - [anon_sym_Try] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_TRY] = ACTIONS(1672), - [anon_sym_Var] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_VAR] = ACTIONS(1672), - [anon_sym_While] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_WHILE] = ACTIONS(1672), - [anon_sym_With] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_WITH] = ACTIONS(1672), - [sym_cf_comment] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), - }, - [STATE(551)] = { - [sym_identifier] = ACTIONS(2578), - [anon_sym_DOT] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_let] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_Query] = ACTIONS(2578), - [anon_sym_query] = ACTIONS(2578), - [anon_sym_QUERY] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2578), - [sym_optional_chain] = ACTIONS(2580), - [sym_static_chain] = ACTIONS(2580), - [anon_sym_AMP_AMP] = ACTIONS(2580), - [anon_sym_PIPE_PIPE] = ACTIONS(2580), - [anon_sym_GT_GT] = ACTIONS(2578), - [anon_sym_GT_GT_GT] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_CARET] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2580), - [anon_sym_BSLASH] = ACTIONS(2578), - [anon_sym_STAR_STAR] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_LT_EQ] = ACTIONS(2580), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2580), - [anon_sym_LT_GT] = ACTIONS(2580), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2580), - [aux_sym_binary_expression_token1] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2580), - [anon_sym_GT] = ACTIONS(2578), - [aux_sym_binary_expression_token2] = ACTIONS(2578), - [aux_sym_binary_expression_token3] = ACTIONS(2578), - [aux_sym_binary_expression_token4] = ACTIONS(2580), - [aux_sym_binary_expression_token5] = ACTIONS(2580), - [aux_sym_binary_expression_token6] = ACTIONS(2580), - [anon_sym_QMARK_QMARK] = ACTIONS(2580), - [anon_sym_BANG] = ACTIONS(2578), - [anon_sym_TILDE] = ACTIONS(2580), - [aux_sym_unary_operator_token1] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2578), - [aux_sym_number_token2] = ACTIONS(2578), - [anon_sym_This] = ACTIONS(2578), - [anon_sym_this] = ACTIONS(2578), - [anon_sym_THIS] = ACTIONS(2578), - [anon_sym_Super] = ACTIONS(2578), - [anon_sym_super] = ACTIONS(2578), - [anon_sym_SUPER] = ACTIONS(2578), - [anon_sym_True] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2578), - [anon_sym_TRUE] = ACTIONS(2578), - [anon_sym_False] = ACTIONS(2578), - [anon_sym_false] = ACTIONS(2578), - [anon_sym_FALSE] = ACTIONS(2578), - [anon_sym_Null] = ACTIONS(2578), - [anon_sym_null] = ACTIONS(2578), - [anon_sym_NULL] = ACTIONS(2578), - [anon_sym_Undefined] = ACTIONS(2578), - [anon_sym_undefined] = ACTIONS(2578), - [anon_sym_UNDEFINED] = ACTIONS(2578), - [anon_sym_get] = ACTIONS(2578), - [anon_sym_set] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(2578), - [sym_hash_empty] = ACTIONS(2580), - [anon_sym_export] = ACTIONS(2578), - [anon_sym_QueryExecute] = ACTIONS(2578), - [anon_sym_queryexecute] = ACTIONS(2578), - [anon_sym_QUERYEXECUTE] = ACTIONS(2578), - [anon_sym_queryExecute] = ACTIONS(2578), - [anon_sym_BQUOTE] = ACTIONS(2580), - [anon_sym_Abstract] = ACTIONS(2578), - [anon_sym_abstract] = ACTIONS(2578), - [anon_sym_ABSTRACT] = ACTIONS(2578), - [anon_sym_Component] = ACTIONS(2578), - [anon_sym_component] = ACTIONS(2578), - [anon_sym_COMPONENT] = ACTIONS(2578), - [anon_sym_Debugger] = ACTIONS(2578), - [anon_sym_debugger] = ACTIONS(2578), - [anon_sym_DEBUGGER] = ACTIONS(2578), - [anon_sym_Final] = ACTIONS(2578), - [anon_sym_final] = ACTIONS(2578), - [anon_sym_FINAL] = ACTIONS(2578), - [anon_sym_Function] = ACTIONS(2578), - [anon_sym_function] = ACTIONS(2578), - [anon_sym_FUNCTION] = ACTIONS(2578), - [anon_sym_In] = ACTIONS(2578), - [anon_sym_in] = ACTIONS(2578), - [anon_sym_IN] = ACTIONS(2578), - [anon_sym_Include] = ACTIONS(2578), - [anon_sym_include] = ACTIONS(2578), - [anon_sym_INCLUDE] = ACTIONS(2578), - [anon_sym_InstanceOf] = ACTIONS(2578), - [anon_sym_instanceof] = ACTIONS(2578), - [anon_sym_INSTANCEOF] = ACTIONS(2578), - [anon_sym_instanceOf] = ACTIONS(2578), - [anon_sym_New] = ACTIONS(2578), - [anon_sym_new] = ACTIONS(2578), - [anon_sym_NEW] = ACTIONS(2578), - [anon_sym_Package] = ACTIONS(2578), - [anon_sym_package] = ACTIONS(2578), - [anon_sym_PACKAGE] = ACTIONS(2578), - [anon_sym_Private] = ACTIONS(2578), - [anon_sym_private] = ACTIONS(2578), - [anon_sym_PRIVATE] = ACTIONS(2578), - [anon_sym_Public] = ACTIONS(2578), - [anon_sym_public] = ACTIONS(2578), - [anon_sym_PUBLIC] = ACTIONS(2578), - [anon_sym_Remote] = ACTIONS(2578), - [anon_sym_remote] = ACTIONS(2578), - [anon_sym_REMOTE] = ACTIONS(2578), - [anon_sym_Static] = ACTIONS(2578), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_STATIC] = ACTIONS(2578), - [sym__automatic_semicolon] = ACTIONS(2580), - [sym__ternary_qmark] = ACTIONS(2580), - [sym__elvis_operator] = ACTIONS(2580), - [sym_logical_or] = ACTIONS(2580), - [sym_tag_linefeed] = ACTIONS(2580), - [sym__java_block_open] = ACTIONS(2580), - [sym__static_type_prefix] = ACTIONS(2580), - }, - [STATE(552)] = { - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_Query] = ACTIONS(2201), - [anon_sym_query] = ACTIONS(2201), - [anon_sym_QUERY] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [aux_sym_unary_operator_token1] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2201), - [aux_sym_number_token2] = ACTIONS(2199), - [anon_sym_This] = ACTIONS(2201), - [anon_sym_this] = ACTIONS(2201), - [anon_sym_THIS] = ACTIONS(2201), - [anon_sym_Super] = ACTIONS(2201), - [anon_sym_super] = ACTIONS(2201), - [anon_sym_SUPER] = ACTIONS(2201), - [anon_sym_True] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_TRUE] = ACTIONS(2201), - [anon_sym_False] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_FALSE] = ACTIONS(2201), - [anon_sym_Null] = ACTIONS(2201), - [anon_sym_null] = ACTIONS(2201), - [anon_sym_NULL] = ACTIONS(2201), - [anon_sym_Undefined] = ACTIONS(2201), - [anon_sym_undefined] = ACTIONS(2201), - [anon_sym_UNDEFINED] = ACTIONS(2201), - [anon_sym_get] = ACTIONS(2201), - [anon_sym_set] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2201), - [sym_hash_empty] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_QueryExecute] = ACTIONS(2201), - [anon_sym_queryexecute] = ACTIONS(2201), - [anon_sym_QUERYEXECUTE] = ACTIONS(2201), - [anon_sym_queryExecute] = ACTIONS(2201), - [anon_sym_BQUOTE] = ACTIONS(2201), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2199), - [anon_sym_Abstract] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2201), - [anon_sym_ABSTRACT] = ACTIONS(2201), - [anon_sym_Break] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_BREAK] = ACTIONS(2201), - [anon_sym_Case] = ACTIONS(2201), - [anon_sym_case] = ACTIONS(2201), - [anon_sym_CASE] = ACTIONS(2201), - [anon_sym_Catch] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_CATCH] = ACTIONS(2201), - [anon_sym_Component] = ACTIONS(2201), - [anon_sym_component] = ACTIONS(2201), - [anon_sym_COMPONENT] = ACTIONS(2201), - [anon_sym_Continue] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_CONTINUE] = ACTIONS(2201), - [anon_sym_Debugger] = ACTIONS(2201), - [anon_sym_debugger] = ACTIONS(2201), - [anon_sym_DEBUGGER] = ACTIONS(2201), - [anon_sym_Default] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_DEFAULT] = ACTIONS(2201), - [anon_sym_Do] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_DO] = ACTIONS(2201), - [anon_sym_Final] = ACTIONS(2201), - [anon_sym_final] = ACTIONS(2201), - [anon_sym_FINAL] = ACTIONS(2201), - [anon_sym_Finally] = ACTIONS(2201), - [anon_sym_finally] = ACTIONS(2201), - [anon_sym_FINALLY] = ACTIONS(2201), - [anon_sym_For] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_FOR] = ACTIONS(2201), - [anon_sym_Function] = ACTIONS(2201), - [anon_sym_function] = ACTIONS(2201), - [anon_sym_FUNCTION] = ACTIONS(2201), - [anon_sym_If] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_IF] = ACTIONS(2201), - [anon_sym_Import] = ACTIONS(2201), - [anon_sym_import] = ACTIONS(2201), - [anon_sym_IMPORT] = ACTIONS(2201), - [anon_sym_Include] = ACTIONS(2201), - [anon_sym_include] = ACTIONS(2201), - [anon_sym_INCLUDE] = ACTIONS(2201), - [anon_sym_Interface] = ACTIONS(2201), - [anon_sym_interface] = ACTIONS(2201), - [anon_sym_INTERFACE] = ACTIONS(2201), - [anon_sym_New] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_NEW] = ACTIONS(2201), - [anon_sym_Package] = ACTIONS(2201), - [anon_sym_package] = ACTIONS(2201), - [anon_sym_PACKAGE] = ACTIONS(2201), - [anon_sym_Private] = ACTIONS(2201), - [anon_sym_private] = ACTIONS(2201), - [anon_sym_PRIVATE] = ACTIONS(2201), - [anon_sym_Property] = ACTIONS(2201), - [anon_sym_property] = ACTIONS(2201), - [anon_sym_PROPERTY] = ACTIONS(2201), - [anon_sym_Public] = ACTIONS(2201), - [anon_sym_public] = ACTIONS(2201), - [anon_sym_PUBLIC] = ACTIONS(2201), - [anon_sym_Remote] = ACTIONS(2201), - [anon_sym_remote] = ACTIONS(2201), - [anon_sym_REMOTE] = ACTIONS(2201), - [anon_sym_Return] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_RETURN] = ACTIONS(2201), - [anon_sym_Static] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_STATIC] = ACTIONS(2201), - [anon_sym_Switch] = ACTIONS(2201), - [anon_sym_switch] = ACTIONS(2201), - [anon_sym_SWITCH] = ACTIONS(2201), - [anon_sym_Throw] = ACTIONS(2201), - [anon_sym_throw] = ACTIONS(2201), - [anon_sym_THROW] = ACTIONS(2201), - [anon_sym_Try] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_TRY] = ACTIONS(2201), - [anon_sym_Var] = ACTIONS(2201), - [anon_sym_var] = ACTIONS(2201), - [anon_sym_VAR] = ACTIONS(2201), - [anon_sym_While] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_WHILE] = ACTIONS(2201), - [anon_sym_With] = ACTIONS(2201), - [anon_sym_with] = ACTIONS(2201), - [anon_sym_WITH] = ACTIONS(2201), - [sym_cf_comment] = ACTIONS(2199), - [sym__java_block_open] = ACTIONS(2199), - [sym__static_type_prefix] = ACTIONS(2199), - }, - [STATE(553)] = { - [sym_identifier] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_Query] = ACTIONS(1912), - [anon_sym_query] = ACTIONS(1912), - [anon_sym_QUERY] = ACTIONS(1912), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1914), - [aux_sym_unary_operator_token1] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1914), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1912), - [aux_sym_number_token2] = ACTIONS(1912), - [anon_sym_This] = ACTIONS(1912), - [anon_sym_this] = ACTIONS(1912), - [anon_sym_THIS] = ACTIONS(1912), - [anon_sym_Super] = ACTIONS(1912), - [anon_sym_super] = ACTIONS(1912), - [anon_sym_SUPER] = ACTIONS(1912), - [anon_sym_True] = ACTIONS(1912), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_TRUE] = ACTIONS(1912), - [anon_sym_False] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [anon_sym_FALSE] = ACTIONS(1912), - [anon_sym_Null] = ACTIONS(1912), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_Undefined] = ACTIONS(1912), - [anon_sym_undefined] = ACTIONS(1912), - [anon_sym_UNDEFINED] = ACTIONS(1912), - [anon_sym_get] = ACTIONS(1912), - [anon_sym_set] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1912), - [sym_hash_empty] = ACTIONS(1914), - [anon_sym_export] = ACTIONS(1912), - [anon_sym_QueryExecute] = ACTIONS(1912), - [anon_sym_queryexecute] = ACTIONS(1912), - [anon_sym_QUERYEXECUTE] = ACTIONS(1912), - [anon_sym_queryExecute] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1914), - [anon_sym_Abstract] = ACTIONS(1912), - [anon_sym_abstract] = ACTIONS(1912), - [anon_sym_ABSTRACT] = ACTIONS(1912), - [anon_sym_Component] = ACTIONS(1912), - [anon_sym_component] = ACTIONS(1912), - [anon_sym_COMPONENT] = ACTIONS(1912), - [anon_sym_Debugger] = ACTIONS(1912), - [anon_sym_debugger] = ACTIONS(1912), - [anon_sym_DEBUGGER] = ACTIONS(1912), - [anon_sym_Final] = ACTIONS(1912), - [anon_sym_final] = ACTIONS(1912), - [anon_sym_FINAL] = ACTIONS(1912), - [anon_sym_Function] = ACTIONS(1912), - [anon_sym_function] = ACTIONS(1912), - [anon_sym_FUNCTION] = ACTIONS(1912), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(1912), - [anon_sym_include] = ACTIONS(1912), - [anon_sym_INCLUDE] = ACTIONS(1912), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_NEW] = ACTIONS(1912), - [anon_sym_Package] = ACTIONS(1912), - [anon_sym_package] = ACTIONS(1912), - [anon_sym_PACKAGE] = ACTIONS(1912), - [anon_sym_Private] = ACTIONS(1912), - [anon_sym_private] = ACTIONS(1912), - [anon_sym_PRIVATE] = ACTIONS(1912), - [anon_sym_Public] = ACTIONS(1912), - [anon_sym_public] = ACTIONS(1912), - [anon_sym_PUBLIC] = ACTIONS(1912), - [anon_sym_Remote] = ACTIONS(1912), - [anon_sym_remote] = ACTIONS(1912), - [anon_sym_REMOTE] = ACTIONS(1912), - [anon_sym_Static] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_STATIC] = ACTIONS(1912), - [sym__automatic_semicolon] = ACTIONS(1914), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1914), - [sym__java_block_open] = ACTIONS(1914), - [sym__static_type_prefix] = ACTIONS(1914), - }, - [STATE(554)] = { - [sym_identifier] = ACTIONS(2582), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_let] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_Query] = ACTIONS(2582), - [anon_sym_query] = ACTIONS(2582), - [anon_sym_QUERY] = ACTIONS(2582), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_SLASH] = ACTIONS(2582), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2584), - [aux_sym_unary_operator_token1] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2584), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2582), - [aux_sym_number_token2] = ACTIONS(2582), - [anon_sym_This] = ACTIONS(2582), - [anon_sym_this] = ACTIONS(2582), - [anon_sym_THIS] = ACTIONS(2582), - [anon_sym_Super] = ACTIONS(2582), - [anon_sym_super] = ACTIONS(2582), - [anon_sym_SUPER] = ACTIONS(2582), - [anon_sym_True] = ACTIONS(2582), - [anon_sym_true] = ACTIONS(2582), - [anon_sym_TRUE] = ACTIONS(2582), - [anon_sym_False] = ACTIONS(2582), - [anon_sym_false] = ACTIONS(2582), - [anon_sym_FALSE] = ACTIONS(2582), - [anon_sym_Null] = ACTIONS(2582), - [anon_sym_null] = ACTIONS(2582), - [anon_sym_NULL] = ACTIONS(2582), - [anon_sym_Undefined] = ACTIONS(2582), - [anon_sym_undefined] = ACTIONS(2582), - [anon_sym_UNDEFINED] = ACTIONS(2582), - [anon_sym_get] = ACTIONS(2582), - [anon_sym_set] = ACTIONS(2582), - [anon_sym_POUND] = ACTIONS(2582), - [sym_hash_empty] = ACTIONS(2584), - [anon_sym_export] = ACTIONS(2582), - [anon_sym_QueryExecute] = ACTIONS(2582), - [anon_sym_queryexecute] = ACTIONS(2582), - [anon_sym_QUERYEXECUTE] = ACTIONS(2582), - [anon_sym_queryExecute] = ACTIONS(2582), - [anon_sym_BQUOTE] = ACTIONS(2584), - [anon_sym_Abstract] = ACTIONS(2582), - [anon_sym_abstract] = ACTIONS(2582), - [anon_sym_ABSTRACT] = ACTIONS(2582), - [anon_sym_Component] = ACTIONS(2582), - [anon_sym_component] = ACTIONS(2582), - [anon_sym_COMPONENT] = ACTIONS(2582), - [anon_sym_Debugger] = ACTIONS(2582), - [anon_sym_debugger] = ACTIONS(2582), - [anon_sym_DEBUGGER] = ACTIONS(2582), - [anon_sym_Final] = ACTIONS(2582), - [anon_sym_final] = ACTIONS(2582), - [anon_sym_FINAL] = ACTIONS(2582), - [anon_sym_Function] = ACTIONS(2582), - [anon_sym_function] = ACTIONS(2582), - [anon_sym_FUNCTION] = ACTIONS(2582), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(2582), - [anon_sym_include] = ACTIONS(2582), - [anon_sym_INCLUDE] = ACTIONS(2582), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(2582), - [anon_sym_new] = ACTIONS(2582), - [anon_sym_NEW] = ACTIONS(2582), - [anon_sym_Package] = ACTIONS(2582), - [anon_sym_package] = ACTIONS(2582), - [anon_sym_PACKAGE] = ACTIONS(2582), - [anon_sym_Private] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_PRIVATE] = ACTIONS(2582), - [anon_sym_Public] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_PUBLIC] = ACTIONS(2582), - [anon_sym_Remote] = ACTIONS(2582), - [anon_sym_remote] = ACTIONS(2582), - [anon_sym_REMOTE] = ACTIONS(2582), - [anon_sym_Static] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_STATIC] = ACTIONS(2582), - [sym__automatic_semicolon] = ACTIONS(2584), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(2584), - [sym__java_block_open] = ACTIONS(2584), - [sym__static_type_prefix] = ACTIONS(2584), - }, - [STATE(555)] = { - [sym_identifier] = ACTIONS(2586), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2589), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2589), - [anon_sym_Query] = ACTIONS(2586), - [anon_sym_query] = ACTIONS(2586), - [anon_sym_QUERY] = ACTIONS(2586), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_TILDE] = ACTIONS(2589), - [aux_sym_unary_operator_token1] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2586), - [aux_sym_number_token2] = ACTIONS(2586), - [anon_sym_This] = ACTIONS(2586), - [anon_sym_this] = ACTIONS(2586), - [anon_sym_THIS] = ACTIONS(2586), - [anon_sym_Super] = ACTIONS(2586), - [anon_sym_super] = ACTIONS(2586), - [anon_sym_SUPER] = ACTIONS(2586), - [anon_sym_True] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2586), - [anon_sym_TRUE] = ACTIONS(2586), - [anon_sym_False] = ACTIONS(2586), - [anon_sym_false] = ACTIONS(2586), - [anon_sym_FALSE] = ACTIONS(2586), - [anon_sym_Null] = ACTIONS(2586), - [anon_sym_null] = ACTIONS(2586), - [anon_sym_NULL] = ACTIONS(2586), - [anon_sym_Undefined] = ACTIONS(2586), - [anon_sym_undefined] = ACTIONS(2586), - [anon_sym_UNDEFINED] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_POUND] = ACTIONS(2586), - [sym_hash_empty] = ACTIONS(2589), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_QueryExecute] = ACTIONS(2586), - [anon_sym_queryexecute] = ACTIONS(2586), - [anon_sym_QUERYEXECUTE] = ACTIONS(2586), - [anon_sym_queryExecute] = ACTIONS(2586), - [anon_sym_BQUOTE] = ACTIONS(2589), - [anon_sym_Abstract] = ACTIONS(2586), - [anon_sym_abstract] = ACTIONS(2586), - [anon_sym_ABSTRACT] = ACTIONS(2586), - [anon_sym_Component] = ACTIONS(2586), - [anon_sym_component] = ACTIONS(2586), - [anon_sym_COMPONENT] = ACTIONS(2586), - [anon_sym_Debugger] = ACTIONS(2586), - [anon_sym_debugger] = ACTIONS(2586), - [anon_sym_DEBUGGER] = ACTIONS(2586), - [anon_sym_Final] = ACTIONS(2586), - [anon_sym_final] = ACTIONS(2586), - [anon_sym_FINAL] = ACTIONS(2586), - [anon_sym_Function] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_FUNCTION] = ACTIONS(2586), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(2586), - [anon_sym_include] = ACTIONS(2586), - [anon_sym_INCLUDE] = ACTIONS(2586), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(2586), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_NEW] = ACTIONS(2586), - [anon_sym_Package] = ACTIONS(2586), - [anon_sym_package] = ACTIONS(2586), - [anon_sym_PACKAGE] = ACTIONS(2586), - [anon_sym_Private] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_PRIVATE] = ACTIONS(2586), - [anon_sym_Public] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_PUBLIC] = ACTIONS(2586), - [anon_sym_Remote] = ACTIONS(2586), - [anon_sym_remote] = ACTIONS(2586), - [anon_sym_REMOTE] = ACTIONS(2586), - [anon_sym_Static] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_STATIC] = ACTIONS(2586), - [sym__automatic_semicolon] = ACTIONS(1914), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1914), - [sym__java_block_open] = ACTIONS(2589), - [sym__static_type_prefix] = ACTIONS(2589), - }, - [STATE(556)] = { - [sym_identifier] = ACTIONS(2592), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2594), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_Query] = ACTIONS(2592), - [anon_sym_query] = ACTIONS(2592), - [anon_sym_QUERY] = ACTIONS(2592), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2592), - [anon_sym_SLASH] = ACTIONS(2592), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2594), - [aux_sym_unary_operator_token1] = ACTIONS(2592), - [anon_sym_PLUS_PLUS] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(2594), - [anon_sym_SQUOTE] = ACTIONS(2594), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2592), - [aux_sym_number_token2] = ACTIONS(2592), - [anon_sym_This] = ACTIONS(2592), - [anon_sym_this] = ACTIONS(2592), - [anon_sym_THIS] = ACTIONS(2592), - [anon_sym_Super] = ACTIONS(2592), - [anon_sym_super] = ACTIONS(2592), - [anon_sym_SUPER] = ACTIONS(2592), - [anon_sym_True] = ACTIONS(2592), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_TRUE] = ACTIONS(2592), - [anon_sym_False] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [anon_sym_FALSE] = ACTIONS(2592), - [anon_sym_Null] = ACTIONS(2592), - [anon_sym_null] = ACTIONS(2592), - [anon_sym_NULL] = ACTIONS(2592), - [anon_sym_Undefined] = ACTIONS(2592), - [anon_sym_undefined] = ACTIONS(2592), - [anon_sym_UNDEFINED] = ACTIONS(2592), - [anon_sym_get] = ACTIONS(2592), - [anon_sym_set] = ACTIONS(2592), - [anon_sym_POUND] = ACTIONS(2592), - [sym_hash_empty] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2592), - [anon_sym_QueryExecute] = ACTIONS(2592), - [anon_sym_queryexecute] = ACTIONS(2592), - [anon_sym_QUERYEXECUTE] = ACTIONS(2592), - [anon_sym_queryExecute] = ACTIONS(2592), - [anon_sym_BQUOTE] = ACTIONS(2594), - [anon_sym_Abstract] = ACTIONS(2592), - [anon_sym_abstract] = ACTIONS(2592), - [anon_sym_ABSTRACT] = ACTIONS(2592), - [anon_sym_Component] = ACTIONS(2592), - [anon_sym_component] = ACTIONS(2592), - [anon_sym_COMPONENT] = ACTIONS(2592), - [anon_sym_Debugger] = ACTIONS(2592), - [anon_sym_debugger] = ACTIONS(2592), - [anon_sym_DEBUGGER] = ACTIONS(2592), - [anon_sym_Final] = ACTIONS(2592), - [anon_sym_final] = ACTIONS(2592), - [anon_sym_FINAL] = ACTIONS(2592), - [anon_sym_Function] = ACTIONS(2592), - [anon_sym_function] = ACTIONS(2592), - [anon_sym_FUNCTION] = ACTIONS(2592), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(2592), - [anon_sym_include] = ACTIONS(2592), - [anon_sym_INCLUDE] = ACTIONS(2592), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(2592), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_NEW] = ACTIONS(2592), - [anon_sym_Package] = ACTIONS(2592), - [anon_sym_package] = ACTIONS(2592), - [anon_sym_PACKAGE] = ACTIONS(2592), - [anon_sym_Private] = ACTIONS(2592), - [anon_sym_private] = ACTIONS(2592), - [anon_sym_PRIVATE] = ACTIONS(2592), - [anon_sym_Public] = ACTIONS(2592), - [anon_sym_public] = ACTIONS(2592), - [anon_sym_PUBLIC] = ACTIONS(2592), - [anon_sym_Remote] = ACTIONS(2592), - [anon_sym_remote] = ACTIONS(2592), - [anon_sym_REMOTE] = ACTIONS(2592), - [anon_sym_Static] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_STATIC] = ACTIONS(2592), - [sym__automatic_semicolon] = ACTIONS(2594), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(2594), - [sym__java_block_open] = ACTIONS(2594), - [sym__static_type_prefix] = ACTIONS(2594), - }, - [STATE(557)] = { - [sym_identifier] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_Query] = ACTIONS(1921), - [anon_sym_query] = ACTIONS(1921), - [anon_sym_QUERY] = ACTIONS(1921), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1923), - [aux_sym_unary_operator_token1] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1921), - [aux_sym_number_token2] = ACTIONS(1921), - [anon_sym_This] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1921), - [anon_sym_THIS] = ACTIONS(1921), - [anon_sym_Super] = ACTIONS(1921), - [anon_sym_super] = ACTIONS(1921), - [anon_sym_SUPER] = ACTIONS(1921), - [anon_sym_True] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_TRUE] = ACTIONS(1921), - [anon_sym_False] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [anon_sym_FALSE] = ACTIONS(1921), - [anon_sym_Null] = ACTIONS(1921), - [anon_sym_null] = ACTIONS(1921), - [anon_sym_NULL] = ACTIONS(1921), - [anon_sym_Undefined] = ACTIONS(1921), - [anon_sym_undefined] = ACTIONS(1921), - [anon_sym_UNDEFINED] = ACTIONS(1921), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1921), - [sym_hash_empty] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_QueryExecute] = ACTIONS(1921), - [anon_sym_queryexecute] = ACTIONS(1921), - [anon_sym_QUERYEXECUTE] = ACTIONS(1921), - [anon_sym_queryExecute] = ACTIONS(1921), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_Abstract] = ACTIONS(1921), - [anon_sym_abstract] = ACTIONS(1921), - [anon_sym_ABSTRACT] = ACTIONS(1921), - [anon_sym_Component] = ACTIONS(1921), - [anon_sym_component] = ACTIONS(1921), - [anon_sym_COMPONENT] = ACTIONS(1921), - [anon_sym_Debugger] = ACTIONS(1921), - [anon_sym_debugger] = ACTIONS(1921), - [anon_sym_DEBUGGER] = ACTIONS(1921), - [anon_sym_Final] = ACTIONS(1921), - [anon_sym_final] = ACTIONS(1921), - [anon_sym_FINAL] = ACTIONS(1921), - [anon_sym_Function] = ACTIONS(1921), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_FUNCTION] = ACTIONS(1921), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(1921), - [anon_sym_include] = ACTIONS(1921), - [anon_sym_INCLUDE] = ACTIONS(1921), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_NEW] = ACTIONS(1921), - [anon_sym_Package] = ACTIONS(1921), - [anon_sym_package] = ACTIONS(1921), - [anon_sym_PACKAGE] = ACTIONS(1921), - [anon_sym_Private] = ACTIONS(1921), - [anon_sym_private] = ACTIONS(1921), - [anon_sym_PRIVATE] = ACTIONS(1921), - [anon_sym_Public] = ACTIONS(1921), - [anon_sym_public] = ACTIONS(1921), - [anon_sym_PUBLIC] = ACTIONS(1921), - [anon_sym_Remote] = ACTIONS(1921), - [anon_sym_remote] = ACTIONS(1921), - [anon_sym_REMOTE] = ACTIONS(1921), - [anon_sym_Static] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_STATIC] = ACTIONS(1921), - [sym__automatic_semicolon] = ACTIONS(1923), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1923), - [sym__java_block_open] = ACTIONS(1923), - [sym__static_type_prefix] = ACTIONS(1923), - }, - [STATE(558)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Else] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_ELSE] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(2596), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), - }, - [STATE(559)] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_Query] = ACTIONS(2007), - [anon_sym_query] = ACTIONS(2007), - [anon_sym_QUERY] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [aux_sym_unary_operator_token1] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [anon_sym_SQUOTE] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2007), - [aux_sym_number_token2] = ACTIONS(2009), - [anon_sym_This] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(2007), - [anon_sym_THIS] = ACTIONS(2007), - [anon_sym_Super] = ACTIONS(2007), - [anon_sym_super] = ACTIONS(2007), - [anon_sym_SUPER] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [anon_sym_Undefined] = ACTIONS(2007), - [anon_sym_undefined] = ACTIONS(2007), - [anon_sym_UNDEFINED] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [sym_hash_empty] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_QueryExecute] = ACTIONS(2007), - [anon_sym_queryexecute] = ACTIONS(2007), - [anon_sym_QUERYEXECUTE] = ACTIONS(2007), - [anon_sym_queryExecute] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2009), - [anon_sym_Abstract] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_ABSTRACT] = ACTIONS(2007), - [anon_sym_Break] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_BREAK] = ACTIONS(2007), - [anon_sym_Case] = ACTIONS(2007), - [anon_sym_case] = ACTIONS(2007), - [anon_sym_CASE] = ACTIONS(2007), - [anon_sym_Component] = ACTIONS(2007), - [anon_sym_component] = ACTIONS(2007), - [anon_sym_COMPONENT] = ACTIONS(2007), - [anon_sym_Continue] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_CONTINUE] = ACTIONS(2007), - [anon_sym_Debugger] = ACTIONS(2007), - [anon_sym_debugger] = ACTIONS(2007), - [anon_sym_DEBUGGER] = ACTIONS(2007), - [anon_sym_Default] = ACTIONS(2007), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_DEFAULT] = ACTIONS(2007), - [anon_sym_Do] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_DO] = ACTIONS(2007), - [anon_sym_Else] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_ELSE] = ACTIONS(2007), - [anon_sym_Final] = ACTIONS(2007), - [anon_sym_final] = ACTIONS(2007), - [anon_sym_FINAL] = ACTIONS(2007), - [anon_sym_For] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_FOR] = ACTIONS(2007), - [anon_sym_Function] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_FUNCTION] = ACTIONS(2007), - [anon_sym_If] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_IF] = ACTIONS(2007), - [anon_sym_Import] = ACTIONS(2007), - [anon_sym_import] = ACTIONS(2007), - [anon_sym_IMPORT] = ACTIONS(2007), - [anon_sym_Include] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_INCLUDE] = ACTIONS(2007), - [anon_sym_Interface] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_INTERFACE] = ACTIONS(2007), - [anon_sym_New] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_NEW] = ACTIONS(2007), - [anon_sym_Package] = ACTIONS(2007), - [anon_sym_package] = ACTIONS(2007), - [anon_sym_PACKAGE] = ACTIONS(2007), - [anon_sym_Private] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_PRIVATE] = ACTIONS(2007), - [anon_sym_Property] = ACTIONS(2007), - [anon_sym_property] = ACTIONS(2007), - [anon_sym_PROPERTY] = ACTIONS(2007), - [anon_sym_Public] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_PUBLIC] = ACTIONS(2007), - [anon_sym_Remote] = ACTIONS(2007), - [anon_sym_remote] = ACTIONS(2007), - [anon_sym_REMOTE] = ACTIONS(2007), - [anon_sym_Return] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_RETURN] = ACTIONS(2007), - [anon_sym_Static] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_STATIC] = ACTIONS(2007), - [anon_sym_Switch] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_SWITCH] = ACTIONS(2007), - [anon_sym_Throw] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_THROW] = ACTIONS(2007), - [anon_sym_Try] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_TRY] = ACTIONS(2007), - [anon_sym_Var] = ACTIONS(2007), - [anon_sym_var] = ACTIONS(2007), - [anon_sym_VAR] = ACTIONS(2007), - [anon_sym_While] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_WHILE] = ACTIONS(2007), - [anon_sym_With] = ACTIONS(2007), - [anon_sym_with] = ACTIONS(2007), - [anon_sym_WITH] = ACTIONS(2007), - [sym__automatic_semicolon] = ACTIONS(2009), - [sym_cf_comment] = ACTIONS(2009), - [sym__java_block_open] = ACTIONS(2009), - [sym__static_type_prefix] = ACTIONS(2009), - }, - [STATE(560)] = { + [ts_builtin_sym_end] = ACTIONS(2217), [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2217), [anon_sym_let] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2217), [anon_sym_Query] = ACTIONS(2219), [anon_sym_query] = ACTIONS(2219), [anon_sym_QUERY] = ACTIONS(2219), - [anon_sym_EQ_GT] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), [anon_sym_PLUS] = ACTIONS(2219), [anon_sym_DASH] = ACTIONS(2219), [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_TILDE] = ACTIONS(2217), [aux_sym_unary_operator_token1] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2217), + [anon_sym_DASH_DASH] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(2219), - [aux_sym_number_token2] = ACTIONS(2219), + [aux_sym_number_token2] = ACTIONS(2217), [anon_sym_This] = ACTIONS(2219), [anon_sym_this] = ACTIONS(2219), [anon_sym_THIS] = ACTIONS(2219), @@ -130637,38 +129210,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(2219), [anon_sym_set] = ACTIONS(2219), [anon_sym_POUND] = ACTIONS(2219), - [sym_hash_empty] = ACTIONS(2221), + [sym_hash_empty] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_QueryExecute] = ACTIONS(2219), [anon_sym_queryexecute] = ACTIONS(2219), [anon_sym_QUERYEXECUTE] = ACTIONS(2219), [anon_sym_queryExecute] = ACTIONS(2219), - [anon_sym_BQUOTE] = ACTIONS(2221), + [anon_sym_BQUOTE] = ACTIONS(2219), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2217), [anon_sym_Abstract] = ACTIONS(2219), [anon_sym_abstract] = ACTIONS(2219), [anon_sym_ABSTRACT] = ACTIONS(2219), + [anon_sym_Break] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_BREAK] = ACTIONS(2219), + [anon_sym_Case] = ACTIONS(2219), + [anon_sym_case] = ACTIONS(2219), + [anon_sym_CASE] = ACTIONS(2219), + [anon_sym_Catch] = ACTIONS(2219), + [anon_sym_catch] = ACTIONS(2219), + [anon_sym_CATCH] = ACTIONS(2219), [anon_sym_Component] = ACTIONS(2219), [anon_sym_component] = ACTIONS(2219), [anon_sym_COMPONENT] = ACTIONS(2219), + [anon_sym_Continue] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_CONTINUE] = ACTIONS(2219), [anon_sym_Debugger] = ACTIONS(2219), [anon_sym_debugger] = ACTIONS(2219), [anon_sym_DEBUGGER] = ACTIONS(2219), + [anon_sym_Default] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_DEFAULT] = ACTIONS(2219), + [anon_sym_Do] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_DO] = ACTIONS(2219), [anon_sym_Final] = ACTIONS(2219), [anon_sym_final] = ACTIONS(2219), [anon_sym_FINAL] = ACTIONS(2219), + [anon_sym_Finally] = ACTIONS(2219), + [anon_sym_finally] = ACTIONS(2219), + [anon_sym_FINALLY] = ACTIONS(2219), + [anon_sym_For] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_FOR] = ACTIONS(2219), [anon_sym_Function] = ACTIONS(2219), [anon_sym_function] = ACTIONS(2219), [anon_sym_FUNCTION] = ACTIONS(2219), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), + [anon_sym_If] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_IF] = ACTIONS(2219), + [anon_sym_Import] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_IMPORT] = ACTIONS(2219), [anon_sym_Include] = ACTIONS(2219), [anon_sym_include] = ACTIONS(2219), [anon_sym_INCLUDE] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), + [anon_sym_Interface] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_INTERFACE] = ACTIONS(2219), [anon_sym_New] = ACTIONS(2219), [anon_sym_new] = ACTIONS(2219), [anon_sym_NEW] = ACTIONS(2219), @@ -130678,2257 +129278,4083 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Private] = ACTIONS(2219), [anon_sym_private] = ACTIONS(2219), [anon_sym_PRIVATE] = ACTIONS(2219), + [anon_sym_Property] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_PROPERTY] = ACTIONS(2219), [anon_sym_Public] = ACTIONS(2219), [anon_sym_public] = ACTIONS(2219), [anon_sym_PUBLIC] = ACTIONS(2219), [anon_sym_Remote] = ACTIONS(2219), [anon_sym_remote] = ACTIONS(2219), [anon_sym_REMOTE] = ACTIONS(2219), + [anon_sym_Return] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_RETURN] = ACTIONS(2219), [anon_sym_Static] = ACTIONS(2219), [anon_sym_static] = ACTIONS(2219), [anon_sym_STATIC] = ACTIONS(2219), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym__java_block_open] = ACTIONS(2221), - [sym__static_type_prefix] = ACTIONS(2221), + [anon_sym_Switch] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_SWITCH] = ACTIONS(2219), + [anon_sym_Throw] = ACTIONS(2219), + [anon_sym_throw] = ACTIONS(2219), + [anon_sym_THROW] = ACTIONS(2219), + [anon_sym_Try] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_TRY] = ACTIONS(2219), + [anon_sym_Var] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2219), + [anon_sym_VAR] = ACTIONS(2219), + [anon_sym_While] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_WHILE] = ACTIONS(2219), + [anon_sym_With] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_WITH] = ACTIONS(2219), + [sym_cf_comment] = ACTIONS(2217), + [sym__java_block_open] = ACTIONS(2217), + [sym__static_type_prefix] = ACTIONS(2217), + }, + [STATE(551)] = { + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_Query] = ACTIONS(2338), + [anon_sym_query] = ACTIONS(2338), + [anon_sym_QUERY] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2338), + [sym_optional_chain] = ACTIONS(2342), + [sym_static_chain] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2338), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_BSLASH] = ACTIONS(2338), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_LT_GT] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [aux_sym_binary_expression_token1] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2338), + [aux_sym_binary_expression_token2] = ACTIONS(2338), + [aux_sym_binary_expression_token3] = ACTIONS(2338), + [aux_sym_binary_expression_token4] = ACTIONS(2342), + [aux_sym_binary_expression_token5] = ACTIONS(2342), + [aux_sym_binary_expression_token6] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_TILDE] = ACTIONS(2342), + [aux_sym_unary_operator_token1] = ACTIONS(2338), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2342), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2338), + [aux_sym_number_token2] = ACTIONS(2338), + [anon_sym_This] = ACTIONS(2338), + [anon_sym_this] = ACTIONS(2338), + [anon_sym_THIS] = ACTIONS(2338), + [anon_sym_Super] = ACTIONS(2338), + [anon_sym_super] = ACTIONS(2338), + [anon_sym_SUPER] = ACTIONS(2338), + [anon_sym_True] = ACTIONS(2338), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_TRUE] = ACTIONS(2338), + [anon_sym_False] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_FALSE] = ACTIONS(2338), + [anon_sym_Null] = ACTIONS(2338), + [anon_sym_null] = ACTIONS(2338), + [anon_sym_NULL] = ACTIONS(2338), + [anon_sym_Undefined] = ACTIONS(2338), + [anon_sym_undefined] = ACTIONS(2338), + [anon_sym_UNDEFINED] = ACTIONS(2338), + [anon_sym_get] = ACTIONS(2338), + [anon_sym_set] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(2338), + [sym_hash_empty] = ACTIONS(2342), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_QueryExecute] = ACTIONS(2338), + [anon_sym_queryexecute] = ACTIONS(2338), + [anon_sym_QUERYEXECUTE] = ACTIONS(2338), + [anon_sym_queryExecute] = ACTIONS(2338), + [anon_sym_BQUOTE] = ACTIONS(2342), + [anon_sym_Abstract] = ACTIONS(2338), + [anon_sym_abstract] = ACTIONS(2338), + [anon_sym_ABSTRACT] = ACTIONS(2338), + [anon_sym_Component] = ACTIONS(2338), + [anon_sym_component] = ACTIONS(2338), + [anon_sym_COMPONENT] = ACTIONS(2338), + [anon_sym_Debugger] = ACTIONS(2338), + [anon_sym_debugger] = ACTIONS(2338), + [anon_sym_DEBUGGER] = ACTIONS(2338), + [anon_sym_Final] = ACTIONS(2338), + [anon_sym_final] = ACTIONS(2338), + [anon_sym_FINAL] = ACTIONS(2338), + [anon_sym_Function] = ACTIONS(2338), + [anon_sym_function] = ACTIONS(2338), + [anon_sym_FUNCTION] = ACTIONS(2338), + [anon_sym_In] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_IN] = ACTIONS(2338), + [anon_sym_Include] = ACTIONS(2338), + [anon_sym_include] = ACTIONS(2338), + [anon_sym_INCLUDE] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(2338), + [anon_sym_instanceof] = ACTIONS(2338), + [anon_sym_INSTANCEOF] = ACTIONS(2338), + [anon_sym_instanceOf] = ACTIONS(2338), + [anon_sym_New] = ACTIONS(2338), + [anon_sym_new] = ACTIONS(2338), + [anon_sym_NEW] = ACTIONS(2338), + [anon_sym_Package] = ACTIONS(2338), + [anon_sym_package] = ACTIONS(2338), + [anon_sym_PACKAGE] = ACTIONS(2338), + [anon_sym_Private] = ACTIONS(2338), + [anon_sym_private] = ACTIONS(2338), + [anon_sym_PRIVATE] = ACTIONS(2338), + [anon_sym_Public] = ACTIONS(2338), + [anon_sym_public] = ACTIONS(2338), + [anon_sym_PUBLIC] = ACTIONS(2338), + [anon_sym_Remote] = ACTIONS(2338), + [anon_sym_remote] = ACTIONS(2338), + [anon_sym_REMOTE] = ACTIONS(2338), + [anon_sym_Static] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2338), + [anon_sym_STATIC] = ACTIONS(2338), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(2342), + [sym__elvis_operator] = ACTIONS(2342), + [sym_logical_or] = ACTIONS(2342), + [sym_tag_linefeed] = ACTIONS(2342), + [sym__java_block_open] = ACTIONS(2342), + [sym__static_type_prefix] = ACTIONS(2342), + }, + [STATE(552)] = { + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_Query] = ACTIONS(2584), + [anon_sym_query] = ACTIONS(2584), + [anon_sym_QUERY] = ACTIONS(2584), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2346), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2348), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2352), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2372), + [anon_sym_BSLASH] = ACTIONS(2340), + [anon_sym_STAR_STAR] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2352), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_LT_GT] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2352), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [aux_sym_binary_expression_token1] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2350), + [aux_sym_binary_expression_token2] = ACTIONS(2350), + [aux_sym_binary_expression_token3] = ACTIONS(2350), + [aux_sym_binary_expression_token4] = ACTIONS(2376), + [aux_sym_binary_expression_token5] = ACTIONS(2376), + [aux_sym_binary_expression_token6] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2586), + [aux_sym_unary_operator_token1] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2584), + [aux_sym_number_token2] = ACTIONS(2584), + [anon_sym_This] = ACTIONS(2584), + [anon_sym_this] = ACTIONS(2584), + [anon_sym_THIS] = ACTIONS(2584), + [anon_sym_Super] = ACTIONS(2584), + [anon_sym_super] = ACTIONS(2584), + [anon_sym_SUPER] = ACTIONS(2584), + [anon_sym_True] = ACTIONS(2584), + [anon_sym_true] = ACTIONS(2584), + [anon_sym_TRUE] = ACTIONS(2584), + [anon_sym_False] = ACTIONS(2584), + [anon_sym_false] = ACTIONS(2584), + [anon_sym_FALSE] = ACTIONS(2584), + [anon_sym_Null] = ACTIONS(2584), + [anon_sym_null] = ACTIONS(2584), + [anon_sym_NULL] = ACTIONS(2584), + [anon_sym_Undefined] = ACTIONS(2584), + [anon_sym_undefined] = ACTIONS(2584), + [anon_sym_UNDEFINED] = ACTIONS(2584), + [anon_sym_get] = ACTIONS(2584), + [anon_sym_set] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [sym_hash_empty] = ACTIONS(2586), + [anon_sym_export] = ACTIONS(2584), + [anon_sym_QueryExecute] = ACTIONS(2584), + [anon_sym_queryexecute] = ACTIONS(2584), + [anon_sym_QUERYEXECUTE] = ACTIONS(2584), + [anon_sym_queryExecute] = ACTIONS(2584), + [anon_sym_BQUOTE] = ACTIONS(2586), + [anon_sym_Abstract] = ACTIONS(2584), + [anon_sym_abstract] = ACTIONS(2584), + [anon_sym_ABSTRACT] = ACTIONS(2584), + [anon_sym_Component] = ACTIONS(2584), + [anon_sym_component] = ACTIONS(2584), + [anon_sym_COMPONENT] = ACTIONS(2584), + [anon_sym_Debugger] = ACTIONS(2584), + [anon_sym_debugger] = ACTIONS(2584), + [anon_sym_DEBUGGER] = ACTIONS(2584), + [anon_sym_Final] = ACTIONS(2584), + [anon_sym_final] = ACTIONS(2584), + [anon_sym_FINAL] = ACTIONS(2584), + [anon_sym_Function] = ACTIONS(2584), + [anon_sym_function] = ACTIONS(2584), + [anon_sym_FUNCTION] = ACTIONS(2584), + [anon_sym_In] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_IN] = ACTIONS(2350), + [anon_sym_Include] = ACTIONS(2584), + [anon_sym_include] = ACTIONS(2584), + [anon_sym_INCLUDE] = ACTIONS(2584), + [anon_sym_InstanceOf] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_INSTANCEOF] = ACTIONS(2350), + [anon_sym_instanceOf] = ACTIONS(2350), + [anon_sym_New] = ACTIONS(2584), + [anon_sym_new] = ACTIONS(2584), + [anon_sym_NEW] = ACTIONS(2584), + [anon_sym_Package] = ACTIONS(2584), + [anon_sym_package] = ACTIONS(2584), + [anon_sym_PACKAGE] = ACTIONS(2584), + [anon_sym_Private] = ACTIONS(2584), + [anon_sym_private] = ACTIONS(2584), + [anon_sym_PRIVATE] = ACTIONS(2584), + [anon_sym_Public] = ACTIONS(2584), + [anon_sym_public] = ACTIONS(2584), + [anon_sym_PUBLIC] = ACTIONS(2584), + [anon_sym_Remote] = ACTIONS(2584), + [anon_sym_remote] = ACTIONS(2584), + [anon_sym_REMOTE] = ACTIONS(2584), + [anon_sym_Static] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_STATIC] = ACTIONS(2584), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(2384), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(2358), + [sym_tag_linefeed] = ACTIONS(2586), + [sym__java_block_open] = ACTIONS(2586), + [sym__static_type_prefix] = ACTIONS(2586), + }, + [STATE(553)] = { + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_Query] = ACTIONS(2185), + [anon_sym_query] = ACTIONS(2185), + [anon_sym_QUERY] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [aux_sym_unary_operator_token1] = ACTIONS(2185), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2185), + [aux_sym_number_token2] = ACTIONS(2183), + [anon_sym_This] = ACTIONS(2185), + [anon_sym_this] = ACTIONS(2185), + [anon_sym_THIS] = ACTIONS(2185), + [anon_sym_Super] = ACTIONS(2185), + [anon_sym_super] = ACTIONS(2185), + [anon_sym_SUPER] = ACTIONS(2185), + [anon_sym_True] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_TRUE] = ACTIONS(2185), + [anon_sym_False] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_FALSE] = ACTIONS(2185), + [anon_sym_Null] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_NULL] = ACTIONS(2185), + [anon_sym_Undefined] = ACTIONS(2185), + [anon_sym_undefined] = ACTIONS(2185), + [anon_sym_UNDEFINED] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(2185), + [anon_sym_set] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [sym_hash_empty] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_QueryExecute] = ACTIONS(2185), + [anon_sym_queryexecute] = ACTIONS(2185), + [anon_sym_QUERYEXECUTE] = ACTIONS(2185), + [anon_sym_queryExecute] = ACTIONS(2185), + [anon_sym_BQUOTE] = ACTIONS(2185), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2183), + [anon_sym_Abstract] = ACTIONS(2185), + [anon_sym_abstract] = ACTIONS(2185), + [anon_sym_ABSTRACT] = ACTIONS(2185), + [anon_sym_Break] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_BREAK] = ACTIONS(2185), + [anon_sym_Case] = ACTIONS(2185), + [anon_sym_case] = ACTIONS(2185), + [anon_sym_CASE] = ACTIONS(2185), + [anon_sym_Catch] = ACTIONS(2185), + [anon_sym_catch] = ACTIONS(2185), + [anon_sym_CATCH] = ACTIONS(2185), + [anon_sym_Component] = ACTIONS(2185), + [anon_sym_component] = ACTIONS(2185), + [anon_sym_COMPONENT] = ACTIONS(2185), + [anon_sym_Continue] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_CONTINUE] = ACTIONS(2185), + [anon_sym_Debugger] = ACTIONS(2185), + [anon_sym_debugger] = ACTIONS(2185), + [anon_sym_DEBUGGER] = ACTIONS(2185), + [anon_sym_Default] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_DEFAULT] = ACTIONS(2185), + [anon_sym_Do] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_DO] = ACTIONS(2185), + [anon_sym_Final] = ACTIONS(2185), + [anon_sym_final] = ACTIONS(2185), + [anon_sym_FINAL] = ACTIONS(2185), + [anon_sym_Finally] = ACTIONS(2185), + [anon_sym_finally] = ACTIONS(2185), + [anon_sym_FINALLY] = ACTIONS(2185), + [anon_sym_For] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_FOR] = ACTIONS(2185), + [anon_sym_Function] = ACTIONS(2185), + [anon_sym_function] = ACTIONS(2185), + [anon_sym_FUNCTION] = ACTIONS(2185), + [anon_sym_If] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_IF] = ACTIONS(2185), + [anon_sym_Import] = ACTIONS(2185), + [anon_sym_import] = ACTIONS(2185), + [anon_sym_IMPORT] = ACTIONS(2185), + [anon_sym_Include] = ACTIONS(2185), + [anon_sym_include] = ACTIONS(2185), + [anon_sym_INCLUDE] = ACTIONS(2185), + [anon_sym_Interface] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_INTERFACE] = ACTIONS(2185), + [anon_sym_New] = ACTIONS(2185), + [anon_sym_new] = ACTIONS(2185), + [anon_sym_NEW] = ACTIONS(2185), + [anon_sym_Package] = ACTIONS(2185), + [anon_sym_package] = ACTIONS(2185), + [anon_sym_PACKAGE] = ACTIONS(2185), + [anon_sym_Private] = ACTIONS(2185), + [anon_sym_private] = ACTIONS(2185), + [anon_sym_PRIVATE] = ACTIONS(2185), + [anon_sym_Property] = ACTIONS(2185), + [anon_sym_property] = ACTIONS(2185), + [anon_sym_PROPERTY] = ACTIONS(2185), + [anon_sym_Public] = ACTIONS(2185), + [anon_sym_public] = ACTIONS(2185), + [anon_sym_PUBLIC] = ACTIONS(2185), + [anon_sym_Remote] = ACTIONS(2185), + [anon_sym_remote] = ACTIONS(2185), + [anon_sym_REMOTE] = ACTIONS(2185), + [anon_sym_Return] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_RETURN] = ACTIONS(2185), + [anon_sym_Static] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_STATIC] = ACTIONS(2185), + [anon_sym_Switch] = ACTIONS(2185), + [anon_sym_switch] = ACTIONS(2185), + [anon_sym_SWITCH] = ACTIONS(2185), + [anon_sym_Throw] = ACTIONS(2185), + [anon_sym_throw] = ACTIONS(2185), + [anon_sym_THROW] = ACTIONS(2185), + [anon_sym_Try] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_TRY] = ACTIONS(2185), + [anon_sym_Var] = ACTIONS(2185), + [anon_sym_var] = ACTIONS(2185), + [anon_sym_VAR] = ACTIONS(2185), + [anon_sym_While] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_WHILE] = ACTIONS(2185), + [anon_sym_With] = ACTIONS(2185), + [anon_sym_with] = ACTIONS(2185), + [anon_sym_WITH] = ACTIONS(2185), + [sym_cf_comment] = ACTIONS(2183), + [sym__java_block_open] = ACTIONS(2183), + [sym__static_type_prefix] = ACTIONS(2183), + }, + [STATE(554)] = { + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_Query] = ACTIONS(2193), + [anon_sym_query] = ACTIONS(2193), + [anon_sym_QUERY] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [aux_sym_unary_operator_token1] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2193), + [aux_sym_number_token2] = ACTIONS(2191), + [anon_sym_This] = ACTIONS(2193), + [anon_sym_this] = ACTIONS(2193), + [anon_sym_THIS] = ACTIONS(2193), + [anon_sym_Super] = ACTIONS(2193), + [anon_sym_super] = ACTIONS(2193), + [anon_sym_SUPER] = ACTIONS(2193), + [anon_sym_True] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_TRUE] = ACTIONS(2193), + [anon_sym_False] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_FALSE] = ACTIONS(2193), + [anon_sym_Null] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(2193), + [anon_sym_NULL] = ACTIONS(2193), + [anon_sym_Undefined] = ACTIONS(2193), + [anon_sym_undefined] = ACTIONS(2193), + [anon_sym_UNDEFINED] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), + [sym_hash_empty] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_QueryExecute] = ACTIONS(2193), + [anon_sym_queryexecute] = ACTIONS(2193), + [anon_sym_QUERYEXECUTE] = ACTIONS(2193), + [anon_sym_queryExecute] = ACTIONS(2193), + [anon_sym_BQUOTE] = ACTIONS(2193), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2191), + [anon_sym_Abstract] = ACTIONS(2193), + [anon_sym_abstract] = ACTIONS(2193), + [anon_sym_ABSTRACT] = ACTIONS(2193), + [anon_sym_Break] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_BREAK] = ACTIONS(2193), + [anon_sym_Case] = ACTIONS(2193), + [anon_sym_case] = ACTIONS(2193), + [anon_sym_CASE] = ACTIONS(2193), + [anon_sym_Catch] = ACTIONS(2193), + [anon_sym_catch] = ACTIONS(2193), + [anon_sym_CATCH] = ACTIONS(2193), + [anon_sym_Component] = ACTIONS(2193), + [anon_sym_component] = ACTIONS(2193), + [anon_sym_COMPONENT] = ACTIONS(2193), + [anon_sym_Continue] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_CONTINUE] = ACTIONS(2193), + [anon_sym_Debugger] = ACTIONS(2193), + [anon_sym_debugger] = ACTIONS(2193), + [anon_sym_DEBUGGER] = ACTIONS(2193), + [anon_sym_Default] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_DEFAULT] = ACTIONS(2193), + [anon_sym_Do] = ACTIONS(2193), + [anon_sym_do] = ACTIONS(2193), + [anon_sym_DO] = ACTIONS(2193), + [anon_sym_Final] = ACTIONS(2193), + [anon_sym_final] = ACTIONS(2193), + [anon_sym_FINAL] = ACTIONS(2193), + [anon_sym_Finally] = ACTIONS(2193), + [anon_sym_finally] = ACTIONS(2193), + [anon_sym_FINALLY] = ACTIONS(2193), + [anon_sym_For] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_FOR] = ACTIONS(2193), + [anon_sym_Function] = ACTIONS(2193), + [anon_sym_function] = ACTIONS(2193), + [anon_sym_FUNCTION] = ACTIONS(2193), + [anon_sym_If] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_IF] = ACTIONS(2193), + [anon_sym_Import] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_IMPORT] = ACTIONS(2193), + [anon_sym_Include] = ACTIONS(2193), + [anon_sym_include] = ACTIONS(2193), + [anon_sym_INCLUDE] = ACTIONS(2193), + [anon_sym_Interface] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_INTERFACE] = ACTIONS(2193), + [anon_sym_New] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_NEW] = ACTIONS(2193), + [anon_sym_Package] = ACTIONS(2193), + [anon_sym_package] = ACTIONS(2193), + [anon_sym_PACKAGE] = ACTIONS(2193), + [anon_sym_Private] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_PRIVATE] = ACTIONS(2193), + [anon_sym_Property] = ACTIONS(2193), + [anon_sym_property] = ACTIONS(2193), + [anon_sym_PROPERTY] = ACTIONS(2193), + [anon_sym_Public] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_PUBLIC] = ACTIONS(2193), + [anon_sym_Remote] = ACTIONS(2193), + [anon_sym_remote] = ACTIONS(2193), + [anon_sym_REMOTE] = ACTIONS(2193), + [anon_sym_Return] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_RETURN] = ACTIONS(2193), + [anon_sym_Static] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_STATIC] = ACTIONS(2193), + [anon_sym_Switch] = ACTIONS(2193), + [anon_sym_switch] = ACTIONS(2193), + [anon_sym_SWITCH] = ACTIONS(2193), + [anon_sym_Throw] = ACTIONS(2193), + [anon_sym_throw] = ACTIONS(2193), + [anon_sym_THROW] = ACTIONS(2193), + [anon_sym_Try] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_TRY] = ACTIONS(2193), + [anon_sym_Var] = ACTIONS(2193), + [anon_sym_var] = ACTIONS(2193), + [anon_sym_VAR] = ACTIONS(2193), + [anon_sym_While] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_WHILE] = ACTIONS(2193), + [anon_sym_With] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_WITH] = ACTIONS(2193), + [sym_cf_comment] = ACTIONS(2191), + [sym__java_block_open] = ACTIONS(2191), + [sym__static_type_prefix] = ACTIONS(2191), + }, + [STATE(555)] = { + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_Query] = ACTIONS(1090), + [anon_sym_query] = ACTIONS(1090), + [anon_sym_QUERY] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1087), + [aux_sym_unary_operator_token1] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1090), + [aux_sym_number_token2] = ACTIONS(1090), + [anon_sym_This] = ACTIONS(1090), + [anon_sym_this] = ACTIONS(1090), + [anon_sym_THIS] = ACTIONS(1090), + [anon_sym_Super] = ACTIONS(1090), + [anon_sym_super] = ACTIONS(1090), + [anon_sym_SUPER] = ACTIONS(1090), + [anon_sym_True] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_TRUE] = ACTIONS(1090), + [anon_sym_False] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_FALSE] = ACTIONS(1090), + [anon_sym_Null] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [anon_sym_NULL] = ACTIONS(1090), + [anon_sym_Undefined] = ACTIONS(1090), + [anon_sym_undefined] = ACTIONS(1090), + [anon_sym_UNDEFINED] = ACTIONS(1090), + [anon_sym_get] = ACTIONS(1090), + [anon_sym_set] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(1090), + [sym_hash_empty] = ACTIONS(1087), + [anon_sym_export] = ACTIONS(1090), + [anon_sym_QueryExecute] = ACTIONS(1090), + [anon_sym_queryexecute] = ACTIONS(1090), + [anon_sym_QUERYEXECUTE] = ACTIONS(1090), + [anon_sym_queryExecute] = ACTIONS(1090), + [anon_sym_BQUOTE] = ACTIONS(1087), + [anon_sym_Abstract] = ACTIONS(1090), + [anon_sym_abstract] = ACTIONS(1090), + [anon_sym_ABSTRACT] = ACTIONS(1090), + [anon_sym_Component] = ACTIONS(1090), + [anon_sym_component] = ACTIONS(1090), + [anon_sym_COMPONENT] = ACTIONS(1090), + [anon_sym_Debugger] = ACTIONS(1090), + [anon_sym_debugger] = ACTIONS(1090), + [anon_sym_DEBUGGER] = ACTIONS(1090), + [anon_sym_Final] = ACTIONS(1090), + [anon_sym_final] = ACTIONS(1090), + [anon_sym_FINAL] = ACTIONS(1090), + [anon_sym_Function] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_FUNCTION] = ACTIONS(1090), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(1090), + [anon_sym_include] = ACTIONS(1090), + [anon_sym_INCLUDE] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_New] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_NEW] = ACTIONS(1090), + [anon_sym_Package] = ACTIONS(1090), + [anon_sym_package] = ACTIONS(1090), + [anon_sym_PACKAGE] = ACTIONS(1090), + [anon_sym_Private] = ACTIONS(1090), + [anon_sym_private] = ACTIONS(1090), + [anon_sym_PRIVATE] = ACTIONS(1090), + [anon_sym_Public] = ACTIONS(1090), + [anon_sym_public] = ACTIONS(1090), + [anon_sym_PUBLIC] = ACTIONS(1090), + [anon_sym_Remote] = ACTIONS(1090), + [anon_sym_remote] = ACTIONS(1090), + [anon_sym_REMOTE] = ACTIONS(1090), + [anon_sym_Static] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_STATIC] = ACTIONS(1090), + [sym__automatic_semicolon] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_tag_linefeed] = ACTIONS(1087), + [sym__java_block_open] = ACTIONS(1087), + [sym__static_type_prefix] = ACTIONS(1087), + }, + [STATE(556)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_Query] = ACTIONS(2211), + [anon_sym_query] = ACTIONS(2211), + [anon_sym_QUERY] = ACTIONS(2211), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_DASH_GT] = ACTIONS(2215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2213), + [aux_sym_unary_operator_token1] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2211), + [aux_sym_number_token2] = ACTIONS(2211), + [anon_sym_This] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(2211), + [anon_sym_THIS] = ACTIONS(2211), + [anon_sym_Super] = ACTIONS(2211), + [anon_sym_super] = ACTIONS(2211), + [anon_sym_SUPER] = ACTIONS(2211), + [anon_sym_True] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_TRUE] = ACTIONS(2211), + [anon_sym_False] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_FALSE] = ACTIONS(2211), + [anon_sym_Null] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2211), + [anon_sym_NULL] = ACTIONS(2211), + [anon_sym_Undefined] = ACTIONS(2211), + [anon_sym_undefined] = ACTIONS(2211), + [anon_sym_UNDEFINED] = ACTIONS(2211), + [anon_sym_get] = ACTIONS(2211), + [anon_sym_set] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [sym_hash_empty] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2211), + [anon_sym_QueryExecute] = ACTIONS(2211), + [anon_sym_queryexecute] = ACTIONS(2211), + [anon_sym_QUERYEXECUTE] = ACTIONS(2211), + [anon_sym_queryExecute] = ACTIONS(2211), + [anon_sym_BQUOTE] = ACTIONS(2213), + [anon_sym_Abstract] = ACTIONS(2211), + [anon_sym_abstract] = ACTIONS(2211), + [anon_sym_ABSTRACT] = ACTIONS(2211), + [anon_sym_Component] = ACTIONS(2211), + [anon_sym_component] = ACTIONS(2211), + [anon_sym_COMPONENT] = ACTIONS(2211), + [anon_sym_Debugger] = ACTIONS(2211), + [anon_sym_debugger] = ACTIONS(2211), + [anon_sym_DEBUGGER] = ACTIONS(2211), + [anon_sym_Final] = ACTIONS(2211), + [anon_sym_final] = ACTIONS(2211), + [anon_sym_FINAL] = ACTIONS(2211), + [anon_sym_Function] = ACTIONS(2211), + [anon_sym_function] = ACTIONS(2211), + [anon_sym_FUNCTION] = ACTIONS(2211), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_Include] = ACTIONS(2211), + [anon_sym_include] = ACTIONS(2211), + [anon_sym_INCLUDE] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [anon_sym_New] = ACTIONS(2211), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_NEW] = ACTIONS(2211), + [anon_sym_Package] = ACTIONS(2211), + [anon_sym_package] = ACTIONS(2211), + [anon_sym_PACKAGE] = ACTIONS(2211), + [anon_sym_Private] = ACTIONS(2211), + [anon_sym_private] = ACTIONS(2211), + [anon_sym_PRIVATE] = ACTIONS(2211), + [anon_sym_Public] = ACTIONS(2211), + [anon_sym_public] = ACTIONS(2211), + [anon_sym_PUBLIC] = ACTIONS(2211), + [anon_sym_Remote] = ACTIONS(2211), + [anon_sym_remote] = ACTIONS(2211), + [anon_sym_REMOTE] = ACTIONS(2211), + [anon_sym_Static] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_STATIC] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym__java_block_open] = ACTIONS(2213), + [sym__static_type_prefix] = ACTIONS(2213), + }, + [STATE(557)] = { + [sym_identifier] = ACTIONS(1914), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_Query] = ACTIONS(1914), + [anon_sym_query] = ACTIONS(1914), + [anon_sym_QUERY] = ACTIONS(1914), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1916), + [aux_sym_unary_operator_token1] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1914), + [aux_sym_number_token2] = ACTIONS(1914), + [anon_sym_This] = ACTIONS(1914), + [anon_sym_this] = ACTIONS(1914), + [anon_sym_THIS] = ACTIONS(1914), + [anon_sym_Super] = ACTIONS(1914), + [anon_sym_super] = ACTIONS(1914), + [anon_sym_SUPER] = ACTIONS(1914), + [anon_sym_True] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_TRUE] = ACTIONS(1914), + [anon_sym_False] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_FALSE] = ACTIONS(1914), + [anon_sym_Null] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1914), + [anon_sym_Undefined] = ACTIONS(1914), + [anon_sym_undefined] = ACTIONS(1914), + [anon_sym_UNDEFINED] = ACTIONS(1914), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [sym_hash_empty] = ACTIONS(1916), + [anon_sym_export] = ACTIONS(1914), + [anon_sym_QueryExecute] = ACTIONS(1914), + [anon_sym_queryexecute] = ACTIONS(1914), + [anon_sym_QUERYEXECUTE] = ACTIONS(1914), + [anon_sym_queryExecute] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_Abstract] = ACTIONS(1914), + [anon_sym_abstract] = ACTIONS(1914), + [anon_sym_ABSTRACT] = ACTIONS(1914), + [anon_sym_Component] = ACTIONS(1914), + [anon_sym_component] = ACTIONS(1914), + [anon_sym_COMPONENT] = ACTIONS(1914), + [anon_sym_Debugger] = ACTIONS(1914), + [anon_sym_debugger] = ACTIONS(1914), + [anon_sym_DEBUGGER] = ACTIONS(1914), + [anon_sym_Final] = ACTIONS(1914), + [anon_sym_final] = ACTIONS(1914), + [anon_sym_FINAL] = ACTIONS(1914), + [anon_sym_Function] = ACTIONS(1914), + [anon_sym_function] = ACTIONS(1914), + [anon_sym_FUNCTION] = ACTIONS(1914), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1914), + [anon_sym_include] = ACTIONS(1914), + [anon_sym_INCLUDE] = ACTIONS(1914), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1914), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_NEW] = ACTIONS(1914), + [anon_sym_Package] = ACTIONS(1914), + [anon_sym_package] = ACTIONS(1914), + [anon_sym_PACKAGE] = ACTIONS(1914), + [anon_sym_Private] = ACTIONS(1914), + [anon_sym_private] = ACTIONS(1914), + [anon_sym_PRIVATE] = ACTIONS(1914), + [anon_sym_Public] = ACTIONS(1914), + [anon_sym_public] = ACTIONS(1914), + [anon_sym_PUBLIC] = ACTIONS(1914), + [anon_sym_Remote] = ACTIONS(1914), + [anon_sym_remote] = ACTIONS(1914), + [anon_sym_REMOTE] = ACTIONS(1914), + [anon_sym_Static] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_STATIC] = ACTIONS(1914), + [sym__automatic_semicolon] = ACTIONS(1916), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1916), + [sym__java_block_open] = ACTIONS(1916), + [sym__static_type_prefix] = ACTIONS(1916), + }, + [STATE(558)] = { + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_Query] = ACTIONS(2588), + [anon_sym_query] = ACTIONS(2588), + [anon_sym_QUERY] = ACTIONS(2588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2591), + [aux_sym_unary_operator_token1] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_DQUOTE] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2591), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2588), + [aux_sym_number_token2] = ACTIONS(2588), + [anon_sym_This] = ACTIONS(2588), + [anon_sym_this] = ACTIONS(2588), + [anon_sym_THIS] = ACTIONS(2588), + [anon_sym_Super] = ACTIONS(2588), + [anon_sym_super] = ACTIONS(2588), + [anon_sym_SUPER] = ACTIONS(2588), + [anon_sym_True] = ACTIONS(2588), + [anon_sym_true] = ACTIONS(2588), + [anon_sym_TRUE] = ACTIONS(2588), + [anon_sym_False] = ACTIONS(2588), + [anon_sym_false] = ACTIONS(2588), + [anon_sym_FALSE] = ACTIONS(2588), + [anon_sym_Null] = ACTIONS(2588), + [anon_sym_null] = ACTIONS(2588), + [anon_sym_NULL] = ACTIONS(2588), + [anon_sym_Undefined] = ACTIONS(2588), + [anon_sym_undefined] = ACTIONS(2588), + [anon_sym_UNDEFINED] = ACTIONS(2588), + [anon_sym_get] = ACTIONS(2588), + [anon_sym_set] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(2588), + [sym_hash_empty] = ACTIONS(2591), + [anon_sym_export] = ACTIONS(2588), + [anon_sym_QueryExecute] = ACTIONS(2588), + [anon_sym_queryexecute] = ACTIONS(2588), + [anon_sym_QUERYEXECUTE] = ACTIONS(2588), + [anon_sym_queryExecute] = ACTIONS(2588), + [anon_sym_BQUOTE] = ACTIONS(2591), + [anon_sym_Abstract] = ACTIONS(2588), + [anon_sym_abstract] = ACTIONS(2588), + [anon_sym_ABSTRACT] = ACTIONS(2588), + [anon_sym_Component] = ACTIONS(2588), + [anon_sym_component] = ACTIONS(2588), + [anon_sym_COMPONENT] = ACTIONS(2588), + [anon_sym_Debugger] = ACTIONS(2588), + [anon_sym_debugger] = ACTIONS(2588), + [anon_sym_DEBUGGER] = ACTIONS(2588), + [anon_sym_Final] = ACTIONS(2588), + [anon_sym_final] = ACTIONS(2588), + [anon_sym_FINAL] = ACTIONS(2588), + [anon_sym_Function] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(2588), + [anon_sym_FUNCTION] = ACTIONS(2588), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(2588), + [anon_sym_include] = ACTIONS(2588), + [anon_sym_INCLUDE] = ACTIONS(2588), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_NEW] = ACTIONS(2588), + [anon_sym_Package] = ACTIONS(2588), + [anon_sym_package] = ACTIONS(2588), + [anon_sym_PACKAGE] = ACTIONS(2588), + [anon_sym_Private] = ACTIONS(2588), + [anon_sym_private] = ACTIONS(2588), + [anon_sym_PRIVATE] = ACTIONS(2588), + [anon_sym_Public] = ACTIONS(2588), + [anon_sym_public] = ACTIONS(2588), + [anon_sym_PUBLIC] = ACTIONS(2588), + [anon_sym_Remote] = ACTIONS(2588), + [anon_sym_remote] = ACTIONS(2588), + [anon_sym_REMOTE] = ACTIONS(2588), + [anon_sym_Static] = ACTIONS(2588), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_STATIC] = ACTIONS(2588), + [sym__automatic_semicolon] = ACTIONS(1916), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1916), + [sym__java_block_open] = ACTIONS(2591), + [sym__static_type_prefix] = ACTIONS(2591), + }, + [STATE(559)] = { + [sym_identifier] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_Query] = ACTIONS(1908), + [anon_sym_query] = ACTIONS(1908), + [anon_sym_QUERY] = ACTIONS(1908), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1910), + [aux_sym_unary_operator_token1] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1908), + [aux_sym_number_token2] = ACTIONS(1908), + [anon_sym_This] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(1908), + [anon_sym_THIS] = ACTIONS(1908), + [anon_sym_Super] = ACTIONS(1908), + [anon_sym_super] = ACTIONS(1908), + [anon_sym_SUPER] = ACTIONS(1908), + [anon_sym_True] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_TRUE] = ACTIONS(1908), + [anon_sym_False] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [anon_sym_FALSE] = ACTIONS(1908), + [anon_sym_Null] = ACTIONS(1908), + [anon_sym_null] = ACTIONS(1908), + [anon_sym_NULL] = ACTIONS(1908), + [anon_sym_Undefined] = ACTIONS(1908), + [anon_sym_undefined] = ACTIONS(1908), + [anon_sym_UNDEFINED] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [sym_hash_empty] = ACTIONS(1910), + [anon_sym_export] = ACTIONS(1908), + [anon_sym_QueryExecute] = ACTIONS(1908), + [anon_sym_queryexecute] = ACTIONS(1908), + [anon_sym_QUERYEXECUTE] = ACTIONS(1908), + [anon_sym_queryExecute] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1910), + [anon_sym_Abstract] = ACTIONS(1908), + [anon_sym_abstract] = ACTIONS(1908), + [anon_sym_ABSTRACT] = ACTIONS(1908), + [anon_sym_Component] = ACTIONS(1908), + [anon_sym_component] = ACTIONS(1908), + [anon_sym_COMPONENT] = ACTIONS(1908), + [anon_sym_Debugger] = ACTIONS(1908), + [anon_sym_debugger] = ACTIONS(1908), + [anon_sym_DEBUGGER] = ACTIONS(1908), + [anon_sym_Final] = ACTIONS(1908), + [anon_sym_final] = ACTIONS(1908), + [anon_sym_FINAL] = ACTIONS(1908), + [anon_sym_Function] = ACTIONS(1908), + [anon_sym_function] = ACTIONS(1908), + [anon_sym_FUNCTION] = ACTIONS(1908), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1908), + [anon_sym_include] = ACTIONS(1908), + [anon_sym_INCLUDE] = ACTIONS(1908), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1908), + [anon_sym_new] = ACTIONS(1908), + [anon_sym_NEW] = ACTIONS(1908), + [anon_sym_Package] = ACTIONS(1908), + [anon_sym_package] = ACTIONS(1908), + [anon_sym_PACKAGE] = ACTIONS(1908), + [anon_sym_Private] = ACTIONS(1908), + [anon_sym_private] = ACTIONS(1908), + [anon_sym_PRIVATE] = ACTIONS(1908), + [anon_sym_Public] = ACTIONS(1908), + [anon_sym_public] = ACTIONS(1908), + [anon_sym_PUBLIC] = ACTIONS(1908), + [anon_sym_Remote] = ACTIONS(1908), + [anon_sym_remote] = ACTIONS(1908), + [anon_sym_REMOTE] = ACTIONS(1908), + [anon_sym_Static] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_STATIC] = ACTIONS(1908), + [sym__automatic_semicolon] = ACTIONS(1910), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1910), + [sym__java_block_open] = ACTIONS(1910), + [sym__static_type_prefix] = ACTIONS(1910), + }, + [STATE(560)] = { + [sym_identifier] = ACTIONS(2594), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_Query] = ACTIONS(2594), + [anon_sym_query] = ACTIONS(2594), + [anon_sym_QUERY] = ACTIONS(2594), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2596), + [aux_sym_unary_operator_token1] = ACTIONS(2594), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2594), + [aux_sym_number_token2] = ACTIONS(2594), + [anon_sym_This] = ACTIONS(2594), + [anon_sym_this] = ACTIONS(2594), + [anon_sym_THIS] = ACTIONS(2594), + [anon_sym_Super] = ACTIONS(2594), + [anon_sym_super] = ACTIONS(2594), + [anon_sym_SUPER] = ACTIONS(2594), + [anon_sym_True] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2594), + [anon_sym_TRUE] = ACTIONS(2594), + [anon_sym_False] = ACTIONS(2594), + [anon_sym_false] = ACTIONS(2594), + [anon_sym_FALSE] = ACTIONS(2594), + [anon_sym_Null] = ACTIONS(2594), + [anon_sym_null] = ACTIONS(2594), + [anon_sym_NULL] = ACTIONS(2594), + [anon_sym_Undefined] = ACTIONS(2594), + [anon_sym_undefined] = ACTIONS(2594), + [anon_sym_UNDEFINED] = ACTIONS(2594), + [anon_sym_get] = ACTIONS(2594), + [anon_sym_set] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [sym_hash_empty] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2594), + [anon_sym_QueryExecute] = ACTIONS(2594), + [anon_sym_queryexecute] = ACTIONS(2594), + [anon_sym_QUERYEXECUTE] = ACTIONS(2594), + [anon_sym_queryExecute] = ACTIONS(2594), + [anon_sym_BQUOTE] = ACTIONS(2596), + [anon_sym_Abstract] = ACTIONS(2594), + [anon_sym_abstract] = ACTIONS(2594), + [anon_sym_ABSTRACT] = ACTIONS(2594), + [anon_sym_Component] = ACTIONS(2594), + [anon_sym_component] = ACTIONS(2594), + [anon_sym_COMPONENT] = ACTIONS(2594), + [anon_sym_Debugger] = ACTIONS(2594), + [anon_sym_debugger] = ACTIONS(2594), + [anon_sym_DEBUGGER] = ACTIONS(2594), + [anon_sym_Final] = ACTIONS(2594), + [anon_sym_final] = ACTIONS(2594), + [anon_sym_FINAL] = ACTIONS(2594), + [anon_sym_Function] = ACTIONS(2594), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_FUNCTION] = ACTIONS(2594), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(2594), + [anon_sym_include] = ACTIONS(2594), + [anon_sym_INCLUDE] = ACTIONS(2594), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_NEW] = ACTIONS(2594), + [anon_sym_Package] = ACTIONS(2594), + [anon_sym_package] = ACTIONS(2594), + [anon_sym_PACKAGE] = ACTIONS(2594), + [anon_sym_Private] = ACTIONS(2594), + [anon_sym_private] = ACTIONS(2594), + [anon_sym_PRIVATE] = ACTIONS(2594), + [anon_sym_Public] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2594), + [anon_sym_PUBLIC] = ACTIONS(2594), + [anon_sym_Remote] = ACTIONS(2594), + [anon_sym_remote] = ACTIONS(2594), + [anon_sym_REMOTE] = ACTIONS(2594), + [anon_sym_Static] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_STATIC] = ACTIONS(2594), + [sym__automatic_semicolon] = ACTIONS(2596), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(2596), + [sym__java_block_open] = ACTIONS(2596), + [sym__static_type_prefix] = ACTIONS(2596), }, [STATE(561)] = { - [ts_builtin_sym_end] = ACTIONS(2598), - [sym_identifier] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_Query] = ACTIONS(2600), - [anon_sym_query] = ACTIONS(2600), - [anon_sym_QUERY] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_SLASH] = ACTIONS(2600), + [sym_identifier] = ACTIONS(2598), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym_let] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym_Query] = ACTIONS(2598), + [anon_sym_query] = ACTIONS(2598), + [anon_sym_QUERY] = ACTIONS(2598), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(2598), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_SLASH] = ACTIONS(2598), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2598), - [aux_sym_unary_operator_token1] = ACTIONS(2600), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2598), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [aux_sym_unary_operator_token1] = ACTIONS(2598), + [anon_sym_PLUS_PLUS] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(2600), + [anon_sym_DQUOTE] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2598), [aux_sym_number_token2] = ACTIONS(2598), - [anon_sym_This] = ACTIONS(2600), - [anon_sym_this] = ACTIONS(2600), - [anon_sym_THIS] = ACTIONS(2600), - [anon_sym_Super] = ACTIONS(2600), - [anon_sym_super] = ACTIONS(2600), - [anon_sym_SUPER] = ACTIONS(2600), - [anon_sym_True] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_TRUE] = ACTIONS(2600), - [anon_sym_False] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_FALSE] = ACTIONS(2600), - [anon_sym_Null] = ACTIONS(2600), - [anon_sym_null] = ACTIONS(2600), - [anon_sym_NULL] = ACTIONS(2600), - [anon_sym_Undefined] = ACTIONS(2600), - [anon_sym_undefined] = ACTIONS(2600), - [anon_sym_UNDEFINED] = ACTIONS(2600), - [anon_sym_get] = ACTIONS(2600), - [anon_sym_set] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [sym_hash_empty] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2600), - [anon_sym_QueryExecute] = ACTIONS(2600), - [anon_sym_queryexecute] = ACTIONS(2600), - [anon_sym_QUERYEXECUTE] = ACTIONS(2600), - [anon_sym_queryExecute] = ACTIONS(2600), + [anon_sym_This] = ACTIONS(2598), + [anon_sym_this] = ACTIONS(2598), + [anon_sym_THIS] = ACTIONS(2598), + [anon_sym_Super] = ACTIONS(2598), + [anon_sym_super] = ACTIONS(2598), + [anon_sym_SUPER] = ACTIONS(2598), + [anon_sym_True] = ACTIONS(2598), + [anon_sym_true] = ACTIONS(2598), + [anon_sym_TRUE] = ACTIONS(2598), + [anon_sym_False] = ACTIONS(2598), + [anon_sym_false] = ACTIONS(2598), + [anon_sym_FALSE] = ACTIONS(2598), + [anon_sym_Null] = ACTIONS(2598), + [anon_sym_null] = ACTIONS(2598), + [anon_sym_NULL] = ACTIONS(2598), + [anon_sym_Undefined] = ACTIONS(2598), + [anon_sym_undefined] = ACTIONS(2598), + [anon_sym_UNDEFINED] = ACTIONS(2598), + [anon_sym_get] = ACTIONS(2598), + [anon_sym_set] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [sym_hash_empty] = ACTIONS(2600), + [anon_sym_export] = ACTIONS(2598), + [anon_sym_QueryExecute] = ACTIONS(2598), + [anon_sym_queryexecute] = ACTIONS(2598), + [anon_sym_QUERYEXECUTE] = ACTIONS(2598), + [anon_sym_queryExecute] = ACTIONS(2598), [anon_sym_BQUOTE] = ACTIONS(2600), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2598), - [anon_sym_Abstract] = ACTIONS(2600), - [anon_sym_abstract] = ACTIONS(2600), - [anon_sym_ABSTRACT] = ACTIONS(2600), - [anon_sym_Break] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_BREAK] = ACTIONS(2600), - [anon_sym_Case] = ACTIONS(2600), - [anon_sym_case] = ACTIONS(2600), - [anon_sym_CASE] = ACTIONS(2600), - [anon_sym_Component] = ACTIONS(2600), - [anon_sym_component] = ACTIONS(2600), - [anon_sym_COMPONENT] = ACTIONS(2600), - [anon_sym_Continue] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_CONTINUE] = ACTIONS(2600), - [anon_sym_Debugger] = ACTIONS(2600), - [anon_sym_debugger] = ACTIONS(2600), - [anon_sym_DEBUGGER] = ACTIONS(2600), - [anon_sym_Default] = ACTIONS(2600), - [anon_sym_default] = ACTIONS(2600), - [anon_sym_DEFAULT] = ACTIONS(2600), - [anon_sym_Do] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_DO] = ACTIONS(2600), - [anon_sym_Else] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2600), - [anon_sym_ELSE] = ACTIONS(2600), - [anon_sym_Final] = ACTIONS(2600), - [anon_sym_final] = ACTIONS(2600), - [anon_sym_FINAL] = ACTIONS(2600), - [anon_sym_For] = ACTIONS(2600), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_FOR] = ACTIONS(2600), - [anon_sym_Function] = ACTIONS(2600), - [anon_sym_function] = ACTIONS(2600), - [anon_sym_FUNCTION] = ACTIONS(2600), - [anon_sym_If] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_IF] = ACTIONS(2600), - [anon_sym_Import] = ACTIONS(2600), - [anon_sym_import] = ACTIONS(2600), - [anon_sym_IMPORT] = ACTIONS(2600), - [anon_sym_Include] = ACTIONS(2600), - [anon_sym_include] = ACTIONS(2600), - [anon_sym_INCLUDE] = ACTIONS(2600), - [anon_sym_Interface] = ACTIONS(2600), - [anon_sym_interface] = ACTIONS(2600), - [anon_sym_INTERFACE] = ACTIONS(2600), - [anon_sym_New] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_NEW] = ACTIONS(2600), - [anon_sym_Package] = ACTIONS(2600), - [anon_sym_package] = ACTIONS(2600), - [anon_sym_PACKAGE] = ACTIONS(2600), - [anon_sym_Private] = ACTIONS(2600), - [anon_sym_private] = ACTIONS(2600), - [anon_sym_PRIVATE] = ACTIONS(2600), - [anon_sym_Property] = ACTIONS(2600), - [anon_sym_property] = ACTIONS(2600), - [anon_sym_PROPERTY] = ACTIONS(2600), - [anon_sym_Public] = ACTIONS(2600), - [anon_sym_public] = ACTIONS(2600), - [anon_sym_PUBLIC] = ACTIONS(2600), - [anon_sym_Remote] = ACTIONS(2600), - [anon_sym_remote] = ACTIONS(2600), - [anon_sym_REMOTE] = ACTIONS(2600), - [anon_sym_Return] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_RETURN] = ACTIONS(2600), - [anon_sym_Static] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_STATIC] = ACTIONS(2600), - [anon_sym_Switch] = ACTIONS(2600), - [anon_sym_switch] = ACTIONS(2600), - [anon_sym_SWITCH] = ACTIONS(2600), - [anon_sym_Throw] = ACTIONS(2600), - [anon_sym_throw] = ACTIONS(2600), - [anon_sym_THROW] = ACTIONS(2600), - [anon_sym_Try] = ACTIONS(2600), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_TRY] = ACTIONS(2600), - [anon_sym_Var] = ACTIONS(2600), - [anon_sym_var] = ACTIONS(2600), - [anon_sym_VAR] = ACTIONS(2600), - [anon_sym_While] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_WHILE] = ACTIONS(2600), - [anon_sym_With] = ACTIONS(2600), - [anon_sym_with] = ACTIONS(2600), - [anon_sym_WITH] = ACTIONS(2600), - [sym__automatic_semicolon] = ACTIONS(2602), - [sym_cf_comment] = ACTIONS(2598), - [sym__java_block_open] = ACTIONS(2598), - [sym__static_type_prefix] = ACTIONS(2598), + [anon_sym_Abstract] = ACTIONS(2598), + [anon_sym_abstract] = ACTIONS(2598), + [anon_sym_ABSTRACT] = ACTIONS(2598), + [anon_sym_Component] = ACTIONS(2598), + [anon_sym_component] = ACTIONS(2598), + [anon_sym_COMPONENT] = ACTIONS(2598), + [anon_sym_Debugger] = ACTIONS(2598), + [anon_sym_debugger] = ACTIONS(2598), + [anon_sym_DEBUGGER] = ACTIONS(2598), + [anon_sym_Final] = ACTIONS(2598), + [anon_sym_final] = ACTIONS(2598), + [anon_sym_FINAL] = ACTIONS(2598), + [anon_sym_Function] = ACTIONS(2598), + [anon_sym_function] = ACTIONS(2598), + [anon_sym_FUNCTION] = ACTIONS(2598), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(2598), + [anon_sym_include] = ACTIONS(2598), + [anon_sym_INCLUDE] = ACTIONS(2598), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(2598), + [anon_sym_new] = ACTIONS(2598), + [anon_sym_NEW] = ACTIONS(2598), + [anon_sym_Package] = ACTIONS(2598), + [anon_sym_package] = ACTIONS(2598), + [anon_sym_PACKAGE] = ACTIONS(2598), + [anon_sym_Private] = ACTIONS(2598), + [anon_sym_private] = ACTIONS(2598), + [anon_sym_PRIVATE] = ACTIONS(2598), + [anon_sym_Public] = ACTIONS(2598), + [anon_sym_public] = ACTIONS(2598), + [anon_sym_PUBLIC] = ACTIONS(2598), + [anon_sym_Remote] = ACTIONS(2598), + [anon_sym_remote] = ACTIONS(2598), + [anon_sym_REMOTE] = ACTIONS(2598), + [anon_sym_Static] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_STATIC] = ACTIONS(2598), + [sym__automatic_semicolon] = ACTIONS(2600), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(2600), + [sym__java_block_open] = ACTIONS(2600), + [sym__static_type_prefix] = ACTIONS(2600), }, [STATE(562)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Else] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_ELSE] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(2604), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_Query] = ACTIONS(2604), + [anon_sym_query] = ACTIONS(2604), + [anon_sym_QUERY] = ACTIONS(2604), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [aux_sym_unary_operator_token1] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2602), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2604), + [aux_sym_number_token2] = ACTIONS(2602), + [anon_sym_This] = ACTIONS(2604), + [anon_sym_this] = ACTIONS(2604), + [anon_sym_THIS] = ACTIONS(2604), + [anon_sym_Super] = ACTIONS(2604), + [anon_sym_super] = ACTIONS(2604), + [anon_sym_SUPER] = ACTIONS(2604), + [anon_sym_True] = ACTIONS(2604), + [anon_sym_true] = ACTIONS(2604), + [anon_sym_TRUE] = ACTIONS(2604), + [anon_sym_False] = ACTIONS(2604), + [anon_sym_false] = ACTIONS(2604), + [anon_sym_FALSE] = ACTIONS(2604), + [anon_sym_Null] = ACTIONS(2604), + [anon_sym_null] = ACTIONS(2604), + [anon_sym_NULL] = ACTIONS(2604), + [anon_sym_Undefined] = ACTIONS(2604), + [anon_sym_undefined] = ACTIONS(2604), + [anon_sym_UNDEFINED] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(2604), + [sym_hash_empty] = ACTIONS(2602), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_QueryExecute] = ACTIONS(2604), + [anon_sym_queryexecute] = ACTIONS(2604), + [anon_sym_QUERYEXECUTE] = ACTIONS(2604), + [anon_sym_queryExecute] = ACTIONS(2604), + [anon_sym_BQUOTE] = ACTIONS(2604), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2602), + [anon_sym_Abstract] = ACTIONS(2604), + [anon_sym_abstract] = ACTIONS(2604), + [anon_sym_ABSTRACT] = ACTIONS(2604), + [anon_sym_Break] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_BREAK] = ACTIONS(2604), + [anon_sym_Case] = ACTIONS(2604), + [anon_sym_case] = ACTIONS(2604), + [anon_sym_CASE] = ACTIONS(2604), + [anon_sym_Component] = ACTIONS(2604), + [anon_sym_component] = ACTIONS(2604), + [anon_sym_COMPONENT] = ACTIONS(2604), + [anon_sym_Continue] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_CONTINUE] = ACTIONS(2604), + [anon_sym_Debugger] = ACTIONS(2604), + [anon_sym_debugger] = ACTIONS(2604), + [anon_sym_DEBUGGER] = ACTIONS(2604), + [anon_sym_Default] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_DEFAULT] = ACTIONS(2604), + [anon_sym_Do] = ACTIONS(2604), + [anon_sym_do] = ACTIONS(2604), + [anon_sym_DO] = ACTIONS(2604), + [anon_sym_Else] = ACTIONS(2604), + [anon_sym_else] = ACTIONS(2604), + [anon_sym_ELSE] = ACTIONS(2604), + [anon_sym_Final] = ACTIONS(2604), + [anon_sym_final] = ACTIONS(2604), + [anon_sym_FINAL] = ACTIONS(2604), + [anon_sym_For] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_FOR] = ACTIONS(2604), + [anon_sym_Function] = ACTIONS(2604), + [anon_sym_function] = ACTIONS(2604), + [anon_sym_FUNCTION] = ACTIONS(2604), + [anon_sym_If] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_IF] = ACTIONS(2604), + [anon_sym_Import] = ACTIONS(2604), + [anon_sym_import] = ACTIONS(2604), + [anon_sym_IMPORT] = ACTIONS(2604), + [anon_sym_Include] = ACTIONS(2604), + [anon_sym_include] = ACTIONS(2604), + [anon_sym_INCLUDE] = ACTIONS(2604), + [anon_sym_Interface] = ACTIONS(2604), + [anon_sym_interface] = ACTIONS(2604), + [anon_sym_INTERFACE] = ACTIONS(2604), + [anon_sym_New] = ACTIONS(2604), + [anon_sym_new] = ACTIONS(2604), + [anon_sym_NEW] = ACTIONS(2604), + [anon_sym_Package] = ACTIONS(2604), + [anon_sym_package] = ACTIONS(2604), + [anon_sym_PACKAGE] = ACTIONS(2604), + [anon_sym_Private] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_PRIVATE] = ACTIONS(2604), + [anon_sym_Property] = ACTIONS(2604), + [anon_sym_property] = ACTIONS(2604), + [anon_sym_PROPERTY] = ACTIONS(2604), + [anon_sym_Public] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_PUBLIC] = ACTIONS(2604), + [anon_sym_Remote] = ACTIONS(2604), + [anon_sym_remote] = ACTIONS(2604), + [anon_sym_REMOTE] = ACTIONS(2604), + [anon_sym_Return] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_RETURN] = ACTIONS(2604), + [anon_sym_Static] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_STATIC] = ACTIONS(2604), + [anon_sym_Switch] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2604), + [anon_sym_SWITCH] = ACTIONS(2604), + [anon_sym_Throw] = ACTIONS(2604), + [anon_sym_throw] = ACTIONS(2604), + [anon_sym_THROW] = ACTIONS(2604), + [anon_sym_Try] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [anon_sym_TRY] = ACTIONS(2604), + [anon_sym_Var] = ACTIONS(2604), + [anon_sym_var] = ACTIONS(2604), + [anon_sym_VAR] = ACTIONS(2604), + [anon_sym_While] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_WHILE] = ACTIONS(2604), + [anon_sym_With] = ACTIONS(2604), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_WITH] = ACTIONS(2604), + [sym__automatic_semicolon] = ACTIONS(2606), + [sym_cf_comment] = ACTIONS(2602), + [sym__java_block_open] = ACTIONS(2602), + [sym__static_type_prefix] = ACTIONS(2602), }, [STATE(563)] = { - [ts_builtin_sym_end] = ACTIONS(2606), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_Query] = ACTIONS(2608), - [anon_sym_query] = ACTIONS(2608), - [anon_sym_QUERY] = ACTIONS(2608), - [anon_sym_PLUS] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2606), - [aux_sym_unary_operator_token1] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2606), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2608), - [aux_sym_number_token2] = ACTIONS(2606), - [anon_sym_This] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2608), - [anon_sym_THIS] = ACTIONS(2608), - [anon_sym_Super] = ACTIONS(2608), - [anon_sym_super] = ACTIONS(2608), - [anon_sym_SUPER] = ACTIONS(2608), - [anon_sym_True] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2608), - [anon_sym_TRUE] = ACTIONS(2608), - [anon_sym_False] = ACTIONS(2608), - [anon_sym_false] = ACTIONS(2608), - [anon_sym_FALSE] = ACTIONS(2608), - [anon_sym_Null] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2608), - [anon_sym_NULL] = ACTIONS(2608), - [anon_sym_Undefined] = ACTIONS(2608), - [anon_sym_undefined] = ACTIONS(2608), - [anon_sym_UNDEFINED] = ACTIONS(2608), - [anon_sym_get] = ACTIONS(2608), - [anon_sym_set] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(2608), - [sym_hash_empty] = ACTIONS(2606), - [anon_sym_export] = ACTIONS(2608), - [anon_sym_QueryExecute] = ACTIONS(2608), - [anon_sym_queryexecute] = ACTIONS(2608), - [anon_sym_QUERYEXECUTE] = ACTIONS(2608), - [anon_sym_queryExecute] = ACTIONS(2608), - [anon_sym_BQUOTE] = ACTIONS(2608), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2606), - [anon_sym_Abstract] = ACTIONS(2608), - [anon_sym_abstract] = ACTIONS(2608), - [anon_sym_ABSTRACT] = ACTIONS(2608), - [anon_sym_Break] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_BREAK] = ACTIONS(2608), - [anon_sym_Case] = ACTIONS(2608), - [anon_sym_case] = ACTIONS(2608), - [anon_sym_CASE] = ACTIONS(2608), - [anon_sym_Component] = ACTIONS(2608), - [anon_sym_component] = ACTIONS(2608), - [anon_sym_COMPONENT] = ACTIONS(2608), - [anon_sym_Continue] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_CONTINUE] = ACTIONS(2608), - [anon_sym_Debugger] = ACTIONS(2608), - [anon_sym_debugger] = ACTIONS(2608), - [anon_sym_DEBUGGER] = ACTIONS(2608), - [anon_sym_Default] = ACTIONS(2608), - [anon_sym_default] = ACTIONS(2608), - [anon_sym_DEFAULT] = ACTIONS(2608), - [anon_sym_Do] = ACTIONS(2608), - [anon_sym_do] = ACTIONS(2608), - [anon_sym_DO] = ACTIONS(2608), - [anon_sym_Else] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2608), - [anon_sym_ELSE] = ACTIONS(2608), - [anon_sym_Final] = ACTIONS(2608), - [anon_sym_final] = ACTIONS(2608), - [anon_sym_FINAL] = ACTIONS(2608), - [anon_sym_For] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_FOR] = ACTIONS(2608), - [anon_sym_Function] = ACTIONS(2608), - [anon_sym_function] = ACTIONS(2608), - [anon_sym_FUNCTION] = ACTIONS(2608), - [anon_sym_If] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_IF] = ACTIONS(2608), - [anon_sym_Import] = ACTIONS(2608), - [anon_sym_import] = ACTIONS(2608), - [anon_sym_IMPORT] = ACTIONS(2608), - [anon_sym_Include] = ACTIONS(2608), - [anon_sym_include] = ACTIONS(2608), - [anon_sym_INCLUDE] = ACTIONS(2608), - [anon_sym_Interface] = ACTIONS(2608), - [anon_sym_interface] = ACTIONS(2608), - [anon_sym_INTERFACE] = ACTIONS(2608), - [anon_sym_New] = ACTIONS(2608), - [anon_sym_new] = ACTIONS(2608), - [anon_sym_NEW] = ACTIONS(2608), - [anon_sym_Package] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2608), - [anon_sym_PACKAGE] = ACTIONS(2608), - [anon_sym_Private] = ACTIONS(2608), - [anon_sym_private] = ACTIONS(2608), - [anon_sym_PRIVATE] = ACTIONS(2608), - [anon_sym_Property] = ACTIONS(2608), - [anon_sym_property] = ACTIONS(2608), - [anon_sym_PROPERTY] = ACTIONS(2608), - [anon_sym_Public] = ACTIONS(2608), - [anon_sym_public] = ACTIONS(2608), - [anon_sym_PUBLIC] = ACTIONS(2608), - [anon_sym_Remote] = ACTIONS(2608), - [anon_sym_remote] = ACTIONS(2608), - [anon_sym_REMOTE] = ACTIONS(2608), - [anon_sym_Return] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_RETURN] = ACTIONS(2608), - [anon_sym_Static] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2608), - [anon_sym_STATIC] = ACTIONS(2608), - [anon_sym_Switch] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2608), - [anon_sym_SWITCH] = ACTIONS(2608), - [anon_sym_Throw] = ACTIONS(2608), - [anon_sym_throw] = ACTIONS(2608), - [anon_sym_THROW] = ACTIONS(2608), - [anon_sym_Try] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2608), - [anon_sym_TRY] = ACTIONS(2608), - [anon_sym_Var] = ACTIONS(2608), - [anon_sym_var] = ACTIONS(2608), - [anon_sym_VAR] = ACTIONS(2608), - [anon_sym_While] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_WHILE] = ACTIONS(2608), - [anon_sym_With] = ACTIONS(2608), - [anon_sym_with] = ACTIONS(2608), - [anon_sym_WITH] = ACTIONS(2608), - [sym__automatic_semicolon] = ACTIONS(2610), - [sym_cf_comment] = ACTIONS(2606), - [sym__java_block_open] = ACTIONS(2606), - [sym__static_type_prefix] = ACTIONS(2606), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_Query] = ACTIONS(2610), + [anon_sym_query] = ACTIONS(2610), + [anon_sym_QUERY] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_SLASH] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2608), + [anon_sym_TILDE] = ACTIONS(2608), + [aux_sym_unary_operator_token1] = ACTIONS(2610), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2608), + [anon_sym_SQUOTE] = ACTIONS(2608), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2610), + [aux_sym_number_token2] = ACTIONS(2608), + [anon_sym_This] = ACTIONS(2610), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_THIS] = ACTIONS(2610), + [anon_sym_Super] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2610), + [anon_sym_SUPER] = ACTIONS(2610), + [anon_sym_True] = ACTIONS(2610), + [anon_sym_true] = ACTIONS(2610), + [anon_sym_TRUE] = ACTIONS(2610), + [anon_sym_False] = ACTIONS(2610), + [anon_sym_false] = ACTIONS(2610), + [anon_sym_FALSE] = ACTIONS(2610), + [anon_sym_Null] = ACTIONS(2610), + [anon_sym_null] = ACTIONS(2610), + [anon_sym_NULL] = ACTIONS(2610), + [anon_sym_Undefined] = ACTIONS(2610), + [anon_sym_undefined] = ACTIONS(2610), + [anon_sym_UNDEFINED] = ACTIONS(2610), + [anon_sym_get] = ACTIONS(2610), + [anon_sym_set] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(2610), + [sym_hash_empty] = ACTIONS(2608), + [anon_sym_export] = ACTIONS(2610), + [anon_sym_QueryExecute] = ACTIONS(2610), + [anon_sym_queryexecute] = ACTIONS(2610), + [anon_sym_QUERYEXECUTE] = ACTIONS(2610), + [anon_sym_queryExecute] = ACTIONS(2610), + [anon_sym_BQUOTE] = ACTIONS(2610), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2608), + [anon_sym_Abstract] = ACTIONS(2610), + [anon_sym_abstract] = ACTIONS(2610), + [anon_sym_ABSTRACT] = ACTIONS(2610), + [anon_sym_Break] = ACTIONS(2610), + [anon_sym_break] = ACTIONS(2610), + [anon_sym_BREAK] = ACTIONS(2610), + [anon_sym_Case] = ACTIONS(2610), + [anon_sym_case] = ACTIONS(2610), + [anon_sym_CASE] = ACTIONS(2610), + [anon_sym_Component] = ACTIONS(2610), + [anon_sym_component] = ACTIONS(2610), + [anon_sym_COMPONENT] = ACTIONS(2610), + [anon_sym_Continue] = ACTIONS(2610), + [anon_sym_continue] = ACTIONS(2610), + [anon_sym_CONTINUE] = ACTIONS(2610), + [anon_sym_Debugger] = ACTIONS(2610), + [anon_sym_debugger] = ACTIONS(2610), + [anon_sym_DEBUGGER] = ACTIONS(2610), + [anon_sym_Default] = ACTIONS(2610), + [anon_sym_default] = ACTIONS(2610), + [anon_sym_DEFAULT] = ACTIONS(2610), + [anon_sym_Do] = ACTIONS(2610), + [anon_sym_do] = ACTIONS(2610), + [anon_sym_DO] = ACTIONS(2610), + [anon_sym_Else] = ACTIONS(2610), + [anon_sym_else] = ACTIONS(2610), + [anon_sym_ELSE] = ACTIONS(2610), + [anon_sym_Final] = ACTIONS(2610), + [anon_sym_final] = ACTIONS(2610), + [anon_sym_FINAL] = ACTIONS(2610), + [anon_sym_For] = ACTIONS(2610), + [anon_sym_for] = ACTIONS(2610), + [anon_sym_FOR] = ACTIONS(2610), + [anon_sym_Function] = ACTIONS(2610), + [anon_sym_function] = ACTIONS(2610), + [anon_sym_FUNCTION] = ACTIONS(2610), + [anon_sym_If] = ACTIONS(2610), + [anon_sym_if] = ACTIONS(2610), + [anon_sym_IF] = ACTIONS(2610), + [anon_sym_Import] = ACTIONS(2610), + [anon_sym_import] = ACTIONS(2610), + [anon_sym_IMPORT] = ACTIONS(2610), + [anon_sym_Include] = ACTIONS(2610), + [anon_sym_include] = ACTIONS(2610), + [anon_sym_INCLUDE] = ACTIONS(2610), + [anon_sym_Interface] = ACTIONS(2610), + [anon_sym_interface] = ACTIONS(2610), + [anon_sym_INTERFACE] = ACTIONS(2610), + [anon_sym_New] = ACTIONS(2610), + [anon_sym_new] = ACTIONS(2610), + [anon_sym_NEW] = ACTIONS(2610), + [anon_sym_Package] = ACTIONS(2610), + [anon_sym_package] = ACTIONS(2610), + [anon_sym_PACKAGE] = ACTIONS(2610), + [anon_sym_Private] = ACTIONS(2610), + [anon_sym_private] = ACTIONS(2610), + [anon_sym_PRIVATE] = ACTIONS(2610), + [anon_sym_Property] = ACTIONS(2610), + [anon_sym_property] = ACTIONS(2610), + [anon_sym_PROPERTY] = ACTIONS(2610), + [anon_sym_Public] = ACTIONS(2610), + [anon_sym_public] = ACTIONS(2610), + [anon_sym_PUBLIC] = ACTIONS(2610), + [anon_sym_Remote] = ACTIONS(2610), + [anon_sym_remote] = ACTIONS(2610), + [anon_sym_REMOTE] = ACTIONS(2610), + [anon_sym_Return] = ACTIONS(2610), + [anon_sym_return] = ACTIONS(2610), + [anon_sym_RETURN] = ACTIONS(2610), + [anon_sym_Static] = ACTIONS(2610), + [anon_sym_static] = ACTIONS(2610), + [anon_sym_STATIC] = ACTIONS(2610), + [anon_sym_Switch] = ACTIONS(2610), + [anon_sym_switch] = ACTIONS(2610), + [anon_sym_SWITCH] = ACTIONS(2610), + [anon_sym_Throw] = ACTIONS(2610), + [anon_sym_throw] = ACTIONS(2610), + [anon_sym_THROW] = ACTIONS(2610), + [anon_sym_Try] = ACTIONS(2610), + [anon_sym_try] = ACTIONS(2610), + [anon_sym_TRY] = ACTIONS(2610), + [anon_sym_Var] = ACTIONS(2610), + [anon_sym_var] = ACTIONS(2610), + [anon_sym_VAR] = ACTIONS(2610), + [anon_sym_While] = ACTIONS(2610), + [anon_sym_while] = ACTIONS(2610), + [anon_sym_WHILE] = ACTIONS(2610), + [anon_sym_With] = ACTIONS(2610), + [anon_sym_with] = ACTIONS(2610), + [anon_sym_WITH] = ACTIONS(2610), + [sym__automatic_semicolon] = ACTIONS(2612), + [sym_cf_comment] = ACTIONS(2608), + [sym__java_block_open] = ACTIONS(2608), + [sym__static_type_prefix] = ACTIONS(2608), }, [STATE(564)] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_Query] = ACTIONS(1702), - [anon_sym_query] = ACTIONS(1702), - [anon_sym_QUERY] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_TILDE] = ACTIONS(1700), - [aux_sym_unary_operator_token1] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1702), - [aux_sym_number_token2] = ACTIONS(1700), - [anon_sym_This] = ACTIONS(1702), - [anon_sym_this] = ACTIONS(1702), - [anon_sym_THIS] = ACTIONS(1702), - [anon_sym_Super] = ACTIONS(1702), - [anon_sym_super] = ACTIONS(1702), - [anon_sym_SUPER] = ACTIONS(1702), - [anon_sym_True] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_TRUE] = ACTIONS(1702), - [anon_sym_False] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [anon_sym_FALSE] = ACTIONS(1702), - [anon_sym_Null] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1702), - [anon_sym_NULL] = ACTIONS(1702), - [anon_sym_Undefined] = ACTIONS(1702), - [anon_sym_undefined] = ACTIONS(1702), - [anon_sym_UNDEFINED] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [sym_hash_empty] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_QueryExecute] = ACTIONS(1702), - [anon_sym_queryexecute] = ACTIONS(1702), - [anon_sym_QUERYEXECUTE] = ACTIONS(1702), - [anon_sym_queryExecute] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1700), - [anon_sym_Abstract] = ACTIONS(1702), - [anon_sym_abstract] = ACTIONS(1702), - [anon_sym_ABSTRACT] = ACTIONS(1702), - [anon_sym_Break] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_BREAK] = ACTIONS(1702), - [anon_sym_Case] = ACTIONS(1702), - [anon_sym_case] = ACTIONS(1702), - [anon_sym_CASE] = ACTIONS(1702), - [anon_sym_Component] = ACTIONS(1702), - [anon_sym_component] = ACTIONS(1702), - [anon_sym_COMPONENT] = ACTIONS(1702), - [anon_sym_Continue] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_CONTINUE] = ACTIONS(1702), - [anon_sym_Debugger] = ACTIONS(1702), - [anon_sym_debugger] = ACTIONS(1702), - [anon_sym_DEBUGGER] = ACTIONS(1702), - [anon_sym_Default] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_DEFAULT] = ACTIONS(1702), - [anon_sym_Do] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_DO] = ACTIONS(1702), - [anon_sym_Else] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1702), - [anon_sym_ELSE] = ACTIONS(1702), - [anon_sym_Final] = ACTIONS(1702), - [anon_sym_final] = ACTIONS(1702), - [anon_sym_FINAL] = ACTIONS(1702), - [anon_sym_For] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_FOR] = ACTIONS(1702), - [anon_sym_Function] = ACTIONS(1702), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_FUNCTION] = ACTIONS(1702), - [anon_sym_If] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_IF] = ACTIONS(1702), - [anon_sym_Import] = ACTIONS(1702), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_IMPORT] = ACTIONS(1702), - [anon_sym_Include] = ACTIONS(1702), - [anon_sym_include] = ACTIONS(1702), - [anon_sym_INCLUDE] = ACTIONS(1702), - [anon_sym_Interface] = ACTIONS(1702), - [anon_sym_interface] = ACTIONS(1702), - [anon_sym_INTERFACE] = ACTIONS(1702), - [anon_sym_New] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_NEW] = ACTIONS(1702), - [anon_sym_Package] = ACTIONS(1702), - [anon_sym_package] = ACTIONS(1702), - [anon_sym_PACKAGE] = ACTIONS(1702), - [anon_sym_Private] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_PRIVATE] = ACTIONS(1702), - [anon_sym_Property] = ACTIONS(1702), - [anon_sym_property] = ACTIONS(1702), - [anon_sym_PROPERTY] = ACTIONS(1702), - [anon_sym_Public] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_PUBLIC] = ACTIONS(1702), - [anon_sym_Remote] = ACTIONS(1702), - [anon_sym_remote] = ACTIONS(1702), - [anon_sym_REMOTE] = ACTIONS(1702), - [anon_sym_Return] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_RETURN] = ACTIONS(1702), - [anon_sym_Static] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_STATIC] = ACTIONS(1702), - [anon_sym_Switch] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_SWITCH] = ACTIONS(1702), - [anon_sym_Throw] = ACTIONS(1702), - [anon_sym_throw] = ACTIONS(1702), - [anon_sym_THROW] = ACTIONS(1702), - [anon_sym_Try] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_TRY] = ACTIONS(1702), - [anon_sym_Var] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_VAR] = ACTIONS(1702), - [anon_sym_While] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_WHILE] = ACTIONS(1702), - [anon_sym_With] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_WITH] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(1704), - [sym_cf_comment] = ACTIONS(1700), - [sym__java_block_open] = ACTIONS(1700), - [sym__static_type_prefix] = ACTIONS(1700), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_let] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_Query] = ACTIONS(2616), + [anon_sym_query] = ACTIONS(2616), + [anon_sym_QUERY] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_TILDE] = ACTIONS(2614), + [aux_sym_unary_operator_token1] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_DQUOTE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2614), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2616), + [aux_sym_number_token2] = ACTIONS(2614), + [anon_sym_This] = ACTIONS(2616), + [anon_sym_this] = ACTIONS(2616), + [anon_sym_THIS] = ACTIONS(2616), + [anon_sym_Super] = ACTIONS(2616), + [anon_sym_super] = ACTIONS(2616), + [anon_sym_SUPER] = ACTIONS(2616), + [anon_sym_True] = ACTIONS(2616), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_TRUE] = ACTIONS(2616), + [anon_sym_False] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [anon_sym_FALSE] = ACTIONS(2616), + [anon_sym_Null] = ACTIONS(2616), + [anon_sym_null] = ACTIONS(2616), + [anon_sym_NULL] = ACTIONS(2616), + [anon_sym_Undefined] = ACTIONS(2616), + [anon_sym_undefined] = ACTIONS(2616), + [anon_sym_UNDEFINED] = ACTIONS(2616), + [anon_sym_get] = ACTIONS(2616), + [anon_sym_set] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [sym_hash_empty] = ACTIONS(2614), + [anon_sym_export] = ACTIONS(2616), + [anon_sym_QueryExecute] = ACTIONS(2616), + [anon_sym_queryexecute] = ACTIONS(2616), + [anon_sym_QUERYEXECUTE] = ACTIONS(2616), + [anon_sym_queryExecute] = ACTIONS(2616), + [anon_sym_BQUOTE] = ACTIONS(2616), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2614), + [anon_sym_Abstract] = ACTIONS(2616), + [anon_sym_abstract] = ACTIONS(2616), + [anon_sym_ABSTRACT] = ACTIONS(2616), + [anon_sym_Break] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_BREAK] = ACTIONS(2616), + [anon_sym_Case] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_CASE] = ACTIONS(2616), + [anon_sym_Component] = ACTIONS(2616), + [anon_sym_component] = ACTIONS(2616), + [anon_sym_COMPONENT] = ACTIONS(2616), + [anon_sym_Continue] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_CONTINUE] = ACTIONS(2616), + [anon_sym_Debugger] = ACTIONS(2616), + [anon_sym_debugger] = ACTIONS(2616), + [anon_sym_DEBUGGER] = ACTIONS(2616), + [anon_sym_Default] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_DEFAULT] = ACTIONS(2616), + [anon_sym_Do] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_DO] = ACTIONS(2616), + [anon_sym_Else] = ACTIONS(2616), + [anon_sym_else] = ACTIONS(2616), + [anon_sym_ELSE] = ACTIONS(2616), + [anon_sym_Final] = ACTIONS(2616), + [anon_sym_final] = ACTIONS(2616), + [anon_sym_FINAL] = ACTIONS(2616), + [anon_sym_For] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_FOR] = ACTIONS(2616), + [anon_sym_Function] = ACTIONS(2616), + [anon_sym_function] = ACTIONS(2616), + [anon_sym_FUNCTION] = ACTIONS(2616), + [anon_sym_If] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_IF] = ACTIONS(2616), + [anon_sym_Import] = ACTIONS(2616), + [anon_sym_import] = ACTIONS(2616), + [anon_sym_IMPORT] = ACTIONS(2616), + [anon_sym_Include] = ACTIONS(2616), + [anon_sym_include] = ACTIONS(2616), + [anon_sym_INCLUDE] = ACTIONS(2616), + [anon_sym_Interface] = ACTIONS(2616), + [anon_sym_interface] = ACTIONS(2616), + [anon_sym_INTERFACE] = ACTIONS(2616), + [anon_sym_New] = ACTIONS(2616), + [anon_sym_new] = ACTIONS(2616), + [anon_sym_NEW] = ACTIONS(2616), + [anon_sym_Package] = ACTIONS(2616), + [anon_sym_package] = ACTIONS(2616), + [anon_sym_PACKAGE] = ACTIONS(2616), + [anon_sym_Private] = ACTIONS(2616), + [anon_sym_private] = ACTIONS(2616), + [anon_sym_PRIVATE] = ACTIONS(2616), + [anon_sym_Property] = ACTIONS(2616), + [anon_sym_property] = ACTIONS(2616), + [anon_sym_PROPERTY] = ACTIONS(2616), + [anon_sym_Public] = ACTIONS(2616), + [anon_sym_public] = ACTIONS(2616), + [anon_sym_PUBLIC] = ACTIONS(2616), + [anon_sym_Remote] = ACTIONS(2616), + [anon_sym_remote] = ACTIONS(2616), + [anon_sym_REMOTE] = ACTIONS(2616), + [anon_sym_Return] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_RETURN] = ACTIONS(2616), + [anon_sym_Static] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_STATIC] = ACTIONS(2616), + [anon_sym_Switch] = ACTIONS(2616), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_SWITCH] = ACTIONS(2616), + [anon_sym_Throw] = ACTIONS(2616), + [anon_sym_throw] = ACTIONS(2616), + [anon_sym_THROW] = ACTIONS(2616), + [anon_sym_Try] = ACTIONS(2616), + [anon_sym_try] = ACTIONS(2616), + [anon_sym_TRY] = ACTIONS(2616), + [anon_sym_Var] = ACTIONS(2616), + [anon_sym_var] = ACTIONS(2616), + [anon_sym_VAR] = ACTIONS(2616), + [anon_sym_While] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_WHILE] = ACTIONS(2616), + [anon_sym_With] = ACTIONS(2616), + [anon_sym_with] = ACTIONS(2616), + [anon_sym_WITH] = ACTIONS(2616), + [sym__automatic_semicolon] = ACTIONS(2618), + [sym_cf_comment] = ACTIONS(2614), + [sym__java_block_open] = ACTIONS(2614), + [sym__static_type_prefix] = ACTIONS(2614), }, [STATE(565)] = { - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_identifier] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_Query] = ACTIONS(2614), - [anon_sym_query] = ACTIONS(2614), - [anon_sym_QUERY] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [aux_sym_unary_operator_token1] = ACTIONS(2614), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2614), - [aux_sym_number_token2] = ACTIONS(2612), - [anon_sym_This] = ACTIONS(2614), - [anon_sym_this] = ACTIONS(2614), - [anon_sym_THIS] = ACTIONS(2614), - [anon_sym_Super] = ACTIONS(2614), - [anon_sym_super] = ACTIONS(2614), - [anon_sym_SUPER] = ACTIONS(2614), - [anon_sym_True] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_TRUE] = ACTIONS(2614), - [anon_sym_False] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_FALSE] = ACTIONS(2614), - [anon_sym_Null] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2614), - [anon_sym_NULL] = ACTIONS(2614), - [anon_sym_Undefined] = ACTIONS(2614), - [anon_sym_undefined] = ACTIONS(2614), - [anon_sym_UNDEFINED] = ACTIONS(2614), - [anon_sym_get] = ACTIONS(2614), - [anon_sym_set] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [sym_hash_empty] = ACTIONS(2612), - [anon_sym_export] = ACTIONS(2614), - [anon_sym_QueryExecute] = ACTIONS(2614), - [anon_sym_queryexecute] = ACTIONS(2614), - [anon_sym_QUERYEXECUTE] = ACTIONS(2614), - [anon_sym_queryExecute] = ACTIONS(2614), - [anon_sym_BQUOTE] = ACTIONS(2614), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2612), - [anon_sym_Abstract] = ACTIONS(2614), - [anon_sym_abstract] = ACTIONS(2614), - [anon_sym_ABSTRACT] = ACTIONS(2614), - [anon_sym_Break] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_BREAK] = ACTIONS(2614), - [anon_sym_Case] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_CASE] = ACTIONS(2614), - [anon_sym_Component] = ACTIONS(2614), - [anon_sym_component] = ACTIONS(2614), - [anon_sym_COMPONENT] = ACTIONS(2614), - [anon_sym_Continue] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_CONTINUE] = ACTIONS(2614), - [anon_sym_Debugger] = ACTIONS(2614), - [anon_sym_debugger] = ACTIONS(2614), - [anon_sym_DEBUGGER] = ACTIONS(2614), - [anon_sym_Default] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_DEFAULT] = ACTIONS(2614), - [anon_sym_Do] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_DO] = ACTIONS(2614), - [anon_sym_Else] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_ELSE] = ACTIONS(2614), - [anon_sym_Final] = ACTIONS(2614), - [anon_sym_final] = ACTIONS(2614), - [anon_sym_FINAL] = ACTIONS(2614), - [anon_sym_For] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_FOR] = ACTIONS(2614), - [anon_sym_Function] = ACTIONS(2614), - [anon_sym_function] = ACTIONS(2614), - [anon_sym_FUNCTION] = ACTIONS(2614), - [anon_sym_If] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_IF] = ACTIONS(2614), - [anon_sym_Import] = ACTIONS(2614), - [anon_sym_import] = ACTIONS(2614), - [anon_sym_IMPORT] = ACTIONS(2614), - [anon_sym_Include] = ACTIONS(2614), - [anon_sym_include] = ACTIONS(2614), - [anon_sym_INCLUDE] = ACTIONS(2614), - [anon_sym_Interface] = ACTIONS(2614), - [anon_sym_interface] = ACTIONS(2614), - [anon_sym_INTERFACE] = ACTIONS(2614), - [anon_sym_New] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_NEW] = ACTIONS(2614), - [anon_sym_Package] = ACTIONS(2614), - [anon_sym_package] = ACTIONS(2614), - [anon_sym_PACKAGE] = ACTIONS(2614), - [anon_sym_Private] = ACTIONS(2614), - [anon_sym_private] = ACTIONS(2614), - [anon_sym_PRIVATE] = ACTIONS(2614), - [anon_sym_Property] = ACTIONS(2614), - [anon_sym_property] = ACTIONS(2614), - [anon_sym_PROPERTY] = ACTIONS(2614), - [anon_sym_Public] = ACTIONS(2614), - [anon_sym_public] = ACTIONS(2614), - [anon_sym_PUBLIC] = ACTIONS(2614), - [anon_sym_Remote] = ACTIONS(2614), - [anon_sym_remote] = ACTIONS(2614), - [anon_sym_REMOTE] = ACTIONS(2614), - [anon_sym_Return] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_RETURN] = ACTIONS(2614), - [anon_sym_Static] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_STATIC] = ACTIONS(2614), - [anon_sym_Switch] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_SWITCH] = ACTIONS(2614), - [anon_sym_Throw] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_THROW] = ACTIONS(2614), - [anon_sym_Try] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_TRY] = ACTIONS(2614), - [anon_sym_Var] = ACTIONS(2614), - [anon_sym_var] = ACTIONS(2614), - [anon_sym_VAR] = ACTIONS(2614), - [anon_sym_While] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_WHILE] = ACTIONS(2614), - [anon_sym_With] = ACTIONS(2614), - [anon_sym_with] = ACTIONS(2614), - [anon_sym_WITH] = ACTIONS(2614), - [sym__automatic_semicolon] = ACTIONS(2616), - [sym_cf_comment] = ACTIONS(2612), - [sym__java_block_open] = ACTIONS(2612), - [sym__static_type_prefix] = ACTIONS(2612), + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1083), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Else] = ACTIONS(1085), + [anon_sym_else] = ACTIONS(1085), + [anon_sym_ELSE] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1694), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), }, [STATE(566)] = { - [ts_builtin_sym_end] = ACTIONS(2618), - [sym_identifier] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_Query] = ACTIONS(2620), - [anon_sym_query] = ACTIONS(2620), - [anon_sym_QUERY] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_BANG] = ACTIONS(2618), - [anon_sym_TILDE] = ACTIONS(2618), - [aux_sym_unary_operator_token1] = ACTIONS(2620), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_DQUOTE] = ACTIONS(2618), - [anon_sym_SQUOTE] = ACTIONS(2618), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2620), - [aux_sym_number_token2] = ACTIONS(2618), - [anon_sym_This] = ACTIONS(2620), - [anon_sym_this] = ACTIONS(2620), - [anon_sym_THIS] = ACTIONS(2620), - [anon_sym_Super] = ACTIONS(2620), - [anon_sym_super] = ACTIONS(2620), - [anon_sym_SUPER] = ACTIONS(2620), - [anon_sym_True] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2620), - [anon_sym_TRUE] = ACTIONS(2620), - [anon_sym_False] = ACTIONS(2620), - [anon_sym_false] = ACTIONS(2620), - [anon_sym_FALSE] = ACTIONS(2620), - [anon_sym_Null] = ACTIONS(2620), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_NULL] = ACTIONS(2620), - [anon_sym_Undefined] = ACTIONS(2620), - [anon_sym_undefined] = ACTIONS(2620), - [anon_sym_UNDEFINED] = ACTIONS(2620), - [anon_sym_get] = ACTIONS(2620), - [anon_sym_set] = ACTIONS(2620), - [anon_sym_POUND] = ACTIONS(2620), - [sym_hash_empty] = ACTIONS(2618), - [anon_sym_export] = ACTIONS(2620), - [anon_sym_QueryExecute] = ACTIONS(2620), - [anon_sym_queryexecute] = ACTIONS(2620), - [anon_sym_QUERYEXECUTE] = ACTIONS(2620), - [anon_sym_queryExecute] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2620), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2618), - [anon_sym_Abstract] = ACTIONS(2620), - [anon_sym_abstract] = ACTIONS(2620), - [anon_sym_ABSTRACT] = ACTIONS(2620), - [anon_sym_Break] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2620), - [anon_sym_BREAK] = ACTIONS(2620), - [anon_sym_Case] = ACTIONS(2620), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_CASE] = ACTIONS(2620), - [anon_sym_Component] = ACTIONS(2620), - [anon_sym_component] = ACTIONS(2620), - [anon_sym_COMPONENT] = ACTIONS(2620), - [anon_sym_Continue] = ACTIONS(2620), - [anon_sym_continue] = ACTIONS(2620), - [anon_sym_CONTINUE] = ACTIONS(2620), - [anon_sym_Debugger] = ACTIONS(2620), - [anon_sym_debugger] = ACTIONS(2620), - [anon_sym_DEBUGGER] = ACTIONS(2620), - [anon_sym_Default] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_DEFAULT] = ACTIONS(2620), - [anon_sym_Do] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_DO] = ACTIONS(2620), - [anon_sym_Else] = ACTIONS(2620), - [anon_sym_else] = ACTIONS(2620), - [anon_sym_ELSE] = ACTIONS(2620), - [anon_sym_Final] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_FINAL] = ACTIONS(2620), - [anon_sym_For] = ACTIONS(2620), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_FOR] = ACTIONS(2620), - [anon_sym_Function] = ACTIONS(2620), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_FUNCTION] = ACTIONS(2620), - [anon_sym_If] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_IF] = ACTIONS(2620), - [anon_sym_Import] = ACTIONS(2620), - [anon_sym_import] = ACTIONS(2620), - [anon_sym_IMPORT] = ACTIONS(2620), - [anon_sym_Include] = ACTIONS(2620), - [anon_sym_include] = ACTIONS(2620), - [anon_sym_INCLUDE] = ACTIONS(2620), - [anon_sym_Interface] = ACTIONS(2620), - [anon_sym_interface] = ACTIONS(2620), - [anon_sym_INTERFACE] = ACTIONS(2620), - [anon_sym_New] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_NEW] = ACTIONS(2620), - [anon_sym_Package] = ACTIONS(2620), - [anon_sym_package] = ACTIONS(2620), - [anon_sym_PACKAGE] = ACTIONS(2620), - [anon_sym_Private] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_PRIVATE] = ACTIONS(2620), - [anon_sym_Property] = ACTIONS(2620), - [anon_sym_property] = ACTIONS(2620), - [anon_sym_PROPERTY] = ACTIONS(2620), - [anon_sym_Public] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_PUBLIC] = ACTIONS(2620), - [anon_sym_Remote] = ACTIONS(2620), - [anon_sym_remote] = ACTIONS(2620), - [anon_sym_REMOTE] = ACTIONS(2620), - [anon_sym_Return] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_RETURN] = ACTIONS(2620), - [anon_sym_Static] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_STATIC] = ACTIONS(2620), - [anon_sym_Switch] = ACTIONS(2620), - [anon_sym_switch] = ACTIONS(2620), - [anon_sym_SWITCH] = ACTIONS(2620), - [anon_sym_Throw] = ACTIONS(2620), - [anon_sym_throw] = ACTIONS(2620), - [anon_sym_THROW] = ACTIONS(2620), - [anon_sym_Try] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_TRY] = ACTIONS(2620), - [anon_sym_Var] = ACTIONS(2620), - [anon_sym_var] = ACTIONS(2620), - [anon_sym_VAR] = ACTIONS(2620), - [anon_sym_While] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_WHILE] = ACTIONS(2620), - [anon_sym_With] = ACTIONS(2620), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_WITH] = ACTIONS(2620), - [sym__automatic_semicolon] = ACTIONS(2622), - [sym_cf_comment] = ACTIONS(2618), - [sym__java_block_open] = ACTIONS(2618), - [sym__static_type_prefix] = ACTIONS(2618), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Else] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_ELSE] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(2620), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, [STATE(567)] = { - [sym_else_clause] = STATE(828), - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_Query] = ACTIONS(2626), - [anon_sym_query] = ACTIONS(2626), - [anon_sym_QUERY] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [aux_sym_unary_operator_token1] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2626), - [aux_sym_number_token2] = ACTIONS(2624), - [anon_sym_This] = ACTIONS(2626), - [anon_sym_this] = ACTIONS(2626), - [anon_sym_THIS] = ACTIONS(2626), - [anon_sym_Super] = ACTIONS(2626), - [anon_sym_super] = ACTIONS(2626), - [anon_sym_SUPER] = ACTIONS(2626), - [anon_sym_True] = ACTIONS(2626), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_TRUE] = ACTIONS(2626), - [anon_sym_False] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_FALSE] = ACTIONS(2626), - [anon_sym_Null] = ACTIONS(2626), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_NULL] = ACTIONS(2626), - [anon_sym_Undefined] = ACTIONS(2626), - [anon_sym_undefined] = ACTIONS(2626), - [anon_sym_UNDEFINED] = ACTIONS(2626), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [sym_hash_empty] = ACTIONS(2624), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_QueryExecute] = ACTIONS(2626), - [anon_sym_queryexecute] = ACTIONS(2626), - [anon_sym_QUERYEXECUTE] = ACTIONS(2626), - [anon_sym_queryExecute] = ACTIONS(2626), - [anon_sym_BQUOTE] = ACTIONS(2626), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2624), - [anon_sym_Abstract] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_ABSTRACT] = ACTIONS(2626), - [anon_sym_Break] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_BREAK] = ACTIONS(2626), - [anon_sym_Case] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_CASE] = ACTIONS(2626), - [anon_sym_Component] = ACTIONS(2626), - [anon_sym_component] = ACTIONS(2626), - [anon_sym_COMPONENT] = ACTIONS(2626), - [anon_sym_Continue] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_CONTINUE] = ACTIONS(2626), - [anon_sym_Debugger] = ACTIONS(2626), - [anon_sym_debugger] = ACTIONS(2626), - [anon_sym_DEBUGGER] = ACTIONS(2626), - [anon_sym_Default] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_DEFAULT] = ACTIONS(2626), - [anon_sym_Do] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_DO] = ACTIONS(2626), - [anon_sym_Else] = ACTIONS(2628), - [anon_sym_else] = ACTIONS(2628), - [anon_sym_ELSE] = ACTIONS(2628), - [anon_sym_Final] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_FINAL] = ACTIONS(2626), - [anon_sym_For] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_FOR] = ACTIONS(2626), - [anon_sym_Function] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_FUNCTION] = ACTIONS(2626), - [anon_sym_If] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_IF] = ACTIONS(2626), - [anon_sym_Import] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_IMPORT] = ACTIONS(2626), - [anon_sym_Include] = ACTIONS(2626), - [anon_sym_include] = ACTIONS(2626), - [anon_sym_INCLUDE] = ACTIONS(2626), - [anon_sym_Interface] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_INTERFACE] = ACTIONS(2626), - [anon_sym_New] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_NEW] = ACTIONS(2626), - [anon_sym_Package] = ACTIONS(2626), - [anon_sym_package] = ACTIONS(2626), - [anon_sym_PACKAGE] = ACTIONS(2626), - [anon_sym_Private] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_PRIVATE] = ACTIONS(2626), - [anon_sym_Property] = ACTIONS(2626), - [anon_sym_property] = ACTIONS(2626), - [anon_sym_PROPERTY] = ACTIONS(2626), - [anon_sym_Public] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_PUBLIC] = ACTIONS(2626), - [anon_sym_Remote] = ACTIONS(2626), - [anon_sym_remote] = ACTIONS(2626), - [anon_sym_REMOTE] = ACTIONS(2626), - [anon_sym_Return] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_RETURN] = ACTIONS(2626), - [anon_sym_Static] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_STATIC] = ACTIONS(2626), - [anon_sym_Switch] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_SWITCH] = ACTIONS(2626), - [anon_sym_Throw] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_THROW] = ACTIONS(2626), - [anon_sym_Try] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_TRY] = ACTIONS(2626), - [anon_sym_Var] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_VAR] = ACTIONS(2626), - [anon_sym_While] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_WHILE] = ACTIONS(2626), - [anon_sym_With] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_WITH] = ACTIONS(2626), - [sym_cf_comment] = ACTIONS(2624), - [sym__java_block_open] = ACTIONS(2624), - [sym__static_type_prefix] = ACTIONS(2624), + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_let] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_Query] = ACTIONS(2624), + [anon_sym_query] = ACTIONS(2624), + [anon_sym_QUERY] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_SLASH] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2622), + [aux_sym_unary_operator_token1] = ACTIONS(2624), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_DQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2624), + [aux_sym_number_token2] = ACTIONS(2622), + [anon_sym_This] = ACTIONS(2624), + [anon_sym_this] = ACTIONS(2624), + [anon_sym_THIS] = ACTIONS(2624), + [anon_sym_Super] = ACTIONS(2624), + [anon_sym_super] = ACTIONS(2624), + [anon_sym_SUPER] = ACTIONS(2624), + [anon_sym_True] = ACTIONS(2624), + [anon_sym_true] = ACTIONS(2624), + [anon_sym_TRUE] = ACTIONS(2624), + [anon_sym_False] = ACTIONS(2624), + [anon_sym_false] = ACTIONS(2624), + [anon_sym_FALSE] = ACTIONS(2624), + [anon_sym_Null] = ACTIONS(2624), + [anon_sym_null] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_Undefined] = ACTIONS(2624), + [anon_sym_undefined] = ACTIONS(2624), + [anon_sym_UNDEFINED] = ACTIONS(2624), + [anon_sym_get] = ACTIONS(2624), + [anon_sym_set] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(2624), + [sym_hash_empty] = ACTIONS(2622), + [anon_sym_export] = ACTIONS(2624), + [anon_sym_QueryExecute] = ACTIONS(2624), + [anon_sym_queryexecute] = ACTIONS(2624), + [anon_sym_QUERYEXECUTE] = ACTIONS(2624), + [anon_sym_queryExecute] = ACTIONS(2624), + [anon_sym_BQUOTE] = ACTIONS(2624), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2622), + [anon_sym_Abstract] = ACTIONS(2624), + [anon_sym_abstract] = ACTIONS(2624), + [anon_sym_ABSTRACT] = ACTIONS(2624), + [anon_sym_Break] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_BREAK] = ACTIONS(2624), + [anon_sym_Case] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_CASE] = ACTIONS(2624), + [anon_sym_Component] = ACTIONS(2624), + [anon_sym_component] = ACTIONS(2624), + [anon_sym_COMPONENT] = ACTIONS(2624), + [anon_sym_Continue] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_CONTINUE] = ACTIONS(2624), + [anon_sym_Debugger] = ACTIONS(2624), + [anon_sym_debugger] = ACTIONS(2624), + [anon_sym_DEBUGGER] = ACTIONS(2624), + [anon_sym_Default] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_DEFAULT] = ACTIONS(2624), + [anon_sym_Do] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_DO] = ACTIONS(2624), + [anon_sym_Else] = ACTIONS(2624), + [anon_sym_else] = ACTIONS(2624), + [anon_sym_ELSE] = ACTIONS(2624), + [anon_sym_Final] = ACTIONS(2624), + [anon_sym_final] = ACTIONS(2624), + [anon_sym_FINAL] = ACTIONS(2624), + [anon_sym_For] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_FOR] = ACTIONS(2624), + [anon_sym_Function] = ACTIONS(2624), + [anon_sym_function] = ACTIONS(2624), + [anon_sym_FUNCTION] = ACTIONS(2624), + [anon_sym_If] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_IF] = ACTIONS(2624), + [anon_sym_Import] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2624), + [anon_sym_IMPORT] = ACTIONS(2624), + [anon_sym_Include] = ACTIONS(2624), + [anon_sym_include] = ACTIONS(2624), + [anon_sym_INCLUDE] = ACTIONS(2624), + [anon_sym_Interface] = ACTIONS(2624), + [anon_sym_interface] = ACTIONS(2624), + [anon_sym_INTERFACE] = ACTIONS(2624), + [anon_sym_New] = ACTIONS(2624), + [anon_sym_new] = ACTIONS(2624), + [anon_sym_NEW] = ACTIONS(2624), + [anon_sym_Package] = ACTIONS(2624), + [anon_sym_package] = ACTIONS(2624), + [anon_sym_PACKAGE] = ACTIONS(2624), + [anon_sym_Private] = ACTIONS(2624), + [anon_sym_private] = ACTIONS(2624), + [anon_sym_PRIVATE] = ACTIONS(2624), + [anon_sym_Property] = ACTIONS(2624), + [anon_sym_property] = ACTIONS(2624), + [anon_sym_PROPERTY] = ACTIONS(2624), + [anon_sym_Public] = ACTIONS(2624), + [anon_sym_public] = ACTIONS(2624), + [anon_sym_PUBLIC] = ACTIONS(2624), + [anon_sym_Remote] = ACTIONS(2624), + [anon_sym_remote] = ACTIONS(2624), + [anon_sym_REMOTE] = ACTIONS(2624), + [anon_sym_Return] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_RETURN] = ACTIONS(2624), + [anon_sym_Static] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_STATIC] = ACTIONS(2624), + [anon_sym_Switch] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_SWITCH] = ACTIONS(2624), + [anon_sym_Throw] = ACTIONS(2624), + [anon_sym_throw] = ACTIONS(2624), + [anon_sym_THROW] = ACTIONS(2624), + [anon_sym_Try] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [anon_sym_TRY] = ACTIONS(2624), + [anon_sym_Var] = ACTIONS(2624), + [anon_sym_var] = ACTIONS(2624), + [anon_sym_VAR] = ACTIONS(2624), + [anon_sym_While] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_WHILE] = ACTIONS(2624), + [anon_sym_With] = ACTIONS(2624), + [anon_sym_with] = ACTIONS(2624), + [anon_sym_WITH] = ACTIONS(2624), + [sym__automatic_semicolon] = ACTIONS(2626), + [sym_cf_comment] = ACTIONS(2622), + [sym__java_block_open] = ACTIONS(2622), + [sym__static_type_prefix] = ACTIONS(2622), }, [STATE(568)] = { - [ts_builtin_sym_end] = ACTIONS(2630), - [sym_identifier] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_Query] = ACTIONS(2632), - [anon_sym_query] = ACTIONS(2632), - [anon_sym_QUERY] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_SLASH] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2630), - [aux_sym_unary_operator_token1] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2630), - [anon_sym_DQUOTE] = ACTIONS(2630), - [anon_sym_SQUOTE] = ACTIONS(2630), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2632), - [aux_sym_number_token2] = ACTIONS(2630), - [anon_sym_This] = ACTIONS(2632), - [anon_sym_this] = ACTIONS(2632), - [anon_sym_THIS] = ACTIONS(2632), - [anon_sym_Super] = ACTIONS(2632), - [anon_sym_super] = ACTIONS(2632), - [anon_sym_SUPER] = ACTIONS(2632), - [anon_sym_True] = ACTIONS(2632), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_TRUE] = ACTIONS(2632), - [anon_sym_False] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_FALSE] = ACTIONS(2632), - [anon_sym_Null] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2632), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_Undefined] = ACTIONS(2632), - [anon_sym_undefined] = ACTIONS(2632), - [anon_sym_UNDEFINED] = ACTIONS(2632), - [anon_sym_get] = ACTIONS(2632), - [anon_sym_set] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(2632), - [sym_hash_empty] = ACTIONS(2630), - [anon_sym_export] = ACTIONS(2632), - [anon_sym_QueryExecute] = ACTIONS(2632), - [anon_sym_queryexecute] = ACTIONS(2632), - [anon_sym_QUERYEXECUTE] = ACTIONS(2632), - [anon_sym_queryExecute] = ACTIONS(2632), - [anon_sym_BQUOTE] = ACTIONS(2632), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2630), - [anon_sym_Abstract] = ACTIONS(2632), - [anon_sym_abstract] = ACTIONS(2632), - [anon_sym_ABSTRACT] = ACTIONS(2632), - [anon_sym_Break] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_BREAK] = ACTIONS(2632), - [anon_sym_Case] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_CASE] = ACTIONS(2632), - [anon_sym_Component] = ACTIONS(2632), - [anon_sym_component] = ACTIONS(2632), - [anon_sym_COMPONENT] = ACTIONS(2632), - [anon_sym_Continue] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_CONTINUE] = ACTIONS(2632), - [anon_sym_Debugger] = ACTIONS(2632), - [anon_sym_debugger] = ACTIONS(2632), - [anon_sym_DEBUGGER] = ACTIONS(2632), - [anon_sym_Default] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_DEFAULT] = ACTIONS(2632), - [anon_sym_Do] = ACTIONS(2632), - [anon_sym_do] = ACTIONS(2632), - [anon_sym_DO] = ACTIONS(2632), - [anon_sym_Else] = ACTIONS(2632), - [anon_sym_else] = ACTIONS(2632), - [anon_sym_ELSE] = ACTIONS(2632), - [anon_sym_Final] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_FINAL] = ACTIONS(2632), - [anon_sym_For] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_FOR] = ACTIONS(2632), - [anon_sym_Function] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2632), - [anon_sym_FUNCTION] = ACTIONS(2632), - [anon_sym_If] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_IF] = ACTIONS(2632), - [anon_sym_Import] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_IMPORT] = ACTIONS(2632), - [anon_sym_Include] = ACTIONS(2632), - [anon_sym_include] = ACTIONS(2632), - [anon_sym_INCLUDE] = ACTIONS(2632), - [anon_sym_Interface] = ACTIONS(2632), - [anon_sym_interface] = ACTIONS(2632), - [anon_sym_INTERFACE] = ACTIONS(2632), - [anon_sym_New] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_NEW] = ACTIONS(2632), - [anon_sym_Package] = ACTIONS(2632), - [anon_sym_package] = ACTIONS(2632), - [anon_sym_PACKAGE] = ACTIONS(2632), - [anon_sym_Private] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_PRIVATE] = ACTIONS(2632), - [anon_sym_Property] = ACTIONS(2632), - [anon_sym_property] = ACTIONS(2632), - [anon_sym_PROPERTY] = ACTIONS(2632), - [anon_sym_Public] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_PUBLIC] = ACTIONS(2632), - [anon_sym_Remote] = ACTIONS(2632), - [anon_sym_remote] = ACTIONS(2632), - [anon_sym_REMOTE] = ACTIONS(2632), - [anon_sym_Return] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_RETURN] = ACTIONS(2632), - [anon_sym_Static] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_STATIC] = ACTIONS(2632), - [anon_sym_Switch] = ACTIONS(2632), - [anon_sym_switch] = ACTIONS(2632), - [anon_sym_SWITCH] = ACTIONS(2632), - [anon_sym_Throw] = ACTIONS(2632), - [anon_sym_throw] = ACTIONS(2632), - [anon_sym_THROW] = ACTIONS(2632), - [anon_sym_Try] = ACTIONS(2632), - [anon_sym_try] = ACTIONS(2632), - [anon_sym_TRY] = ACTIONS(2632), - [anon_sym_Var] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [anon_sym_VAR] = ACTIONS(2632), - [anon_sym_While] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_WHILE] = ACTIONS(2632), - [anon_sym_With] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2632), - [anon_sym_WITH] = ACTIONS(2632), - [sym__automatic_semicolon] = ACTIONS(2634), - [sym_cf_comment] = ACTIONS(2630), - [sym__java_block_open] = ACTIONS(2630), - [sym__static_type_prefix] = ACTIONS(2630), + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2630), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_Query] = ACTIONS(2630), + [anon_sym_query] = ACTIONS(2630), + [anon_sym_QUERY] = ACTIONS(2630), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_SLASH] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2628), + [aux_sym_unary_operator_token1] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2628), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2630), + [aux_sym_number_token2] = ACTIONS(2628), + [anon_sym_This] = ACTIONS(2630), + [anon_sym_this] = ACTIONS(2630), + [anon_sym_THIS] = ACTIONS(2630), + [anon_sym_Super] = ACTIONS(2630), + [anon_sym_super] = ACTIONS(2630), + [anon_sym_SUPER] = ACTIONS(2630), + [anon_sym_True] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2630), + [anon_sym_TRUE] = ACTIONS(2630), + [anon_sym_False] = ACTIONS(2630), + [anon_sym_false] = ACTIONS(2630), + [anon_sym_FALSE] = ACTIONS(2630), + [anon_sym_Null] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2630), + [anon_sym_Undefined] = ACTIONS(2630), + [anon_sym_undefined] = ACTIONS(2630), + [anon_sym_UNDEFINED] = ACTIONS(2630), + [anon_sym_get] = ACTIONS(2630), + [anon_sym_set] = ACTIONS(2630), + [anon_sym_POUND] = ACTIONS(2630), + [sym_hash_empty] = ACTIONS(2628), + [anon_sym_export] = ACTIONS(2630), + [anon_sym_QueryExecute] = ACTIONS(2630), + [anon_sym_queryexecute] = ACTIONS(2630), + [anon_sym_QUERYEXECUTE] = ACTIONS(2630), + [anon_sym_queryExecute] = ACTIONS(2630), + [anon_sym_BQUOTE] = ACTIONS(2630), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2628), + [anon_sym_Abstract] = ACTIONS(2630), + [anon_sym_abstract] = ACTIONS(2630), + [anon_sym_ABSTRACT] = ACTIONS(2630), + [anon_sym_Break] = ACTIONS(2630), + [anon_sym_break] = ACTIONS(2630), + [anon_sym_BREAK] = ACTIONS(2630), + [anon_sym_Case] = ACTIONS(2630), + [anon_sym_case] = ACTIONS(2630), + [anon_sym_CASE] = ACTIONS(2630), + [anon_sym_Component] = ACTIONS(2630), + [anon_sym_component] = ACTIONS(2630), + [anon_sym_COMPONENT] = ACTIONS(2630), + [anon_sym_Continue] = ACTIONS(2630), + [anon_sym_continue] = ACTIONS(2630), + [anon_sym_CONTINUE] = ACTIONS(2630), + [anon_sym_Debugger] = ACTIONS(2630), + [anon_sym_debugger] = ACTIONS(2630), + [anon_sym_DEBUGGER] = ACTIONS(2630), + [anon_sym_Default] = ACTIONS(2630), + [anon_sym_default] = ACTIONS(2630), + [anon_sym_DEFAULT] = ACTIONS(2630), + [anon_sym_Do] = ACTIONS(2630), + [anon_sym_do] = ACTIONS(2630), + [anon_sym_DO] = ACTIONS(2630), + [anon_sym_Else] = ACTIONS(2630), + [anon_sym_else] = ACTIONS(2630), + [anon_sym_ELSE] = ACTIONS(2630), + [anon_sym_Final] = ACTIONS(2630), + [anon_sym_final] = ACTIONS(2630), + [anon_sym_FINAL] = ACTIONS(2630), + [anon_sym_For] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2630), + [anon_sym_FOR] = ACTIONS(2630), + [anon_sym_Function] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2630), + [anon_sym_FUNCTION] = ACTIONS(2630), + [anon_sym_If] = ACTIONS(2630), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_IF] = ACTIONS(2630), + [anon_sym_Import] = ACTIONS(2630), + [anon_sym_import] = ACTIONS(2630), + [anon_sym_IMPORT] = ACTIONS(2630), + [anon_sym_Include] = ACTIONS(2630), + [anon_sym_include] = ACTIONS(2630), + [anon_sym_INCLUDE] = ACTIONS(2630), + [anon_sym_Interface] = ACTIONS(2630), + [anon_sym_interface] = ACTIONS(2630), + [anon_sym_INTERFACE] = ACTIONS(2630), + [anon_sym_New] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2630), + [anon_sym_NEW] = ACTIONS(2630), + [anon_sym_Package] = ACTIONS(2630), + [anon_sym_package] = ACTIONS(2630), + [anon_sym_PACKAGE] = ACTIONS(2630), + [anon_sym_Private] = ACTIONS(2630), + [anon_sym_private] = ACTIONS(2630), + [anon_sym_PRIVATE] = ACTIONS(2630), + [anon_sym_Property] = ACTIONS(2630), + [anon_sym_property] = ACTIONS(2630), + [anon_sym_PROPERTY] = ACTIONS(2630), + [anon_sym_Public] = ACTIONS(2630), + [anon_sym_public] = ACTIONS(2630), + [anon_sym_PUBLIC] = ACTIONS(2630), + [anon_sym_Remote] = ACTIONS(2630), + [anon_sym_remote] = ACTIONS(2630), + [anon_sym_REMOTE] = ACTIONS(2630), + [anon_sym_Return] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2630), + [anon_sym_RETURN] = ACTIONS(2630), + [anon_sym_Static] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(2630), + [anon_sym_STATIC] = ACTIONS(2630), + [anon_sym_Switch] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2630), + [anon_sym_SWITCH] = ACTIONS(2630), + [anon_sym_Throw] = ACTIONS(2630), + [anon_sym_throw] = ACTIONS(2630), + [anon_sym_THROW] = ACTIONS(2630), + [anon_sym_Try] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2630), + [anon_sym_TRY] = ACTIONS(2630), + [anon_sym_Var] = ACTIONS(2630), + [anon_sym_var] = ACTIONS(2630), + [anon_sym_VAR] = ACTIONS(2630), + [anon_sym_While] = ACTIONS(2630), + [anon_sym_while] = ACTIONS(2630), + [anon_sym_WHILE] = ACTIONS(2630), + [anon_sym_With] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2630), + [anon_sym_WITH] = ACTIONS(2630), + [sym__automatic_semicolon] = ACTIONS(2632), + [sym_cf_comment] = ACTIONS(2628), + [sym__java_block_open] = ACTIONS(2628), + [sym__static_type_prefix] = ACTIONS(2628), }, [STATE(569)] = { - [ts_builtin_sym_end] = ACTIONS(2636), - [sym_identifier] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_Query] = ACTIONS(2638), - [anon_sym_query] = ACTIONS(2638), - [anon_sym_QUERY] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2636), - [aux_sym_unary_operator_token1] = ACTIONS(2638), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2638), - [aux_sym_number_token2] = ACTIONS(2636), - [anon_sym_This] = ACTIONS(2638), - [anon_sym_this] = ACTIONS(2638), - [anon_sym_THIS] = ACTIONS(2638), - [anon_sym_Super] = ACTIONS(2638), - [anon_sym_super] = ACTIONS(2638), - [anon_sym_SUPER] = ACTIONS(2638), - [anon_sym_True] = ACTIONS(2638), - [anon_sym_true] = ACTIONS(2638), - [anon_sym_TRUE] = ACTIONS(2638), - [anon_sym_False] = ACTIONS(2638), - [anon_sym_false] = ACTIONS(2638), - [anon_sym_FALSE] = ACTIONS(2638), - [anon_sym_Null] = ACTIONS(2638), - [anon_sym_null] = ACTIONS(2638), - [anon_sym_NULL] = ACTIONS(2638), - [anon_sym_Undefined] = ACTIONS(2638), - [anon_sym_undefined] = ACTIONS(2638), - [anon_sym_UNDEFINED] = ACTIONS(2638), - [anon_sym_get] = ACTIONS(2638), - [anon_sym_set] = ACTIONS(2638), - [anon_sym_POUND] = ACTIONS(2638), - [sym_hash_empty] = ACTIONS(2636), - [anon_sym_export] = ACTIONS(2638), - [anon_sym_QueryExecute] = ACTIONS(2638), - [anon_sym_queryexecute] = ACTIONS(2638), - [anon_sym_QUERYEXECUTE] = ACTIONS(2638), - [anon_sym_queryExecute] = ACTIONS(2638), - [anon_sym_BQUOTE] = ACTIONS(2638), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2636), - [anon_sym_Abstract] = ACTIONS(2638), - [anon_sym_abstract] = ACTIONS(2638), - [anon_sym_ABSTRACT] = ACTIONS(2638), - [anon_sym_Break] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_BREAK] = ACTIONS(2638), - [anon_sym_Case] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_CASE] = ACTIONS(2638), - [anon_sym_Component] = ACTIONS(2638), - [anon_sym_component] = ACTIONS(2638), - [anon_sym_COMPONENT] = ACTIONS(2638), - [anon_sym_Continue] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_CONTINUE] = ACTIONS(2638), - [anon_sym_Debugger] = ACTIONS(2638), - [anon_sym_debugger] = ACTIONS(2638), - [anon_sym_DEBUGGER] = ACTIONS(2638), - [anon_sym_Default] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_DEFAULT] = ACTIONS(2638), - [anon_sym_Do] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_DO] = ACTIONS(2638), - [anon_sym_Else] = ACTIONS(2638), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_ELSE] = ACTIONS(2638), - [anon_sym_Final] = ACTIONS(2638), - [anon_sym_final] = ACTIONS(2638), - [anon_sym_FINAL] = ACTIONS(2638), - [anon_sym_For] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_FOR] = ACTIONS(2638), - [anon_sym_Function] = ACTIONS(2638), - [anon_sym_function] = ACTIONS(2638), - [anon_sym_FUNCTION] = ACTIONS(2638), - [anon_sym_If] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_IF] = ACTIONS(2638), - [anon_sym_Import] = ACTIONS(2638), - [anon_sym_import] = ACTIONS(2638), - [anon_sym_IMPORT] = ACTIONS(2638), - [anon_sym_Include] = ACTIONS(2638), - [anon_sym_include] = ACTIONS(2638), - [anon_sym_INCLUDE] = ACTIONS(2638), - [anon_sym_Interface] = ACTIONS(2638), - [anon_sym_interface] = ACTIONS(2638), - [anon_sym_INTERFACE] = ACTIONS(2638), - [anon_sym_New] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_NEW] = ACTIONS(2638), - [anon_sym_Package] = ACTIONS(2638), - [anon_sym_package] = ACTIONS(2638), - [anon_sym_PACKAGE] = ACTIONS(2638), - [anon_sym_Private] = ACTIONS(2638), - [anon_sym_private] = ACTIONS(2638), - [anon_sym_PRIVATE] = ACTIONS(2638), - [anon_sym_Property] = ACTIONS(2638), - [anon_sym_property] = ACTIONS(2638), - [anon_sym_PROPERTY] = ACTIONS(2638), - [anon_sym_Public] = ACTIONS(2638), - [anon_sym_public] = ACTIONS(2638), - [anon_sym_PUBLIC] = ACTIONS(2638), - [anon_sym_Remote] = ACTIONS(2638), - [anon_sym_remote] = ACTIONS(2638), - [anon_sym_REMOTE] = ACTIONS(2638), - [anon_sym_Return] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_RETURN] = ACTIONS(2638), - [anon_sym_Static] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_STATIC] = ACTIONS(2638), - [anon_sym_Switch] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_SWITCH] = ACTIONS(2638), - [anon_sym_Throw] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_THROW] = ACTIONS(2638), - [anon_sym_Try] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_TRY] = ACTIONS(2638), - [anon_sym_Var] = ACTIONS(2638), - [anon_sym_var] = ACTIONS(2638), - [anon_sym_VAR] = ACTIONS(2638), - [anon_sym_While] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_WHILE] = ACTIONS(2638), - [anon_sym_With] = ACTIONS(2638), - [anon_sym_with] = ACTIONS(2638), - [anon_sym_WITH] = ACTIONS(2638), - [sym__automatic_semicolon] = ACTIONS(2640), - [sym_cf_comment] = ACTIONS(2636), - [sym__java_block_open] = ACTIONS(2636), - [sym__static_type_prefix] = ACTIONS(2636), + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_LPAREN] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym_Query] = ACTIONS(2636), + [anon_sym_query] = ACTIONS(2636), + [anon_sym_QUERY] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_SLASH] = ACTIONS(2636), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_unary_operator_token1] = ACTIONS(2636), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2636), + [aux_sym_number_token2] = ACTIONS(2634), + [anon_sym_This] = ACTIONS(2636), + [anon_sym_this] = ACTIONS(2636), + [anon_sym_THIS] = ACTIONS(2636), + [anon_sym_Super] = ACTIONS(2636), + [anon_sym_super] = ACTIONS(2636), + [anon_sym_SUPER] = ACTIONS(2636), + [anon_sym_True] = ACTIONS(2636), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_TRUE] = ACTIONS(2636), + [anon_sym_False] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_FALSE] = ACTIONS(2636), + [anon_sym_Null] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_NULL] = ACTIONS(2636), + [anon_sym_Undefined] = ACTIONS(2636), + [anon_sym_undefined] = ACTIONS(2636), + [anon_sym_UNDEFINED] = ACTIONS(2636), + [anon_sym_get] = ACTIONS(2636), + [anon_sym_set] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [sym_hash_empty] = ACTIONS(2634), + [anon_sym_export] = ACTIONS(2636), + [anon_sym_QueryExecute] = ACTIONS(2636), + [anon_sym_queryexecute] = ACTIONS(2636), + [anon_sym_QUERYEXECUTE] = ACTIONS(2636), + [anon_sym_queryExecute] = ACTIONS(2636), + [anon_sym_BQUOTE] = ACTIONS(2636), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2634), + [anon_sym_Abstract] = ACTIONS(2636), + [anon_sym_abstract] = ACTIONS(2636), + [anon_sym_ABSTRACT] = ACTIONS(2636), + [anon_sym_Break] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_BREAK] = ACTIONS(2636), + [anon_sym_Case] = ACTIONS(2636), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_CASE] = ACTIONS(2636), + [anon_sym_Component] = ACTIONS(2636), + [anon_sym_component] = ACTIONS(2636), + [anon_sym_COMPONENT] = ACTIONS(2636), + [anon_sym_Continue] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_CONTINUE] = ACTIONS(2636), + [anon_sym_Debugger] = ACTIONS(2636), + [anon_sym_debugger] = ACTIONS(2636), + [anon_sym_DEBUGGER] = ACTIONS(2636), + [anon_sym_Default] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_DEFAULT] = ACTIONS(2636), + [anon_sym_Do] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_DO] = ACTIONS(2636), + [anon_sym_Else] = ACTIONS(2636), + [anon_sym_else] = ACTIONS(2636), + [anon_sym_ELSE] = ACTIONS(2636), + [anon_sym_Final] = ACTIONS(2636), + [anon_sym_final] = ACTIONS(2636), + [anon_sym_FINAL] = ACTIONS(2636), + [anon_sym_For] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_FOR] = ACTIONS(2636), + [anon_sym_Function] = ACTIONS(2636), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_FUNCTION] = ACTIONS(2636), + [anon_sym_If] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_IF] = ACTIONS(2636), + [anon_sym_Import] = ACTIONS(2636), + [anon_sym_import] = ACTIONS(2636), + [anon_sym_IMPORT] = ACTIONS(2636), + [anon_sym_Include] = ACTIONS(2636), + [anon_sym_include] = ACTIONS(2636), + [anon_sym_INCLUDE] = ACTIONS(2636), + [anon_sym_Interface] = ACTIONS(2636), + [anon_sym_interface] = ACTIONS(2636), + [anon_sym_INTERFACE] = ACTIONS(2636), + [anon_sym_New] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_NEW] = ACTIONS(2636), + [anon_sym_Package] = ACTIONS(2636), + [anon_sym_package] = ACTIONS(2636), + [anon_sym_PACKAGE] = ACTIONS(2636), + [anon_sym_Private] = ACTIONS(2636), + [anon_sym_private] = ACTIONS(2636), + [anon_sym_PRIVATE] = ACTIONS(2636), + [anon_sym_Property] = ACTIONS(2636), + [anon_sym_property] = ACTIONS(2636), + [anon_sym_PROPERTY] = ACTIONS(2636), + [anon_sym_Public] = ACTIONS(2636), + [anon_sym_public] = ACTIONS(2636), + [anon_sym_PUBLIC] = ACTIONS(2636), + [anon_sym_Remote] = ACTIONS(2636), + [anon_sym_remote] = ACTIONS(2636), + [anon_sym_REMOTE] = ACTIONS(2636), + [anon_sym_Return] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_RETURN] = ACTIONS(2636), + [anon_sym_Static] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_STATIC] = ACTIONS(2636), + [anon_sym_Switch] = ACTIONS(2636), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_SWITCH] = ACTIONS(2636), + [anon_sym_Throw] = ACTIONS(2636), + [anon_sym_throw] = ACTIONS(2636), + [anon_sym_THROW] = ACTIONS(2636), + [anon_sym_Try] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_TRY] = ACTIONS(2636), + [anon_sym_Var] = ACTIONS(2636), + [anon_sym_var] = ACTIONS(2636), + [anon_sym_VAR] = ACTIONS(2636), + [anon_sym_While] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_WHILE] = ACTIONS(2636), + [anon_sym_With] = ACTIONS(2636), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_WITH] = ACTIONS(2636), + [sym__automatic_semicolon] = ACTIONS(2638), + [sym_cf_comment] = ACTIONS(2634), + [sym__java_block_open] = ACTIONS(2634), + [sym__static_type_prefix] = ACTIONS(2634), }, [STATE(570)] = { - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_RBRACE] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2642), - [anon_sym_let] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_Query] = ACTIONS(2644), - [anon_sym_query] = ACTIONS(2644), - [anon_sym_QUERY] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_SLASH] = ACTIONS(2644), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2642), - [aux_sym_unary_operator_token1] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_DQUOTE] = ACTIONS(2642), - [anon_sym_SQUOTE] = ACTIONS(2642), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2644), - [aux_sym_number_token2] = ACTIONS(2642), - [anon_sym_This] = ACTIONS(2644), - [anon_sym_this] = ACTIONS(2644), - [anon_sym_THIS] = ACTIONS(2644), - [anon_sym_Super] = ACTIONS(2644), - [anon_sym_super] = ACTIONS(2644), - [anon_sym_SUPER] = ACTIONS(2644), - [anon_sym_True] = ACTIONS(2644), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_TRUE] = ACTIONS(2644), - [anon_sym_False] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_FALSE] = ACTIONS(2644), - [anon_sym_Null] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2644), - [anon_sym_NULL] = ACTIONS(2644), - [anon_sym_Undefined] = ACTIONS(2644), - [anon_sym_undefined] = ACTIONS(2644), - [anon_sym_UNDEFINED] = ACTIONS(2644), - [anon_sym_get] = ACTIONS(2644), - [anon_sym_set] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2644), - [sym_hash_empty] = ACTIONS(2642), - [anon_sym_export] = ACTIONS(2644), - [anon_sym_QueryExecute] = ACTIONS(2644), - [anon_sym_queryexecute] = ACTIONS(2644), - [anon_sym_QUERYEXECUTE] = ACTIONS(2644), - [anon_sym_queryExecute] = ACTIONS(2644), - [anon_sym_BQUOTE] = ACTIONS(2644), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2642), - [anon_sym_Abstract] = ACTIONS(2644), - [anon_sym_abstract] = ACTIONS(2644), - [anon_sym_ABSTRACT] = ACTIONS(2644), - [anon_sym_Break] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_BREAK] = ACTIONS(2644), - [anon_sym_Case] = ACTIONS(2644), - [anon_sym_case] = ACTIONS(2644), - [anon_sym_CASE] = ACTIONS(2644), - [anon_sym_Component] = ACTIONS(2644), - [anon_sym_component] = ACTIONS(2644), - [anon_sym_COMPONENT] = ACTIONS(2644), - [anon_sym_Continue] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_CONTINUE] = ACTIONS(2644), - [anon_sym_Debugger] = ACTIONS(2644), - [anon_sym_debugger] = ACTIONS(2644), - [anon_sym_DEBUGGER] = ACTIONS(2644), - [anon_sym_Default] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_DEFAULT] = ACTIONS(2644), - [anon_sym_Do] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_DO] = ACTIONS(2644), - [anon_sym_Else] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_ELSE] = ACTIONS(2644), - [anon_sym_Final] = ACTIONS(2644), - [anon_sym_final] = ACTIONS(2644), - [anon_sym_FINAL] = ACTIONS(2644), - [anon_sym_For] = ACTIONS(2644), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_FOR] = ACTIONS(2644), - [anon_sym_Function] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(2644), - [anon_sym_FUNCTION] = ACTIONS(2644), - [anon_sym_If] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_IF] = ACTIONS(2644), - [anon_sym_Import] = ACTIONS(2644), - [anon_sym_import] = ACTIONS(2644), - [anon_sym_IMPORT] = ACTIONS(2644), - [anon_sym_Include] = ACTIONS(2644), - [anon_sym_include] = ACTIONS(2644), - [anon_sym_INCLUDE] = ACTIONS(2644), - [anon_sym_Interface] = ACTIONS(2644), - [anon_sym_interface] = ACTIONS(2644), - [anon_sym_INTERFACE] = ACTIONS(2644), - [anon_sym_New] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_NEW] = ACTIONS(2644), - [anon_sym_Package] = ACTIONS(2644), - [anon_sym_package] = ACTIONS(2644), - [anon_sym_PACKAGE] = ACTIONS(2644), - [anon_sym_Private] = ACTIONS(2644), - [anon_sym_private] = ACTIONS(2644), - [anon_sym_PRIVATE] = ACTIONS(2644), - [anon_sym_Property] = ACTIONS(2644), - [anon_sym_property] = ACTIONS(2644), - [anon_sym_PROPERTY] = ACTIONS(2644), - [anon_sym_Public] = ACTIONS(2644), - [anon_sym_public] = ACTIONS(2644), - [anon_sym_PUBLIC] = ACTIONS(2644), - [anon_sym_Remote] = ACTIONS(2644), - [anon_sym_remote] = ACTIONS(2644), - [anon_sym_REMOTE] = ACTIONS(2644), - [anon_sym_Return] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_RETURN] = ACTIONS(2644), - [anon_sym_Static] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_STATIC] = ACTIONS(2644), - [anon_sym_Switch] = ACTIONS(2644), - [anon_sym_switch] = ACTIONS(2644), - [anon_sym_SWITCH] = ACTIONS(2644), - [anon_sym_Throw] = ACTIONS(2644), - [anon_sym_throw] = ACTIONS(2644), - [anon_sym_THROW] = ACTIONS(2644), - [anon_sym_Try] = ACTIONS(2644), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_TRY] = ACTIONS(2644), - [anon_sym_Var] = ACTIONS(2644), - [anon_sym_var] = ACTIONS(2644), - [anon_sym_VAR] = ACTIONS(2644), - [anon_sym_While] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_WHILE] = ACTIONS(2644), - [anon_sym_With] = ACTIONS(2644), - [anon_sym_with] = ACTIONS(2644), - [anon_sym_WITH] = ACTIONS(2644), - [sym__automatic_semicolon] = ACTIONS(2646), - [sym_cf_comment] = ACTIONS(2642), - [sym__java_block_open] = ACTIONS(2642), - [sym__static_type_prefix] = ACTIONS(2642), + [ts_builtin_sym_end] = ACTIONS(2640), + [sym_identifier] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_Query] = ACTIONS(2642), + [anon_sym_query] = ACTIONS(2642), + [anon_sym_QUERY] = ACTIONS(2642), + [anon_sym_PLUS] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2640), + [aux_sym_unary_operator_token1] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2640), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2642), + [aux_sym_number_token2] = ACTIONS(2640), + [anon_sym_This] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2642), + [anon_sym_THIS] = ACTIONS(2642), + [anon_sym_Super] = ACTIONS(2642), + [anon_sym_super] = ACTIONS(2642), + [anon_sym_SUPER] = ACTIONS(2642), + [anon_sym_True] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2642), + [anon_sym_TRUE] = ACTIONS(2642), + [anon_sym_False] = ACTIONS(2642), + [anon_sym_false] = ACTIONS(2642), + [anon_sym_FALSE] = ACTIONS(2642), + [anon_sym_Null] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_NULL] = ACTIONS(2642), + [anon_sym_Undefined] = ACTIONS(2642), + [anon_sym_undefined] = ACTIONS(2642), + [anon_sym_UNDEFINED] = ACTIONS(2642), + [anon_sym_get] = ACTIONS(2642), + [anon_sym_set] = ACTIONS(2642), + [anon_sym_POUND] = ACTIONS(2642), + [sym_hash_empty] = ACTIONS(2640), + [anon_sym_export] = ACTIONS(2642), + [anon_sym_QueryExecute] = ACTIONS(2642), + [anon_sym_queryexecute] = ACTIONS(2642), + [anon_sym_QUERYEXECUTE] = ACTIONS(2642), + [anon_sym_queryExecute] = ACTIONS(2642), + [anon_sym_BQUOTE] = ACTIONS(2642), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2640), + [anon_sym_Abstract] = ACTIONS(2642), + [anon_sym_abstract] = ACTIONS(2642), + [anon_sym_ABSTRACT] = ACTIONS(2642), + [anon_sym_Break] = ACTIONS(2642), + [anon_sym_break] = ACTIONS(2642), + [anon_sym_BREAK] = ACTIONS(2642), + [anon_sym_Case] = ACTIONS(2642), + [anon_sym_case] = ACTIONS(2642), + [anon_sym_CASE] = ACTIONS(2642), + [anon_sym_Component] = ACTIONS(2642), + [anon_sym_component] = ACTIONS(2642), + [anon_sym_COMPONENT] = ACTIONS(2642), + [anon_sym_Continue] = ACTIONS(2642), + [anon_sym_continue] = ACTIONS(2642), + [anon_sym_CONTINUE] = ACTIONS(2642), + [anon_sym_Debugger] = ACTIONS(2642), + [anon_sym_debugger] = ACTIONS(2642), + [anon_sym_DEBUGGER] = ACTIONS(2642), + [anon_sym_Default] = ACTIONS(2642), + [anon_sym_default] = ACTIONS(2642), + [anon_sym_DEFAULT] = ACTIONS(2642), + [anon_sym_Do] = ACTIONS(2642), + [anon_sym_do] = ACTIONS(2642), + [anon_sym_DO] = ACTIONS(2642), + [anon_sym_Else] = ACTIONS(2642), + [anon_sym_else] = ACTIONS(2642), + [anon_sym_ELSE] = ACTIONS(2642), + [anon_sym_Final] = ACTIONS(2642), + [anon_sym_final] = ACTIONS(2642), + [anon_sym_FINAL] = ACTIONS(2642), + [anon_sym_For] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2642), + [anon_sym_FOR] = ACTIONS(2642), + [anon_sym_Function] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2642), + [anon_sym_FUNCTION] = ACTIONS(2642), + [anon_sym_If] = ACTIONS(2642), + [anon_sym_if] = ACTIONS(2642), + [anon_sym_IF] = ACTIONS(2642), + [anon_sym_Import] = ACTIONS(2642), + [anon_sym_import] = ACTIONS(2642), + [anon_sym_IMPORT] = ACTIONS(2642), + [anon_sym_Include] = ACTIONS(2642), + [anon_sym_include] = ACTIONS(2642), + [anon_sym_INCLUDE] = ACTIONS(2642), + [anon_sym_Interface] = ACTIONS(2642), + [anon_sym_interface] = ACTIONS(2642), + [anon_sym_INTERFACE] = ACTIONS(2642), + [anon_sym_New] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_NEW] = ACTIONS(2642), + [anon_sym_Package] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2642), + [anon_sym_PACKAGE] = ACTIONS(2642), + [anon_sym_Private] = ACTIONS(2642), + [anon_sym_private] = ACTIONS(2642), + [anon_sym_PRIVATE] = ACTIONS(2642), + [anon_sym_Property] = ACTIONS(2642), + [anon_sym_property] = ACTIONS(2642), + [anon_sym_PROPERTY] = ACTIONS(2642), + [anon_sym_Public] = ACTIONS(2642), + [anon_sym_public] = ACTIONS(2642), + [anon_sym_PUBLIC] = ACTIONS(2642), + [anon_sym_Remote] = ACTIONS(2642), + [anon_sym_remote] = ACTIONS(2642), + [anon_sym_REMOTE] = ACTIONS(2642), + [anon_sym_Return] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2642), + [anon_sym_RETURN] = ACTIONS(2642), + [anon_sym_Static] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2642), + [anon_sym_STATIC] = ACTIONS(2642), + [anon_sym_Switch] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2642), + [anon_sym_SWITCH] = ACTIONS(2642), + [anon_sym_Throw] = ACTIONS(2642), + [anon_sym_throw] = ACTIONS(2642), + [anon_sym_THROW] = ACTIONS(2642), + [anon_sym_Try] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2642), + [anon_sym_TRY] = ACTIONS(2642), + [anon_sym_Var] = ACTIONS(2642), + [anon_sym_var] = ACTIONS(2642), + [anon_sym_VAR] = ACTIONS(2642), + [anon_sym_While] = ACTIONS(2642), + [anon_sym_while] = ACTIONS(2642), + [anon_sym_WHILE] = ACTIONS(2642), + [anon_sym_With] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2642), + [anon_sym_WITH] = ACTIONS(2642), + [sym__automatic_semicolon] = ACTIONS(2644), + [sym_cf_comment] = ACTIONS(2640), + [sym__java_block_open] = ACTIONS(2640), + [sym__static_type_prefix] = ACTIONS(2640), }, [STATE(571)] = { - [ts_builtin_sym_end] = ACTIONS(2648), - [sym_identifier] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_Query] = ACTIONS(2650), - [anon_sym_query] = ACTIONS(2650), - [anon_sym_QUERY] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2648), - [aux_sym_unary_operator_token1] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2650), - [aux_sym_number_token2] = ACTIONS(2648), - [anon_sym_This] = ACTIONS(2650), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_THIS] = ACTIONS(2650), - [anon_sym_Super] = ACTIONS(2650), - [anon_sym_super] = ACTIONS(2650), - [anon_sym_SUPER] = ACTIONS(2650), - [anon_sym_True] = ACTIONS(2650), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_TRUE] = ACTIONS(2650), - [anon_sym_False] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [anon_sym_FALSE] = ACTIONS(2650), - [anon_sym_Null] = ACTIONS(2650), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_NULL] = ACTIONS(2650), - [anon_sym_Undefined] = ACTIONS(2650), - [anon_sym_undefined] = ACTIONS(2650), - [anon_sym_UNDEFINED] = ACTIONS(2650), - [anon_sym_get] = ACTIONS(2650), - [anon_sym_set] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [sym_hash_empty] = ACTIONS(2648), - [anon_sym_export] = ACTIONS(2650), - [anon_sym_QueryExecute] = ACTIONS(2650), - [anon_sym_queryexecute] = ACTIONS(2650), - [anon_sym_QUERYEXECUTE] = ACTIONS(2650), - [anon_sym_queryExecute] = ACTIONS(2650), - [anon_sym_BQUOTE] = ACTIONS(2650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2648), - [anon_sym_Abstract] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_ABSTRACT] = ACTIONS(2650), - [anon_sym_Break] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_BREAK] = ACTIONS(2650), - [anon_sym_Case] = ACTIONS(2650), - [anon_sym_case] = ACTIONS(2650), - [anon_sym_CASE] = ACTIONS(2650), - [anon_sym_Component] = ACTIONS(2650), - [anon_sym_component] = ACTIONS(2650), - [anon_sym_COMPONENT] = ACTIONS(2650), - [anon_sym_Continue] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_CONTINUE] = ACTIONS(2650), - [anon_sym_Debugger] = ACTIONS(2650), - [anon_sym_debugger] = ACTIONS(2650), - [anon_sym_DEBUGGER] = ACTIONS(2650), - [anon_sym_Default] = ACTIONS(2650), - [anon_sym_default] = ACTIONS(2650), - [anon_sym_DEFAULT] = ACTIONS(2650), - [anon_sym_Do] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_DO] = ACTIONS(2650), + [sym_else_clause] = STATE(591), + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_Query] = ACTIONS(2648), + [anon_sym_query] = ACTIONS(2648), + [anon_sym_QUERY] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_unary_operator_token1] = ACTIONS(2648), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2648), + [aux_sym_number_token2] = ACTIONS(2646), + [anon_sym_This] = ACTIONS(2648), + [anon_sym_this] = ACTIONS(2648), + [anon_sym_THIS] = ACTIONS(2648), + [anon_sym_Super] = ACTIONS(2648), + [anon_sym_super] = ACTIONS(2648), + [anon_sym_SUPER] = ACTIONS(2648), + [anon_sym_True] = ACTIONS(2648), + [anon_sym_true] = ACTIONS(2648), + [anon_sym_TRUE] = ACTIONS(2648), + [anon_sym_False] = ACTIONS(2648), + [anon_sym_false] = ACTIONS(2648), + [anon_sym_FALSE] = ACTIONS(2648), + [anon_sym_Null] = ACTIONS(2648), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2648), + [anon_sym_Undefined] = ACTIONS(2648), + [anon_sym_undefined] = ACTIONS(2648), + [anon_sym_UNDEFINED] = ACTIONS(2648), + [anon_sym_get] = ACTIONS(2648), + [anon_sym_set] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [sym_hash_empty] = ACTIONS(2646), + [anon_sym_export] = ACTIONS(2648), + [anon_sym_QueryExecute] = ACTIONS(2648), + [anon_sym_queryexecute] = ACTIONS(2648), + [anon_sym_QUERYEXECUTE] = ACTIONS(2648), + [anon_sym_queryExecute] = ACTIONS(2648), + [anon_sym_BQUOTE] = ACTIONS(2648), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2646), + [anon_sym_Abstract] = ACTIONS(2648), + [anon_sym_abstract] = ACTIONS(2648), + [anon_sym_ABSTRACT] = ACTIONS(2648), + [anon_sym_Break] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_BREAK] = ACTIONS(2648), + [anon_sym_Case] = ACTIONS(2648), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_CASE] = ACTIONS(2648), + [anon_sym_Component] = ACTIONS(2648), + [anon_sym_component] = ACTIONS(2648), + [anon_sym_COMPONENT] = ACTIONS(2648), + [anon_sym_Continue] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_CONTINUE] = ACTIONS(2648), + [anon_sym_Debugger] = ACTIONS(2648), + [anon_sym_debugger] = ACTIONS(2648), + [anon_sym_DEBUGGER] = ACTIONS(2648), + [anon_sym_Default] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_DEFAULT] = ACTIONS(2648), + [anon_sym_Do] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_DO] = ACTIONS(2648), [anon_sym_Else] = ACTIONS(2650), [anon_sym_else] = ACTIONS(2650), [anon_sym_ELSE] = ACTIONS(2650), - [anon_sym_Final] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_FINAL] = ACTIONS(2650), - [anon_sym_For] = ACTIONS(2650), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_FOR] = ACTIONS(2650), - [anon_sym_Function] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_FUNCTION] = ACTIONS(2650), - [anon_sym_If] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_IF] = ACTIONS(2650), - [anon_sym_Import] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_IMPORT] = ACTIONS(2650), - [anon_sym_Include] = ACTIONS(2650), - [anon_sym_include] = ACTIONS(2650), - [anon_sym_INCLUDE] = ACTIONS(2650), - [anon_sym_Interface] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_INTERFACE] = ACTIONS(2650), - [anon_sym_New] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_NEW] = ACTIONS(2650), - [anon_sym_Package] = ACTIONS(2650), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_PACKAGE] = ACTIONS(2650), - [anon_sym_Private] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_PRIVATE] = ACTIONS(2650), - [anon_sym_Property] = ACTIONS(2650), - [anon_sym_property] = ACTIONS(2650), - [anon_sym_PROPERTY] = ACTIONS(2650), - [anon_sym_Public] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_PUBLIC] = ACTIONS(2650), - [anon_sym_Remote] = ACTIONS(2650), - [anon_sym_remote] = ACTIONS(2650), - [anon_sym_REMOTE] = ACTIONS(2650), - [anon_sym_Return] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_RETURN] = ACTIONS(2650), - [anon_sym_Static] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_STATIC] = ACTIONS(2650), - [anon_sym_Switch] = ACTIONS(2650), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_SWITCH] = ACTIONS(2650), - [anon_sym_Throw] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_THROW] = ACTIONS(2650), - [anon_sym_Try] = ACTIONS(2650), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_TRY] = ACTIONS(2650), - [anon_sym_Var] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [anon_sym_VAR] = ACTIONS(2650), - [anon_sym_While] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_WHILE] = ACTIONS(2650), - [anon_sym_With] = ACTIONS(2650), - [anon_sym_with] = ACTIONS(2650), - [anon_sym_WITH] = ACTIONS(2650), - [sym__automatic_semicolon] = ACTIONS(2652), - [sym_cf_comment] = ACTIONS(2648), - [sym__java_block_open] = ACTIONS(2648), - [sym__static_type_prefix] = ACTIONS(2648), + [anon_sym_Final] = ACTIONS(2648), + [anon_sym_final] = ACTIONS(2648), + [anon_sym_FINAL] = ACTIONS(2648), + [anon_sym_For] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_FOR] = ACTIONS(2648), + [anon_sym_Function] = ACTIONS(2648), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_FUNCTION] = ACTIONS(2648), + [anon_sym_If] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_IF] = ACTIONS(2648), + [anon_sym_Import] = ACTIONS(2648), + [anon_sym_import] = ACTIONS(2648), + [anon_sym_IMPORT] = ACTIONS(2648), + [anon_sym_Include] = ACTIONS(2648), + [anon_sym_include] = ACTIONS(2648), + [anon_sym_INCLUDE] = ACTIONS(2648), + [anon_sym_Interface] = ACTIONS(2648), + [anon_sym_interface] = ACTIONS(2648), + [anon_sym_INTERFACE] = ACTIONS(2648), + [anon_sym_New] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_NEW] = ACTIONS(2648), + [anon_sym_Package] = ACTIONS(2648), + [anon_sym_package] = ACTIONS(2648), + [anon_sym_PACKAGE] = ACTIONS(2648), + [anon_sym_Private] = ACTIONS(2648), + [anon_sym_private] = ACTIONS(2648), + [anon_sym_PRIVATE] = ACTIONS(2648), + [anon_sym_Property] = ACTIONS(2648), + [anon_sym_property] = ACTIONS(2648), + [anon_sym_PROPERTY] = ACTIONS(2648), + [anon_sym_Public] = ACTIONS(2648), + [anon_sym_public] = ACTIONS(2648), + [anon_sym_PUBLIC] = ACTIONS(2648), + [anon_sym_Remote] = ACTIONS(2648), + [anon_sym_remote] = ACTIONS(2648), + [anon_sym_REMOTE] = ACTIONS(2648), + [anon_sym_Return] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_RETURN] = ACTIONS(2648), + [anon_sym_Static] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_STATIC] = ACTIONS(2648), + [anon_sym_Switch] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_SWITCH] = ACTIONS(2648), + [anon_sym_Throw] = ACTIONS(2648), + [anon_sym_throw] = ACTIONS(2648), + [anon_sym_THROW] = ACTIONS(2648), + [anon_sym_Try] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_TRY] = ACTIONS(2648), + [anon_sym_Var] = ACTIONS(2648), + [anon_sym_var] = ACTIONS(2648), + [anon_sym_VAR] = ACTIONS(2648), + [anon_sym_While] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_WHILE] = ACTIONS(2648), + [anon_sym_With] = ACTIONS(2648), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_WITH] = ACTIONS(2648), + [sym_cf_comment] = ACTIONS(2646), + [sym__java_block_open] = ACTIONS(2646), + [sym__static_type_prefix] = ACTIONS(2646), }, [STATE(572)] = { - [ts_builtin_sym_end] = ACTIONS(2654), - [sym_identifier] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_RBRACE] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2654), - [anon_sym_let] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_Query] = ACTIONS(2656), - [anon_sym_query] = ACTIONS(2656), - [anon_sym_QUERY] = ACTIONS(2656), - [anon_sym_PLUS] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2656), - [anon_sym_SLASH] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2654), - [aux_sym_unary_operator_token1] = ACTIONS(2656), - [anon_sym_PLUS_PLUS] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2654), - [anon_sym_SQUOTE] = ACTIONS(2654), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2656), - [aux_sym_number_token2] = ACTIONS(2654), - [anon_sym_This] = ACTIONS(2656), - [anon_sym_this] = ACTIONS(2656), - [anon_sym_THIS] = ACTIONS(2656), - [anon_sym_Super] = ACTIONS(2656), - [anon_sym_super] = ACTIONS(2656), - [anon_sym_SUPER] = ACTIONS(2656), - [anon_sym_True] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2656), - [anon_sym_TRUE] = ACTIONS(2656), - [anon_sym_False] = ACTIONS(2656), - [anon_sym_false] = ACTIONS(2656), - [anon_sym_FALSE] = ACTIONS(2656), - [anon_sym_Null] = ACTIONS(2656), - [anon_sym_null] = ACTIONS(2656), - [anon_sym_NULL] = ACTIONS(2656), - [anon_sym_Undefined] = ACTIONS(2656), - [anon_sym_undefined] = ACTIONS(2656), - [anon_sym_UNDEFINED] = ACTIONS(2656), - [anon_sym_get] = ACTIONS(2656), - [anon_sym_set] = ACTIONS(2656), - [anon_sym_POUND] = ACTIONS(2656), - [sym_hash_empty] = ACTIONS(2654), - [anon_sym_export] = ACTIONS(2656), - [anon_sym_QueryExecute] = ACTIONS(2656), - [anon_sym_queryexecute] = ACTIONS(2656), - [anon_sym_QUERYEXECUTE] = ACTIONS(2656), - [anon_sym_queryExecute] = ACTIONS(2656), - [anon_sym_BQUOTE] = ACTIONS(2656), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2654), - [anon_sym_Abstract] = ACTIONS(2656), - [anon_sym_abstract] = ACTIONS(2656), - [anon_sym_ABSTRACT] = ACTIONS(2656), - [anon_sym_Break] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_BREAK] = ACTIONS(2656), - [anon_sym_Case] = ACTIONS(2656), - [anon_sym_case] = ACTIONS(2656), - [anon_sym_CASE] = ACTIONS(2656), - [anon_sym_Component] = ACTIONS(2656), - [anon_sym_component] = ACTIONS(2656), - [anon_sym_COMPONENT] = ACTIONS(2656), - [anon_sym_Continue] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_CONTINUE] = ACTIONS(2656), - [anon_sym_Debugger] = ACTIONS(2656), - [anon_sym_debugger] = ACTIONS(2656), - [anon_sym_DEBUGGER] = ACTIONS(2656), - [anon_sym_Default] = ACTIONS(2656), - [anon_sym_default] = ACTIONS(2656), - [anon_sym_DEFAULT] = ACTIONS(2656), - [anon_sym_Do] = ACTIONS(2656), - [anon_sym_do] = ACTIONS(2656), - [anon_sym_DO] = ACTIONS(2656), - [anon_sym_Else] = ACTIONS(2656), - [anon_sym_else] = ACTIONS(2656), - [anon_sym_ELSE] = ACTIONS(2656), - [anon_sym_Final] = ACTIONS(2656), - [anon_sym_final] = ACTIONS(2656), - [anon_sym_FINAL] = ACTIONS(2656), - [anon_sym_For] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2656), - [anon_sym_FOR] = ACTIONS(2656), - [anon_sym_Function] = ACTIONS(2656), - [anon_sym_function] = ACTIONS(2656), - [anon_sym_FUNCTION] = ACTIONS(2656), - [anon_sym_If] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_IF] = ACTIONS(2656), - [anon_sym_Import] = ACTIONS(2656), - [anon_sym_import] = ACTIONS(2656), - [anon_sym_IMPORT] = ACTIONS(2656), - [anon_sym_Include] = ACTIONS(2656), - [anon_sym_include] = ACTIONS(2656), - [anon_sym_INCLUDE] = ACTIONS(2656), - [anon_sym_Interface] = ACTIONS(2656), - [anon_sym_interface] = ACTIONS(2656), - [anon_sym_INTERFACE] = ACTIONS(2656), - [anon_sym_New] = ACTIONS(2656), - [anon_sym_new] = ACTIONS(2656), - [anon_sym_NEW] = ACTIONS(2656), - [anon_sym_Package] = ACTIONS(2656), - [anon_sym_package] = ACTIONS(2656), - [anon_sym_PACKAGE] = ACTIONS(2656), - [anon_sym_Private] = ACTIONS(2656), - [anon_sym_private] = ACTIONS(2656), - [anon_sym_PRIVATE] = ACTIONS(2656), - [anon_sym_Property] = ACTIONS(2656), - [anon_sym_property] = ACTIONS(2656), - [anon_sym_PROPERTY] = ACTIONS(2656), - [anon_sym_Public] = ACTIONS(2656), - [anon_sym_public] = ACTIONS(2656), - [anon_sym_PUBLIC] = ACTIONS(2656), - [anon_sym_Remote] = ACTIONS(2656), - [anon_sym_remote] = ACTIONS(2656), - [anon_sym_REMOTE] = ACTIONS(2656), - [anon_sym_Return] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_RETURN] = ACTIONS(2656), - [anon_sym_Static] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_STATIC] = ACTIONS(2656), - [anon_sym_Switch] = ACTIONS(2656), - [anon_sym_switch] = ACTIONS(2656), - [anon_sym_SWITCH] = ACTIONS(2656), - [anon_sym_Throw] = ACTIONS(2656), - [anon_sym_throw] = ACTIONS(2656), - [anon_sym_THROW] = ACTIONS(2656), - [anon_sym_Try] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [anon_sym_TRY] = ACTIONS(2656), - [anon_sym_Var] = ACTIONS(2656), - [anon_sym_var] = ACTIONS(2656), - [anon_sym_VAR] = ACTIONS(2656), - [anon_sym_While] = ACTIONS(2656), - [anon_sym_while] = ACTIONS(2656), - [anon_sym_WHILE] = ACTIONS(2656), - [anon_sym_With] = ACTIONS(2656), - [anon_sym_with] = ACTIONS(2656), - [anon_sym_WITH] = ACTIONS(2656), - [sym__automatic_semicolon] = ACTIONS(2658), - [sym_cf_comment] = ACTIONS(2654), - [sym__java_block_open] = ACTIONS(2654), - [sym__static_type_prefix] = ACTIONS(2654), + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_Query] = ACTIONS(1700), + [anon_sym_query] = ACTIONS(1700), + [anon_sym_QUERY] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_SLASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_TILDE] = ACTIONS(1698), + [aux_sym_unary_operator_token1] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1700), + [aux_sym_number_token2] = ACTIONS(1698), + [anon_sym_This] = ACTIONS(1700), + [anon_sym_this] = ACTIONS(1700), + [anon_sym_THIS] = ACTIONS(1700), + [anon_sym_Super] = ACTIONS(1700), + [anon_sym_super] = ACTIONS(1700), + [anon_sym_SUPER] = ACTIONS(1700), + [anon_sym_True] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1700), + [anon_sym_TRUE] = ACTIONS(1700), + [anon_sym_False] = ACTIONS(1700), + [anon_sym_false] = ACTIONS(1700), + [anon_sym_FALSE] = ACTIONS(1700), + [anon_sym_Null] = ACTIONS(1700), + [anon_sym_null] = ACTIONS(1700), + [anon_sym_NULL] = ACTIONS(1700), + [anon_sym_Undefined] = ACTIONS(1700), + [anon_sym_undefined] = ACTIONS(1700), + [anon_sym_UNDEFINED] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1700), + [sym_hash_empty] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), + [anon_sym_QueryExecute] = ACTIONS(1700), + [anon_sym_queryexecute] = ACTIONS(1700), + [anon_sym_QUERYEXECUTE] = ACTIONS(1700), + [anon_sym_queryExecute] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1698), + [anon_sym_Abstract] = ACTIONS(1700), + [anon_sym_abstract] = ACTIONS(1700), + [anon_sym_ABSTRACT] = ACTIONS(1700), + [anon_sym_Break] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_BREAK] = ACTIONS(1700), + [anon_sym_Case] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_CASE] = ACTIONS(1700), + [anon_sym_Component] = ACTIONS(1700), + [anon_sym_component] = ACTIONS(1700), + [anon_sym_COMPONENT] = ACTIONS(1700), + [anon_sym_Continue] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_CONTINUE] = ACTIONS(1700), + [anon_sym_Debugger] = ACTIONS(1700), + [anon_sym_debugger] = ACTIONS(1700), + [anon_sym_DEBUGGER] = ACTIONS(1700), + [anon_sym_Default] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_DEFAULT] = ACTIONS(1700), + [anon_sym_Do] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_DO] = ACTIONS(1700), + [anon_sym_Else] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1700), + [anon_sym_ELSE] = ACTIONS(1700), + [anon_sym_Final] = ACTIONS(1700), + [anon_sym_final] = ACTIONS(1700), + [anon_sym_FINAL] = ACTIONS(1700), + [anon_sym_For] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_FOR] = ACTIONS(1700), + [anon_sym_Function] = ACTIONS(1700), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_FUNCTION] = ACTIONS(1700), + [anon_sym_If] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_IF] = ACTIONS(1700), + [anon_sym_Import] = ACTIONS(1700), + [anon_sym_import] = ACTIONS(1700), + [anon_sym_IMPORT] = ACTIONS(1700), + [anon_sym_Include] = ACTIONS(1700), + [anon_sym_include] = ACTIONS(1700), + [anon_sym_INCLUDE] = ACTIONS(1700), + [anon_sym_Interface] = ACTIONS(1700), + [anon_sym_interface] = ACTIONS(1700), + [anon_sym_INTERFACE] = ACTIONS(1700), + [anon_sym_New] = ACTIONS(1700), + [anon_sym_new] = ACTIONS(1700), + [anon_sym_NEW] = ACTIONS(1700), + [anon_sym_Package] = ACTIONS(1700), + [anon_sym_package] = ACTIONS(1700), + [anon_sym_PACKAGE] = ACTIONS(1700), + [anon_sym_Private] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_PRIVATE] = ACTIONS(1700), + [anon_sym_Property] = ACTIONS(1700), + [anon_sym_property] = ACTIONS(1700), + [anon_sym_PROPERTY] = ACTIONS(1700), + [anon_sym_Public] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_PUBLIC] = ACTIONS(1700), + [anon_sym_Remote] = ACTIONS(1700), + [anon_sym_remote] = ACTIONS(1700), + [anon_sym_REMOTE] = ACTIONS(1700), + [anon_sym_Return] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_RETURN] = ACTIONS(1700), + [anon_sym_Static] = ACTIONS(1700), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_STATIC] = ACTIONS(1700), + [anon_sym_Switch] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_SWITCH] = ACTIONS(1700), + [anon_sym_Throw] = ACTIONS(1700), + [anon_sym_throw] = ACTIONS(1700), + [anon_sym_THROW] = ACTIONS(1700), + [anon_sym_Try] = ACTIONS(1700), + [anon_sym_try] = ACTIONS(1700), + [anon_sym_TRY] = ACTIONS(1700), + [anon_sym_Var] = ACTIONS(1700), + [anon_sym_var] = ACTIONS(1700), + [anon_sym_VAR] = ACTIONS(1700), + [anon_sym_While] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_WHILE] = ACTIONS(1700), + [anon_sym_With] = ACTIONS(1700), + [anon_sym_with] = ACTIONS(1700), + [anon_sym_WITH] = ACTIONS(1700), + [sym__automatic_semicolon] = ACTIONS(1702), + [sym_cf_comment] = ACTIONS(1698), + [sym__java_block_open] = ACTIONS(1698), + [sym__static_type_prefix] = ACTIONS(1698), }, [STATE(573)] = { - [ts_builtin_sym_end] = ACTIONS(2660), - [sym_identifier] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_Query] = ACTIONS(2662), - [anon_sym_query] = ACTIONS(2662), - [anon_sym_QUERY] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_SLASH] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2660), - [aux_sym_unary_operator_token1] = ACTIONS(2662), - [anon_sym_PLUS_PLUS] = ACTIONS(2660), - [anon_sym_DASH_DASH] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2662), - [aux_sym_number_token2] = ACTIONS(2660), - [anon_sym_This] = ACTIONS(2662), - [anon_sym_this] = ACTIONS(2662), - [anon_sym_THIS] = ACTIONS(2662), - [anon_sym_Super] = ACTIONS(2662), - [anon_sym_super] = ACTIONS(2662), - [anon_sym_SUPER] = ACTIONS(2662), - [anon_sym_True] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_TRUE] = ACTIONS(2662), - [anon_sym_False] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [anon_sym_FALSE] = ACTIONS(2662), - [anon_sym_Null] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2662), - [anon_sym_NULL] = ACTIONS(2662), - [anon_sym_Undefined] = ACTIONS(2662), - [anon_sym_undefined] = ACTIONS(2662), - [anon_sym_UNDEFINED] = ACTIONS(2662), - [anon_sym_get] = ACTIONS(2662), - [anon_sym_set] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [sym_hash_empty] = ACTIONS(2660), - [anon_sym_export] = ACTIONS(2662), - [anon_sym_QueryExecute] = ACTIONS(2662), - [anon_sym_queryexecute] = ACTIONS(2662), - [anon_sym_QUERYEXECUTE] = ACTIONS(2662), - [anon_sym_queryExecute] = ACTIONS(2662), - [anon_sym_BQUOTE] = ACTIONS(2662), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2660), - [anon_sym_Abstract] = ACTIONS(2662), - [anon_sym_abstract] = ACTIONS(2662), - [anon_sym_ABSTRACT] = ACTIONS(2662), - [anon_sym_Break] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_BREAK] = ACTIONS(2662), - [anon_sym_Case] = ACTIONS(2662), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_CASE] = ACTIONS(2662), - [anon_sym_Component] = ACTIONS(2662), - [anon_sym_component] = ACTIONS(2662), - [anon_sym_COMPONENT] = ACTIONS(2662), - [anon_sym_Continue] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_CONTINUE] = ACTIONS(2662), - [anon_sym_Debugger] = ACTIONS(2662), - [anon_sym_debugger] = ACTIONS(2662), - [anon_sym_DEBUGGER] = ACTIONS(2662), - [anon_sym_Default] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_DEFAULT] = ACTIONS(2662), - [anon_sym_Do] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_DO] = ACTIONS(2662), - [anon_sym_Else] = ACTIONS(2662), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_ELSE] = ACTIONS(2662), - [anon_sym_Final] = ACTIONS(2662), - [anon_sym_final] = ACTIONS(2662), - [anon_sym_FINAL] = ACTIONS(2662), - [anon_sym_For] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_FOR] = ACTIONS(2662), - [anon_sym_Function] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2662), - [anon_sym_FUNCTION] = ACTIONS(2662), - [anon_sym_If] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_IF] = ACTIONS(2662), - [anon_sym_Import] = ACTIONS(2662), - [anon_sym_import] = ACTIONS(2662), - [anon_sym_IMPORT] = ACTIONS(2662), - [anon_sym_Include] = ACTIONS(2662), - [anon_sym_include] = ACTIONS(2662), - [anon_sym_INCLUDE] = ACTIONS(2662), - [anon_sym_Interface] = ACTIONS(2662), - [anon_sym_interface] = ACTIONS(2662), - [anon_sym_INTERFACE] = ACTIONS(2662), - [anon_sym_New] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_NEW] = ACTIONS(2662), - [anon_sym_Package] = ACTIONS(2662), - [anon_sym_package] = ACTIONS(2662), - [anon_sym_PACKAGE] = ACTIONS(2662), - [anon_sym_Private] = ACTIONS(2662), - [anon_sym_private] = ACTIONS(2662), - [anon_sym_PRIVATE] = ACTIONS(2662), - [anon_sym_Property] = ACTIONS(2662), - [anon_sym_property] = ACTIONS(2662), - [anon_sym_PROPERTY] = ACTIONS(2662), - [anon_sym_Public] = ACTIONS(2662), - [anon_sym_public] = ACTIONS(2662), - [anon_sym_PUBLIC] = ACTIONS(2662), - [anon_sym_Remote] = ACTIONS(2662), - [anon_sym_remote] = ACTIONS(2662), - [anon_sym_REMOTE] = ACTIONS(2662), - [anon_sym_Return] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_RETURN] = ACTIONS(2662), - [anon_sym_Static] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_STATIC] = ACTIONS(2662), - [anon_sym_Switch] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_SWITCH] = ACTIONS(2662), - [anon_sym_Throw] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_THROW] = ACTIONS(2662), - [anon_sym_Try] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_TRY] = ACTIONS(2662), - [anon_sym_Var] = ACTIONS(2662), - [anon_sym_var] = ACTIONS(2662), - [anon_sym_VAR] = ACTIONS(2662), - [anon_sym_While] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_WHILE] = ACTIONS(2662), - [anon_sym_With] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2662), - [anon_sym_WITH] = ACTIONS(2662), - [sym__automatic_semicolon] = ACTIONS(2664), - [sym_cf_comment] = ACTIONS(2660), - [sym__java_block_open] = ACTIONS(2660), - [sym__static_type_prefix] = ACTIONS(2660), + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_Query] = ACTIONS(2654), + [anon_sym_query] = ACTIONS(2654), + [anon_sym_QUERY] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_SLASH] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [aux_sym_unary_operator_token1] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2654), + [aux_sym_number_token2] = ACTIONS(2652), + [anon_sym_This] = ACTIONS(2654), + [anon_sym_this] = ACTIONS(2654), + [anon_sym_THIS] = ACTIONS(2654), + [anon_sym_Super] = ACTIONS(2654), + [anon_sym_super] = ACTIONS(2654), + [anon_sym_SUPER] = ACTIONS(2654), + [anon_sym_True] = ACTIONS(2654), + [anon_sym_true] = ACTIONS(2654), + [anon_sym_TRUE] = ACTIONS(2654), + [anon_sym_False] = ACTIONS(2654), + [anon_sym_false] = ACTIONS(2654), + [anon_sym_FALSE] = ACTIONS(2654), + [anon_sym_Null] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2654), + [anon_sym_NULL] = ACTIONS(2654), + [anon_sym_Undefined] = ACTIONS(2654), + [anon_sym_undefined] = ACTIONS(2654), + [anon_sym_UNDEFINED] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2654), + [anon_sym_set] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(2654), + [sym_hash_empty] = ACTIONS(2652), + [anon_sym_export] = ACTIONS(2654), + [anon_sym_QueryExecute] = ACTIONS(2654), + [anon_sym_queryexecute] = ACTIONS(2654), + [anon_sym_QUERYEXECUTE] = ACTIONS(2654), + [anon_sym_queryExecute] = ACTIONS(2654), + [anon_sym_BQUOTE] = ACTIONS(2654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2652), + [anon_sym_Abstract] = ACTIONS(2654), + [anon_sym_abstract] = ACTIONS(2654), + [anon_sym_ABSTRACT] = ACTIONS(2654), + [anon_sym_Break] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_BREAK] = ACTIONS(2654), + [anon_sym_Case] = ACTIONS(2654), + [anon_sym_case] = ACTIONS(2654), + [anon_sym_CASE] = ACTIONS(2654), + [anon_sym_Component] = ACTIONS(2654), + [anon_sym_component] = ACTIONS(2654), + [anon_sym_COMPONENT] = ACTIONS(2654), + [anon_sym_Continue] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_CONTINUE] = ACTIONS(2654), + [anon_sym_Debugger] = ACTIONS(2654), + [anon_sym_debugger] = ACTIONS(2654), + [anon_sym_DEBUGGER] = ACTIONS(2654), + [anon_sym_Default] = ACTIONS(2654), + [anon_sym_default] = ACTIONS(2654), + [anon_sym_DEFAULT] = ACTIONS(2654), + [anon_sym_Do] = ACTIONS(2654), + [anon_sym_do] = ACTIONS(2654), + [anon_sym_DO] = ACTIONS(2654), + [anon_sym_Else] = ACTIONS(2654), + [anon_sym_else] = ACTIONS(2654), + [anon_sym_ELSE] = ACTIONS(2654), + [anon_sym_Final] = ACTIONS(2654), + [anon_sym_final] = ACTIONS(2654), + [anon_sym_FINAL] = ACTIONS(2654), + [anon_sym_For] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_FOR] = ACTIONS(2654), + [anon_sym_Function] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2654), + [anon_sym_FUNCTION] = ACTIONS(2654), + [anon_sym_If] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_IF] = ACTIONS(2654), + [anon_sym_Import] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2654), + [anon_sym_IMPORT] = ACTIONS(2654), + [anon_sym_Include] = ACTIONS(2654), + [anon_sym_include] = ACTIONS(2654), + [anon_sym_INCLUDE] = ACTIONS(2654), + [anon_sym_Interface] = ACTIONS(2654), + [anon_sym_interface] = ACTIONS(2654), + [anon_sym_INTERFACE] = ACTIONS(2654), + [anon_sym_New] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2654), + [anon_sym_NEW] = ACTIONS(2654), + [anon_sym_Package] = ACTIONS(2654), + [anon_sym_package] = ACTIONS(2654), + [anon_sym_PACKAGE] = ACTIONS(2654), + [anon_sym_Private] = ACTIONS(2654), + [anon_sym_private] = ACTIONS(2654), + [anon_sym_PRIVATE] = ACTIONS(2654), + [anon_sym_Property] = ACTIONS(2654), + [anon_sym_property] = ACTIONS(2654), + [anon_sym_PROPERTY] = ACTIONS(2654), + [anon_sym_Public] = ACTIONS(2654), + [anon_sym_public] = ACTIONS(2654), + [anon_sym_PUBLIC] = ACTIONS(2654), + [anon_sym_Remote] = ACTIONS(2654), + [anon_sym_remote] = ACTIONS(2654), + [anon_sym_REMOTE] = ACTIONS(2654), + [anon_sym_Return] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_RETURN] = ACTIONS(2654), + [anon_sym_Static] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_STATIC] = ACTIONS(2654), + [anon_sym_Switch] = ACTIONS(2654), + [anon_sym_switch] = ACTIONS(2654), + [anon_sym_SWITCH] = ACTIONS(2654), + [anon_sym_Throw] = ACTIONS(2654), + [anon_sym_throw] = ACTIONS(2654), + [anon_sym_THROW] = ACTIONS(2654), + [anon_sym_Try] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2654), + [anon_sym_TRY] = ACTIONS(2654), + [anon_sym_Var] = ACTIONS(2654), + [anon_sym_var] = ACTIONS(2654), + [anon_sym_VAR] = ACTIONS(2654), + [anon_sym_While] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_WHILE] = ACTIONS(2654), + [anon_sym_With] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2654), + [anon_sym_WITH] = ACTIONS(2654), + [sym__automatic_semicolon] = ACTIONS(2656), + [sym_cf_comment] = ACTIONS(2652), + [sym__java_block_open] = ACTIONS(2652), + [sym__static_type_prefix] = ACTIONS(2652), }, [STATE(574)] = { - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_let] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_Query] = ACTIONS(2668), - [anon_sym_query] = ACTIONS(2668), - [anon_sym_QUERY] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [aux_sym_unary_operator_token1] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2668), - [aux_sym_number_token2] = ACTIONS(2666), - [anon_sym_This] = ACTIONS(2668), - [anon_sym_this] = ACTIONS(2668), - [anon_sym_THIS] = ACTIONS(2668), - [anon_sym_Super] = ACTIONS(2668), - [anon_sym_super] = ACTIONS(2668), - [anon_sym_SUPER] = ACTIONS(2668), - [anon_sym_True] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2668), - [anon_sym_TRUE] = ACTIONS(2668), - [anon_sym_False] = ACTIONS(2668), - [anon_sym_false] = ACTIONS(2668), - [anon_sym_FALSE] = ACTIONS(2668), - [anon_sym_Null] = ACTIONS(2668), - [anon_sym_null] = ACTIONS(2668), - [anon_sym_NULL] = ACTIONS(2668), - [anon_sym_Undefined] = ACTIONS(2668), - [anon_sym_undefined] = ACTIONS(2668), - [anon_sym_UNDEFINED] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(2668), - [sym_hash_empty] = ACTIONS(2666), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_QueryExecute] = ACTIONS(2668), - [anon_sym_queryexecute] = ACTIONS(2668), - [anon_sym_QUERYEXECUTE] = ACTIONS(2668), - [anon_sym_queryExecute] = ACTIONS(2668), - [anon_sym_BQUOTE] = ACTIONS(2668), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2666), - [anon_sym_Abstract] = ACTIONS(2668), - [anon_sym_abstract] = ACTIONS(2668), - [anon_sym_ABSTRACT] = ACTIONS(2668), - [anon_sym_Break] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_BREAK] = ACTIONS(2668), - [anon_sym_Case] = ACTIONS(2668), - [anon_sym_case] = ACTIONS(2668), - [anon_sym_CASE] = ACTIONS(2668), - [anon_sym_Component] = ACTIONS(2668), - [anon_sym_component] = ACTIONS(2668), - [anon_sym_COMPONENT] = ACTIONS(2668), - [anon_sym_Continue] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_CONTINUE] = ACTIONS(2668), - [anon_sym_Debugger] = ACTIONS(2668), - [anon_sym_debugger] = ACTIONS(2668), - [anon_sym_DEBUGGER] = ACTIONS(2668), - [anon_sym_Default] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_DEFAULT] = ACTIONS(2668), - [anon_sym_Do] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_DO] = ACTIONS(2668), - [anon_sym_Else] = ACTIONS(2668), - [anon_sym_else] = ACTIONS(2668), - [anon_sym_ELSE] = ACTIONS(2668), - [anon_sym_Final] = ACTIONS(2668), - [anon_sym_final] = ACTIONS(2668), - [anon_sym_FINAL] = ACTIONS(2668), - [anon_sym_For] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_FOR] = ACTIONS(2668), - [anon_sym_Function] = ACTIONS(2668), - [anon_sym_function] = ACTIONS(2668), - [anon_sym_FUNCTION] = ACTIONS(2668), - [anon_sym_If] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_IF] = ACTIONS(2668), - [anon_sym_Import] = ACTIONS(2668), - [anon_sym_import] = ACTIONS(2668), - [anon_sym_IMPORT] = ACTIONS(2668), - [anon_sym_Include] = ACTIONS(2668), - [anon_sym_include] = ACTIONS(2668), - [anon_sym_INCLUDE] = ACTIONS(2668), - [anon_sym_Interface] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_INTERFACE] = ACTIONS(2668), - [anon_sym_New] = ACTIONS(2668), - [anon_sym_new] = ACTIONS(2668), - [anon_sym_NEW] = ACTIONS(2668), - [anon_sym_Package] = ACTIONS(2668), - [anon_sym_package] = ACTIONS(2668), - [anon_sym_PACKAGE] = ACTIONS(2668), - [anon_sym_Private] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_PRIVATE] = ACTIONS(2668), - [anon_sym_Property] = ACTIONS(2668), - [anon_sym_property] = ACTIONS(2668), - [anon_sym_PROPERTY] = ACTIONS(2668), - [anon_sym_Public] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_PUBLIC] = ACTIONS(2668), - [anon_sym_Remote] = ACTIONS(2668), - [anon_sym_remote] = ACTIONS(2668), - [anon_sym_REMOTE] = ACTIONS(2668), - [anon_sym_Return] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_RETURN] = ACTIONS(2668), - [anon_sym_Static] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_STATIC] = ACTIONS(2668), - [anon_sym_Switch] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_SWITCH] = ACTIONS(2668), - [anon_sym_Throw] = ACTIONS(2668), - [anon_sym_throw] = ACTIONS(2668), - [anon_sym_THROW] = ACTIONS(2668), - [anon_sym_Try] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2668), - [anon_sym_TRY] = ACTIONS(2668), - [anon_sym_Var] = ACTIONS(2668), - [anon_sym_var] = ACTIONS(2668), - [anon_sym_VAR] = ACTIONS(2668), - [anon_sym_While] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_WHILE] = ACTIONS(2668), - [anon_sym_With] = ACTIONS(2668), - [anon_sym_with] = ACTIONS(2668), - [anon_sym_WITH] = ACTIONS(2668), - [sym__automatic_semicolon] = ACTIONS(2670), - [sym_cf_comment] = ACTIONS(2666), - [sym__java_block_open] = ACTIONS(2666), - [sym__static_type_prefix] = ACTIONS(2666), + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_Query] = ACTIONS(2660), + [anon_sym_query] = ACTIONS(2660), + [anon_sym_QUERY] = ACTIONS(2660), + [anon_sym_PLUS] = ACTIONS(2660), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_SLASH] = ACTIONS(2660), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [aux_sym_unary_operator_token1] = ACTIONS(2660), + [anon_sym_PLUS_PLUS] = ACTIONS(2658), + [anon_sym_DASH_DASH] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2658), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2660), + [aux_sym_number_token2] = ACTIONS(2658), + [anon_sym_This] = ACTIONS(2660), + [anon_sym_this] = ACTIONS(2660), + [anon_sym_THIS] = ACTIONS(2660), + [anon_sym_Super] = ACTIONS(2660), + [anon_sym_super] = ACTIONS(2660), + [anon_sym_SUPER] = ACTIONS(2660), + [anon_sym_True] = ACTIONS(2660), + [anon_sym_true] = ACTIONS(2660), + [anon_sym_TRUE] = ACTIONS(2660), + [anon_sym_False] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [anon_sym_FALSE] = ACTIONS(2660), + [anon_sym_Null] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2660), + [anon_sym_NULL] = ACTIONS(2660), + [anon_sym_Undefined] = ACTIONS(2660), + [anon_sym_undefined] = ACTIONS(2660), + [anon_sym_UNDEFINED] = ACTIONS(2660), + [anon_sym_get] = ACTIONS(2660), + [anon_sym_set] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2660), + [sym_hash_empty] = ACTIONS(2658), + [anon_sym_export] = ACTIONS(2660), + [anon_sym_QueryExecute] = ACTIONS(2660), + [anon_sym_queryexecute] = ACTIONS(2660), + [anon_sym_QUERYEXECUTE] = ACTIONS(2660), + [anon_sym_queryExecute] = ACTIONS(2660), + [anon_sym_BQUOTE] = ACTIONS(2660), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2658), + [anon_sym_Abstract] = ACTIONS(2660), + [anon_sym_abstract] = ACTIONS(2660), + [anon_sym_ABSTRACT] = ACTIONS(2660), + [anon_sym_Break] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_BREAK] = ACTIONS(2660), + [anon_sym_Case] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(2660), + [anon_sym_CASE] = ACTIONS(2660), + [anon_sym_Component] = ACTIONS(2660), + [anon_sym_component] = ACTIONS(2660), + [anon_sym_COMPONENT] = ACTIONS(2660), + [anon_sym_Continue] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_CONTINUE] = ACTIONS(2660), + [anon_sym_Debugger] = ACTIONS(2660), + [anon_sym_debugger] = ACTIONS(2660), + [anon_sym_DEBUGGER] = ACTIONS(2660), + [anon_sym_Default] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2660), + [anon_sym_DEFAULT] = ACTIONS(2660), + [anon_sym_Do] = ACTIONS(2660), + [anon_sym_do] = ACTIONS(2660), + [anon_sym_DO] = ACTIONS(2660), + [anon_sym_Else] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2660), + [anon_sym_ELSE] = ACTIONS(2660), + [anon_sym_Final] = ACTIONS(2660), + [anon_sym_final] = ACTIONS(2660), + [anon_sym_FINAL] = ACTIONS(2660), + [anon_sym_For] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_FOR] = ACTIONS(2660), + [anon_sym_Function] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2660), + [anon_sym_FUNCTION] = ACTIONS(2660), + [anon_sym_If] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_Import] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_IMPORT] = ACTIONS(2660), + [anon_sym_Include] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_INCLUDE] = ACTIONS(2660), + [anon_sym_Interface] = ACTIONS(2660), + [anon_sym_interface] = ACTIONS(2660), + [anon_sym_INTERFACE] = ACTIONS(2660), + [anon_sym_New] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_NEW] = ACTIONS(2660), + [anon_sym_Package] = ACTIONS(2660), + [anon_sym_package] = ACTIONS(2660), + [anon_sym_PACKAGE] = ACTIONS(2660), + [anon_sym_Private] = ACTIONS(2660), + [anon_sym_private] = ACTIONS(2660), + [anon_sym_PRIVATE] = ACTIONS(2660), + [anon_sym_Property] = ACTIONS(2660), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_PROPERTY] = ACTIONS(2660), + [anon_sym_Public] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_PUBLIC] = ACTIONS(2660), + [anon_sym_Remote] = ACTIONS(2660), + [anon_sym_remote] = ACTIONS(2660), + [anon_sym_REMOTE] = ACTIONS(2660), + [anon_sym_Return] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_RETURN] = ACTIONS(2660), + [anon_sym_Static] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_STATIC] = ACTIONS(2660), + [anon_sym_Switch] = ACTIONS(2660), + [anon_sym_switch] = ACTIONS(2660), + [anon_sym_SWITCH] = ACTIONS(2660), + [anon_sym_Throw] = ACTIONS(2660), + [anon_sym_throw] = ACTIONS(2660), + [anon_sym_THROW] = ACTIONS(2660), + [anon_sym_Try] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_TRY] = ACTIONS(2660), + [anon_sym_Var] = ACTIONS(2660), + [anon_sym_var] = ACTIONS(2660), + [anon_sym_VAR] = ACTIONS(2660), + [anon_sym_While] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_WHILE] = ACTIONS(2660), + [anon_sym_With] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_WITH] = ACTIONS(2660), + [sym__automatic_semicolon] = ACTIONS(2662), + [sym_cf_comment] = ACTIONS(2658), + [sym__java_block_open] = ACTIONS(2658), + [sym__static_type_prefix] = ACTIONS(2658), }, [STATE(575)] = { - [ts_builtin_sym_end] = ACTIONS(2672), - [sym_identifier] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2672), - [anon_sym_Query] = ACTIONS(2674), - [anon_sym_query] = ACTIONS(2674), - [anon_sym_QUERY] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [aux_sym_unary_operator_token1] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2674), - [aux_sym_number_token2] = ACTIONS(2672), - [anon_sym_This] = ACTIONS(2674), - [anon_sym_this] = ACTIONS(2674), - [anon_sym_THIS] = ACTIONS(2674), - [anon_sym_Super] = ACTIONS(2674), - [anon_sym_super] = ACTIONS(2674), - [anon_sym_SUPER] = ACTIONS(2674), - [anon_sym_True] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_TRUE] = ACTIONS(2674), - [anon_sym_False] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_FALSE] = ACTIONS(2674), - [anon_sym_Null] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2674), - [anon_sym_NULL] = ACTIONS(2674), - [anon_sym_Undefined] = ACTIONS(2674), - [anon_sym_undefined] = ACTIONS(2674), - [anon_sym_UNDEFINED] = ACTIONS(2674), - [anon_sym_get] = ACTIONS(2674), - [anon_sym_set] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2674), - [sym_hash_empty] = ACTIONS(2672), - [anon_sym_export] = ACTIONS(2674), - [anon_sym_QueryExecute] = ACTIONS(2674), - [anon_sym_queryexecute] = ACTIONS(2674), - [anon_sym_QUERYEXECUTE] = ACTIONS(2674), - [anon_sym_queryExecute] = ACTIONS(2674), - [anon_sym_BQUOTE] = ACTIONS(2674), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2672), - [anon_sym_Abstract] = ACTIONS(2674), - [anon_sym_abstract] = ACTIONS(2674), - [anon_sym_ABSTRACT] = ACTIONS(2674), - [anon_sym_Break] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_BREAK] = ACTIONS(2674), - [anon_sym_Case] = ACTIONS(2674), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_CASE] = ACTIONS(2674), - [anon_sym_Component] = ACTIONS(2674), - [anon_sym_component] = ACTIONS(2674), - [anon_sym_COMPONENT] = ACTIONS(2674), - [anon_sym_Continue] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_CONTINUE] = ACTIONS(2674), - [anon_sym_Debugger] = ACTIONS(2674), - [anon_sym_debugger] = ACTIONS(2674), - [anon_sym_DEBUGGER] = ACTIONS(2674), - [anon_sym_Default] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_DEFAULT] = ACTIONS(2674), - [anon_sym_Do] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_DO] = ACTIONS(2674), - [anon_sym_Else] = ACTIONS(2674), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_ELSE] = ACTIONS(2674), - [anon_sym_Final] = ACTIONS(2674), - [anon_sym_final] = ACTIONS(2674), - [anon_sym_FINAL] = ACTIONS(2674), - [anon_sym_For] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_FOR] = ACTIONS(2674), - [anon_sym_Function] = ACTIONS(2674), - [anon_sym_function] = ACTIONS(2674), - [anon_sym_FUNCTION] = ACTIONS(2674), - [anon_sym_If] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_IF] = ACTIONS(2674), - [anon_sym_Import] = ACTIONS(2674), - [anon_sym_import] = ACTIONS(2674), - [anon_sym_IMPORT] = ACTIONS(2674), - [anon_sym_Include] = ACTIONS(2674), - [anon_sym_include] = ACTIONS(2674), - [anon_sym_INCLUDE] = ACTIONS(2674), - [anon_sym_Interface] = ACTIONS(2674), - [anon_sym_interface] = ACTIONS(2674), - [anon_sym_INTERFACE] = ACTIONS(2674), - [anon_sym_New] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_NEW] = ACTIONS(2674), - [anon_sym_Package] = ACTIONS(2674), - [anon_sym_package] = ACTIONS(2674), - [anon_sym_PACKAGE] = ACTIONS(2674), - [anon_sym_Private] = ACTIONS(2674), - [anon_sym_private] = ACTIONS(2674), - [anon_sym_PRIVATE] = ACTIONS(2674), - [anon_sym_Property] = ACTIONS(2674), - [anon_sym_property] = ACTIONS(2674), - [anon_sym_PROPERTY] = ACTIONS(2674), - [anon_sym_Public] = ACTIONS(2674), - [anon_sym_public] = ACTIONS(2674), - [anon_sym_PUBLIC] = ACTIONS(2674), - [anon_sym_Remote] = ACTIONS(2674), - [anon_sym_remote] = ACTIONS(2674), - [anon_sym_REMOTE] = ACTIONS(2674), - [anon_sym_Return] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_RETURN] = ACTIONS(2674), - [anon_sym_Static] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_STATIC] = ACTIONS(2674), - [anon_sym_Switch] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_SWITCH] = ACTIONS(2674), - [anon_sym_Throw] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_THROW] = ACTIONS(2674), - [anon_sym_Try] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_TRY] = ACTIONS(2674), - [anon_sym_Var] = ACTIONS(2674), - [anon_sym_var] = ACTIONS(2674), - [anon_sym_VAR] = ACTIONS(2674), - [anon_sym_While] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_WHILE] = ACTIONS(2674), - [anon_sym_With] = ACTIONS(2674), - [anon_sym_with] = ACTIONS(2674), - [anon_sym_WITH] = ACTIONS(2674), - [sym__automatic_semicolon] = ACTIONS(2676), - [sym_cf_comment] = ACTIONS(2672), - [sym__java_block_open] = ACTIONS(2672), - [sym__static_type_prefix] = ACTIONS(2672), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_let] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_Query] = ACTIONS(2666), + [anon_sym_query] = ACTIONS(2666), + [anon_sym_QUERY] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_unary_operator_token1] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2666), + [aux_sym_number_token2] = ACTIONS(2664), + [anon_sym_This] = ACTIONS(2666), + [anon_sym_this] = ACTIONS(2666), + [anon_sym_THIS] = ACTIONS(2666), + [anon_sym_Super] = ACTIONS(2666), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_SUPER] = ACTIONS(2666), + [anon_sym_True] = ACTIONS(2666), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_TRUE] = ACTIONS(2666), + [anon_sym_False] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_FALSE] = ACTIONS(2666), + [anon_sym_Null] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_NULL] = ACTIONS(2666), + [anon_sym_Undefined] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [anon_sym_UNDEFINED] = ACTIONS(2666), + [anon_sym_get] = ACTIONS(2666), + [anon_sym_set] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(2666), + [sym_hash_empty] = ACTIONS(2664), + [anon_sym_export] = ACTIONS(2666), + [anon_sym_QueryExecute] = ACTIONS(2666), + [anon_sym_queryexecute] = ACTIONS(2666), + [anon_sym_QUERYEXECUTE] = ACTIONS(2666), + [anon_sym_queryExecute] = ACTIONS(2666), + [anon_sym_BQUOTE] = ACTIONS(2666), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2664), + [anon_sym_Abstract] = ACTIONS(2666), + [anon_sym_abstract] = ACTIONS(2666), + [anon_sym_ABSTRACT] = ACTIONS(2666), + [anon_sym_Break] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_BREAK] = ACTIONS(2666), + [anon_sym_Case] = ACTIONS(2666), + [anon_sym_case] = ACTIONS(2666), + [anon_sym_CASE] = ACTIONS(2666), + [anon_sym_Component] = ACTIONS(2666), + [anon_sym_component] = ACTIONS(2666), + [anon_sym_COMPONENT] = ACTIONS(2666), + [anon_sym_Continue] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_CONTINUE] = ACTIONS(2666), + [anon_sym_Debugger] = ACTIONS(2666), + [anon_sym_debugger] = ACTIONS(2666), + [anon_sym_DEBUGGER] = ACTIONS(2666), + [anon_sym_Default] = ACTIONS(2666), + [anon_sym_default] = ACTIONS(2666), + [anon_sym_DEFAULT] = ACTIONS(2666), + [anon_sym_Do] = ACTIONS(2666), + [anon_sym_do] = ACTIONS(2666), + [anon_sym_DO] = ACTIONS(2666), + [anon_sym_Else] = ACTIONS(2666), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_ELSE] = ACTIONS(2666), + [anon_sym_Final] = ACTIONS(2666), + [anon_sym_final] = ACTIONS(2666), + [anon_sym_FINAL] = ACTIONS(2666), + [anon_sym_For] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_FOR] = ACTIONS(2666), + [anon_sym_Function] = ACTIONS(2666), + [anon_sym_function] = ACTIONS(2666), + [anon_sym_FUNCTION] = ACTIONS(2666), + [anon_sym_If] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_Import] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_IMPORT] = ACTIONS(2666), + [anon_sym_Include] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_INCLUDE] = ACTIONS(2666), + [anon_sym_Interface] = ACTIONS(2666), + [anon_sym_interface] = ACTIONS(2666), + [anon_sym_INTERFACE] = ACTIONS(2666), + [anon_sym_New] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_NEW] = ACTIONS(2666), + [anon_sym_Package] = ACTIONS(2666), + [anon_sym_package] = ACTIONS(2666), + [anon_sym_PACKAGE] = ACTIONS(2666), + [anon_sym_Private] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_PRIVATE] = ACTIONS(2666), + [anon_sym_Property] = ACTIONS(2666), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_PROPERTY] = ACTIONS(2666), + [anon_sym_Public] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_PUBLIC] = ACTIONS(2666), + [anon_sym_Remote] = ACTIONS(2666), + [anon_sym_remote] = ACTIONS(2666), + [anon_sym_REMOTE] = ACTIONS(2666), + [anon_sym_Return] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_RETURN] = ACTIONS(2666), + [anon_sym_Static] = ACTIONS(2666), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_STATIC] = ACTIONS(2666), + [anon_sym_Switch] = ACTIONS(2666), + [anon_sym_switch] = ACTIONS(2666), + [anon_sym_SWITCH] = ACTIONS(2666), + [anon_sym_Throw] = ACTIONS(2666), + [anon_sym_throw] = ACTIONS(2666), + [anon_sym_THROW] = ACTIONS(2666), + [anon_sym_Try] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_TRY] = ACTIONS(2666), + [anon_sym_Var] = ACTIONS(2666), + [anon_sym_var] = ACTIONS(2666), + [anon_sym_VAR] = ACTIONS(2666), + [anon_sym_While] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_WHILE] = ACTIONS(2666), + [anon_sym_With] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_WITH] = ACTIONS(2666), + [sym__automatic_semicolon] = ACTIONS(2668), + [sym_cf_comment] = ACTIONS(2664), + [sym__java_block_open] = ACTIONS(2664), + [sym__static_type_prefix] = ACTIONS(2664), }, [STATE(576)] = { + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_let] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_Query] = ACTIONS(2672), + [anon_sym_query] = ACTIONS(2672), + [anon_sym_QUERY] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [aux_sym_unary_operator_token1] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2670), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_SQUOTE] = ACTIONS(2670), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2672), + [aux_sym_number_token2] = ACTIONS(2670), + [anon_sym_This] = ACTIONS(2672), + [anon_sym_this] = ACTIONS(2672), + [anon_sym_THIS] = ACTIONS(2672), + [anon_sym_Super] = ACTIONS(2672), + [anon_sym_super] = ACTIONS(2672), + [anon_sym_SUPER] = ACTIONS(2672), + [anon_sym_True] = ACTIONS(2672), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_TRUE] = ACTIONS(2672), + [anon_sym_False] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_FALSE] = ACTIONS(2672), + [anon_sym_Null] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_NULL] = ACTIONS(2672), + [anon_sym_Undefined] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [anon_sym_UNDEFINED] = ACTIONS(2672), + [anon_sym_get] = ACTIONS(2672), + [anon_sym_set] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [sym_hash_empty] = ACTIONS(2670), + [anon_sym_export] = ACTIONS(2672), + [anon_sym_QueryExecute] = ACTIONS(2672), + [anon_sym_queryexecute] = ACTIONS(2672), + [anon_sym_QUERYEXECUTE] = ACTIONS(2672), + [anon_sym_queryExecute] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2670), + [anon_sym_Abstract] = ACTIONS(2672), + [anon_sym_abstract] = ACTIONS(2672), + [anon_sym_ABSTRACT] = ACTIONS(2672), + [anon_sym_Break] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_BREAK] = ACTIONS(2672), + [anon_sym_Case] = ACTIONS(2672), + [anon_sym_case] = ACTIONS(2672), + [anon_sym_CASE] = ACTIONS(2672), + [anon_sym_Component] = ACTIONS(2672), + [anon_sym_component] = ACTIONS(2672), + [anon_sym_COMPONENT] = ACTIONS(2672), + [anon_sym_Continue] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_CONTINUE] = ACTIONS(2672), + [anon_sym_Debugger] = ACTIONS(2672), + [anon_sym_debugger] = ACTIONS(2672), + [anon_sym_DEBUGGER] = ACTIONS(2672), + [anon_sym_Default] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_DEFAULT] = ACTIONS(2672), + [anon_sym_Do] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_DO] = ACTIONS(2672), + [anon_sym_Else] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2672), + [anon_sym_ELSE] = ACTIONS(2672), + [anon_sym_Final] = ACTIONS(2672), + [anon_sym_final] = ACTIONS(2672), + [anon_sym_FINAL] = ACTIONS(2672), + [anon_sym_For] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_FOR] = ACTIONS(2672), + [anon_sym_Function] = ACTIONS(2672), + [anon_sym_function] = ACTIONS(2672), + [anon_sym_FUNCTION] = ACTIONS(2672), + [anon_sym_If] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_IF] = ACTIONS(2672), + [anon_sym_Import] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_IMPORT] = ACTIONS(2672), + [anon_sym_Include] = ACTIONS(2672), + [anon_sym_include] = ACTIONS(2672), + [anon_sym_INCLUDE] = ACTIONS(2672), + [anon_sym_Interface] = ACTIONS(2672), + [anon_sym_interface] = ACTIONS(2672), + [anon_sym_INTERFACE] = ACTIONS(2672), + [anon_sym_New] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2672), + [anon_sym_NEW] = ACTIONS(2672), + [anon_sym_Package] = ACTIONS(2672), + [anon_sym_package] = ACTIONS(2672), + [anon_sym_PACKAGE] = ACTIONS(2672), + [anon_sym_Private] = ACTIONS(2672), + [anon_sym_private] = ACTIONS(2672), + [anon_sym_PRIVATE] = ACTIONS(2672), + [anon_sym_Property] = ACTIONS(2672), + [anon_sym_property] = ACTIONS(2672), + [anon_sym_PROPERTY] = ACTIONS(2672), + [anon_sym_Public] = ACTIONS(2672), + [anon_sym_public] = ACTIONS(2672), + [anon_sym_PUBLIC] = ACTIONS(2672), + [anon_sym_Remote] = ACTIONS(2672), + [anon_sym_remote] = ACTIONS(2672), + [anon_sym_REMOTE] = ACTIONS(2672), + [anon_sym_Return] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_RETURN] = ACTIONS(2672), + [anon_sym_Static] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_STATIC] = ACTIONS(2672), + [anon_sym_Switch] = ACTIONS(2672), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_SWITCH] = ACTIONS(2672), + [anon_sym_Throw] = ACTIONS(2672), + [anon_sym_throw] = ACTIONS(2672), + [anon_sym_THROW] = ACTIONS(2672), + [anon_sym_Try] = ACTIONS(2672), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_TRY] = ACTIONS(2672), + [anon_sym_Var] = ACTIONS(2672), + [anon_sym_var] = ACTIONS(2672), + [anon_sym_VAR] = ACTIONS(2672), + [anon_sym_While] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_WHILE] = ACTIONS(2672), + [anon_sym_With] = ACTIONS(2672), + [anon_sym_with] = ACTIONS(2672), + [anon_sym_WITH] = ACTIONS(2672), + [sym__automatic_semicolon] = ACTIONS(2674), + [sym_cf_comment] = ACTIONS(2670), + [sym__java_block_open] = ACTIONS(2670), + [sym__static_type_prefix] = ACTIONS(2670), + }, + [STATE(577)] = { + [sym_else_clause] = STATE(817), + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_Query] = ACTIONS(2648), + [anon_sym_query] = ACTIONS(2648), + [anon_sym_QUERY] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [aux_sym_unary_operator_token1] = ACTIONS(2648), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2648), + [aux_sym_number_token2] = ACTIONS(2646), + [anon_sym_This] = ACTIONS(2648), + [anon_sym_this] = ACTIONS(2648), + [anon_sym_THIS] = ACTIONS(2648), + [anon_sym_Super] = ACTIONS(2648), + [anon_sym_super] = ACTIONS(2648), + [anon_sym_SUPER] = ACTIONS(2648), + [anon_sym_True] = ACTIONS(2648), + [anon_sym_true] = ACTIONS(2648), + [anon_sym_TRUE] = ACTIONS(2648), + [anon_sym_False] = ACTIONS(2648), + [anon_sym_false] = ACTIONS(2648), + [anon_sym_FALSE] = ACTIONS(2648), + [anon_sym_Null] = ACTIONS(2648), + [anon_sym_null] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2648), + [anon_sym_Undefined] = ACTIONS(2648), + [anon_sym_undefined] = ACTIONS(2648), + [anon_sym_UNDEFINED] = ACTIONS(2648), + [anon_sym_get] = ACTIONS(2648), + [anon_sym_set] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [sym_hash_empty] = ACTIONS(2646), + [anon_sym_export] = ACTIONS(2648), + [anon_sym_QueryExecute] = ACTIONS(2648), + [anon_sym_queryexecute] = ACTIONS(2648), + [anon_sym_QUERYEXECUTE] = ACTIONS(2648), + [anon_sym_queryExecute] = ACTIONS(2648), + [anon_sym_BQUOTE] = ACTIONS(2648), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2646), + [anon_sym_Abstract] = ACTIONS(2648), + [anon_sym_abstract] = ACTIONS(2648), + [anon_sym_ABSTRACT] = ACTIONS(2648), + [anon_sym_Break] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_BREAK] = ACTIONS(2648), + [anon_sym_Case] = ACTIONS(2648), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_CASE] = ACTIONS(2648), + [anon_sym_Component] = ACTIONS(2648), + [anon_sym_component] = ACTIONS(2648), + [anon_sym_COMPONENT] = ACTIONS(2648), + [anon_sym_Continue] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_CONTINUE] = ACTIONS(2648), + [anon_sym_Debugger] = ACTIONS(2648), + [anon_sym_debugger] = ACTIONS(2648), + [anon_sym_DEBUGGER] = ACTIONS(2648), + [anon_sym_Default] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_DEFAULT] = ACTIONS(2648), + [anon_sym_Do] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_DO] = ACTIONS(2648), + [anon_sym_Else] = ACTIONS(2676), + [anon_sym_else] = ACTIONS(2676), + [anon_sym_ELSE] = ACTIONS(2676), + [anon_sym_Final] = ACTIONS(2648), + [anon_sym_final] = ACTIONS(2648), + [anon_sym_FINAL] = ACTIONS(2648), + [anon_sym_For] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_FOR] = ACTIONS(2648), + [anon_sym_Function] = ACTIONS(2648), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_FUNCTION] = ACTIONS(2648), + [anon_sym_If] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_IF] = ACTIONS(2648), + [anon_sym_Import] = ACTIONS(2648), + [anon_sym_import] = ACTIONS(2648), + [anon_sym_IMPORT] = ACTIONS(2648), + [anon_sym_Include] = ACTIONS(2648), + [anon_sym_include] = ACTIONS(2648), + [anon_sym_INCLUDE] = ACTIONS(2648), + [anon_sym_Interface] = ACTIONS(2648), + [anon_sym_interface] = ACTIONS(2648), + [anon_sym_INTERFACE] = ACTIONS(2648), + [anon_sym_New] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_NEW] = ACTIONS(2648), + [anon_sym_Package] = ACTIONS(2648), + [anon_sym_package] = ACTIONS(2648), + [anon_sym_PACKAGE] = ACTIONS(2648), + [anon_sym_Private] = ACTIONS(2648), + [anon_sym_private] = ACTIONS(2648), + [anon_sym_PRIVATE] = ACTIONS(2648), + [anon_sym_Property] = ACTIONS(2648), + [anon_sym_property] = ACTIONS(2648), + [anon_sym_PROPERTY] = ACTIONS(2648), + [anon_sym_Public] = ACTIONS(2648), + [anon_sym_public] = ACTIONS(2648), + [anon_sym_PUBLIC] = ACTIONS(2648), + [anon_sym_Remote] = ACTIONS(2648), + [anon_sym_remote] = ACTIONS(2648), + [anon_sym_REMOTE] = ACTIONS(2648), + [anon_sym_Return] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_RETURN] = ACTIONS(2648), + [anon_sym_Static] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_STATIC] = ACTIONS(2648), + [anon_sym_Switch] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_SWITCH] = ACTIONS(2648), + [anon_sym_Throw] = ACTIONS(2648), + [anon_sym_throw] = ACTIONS(2648), + [anon_sym_THROW] = ACTIONS(2648), + [anon_sym_Try] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_TRY] = ACTIONS(2648), + [anon_sym_Var] = ACTIONS(2648), + [anon_sym_var] = ACTIONS(2648), + [anon_sym_VAR] = ACTIONS(2648), + [anon_sym_While] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_WHILE] = ACTIONS(2648), + [anon_sym_With] = ACTIONS(2648), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_WITH] = ACTIONS(2648), + [sym_cf_comment] = ACTIONS(2646), + [sym__java_block_open] = ACTIONS(2646), + [sym__static_type_prefix] = ACTIONS(2646), + }, + [STATE(578)] = { [ts_builtin_sym_end] = ACTIONS(2678), [sym_identifier] = ACTIONS(2680), [anon_sym_LBRACE] = ACTIONS(2678), @@ -133077,454 +133503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2678), [sym__static_type_prefix] = ACTIONS(2678), }, - [STATE(577)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1081), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Else] = ACTIONS(1083), - [anon_sym_else] = ACTIONS(1083), - [anon_sym_ELSE] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1674), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), - }, - [STATE(578)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Else] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_ELSE] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(1684), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), - }, [STATE(579)] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1670), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Break] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_BREAK] = ACTIONS(1672), - [anon_sym_Case] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_CASE] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Continue] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_CONTINUE] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Default] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_DEFAULT] = ACTIONS(1672), - [anon_sym_Do] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_DO] = ACTIONS(1672), - [anon_sym_Else] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_ELSE] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_For] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_FOR] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_If] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_IF] = ACTIONS(1672), - [anon_sym_Import] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_IMPORT] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_Interface] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_INTERFACE] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Property] = ACTIONS(1672), - [anon_sym_property] = ACTIONS(1672), - [anon_sym_PROPERTY] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Return] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_RETURN] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [anon_sym_Switch] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_SWITCH] = ACTIONS(1672), - [anon_sym_Throw] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_THROW] = ACTIONS(1672), - [anon_sym_Try] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_TRY] = ACTIONS(1672), - [anon_sym_Var] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_VAR] = ACTIONS(1672), - [anon_sym_While] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_WHILE] = ACTIONS(1672), - [anon_sym_With] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_WITH] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym_cf_comment] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), - }, - [STATE(580)] = { [ts_builtin_sym_end] = ACTIONS(2684), [sym_identifier] = ACTIONS(2686), [anon_sym_LBRACE] = ACTIONS(2684), @@ -133673,162 +133652,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2684), [sym__static_type_prefix] = ACTIONS(2684), }, - [STATE(581)] = { - [sym_else_clause] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_Query] = ACTIONS(2626), - [anon_sym_query] = ACTIONS(2626), - [anon_sym_QUERY] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [aux_sym_unary_operator_token1] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2626), - [aux_sym_number_token2] = ACTIONS(2624), - [anon_sym_This] = ACTIONS(2626), - [anon_sym_this] = ACTIONS(2626), - [anon_sym_THIS] = ACTIONS(2626), - [anon_sym_Super] = ACTIONS(2626), - [anon_sym_super] = ACTIONS(2626), - [anon_sym_SUPER] = ACTIONS(2626), - [anon_sym_True] = ACTIONS(2626), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_TRUE] = ACTIONS(2626), - [anon_sym_False] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_FALSE] = ACTIONS(2626), - [anon_sym_Null] = ACTIONS(2626), - [anon_sym_null] = ACTIONS(2626), - [anon_sym_NULL] = ACTIONS(2626), - [anon_sym_Undefined] = ACTIONS(2626), - [anon_sym_undefined] = ACTIONS(2626), - [anon_sym_UNDEFINED] = ACTIONS(2626), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [sym_hash_empty] = ACTIONS(2624), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_QueryExecute] = ACTIONS(2626), - [anon_sym_queryexecute] = ACTIONS(2626), - [anon_sym_QUERYEXECUTE] = ACTIONS(2626), - [anon_sym_queryExecute] = ACTIONS(2626), - [anon_sym_BQUOTE] = ACTIONS(2626), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2624), - [anon_sym_Abstract] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_ABSTRACT] = ACTIONS(2626), - [anon_sym_Break] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_BREAK] = ACTIONS(2626), - [anon_sym_Case] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_CASE] = ACTIONS(2626), - [anon_sym_Component] = ACTIONS(2626), - [anon_sym_component] = ACTIONS(2626), - [anon_sym_COMPONENT] = ACTIONS(2626), - [anon_sym_Continue] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_CONTINUE] = ACTIONS(2626), - [anon_sym_Debugger] = ACTIONS(2626), - [anon_sym_debugger] = ACTIONS(2626), - [anon_sym_DEBUGGER] = ACTIONS(2626), - [anon_sym_Default] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_DEFAULT] = ACTIONS(2626), - [anon_sym_Do] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_DO] = ACTIONS(2626), - [anon_sym_Else] = ACTIONS(2690), - [anon_sym_else] = ACTIONS(2690), - [anon_sym_ELSE] = ACTIONS(2690), - [anon_sym_Final] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_FINAL] = ACTIONS(2626), - [anon_sym_For] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_FOR] = ACTIONS(2626), - [anon_sym_Function] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_FUNCTION] = ACTIONS(2626), - [anon_sym_If] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_IF] = ACTIONS(2626), - [anon_sym_Import] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_IMPORT] = ACTIONS(2626), - [anon_sym_Include] = ACTIONS(2626), - [anon_sym_include] = ACTIONS(2626), - [anon_sym_INCLUDE] = ACTIONS(2626), - [anon_sym_Interface] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_INTERFACE] = ACTIONS(2626), - [anon_sym_New] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_NEW] = ACTIONS(2626), - [anon_sym_Package] = ACTIONS(2626), - [anon_sym_package] = ACTIONS(2626), - [anon_sym_PACKAGE] = ACTIONS(2626), - [anon_sym_Private] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_PRIVATE] = ACTIONS(2626), - [anon_sym_Property] = ACTIONS(2626), - [anon_sym_property] = ACTIONS(2626), - [anon_sym_PROPERTY] = ACTIONS(2626), - [anon_sym_Public] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_PUBLIC] = ACTIONS(2626), - [anon_sym_Remote] = ACTIONS(2626), - [anon_sym_remote] = ACTIONS(2626), - [anon_sym_REMOTE] = ACTIONS(2626), - [anon_sym_Return] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_RETURN] = ACTIONS(2626), - [anon_sym_Static] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_STATIC] = ACTIONS(2626), - [anon_sym_Switch] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_SWITCH] = ACTIONS(2626), - [anon_sym_Throw] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_THROW] = ACTIONS(2626), - [anon_sym_Try] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_TRY] = ACTIONS(2626), - [anon_sym_Var] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_VAR] = ACTIONS(2626), - [anon_sym_While] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_WHILE] = ACTIONS(2626), - [anon_sym_With] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_WITH] = ACTIONS(2626), - [sym_cf_comment] = ACTIONS(2624), - [sym__java_block_open] = ACTIONS(2624), - [sym__static_type_prefix] = ACTIONS(2624), + [STATE(580)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Else] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_ELSE] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(2690), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, - [STATE(582)] = { + [STATE(581)] = { [ts_builtin_sym_end] = ACTIONS(2692), [sym_identifier] = ACTIONS(2694), [anon_sym_LBRACE] = ACTIONS(2692), [anon_sym_RBRACE] = ACTIONS(2692), [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2696), [anon_sym_let] = ACTIONS(2694), [anon_sym_LBRACK] = ACTIONS(2692), [anon_sym_Query] = ACTIONS(2694), @@ -133966,1491 +133945,1495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_With] = ACTIONS(2694), [anon_sym_with] = ACTIONS(2694), [anon_sym_WITH] = ACTIONS(2694), + [sym__automatic_semicolon] = ACTIONS(2696), [sym_cf_comment] = ACTIONS(2692), [sym__java_block_open] = ACTIONS(2692), [sym__static_type_prefix] = ACTIONS(2692), }, + [STATE(582)] = { + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_Query] = ACTIONS(1957), + [anon_sym_query] = ACTIONS(1957), + [anon_sym_QUERY] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1959), + [aux_sym_unary_operator_token1] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1957), + [aux_sym_number_token2] = ACTIONS(1959), + [anon_sym_This] = ACTIONS(1957), + [anon_sym_this] = ACTIONS(1957), + [anon_sym_THIS] = ACTIONS(1957), + [anon_sym_Super] = ACTIONS(1957), + [anon_sym_super] = ACTIONS(1957), + [anon_sym_SUPER] = ACTIONS(1957), + [anon_sym_True] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_TRUE] = ACTIONS(1957), + [anon_sym_False] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_FALSE] = ACTIONS(1957), + [anon_sym_Null] = ACTIONS(1957), + [anon_sym_null] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_Undefined] = ACTIONS(1957), + [anon_sym_undefined] = ACTIONS(1957), + [anon_sym_UNDEFINED] = ACTIONS(1957), + [anon_sym_get] = ACTIONS(1957), + [anon_sym_set] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1957), + [sym_hash_empty] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_QueryExecute] = ACTIONS(1957), + [anon_sym_queryexecute] = ACTIONS(1957), + [anon_sym_QUERYEXECUTE] = ACTIONS(1957), + [anon_sym_queryExecute] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1957), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1959), + [anon_sym_Abstract] = ACTIONS(1957), + [anon_sym_abstract] = ACTIONS(1957), + [anon_sym_ABSTRACT] = ACTIONS(1957), + [anon_sym_Break] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_BREAK] = ACTIONS(1957), + [anon_sym_Case] = ACTIONS(1957), + [anon_sym_case] = ACTIONS(1957), + [anon_sym_CASE] = ACTIONS(1957), + [anon_sym_Component] = ACTIONS(1957), + [anon_sym_component] = ACTIONS(1957), + [anon_sym_COMPONENT] = ACTIONS(1957), + [anon_sym_Continue] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_CONTINUE] = ACTIONS(1957), + [anon_sym_Debugger] = ACTIONS(1957), + [anon_sym_debugger] = ACTIONS(1957), + [anon_sym_DEBUGGER] = ACTIONS(1957), + [anon_sym_Default] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_DEFAULT] = ACTIONS(1957), + [anon_sym_Do] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_DO] = ACTIONS(1957), + [anon_sym_Else] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_ELSE] = ACTIONS(1957), + [anon_sym_Final] = ACTIONS(1957), + [anon_sym_final] = ACTIONS(1957), + [anon_sym_FINAL] = ACTIONS(1957), + [anon_sym_For] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_FOR] = ACTIONS(1957), + [anon_sym_Function] = ACTIONS(1957), + [anon_sym_function] = ACTIONS(1957), + [anon_sym_FUNCTION] = ACTIONS(1957), + [anon_sym_If] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_IF] = ACTIONS(1957), + [anon_sym_Import] = ACTIONS(1957), + [anon_sym_import] = ACTIONS(1957), + [anon_sym_IMPORT] = ACTIONS(1957), + [anon_sym_Include] = ACTIONS(1957), + [anon_sym_include] = ACTIONS(1957), + [anon_sym_INCLUDE] = ACTIONS(1957), + [anon_sym_Interface] = ACTIONS(1957), + [anon_sym_interface] = ACTIONS(1957), + [anon_sym_INTERFACE] = ACTIONS(1957), + [anon_sym_New] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_NEW] = ACTIONS(1957), + [anon_sym_Package] = ACTIONS(1957), + [anon_sym_package] = ACTIONS(1957), + [anon_sym_PACKAGE] = ACTIONS(1957), + [anon_sym_Private] = ACTIONS(1957), + [anon_sym_private] = ACTIONS(1957), + [anon_sym_PRIVATE] = ACTIONS(1957), + [anon_sym_Property] = ACTIONS(1957), + [anon_sym_property] = ACTIONS(1957), + [anon_sym_PROPERTY] = ACTIONS(1957), + [anon_sym_Public] = ACTIONS(1957), + [anon_sym_public] = ACTIONS(1957), + [anon_sym_PUBLIC] = ACTIONS(1957), + [anon_sym_Remote] = ACTIONS(1957), + [anon_sym_remote] = ACTIONS(1957), + [anon_sym_REMOTE] = ACTIONS(1957), + [anon_sym_Return] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_RETURN] = ACTIONS(1957), + [anon_sym_Static] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_STATIC] = ACTIONS(1957), + [anon_sym_Switch] = ACTIONS(1957), + [anon_sym_switch] = ACTIONS(1957), + [anon_sym_SWITCH] = ACTIONS(1957), + [anon_sym_Throw] = ACTIONS(1957), + [anon_sym_throw] = ACTIONS(1957), + [anon_sym_THROW] = ACTIONS(1957), + [anon_sym_Try] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_TRY] = ACTIONS(1957), + [anon_sym_Var] = ACTIONS(1957), + [anon_sym_var] = ACTIONS(1957), + [anon_sym_VAR] = ACTIONS(1957), + [anon_sym_While] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_WHILE] = ACTIONS(1957), + [anon_sym_With] = ACTIONS(1957), + [anon_sym_with] = ACTIONS(1957), + [anon_sym_WITH] = ACTIONS(1957), + [sym__automatic_semicolon] = ACTIONS(1959), + [sym_cf_comment] = ACTIONS(1959), + [sym__java_block_open] = ACTIONS(1959), + [sym__static_type_prefix] = ACTIONS(1959), + }, [STATE(583)] = { - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_Query] = ACTIONS(2698), - [anon_sym_query] = ACTIONS(2698), - [anon_sym_QUERY] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [aux_sym_unary_operator_token1] = ACTIONS(2698), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2698), - [aux_sym_number_token2] = ACTIONS(2696), - [anon_sym_This] = ACTIONS(2698), - [anon_sym_this] = ACTIONS(2698), - [anon_sym_THIS] = ACTIONS(2698), - [anon_sym_Super] = ACTIONS(2698), - [anon_sym_super] = ACTIONS(2698), - [anon_sym_SUPER] = ACTIONS(2698), - [anon_sym_True] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_TRUE] = ACTIONS(2698), - [anon_sym_False] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [anon_sym_FALSE] = ACTIONS(2698), - [anon_sym_Null] = ACTIONS(2698), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_NULL] = ACTIONS(2698), - [anon_sym_Undefined] = ACTIONS(2698), - [anon_sym_undefined] = ACTIONS(2698), - [anon_sym_UNDEFINED] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2698), - [anon_sym_set] = ACTIONS(2698), - [anon_sym_POUND] = ACTIONS(2698), - [sym_hash_empty] = ACTIONS(2696), - [anon_sym_export] = ACTIONS(2698), - [anon_sym_QueryExecute] = ACTIONS(2698), - [anon_sym_queryexecute] = ACTIONS(2698), - [anon_sym_QUERYEXECUTE] = ACTIONS(2698), - [anon_sym_queryExecute] = ACTIONS(2698), - [anon_sym_BQUOTE] = ACTIONS(2698), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2696), - [anon_sym_Abstract] = ACTIONS(2698), - [anon_sym_abstract] = ACTIONS(2698), - [anon_sym_ABSTRACT] = ACTIONS(2698), - [anon_sym_Break] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_BREAK] = ACTIONS(2698), - [anon_sym_Case] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_CASE] = ACTIONS(2698), - [anon_sym_Component] = ACTIONS(2698), - [anon_sym_component] = ACTIONS(2698), - [anon_sym_COMPONENT] = ACTIONS(2698), - [anon_sym_Continue] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_CONTINUE] = ACTIONS(2698), - [anon_sym_Debugger] = ACTIONS(2698), - [anon_sym_debugger] = ACTIONS(2698), - [anon_sym_DEBUGGER] = ACTIONS(2698), - [anon_sym_Default] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_DEFAULT] = ACTIONS(2698), - [anon_sym_Do] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_DO] = ACTIONS(2698), - [anon_sym_Else] = ACTIONS(2698), - [anon_sym_else] = ACTIONS(2698), - [anon_sym_ELSE] = ACTIONS(2698), - [anon_sym_Final] = ACTIONS(2698), - [anon_sym_final] = ACTIONS(2698), - [anon_sym_FINAL] = ACTIONS(2698), - [anon_sym_For] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_FOR] = ACTIONS(2698), - [anon_sym_Function] = ACTIONS(2698), - [anon_sym_function] = ACTIONS(2698), - [anon_sym_FUNCTION] = ACTIONS(2698), - [anon_sym_If] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_IF] = ACTIONS(2698), - [anon_sym_Import] = ACTIONS(2698), - [anon_sym_import] = ACTIONS(2698), - [anon_sym_IMPORT] = ACTIONS(2698), - [anon_sym_Include] = ACTIONS(2698), - [anon_sym_include] = ACTIONS(2698), - [anon_sym_INCLUDE] = ACTIONS(2698), - [anon_sym_Interface] = ACTIONS(2698), - [anon_sym_interface] = ACTIONS(2698), - [anon_sym_INTERFACE] = ACTIONS(2698), - [anon_sym_New] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_NEW] = ACTIONS(2698), - [anon_sym_Package] = ACTIONS(2698), - [anon_sym_package] = ACTIONS(2698), - [anon_sym_PACKAGE] = ACTIONS(2698), - [anon_sym_Private] = ACTIONS(2698), - [anon_sym_private] = ACTIONS(2698), - [anon_sym_PRIVATE] = ACTIONS(2698), - [anon_sym_Property] = ACTIONS(2698), - [anon_sym_property] = ACTIONS(2698), - [anon_sym_PROPERTY] = ACTIONS(2698), - [anon_sym_Public] = ACTIONS(2698), - [anon_sym_public] = ACTIONS(2698), - [anon_sym_PUBLIC] = ACTIONS(2698), - [anon_sym_Remote] = ACTIONS(2698), - [anon_sym_remote] = ACTIONS(2698), - [anon_sym_REMOTE] = ACTIONS(2698), - [anon_sym_Return] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_RETURN] = ACTIONS(2698), - [anon_sym_Static] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_STATIC] = ACTIONS(2698), - [anon_sym_Switch] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_SWITCH] = ACTIONS(2698), - [anon_sym_Throw] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_THROW] = ACTIONS(2698), - [anon_sym_Try] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_TRY] = ACTIONS(2698), - [anon_sym_Var] = ACTIONS(2698), - [anon_sym_var] = ACTIONS(2698), - [anon_sym_VAR] = ACTIONS(2698), - [anon_sym_While] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_WHILE] = ACTIONS(2698), - [anon_sym_With] = ACTIONS(2698), - [anon_sym_with] = ACTIONS(2698), - [anon_sym_WITH] = ACTIONS(2698), - [sym_cf_comment] = ACTIONS(2696), - [sym__java_block_open] = ACTIONS(2696), - [sym__static_type_prefix] = ACTIONS(2696), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Else] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_ELSE] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(1588), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, [STATE(584)] = { - [ts_builtin_sym_end] = ACTIONS(2700), - [sym_identifier] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_Query] = ACTIONS(2702), - [anon_sym_query] = ACTIONS(2702), - [anon_sym_QUERY] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [aux_sym_unary_operator_token1] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2702), - [aux_sym_number_token2] = ACTIONS(2700), - [anon_sym_This] = ACTIONS(2702), - [anon_sym_this] = ACTIONS(2702), - [anon_sym_THIS] = ACTIONS(2702), - [anon_sym_Super] = ACTIONS(2702), - [anon_sym_super] = ACTIONS(2702), - [anon_sym_SUPER] = ACTIONS(2702), - [anon_sym_True] = ACTIONS(2702), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_TRUE] = ACTIONS(2702), - [anon_sym_False] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [anon_sym_FALSE] = ACTIONS(2702), - [anon_sym_Null] = ACTIONS(2702), - [anon_sym_null] = ACTIONS(2702), - [anon_sym_NULL] = ACTIONS(2702), - [anon_sym_Undefined] = ACTIONS(2702), - [anon_sym_undefined] = ACTIONS(2702), - [anon_sym_UNDEFINED] = ACTIONS(2702), - [anon_sym_get] = ACTIONS(2702), - [anon_sym_set] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(2702), - [sym_hash_empty] = ACTIONS(2700), - [anon_sym_export] = ACTIONS(2702), - [anon_sym_QueryExecute] = ACTIONS(2702), - [anon_sym_queryexecute] = ACTIONS(2702), - [anon_sym_QUERYEXECUTE] = ACTIONS(2702), - [anon_sym_queryExecute] = ACTIONS(2702), - [anon_sym_BQUOTE] = ACTIONS(2702), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2700), - [anon_sym_Abstract] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2702), - [anon_sym_ABSTRACT] = ACTIONS(2702), - [anon_sym_Break] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_BREAK] = ACTIONS(2702), - [anon_sym_Case] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_CASE] = ACTIONS(2702), - [anon_sym_Component] = ACTIONS(2702), - [anon_sym_component] = ACTIONS(2702), - [anon_sym_COMPONENT] = ACTIONS(2702), - [anon_sym_Continue] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_CONTINUE] = ACTIONS(2702), - [anon_sym_Debugger] = ACTIONS(2702), - [anon_sym_debugger] = ACTIONS(2702), - [anon_sym_DEBUGGER] = ACTIONS(2702), - [anon_sym_Default] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_DEFAULT] = ACTIONS(2702), - [anon_sym_Do] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_DO] = ACTIONS(2702), - [anon_sym_Else] = ACTIONS(2702), - [anon_sym_else] = ACTIONS(2702), - [anon_sym_ELSE] = ACTIONS(2702), - [anon_sym_Final] = ACTIONS(2702), - [anon_sym_final] = ACTIONS(2702), - [anon_sym_FINAL] = ACTIONS(2702), - [anon_sym_For] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_FOR] = ACTIONS(2702), - [anon_sym_Function] = ACTIONS(2702), - [anon_sym_function] = ACTIONS(2702), - [anon_sym_FUNCTION] = ACTIONS(2702), - [anon_sym_If] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_IF] = ACTIONS(2702), - [anon_sym_Import] = ACTIONS(2702), - [anon_sym_import] = ACTIONS(2702), - [anon_sym_IMPORT] = ACTIONS(2702), - [anon_sym_Include] = ACTIONS(2702), - [anon_sym_include] = ACTIONS(2702), - [anon_sym_INCLUDE] = ACTIONS(2702), - [anon_sym_Interface] = ACTIONS(2702), - [anon_sym_interface] = ACTIONS(2702), - [anon_sym_INTERFACE] = ACTIONS(2702), - [anon_sym_New] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_NEW] = ACTIONS(2702), - [anon_sym_Package] = ACTIONS(2702), - [anon_sym_package] = ACTIONS(2702), - [anon_sym_PACKAGE] = ACTIONS(2702), - [anon_sym_Private] = ACTIONS(2702), - [anon_sym_private] = ACTIONS(2702), - [anon_sym_PRIVATE] = ACTIONS(2702), - [anon_sym_Property] = ACTIONS(2702), - [anon_sym_property] = ACTIONS(2702), - [anon_sym_PROPERTY] = ACTIONS(2702), - [anon_sym_Public] = ACTIONS(2702), - [anon_sym_public] = ACTIONS(2702), - [anon_sym_PUBLIC] = ACTIONS(2702), - [anon_sym_Remote] = ACTIONS(2702), - [anon_sym_remote] = ACTIONS(2702), - [anon_sym_REMOTE] = ACTIONS(2702), - [anon_sym_Return] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_RETURN] = ACTIONS(2702), - [anon_sym_Static] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_STATIC] = ACTIONS(2702), - [anon_sym_Switch] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_SWITCH] = ACTIONS(2702), - [anon_sym_Throw] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_THROW] = ACTIONS(2702), - [anon_sym_Try] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_TRY] = ACTIONS(2702), - [anon_sym_Var] = ACTIONS(2702), - [anon_sym_var] = ACTIONS(2702), - [anon_sym_VAR] = ACTIONS(2702), - [anon_sym_While] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_WHILE] = ACTIONS(2702), - [anon_sym_With] = ACTIONS(2702), - [anon_sym_with] = ACTIONS(2702), - [anon_sym_WITH] = ACTIONS(2702), - [sym_cf_comment] = ACTIONS(2700), - [sym__java_block_open] = ACTIONS(2700), - [sym__static_type_prefix] = ACTIONS(2700), + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1596), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Break] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_BREAK] = ACTIONS(1598), + [anon_sym_Case] = ACTIONS(1598), + [anon_sym_case] = ACTIONS(1598), + [anon_sym_CASE] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Continue] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_CONTINUE] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Default] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_DEFAULT] = ACTIONS(1598), + [anon_sym_Do] = ACTIONS(1598), + [anon_sym_do] = ACTIONS(1598), + [anon_sym_DO] = ACTIONS(1598), + [anon_sym_Else] = ACTIONS(1598), + [anon_sym_else] = ACTIONS(1598), + [anon_sym_ELSE] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_For] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_FOR] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_If] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_IF] = ACTIONS(1598), + [anon_sym_Import] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_IMPORT] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_Interface] = ACTIONS(1598), + [anon_sym_interface] = ACTIONS(1598), + [anon_sym_INTERFACE] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Property] = ACTIONS(1598), + [anon_sym_property] = ACTIONS(1598), + [anon_sym_PROPERTY] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Return] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_RETURN] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [anon_sym_Switch] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1598), + [anon_sym_SWITCH] = ACTIONS(1598), + [anon_sym_Throw] = ACTIONS(1598), + [anon_sym_throw] = ACTIONS(1598), + [anon_sym_THROW] = ACTIONS(1598), + [anon_sym_Try] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_TRY] = ACTIONS(1598), + [anon_sym_Var] = ACTIONS(1598), + [anon_sym_var] = ACTIONS(1598), + [anon_sym_VAR] = ACTIONS(1598), + [anon_sym_While] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_WHILE] = ACTIONS(1598), + [anon_sym_With] = ACTIONS(1598), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_WITH] = ACTIONS(1598), + [sym__automatic_semicolon] = ACTIONS(1596), + [sym_cf_comment] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), }, [STATE(585)] = { - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_Query] = ACTIONS(2706), - [anon_sym_query] = ACTIONS(2706), - [anon_sym_QUERY] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [aux_sym_unary_operator_token1] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2706), - [aux_sym_number_token2] = ACTIONS(2704), - [anon_sym_This] = ACTIONS(2706), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_THIS] = ACTIONS(2706), - [anon_sym_Super] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2706), - [anon_sym_SUPER] = ACTIONS(2706), - [anon_sym_True] = ACTIONS(2706), - [anon_sym_true] = ACTIONS(2706), - [anon_sym_TRUE] = ACTIONS(2706), - [anon_sym_False] = ACTIONS(2706), - [anon_sym_false] = ACTIONS(2706), - [anon_sym_FALSE] = ACTIONS(2706), - [anon_sym_Null] = ACTIONS(2706), - [anon_sym_null] = ACTIONS(2706), - [anon_sym_NULL] = ACTIONS(2706), - [anon_sym_Undefined] = ACTIONS(2706), - [anon_sym_undefined] = ACTIONS(2706), - [anon_sym_UNDEFINED] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(2706), - [sym_hash_empty] = ACTIONS(2704), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_QueryExecute] = ACTIONS(2706), - [anon_sym_queryexecute] = ACTIONS(2706), - [anon_sym_QUERYEXECUTE] = ACTIONS(2706), - [anon_sym_queryExecute] = ACTIONS(2706), - [anon_sym_BQUOTE] = ACTIONS(2706), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2704), - [anon_sym_Abstract] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_ABSTRACT] = ACTIONS(2706), - [anon_sym_Break] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_BREAK] = ACTIONS(2706), - [anon_sym_Case] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_CASE] = ACTIONS(2706), - [anon_sym_Component] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_COMPONENT] = ACTIONS(2706), - [anon_sym_Continue] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_CONTINUE] = ACTIONS(2706), - [anon_sym_Debugger] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_DEBUGGER] = ACTIONS(2706), - [anon_sym_Default] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_DEFAULT] = ACTIONS(2706), - [anon_sym_Do] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_DO] = ACTIONS(2706), - [anon_sym_Else] = ACTIONS(2706), - [anon_sym_else] = ACTIONS(2706), - [anon_sym_ELSE] = ACTIONS(2706), - [anon_sym_Final] = ACTIONS(2706), - [anon_sym_final] = ACTIONS(2706), - [anon_sym_FINAL] = ACTIONS(2706), - [anon_sym_For] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_FOR] = ACTIONS(2706), - [anon_sym_Function] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_FUNCTION] = ACTIONS(2706), - [anon_sym_If] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_IF] = ACTIONS(2706), - [anon_sym_Import] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_IMPORT] = ACTIONS(2706), - [anon_sym_Include] = ACTIONS(2706), - [anon_sym_include] = ACTIONS(2706), - [anon_sym_INCLUDE] = ACTIONS(2706), - [anon_sym_Interface] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_INTERFACE] = ACTIONS(2706), - [anon_sym_New] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_NEW] = ACTIONS(2706), - [anon_sym_Package] = ACTIONS(2706), - [anon_sym_package] = ACTIONS(2706), - [anon_sym_PACKAGE] = ACTIONS(2706), - [anon_sym_Private] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_PRIVATE] = ACTIONS(2706), - [anon_sym_Property] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_PROPERTY] = ACTIONS(2706), - [anon_sym_Public] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_PUBLIC] = ACTIONS(2706), - [anon_sym_Remote] = ACTIONS(2706), - [anon_sym_remote] = ACTIONS(2706), - [anon_sym_REMOTE] = ACTIONS(2706), - [anon_sym_Return] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_RETURN] = ACTIONS(2706), - [anon_sym_Static] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_STATIC] = ACTIONS(2706), - [anon_sym_Switch] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_SWITCH] = ACTIONS(2706), - [anon_sym_Throw] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_THROW] = ACTIONS(2706), - [anon_sym_Try] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_TRY] = ACTIONS(2706), - [anon_sym_Var] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_VAR] = ACTIONS(2706), - [anon_sym_While] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_WHILE] = ACTIONS(2706), - [anon_sym_With] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_WITH] = ACTIONS(2706), - [sym_cf_comment] = ACTIONS(2704), - [sym__java_block_open] = ACTIONS(2704), - [sym__static_type_prefix] = ACTIONS(2704), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_Query] = ACTIONS(2700), + [anon_sym_query] = ACTIONS(2700), + [anon_sym_QUERY] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [aux_sym_unary_operator_token1] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2700), + [aux_sym_number_token2] = ACTIONS(2698), + [anon_sym_This] = ACTIONS(2700), + [anon_sym_this] = ACTIONS(2700), + [anon_sym_THIS] = ACTIONS(2700), + [anon_sym_Super] = ACTIONS(2700), + [anon_sym_super] = ACTIONS(2700), + [anon_sym_SUPER] = ACTIONS(2700), + [anon_sym_True] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_TRUE] = ACTIONS(2700), + [anon_sym_False] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_FALSE] = ACTIONS(2700), + [anon_sym_Null] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_Undefined] = ACTIONS(2700), + [anon_sym_undefined] = ACTIONS(2700), + [anon_sym_UNDEFINED] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [sym_hash_empty] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_QueryExecute] = ACTIONS(2700), + [anon_sym_queryexecute] = ACTIONS(2700), + [anon_sym_QUERYEXECUTE] = ACTIONS(2700), + [anon_sym_queryExecute] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(2700), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2698), + [anon_sym_Abstract] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_ABSTRACT] = ACTIONS(2700), + [anon_sym_Break] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_BREAK] = ACTIONS(2700), + [anon_sym_Case] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_CASE] = ACTIONS(2700), + [anon_sym_Component] = ACTIONS(2700), + [anon_sym_component] = ACTIONS(2700), + [anon_sym_COMPONENT] = ACTIONS(2700), + [anon_sym_Continue] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_CONTINUE] = ACTIONS(2700), + [anon_sym_Debugger] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_DEBUGGER] = ACTIONS(2700), + [anon_sym_Default] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_DEFAULT] = ACTIONS(2700), + [anon_sym_Do] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_DO] = ACTIONS(2700), + [anon_sym_Else] = ACTIONS(2700), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_ELSE] = ACTIONS(2700), + [anon_sym_Final] = ACTIONS(2700), + [anon_sym_final] = ACTIONS(2700), + [anon_sym_FINAL] = ACTIONS(2700), + [anon_sym_For] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_FOR] = ACTIONS(2700), + [anon_sym_Function] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_FUNCTION] = ACTIONS(2700), + [anon_sym_If] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_IF] = ACTIONS(2700), + [anon_sym_Import] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_IMPORT] = ACTIONS(2700), + [anon_sym_Include] = ACTIONS(2700), + [anon_sym_include] = ACTIONS(2700), + [anon_sym_INCLUDE] = ACTIONS(2700), + [anon_sym_Interface] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_INTERFACE] = ACTIONS(2700), + [anon_sym_New] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_NEW] = ACTIONS(2700), + [anon_sym_Package] = ACTIONS(2700), + [anon_sym_package] = ACTIONS(2700), + [anon_sym_PACKAGE] = ACTIONS(2700), + [anon_sym_Private] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_PRIVATE] = ACTIONS(2700), + [anon_sym_Property] = ACTIONS(2700), + [anon_sym_property] = ACTIONS(2700), + [anon_sym_PROPERTY] = ACTIONS(2700), + [anon_sym_Public] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_PUBLIC] = ACTIONS(2700), + [anon_sym_Remote] = ACTIONS(2700), + [anon_sym_remote] = ACTIONS(2700), + [anon_sym_REMOTE] = ACTIONS(2700), + [anon_sym_Return] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_RETURN] = ACTIONS(2700), + [anon_sym_Static] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_STATIC] = ACTIONS(2700), + [anon_sym_Switch] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_SWITCH] = ACTIONS(2700), + [anon_sym_Throw] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_THROW] = ACTIONS(2700), + [anon_sym_Try] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_TRY] = ACTIONS(2700), + [anon_sym_Var] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [anon_sym_VAR] = ACTIONS(2700), + [anon_sym_While] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_WHILE] = ACTIONS(2700), + [anon_sym_With] = ACTIONS(2700), + [anon_sym_with] = ACTIONS(2700), + [anon_sym_WITH] = ACTIONS(2700), + [sym_cf_comment] = ACTIONS(2698), + [sym__java_block_open] = ACTIONS(2698), + [sym__static_type_prefix] = ACTIONS(2698), }, [STATE(586)] = { - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_Query] = ACTIONS(2710), - [anon_sym_query] = ACTIONS(2710), - [anon_sym_QUERY] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_TILDE] = ACTIONS(2708), - [aux_sym_unary_operator_token1] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2710), - [aux_sym_number_token2] = ACTIONS(2708), - [anon_sym_This] = ACTIONS(2710), - [anon_sym_this] = ACTIONS(2710), - [anon_sym_THIS] = ACTIONS(2710), - [anon_sym_Super] = ACTIONS(2710), - [anon_sym_super] = ACTIONS(2710), - [anon_sym_SUPER] = ACTIONS(2710), - [anon_sym_True] = ACTIONS(2710), - [anon_sym_true] = ACTIONS(2710), - [anon_sym_TRUE] = ACTIONS(2710), - [anon_sym_False] = ACTIONS(2710), - [anon_sym_false] = ACTIONS(2710), - [anon_sym_FALSE] = ACTIONS(2710), - [anon_sym_Null] = ACTIONS(2710), - [anon_sym_null] = ACTIONS(2710), - [anon_sym_NULL] = ACTIONS(2710), - [anon_sym_Undefined] = ACTIONS(2710), - [anon_sym_undefined] = ACTIONS(2710), - [anon_sym_UNDEFINED] = ACTIONS(2710), - [anon_sym_get] = ACTIONS(2710), - [anon_sym_set] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(2710), - [sym_hash_empty] = ACTIONS(2708), - [anon_sym_export] = ACTIONS(2710), - [anon_sym_QueryExecute] = ACTIONS(2710), - [anon_sym_queryexecute] = ACTIONS(2710), - [anon_sym_QUERYEXECUTE] = ACTIONS(2710), - [anon_sym_queryExecute] = ACTIONS(2710), - [anon_sym_BQUOTE] = ACTIONS(2710), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2708), - [anon_sym_Abstract] = ACTIONS(2710), - [anon_sym_abstract] = ACTIONS(2710), - [anon_sym_ABSTRACT] = ACTIONS(2710), - [anon_sym_Break] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_BREAK] = ACTIONS(2710), - [anon_sym_Case] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_CASE] = ACTIONS(2710), - [anon_sym_Component] = ACTIONS(2710), - [anon_sym_component] = ACTIONS(2710), - [anon_sym_COMPONENT] = ACTIONS(2710), - [anon_sym_Continue] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_CONTINUE] = ACTIONS(2710), - [anon_sym_Debugger] = ACTIONS(2710), - [anon_sym_debugger] = ACTIONS(2710), - [anon_sym_DEBUGGER] = ACTIONS(2710), - [anon_sym_Default] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_DEFAULT] = ACTIONS(2710), - [anon_sym_Do] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_DO] = ACTIONS(2710), - [anon_sym_Else] = ACTIONS(2710), - [anon_sym_else] = ACTIONS(2710), - [anon_sym_ELSE] = ACTIONS(2710), - [anon_sym_Final] = ACTIONS(2710), - [anon_sym_final] = ACTIONS(2710), - [anon_sym_FINAL] = ACTIONS(2710), - [anon_sym_For] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_FOR] = ACTIONS(2710), - [anon_sym_Function] = ACTIONS(2710), - [anon_sym_function] = ACTIONS(2710), - [anon_sym_FUNCTION] = ACTIONS(2710), - [anon_sym_If] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_IF] = ACTIONS(2710), - [anon_sym_Import] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2710), - [anon_sym_IMPORT] = ACTIONS(2710), - [anon_sym_Include] = ACTIONS(2710), - [anon_sym_include] = ACTIONS(2710), - [anon_sym_INCLUDE] = ACTIONS(2710), - [anon_sym_Interface] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_INTERFACE] = ACTIONS(2710), - [anon_sym_New] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_NEW] = ACTIONS(2710), - [anon_sym_Package] = ACTIONS(2710), - [anon_sym_package] = ACTIONS(2710), - [anon_sym_PACKAGE] = ACTIONS(2710), - [anon_sym_Private] = ACTIONS(2710), - [anon_sym_private] = ACTIONS(2710), - [anon_sym_PRIVATE] = ACTIONS(2710), - [anon_sym_Property] = ACTIONS(2710), - [anon_sym_property] = ACTIONS(2710), - [anon_sym_PROPERTY] = ACTIONS(2710), - [anon_sym_Public] = ACTIONS(2710), - [anon_sym_public] = ACTIONS(2710), - [anon_sym_PUBLIC] = ACTIONS(2710), - [anon_sym_Remote] = ACTIONS(2710), - [anon_sym_remote] = ACTIONS(2710), - [anon_sym_REMOTE] = ACTIONS(2710), - [anon_sym_Return] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_RETURN] = ACTIONS(2710), - [anon_sym_Static] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_STATIC] = ACTIONS(2710), - [anon_sym_Switch] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_SWITCH] = ACTIONS(2710), - [anon_sym_Throw] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_THROW] = ACTIONS(2710), - [anon_sym_Try] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_TRY] = ACTIONS(2710), - [anon_sym_Var] = ACTIONS(2710), - [anon_sym_var] = ACTIONS(2710), - [anon_sym_VAR] = ACTIONS(2710), - [anon_sym_While] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_WHILE] = ACTIONS(2710), - [anon_sym_With] = ACTIONS(2710), - [anon_sym_with] = ACTIONS(2710), - [anon_sym_WITH] = ACTIONS(2710), - [sym_cf_comment] = ACTIONS(2708), - [sym__java_block_open] = ACTIONS(2708), - [sym__static_type_prefix] = ACTIONS(2708), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_let] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_Query] = ACTIONS(2704), + [anon_sym_query] = ACTIONS(2704), + [anon_sym_QUERY] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [aux_sym_unary_operator_token1] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2704), + [aux_sym_number_token2] = ACTIONS(2702), + [anon_sym_This] = ACTIONS(2704), + [anon_sym_this] = ACTIONS(2704), + [anon_sym_THIS] = ACTIONS(2704), + [anon_sym_Super] = ACTIONS(2704), + [anon_sym_super] = ACTIONS(2704), + [anon_sym_SUPER] = ACTIONS(2704), + [anon_sym_True] = ACTIONS(2704), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_TRUE] = ACTIONS(2704), + [anon_sym_False] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_FALSE] = ACTIONS(2704), + [anon_sym_Null] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_NULL] = ACTIONS(2704), + [anon_sym_Undefined] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [anon_sym_UNDEFINED] = ACTIONS(2704), + [anon_sym_get] = ACTIONS(2704), + [anon_sym_set] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [sym_hash_empty] = ACTIONS(2702), + [anon_sym_export] = ACTIONS(2704), + [anon_sym_QueryExecute] = ACTIONS(2704), + [anon_sym_queryexecute] = ACTIONS(2704), + [anon_sym_QUERYEXECUTE] = ACTIONS(2704), + [anon_sym_queryExecute] = ACTIONS(2704), + [anon_sym_BQUOTE] = ACTIONS(2704), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2702), + [anon_sym_Abstract] = ACTIONS(2704), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_ABSTRACT] = ACTIONS(2704), + [anon_sym_Break] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_BREAK] = ACTIONS(2704), + [anon_sym_Case] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_CASE] = ACTIONS(2704), + [anon_sym_Component] = ACTIONS(2704), + [anon_sym_component] = ACTIONS(2704), + [anon_sym_COMPONENT] = ACTIONS(2704), + [anon_sym_Continue] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_CONTINUE] = ACTIONS(2704), + [anon_sym_Debugger] = ACTIONS(2704), + [anon_sym_debugger] = ACTIONS(2704), + [anon_sym_DEBUGGER] = ACTIONS(2704), + [anon_sym_Default] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_DEFAULT] = ACTIONS(2704), + [anon_sym_Do] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_DO] = ACTIONS(2704), + [anon_sym_Else] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_ELSE] = ACTIONS(2704), + [anon_sym_Final] = ACTIONS(2704), + [anon_sym_final] = ACTIONS(2704), + [anon_sym_FINAL] = ACTIONS(2704), + [anon_sym_For] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_FOR] = ACTIONS(2704), + [anon_sym_Function] = ACTIONS(2704), + [anon_sym_function] = ACTIONS(2704), + [anon_sym_FUNCTION] = ACTIONS(2704), + [anon_sym_If] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_IF] = ACTIONS(2704), + [anon_sym_Import] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_IMPORT] = ACTIONS(2704), + [anon_sym_Include] = ACTIONS(2704), + [anon_sym_include] = ACTIONS(2704), + [anon_sym_INCLUDE] = ACTIONS(2704), + [anon_sym_Interface] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_INTERFACE] = ACTIONS(2704), + [anon_sym_New] = ACTIONS(2704), + [anon_sym_new] = ACTIONS(2704), + [anon_sym_NEW] = ACTIONS(2704), + [anon_sym_Package] = ACTIONS(2704), + [anon_sym_package] = ACTIONS(2704), + [anon_sym_PACKAGE] = ACTIONS(2704), + [anon_sym_Private] = ACTIONS(2704), + [anon_sym_private] = ACTIONS(2704), + [anon_sym_PRIVATE] = ACTIONS(2704), + [anon_sym_Property] = ACTIONS(2704), + [anon_sym_property] = ACTIONS(2704), + [anon_sym_PROPERTY] = ACTIONS(2704), + [anon_sym_Public] = ACTIONS(2704), + [anon_sym_public] = ACTIONS(2704), + [anon_sym_PUBLIC] = ACTIONS(2704), + [anon_sym_Remote] = ACTIONS(2704), + [anon_sym_remote] = ACTIONS(2704), + [anon_sym_REMOTE] = ACTIONS(2704), + [anon_sym_Return] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_RETURN] = ACTIONS(2704), + [anon_sym_Static] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_STATIC] = ACTIONS(2704), + [anon_sym_Switch] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_SWITCH] = ACTIONS(2704), + [anon_sym_Throw] = ACTIONS(2704), + [anon_sym_throw] = ACTIONS(2704), + [anon_sym_THROW] = ACTIONS(2704), + [anon_sym_Try] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_TRY] = ACTIONS(2704), + [anon_sym_Var] = ACTIONS(2704), + [anon_sym_var] = ACTIONS(2704), + [anon_sym_VAR] = ACTIONS(2704), + [anon_sym_While] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_WHILE] = ACTIONS(2704), + [anon_sym_With] = ACTIONS(2704), + [anon_sym_with] = ACTIONS(2704), + [anon_sym_WITH] = ACTIONS(2704), + [sym_cf_comment] = ACTIONS(2702), + [sym__java_block_open] = ACTIONS(2702), + [sym__static_type_prefix] = ACTIONS(2702), }, [STATE(587)] = { - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_Query] = ACTIONS(2714), - [anon_sym_query] = ACTIONS(2714), - [anon_sym_QUERY] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2712), - [aux_sym_unary_operator_token1] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2714), - [aux_sym_number_token2] = ACTIONS(2712), - [anon_sym_This] = ACTIONS(2714), - [anon_sym_this] = ACTIONS(2714), - [anon_sym_THIS] = ACTIONS(2714), - [anon_sym_Super] = ACTIONS(2714), - [anon_sym_super] = ACTIONS(2714), - [anon_sym_SUPER] = ACTIONS(2714), - [anon_sym_True] = ACTIONS(2714), - [anon_sym_true] = ACTIONS(2714), - [anon_sym_TRUE] = ACTIONS(2714), - [anon_sym_False] = ACTIONS(2714), - [anon_sym_false] = ACTIONS(2714), - [anon_sym_FALSE] = ACTIONS(2714), - [anon_sym_Null] = ACTIONS(2714), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2714), - [anon_sym_Undefined] = ACTIONS(2714), - [anon_sym_undefined] = ACTIONS(2714), - [anon_sym_UNDEFINED] = ACTIONS(2714), - [anon_sym_get] = ACTIONS(2714), - [anon_sym_set] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2714), - [sym_hash_empty] = ACTIONS(2712), - [anon_sym_export] = ACTIONS(2714), - [anon_sym_QueryExecute] = ACTIONS(2714), - [anon_sym_queryexecute] = ACTIONS(2714), - [anon_sym_QUERYEXECUTE] = ACTIONS(2714), - [anon_sym_queryExecute] = ACTIONS(2714), - [anon_sym_BQUOTE] = ACTIONS(2714), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2712), - [anon_sym_Abstract] = ACTIONS(2714), - [anon_sym_abstract] = ACTIONS(2714), - [anon_sym_ABSTRACT] = ACTIONS(2714), - [anon_sym_Break] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_BREAK] = ACTIONS(2714), - [anon_sym_Case] = ACTIONS(2714), - [anon_sym_case] = ACTIONS(2714), - [anon_sym_CASE] = ACTIONS(2714), - [anon_sym_Component] = ACTIONS(2714), - [anon_sym_component] = ACTIONS(2714), - [anon_sym_COMPONENT] = ACTIONS(2714), - [anon_sym_Continue] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_CONTINUE] = ACTIONS(2714), - [anon_sym_Debugger] = ACTIONS(2714), - [anon_sym_debugger] = ACTIONS(2714), - [anon_sym_DEBUGGER] = ACTIONS(2714), - [anon_sym_Default] = ACTIONS(2714), - [anon_sym_default] = ACTIONS(2714), - [anon_sym_DEFAULT] = ACTIONS(2714), - [anon_sym_Do] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_DO] = ACTIONS(2714), - [anon_sym_Else] = ACTIONS(2714), - [anon_sym_else] = ACTIONS(2714), - [anon_sym_ELSE] = ACTIONS(2714), - [anon_sym_Final] = ACTIONS(2714), - [anon_sym_final] = ACTIONS(2714), - [anon_sym_FINAL] = ACTIONS(2714), - [anon_sym_For] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_FOR] = ACTIONS(2714), - [anon_sym_Function] = ACTIONS(2714), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_FUNCTION] = ACTIONS(2714), - [anon_sym_If] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_IF] = ACTIONS(2714), - [anon_sym_Import] = ACTIONS(2714), - [anon_sym_import] = ACTIONS(2714), - [anon_sym_IMPORT] = ACTIONS(2714), - [anon_sym_Include] = ACTIONS(2714), - [anon_sym_include] = ACTIONS(2714), - [anon_sym_INCLUDE] = ACTIONS(2714), - [anon_sym_Interface] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_INTERFACE] = ACTIONS(2714), - [anon_sym_New] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_NEW] = ACTIONS(2714), - [anon_sym_Package] = ACTIONS(2714), - [anon_sym_package] = ACTIONS(2714), - [anon_sym_PACKAGE] = ACTIONS(2714), - [anon_sym_Private] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [anon_sym_PRIVATE] = ACTIONS(2714), - [anon_sym_Property] = ACTIONS(2714), - [anon_sym_property] = ACTIONS(2714), - [anon_sym_PROPERTY] = ACTIONS(2714), - [anon_sym_Public] = ACTIONS(2714), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_PUBLIC] = ACTIONS(2714), - [anon_sym_Remote] = ACTIONS(2714), - [anon_sym_remote] = ACTIONS(2714), - [anon_sym_REMOTE] = ACTIONS(2714), - [anon_sym_Return] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_RETURN] = ACTIONS(2714), - [anon_sym_Static] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_STATIC] = ACTIONS(2714), - [anon_sym_Switch] = ACTIONS(2714), - [anon_sym_switch] = ACTIONS(2714), - [anon_sym_SWITCH] = ACTIONS(2714), - [anon_sym_Throw] = ACTIONS(2714), - [anon_sym_throw] = ACTIONS(2714), - [anon_sym_THROW] = ACTIONS(2714), - [anon_sym_Try] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_TRY] = ACTIONS(2714), - [anon_sym_Var] = ACTIONS(2714), - [anon_sym_var] = ACTIONS(2714), - [anon_sym_VAR] = ACTIONS(2714), - [anon_sym_While] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_WHILE] = ACTIONS(2714), - [anon_sym_With] = ACTIONS(2714), - [anon_sym_with] = ACTIONS(2714), - [anon_sym_WITH] = ACTIONS(2714), - [sym_cf_comment] = ACTIONS(2712), - [sym__java_block_open] = ACTIONS(2712), - [sym__static_type_prefix] = ACTIONS(2712), + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_Query] = ACTIONS(2708), + [anon_sym_query] = ACTIONS(2708), + [anon_sym_QUERY] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [aux_sym_unary_operator_token1] = ACTIONS(2708), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2708), + [aux_sym_number_token2] = ACTIONS(2706), + [anon_sym_This] = ACTIONS(2708), + [anon_sym_this] = ACTIONS(2708), + [anon_sym_THIS] = ACTIONS(2708), + [anon_sym_Super] = ACTIONS(2708), + [anon_sym_super] = ACTIONS(2708), + [anon_sym_SUPER] = ACTIONS(2708), + [anon_sym_True] = ACTIONS(2708), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_TRUE] = ACTIONS(2708), + [anon_sym_False] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_FALSE] = ACTIONS(2708), + [anon_sym_Null] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_NULL] = ACTIONS(2708), + [anon_sym_Undefined] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [anon_sym_UNDEFINED] = ACTIONS(2708), + [anon_sym_get] = ACTIONS(2708), + [anon_sym_set] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [sym_hash_empty] = ACTIONS(2706), + [anon_sym_export] = ACTIONS(2708), + [anon_sym_QueryExecute] = ACTIONS(2708), + [anon_sym_queryexecute] = ACTIONS(2708), + [anon_sym_QUERYEXECUTE] = ACTIONS(2708), + [anon_sym_queryExecute] = ACTIONS(2708), + [anon_sym_BQUOTE] = ACTIONS(2708), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2706), + [anon_sym_Abstract] = ACTIONS(2708), + [anon_sym_abstract] = ACTIONS(2708), + [anon_sym_ABSTRACT] = ACTIONS(2708), + [anon_sym_Break] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_BREAK] = ACTIONS(2708), + [anon_sym_Case] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_CASE] = ACTIONS(2708), + [anon_sym_Component] = ACTIONS(2708), + [anon_sym_component] = ACTIONS(2708), + [anon_sym_COMPONENT] = ACTIONS(2708), + [anon_sym_Continue] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_CONTINUE] = ACTIONS(2708), + [anon_sym_Debugger] = ACTIONS(2708), + [anon_sym_debugger] = ACTIONS(2708), + [anon_sym_DEBUGGER] = ACTIONS(2708), + [anon_sym_Default] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_DEFAULT] = ACTIONS(2708), + [anon_sym_Do] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_DO] = ACTIONS(2708), + [anon_sym_Else] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_ELSE] = ACTIONS(2708), + [anon_sym_Final] = ACTIONS(2708), + [anon_sym_final] = ACTIONS(2708), + [anon_sym_FINAL] = ACTIONS(2708), + [anon_sym_For] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_FOR] = ACTIONS(2708), + [anon_sym_Function] = ACTIONS(2708), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_FUNCTION] = ACTIONS(2708), + [anon_sym_If] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_IF] = ACTIONS(2708), + [anon_sym_Import] = ACTIONS(2708), + [anon_sym_import] = ACTIONS(2708), + [anon_sym_IMPORT] = ACTIONS(2708), + [anon_sym_Include] = ACTIONS(2708), + [anon_sym_include] = ACTIONS(2708), + [anon_sym_INCLUDE] = ACTIONS(2708), + [anon_sym_Interface] = ACTIONS(2708), + [anon_sym_interface] = ACTIONS(2708), + [anon_sym_INTERFACE] = ACTIONS(2708), + [anon_sym_New] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_NEW] = ACTIONS(2708), + [anon_sym_Package] = ACTIONS(2708), + [anon_sym_package] = ACTIONS(2708), + [anon_sym_PACKAGE] = ACTIONS(2708), + [anon_sym_Private] = ACTIONS(2708), + [anon_sym_private] = ACTIONS(2708), + [anon_sym_PRIVATE] = ACTIONS(2708), + [anon_sym_Property] = ACTIONS(2708), + [anon_sym_property] = ACTIONS(2708), + [anon_sym_PROPERTY] = ACTIONS(2708), + [anon_sym_Public] = ACTIONS(2708), + [anon_sym_public] = ACTIONS(2708), + [anon_sym_PUBLIC] = ACTIONS(2708), + [anon_sym_Remote] = ACTIONS(2708), + [anon_sym_remote] = ACTIONS(2708), + [anon_sym_REMOTE] = ACTIONS(2708), + [anon_sym_Return] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_RETURN] = ACTIONS(2708), + [anon_sym_Static] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_STATIC] = ACTIONS(2708), + [anon_sym_Switch] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_SWITCH] = ACTIONS(2708), + [anon_sym_Throw] = ACTIONS(2708), + [anon_sym_throw] = ACTIONS(2708), + [anon_sym_THROW] = ACTIONS(2708), + [anon_sym_Try] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_TRY] = ACTIONS(2708), + [anon_sym_Var] = ACTIONS(2708), + [anon_sym_var] = ACTIONS(2708), + [anon_sym_VAR] = ACTIONS(2708), + [anon_sym_While] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_WHILE] = ACTIONS(2708), + [anon_sym_With] = ACTIONS(2708), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_WITH] = ACTIONS(2708), + [sym_cf_comment] = ACTIONS(2706), + [sym__java_block_open] = ACTIONS(2706), + [sym__static_type_prefix] = ACTIONS(2706), }, [STATE(588)] = { - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_Query] = ACTIONS(2718), - [anon_sym_query] = ACTIONS(2718), - [anon_sym_QUERY] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_unary_operator_token1] = ACTIONS(2718), - [anon_sym_PLUS_PLUS] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2716), - [anon_sym_DQUOTE] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2718), - [aux_sym_number_token2] = ACTIONS(2716), - [anon_sym_This] = ACTIONS(2718), - [anon_sym_this] = ACTIONS(2718), - [anon_sym_THIS] = ACTIONS(2718), - [anon_sym_Super] = ACTIONS(2718), - [anon_sym_super] = ACTIONS(2718), - [anon_sym_SUPER] = ACTIONS(2718), - [anon_sym_True] = ACTIONS(2718), - [anon_sym_true] = ACTIONS(2718), - [anon_sym_TRUE] = ACTIONS(2718), - [anon_sym_False] = ACTIONS(2718), - [anon_sym_false] = ACTIONS(2718), - [anon_sym_FALSE] = ACTIONS(2718), - [anon_sym_Null] = ACTIONS(2718), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_NULL] = ACTIONS(2718), - [anon_sym_Undefined] = ACTIONS(2718), - [anon_sym_undefined] = ACTIONS(2718), - [anon_sym_UNDEFINED] = ACTIONS(2718), - [anon_sym_get] = ACTIONS(2718), - [anon_sym_set] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(2718), - [sym_hash_empty] = ACTIONS(2716), - [anon_sym_export] = ACTIONS(2718), - [anon_sym_QueryExecute] = ACTIONS(2718), - [anon_sym_queryexecute] = ACTIONS(2718), - [anon_sym_QUERYEXECUTE] = ACTIONS(2718), - [anon_sym_queryExecute] = ACTIONS(2718), - [anon_sym_BQUOTE] = ACTIONS(2718), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2716), - [anon_sym_Abstract] = ACTIONS(2718), - [anon_sym_abstract] = ACTIONS(2718), - [anon_sym_ABSTRACT] = ACTIONS(2718), - [anon_sym_Break] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_BREAK] = ACTIONS(2718), - [anon_sym_Case] = ACTIONS(2718), - [anon_sym_case] = ACTIONS(2718), - [anon_sym_CASE] = ACTIONS(2718), - [anon_sym_Component] = ACTIONS(2718), - [anon_sym_component] = ACTIONS(2718), - [anon_sym_COMPONENT] = ACTIONS(2718), - [anon_sym_Continue] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_CONTINUE] = ACTIONS(2718), - [anon_sym_Debugger] = ACTIONS(2718), - [anon_sym_debugger] = ACTIONS(2718), - [anon_sym_DEBUGGER] = ACTIONS(2718), - [anon_sym_Default] = ACTIONS(2718), - [anon_sym_default] = ACTIONS(2718), - [anon_sym_DEFAULT] = ACTIONS(2718), - [anon_sym_Do] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_DO] = ACTIONS(2718), - [anon_sym_Else] = ACTIONS(2718), - [anon_sym_else] = ACTIONS(2718), - [anon_sym_ELSE] = ACTIONS(2718), - [anon_sym_Final] = ACTIONS(2718), - [anon_sym_final] = ACTIONS(2718), - [anon_sym_FINAL] = ACTIONS(2718), - [anon_sym_For] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_FOR] = ACTIONS(2718), - [anon_sym_Function] = ACTIONS(2718), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_FUNCTION] = ACTIONS(2718), - [anon_sym_If] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_IF] = ACTIONS(2718), - [anon_sym_Import] = ACTIONS(2718), - [anon_sym_import] = ACTIONS(2718), - [anon_sym_IMPORT] = ACTIONS(2718), - [anon_sym_Include] = ACTIONS(2718), - [anon_sym_include] = ACTIONS(2718), - [anon_sym_INCLUDE] = ACTIONS(2718), - [anon_sym_Interface] = ACTIONS(2718), - [anon_sym_interface] = ACTIONS(2718), - [anon_sym_INTERFACE] = ACTIONS(2718), - [anon_sym_New] = ACTIONS(2718), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_NEW] = ACTIONS(2718), - [anon_sym_Package] = ACTIONS(2718), - [anon_sym_package] = ACTIONS(2718), - [anon_sym_PACKAGE] = ACTIONS(2718), - [anon_sym_Private] = ACTIONS(2718), - [anon_sym_private] = ACTIONS(2718), - [anon_sym_PRIVATE] = ACTIONS(2718), - [anon_sym_Property] = ACTIONS(2718), - [anon_sym_property] = ACTIONS(2718), - [anon_sym_PROPERTY] = ACTIONS(2718), - [anon_sym_Public] = ACTIONS(2718), - [anon_sym_public] = ACTIONS(2718), - [anon_sym_PUBLIC] = ACTIONS(2718), - [anon_sym_Remote] = ACTIONS(2718), - [anon_sym_remote] = ACTIONS(2718), - [anon_sym_REMOTE] = ACTIONS(2718), - [anon_sym_Return] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_RETURN] = ACTIONS(2718), - [anon_sym_Static] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_STATIC] = ACTIONS(2718), - [anon_sym_Switch] = ACTIONS(2718), - [anon_sym_switch] = ACTIONS(2718), - [anon_sym_SWITCH] = ACTIONS(2718), - [anon_sym_Throw] = ACTIONS(2718), - [anon_sym_throw] = ACTIONS(2718), - [anon_sym_THROW] = ACTIONS(2718), - [anon_sym_Try] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_TRY] = ACTIONS(2718), - [anon_sym_Var] = ACTIONS(2718), - [anon_sym_var] = ACTIONS(2718), - [anon_sym_VAR] = ACTIONS(2718), - [anon_sym_While] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_WHILE] = ACTIONS(2718), - [anon_sym_With] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_WITH] = ACTIONS(2718), - [sym_cf_comment] = ACTIONS(2716), - [sym__java_block_open] = ACTIONS(2716), - [sym__static_type_prefix] = ACTIONS(2716), - }, - [STATE(589)] = { - [sym_arguments] = STATE(621), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_Query] = ACTIONS(1722), - [anon_sym_query] = ACTIONS(1722), - [anon_sym_QUERY] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [aux_sym_unary_operator_token1] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1722), - [aux_sym_number_token2] = ACTIONS(1722), - [anon_sym_This] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1722), - [anon_sym_THIS] = ACTIONS(1722), - [anon_sym_Super] = ACTIONS(1722), - [anon_sym_super] = ACTIONS(1722), - [anon_sym_SUPER] = ACTIONS(1722), - [anon_sym_True] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_TRUE] = ACTIONS(1722), - [anon_sym_False] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [anon_sym_FALSE] = ACTIONS(1722), - [anon_sym_Null] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1722), - [anon_sym_NULL] = ACTIONS(1722), - [anon_sym_Undefined] = ACTIONS(1722), - [anon_sym_undefined] = ACTIONS(1722), - [anon_sym_UNDEFINED] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [sym_hash_empty] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_QueryExecute] = ACTIONS(1722), - [anon_sym_queryexecute] = ACTIONS(1722), - [anon_sym_QUERYEXECUTE] = ACTIONS(1722), - [anon_sym_queryExecute] = ACTIONS(1722), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_Abstract] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_ABSTRACT] = ACTIONS(1722), - [anon_sym_Component] = ACTIONS(1722), - [anon_sym_component] = ACTIONS(1722), - [anon_sym_COMPONENT] = ACTIONS(1722), - [anon_sym_Debugger] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_DEBUGGER] = ACTIONS(1722), - [anon_sym_Final] = ACTIONS(1722), - [anon_sym_final] = ACTIONS(1722), - [anon_sym_FINAL] = ACTIONS(1722), - [anon_sym_Function] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_FUNCTION] = ACTIONS(1722), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(1722), - [anon_sym_include] = ACTIONS(1722), - [anon_sym_INCLUDE] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_NEW] = ACTIONS(1722), - [anon_sym_Package] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1722), - [anon_sym_PACKAGE] = ACTIONS(1722), - [anon_sym_Private] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_PRIVATE] = ACTIONS(1722), - [anon_sym_Public] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_PUBLIC] = ACTIONS(1722), - [anon_sym_Remote] = ACTIONS(1722), - [anon_sym_remote] = ACTIONS(1722), - [anon_sym_REMOTE] = ACTIONS(1722), - [anon_sym_Static] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_STATIC] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym__java_block_open] = ACTIONS(1720), - [sym__static_type_prefix] = ACTIONS(1720), - }, - [STATE(590)] = { - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_Query] = ACTIONS(2724), - [anon_sym_query] = ACTIONS(2724), - [anon_sym_QUERY] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2722), - [aux_sym_unary_operator_token1] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_SQUOTE] = ACTIONS(2722), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2724), - [aux_sym_number_token2] = ACTIONS(2722), - [anon_sym_This] = ACTIONS(2724), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_THIS] = ACTIONS(2724), - [anon_sym_Super] = ACTIONS(2724), - [anon_sym_super] = ACTIONS(2724), - [anon_sym_SUPER] = ACTIONS(2724), - [anon_sym_True] = ACTIONS(2724), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_TRUE] = ACTIONS(2724), - [anon_sym_False] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [anon_sym_FALSE] = ACTIONS(2724), - [anon_sym_Null] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_NULL] = ACTIONS(2724), - [anon_sym_Undefined] = ACTIONS(2724), - [anon_sym_undefined] = ACTIONS(2724), - [anon_sym_UNDEFINED] = ACTIONS(2724), - [anon_sym_get] = ACTIONS(2724), - [anon_sym_set] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2724), - [sym_hash_empty] = ACTIONS(2722), - [anon_sym_export] = ACTIONS(2724), - [anon_sym_QueryExecute] = ACTIONS(2724), - [anon_sym_queryexecute] = ACTIONS(2724), - [anon_sym_QUERYEXECUTE] = ACTIONS(2724), - [anon_sym_queryExecute] = ACTIONS(2724), - [anon_sym_BQUOTE] = ACTIONS(2724), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2722), - [anon_sym_Abstract] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_ABSTRACT] = ACTIONS(2724), - [anon_sym_Break] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_BREAK] = ACTIONS(2724), - [anon_sym_Case] = ACTIONS(2724), - [anon_sym_case] = ACTIONS(2724), - [anon_sym_CASE] = ACTIONS(2724), - [anon_sym_Component] = ACTIONS(2724), - [anon_sym_component] = ACTIONS(2724), - [anon_sym_COMPONENT] = ACTIONS(2724), - [anon_sym_Continue] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_CONTINUE] = ACTIONS(2724), - [anon_sym_Debugger] = ACTIONS(2724), - [anon_sym_debugger] = ACTIONS(2724), - [anon_sym_DEBUGGER] = ACTIONS(2724), - [anon_sym_Default] = ACTIONS(2724), - [anon_sym_default] = ACTIONS(2724), - [anon_sym_DEFAULT] = ACTIONS(2724), - [anon_sym_Do] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_DO] = ACTIONS(2724), - [anon_sym_Else] = ACTIONS(2724), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_ELSE] = ACTIONS(2724), - [anon_sym_Final] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_FINAL] = ACTIONS(2724), - [anon_sym_For] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_FOR] = ACTIONS(2724), - [anon_sym_Function] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_FUNCTION] = ACTIONS(2724), - [anon_sym_If] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_IF] = ACTIONS(2724), - [anon_sym_Import] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_IMPORT] = ACTIONS(2724), - [anon_sym_Include] = ACTIONS(2724), - [anon_sym_include] = ACTIONS(2724), - [anon_sym_INCLUDE] = ACTIONS(2724), - [anon_sym_Interface] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_INTERFACE] = ACTIONS(2724), - [anon_sym_New] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_NEW] = ACTIONS(2724), - [anon_sym_Package] = ACTIONS(2724), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_PACKAGE] = ACTIONS(2724), - [anon_sym_Private] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_PRIVATE] = ACTIONS(2724), - [anon_sym_Property] = ACTIONS(2724), - [anon_sym_property] = ACTIONS(2724), - [anon_sym_PROPERTY] = ACTIONS(2724), - [anon_sym_Public] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_PUBLIC] = ACTIONS(2724), - [anon_sym_Remote] = ACTIONS(2724), - [anon_sym_remote] = ACTIONS(2724), - [anon_sym_REMOTE] = ACTIONS(2724), - [anon_sym_Return] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_RETURN] = ACTIONS(2724), - [anon_sym_Static] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_STATIC] = ACTIONS(2724), - [anon_sym_Switch] = ACTIONS(2724), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_SWITCH] = ACTIONS(2724), - [anon_sym_Throw] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_THROW] = ACTIONS(2724), - [anon_sym_Try] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_TRY] = ACTIONS(2724), - [anon_sym_Var] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [anon_sym_VAR] = ACTIONS(2724), - [anon_sym_While] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_WHILE] = ACTIONS(2724), - [anon_sym_With] = ACTIONS(2724), - [anon_sym_with] = ACTIONS(2724), - [anon_sym_WITH] = ACTIONS(2724), - [sym_cf_comment] = ACTIONS(2722), - [sym__java_block_open] = ACTIONS(2722), - [sym__static_type_prefix] = ACTIONS(2722), - }, - [STATE(591)] = { - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_Query] = ACTIONS(2728), - [anon_sym_query] = ACTIONS(2728), - [anon_sym_QUERY] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [aux_sym_unary_operator_token1] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2726), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2728), - [aux_sym_number_token2] = ACTIONS(2726), - [anon_sym_This] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2728), - [anon_sym_THIS] = ACTIONS(2728), - [anon_sym_Super] = ACTIONS(2728), - [anon_sym_super] = ACTIONS(2728), - [anon_sym_SUPER] = ACTIONS(2728), - [anon_sym_True] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_TRUE] = ACTIONS(2728), - [anon_sym_False] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [anon_sym_FALSE] = ACTIONS(2728), - [anon_sym_Null] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2728), - [anon_sym_NULL] = ACTIONS(2728), - [anon_sym_Undefined] = ACTIONS(2728), - [anon_sym_undefined] = ACTIONS(2728), - [anon_sym_UNDEFINED] = ACTIONS(2728), - [anon_sym_get] = ACTIONS(2728), - [anon_sym_set] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [sym_hash_empty] = ACTIONS(2726), - [anon_sym_export] = ACTIONS(2728), - [anon_sym_QueryExecute] = ACTIONS(2728), - [anon_sym_queryexecute] = ACTIONS(2728), - [anon_sym_QUERYEXECUTE] = ACTIONS(2728), - [anon_sym_queryExecute] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2726), - [anon_sym_Abstract] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_ABSTRACT] = ACTIONS(2728), - [anon_sym_Break] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_BREAK] = ACTIONS(2728), - [anon_sym_Case] = ACTIONS(2728), - [anon_sym_case] = ACTIONS(2728), - [anon_sym_CASE] = ACTIONS(2728), - [anon_sym_Component] = ACTIONS(2728), - [anon_sym_component] = ACTIONS(2728), - [anon_sym_COMPONENT] = ACTIONS(2728), - [anon_sym_Continue] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_CONTINUE] = ACTIONS(2728), - [anon_sym_Debugger] = ACTIONS(2728), - [anon_sym_debugger] = ACTIONS(2728), - [anon_sym_DEBUGGER] = ACTIONS(2728), - [anon_sym_Default] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_DEFAULT] = ACTIONS(2728), - [anon_sym_Do] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_DO] = ACTIONS(2728), - [anon_sym_Else] = ACTIONS(2728), - [anon_sym_else] = ACTIONS(2728), - [anon_sym_ELSE] = ACTIONS(2728), - [anon_sym_Final] = ACTIONS(2728), - [anon_sym_final] = ACTIONS(2728), - [anon_sym_FINAL] = ACTIONS(2728), - [anon_sym_For] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_FOR] = ACTIONS(2728), - [anon_sym_Function] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_FUNCTION] = ACTIONS(2728), - [anon_sym_If] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_IF] = ACTIONS(2728), - [anon_sym_Import] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_IMPORT] = ACTIONS(2728), - [anon_sym_Include] = ACTIONS(2728), - [anon_sym_include] = ACTIONS(2728), - [anon_sym_INCLUDE] = ACTIONS(2728), - [anon_sym_Interface] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_INTERFACE] = ACTIONS(2728), - [anon_sym_New] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_NEW] = ACTIONS(2728), - [anon_sym_Package] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2728), - [anon_sym_PACKAGE] = ACTIONS(2728), - [anon_sym_Private] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_PRIVATE] = ACTIONS(2728), - [anon_sym_Property] = ACTIONS(2728), - [anon_sym_property] = ACTIONS(2728), - [anon_sym_PROPERTY] = ACTIONS(2728), - [anon_sym_Public] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_PUBLIC] = ACTIONS(2728), - [anon_sym_Remote] = ACTIONS(2728), - [anon_sym_remote] = ACTIONS(2728), - [anon_sym_REMOTE] = ACTIONS(2728), - [anon_sym_Return] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_RETURN] = ACTIONS(2728), - [anon_sym_Static] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_STATIC] = ACTIONS(2728), - [anon_sym_Switch] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_SWITCH] = ACTIONS(2728), - [anon_sym_Throw] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_THROW] = ACTIONS(2728), - [anon_sym_Try] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_TRY] = ACTIONS(2728), - [anon_sym_Var] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [anon_sym_VAR] = ACTIONS(2728), - [anon_sym_While] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_WHILE] = ACTIONS(2728), - [anon_sym_With] = ACTIONS(2728), - [anon_sym_with] = ACTIONS(2728), - [anon_sym_WITH] = ACTIONS(2728), - [sym_cf_comment] = ACTIONS(2726), - [sym__java_block_open] = ACTIONS(2726), - [sym__static_type_prefix] = ACTIONS(2726), - }, - [STATE(592)] = { - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_Query] = ACTIONS(2732), - [anon_sym_query] = ACTIONS(2732), - [anon_sym_QUERY] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [aux_sym_unary_operator_token1] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2730), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_Query] = ACTIONS(2712), + [anon_sym_query] = ACTIONS(2712), + [anon_sym_QUERY] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_unary_operator_token1] = ACTIONS(2712), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2712), + [aux_sym_number_token2] = ACTIONS(2710), + [anon_sym_This] = ACTIONS(2712), + [anon_sym_this] = ACTIONS(2712), + [anon_sym_THIS] = ACTIONS(2712), + [anon_sym_Super] = ACTIONS(2712), + [anon_sym_super] = ACTIONS(2712), + [anon_sym_SUPER] = ACTIONS(2712), + [anon_sym_True] = ACTIONS(2712), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_TRUE] = ACTIONS(2712), + [anon_sym_False] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_FALSE] = ACTIONS(2712), + [anon_sym_Null] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_Undefined] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [anon_sym_UNDEFINED] = ACTIONS(2712), + [anon_sym_get] = ACTIONS(2712), + [anon_sym_set] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [sym_hash_empty] = ACTIONS(2710), + [anon_sym_export] = ACTIONS(2712), + [anon_sym_QueryExecute] = ACTIONS(2712), + [anon_sym_queryexecute] = ACTIONS(2712), + [anon_sym_QUERYEXECUTE] = ACTIONS(2712), + [anon_sym_queryExecute] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2710), + [anon_sym_Abstract] = ACTIONS(2712), + [anon_sym_abstract] = ACTIONS(2712), + [anon_sym_ABSTRACT] = ACTIONS(2712), + [anon_sym_Break] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_BREAK] = ACTIONS(2712), + [anon_sym_Case] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_CASE] = ACTIONS(2712), + [anon_sym_Component] = ACTIONS(2712), + [anon_sym_component] = ACTIONS(2712), + [anon_sym_COMPONENT] = ACTIONS(2712), + [anon_sym_Continue] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_CONTINUE] = ACTIONS(2712), + [anon_sym_Debugger] = ACTIONS(2712), + [anon_sym_debugger] = ACTIONS(2712), + [anon_sym_DEBUGGER] = ACTIONS(2712), + [anon_sym_Default] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_DEFAULT] = ACTIONS(2712), + [anon_sym_Do] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_DO] = ACTIONS(2712), + [anon_sym_Else] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_ELSE] = ACTIONS(2712), + [anon_sym_Final] = ACTIONS(2712), + [anon_sym_final] = ACTIONS(2712), + [anon_sym_FINAL] = ACTIONS(2712), + [anon_sym_For] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_FOR] = ACTIONS(2712), + [anon_sym_Function] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(2712), + [anon_sym_FUNCTION] = ACTIONS(2712), + [anon_sym_If] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_IF] = ACTIONS(2712), + [anon_sym_Import] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_IMPORT] = ACTIONS(2712), + [anon_sym_Include] = ACTIONS(2712), + [anon_sym_include] = ACTIONS(2712), + [anon_sym_INCLUDE] = ACTIONS(2712), + [anon_sym_Interface] = ACTIONS(2712), + [anon_sym_interface] = ACTIONS(2712), + [anon_sym_INTERFACE] = ACTIONS(2712), + [anon_sym_New] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(2712), + [anon_sym_NEW] = ACTIONS(2712), + [anon_sym_Package] = ACTIONS(2712), + [anon_sym_package] = ACTIONS(2712), + [anon_sym_PACKAGE] = ACTIONS(2712), + [anon_sym_Private] = ACTIONS(2712), + [anon_sym_private] = ACTIONS(2712), + [anon_sym_PRIVATE] = ACTIONS(2712), + [anon_sym_Property] = ACTIONS(2712), + [anon_sym_property] = ACTIONS(2712), + [anon_sym_PROPERTY] = ACTIONS(2712), + [anon_sym_Public] = ACTIONS(2712), + [anon_sym_public] = ACTIONS(2712), + [anon_sym_PUBLIC] = ACTIONS(2712), + [anon_sym_Remote] = ACTIONS(2712), + [anon_sym_remote] = ACTIONS(2712), + [anon_sym_REMOTE] = ACTIONS(2712), + [anon_sym_Return] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_RETURN] = ACTIONS(2712), + [anon_sym_Static] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_STATIC] = ACTIONS(2712), + [anon_sym_Switch] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_SWITCH] = ACTIONS(2712), + [anon_sym_Throw] = ACTIONS(2712), + [anon_sym_throw] = ACTIONS(2712), + [anon_sym_THROW] = ACTIONS(2712), + [anon_sym_Try] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_TRY] = ACTIONS(2712), + [anon_sym_Var] = ACTIONS(2712), + [anon_sym_var] = ACTIONS(2712), + [anon_sym_VAR] = ACTIONS(2712), + [anon_sym_While] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_WHILE] = ACTIONS(2712), + [anon_sym_With] = ACTIONS(2712), + [anon_sym_with] = ACTIONS(2712), + [anon_sym_WITH] = ACTIONS(2712), + [sym_cf_comment] = ACTIONS(2710), + [sym__java_block_open] = ACTIONS(2710), + [sym__static_type_prefix] = ACTIONS(2710), + }, + [STATE(589)] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_Query] = ACTIONS(2716), + [anon_sym_query] = ACTIONS(2716), + [anon_sym_QUERY] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [aux_sym_unary_operator_token1] = ACTIONS(2716), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2716), + [aux_sym_number_token2] = ACTIONS(2714), + [anon_sym_This] = ACTIONS(2716), + [anon_sym_this] = ACTIONS(2716), + [anon_sym_THIS] = ACTIONS(2716), + [anon_sym_Super] = ACTIONS(2716), + [anon_sym_super] = ACTIONS(2716), + [anon_sym_SUPER] = ACTIONS(2716), + [anon_sym_True] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_TRUE] = ACTIONS(2716), + [anon_sym_False] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_FALSE] = ACTIONS(2716), + [anon_sym_Null] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_Undefined] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [anon_sym_UNDEFINED] = ACTIONS(2716), + [anon_sym_get] = ACTIONS(2716), + [anon_sym_set] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [sym_hash_empty] = ACTIONS(2714), + [anon_sym_export] = ACTIONS(2716), + [anon_sym_QueryExecute] = ACTIONS(2716), + [anon_sym_queryexecute] = ACTIONS(2716), + [anon_sym_QUERYEXECUTE] = ACTIONS(2716), + [anon_sym_queryExecute] = ACTIONS(2716), + [anon_sym_BQUOTE] = ACTIONS(2716), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2714), + [anon_sym_Abstract] = ACTIONS(2716), + [anon_sym_abstract] = ACTIONS(2716), + [anon_sym_ABSTRACT] = ACTIONS(2716), + [anon_sym_Break] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_BREAK] = ACTIONS(2716), + [anon_sym_Case] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_CASE] = ACTIONS(2716), + [anon_sym_Component] = ACTIONS(2716), + [anon_sym_component] = ACTIONS(2716), + [anon_sym_COMPONENT] = ACTIONS(2716), + [anon_sym_Continue] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_CONTINUE] = ACTIONS(2716), + [anon_sym_Debugger] = ACTIONS(2716), + [anon_sym_debugger] = ACTIONS(2716), + [anon_sym_DEBUGGER] = ACTIONS(2716), + [anon_sym_Default] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_DEFAULT] = ACTIONS(2716), + [anon_sym_Do] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_DO] = ACTIONS(2716), + [anon_sym_Else] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_ELSE] = ACTIONS(2716), + [anon_sym_Final] = ACTIONS(2716), + [anon_sym_final] = ACTIONS(2716), + [anon_sym_FINAL] = ACTIONS(2716), + [anon_sym_For] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_FOR] = ACTIONS(2716), + [anon_sym_Function] = ACTIONS(2716), + [anon_sym_function] = ACTIONS(2716), + [anon_sym_FUNCTION] = ACTIONS(2716), + [anon_sym_If] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_IF] = ACTIONS(2716), + [anon_sym_Import] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2716), + [anon_sym_IMPORT] = ACTIONS(2716), + [anon_sym_Include] = ACTIONS(2716), + [anon_sym_include] = ACTIONS(2716), + [anon_sym_INCLUDE] = ACTIONS(2716), + [anon_sym_Interface] = ACTIONS(2716), + [anon_sym_interface] = ACTIONS(2716), + [anon_sym_INTERFACE] = ACTIONS(2716), + [anon_sym_New] = ACTIONS(2716), + [anon_sym_new] = ACTIONS(2716), + [anon_sym_NEW] = ACTIONS(2716), + [anon_sym_Package] = ACTIONS(2716), + [anon_sym_package] = ACTIONS(2716), + [anon_sym_PACKAGE] = ACTIONS(2716), + [anon_sym_Private] = ACTIONS(2716), + [anon_sym_private] = ACTIONS(2716), + [anon_sym_PRIVATE] = ACTIONS(2716), + [anon_sym_Property] = ACTIONS(2716), + [anon_sym_property] = ACTIONS(2716), + [anon_sym_PROPERTY] = ACTIONS(2716), + [anon_sym_Public] = ACTIONS(2716), + [anon_sym_public] = ACTIONS(2716), + [anon_sym_PUBLIC] = ACTIONS(2716), + [anon_sym_Remote] = ACTIONS(2716), + [anon_sym_remote] = ACTIONS(2716), + [anon_sym_REMOTE] = ACTIONS(2716), + [anon_sym_Return] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_RETURN] = ACTIONS(2716), + [anon_sym_Static] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_STATIC] = ACTIONS(2716), + [anon_sym_Switch] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_SWITCH] = ACTIONS(2716), + [anon_sym_Throw] = ACTIONS(2716), + [anon_sym_throw] = ACTIONS(2716), + [anon_sym_THROW] = ACTIONS(2716), + [anon_sym_Try] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_TRY] = ACTIONS(2716), + [anon_sym_Var] = ACTIONS(2716), + [anon_sym_var] = ACTIONS(2716), + [anon_sym_VAR] = ACTIONS(2716), + [anon_sym_While] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_WHILE] = ACTIONS(2716), + [anon_sym_With] = ACTIONS(2716), + [anon_sym_with] = ACTIONS(2716), + [anon_sym_WITH] = ACTIONS(2716), + [sym_cf_comment] = ACTIONS(2714), + [sym__java_block_open] = ACTIONS(2714), + [sym__static_type_prefix] = ACTIONS(2714), + }, + [STATE(590)] = { + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_Query] = ACTIONS(2720), + [anon_sym_query] = ACTIONS(2720), + [anon_sym_QUERY] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_SLASH] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [aux_sym_unary_operator_token1] = ACTIONS(2720), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2718), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2720), + [aux_sym_number_token2] = ACTIONS(2718), + [anon_sym_This] = ACTIONS(2720), + [anon_sym_this] = ACTIONS(2720), + [anon_sym_THIS] = ACTIONS(2720), + [anon_sym_Super] = ACTIONS(2720), + [anon_sym_super] = ACTIONS(2720), + [anon_sym_SUPER] = ACTIONS(2720), + [anon_sym_True] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2720), + [anon_sym_TRUE] = ACTIONS(2720), + [anon_sym_False] = ACTIONS(2720), + [anon_sym_false] = ACTIONS(2720), + [anon_sym_FALSE] = ACTIONS(2720), + [anon_sym_Null] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2720), + [anon_sym_NULL] = ACTIONS(2720), + [anon_sym_Undefined] = ACTIONS(2720), + [anon_sym_undefined] = ACTIONS(2720), + [anon_sym_UNDEFINED] = ACTIONS(2720), + [anon_sym_get] = ACTIONS(2720), + [anon_sym_set] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [sym_hash_empty] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2720), + [anon_sym_QueryExecute] = ACTIONS(2720), + [anon_sym_queryexecute] = ACTIONS(2720), + [anon_sym_QUERYEXECUTE] = ACTIONS(2720), + [anon_sym_queryExecute] = ACTIONS(2720), + [anon_sym_BQUOTE] = ACTIONS(2720), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2718), + [anon_sym_Abstract] = ACTIONS(2720), + [anon_sym_abstract] = ACTIONS(2720), + [anon_sym_ABSTRACT] = ACTIONS(2720), + [anon_sym_Break] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_BREAK] = ACTIONS(2720), + [anon_sym_Case] = ACTIONS(2720), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_CASE] = ACTIONS(2720), + [anon_sym_Component] = ACTIONS(2720), + [anon_sym_component] = ACTIONS(2720), + [anon_sym_COMPONENT] = ACTIONS(2720), + [anon_sym_Continue] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_CONTINUE] = ACTIONS(2720), + [anon_sym_Debugger] = ACTIONS(2720), + [anon_sym_debugger] = ACTIONS(2720), + [anon_sym_DEBUGGER] = ACTIONS(2720), + [anon_sym_Default] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_DEFAULT] = ACTIONS(2720), + [anon_sym_Do] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_DO] = ACTIONS(2720), + [anon_sym_Else] = ACTIONS(2720), + [anon_sym_else] = ACTIONS(2720), + [anon_sym_ELSE] = ACTIONS(2720), + [anon_sym_Final] = ACTIONS(2720), + [anon_sym_final] = ACTIONS(2720), + [anon_sym_FINAL] = ACTIONS(2720), + [anon_sym_For] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_FOR] = ACTIONS(2720), + [anon_sym_Function] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2720), + [anon_sym_FUNCTION] = ACTIONS(2720), + [anon_sym_If] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_IF] = ACTIONS(2720), + [anon_sym_Import] = ACTIONS(2720), + [anon_sym_import] = ACTIONS(2720), + [anon_sym_IMPORT] = ACTIONS(2720), + [anon_sym_Include] = ACTIONS(2720), + [anon_sym_include] = ACTIONS(2720), + [anon_sym_INCLUDE] = ACTIONS(2720), + [anon_sym_Interface] = ACTIONS(2720), + [anon_sym_interface] = ACTIONS(2720), + [anon_sym_INTERFACE] = ACTIONS(2720), + [anon_sym_New] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2720), + [anon_sym_NEW] = ACTIONS(2720), + [anon_sym_Package] = ACTIONS(2720), + [anon_sym_package] = ACTIONS(2720), + [anon_sym_PACKAGE] = ACTIONS(2720), + [anon_sym_Private] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_PRIVATE] = ACTIONS(2720), + [anon_sym_Property] = ACTIONS(2720), + [anon_sym_property] = ACTIONS(2720), + [anon_sym_PROPERTY] = ACTIONS(2720), + [anon_sym_Public] = ACTIONS(2720), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_PUBLIC] = ACTIONS(2720), + [anon_sym_Remote] = ACTIONS(2720), + [anon_sym_remote] = ACTIONS(2720), + [anon_sym_REMOTE] = ACTIONS(2720), + [anon_sym_Return] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_RETURN] = ACTIONS(2720), + [anon_sym_Static] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_STATIC] = ACTIONS(2720), + [anon_sym_Switch] = ACTIONS(2720), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_SWITCH] = ACTIONS(2720), + [anon_sym_Throw] = ACTIONS(2720), + [anon_sym_throw] = ACTIONS(2720), + [anon_sym_THROW] = ACTIONS(2720), + [anon_sym_Try] = ACTIONS(2720), + [anon_sym_try] = ACTIONS(2720), + [anon_sym_TRY] = ACTIONS(2720), + [anon_sym_Var] = ACTIONS(2720), + [anon_sym_var] = ACTIONS(2720), + [anon_sym_VAR] = ACTIONS(2720), + [anon_sym_While] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_WHILE] = ACTIONS(2720), + [anon_sym_With] = ACTIONS(2720), + [anon_sym_with] = ACTIONS(2720), + [anon_sym_WITH] = ACTIONS(2720), + [sym_cf_comment] = ACTIONS(2718), + [sym__java_block_open] = ACTIONS(2718), + [sym__static_type_prefix] = ACTIONS(2718), + }, + [STATE(591)] = { + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_Query] = ACTIONS(2724), + [anon_sym_query] = ACTIONS(2724), + [anon_sym_QUERY] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_TILDE] = ACTIONS(2722), + [aux_sym_unary_operator_token1] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_DQUOTE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2732), - [aux_sym_number_token2] = ACTIONS(2730), - [anon_sym_This] = ACTIONS(2732), - [anon_sym_this] = ACTIONS(2732), - [anon_sym_THIS] = ACTIONS(2732), - [anon_sym_Super] = ACTIONS(2732), - [anon_sym_super] = ACTIONS(2732), - [anon_sym_SUPER] = ACTIONS(2732), - [anon_sym_True] = ACTIONS(2732), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_TRUE] = ACTIONS(2732), - [anon_sym_False] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_FALSE] = ACTIONS(2732), - [anon_sym_Null] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_NULL] = ACTIONS(2732), - [anon_sym_Undefined] = ACTIONS(2732), - [anon_sym_undefined] = ACTIONS(2732), - [anon_sym_UNDEFINED] = ACTIONS(2732), - [anon_sym_get] = ACTIONS(2732), - [anon_sym_set] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2732), - [sym_hash_empty] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_QueryExecute] = ACTIONS(2732), - [anon_sym_queryexecute] = ACTIONS(2732), - [anon_sym_QUERYEXECUTE] = ACTIONS(2732), - [anon_sym_queryExecute] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2732), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2730), - [anon_sym_Abstract] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_ABSTRACT] = ACTIONS(2732), - [anon_sym_Break] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_BREAK] = ACTIONS(2732), - [anon_sym_Case] = ACTIONS(2732), - [anon_sym_case] = ACTIONS(2732), - [anon_sym_CASE] = ACTIONS(2732), - [anon_sym_Component] = ACTIONS(2732), - [anon_sym_component] = ACTIONS(2732), - [anon_sym_COMPONENT] = ACTIONS(2732), - [anon_sym_Continue] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_CONTINUE] = ACTIONS(2732), - [anon_sym_Debugger] = ACTIONS(2732), - [anon_sym_debugger] = ACTIONS(2732), - [anon_sym_DEBUGGER] = ACTIONS(2732), - [anon_sym_Default] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_DEFAULT] = ACTIONS(2732), - [anon_sym_Do] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [anon_sym_DO] = ACTIONS(2732), - [anon_sym_Else] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2732), - [anon_sym_ELSE] = ACTIONS(2732), - [anon_sym_Final] = ACTIONS(2732), - [anon_sym_final] = ACTIONS(2732), - [anon_sym_FINAL] = ACTIONS(2732), - [anon_sym_For] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_FOR] = ACTIONS(2732), - [anon_sym_Function] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_FUNCTION] = ACTIONS(2732), - [anon_sym_If] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_IF] = ACTIONS(2732), - [anon_sym_Import] = ACTIONS(2732), - [anon_sym_import] = ACTIONS(2732), - [anon_sym_IMPORT] = ACTIONS(2732), - [anon_sym_Include] = ACTIONS(2732), - [anon_sym_include] = ACTIONS(2732), - [anon_sym_INCLUDE] = ACTIONS(2732), - [anon_sym_Interface] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_INTERFACE] = ACTIONS(2732), - [anon_sym_New] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_NEW] = ACTIONS(2732), - [anon_sym_Package] = ACTIONS(2732), - [anon_sym_package] = ACTIONS(2732), - [anon_sym_PACKAGE] = ACTIONS(2732), - [anon_sym_Private] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_PRIVATE] = ACTIONS(2732), - [anon_sym_Property] = ACTIONS(2732), - [anon_sym_property] = ACTIONS(2732), - [anon_sym_PROPERTY] = ACTIONS(2732), - [anon_sym_Public] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_PUBLIC] = ACTIONS(2732), - [anon_sym_Remote] = ACTIONS(2732), - [anon_sym_remote] = ACTIONS(2732), - [anon_sym_REMOTE] = ACTIONS(2732), - [anon_sym_Return] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_RETURN] = ACTIONS(2732), - [anon_sym_Static] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_STATIC] = ACTIONS(2732), - [anon_sym_Switch] = ACTIONS(2732), - [anon_sym_switch] = ACTIONS(2732), - [anon_sym_SWITCH] = ACTIONS(2732), - [anon_sym_Throw] = ACTIONS(2732), - [anon_sym_throw] = ACTIONS(2732), - [anon_sym_THROW] = ACTIONS(2732), - [anon_sym_Try] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2732), - [anon_sym_TRY] = ACTIONS(2732), - [anon_sym_Var] = ACTIONS(2732), - [anon_sym_var] = ACTIONS(2732), - [anon_sym_VAR] = ACTIONS(2732), - [anon_sym_While] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_WHILE] = ACTIONS(2732), - [anon_sym_With] = ACTIONS(2732), - [anon_sym_with] = ACTIONS(2732), - [anon_sym_WITH] = ACTIONS(2732), - [sym_cf_comment] = ACTIONS(2730), - [sym__java_block_open] = ACTIONS(2730), - [sym__static_type_prefix] = ACTIONS(2730), + [aux_sym_number_token1] = ACTIONS(2724), + [aux_sym_number_token2] = ACTIONS(2722), + [anon_sym_This] = ACTIONS(2724), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_THIS] = ACTIONS(2724), + [anon_sym_Super] = ACTIONS(2724), + [anon_sym_super] = ACTIONS(2724), + [anon_sym_SUPER] = ACTIONS(2724), + [anon_sym_True] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_TRUE] = ACTIONS(2724), + [anon_sym_False] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [anon_sym_FALSE] = ACTIONS(2724), + [anon_sym_Null] = ACTIONS(2724), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_Undefined] = ACTIONS(2724), + [anon_sym_undefined] = ACTIONS(2724), + [anon_sym_UNDEFINED] = ACTIONS(2724), + [anon_sym_get] = ACTIONS(2724), + [anon_sym_set] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [sym_hash_empty] = ACTIONS(2722), + [anon_sym_export] = ACTIONS(2724), + [anon_sym_QueryExecute] = ACTIONS(2724), + [anon_sym_queryexecute] = ACTIONS(2724), + [anon_sym_QUERYEXECUTE] = ACTIONS(2724), + [anon_sym_queryExecute] = ACTIONS(2724), + [anon_sym_BQUOTE] = ACTIONS(2724), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2722), + [anon_sym_Abstract] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_ABSTRACT] = ACTIONS(2724), + [anon_sym_Break] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_BREAK] = ACTIONS(2724), + [anon_sym_Case] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_CASE] = ACTIONS(2724), + [anon_sym_Component] = ACTIONS(2724), + [anon_sym_component] = ACTIONS(2724), + [anon_sym_COMPONENT] = ACTIONS(2724), + [anon_sym_Continue] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_CONTINUE] = ACTIONS(2724), + [anon_sym_Debugger] = ACTIONS(2724), + [anon_sym_debugger] = ACTIONS(2724), + [anon_sym_DEBUGGER] = ACTIONS(2724), + [anon_sym_Default] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_DEFAULT] = ACTIONS(2724), + [anon_sym_Do] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_DO] = ACTIONS(2724), + [anon_sym_Else] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2724), + [anon_sym_ELSE] = ACTIONS(2724), + [anon_sym_Final] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_FINAL] = ACTIONS(2724), + [anon_sym_For] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_FOR] = ACTIONS(2724), + [anon_sym_Function] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_FUNCTION] = ACTIONS(2724), + [anon_sym_If] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_IF] = ACTIONS(2724), + [anon_sym_Import] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_IMPORT] = ACTIONS(2724), + [anon_sym_Include] = ACTIONS(2724), + [anon_sym_include] = ACTIONS(2724), + [anon_sym_INCLUDE] = ACTIONS(2724), + [anon_sym_Interface] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_INTERFACE] = ACTIONS(2724), + [anon_sym_New] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_NEW] = ACTIONS(2724), + [anon_sym_Package] = ACTIONS(2724), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_PACKAGE] = ACTIONS(2724), + [anon_sym_Private] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_PRIVATE] = ACTIONS(2724), + [anon_sym_Property] = ACTIONS(2724), + [anon_sym_property] = ACTIONS(2724), + [anon_sym_PROPERTY] = ACTIONS(2724), + [anon_sym_Public] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_PUBLIC] = ACTIONS(2724), + [anon_sym_Remote] = ACTIONS(2724), + [anon_sym_remote] = ACTIONS(2724), + [anon_sym_REMOTE] = ACTIONS(2724), + [anon_sym_Return] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_RETURN] = ACTIONS(2724), + [anon_sym_Static] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_STATIC] = ACTIONS(2724), + [anon_sym_Switch] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_SWITCH] = ACTIONS(2724), + [anon_sym_Throw] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_THROW] = ACTIONS(2724), + [anon_sym_Try] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_TRY] = ACTIONS(2724), + [anon_sym_Var] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [anon_sym_VAR] = ACTIONS(2724), + [anon_sym_While] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_WHILE] = ACTIONS(2724), + [anon_sym_With] = ACTIONS(2724), + [anon_sym_with] = ACTIONS(2724), + [anon_sym_WITH] = ACTIONS(2724), + [sym_cf_comment] = ACTIONS(2722), + [sym__java_block_open] = ACTIONS(2722), + [sym__static_type_prefix] = ACTIONS(2722), }, - [STATE(593)] = { + [STATE(592)] = { [ts_builtin_sym_end] = ACTIONS(2726), [sym_identifier] = ACTIONS(2728), [anon_sym_LBRACE] = ACTIONS(2726), @@ -135598,1043 +135581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2726), [sym__static_type_prefix] = ACTIONS(2726), }, - [STATE(594)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_Query] = ACTIONS(2015), - [anon_sym_query] = ACTIONS(2015), - [anon_sym_QUERY] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2015), - [sym_optional_chain] = ACTIONS(2023), - [sym_static_chain] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_GT_GT_GT] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_STAR_STAR] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2023), - [anon_sym_LT_GT] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2023), - [aux_sym_binary_expression_token1] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2015), - [aux_sym_binary_expression_token2] = ACTIONS(2015), - [aux_sym_binary_expression_token3] = ACTIONS(2015), - [aux_sym_binary_expression_token4] = ACTIONS(2023), - [aux_sym_binary_expression_token5] = ACTIONS(2023), - [aux_sym_binary_expression_token6] = ACTIONS(2023), - [anon_sym_QMARK_QMARK] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2023), - [aux_sym_unary_operator_token1] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2015), - [aux_sym_number_token2] = ACTIONS(2015), - [anon_sym_This] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(2015), - [anon_sym_THIS] = ACTIONS(2015), - [anon_sym_Super] = ACTIONS(2015), - [anon_sym_super] = ACTIONS(2015), - [anon_sym_SUPER] = ACTIONS(2015), - [anon_sym_True] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_TRUE] = ACTIONS(2015), - [anon_sym_False] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_FALSE] = ACTIONS(2015), - [anon_sym_Null] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [anon_sym_NULL] = ACTIONS(2015), - [anon_sym_Undefined] = ACTIONS(2015), - [anon_sym_undefined] = ACTIONS(2015), - [anon_sym_UNDEFINED] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(2015), - [anon_sym_set] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(2015), - [sym_hash_empty] = ACTIONS(2023), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_QueryExecute] = ACTIONS(2015), - [anon_sym_queryexecute] = ACTIONS(2015), - [anon_sym_QUERYEXECUTE] = ACTIONS(2015), - [anon_sym_queryExecute] = ACTIONS(2015), - [anon_sym_BQUOTE] = ACTIONS(2023), - [anon_sym_Abstract] = ACTIONS(2015), - [anon_sym_abstract] = ACTIONS(2015), - [anon_sym_ABSTRACT] = ACTIONS(2015), - [anon_sym_Component] = ACTIONS(2015), - [anon_sym_component] = ACTIONS(2015), - [anon_sym_COMPONENT] = ACTIONS(2015), - [anon_sym_Debugger] = ACTIONS(2015), - [anon_sym_debugger] = ACTIONS(2015), - [anon_sym_DEBUGGER] = ACTIONS(2015), - [anon_sym_Final] = ACTIONS(2015), - [anon_sym_final] = ACTIONS(2015), - [anon_sym_FINAL] = ACTIONS(2015), - [anon_sym_Function] = ACTIONS(2015), - [anon_sym_function] = ACTIONS(2015), - [anon_sym_FUNCTION] = ACTIONS(2015), - [anon_sym_In] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_IN] = ACTIONS(2015), - [anon_sym_Include] = ACTIONS(2015), - [anon_sym_include] = ACTIONS(2015), - [anon_sym_INCLUDE] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2015), - [anon_sym_instanceof] = ACTIONS(2015), - [anon_sym_INSTANCEOF] = ACTIONS(2015), - [anon_sym_instanceOf] = ACTIONS(2015), - [anon_sym_New] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_NEW] = ACTIONS(2015), - [anon_sym_Package] = ACTIONS(2015), - [anon_sym_package] = ACTIONS(2015), - [anon_sym_PACKAGE] = ACTIONS(2015), - [anon_sym_Private] = ACTIONS(2015), - [anon_sym_private] = ACTIONS(2015), - [anon_sym_PRIVATE] = ACTIONS(2015), - [anon_sym_Public] = ACTIONS(2015), - [anon_sym_public] = ACTIONS(2015), - [anon_sym_PUBLIC] = ACTIONS(2015), - [anon_sym_Remote] = ACTIONS(2015), - [anon_sym_remote] = ACTIONS(2015), - [anon_sym_REMOTE] = ACTIONS(2015), - [anon_sym_Static] = ACTIONS(2015), - [anon_sym_static] = ACTIONS(2015), - [anon_sym_STATIC] = ACTIONS(2015), - [sym__ternary_qmark] = ACTIONS(2023), - [sym__elvis_operator] = ACTIONS(2023), - [sym_logical_or] = ACTIONS(2023), - [sym__java_block_open] = ACTIONS(2023), - [sym__static_type_prefix] = ACTIONS(2023), - }, - [STATE(595)] = { - [sym_identifier] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_COLON] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_Query] = ACTIONS(2274), - [anon_sym_query] = ACTIONS(2274), - [anon_sym_QUERY] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), - [sym_optional_chain] = ACTIONS(2276), - [sym_static_chain] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2276), - [anon_sym_BSLASH] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2276), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), - [anon_sym_LT_GT] = ACTIONS(2276), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), - [aux_sym_binary_expression_token1] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2274), - [aux_sym_binary_expression_token2] = ACTIONS(2274), - [aux_sym_binary_expression_token3] = ACTIONS(2274), - [aux_sym_binary_expression_token4] = ACTIONS(2276), - [aux_sym_binary_expression_token5] = ACTIONS(2276), - [aux_sym_binary_expression_token6] = ACTIONS(2276), - [anon_sym_QMARK_QMARK] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2276), - [aux_sym_unary_operator_token1] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2274), - [aux_sym_number_token2] = ACTIONS(2274), - [anon_sym_This] = ACTIONS(2274), - [anon_sym_this] = ACTIONS(2274), - [anon_sym_THIS] = ACTIONS(2274), - [anon_sym_Super] = ACTIONS(2274), - [anon_sym_super] = ACTIONS(2274), - [anon_sym_SUPER] = ACTIONS(2274), - [anon_sym_True] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2274), - [anon_sym_TRUE] = ACTIONS(2274), - [anon_sym_False] = ACTIONS(2274), - [anon_sym_false] = ACTIONS(2274), - [anon_sym_FALSE] = ACTIONS(2274), - [anon_sym_Null] = ACTIONS(2274), - [anon_sym_null] = ACTIONS(2274), - [anon_sym_NULL] = ACTIONS(2274), - [anon_sym_Undefined] = ACTIONS(2274), - [anon_sym_undefined] = ACTIONS(2274), - [anon_sym_UNDEFINED] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_POUND] = ACTIONS(2274), - [sym_hash_empty] = ACTIONS(2276), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_QueryExecute] = ACTIONS(2274), - [anon_sym_queryexecute] = ACTIONS(2274), - [anon_sym_QUERYEXECUTE] = ACTIONS(2274), - [anon_sym_queryExecute] = ACTIONS(2274), - [anon_sym_BQUOTE] = ACTIONS(2276), - [anon_sym_Abstract] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_ABSTRACT] = ACTIONS(2274), - [anon_sym_Component] = ACTIONS(2274), - [anon_sym_component] = ACTIONS(2274), - [anon_sym_COMPONENT] = ACTIONS(2274), - [anon_sym_Debugger] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_DEBUGGER] = ACTIONS(2274), - [anon_sym_Final] = ACTIONS(2274), - [anon_sym_final] = ACTIONS(2274), - [anon_sym_FINAL] = ACTIONS(2274), - [anon_sym_Function] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_FUNCTION] = ACTIONS(2274), - [anon_sym_In] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_IN] = ACTIONS(2274), - [anon_sym_Include] = ACTIONS(2274), - [anon_sym_include] = ACTIONS(2274), - [anon_sym_INCLUDE] = ACTIONS(2274), - [anon_sym_InstanceOf] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_INSTANCEOF] = ACTIONS(2274), - [anon_sym_instanceOf] = ACTIONS(2274), - [anon_sym_New] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_NEW] = ACTIONS(2274), - [anon_sym_Package] = ACTIONS(2274), - [anon_sym_package] = ACTIONS(2274), - [anon_sym_PACKAGE] = ACTIONS(2274), - [anon_sym_Private] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_PRIVATE] = ACTIONS(2274), - [anon_sym_Public] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_PUBLIC] = ACTIONS(2274), - [anon_sym_Remote] = ACTIONS(2274), - [anon_sym_remote] = ACTIONS(2274), - [anon_sym_REMOTE] = ACTIONS(2274), - [anon_sym_Static] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_STATIC] = ACTIONS(2274), - [sym__ternary_qmark] = ACTIONS(2276), - [sym__elvis_operator] = ACTIONS(2276), - [sym_logical_or] = ACTIONS(2276), - [sym__java_block_open] = ACTIONS(2276), - [sym__static_type_prefix] = ACTIONS(2276), - }, - [STATE(596)] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_Query] = ACTIONS(2736), - [anon_sym_query] = ACTIONS(2736), - [anon_sym_QUERY] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [aux_sym_unary_operator_token1] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [anon_sym_SQUOTE] = ACTIONS(2734), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2736), - [aux_sym_number_token2] = ACTIONS(2734), - [anon_sym_This] = ACTIONS(2736), - [anon_sym_this] = ACTIONS(2736), - [anon_sym_THIS] = ACTIONS(2736), - [anon_sym_Super] = ACTIONS(2736), - [anon_sym_super] = ACTIONS(2736), - [anon_sym_SUPER] = ACTIONS(2736), - [anon_sym_True] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_TRUE] = ACTIONS(2736), - [anon_sym_False] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [anon_sym_FALSE] = ACTIONS(2736), - [anon_sym_Null] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2736), - [anon_sym_NULL] = ACTIONS(2736), - [anon_sym_Undefined] = ACTIONS(2736), - [anon_sym_undefined] = ACTIONS(2736), - [anon_sym_UNDEFINED] = ACTIONS(2736), - [anon_sym_get] = ACTIONS(2736), - [anon_sym_set] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [sym_hash_empty] = ACTIONS(2734), - [anon_sym_export] = ACTIONS(2736), - [anon_sym_QueryExecute] = ACTIONS(2736), - [anon_sym_queryexecute] = ACTIONS(2736), - [anon_sym_QUERYEXECUTE] = ACTIONS(2736), - [anon_sym_queryExecute] = ACTIONS(2736), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2734), - [anon_sym_Abstract] = ACTIONS(2736), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_ABSTRACT] = ACTIONS(2736), - [anon_sym_Break] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_BREAK] = ACTIONS(2736), - [anon_sym_Case] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_CASE] = ACTIONS(2736), - [anon_sym_Component] = ACTIONS(2736), - [anon_sym_component] = ACTIONS(2736), - [anon_sym_COMPONENT] = ACTIONS(2736), - [anon_sym_Continue] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_CONTINUE] = ACTIONS(2736), - [anon_sym_Debugger] = ACTIONS(2736), - [anon_sym_debugger] = ACTIONS(2736), - [anon_sym_DEBUGGER] = ACTIONS(2736), - [anon_sym_Default] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_DEFAULT] = ACTIONS(2736), - [anon_sym_Do] = ACTIONS(2736), - [anon_sym_do] = ACTIONS(2736), - [anon_sym_DO] = ACTIONS(2736), - [anon_sym_Else] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_ELSE] = ACTIONS(2736), - [anon_sym_Final] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_FINAL] = ACTIONS(2736), - [anon_sym_For] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_FOR] = ACTIONS(2736), - [anon_sym_Function] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(2736), - [anon_sym_FUNCTION] = ACTIONS(2736), - [anon_sym_If] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_IF] = ACTIONS(2736), - [anon_sym_Import] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_IMPORT] = ACTIONS(2736), - [anon_sym_Include] = ACTIONS(2736), - [anon_sym_include] = ACTIONS(2736), - [anon_sym_INCLUDE] = ACTIONS(2736), - [anon_sym_Interface] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_INTERFACE] = ACTIONS(2736), - [anon_sym_New] = ACTIONS(2736), - [anon_sym_new] = ACTIONS(2736), - [anon_sym_NEW] = ACTIONS(2736), - [anon_sym_Package] = ACTIONS(2736), - [anon_sym_package] = ACTIONS(2736), - [anon_sym_PACKAGE] = ACTIONS(2736), - [anon_sym_Private] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_PRIVATE] = ACTIONS(2736), - [anon_sym_Property] = ACTIONS(2736), - [anon_sym_property] = ACTIONS(2736), - [anon_sym_PROPERTY] = ACTIONS(2736), - [anon_sym_Public] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_PUBLIC] = ACTIONS(2736), - [anon_sym_Remote] = ACTIONS(2736), - [anon_sym_remote] = ACTIONS(2736), - [anon_sym_REMOTE] = ACTIONS(2736), - [anon_sym_Return] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_RETURN] = ACTIONS(2736), - [anon_sym_Static] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_STATIC] = ACTIONS(2736), - [anon_sym_Switch] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2736), - [anon_sym_SWITCH] = ACTIONS(2736), - [anon_sym_Throw] = ACTIONS(2736), - [anon_sym_throw] = ACTIONS(2736), - [anon_sym_THROW] = ACTIONS(2736), - [anon_sym_Try] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2736), - [anon_sym_TRY] = ACTIONS(2736), - [anon_sym_Var] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [anon_sym_VAR] = ACTIONS(2736), - [anon_sym_While] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_WHILE] = ACTIONS(2736), - [anon_sym_With] = ACTIONS(2736), - [anon_sym_with] = ACTIONS(2736), - [anon_sym_WITH] = ACTIONS(2736), - [sym_cf_comment] = ACTIONS(2734), - [sym__java_block_open] = ACTIONS(2734), - [sym__static_type_prefix] = ACTIONS(2734), - }, - [STATE(597)] = { - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_Query] = ACTIONS(2336), - [anon_sym_query] = ACTIONS(2336), - [anon_sym_QUERY] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [aux_sym_unary_operator_token1] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2336), - [aux_sym_number_token2] = ACTIONS(2338), - [anon_sym_This] = ACTIONS(2336), - [anon_sym_this] = ACTIONS(2336), - [anon_sym_THIS] = ACTIONS(2336), - [anon_sym_Super] = ACTIONS(2336), - [anon_sym_super] = ACTIONS(2336), - [anon_sym_SUPER] = ACTIONS(2336), - [anon_sym_True] = ACTIONS(2336), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_TRUE] = ACTIONS(2336), - [anon_sym_False] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [anon_sym_FALSE] = ACTIONS(2336), - [anon_sym_Null] = ACTIONS(2336), - [anon_sym_null] = ACTIONS(2336), - [anon_sym_NULL] = ACTIONS(2336), - [anon_sym_Undefined] = ACTIONS(2336), - [anon_sym_undefined] = ACTIONS(2336), - [anon_sym_UNDEFINED] = ACTIONS(2336), - [anon_sym_get] = ACTIONS(2336), - [anon_sym_set] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2336), - [sym_hash_empty] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_QueryExecute] = ACTIONS(2336), - [anon_sym_queryexecute] = ACTIONS(2336), - [anon_sym_QUERYEXECUTE] = ACTIONS(2336), - [anon_sym_queryExecute] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2338), - [anon_sym_Abstract] = ACTIONS(2336), - [anon_sym_abstract] = ACTIONS(2336), - [anon_sym_ABSTRACT] = ACTIONS(2336), - [anon_sym_Break] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_BREAK] = ACTIONS(2336), - [anon_sym_Case] = ACTIONS(2336), - [anon_sym_case] = ACTIONS(2336), - [anon_sym_CASE] = ACTIONS(2336), - [anon_sym_Component] = ACTIONS(2336), - [anon_sym_component] = ACTIONS(2336), - [anon_sym_COMPONENT] = ACTIONS(2336), - [anon_sym_Continue] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_CONTINUE] = ACTIONS(2336), - [anon_sym_Debugger] = ACTIONS(2336), - [anon_sym_debugger] = ACTIONS(2336), - [anon_sym_DEBUGGER] = ACTIONS(2336), - [anon_sym_Default] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_DEFAULT] = ACTIONS(2336), - [anon_sym_Do] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_DO] = ACTIONS(2336), - [anon_sym_Else] = ACTIONS(2336), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_ELSE] = ACTIONS(2336), - [anon_sym_Final] = ACTIONS(2336), - [anon_sym_final] = ACTIONS(2336), - [anon_sym_FINAL] = ACTIONS(2336), - [anon_sym_For] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_FOR] = ACTIONS(2336), - [anon_sym_Function] = ACTIONS(2336), - [anon_sym_function] = ACTIONS(2336), - [anon_sym_FUNCTION] = ACTIONS(2336), - [anon_sym_If] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_IF] = ACTIONS(2336), - [anon_sym_Import] = ACTIONS(2336), - [anon_sym_import] = ACTIONS(2336), - [anon_sym_IMPORT] = ACTIONS(2336), - [anon_sym_Include] = ACTIONS(2336), - [anon_sym_include] = ACTIONS(2336), - [anon_sym_INCLUDE] = ACTIONS(2336), - [anon_sym_Interface] = ACTIONS(2336), - [anon_sym_interface] = ACTIONS(2336), - [anon_sym_INTERFACE] = ACTIONS(2336), - [anon_sym_New] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_NEW] = ACTIONS(2336), - [anon_sym_Package] = ACTIONS(2336), - [anon_sym_package] = ACTIONS(2336), - [anon_sym_PACKAGE] = ACTIONS(2336), - [anon_sym_Private] = ACTIONS(2336), - [anon_sym_private] = ACTIONS(2336), - [anon_sym_PRIVATE] = ACTIONS(2336), - [anon_sym_Property] = ACTIONS(2336), - [anon_sym_property] = ACTIONS(2336), - [anon_sym_PROPERTY] = ACTIONS(2336), - [anon_sym_Public] = ACTIONS(2336), - [anon_sym_public] = ACTIONS(2336), - [anon_sym_PUBLIC] = ACTIONS(2336), - [anon_sym_Remote] = ACTIONS(2336), - [anon_sym_remote] = ACTIONS(2336), - [anon_sym_REMOTE] = ACTIONS(2336), - [anon_sym_Return] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_RETURN] = ACTIONS(2336), - [anon_sym_Static] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_STATIC] = ACTIONS(2336), - [anon_sym_Switch] = ACTIONS(2336), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_SWITCH] = ACTIONS(2336), - [anon_sym_Throw] = ACTIONS(2336), - [anon_sym_throw] = ACTIONS(2336), - [anon_sym_THROW] = ACTIONS(2336), - [anon_sym_Try] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [anon_sym_TRY] = ACTIONS(2336), - [anon_sym_Var] = ACTIONS(2336), - [anon_sym_var] = ACTIONS(2336), - [anon_sym_VAR] = ACTIONS(2336), - [anon_sym_While] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_WHILE] = ACTIONS(2336), - [anon_sym_With] = ACTIONS(2336), - [anon_sym_with] = ACTIONS(2336), - [anon_sym_WITH] = ACTIONS(2336), - [sym_cf_comment] = ACTIONS(2338), - [sym__java_block_open] = ACTIONS(2338), - [sym__static_type_prefix] = ACTIONS(2338), - }, - [STATE(598)] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_Query] = ACTIONS(2736), - [anon_sym_query] = ACTIONS(2736), - [anon_sym_QUERY] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [aux_sym_unary_operator_token1] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [anon_sym_SQUOTE] = ACTIONS(2734), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2736), - [aux_sym_number_token2] = ACTIONS(2734), - [anon_sym_This] = ACTIONS(2736), - [anon_sym_this] = ACTIONS(2736), - [anon_sym_THIS] = ACTIONS(2736), - [anon_sym_Super] = ACTIONS(2736), - [anon_sym_super] = ACTIONS(2736), - [anon_sym_SUPER] = ACTIONS(2736), - [anon_sym_True] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_TRUE] = ACTIONS(2736), - [anon_sym_False] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [anon_sym_FALSE] = ACTIONS(2736), - [anon_sym_Null] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2736), - [anon_sym_NULL] = ACTIONS(2736), - [anon_sym_Undefined] = ACTIONS(2736), - [anon_sym_undefined] = ACTIONS(2736), - [anon_sym_UNDEFINED] = ACTIONS(2736), - [anon_sym_get] = ACTIONS(2736), - [anon_sym_set] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [sym_hash_empty] = ACTIONS(2734), - [anon_sym_export] = ACTIONS(2736), - [anon_sym_QueryExecute] = ACTIONS(2736), - [anon_sym_queryexecute] = ACTIONS(2736), - [anon_sym_QUERYEXECUTE] = ACTIONS(2736), - [anon_sym_queryExecute] = ACTIONS(2736), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2734), - [anon_sym_Abstract] = ACTIONS(2736), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_ABSTRACT] = ACTIONS(2736), - [anon_sym_Break] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_BREAK] = ACTIONS(2736), - [anon_sym_Case] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_CASE] = ACTIONS(2736), - [anon_sym_Component] = ACTIONS(2736), - [anon_sym_component] = ACTIONS(2736), - [anon_sym_COMPONENT] = ACTIONS(2736), - [anon_sym_Continue] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_CONTINUE] = ACTIONS(2736), - [anon_sym_Debugger] = ACTIONS(2736), - [anon_sym_debugger] = ACTIONS(2736), - [anon_sym_DEBUGGER] = ACTIONS(2736), - [anon_sym_Default] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_DEFAULT] = ACTIONS(2736), - [anon_sym_Do] = ACTIONS(2736), - [anon_sym_do] = ACTIONS(2736), - [anon_sym_DO] = ACTIONS(2736), - [anon_sym_Else] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_ELSE] = ACTIONS(2736), - [anon_sym_Final] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_FINAL] = ACTIONS(2736), - [anon_sym_For] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_FOR] = ACTIONS(2736), - [anon_sym_Function] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(2736), - [anon_sym_FUNCTION] = ACTIONS(2736), - [anon_sym_If] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_IF] = ACTIONS(2736), - [anon_sym_Import] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_IMPORT] = ACTIONS(2736), - [anon_sym_Include] = ACTIONS(2736), - [anon_sym_include] = ACTIONS(2736), - [anon_sym_INCLUDE] = ACTIONS(2736), - [anon_sym_Interface] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_INTERFACE] = ACTIONS(2736), - [anon_sym_New] = ACTIONS(2736), - [anon_sym_new] = ACTIONS(2736), - [anon_sym_NEW] = ACTIONS(2736), - [anon_sym_Package] = ACTIONS(2736), - [anon_sym_package] = ACTIONS(2736), - [anon_sym_PACKAGE] = ACTIONS(2736), - [anon_sym_Private] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_PRIVATE] = ACTIONS(2736), - [anon_sym_Property] = ACTIONS(2736), - [anon_sym_property] = ACTIONS(2736), - [anon_sym_PROPERTY] = ACTIONS(2736), - [anon_sym_Public] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_PUBLIC] = ACTIONS(2736), - [anon_sym_Remote] = ACTIONS(2736), - [anon_sym_remote] = ACTIONS(2736), - [anon_sym_REMOTE] = ACTIONS(2736), - [anon_sym_Return] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_RETURN] = ACTIONS(2736), - [anon_sym_Static] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_STATIC] = ACTIONS(2736), - [anon_sym_Switch] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2736), - [anon_sym_SWITCH] = ACTIONS(2736), - [anon_sym_Throw] = ACTIONS(2736), - [anon_sym_throw] = ACTIONS(2736), - [anon_sym_THROW] = ACTIONS(2736), - [anon_sym_Try] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2736), - [anon_sym_TRY] = ACTIONS(2736), - [anon_sym_Var] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [anon_sym_VAR] = ACTIONS(2736), - [anon_sym_While] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_WHILE] = ACTIONS(2736), - [anon_sym_With] = ACTIONS(2736), - [anon_sym_with] = ACTIONS(2736), - [anon_sym_WITH] = ACTIONS(2736), - [sym_cf_comment] = ACTIONS(2734), - [sym__java_block_open] = ACTIONS(2734), - [sym__static_type_prefix] = ACTIONS(2734), - }, - [STATE(599)] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_Query] = ACTIONS(2740), - [anon_sym_query] = ACTIONS(2740), - [anon_sym_QUERY] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2738), - [aux_sym_unary_operator_token1] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2738), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2740), - [aux_sym_number_token2] = ACTIONS(2738), - [anon_sym_This] = ACTIONS(2740), - [anon_sym_this] = ACTIONS(2740), - [anon_sym_THIS] = ACTIONS(2740), - [anon_sym_Super] = ACTIONS(2740), - [anon_sym_super] = ACTIONS(2740), - [anon_sym_SUPER] = ACTIONS(2740), - [anon_sym_True] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_TRUE] = ACTIONS(2740), - [anon_sym_False] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [anon_sym_FALSE] = ACTIONS(2740), - [anon_sym_Null] = ACTIONS(2740), - [anon_sym_null] = ACTIONS(2740), - [anon_sym_NULL] = ACTIONS(2740), - [anon_sym_Undefined] = ACTIONS(2740), - [anon_sym_undefined] = ACTIONS(2740), - [anon_sym_UNDEFINED] = ACTIONS(2740), - [anon_sym_get] = ACTIONS(2740), - [anon_sym_set] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [sym_hash_empty] = ACTIONS(2738), - [anon_sym_export] = ACTIONS(2740), - [anon_sym_QueryExecute] = ACTIONS(2740), - [anon_sym_queryexecute] = ACTIONS(2740), - [anon_sym_QUERYEXECUTE] = ACTIONS(2740), - [anon_sym_queryExecute] = ACTIONS(2740), - [anon_sym_BQUOTE] = ACTIONS(2740), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2738), - [anon_sym_Abstract] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2740), - [anon_sym_ABSTRACT] = ACTIONS(2740), - [anon_sym_Break] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_BREAK] = ACTIONS(2740), - [anon_sym_Case] = ACTIONS(2740), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_CASE] = ACTIONS(2740), - [anon_sym_Component] = ACTIONS(2740), - [anon_sym_component] = ACTIONS(2740), - [anon_sym_COMPONENT] = ACTIONS(2740), - [anon_sym_Continue] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_CONTINUE] = ACTIONS(2740), - [anon_sym_Debugger] = ACTIONS(2740), - [anon_sym_debugger] = ACTIONS(2740), - [anon_sym_DEBUGGER] = ACTIONS(2740), - [anon_sym_Default] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_DEFAULT] = ACTIONS(2740), - [anon_sym_Do] = ACTIONS(2740), - [anon_sym_do] = ACTIONS(2740), - [anon_sym_DO] = ACTIONS(2740), - [anon_sym_Else] = ACTIONS(2740), - [anon_sym_else] = ACTIONS(2740), - [anon_sym_ELSE] = ACTIONS(2740), - [anon_sym_Final] = ACTIONS(2740), - [anon_sym_final] = ACTIONS(2740), - [anon_sym_FINAL] = ACTIONS(2740), - [anon_sym_For] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_FOR] = ACTIONS(2740), - [anon_sym_Function] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2740), - [anon_sym_FUNCTION] = ACTIONS(2740), - [anon_sym_If] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_IF] = ACTIONS(2740), - [anon_sym_Import] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_IMPORT] = ACTIONS(2740), - [anon_sym_Include] = ACTIONS(2740), - [anon_sym_include] = ACTIONS(2740), - [anon_sym_INCLUDE] = ACTIONS(2740), - [anon_sym_Interface] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_INTERFACE] = ACTIONS(2740), - [anon_sym_New] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(2740), - [anon_sym_NEW] = ACTIONS(2740), - [anon_sym_Package] = ACTIONS(2740), - [anon_sym_package] = ACTIONS(2740), - [anon_sym_PACKAGE] = ACTIONS(2740), - [anon_sym_Private] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_PRIVATE] = ACTIONS(2740), - [anon_sym_Property] = ACTIONS(2740), - [anon_sym_property] = ACTIONS(2740), - [anon_sym_PROPERTY] = ACTIONS(2740), - [anon_sym_Public] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_PUBLIC] = ACTIONS(2740), - [anon_sym_Remote] = ACTIONS(2740), - [anon_sym_remote] = ACTIONS(2740), - [anon_sym_REMOTE] = ACTIONS(2740), - [anon_sym_Return] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_RETURN] = ACTIONS(2740), - [anon_sym_Static] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_STATIC] = ACTIONS(2740), - [anon_sym_Switch] = ACTIONS(2740), - [anon_sym_switch] = ACTIONS(2740), - [anon_sym_SWITCH] = ACTIONS(2740), - [anon_sym_Throw] = ACTIONS(2740), - [anon_sym_throw] = ACTIONS(2740), - [anon_sym_THROW] = ACTIONS(2740), - [anon_sym_Try] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [anon_sym_TRY] = ACTIONS(2740), - [anon_sym_Var] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [anon_sym_VAR] = ACTIONS(2740), - [anon_sym_While] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_WHILE] = ACTIONS(2740), - [anon_sym_With] = ACTIONS(2740), - [anon_sym_with] = ACTIONS(2740), - [anon_sym_WITH] = ACTIONS(2740), - [sym_cf_comment] = ACTIONS(2738), - [sym__java_block_open] = ACTIONS(2738), - [sym__static_type_prefix] = ACTIONS(2738), - }, - [STATE(600)] = { - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2270), - [anon_sym_EQ] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_Query] = ACTIONS(2270), - [anon_sym_query] = ACTIONS(2270), - [anon_sym_QUERY] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), - [sym_optional_chain] = ACTIONS(2272), - [sym_static_chain] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2272), - [anon_sym_PIPE_PIPE] = ACTIONS(2272), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2272), - [anon_sym_LT_LT] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2272), - [anon_sym_BSLASH] = ACTIONS(2270), - [anon_sym_STAR_STAR] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), - [aux_sym_binary_expression_token1] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2270), - [aux_sym_binary_expression_token2] = ACTIONS(2270), - [aux_sym_binary_expression_token3] = ACTIONS(2270), - [aux_sym_binary_expression_token4] = ACTIONS(2272), - [aux_sym_binary_expression_token5] = ACTIONS(2272), - [aux_sym_binary_expression_token6] = ACTIONS(2272), - [anon_sym_QMARK_QMARK] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_TILDE] = ACTIONS(2272), - [aux_sym_unary_operator_token1] = ACTIONS(2270), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2270), - [aux_sym_number_token2] = ACTIONS(2270), - [anon_sym_This] = ACTIONS(2270), - [anon_sym_this] = ACTIONS(2270), - [anon_sym_THIS] = ACTIONS(2270), - [anon_sym_Super] = ACTIONS(2270), - [anon_sym_super] = ACTIONS(2270), - [anon_sym_SUPER] = ACTIONS(2270), - [anon_sym_True] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2270), - [anon_sym_TRUE] = ACTIONS(2270), - [anon_sym_False] = ACTIONS(2270), - [anon_sym_false] = ACTIONS(2270), - [anon_sym_FALSE] = ACTIONS(2270), - [anon_sym_Null] = ACTIONS(2270), - [anon_sym_null] = ACTIONS(2270), - [anon_sym_NULL] = ACTIONS(2270), - [anon_sym_Undefined] = ACTIONS(2270), - [anon_sym_undefined] = ACTIONS(2270), - [anon_sym_UNDEFINED] = ACTIONS(2270), - [anon_sym_get] = ACTIONS(2270), - [anon_sym_set] = ACTIONS(2270), - [anon_sym_POUND] = ACTIONS(2270), - [sym_hash_empty] = ACTIONS(2272), - [anon_sym_export] = ACTIONS(2270), - [anon_sym_QueryExecute] = ACTIONS(2270), - [anon_sym_queryexecute] = ACTIONS(2270), - [anon_sym_QUERYEXECUTE] = ACTIONS(2270), - [anon_sym_queryExecute] = ACTIONS(2270), - [anon_sym_BQUOTE] = ACTIONS(2272), - [anon_sym_Abstract] = ACTIONS(2270), - [anon_sym_abstract] = ACTIONS(2270), - [anon_sym_ABSTRACT] = ACTIONS(2270), - [anon_sym_Component] = ACTIONS(2270), - [anon_sym_component] = ACTIONS(2270), - [anon_sym_COMPONENT] = ACTIONS(2270), - [anon_sym_Debugger] = ACTIONS(2270), - [anon_sym_debugger] = ACTIONS(2270), - [anon_sym_DEBUGGER] = ACTIONS(2270), - [anon_sym_Final] = ACTIONS(2270), - [anon_sym_final] = ACTIONS(2270), - [anon_sym_FINAL] = ACTIONS(2270), - [anon_sym_Function] = ACTIONS(2270), - [anon_sym_function] = ACTIONS(2270), - [anon_sym_FUNCTION] = ACTIONS(2270), - [anon_sym_In] = ACTIONS(2270), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_IN] = ACTIONS(2270), - [anon_sym_Include] = ACTIONS(2270), - [anon_sym_include] = ACTIONS(2270), - [anon_sym_INCLUDE] = ACTIONS(2270), - [anon_sym_InstanceOf] = ACTIONS(2270), - [anon_sym_instanceof] = ACTIONS(2270), - [anon_sym_INSTANCEOF] = ACTIONS(2270), - [anon_sym_instanceOf] = ACTIONS(2270), - [anon_sym_New] = ACTIONS(2270), - [anon_sym_new] = ACTIONS(2270), - [anon_sym_NEW] = ACTIONS(2270), - [anon_sym_Package] = ACTIONS(2270), - [anon_sym_package] = ACTIONS(2270), - [anon_sym_PACKAGE] = ACTIONS(2270), - [anon_sym_Private] = ACTIONS(2270), - [anon_sym_private] = ACTIONS(2270), - [anon_sym_PRIVATE] = ACTIONS(2270), - [anon_sym_Public] = ACTIONS(2270), - [anon_sym_public] = ACTIONS(2270), - [anon_sym_PUBLIC] = ACTIONS(2270), - [anon_sym_Remote] = ACTIONS(2270), - [anon_sym_remote] = ACTIONS(2270), - [anon_sym_REMOTE] = ACTIONS(2270), - [anon_sym_Static] = ACTIONS(2270), - [anon_sym_static] = ACTIONS(2270), - [anon_sym_STATIC] = ACTIONS(2270), - [sym__ternary_qmark] = ACTIONS(2272), - [sym__elvis_operator] = ACTIONS(2272), - [sym_logical_or] = ACTIONS(2272), - [sym__java_block_open] = ACTIONS(2272), - [sym__static_type_prefix] = ACTIONS(2272), - }, - [STATE(601)] = { + [STATE(593)] = { [ts_builtin_sym_end] = ACTIONS(2730), [sym_identifier] = ACTIONS(2732), [anon_sym_LBRACE] = ACTIONS(2730), @@ -136782,303 +135729,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2730), [sym__static_type_prefix] = ACTIONS(2730), }, - [STATE(602)] = { - [sym_arguments] = STATE(621), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(1722), - [anon_sym_query] = ACTIONS(1722), - [anon_sym_QUERY] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(2746), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [aux_sym_unary_operator_token1] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1722), - [aux_sym_number_token2] = ACTIONS(1722), - [anon_sym_This] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1722), - [anon_sym_THIS] = ACTIONS(1722), - [anon_sym_Super] = ACTIONS(1722), - [anon_sym_super] = ACTIONS(1722), - [anon_sym_SUPER] = ACTIONS(1722), - [anon_sym_True] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_TRUE] = ACTIONS(1722), - [anon_sym_False] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [anon_sym_FALSE] = ACTIONS(1722), - [anon_sym_Null] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1722), - [anon_sym_NULL] = ACTIONS(1722), - [anon_sym_Undefined] = ACTIONS(1722), - [anon_sym_undefined] = ACTIONS(1722), - [anon_sym_UNDEFINED] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [sym_hash_empty] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_QueryExecute] = ACTIONS(1722), - [anon_sym_queryexecute] = ACTIONS(1722), - [anon_sym_QUERYEXECUTE] = ACTIONS(1722), - [anon_sym_queryExecute] = ACTIONS(1722), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_Abstract] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_ABSTRACT] = ACTIONS(1722), - [anon_sym_Component] = ACTIONS(1722), - [anon_sym_component] = ACTIONS(1722), - [anon_sym_COMPONENT] = ACTIONS(1722), - [anon_sym_Debugger] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_DEBUGGER] = ACTIONS(1722), - [anon_sym_Final] = ACTIONS(1722), - [anon_sym_final] = ACTIONS(1722), - [anon_sym_FINAL] = ACTIONS(1722), - [anon_sym_Function] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_FUNCTION] = ACTIONS(1722), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(1722), - [anon_sym_include] = ACTIONS(1722), - [anon_sym_INCLUDE] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_NEW] = ACTIONS(1722), - [anon_sym_Package] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1722), - [anon_sym_PACKAGE] = ACTIONS(1722), - [anon_sym_Private] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_PRIVATE] = ACTIONS(1722), - [anon_sym_Public] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_PUBLIC] = ACTIONS(1722), - [anon_sym_Remote] = ACTIONS(1722), - [anon_sym_remote] = ACTIONS(1722), - [anon_sym_REMOTE] = ACTIONS(1722), - [anon_sym_Static] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_STATIC] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym__java_block_open] = ACTIONS(1720), - [sym__static_type_prefix] = ACTIONS(1720), + [STATE(594)] = { + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_let] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_Query] = ACTIONS(2736), + [anon_sym_query] = ACTIONS(2736), + [anon_sym_QUERY] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_unary_operator_token1] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2736), + [aux_sym_number_token2] = ACTIONS(2734), + [anon_sym_This] = ACTIONS(2736), + [anon_sym_this] = ACTIONS(2736), + [anon_sym_THIS] = ACTIONS(2736), + [anon_sym_Super] = ACTIONS(2736), + [anon_sym_super] = ACTIONS(2736), + [anon_sym_SUPER] = ACTIONS(2736), + [anon_sym_True] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2736), + [anon_sym_TRUE] = ACTIONS(2736), + [anon_sym_False] = ACTIONS(2736), + [anon_sym_false] = ACTIONS(2736), + [anon_sym_FALSE] = ACTIONS(2736), + [anon_sym_Null] = ACTIONS(2736), + [anon_sym_null] = ACTIONS(2736), + [anon_sym_NULL] = ACTIONS(2736), + [anon_sym_Undefined] = ACTIONS(2736), + [anon_sym_undefined] = ACTIONS(2736), + [anon_sym_UNDEFINED] = ACTIONS(2736), + [anon_sym_get] = ACTIONS(2736), + [anon_sym_set] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [sym_hash_empty] = ACTIONS(2734), + [anon_sym_export] = ACTIONS(2736), + [anon_sym_QueryExecute] = ACTIONS(2736), + [anon_sym_queryexecute] = ACTIONS(2736), + [anon_sym_QUERYEXECUTE] = ACTIONS(2736), + [anon_sym_queryExecute] = ACTIONS(2736), + [anon_sym_BQUOTE] = ACTIONS(2736), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2734), + [anon_sym_Abstract] = ACTIONS(2736), + [anon_sym_abstract] = ACTIONS(2736), + [anon_sym_ABSTRACT] = ACTIONS(2736), + [anon_sym_Break] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_BREAK] = ACTIONS(2736), + [anon_sym_Case] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_CASE] = ACTIONS(2736), + [anon_sym_Component] = ACTIONS(2736), + [anon_sym_component] = ACTIONS(2736), + [anon_sym_COMPONENT] = ACTIONS(2736), + [anon_sym_Continue] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_CONTINUE] = ACTIONS(2736), + [anon_sym_Debugger] = ACTIONS(2736), + [anon_sym_debugger] = ACTIONS(2736), + [anon_sym_DEBUGGER] = ACTIONS(2736), + [anon_sym_Default] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_DEFAULT] = ACTIONS(2736), + [anon_sym_Do] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_DO] = ACTIONS(2736), + [anon_sym_Else] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_ELSE] = ACTIONS(2736), + [anon_sym_Final] = ACTIONS(2736), + [anon_sym_final] = ACTIONS(2736), + [anon_sym_FINAL] = ACTIONS(2736), + [anon_sym_For] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_FOR] = ACTIONS(2736), + [anon_sym_Function] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(2736), + [anon_sym_FUNCTION] = ACTIONS(2736), + [anon_sym_If] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_IF] = ACTIONS(2736), + [anon_sym_Import] = ACTIONS(2736), + [anon_sym_import] = ACTIONS(2736), + [anon_sym_IMPORT] = ACTIONS(2736), + [anon_sym_Include] = ACTIONS(2736), + [anon_sym_include] = ACTIONS(2736), + [anon_sym_INCLUDE] = ACTIONS(2736), + [anon_sym_Interface] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_INTERFACE] = ACTIONS(2736), + [anon_sym_New] = ACTIONS(2736), + [anon_sym_new] = ACTIONS(2736), + [anon_sym_NEW] = ACTIONS(2736), + [anon_sym_Package] = ACTIONS(2736), + [anon_sym_package] = ACTIONS(2736), + [anon_sym_PACKAGE] = ACTIONS(2736), + [anon_sym_Private] = ACTIONS(2736), + [anon_sym_private] = ACTIONS(2736), + [anon_sym_PRIVATE] = ACTIONS(2736), + [anon_sym_Property] = ACTIONS(2736), + [anon_sym_property] = ACTIONS(2736), + [anon_sym_PROPERTY] = ACTIONS(2736), + [anon_sym_Public] = ACTIONS(2736), + [anon_sym_public] = ACTIONS(2736), + [anon_sym_PUBLIC] = ACTIONS(2736), + [anon_sym_Remote] = ACTIONS(2736), + [anon_sym_remote] = ACTIONS(2736), + [anon_sym_REMOTE] = ACTIONS(2736), + [anon_sym_Return] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_RETURN] = ACTIONS(2736), + [anon_sym_Static] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_STATIC] = ACTIONS(2736), + [anon_sym_Switch] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_SWITCH] = ACTIONS(2736), + [anon_sym_Throw] = ACTIONS(2736), + [anon_sym_throw] = ACTIONS(2736), + [anon_sym_THROW] = ACTIONS(2736), + [anon_sym_Try] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2736), + [anon_sym_TRY] = ACTIONS(2736), + [anon_sym_Var] = ACTIONS(2736), + [anon_sym_var] = ACTIONS(2736), + [anon_sym_VAR] = ACTIONS(2736), + [anon_sym_While] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_WHILE] = ACTIONS(2736), + [anon_sym_With] = ACTIONS(2736), + [anon_sym_with] = ACTIONS(2736), + [anon_sym_WITH] = ACTIONS(2736), + [sym_cf_comment] = ACTIONS(2734), + [sym__java_block_open] = ACTIONS(2734), + [sym__static_type_prefix] = ACTIONS(2734), }, - [STATE(603)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_Query] = ACTIONS(507), - [anon_sym_query] = ACTIONS(507), - [anon_sym_QUERY] = ACTIONS(507), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(509), - [aux_sym_unary_operator_token1] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(509), + [STATE(595)] = { + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_Query] = ACTIONS(2740), + [anon_sym_query] = ACTIONS(2740), + [anon_sym_QUERY] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [aux_sym_unary_operator_token1] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(507), - [aux_sym_number_token2] = ACTIONS(507), - [anon_sym_This] = ACTIONS(507), - [anon_sym_this] = ACTIONS(507), - [anon_sym_THIS] = ACTIONS(507), - [anon_sym_Super] = ACTIONS(507), - [anon_sym_super] = ACTIONS(507), - [anon_sym_SUPER] = ACTIONS(507), - [anon_sym_True] = ACTIONS(507), - [anon_sym_true] = ACTIONS(507), - [anon_sym_TRUE] = ACTIONS(507), - [anon_sym_False] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_FALSE] = ACTIONS(507), - [anon_sym_Null] = ACTIONS(507), - [anon_sym_null] = ACTIONS(507), - [anon_sym_NULL] = ACTIONS(507), - [anon_sym_Undefined] = ACTIONS(507), - [anon_sym_undefined] = ACTIONS(507), - [anon_sym_UNDEFINED] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(507), - [sym_hash_empty] = ACTIONS(509), - [anon_sym_export] = ACTIONS(507), - [anon_sym_QueryExecute] = ACTIONS(507), - [anon_sym_queryexecute] = ACTIONS(507), - [anon_sym_QUERYEXECUTE] = ACTIONS(507), - [anon_sym_queryExecute] = ACTIONS(507), - [anon_sym_BQUOTE] = ACTIONS(509), - [anon_sym_Abstract] = ACTIONS(507), - [anon_sym_abstract] = ACTIONS(507), - [anon_sym_ABSTRACT] = ACTIONS(507), - [anon_sym_Component] = ACTIONS(507), - [anon_sym_component] = ACTIONS(507), - [anon_sym_COMPONENT] = ACTIONS(507), - [anon_sym_Debugger] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_DEBUGGER] = ACTIONS(507), - [anon_sym_Final] = ACTIONS(507), - [anon_sym_final] = ACTIONS(507), - [anon_sym_FINAL] = ACTIONS(507), - [anon_sym_Function] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_FUNCTION] = ACTIONS(507), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(507), - [anon_sym_include] = ACTIONS(507), - [anon_sym_INCLUDE] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_NEW] = ACTIONS(507), - [anon_sym_Package] = ACTIONS(507), - [anon_sym_package] = ACTIONS(507), - [anon_sym_PACKAGE] = ACTIONS(507), - [anon_sym_Private] = ACTIONS(507), - [anon_sym_private] = ACTIONS(507), - [anon_sym_PRIVATE] = ACTIONS(507), - [anon_sym_Public] = ACTIONS(507), - [anon_sym_public] = ACTIONS(507), - [anon_sym_PUBLIC] = ACTIONS(507), - [anon_sym_Remote] = ACTIONS(507), - [anon_sym_remote] = ACTIONS(507), - [anon_sym_REMOTE] = ACTIONS(507), - [anon_sym_Static] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_STATIC] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(509), - [sym__static_type_prefix] = ACTIONS(509), + [aux_sym_number_token1] = ACTIONS(2740), + [aux_sym_number_token2] = ACTIONS(2738), + [anon_sym_This] = ACTIONS(2740), + [anon_sym_this] = ACTIONS(2740), + [anon_sym_THIS] = ACTIONS(2740), + [anon_sym_Super] = ACTIONS(2740), + [anon_sym_super] = ACTIONS(2740), + [anon_sym_SUPER] = ACTIONS(2740), + [anon_sym_True] = ACTIONS(2740), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_TRUE] = ACTIONS(2740), + [anon_sym_False] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_FALSE] = ACTIONS(2740), + [anon_sym_Null] = ACTIONS(2740), + [anon_sym_null] = ACTIONS(2740), + [anon_sym_NULL] = ACTIONS(2740), + [anon_sym_Undefined] = ACTIONS(2740), + [anon_sym_undefined] = ACTIONS(2740), + [anon_sym_UNDEFINED] = ACTIONS(2740), + [anon_sym_get] = ACTIONS(2740), + [anon_sym_set] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [sym_hash_empty] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_QueryExecute] = ACTIONS(2740), + [anon_sym_queryexecute] = ACTIONS(2740), + [anon_sym_QUERYEXECUTE] = ACTIONS(2740), + [anon_sym_queryExecute] = ACTIONS(2740), + [anon_sym_BQUOTE] = ACTIONS(2740), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2738), + [anon_sym_Abstract] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_ABSTRACT] = ACTIONS(2740), + [anon_sym_Break] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_BREAK] = ACTIONS(2740), + [anon_sym_Case] = ACTIONS(2740), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_CASE] = ACTIONS(2740), + [anon_sym_Component] = ACTIONS(2740), + [anon_sym_component] = ACTIONS(2740), + [anon_sym_COMPONENT] = ACTIONS(2740), + [anon_sym_Continue] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_CONTINUE] = ACTIONS(2740), + [anon_sym_Debugger] = ACTIONS(2740), + [anon_sym_debugger] = ACTIONS(2740), + [anon_sym_DEBUGGER] = ACTIONS(2740), + [anon_sym_Default] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_DEFAULT] = ACTIONS(2740), + [anon_sym_Do] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_DO] = ACTIONS(2740), + [anon_sym_Else] = ACTIONS(2740), + [anon_sym_else] = ACTIONS(2740), + [anon_sym_ELSE] = ACTIONS(2740), + [anon_sym_Final] = ACTIONS(2740), + [anon_sym_final] = ACTIONS(2740), + [anon_sym_FINAL] = ACTIONS(2740), + [anon_sym_For] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_FOR] = ACTIONS(2740), + [anon_sym_Function] = ACTIONS(2740), + [anon_sym_function] = ACTIONS(2740), + [anon_sym_FUNCTION] = ACTIONS(2740), + [anon_sym_If] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_IF] = ACTIONS(2740), + [anon_sym_Import] = ACTIONS(2740), + [anon_sym_import] = ACTIONS(2740), + [anon_sym_IMPORT] = ACTIONS(2740), + [anon_sym_Include] = ACTIONS(2740), + [anon_sym_include] = ACTIONS(2740), + [anon_sym_INCLUDE] = ACTIONS(2740), + [anon_sym_Interface] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_INTERFACE] = ACTIONS(2740), + [anon_sym_New] = ACTIONS(2740), + [anon_sym_new] = ACTIONS(2740), + [anon_sym_NEW] = ACTIONS(2740), + [anon_sym_Package] = ACTIONS(2740), + [anon_sym_package] = ACTIONS(2740), + [anon_sym_PACKAGE] = ACTIONS(2740), + [anon_sym_Private] = ACTIONS(2740), + [anon_sym_private] = ACTIONS(2740), + [anon_sym_PRIVATE] = ACTIONS(2740), + [anon_sym_Property] = ACTIONS(2740), + [anon_sym_property] = ACTIONS(2740), + [anon_sym_PROPERTY] = ACTIONS(2740), + [anon_sym_Public] = ACTIONS(2740), + [anon_sym_public] = ACTIONS(2740), + [anon_sym_PUBLIC] = ACTIONS(2740), + [anon_sym_Remote] = ACTIONS(2740), + [anon_sym_remote] = ACTIONS(2740), + [anon_sym_REMOTE] = ACTIONS(2740), + [anon_sym_Return] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_RETURN] = ACTIONS(2740), + [anon_sym_Static] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_STATIC] = ACTIONS(2740), + [anon_sym_Switch] = ACTIONS(2740), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_SWITCH] = ACTIONS(2740), + [anon_sym_Throw] = ACTIONS(2740), + [anon_sym_throw] = ACTIONS(2740), + [anon_sym_THROW] = ACTIONS(2740), + [anon_sym_Try] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [anon_sym_TRY] = ACTIONS(2740), + [anon_sym_Var] = ACTIONS(2740), + [anon_sym_var] = ACTIONS(2740), + [anon_sym_VAR] = ACTIONS(2740), + [anon_sym_While] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_WHILE] = ACTIONS(2740), + [anon_sym_With] = ACTIONS(2740), + [anon_sym_with] = ACTIONS(2740), + [anon_sym_WITH] = ACTIONS(2740), + [sym_cf_comment] = ACTIONS(2738), + [sym__java_block_open] = ACTIONS(2738), + [sym__static_type_prefix] = ACTIONS(2738), }, - [STATE(604)] = { + [STATE(596)] = { + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_Query] = ACTIONS(2744), + [anon_sym_query] = ACTIONS(2744), + [anon_sym_QUERY] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [aux_sym_unary_operator_token1] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2744), + [aux_sym_number_token2] = ACTIONS(2742), + [anon_sym_This] = ACTIONS(2744), + [anon_sym_this] = ACTIONS(2744), + [anon_sym_THIS] = ACTIONS(2744), + [anon_sym_Super] = ACTIONS(2744), + [anon_sym_super] = ACTIONS(2744), + [anon_sym_SUPER] = ACTIONS(2744), + [anon_sym_True] = ACTIONS(2744), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_TRUE] = ACTIONS(2744), + [anon_sym_False] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_FALSE] = ACTIONS(2744), + [anon_sym_Null] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2744), + [anon_sym_NULL] = ACTIONS(2744), + [anon_sym_Undefined] = ACTIONS(2744), + [anon_sym_undefined] = ACTIONS(2744), + [anon_sym_UNDEFINED] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [sym_hash_empty] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_QueryExecute] = ACTIONS(2744), + [anon_sym_queryexecute] = ACTIONS(2744), + [anon_sym_QUERYEXECUTE] = ACTIONS(2744), + [anon_sym_queryExecute] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2742), + [anon_sym_Abstract] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_ABSTRACT] = ACTIONS(2744), + [anon_sym_Break] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_BREAK] = ACTIONS(2744), + [anon_sym_Case] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_CASE] = ACTIONS(2744), + [anon_sym_Component] = ACTIONS(2744), + [anon_sym_component] = ACTIONS(2744), + [anon_sym_COMPONENT] = ACTIONS(2744), + [anon_sym_Continue] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_CONTINUE] = ACTIONS(2744), + [anon_sym_Debugger] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_DEBUGGER] = ACTIONS(2744), + [anon_sym_Default] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_DEFAULT] = ACTIONS(2744), + [anon_sym_Do] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_DO] = ACTIONS(2744), + [anon_sym_Else] = ACTIONS(2744), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_ELSE] = ACTIONS(2744), + [anon_sym_Final] = ACTIONS(2744), + [anon_sym_final] = ACTIONS(2744), + [anon_sym_FINAL] = ACTIONS(2744), + [anon_sym_For] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_FOR] = ACTIONS(2744), + [anon_sym_Function] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_FUNCTION] = ACTIONS(2744), + [anon_sym_If] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_IF] = ACTIONS(2744), + [anon_sym_Import] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_IMPORT] = ACTIONS(2744), + [anon_sym_Include] = ACTIONS(2744), + [anon_sym_include] = ACTIONS(2744), + [anon_sym_INCLUDE] = ACTIONS(2744), + [anon_sym_Interface] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_INTERFACE] = ACTIONS(2744), + [anon_sym_New] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_NEW] = ACTIONS(2744), + [anon_sym_Package] = ACTIONS(2744), + [anon_sym_package] = ACTIONS(2744), + [anon_sym_PACKAGE] = ACTIONS(2744), + [anon_sym_Private] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_PRIVATE] = ACTIONS(2744), + [anon_sym_Property] = ACTIONS(2744), + [anon_sym_property] = ACTIONS(2744), + [anon_sym_PROPERTY] = ACTIONS(2744), + [anon_sym_Public] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_PUBLIC] = ACTIONS(2744), + [anon_sym_Remote] = ACTIONS(2744), + [anon_sym_remote] = ACTIONS(2744), + [anon_sym_REMOTE] = ACTIONS(2744), + [anon_sym_Return] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_RETURN] = ACTIONS(2744), + [anon_sym_Static] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_STATIC] = ACTIONS(2744), + [anon_sym_Switch] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_SWITCH] = ACTIONS(2744), + [anon_sym_Throw] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_THROW] = ACTIONS(2744), + [anon_sym_Try] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_TRY] = ACTIONS(2744), + [anon_sym_Var] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_VAR] = ACTIONS(2744), + [anon_sym_While] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_WHILE] = ACTIONS(2744), + [anon_sym_With] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_WITH] = ACTIONS(2744), + [sym_cf_comment] = ACTIONS(2742), + [sym__java_block_open] = ACTIONS(2742), + [sym__static_type_prefix] = ACTIONS(2742), + }, + [STATE(597)] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_let] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_Query] = ACTIONS(2748), + [anon_sym_query] = ACTIONS(2748), + [anon_sym_QUERY] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [aux_sym_unary_operator_token1] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2748), + [aux_sym_number_token2] = ACTIONS(2746), + [anon_sym_This] = ACTIONS(2748), + [anon_sym_this] = ACTIONS(2748), + [anon_sym_THIS] = ACTIONS(2748), + [anon_sym_Super] = ACTIONS(2748), + [anon_sym_super] = ACTIONS(2748), + [anon_sym_SUPER] = ACTIONS(2748), + [anon_sym_True] = ACTIONS(2748), + [anon_sym_true] = ACTIONS(2748), + [anon_sym_TRUE] = ACTIONS(2748), + [anon_sym_False] = ACTIONS(2748), + [anon_sym_false] = ACTIONS(2748), + [anon_sym_FALSE] = ACTIONS(2748), + [anon_sym_Null] = ACTIONS(2748), + [anon_sym_null] = ACTIONS(2748), + [anon_sym_NULL] = ACTIONS(2748), + [anon_sym_Undefined] = ACTIONS(2748), + [anon_sym_undefined] = ACTIONS(2748), + [anon_sym_UNDEFINED] = ACTIONS(2748), + [anon_sym_get] = ACTIONS(2748), + [anon_sym_set] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [sym_hash_empty] = ACTIONS(2746), + [anon_sym_export] = ACTIONS(2748), + [anon_sym_QueryExecute] = ACTIONS(2748), + [anon_sym_queryexecute] = ACTIONS(2748), + [anon_sym_QUERYEXECUTE] = ACTIONS(2748), + [anon_sym_queryExecute] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2746), + [anon_sym_Abstract] = ACTIONS(2748), + [anon_sym_abstract] = ACTIONS(2748), + [anon_sym_ABSTRACT] = ACTIONS(2748), + [anon_sym_Break] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_BREAK] = ACTIONS(2748), + [anon_sym_Case] = ACTIONS(2748), + [anon_sym_case] = ACTIONS(2748), + [anon_sym_CASE] = ACTIONS(2748), + [anon_sym_Component] = ACTIONS(2748), + [anon_sym_component] = ACTIONS(2748), + [anon_sym_COMPONENT] = ACTIONS(2748), + [anon_sym_Continue] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_CONTINUE] = ACTIONS(2748), + [anon_sym_Debugger] = ACTIONS(2748), + [anon_sym_debugger] = ACTIONS(2748), + [anon_sym_DEBUGGER] = ACTIONS(2748), + [anon_sym_Default] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_DEFAULT] = ACTIONS(2748), + [anon_sym_Do] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_DO] = ACTIONS(2748), + [anon_sym_Else] = ACTIONS(2748), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_ELSE] = ACTIONS(2748), + [anon_sym_Final] = ACTIONS(2748), + [anon_sym_final] = ACTIONS(2748), + [anon_sym_FINAL] = ACTIONS(2748), + [anon_sym_For] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_FOR] = ACTIONS(2748), + [anon_sym_Function] = ACTIONS(2748), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_FUNCTION] = ACTIONS(2748), + [anon_sym_If] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_IF] = ACTIONS(2748), + [anon_sym_Import] = ACTIONS(2748), + [anon_sym_import] = ACTIONS(2748), + [anon_sym_IMPORT] = ACTIONS(2748), + [anon_sym_Include] = ACTIONS(2748), + [anon_sym_include] = ACTIONS(2748), + [anon_sym_INCLUDE] = ACTIONS(2748), + [anon_sym_Interface] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_INTERFACE] = ACTIONS(2748), + [anon_sym_New] = ACTIONS(2748), + [anon_sym_new] = ACTIONS(2748), + [anon_sym_NEW] = ACTIONS(2748), + [anon_sym_Package] = ACTIONS(2748), + [anon_sym_package] = ACTIONS(2748), + [anon_sym_PACKAGE] = ACTIONS(2748), + [anon_sym_Private] = ACTIONS(2748), + [anon_sym_private] = ACTIONS(2748), + [anon_sym_PRIVATE] = ACTIONS(2748), + [anon_sym_Property] = ACTIONS(2748), + [anon_sym_property] = ACTIONS(2748), + [anon_sym_PROPERTY] = ACTIONS(2748), + [anon_sym_Public] = ACTIONS(2748), + [anon_sym_public] = ACTIONS(2748), + [anon_sym_PUBLIC] = ACTIONS(2748), + [anon_sym_Remote] = ACTIONS(2748), + [anon_sym_remote] = ACTIONS(2748), + [anon_sym_REMOTE] = ACTIONS(2748), + [anon_sym_Return] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_RETURN] = ACTIONS(2748), + [anon_sym_Static] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_STATIC] = ACTIONS(2748), + [anon_sym_Switch] = ACTIONS(2748), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_SWITCH] = ACTIONS(2748), + [anon_sym_Throw] = ACTIONS(2748), + [anon_sym_throw] = ACTIONS(2748), + [anon_sym_THROW] = ACTIONS(2748), + [anon_sym_Try] = ACTIONS(2748), + [anon_sym_try] = ACTIONS(2748), + [anon_sym_TRY] = ACTIONS(2748), + [anon_sym_Var] = ACTIONS(2748), + [anon_sym_var] = ACTIONS(2748), + [anon_sym_VAR] = ACTIONS(2748), + [anon_sym_While] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_WHILE] = ACTIONS(2748), + [anon_sym_With] = ACTIONS(2748), + [anon_sym_with] = ACTIONS(2748), + [anon_sym_WITH] = ACTIONS(2748), + [sym_cf_comment] = ACTIONS(2746), + [sym__java_block_open] = ACTIONS(2746), + [sym__static_type_prefix] = ACTIONS(2746), + }, + [STATE(598)] = { [ts_builtin_sym_end] = ACTIONS(2750), [sym_identifier] = ACTIONS(2752), [anon_sym_LBRACE] = ACTIONS(2750), @@ -137226,155 +136469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2750), [sym__static_type_prefix] = ACTIONS(2750), }, - [STATE(605)] = { - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_Query] = ACTIONS(2756), - [anon_sym_query] = ACTIONS(2756), - [anon_sym_QUERY] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2754), - [aux_sym_unary_operator_token1] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_SQUOTE] = ACTIONS(2754), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2756), - [aux_sym_number_token2] = ACTIONS(2754), - [anon_sym_This] = ACTIONS(2756), - [anon_sym_this] = ACTIONS(2756), - [anon_sym_THIS] = ACTIONS(2756), - [anon_sym_Super] = ACTIONS(2756), - [anon_sym_super] = ACTIONS(2756), - [anon_sym_SUPER] = ACTIONS(2756), - [anon_sym_True] = ACTIONS(2756), - [anon_sym_true] = ACTIONS(2756), - [anon_sym_TRUE] = ACTIONS(2756), - [anon_sym_False] = ACTIONS(2756), - [anon_sym_false] = ACTIONS(2756), - [anon_sym_FALSE] = ACTIONS(2756), - [anon_sym_Null] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2756), - [anon_sym_NULL] = ACTIONS(2756), - [anon_sym_Undefined] = ACTIONS(2756), - [anon_sym_undefined] = ACTIONS(2756), - [anon_sym_UNDEFINED] = ACTIONS(2756), - [anon_sym_get] = ACTIONS(2756), - [anon_sym_set] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [sym_hash_empty] = ACTIONS(2754), - [anon_sym_export] = ACTIONS(2756), - [anon_sym_QueryExecute] = ACTIONS(2756), - [anon_sym_queryexecute] = ACTIONS(2756), - [anon_sym_QUERYEXECUTE] = ACTIONS(2756), - [anon_sym_queryExecute] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2754), - [anon_sym_Abstract] = ACTIONS(2756), - [anon_sym_abstract] = ACTIONS(2756), - [anon_sym_ABSTRACT] = ACTIONS(2756), - [anon_sym_Break] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_BREAK] = ACTIONS(2756), - [anon_sym_Case] = ACTIONS(2756), - [anon_sym_case] = ACTIONS(2756), - [anon_sym_CASE] = ACTIONS(2756), - [anon_sym_Component] = ACTIONS(2756), - [anon_sym_component] = ACTIONS(2756), - [anon_sym_COMPONENT] = ACTIONS(2756), - [anon_sym_Continue] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_CONTINUE] = ACTIONS(2756), - [anon_sym_Debugger] = ACTIONS(2756), - [anon_sym_debugger] = ACTIONS(2756), - [anon_sym_DEBUGGER] = ACTIONS(2756), - [anon_sym_Default] = ACTIONS(2756), - [anon_sym_default] = ACTIONS(2756), - [anon_sym_DEFAULT] = ACTIONS(2756), - [anon_sym_Do] = ACTIONS(2756), - [anon_sym_do] = ACTIONS(2756), - [anon_sym_DO] = ACTIONS(2756), - [anon_sym_Else] = ACTIONS(2756), - [anon_sym_else] = ACTIONS(2756), - [anon_sym_ELSE] = ACTIONS(2756), - [anon_sym_Final] = ACTIONS(2756), - [anon_sym_final] = ACTIONS(2756), - [anon_sym_FINAL] = ACTIONS(2756), - [anon_sym_For] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_FOR] = ACTIONS(2756), - [anon_sym_Function] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2756), - [anon_sym_FUNCTION] = ACTIONS(2756), - [anon_sym_If] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_IF] = ACTIONS(2756), - [anon_sym_Import] = ACTIONS(2756), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_IMPORT] = ACTIONS(2756), - [anon_sym_Include] = ACTIONS(2756), - [anon_sym_include] = ACTIONS(2756), - [anon_sym_INCLUDE] = ACTIONS(2756), - [anon_sym_Interface] = ACTIONS(2756), - [anon_sym_interface] = ACTIONS(2756), - [anon_sym_INTERFACE] = ACTIONS(2756), - [anon_sym_New] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2756), - [anon_sym_NEW] = ACTIONS(2756), - [anon_sym_Package] = ACTIONS(2756), - [anon_sym_package] = ACTIONS(2756), - [anon_sym_PACKAGE] = ACTIONS(2756), - [anon_sym_Private] = ACTIONS(2756), - [anon_sym_private] = ACTIONS(2756), - [anon_sym_PRIVATE] = ACTIONS(2756), - [anon_sym_Property] = ACTIONS(2756), - [anon_sym_property] = ACTIONS(2756), - [anon_sym_PROPERTY] = ACTIONS(2756), - [anon_sym_Public] = ACTIONS(2756), - [anon_sym_public] = ACTIONS(2756), - [anon_sym_PUBLIC] = ACTIONS(2756), - [anon_sym_Remote] = ACTIONS(2756), - [anon_sym_remote] = ACTIONS(2756), - [anon_sym_REMOTE] = ACTIONS(2756), - [anon_sym_Return] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_RETURN] = ACTIONS(2756), - [anon_sym_Static] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_STATIC] = ACTIONS(2756), - [anon_sym_Switch] = ACTIONS(2756), - [anon_sym_switch] = ACTIONS(2756), - [anon_sym_SWITCH] = ACTIONS(2756), - [anon_sym_Throw] = ACTIONS(2756), - [anon_sym_throw] = ACTIONS(2756), - [anon_sym_THROW] = ACTIONS(2756), - [anon_sym_Try] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(2756), - [anon_sym_TRY] = ACTIONS(2756), - [anon_sym_Var] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2756), - [anon_sym_VAR] = ACTIONS(2756), - [anon_sym_While] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_WHILE] = ACTIONS(2756), - [anon_sym_With] = ACTIONS(2756), - [anon_sym_with] = ACTIONS(2756), - [anon_sym_WITH] = ACTIONS(2756), - [sym_cf_comment] = ACTIONS(2754), - [sym__java_block_open] = ACTIONS(2754), - [sym__static_type_prefix] = ACTIONS(2754), - }, - [STATE(606)] = { + [STATE(599)] = { [ts_builtin_sym_end] = ACTIONS(2754), [sym_identifier] = ACTIONS(2756), [anon_sym_LBRACE] = ACTIONS(2754), @@ -137522,7 +136617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2754), [sym__static_type_prefix] = ACTIONS(2754), }, - [STATE(607)] = { + [STATE(600)] = { [ts_builtin_sym_end] = ACTIONS(2758), [sym_identifier] = ACTIONS(2760), [anon_sym_LBRACE] = ACTIONS(2758), @@ -137670,7 +136765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2758), [sym__static_type_prefix] = ACTIONS(2758), }, - [STATE(608)] = { + [STATE(601)] = { [ts_builtin_sym_end] = ACTIONS(2762), [sym_identifier] = ACTIONS(2764), [anon_sym_LBRACE] = ACTIONS(2762), @@ -137818,7 +136913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2762), [sym__static_type_prefix] = ACTIONS(2762), }, - [STATE(609)] = { + [STATE(602)] = { [ts_builtin_sym_end] = ACTIONS(2766), [sym_identifier] = ACTIONS(2768), [anon_sym_LBRACE] = ACTIONS(2766), @@ -137966,7 +137061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2766), [sym__static_type_prefix] = ACTIONS(2766), }, - [STATE(610)] = { + [STATE(603)] = { [ts_builtin_sym_end] = ACTIONS(2770), [sym_identifier] = ACTIONS(2772), [anon_sym_LBRACE] = ACTIONS(2770), @@ -138114,7 +137209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2770), [sym__static_type_prefix] = ACTIONS(2770), }, - [STATE(611)] = { + [STATE(604)] = { [ts_builtin_sym_end] = ACTIONS(2774), [sym_identifier] = ACTIONS(2776), [anon_sym_LBRACE] = ACTIONS(2774), @@ -138262,7 +137357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2774), [sym__static_type_prefix] = ACTIONS(2774), }, - [STATE(612)] = { + [STATE(605)] = { [ts_builtin_sym_end] = ACTIONS(2778), [sym_identifier] = ACTIONS(2780), [anon_sym_LBRACE] = ACTIONS(2778), @@ -138410,7 +137505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2778), [sym__static_type_prefix] = ACTIONS(2778), }, - [STATE(613)] = { + [STATE(606)] = { [ts_builtin_sym_end] = ACTIONS(2782), [sym_identifier] = ACTIONS(2784), [anon_sym_LBRACE] = ACTIONS(2782), @@ -138558,7 +137653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2782), [sym__static_type_prefix] = ACTIONS(2782), }, - [STATE(614)] = { + [STATE(607)] = { [ts_builtin_sym_end] = ACTIONS(2786), [sym_identifier] = ACTIONS(2788), [anon_sym_LBRACE] = ACTIONS(2786), @@ -138706,7 +137801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2786), [sym__static_type_prefix] = ACTIONS(2786), }, - [STATE(615)] = { + [STATE(608)] = { [ts_builtin_sym_end] = ACTIONS(2790), [sym_identifier] = ACTIONS(2792), [anon_sym_LBRACE] = ACTIONS(2790), @@ -138854,7 +137949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2790), [sym__static_type_prefix] = ACTIONS(2790), }, - [STATE(616)] = { + [STATE(609)] = { [ts_builtin_sym_end] = ACTIONS(2794), [sym_identifier] = ACTIONS(2796), [anon_sym_LBRACE] = ACTIONS(2794), @@ -139002,7 +138097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2794), [sym__static_type_prefix] = ACTIONS(2794), }, - [STATE(617)] = { + [STATE(610)] = { [ts_builtin_sym_end] = ACTIONS(2798), [sym_identifier] = ACTIONS(2800), [anon_sym_LBRACE] = ACTIONS(2798), @@ -139150,7 +138245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2798), [sym__static_type_prefix] = ACTIONS(2798), }, - [STATE(618)] = { + [STATE(611)] = { [ts_builtin_sym_end] = ACTIONS(2802), [sym_identifier] = ACTIONS(2804), [anon_sym_LBRACE] = ACTIONS(2802), @@ -139298,7 +138393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2802), [sym__static_type_prefix] = ACTIONS(2802), }, - [STATE(619)] = { + [STATE(612)] = { [ts_builtin_sym_end] = ACTIONS(2806), [sym_identifier] = ACTIONS(2808), [anon_sym_LBRACE] = ACTIONS(2806), @@ -139446,7 +138541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2806), [sym__static_type_prefix] = ACTIONS(2806), }, - [STATE(620)] = { + [STATE(613)] = { [ts_builtin_sym_end] = ACTIONS(2810), [sym_identifier] = ACTIONS(2812), [anon_sym_LBRACE] = ACTIONS(2810), @@ -139594,155 +138689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2810), [sym__static_type_prefix] = ACTIONS(2810), }, - [STATE(621)] = { - [sym_identifier] = ACTIONS(2242), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_Query] = ACTIONS(2242), - [anon_sym_query] = ACTIONS(2242), - [anon_sym_QUERY] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2242), - [sym_optional_chain] = ACTIONS(2282), - [sym_static_chain] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2242), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_BSLASH] = ACTIONS(2242), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_LT_GT] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [aux_sym_binary_expression_token1] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2242), - [aux_sym_binary_expression_token2] = ACTIONS(2242), - [aux_sym_binary_expression_token3] = ACTIONS(2242), - [aux_sym_binary_expression_token4] = ACTIONS(2282), - [aux_sym_binary_expression_token5] = ACTIONS(2282), - [aux_sym_binary_expression_token6] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_TILDE] = ACTIONS(2282), - [aux_sym_unary_operator_token1] = ACTIONS(2242), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2282), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2242), - [aux_sym_number_token2] = ACTIONS(2242), - [anon_sym_This] = ACTIONS(2242), - [anon_sym_this] = ACTIONS(2242), - [anon_sym_THIS] = ACTIONS(2242), - [anon_sym_Super] = ACTIONS(2242), - [anon_sym_super] = ACTIONS(2242), - [anon_sym_SUPER] = ACTIONS(2242), - [anon_sym_True] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2242), - [anon_sym_TRUE] = ACTIONS(2242), - [anon_sym_False] = ACTIONS(2242), - [anon_sym_false] = ACTIONS(2242), - [anon_sym_FALSE] = ACTIONS(2242), - [anon_sym_Null] = ACTIONS(2242), - [anon_sym_null] = ACTIONS(2242), - [anon_sym_NULL] = ACTIONS(2242), - [anon_sym_Undefined] = ACTIONS(2242), - [anon_sym_undefined] = ACTIONS(2242), - [anon_sym_UNDEFINED] = ACTIONS(2242), - [anon_sym_get] = ACTIONS(2242), - [anon_sym_set] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(2242), - [sym_hash_empty] = ACTIONS(2282), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_QueryExecute] = ACTIONS(2242), - [anon_sym_queryexecute] = ACTIONS(2242), - [anon_sym_QUERYEXECUTE] = ACTIONS(2242), - [anon_sym_queryExecute] = ACTIONS(2242), - [anon_sym_BQUOTE] = ACTIONS(2282), - [anon_sym_Abstract] = ACTIONS(2242), - [anon_sym_abstract] = ACTIONS(2242), - [anon_sym_ABSTRACT] = ACTIONS(2242), - [anon_sym_Component] = ACTIONS(2242), - [anon_sym_component] = ACTIONS(2242), - [anon_sym_COMPONENT] = ACTIONS(2242), - [anon_sym_Debugger] = ACTIONS(2242), - [anon_sym_debugger] = ACTIONS(2242), - [anon_sym_DEBUGGER] = ACTIONS(2242), - [anon_sym_Final] = ACTIONS(2242), - [anon_sym_final] = ACTIONS(2242), - [anon_sym_FINAL] = ACTIONS(2242), - [anon_sym_Function] = ACTIONS(2242), - [anon_sym_function] = ACTIONS(2242), - [anon_sym_FUNCTION] = ACTIONS(2242), - [anon_sym_In] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_IN] = ACTIONS(2242), - [anon_sym_Include] = ACTIONS(2242), - [anon_sym_include] = ACTIONS(2242), - [anon_sym_INCLUDE] = ACTIONS(2242), - [anon_sym_InstanceOf] = ACTIONS(2242), - [anon_sym_instanceof] = ACTIONS(2242), - [anon_sym_INSTANCEOF] = ACTIONS(2242), - [anon_sym_instanceOf] = ACTIONS(2242), - [anon_sym_New] = ACTIONS(2242), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_NEW] = ACTIONS(2242), - [anon_sym_Package] = ACTIONS(2242), - [anon_sym_package] = ACTIONS(2242), - [anon_sym_PACKAGE] = ACTIONS(2242), - [anon_sym_Private] = ACTIONS(2242), - [anon_sym_private] = ACTIONS(2242), - [anon_sym_PRIVATE] = ACTIONS(2242), - [anon_sym_Public] = ACTIONS(2242), - [anon_sym_public] = ACTIONS(2242), - [anon_sym_PUBLIC] = ACTIONS(2242), - [anon_sym_Remote] = ACTIONS(2242), - [anon_sym_remote] = ACTIONS(2242), - [anon_sym_REMOTE] = ACTIONS(2242), - [anon_sym_Static] = ACTIONS(2242), - [anon_sym_static] = ACTIONS(2242), - [anon_sym_STATIC] = ACTIONS(2242), - [sym__ternary_qmark] = ACTIONS(2282), - [sym__elvis_operator] = ACTIONS(2282), - [sym_logical_or] = ACTIONS(2282), - [sym__java_block_open] = ACTIONS(2282), - [sym__static_type_prefix] = ACTIONS(2282), - }, - [STATE(622)] = { + [STATE(614)] = { [ts_builtin_sym_end] = ACTIONS(2814), [sym_identifier] = ACTIONS(2816), [anon_sym_LBRACE] = ACTIONS(2814), @@ -139890,7 +138837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2814), [sym__static_type_prefix] = ACTIONS(2814), }, - [STATE(623)] = { + [STATE(615)] = { [ts_builtin_sym_end] = ACTIONS(2818), [sym_identifier] = ACTIONS(2820), [anon_sym_LBRACE] = ACTIONS(2818), @@ -140038,7 +138985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2818), [sym__static_type_prefix] = ACTIONS(2818), }, - [STATE(624)] = { + [STATE(616)] = { [ts_builtin_sym_end] = ACTIONS(2822), [sym_identifier] = ACTIONS(2824), [anon_sym_LBRACE] = ACTIONS(2822), @@ -140101,388 +139048,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Case] = ACTIONS(2824), [anon_sym_case] = ACTIONS(2824), [anon_sym_CASE] = ACTIONS(2824), - [anon_sym_Component] = ACTIONS(2824), - [anon_sym_component] = ACTIONS(2824), - [anon_sym_COMPONENT] = ACTIONS(2824), - [anon_sym_Continue] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_CONTINUE] = ACTIONS(2824), - [anon_sym_Debugger] = ACTIONS(2824), - [anon_sym_debugger] = ACTIONS(2824), - [anon_sym_DEBUGGER] = ACTIONS(2824), - [anon_sym_Default] = ACTIONS(2824), - [anon_sym_default] = ACTIONS(2824), - [anon_sym_DEFAULT] = ACTIONS(2824), - [anon_sym_Do] = ACTIONS(2824), - [anon_sym_do] = ACTIONS(2824), - [anon_sym_DO] = ACTIONS(2824), - [anon_sym_Else] = ACTIONS(2824), - [anon_sym_else] = ACTIONS(2824), - [anon_sym_ELSE] = ACTIONS(2824), - [anon_sym_Final] = ACTIONS(2824), - [anon_sym_final] = ACTIONS(2824), - [anon_sym_FINAL] = ACTIONS(2824), - [anon_sym_For] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_FOR] = ACTIONS(2824), - [anon_sym_Function] = ACTIONS(2824), - [anon_sym_function] = ACTIONS(2824), - [anon_sym_FUNCTION] = ACTIONS(2824), - [anon_sym_If] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_IF] = ACTIONS(2824), - [anon_sym_Import] = ACTIONS(2824), - [anon_sym_import] = ACTIONS(2824), - [anon_sym_IMPORT] = ACTIONS(2824), - [anon_sym_Include] = ACTIONS(2824), - [anon_sym_include] = ACTIONS(2824), - [anon_sym_INCLUDE] = ACTIONS(2824), - [anon_sym_Interface] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_INTERFACE] = ACTIONS(2824), - [anon_sym_New] = ACTIONS(2824), - [anon_sym_new] = ACTIONS(2824), - [anon_sym_NEW] = ACTIONS(2824), - [anon_sym_Package] = ACTIONS(2824), - [anon_sym_package] = ACTIONS(2824), - [anon_sym_PACKAGE] = ACTIONS(2824), - [anon_sym_Private] = ACTIONS(2824), - [anon_sym_private] = ACTIONS(2824), - [anon_sym_PRIVATE] = ACTIONS(2824), - [anon_sym_Property] = ACTIONS(2824), - [anon_sym_property] = ACTIONS(2824), - [anon_sym_PROPERTY] = ACTIONS(2824), - [anon_sym_Public] = ACTIONS(2824), - [anon_sym_public] = ACTIONS(2824), - [anon_sym_PUBLIC] = ACTIONS(2824), - [anon_sym_Remote] = ACTIONS(2824), - [anon_sym_remote] = ACTIONS(2824), - [anon_sym_REMOTE] = ACTIONS(2824), - [anon_sym_Return] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_RETURN] = ACTIONS(2824), - [anon_sym_Static] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_STATIC] = ACTIONS(2824), - [anon_sym_Switch] = ACTIONS(2824), - [anon_sym_switch] = ACTIONS(2824), - [anon_sym_SWITCH] = ACTIONS(2824), - [anon_sym_Throw] = ACTIONS(2824), - [anon_sym_throw] = ACTIONS(2824), - [anon_sym_THROW] = ACTIONS(2824), - [anon_sym_Try] = ACTIONS(2824), - [anon_sym_try] = ACTIONS(2824), - [anon_sym_TRY] = ACTIONS(2824), - [anon_sym_Var] = ACTIONS(2824), - [anon_sym_var] = ACTIONS(2824), - [anon_sym_VAR] = ACTIONS(2824), - [anon_sym_While] = ACTIONS(2824), - [anon_sym_while] = ACTIONS(2824), - [anon_sym_WHILE] = ACTIONS(2824), - [anon_sym_With] = ACTIONS(2824), - [anon_sym_with] = ACTIONS(2824), - [anon_sym_WITH] = ACTIONS(2824), - [sym_cf_comment] = ACTIONS(2822), - [sym__java_block_open] = ACTIONS(2822), - [sym__static_type_prefix] = ACTIONS(2822), - }, - [STATE(625)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Else] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_ELSE] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), - }, - [STATE(626)] = { - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_Query] = ACTIONS(2804), - [anon_sym_query] = ACTIONS(2804), - [anon_sym_QUERY] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [aux_sym_unary_operator_token1] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2802), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2804), - [aux_sym_number_token2] = ACTIONS(2802), - [anon_sym_This] = ACTIONS(2804), - [anon_sym_this] = ACTIONS(2804), - [anon_sym_THIS] = ACTIONS(2804), - [anon_sym_Super] = ACTIONS(2804), - [anon_sym_super] = ACTIONS(2804), - [anon_sym_SUPER] = ACTIONS(2804), - [anon_sym_True] = ACTIONS(2804), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_TRUE] = ACTIONS(2804), - [anon_sym_False] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_FALSE] = ACTIONS(2804), - [anon_sym_Null] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2804), - [anon_sym_NULL] = ACTIONS(2804), - [anon_sym_Undefined] = ACTIONS(2804), - [anon_sym_undefined] = ACTIONS(2804), - [anon_sym_UNDEFINED] = ACTIONS(2804), - [anon_sym_get] = ACTIONS(2804), - [anon_sym_set] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [sym_hash_empty] = ACTIONS(2802), - [anon_sym_export] = ACTIONS(2804), - [anon_sym_QueryExecute] = ACTIONS(2804), - [anon_sym_queryexecute] = ACTIONS(2804), - [anon_sym_QUERYEXECUTE] = ACTIONS(2804), - [anon_sym_queryExecute] = ACTIONS(2804), - [anon_sym_BQUOTE] = ACTIONS(2804), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2802), - [anon_sym_Abstract] = ACTIONS(2804), - [anon_sym_abstract] = ACTIONS(2804), - [anon_sym_ABSTRACT] = ACTIONS(2804), - [anon_sym_Break] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_BREAK] = ACTIONS(2804), - [anon_sym_Case] = ACTIONS(2804), - [anon_sym_case] = ACTIONS(2804), - [anon_sym_CASE] = ACTIONS(2804), - [anon_sym_Component] = ACTIONS(2804), - [anon_sym_component] = ACTIONS(2804), - [anon_sym_COMPONENT] = ACTIONS(2804), - [anon_sym_Continue] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_CONTINUE] = ACTIONS(2804), - [anon_sym_Debugger] = ACTIONS(2804), - [anon_sym_debugger] = ACTIONS(2804), - [anon_sym_DEBUGGER] = ACTIONS(2804), - [anon_sym_Default] = ACTIONS(2804), - [anon_sym_default] = ACTIONS(2804), - [anon_sym_DEFAULT] = ACTIONS(2804), - [anon_sym_Do] = ACTIONS(2804), - [anon_sym_do] = ACTIONS(2804), - [anon_sym_DO] = ACTIONS(2804), - [anon_sym_Else] = ACTIONS(2804), - [anon_sym_else] = ACTIONS(2804), - [anon_sym_ELSE] = ACTIONS(2804), - [anon_sym_Final] = ACTIONS(2804), - [anon_sym_final] = ACTIONS(2804), - [anon_sym_FINAL] = ACTIONS(2804), - [anon_sym_For] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_FOR] = ACTIONS(2804), - [anon_sym_Function] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2804), - [anon_sym_FUNCTION] = ACTIONS(2804), - [anon_sym_If] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_IF] = ACTIONS(2804), - [anon_sym_Import] = ACTIONS(2804), - [anon_sym_import] = ACTIONS(2804), - [anon_sym_IMPORT] = ACTIONS(2804), - [anon_sym_Include] = ACTIONS(2804), - [anon_sym_include] = ACTIONS(2804), - [anon_sym_INCLUDE] = ACTIONS(2804), - [anon_sym_Interface] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_INTERFACE] = ACTIONS(2804), - [anon_sym_New] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_NEW] = ACTIONS(2804), - [anon_sym_Package] = ACTIONS(2804), - [anon_sym_package] = ACTIONS(2804), - [anon_sym_PACKAGE] = ACTIONS(2804), - [anon_sym_Private] = ACTIONS(2804), - [anon_sym_private] = ACTIONS(2804), - [anon_sym_PRIVATE] = ACTIONS(2804), - [anon_sym_Property] = ACTIONS(2804), - [anon_sym_property] = ACTIONS(2804), - [anon_sym_PROPERTY] = ACTIONS(2804), - [anon_sym_Public] = ACTIONS(2804), - [anon_sym_public] = ACTIONS(2804), - [anon_sym_PUBLIC] = ACTIONS(2804), - [anon_sym_Remote] = ACTIONS(2804), - [anon_sym_remote] = ACTIONS(2804), - [anon_sym_REMOTE] = ACTIONS(2804), - [anon_sym_Return] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_RETURN] = ACTIONS(2804), - [anon_sym_Static] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_STATIC] = ACTIONS(2804), - [anon_sym_Switch] = ACTIONS(2804), - [anon_sym_switch] = ACTIONS(2804), - [anon_sym_SWITCH] = ACTIONS(2804), - [anon_sym_Throw] = ACTIONS(2804), - [anon_sym_throw] = ACTIONS(2804), - [anon_sym_THROW] = ACTIONS(2804), - [anon_sym_Try] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(2804), - [anon_sym_TRY] = ACTIONS(2804), - [anon_sym_Var] = ACTIONS(2804), - [anon_sym_var] = ACTIONS(2804), - [anon_sym_VAR] = ACTIONS(2804), - [anon_sym_While] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_WHILE] = ACTIONS(2804), - [anon_sym_With] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2804), - [anon_sym_WITH] = ACTIONS(2804), - [sym_cf_comment] = ACTIONS(2802), - [sym__java_block_open] = ACTIONS(2802), - [sym__static_type_prefix] = ACTIONS(2802), + [anon_sym_Component] = ACTIONS(2824), + [anon_sym_component] = ACTIONS(2824), + [anon_sym_COMPONENT] = ACTIONS(2824), + [anon_sym_Continue] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_CONTINUE] = ACTIONS(2824), + [anon_sym_Debugger] = ACTIONS(2824), + [anon_sym_debugger] = ACTIONS(2824), + [anon_sym_DEBUGGER] = ACTIONS(2824), + [anon_sym_Default] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_DEFAULT] = ACTIONS(2824), + [anon_sym_Do] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_DO] = ACTIONS(2824), + [anon_sym_Else] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_ELSE] = ACTIONS(2824), + [anon_sym_Final] = ACTIONS(2824), + [anon_sym_final] = ACTIONS(2824), + [anon_sym_FINAL] = ACTIONS(2824), + [anon_sym_For] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_FOR] = ACTIONS(2824), + [anon_sym_Function] = ACTIONS(2824), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_FUNCTION] = ACTIONS(2824), + [anon_sym_If] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_IF] = ACTIONS(2824), + [anon_sym_Import] = ACTIONS(2824), + [anon_sym_import] = ACTIONS(2824), + [anon_sym_IMPORT] = ACTIONS(2824), + [anon_sym_Include] = ACTIONS(2824), + [anon_sym_include] = ACTIONS(2824), + [anon_sym_INCLUDE] = ACTIONS(2824), + [anon_sym_Interface] = ACTIONS(2824), + [anon_sym_interface] = ACTIONS(2824), + [anon_sym_INTERFACE] = ACTIONS(2824), + [anon_sym_New] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_NEW] = ACTIONS(2824), + [anon_sym_Package] = ACTIONS(2824), + [anon_sym_package] = ACTIONS(2824), + [anon_sym_PACKAGE] = ACTIONS(2824), + [anon_sym_Private] = ACTIONS(2824), + [anon_sym_private] = ACTIONS(2824), + [anon_sym_PRIVATE] = ACTIONS(2824), + [anon_sym_Property] = ACTIONS(2824), + [anon_sym_property] = ACTIONS(2824), + [anon_sym_PROPERTY] = ACTIONS(2824), + [anon_sym_Public] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_PUBLIC] = ACTIONS(2824), + [anon_sym_Remote] = ACTIONS(2824), + [anon_sym_remote] = ACTIONS(2824), + [anon_sym_REMOTE] = ACTIONS(2824), + [anon_sym_Return] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_RETURN] = ACTIONS(2824), + [anon_sym_Static] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_STATIC] = ACTIONS(2824), + [anon_sym_Switch] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_SWITCH] = ACTIONS(2824), + [anon_sym_Throw] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_THROW] = ACTIONS(2824), + [anon_sym_Try] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_TRY] = ACTIONS(2824), + [anon_sym_Var] = ACTIONS(2824), + [anon_sym_var] = ACTIONS(2824), + [anon_sym_VAR] = ACTIONS(2824), + [anon_sym_While] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_WHILE] = ACTIONS(2824), + [anon_sym_With] = ACTIONS(2824), + [anon_sym_with] = ACTIONS(2824), + [anon_sym_WITH] = ACTIONS(2824), + [sym_cf_comment] = ACTIONS(2822), + [sym__java_block_open] = ACTIONS(2822), + [sym__static_type_prefix] = ACTIONS(2822), }, - [STATE(627)] = { + [STATE(617)] = { [ts_builtin_sym_end] = ACTIONS(2826), [sym_identifier] = ACTIONS(2828), [anon_sym_LBRACE] = ACTIONS(2826), @@ -140630,7 +139281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2826), [sym__static_type_prefix] = ACTIONS(2826), }, - [STATE(628)] = { + [STATE(618)] = { [ts_builtin_sym_end] = ACTIONS(2830), [sym_identifier] = ACTIONS(2832), [anon_sym_LBRACE] = ACTIONS(2830), @@ -140778,7 +139429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2830), [sym__static_type_prefix] = ACTIONS(2830), }, - [STATE(629)] = { + [STATE(619)] = { [ts_builtin_sym_end] = ACTIONS(2834), [sym_identifier] = ACTIONS(2836), [anon_sym_LBRACE] = ACTIONS(2834), @@ -140926,7 +139577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2834), [sym__static_type_prefix] = ACTIONS(2834), }, - [STATE(630)] = { + [STATE(620)] = { [ts_builtin_sym_end] = ACTIONS(2838), [sym_identifier] = ACTIONS(2840), [anon_sym_LBRACE] = ACTIONS(2838), @@ -141074,7997 +139725,9477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2838), [sym__static_type_prefix] = ACTIONS(2838), }, + [STATE(621)] = { + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_let] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_Query] = ACTIONS(2844), + [anon_sym_query] = ACTIONS(2844), + [anon_sym_QUERY] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_SLASH] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [aux_sym_unary_operator_token1] = ACTIONS(2844), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2844), + [aux_sym_number_token2] = ACTIONS(2842), + [anon_sym_This] = ACTIONS(2844), + [anon_sym_this] = ACTIONS(2844), + [anon_sym_THIS] = ACTIONS(2844), + [anon_sym_Super] = ACTIONS(2844), + [anon_sym_super] = ACTIONS(2844), + [anon_sym_SUPER] = ACTIONS(2844), + [anon_sym_True] = ACTIONS(2844), + [anon_sym_true] = ACTIONS(2844), + [anon_sym_TRUE] = ACTIONS(2844), + [anon_sym_False] = ACTIONS(2844), + [anon_sym_false] = ACTIONS(2844), + [anon_sym_FALSE] = ACTIONS(2844), + [anon_sym_Null] = ACTIONS(2844), + [anon_sym_null] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_Undefined] = ACTIONS(2844), + [anon_sym_undefined] = ACTIONS(2844), + [anon_sym_UNDEFINED] = ACTIONS(2844), + [anon_sym_get] = ACTIONS(2844), + [anon_sym_set] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [sym_hash_empty] = ACTIONS(2842), + [anon_sym_export] = ACTIONS(2844), + [anon_sym_QueryExecute] = ACTIONS(2844), + [anon_sym_queryexecute] = ACTIONS(2844), + [anon_sym_QUERYEXECUTE] = ACTIONS(2844), + [anon_sym_queryExecute] = ACTIONS(2844), + [anon_sym_BQUOTE] = ACTIONS(2844), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2842), + [anon_sym_Abstract] = ACTIONS(2844), + [anon_sym_abstract] = ACTIONS(2844), + [anon_sym_ABSTRACT] = ACTIONS(2844), + [anon_sym_Break] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_BREAK] = ACTIONS(2844), + [anon_sym_Case] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_CASE] = ACTIONS(2844), + [anon_sym_Component] = ACTIONS(2844), + [anon_sym_component] = ACTIONS(2844), + [anon_sym_COMPONENT] = ACTIONS(2844), + [anon_sym_Continue] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_CONTINUE] = ACTIONS(2844), + [anon_sym_Debugger] = ACTIONS(2844), + [anon_sym_debugger] = ACTIONS(2844), + [anon_sym_DEBUGGER] = ACTIONS(2844), + [anon_sym_Default] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_DEFAULT] = ACTIONS(2844), + [anon_sym_Do] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_DO] = ACTIONS(2844), + [anon_sym_Else] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_ELSE] = ACTIONS(2844), + [anon_sym_Final] = ACTIONS(2844), + [anon_sym_final] = ACTIONS(2844), + [anon_sym_FINAL] = ACTIONS(2844), + [anon_sym_For] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_FOR] = ACTIONS(2844), + [anon_sym_Function] = ACTIONS(2844), + [anon_sym_function] = ACTIONS(2844), + [anon_sym_FUNCTION] = ACTIONS(2844), + [anon_sym_If] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_IF] = ACTIONS(2844), + [anon_sym_Import] = ACTIONS(2844), + [anon_sym_import] = ACTIONS(2844), + [anon_sym_IMPORT] = ACTIONS(2844), + [anon_sym_Include] = ACTIONS(2844), + [anon_sym_include] = ACTIONS(2844), + [anon_sym_INCLUDE] = ACTIONS(2844), + [anon_sym_Interface] = ACTIONS(2844), + [anon_sym_interface] = ACTIONS(2844), + [anon_sym_INTERFACE] = ACTIONS(2844), + [anon_sym_New] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_NEW] = ACTIONS(2844), + [anon_sym_Package] = ACTIONS(2844), + [anon_sym_package] = ACTIONS(2844), + [anon_sym_PACKAGE] = ACTIONS(2844), + [anon_sym_Private] = ACTIONS(2844), + [anon_sym_private] = ACTIONS(2844), + [anon_sym_PRIVATE] = ACTIONS(2844), + [anon_sym_Property] = ACTIONS(2844), + [anon_sym_property] = ACTIONS(2844), + [anon_sym_PROPERTY] = ACTIONS(2844), + [anon_sym_Public] = ACTIONS(2844), + [anon_sym_public] = ACTIONS(2844), + [anon_sym_PUBLIC] = ACTIONS(2844), + [anon_sym_Remote] = ACTIONS(2844), + [anon_sym_remote] = ACTIONS(2844), + [anon_sym_REMOTE] = ACTIONS(2844), + [anon_sym_Return] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_RETURN] = ACTIONS(2844), + [anon_sym_Static] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_STATIC] = ACTIONS(2844), + [anon_sym_Switch] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_SWITCH] = ACTIONS(2844), + [anon_sym_Throw] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_THROW] = ACTIONS(2844), + [anon_sym_Try] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_TRY] = ACTIONS(2844), + [anon_sym_Var] = ACTIONS(2844), + [anon_sym_var] = ACTIONS(2844), + [anon_sym_VAR] = ACTIONS(2844), + [anon_sym_While] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_WHILE] = ACTIONS(2844), + [anon_sym_With] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_WITH] = ACTIONS(2844), + [sym_cf_comment] = ACTIONS(2842), + [sym__java_block_open] = ACTIONS(2842), + [sym__static_type_prefix] = ACTIONS(2842), + }, + [STATE(622)] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_Query] = ACTIONS(2848), + [anon_sym_query] = ACTIONS(2848), + [anon_sym_QUERY] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_SLASH] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [aux_sym_unary_operator_token1] = ACTIONS(2848), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2848), + [aux_sym_number_token2] = ACTIONS(2846), + [anon_sym_This] = ACTIONS(2848), + [anon_sym_this] = ACTIONS(2848), + [anon_sym_THIS] = ACTIONS(2848), + [anon_sym_Super] = ACTIONS(2848), + [anon_sym_super] = ACTIONS(2848), + [anon_sym_SUPER] = ACTIONS(2848), + [anon_sym_True] = ACTIONS(2848), + [anon_sym_true] = ACTIONS(2848), + [anon_sym_TRUE] = ACTIONS(2848), + [anon_sym_False] = ACTIONS(2848), + [anon_sym_false] = ACTIONS(2848), + [anon_sym_FALSE] = ACTIONS(2848), + [anon_sym_Null] = ACTIONS(2848), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_Undefined] = ACTIONS(2848), + [anon_sym_undefined] = ACTIONS(2848), + [anon_sym_UNDEFINED] = ACTIONS(2848), + [anon_sym_get] = ACTIONS(2848), + [anon_sym_set] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2848), + [sym_hash_empty] = ACTIONS(2846), + [anon_sym_export] = ACTIONS(2848), + [anon_sym_QueryExecute] = ACTIONS(2848), + [anon_sym_queryexecute] = ACTIONS(2848), + [anon_sym_QUERYEXECUTE] = ACTIONS(2848), + [anon_sym_queryExecute] = ACTIONS(2848), + [anon_sym_BQUOTE] = ACTIONS(2848), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2846), + [anon_sym_Abstract] = ACTIONS(2848), + [anon_sym_abstract] = ACTIONS(2848), + [anon_sym_ABSTRACT] = ACTIONS(2848), + [anon_sym_Break] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_BREAK] = ACTIONS(2848), + [anon_sym_Case] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_CASE] = ACTIONS(2848), + [anon_sym_Component] = ACTIONS(2848), + [anon_sym_component] = ACTIONS(2848), + [anon_sym_COMPONENT] = ACTIONS(2848), + [anon_sym_Continue] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_CONTINUE] = ACTIONS(2848), + [anon_sym_Debugger] = ACTIONS(2848), + [anon_sym_debugger] = ACTIONS(2848), + [anon_sym_DEBUGGER] = ACTIONS(2848), + [anon_sym_Default] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_DEFAULT] = ACTIONS(2848), + [anon_sym_Do] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_DO] = ACTIONS(2848), + [anon_sym_Else] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_ELSE] = ACTIONS(2848), + [anon_sym_Final] = ACTIONS(2848), + [anon_sym_final] = ACTIONS(2848), + [anon_sym_FINAL] = ACTIONS(2848), + [anon_sym_For] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_FOR] = ACTIONS(2848), + [anon_sym_Function] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_FUNCTION] = ACTIONS(2848), + [anon_sym_If] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_IF] = ACTIONS(2848), + [anon_sym_Import] = ACTIONS(2848), + [anon_sym_import] = ACTIONS(2848), + [anon_sym_IMPORT] = ACTIONS(2848), + [anon_sym_Include] = ACTIONS(2848), + [anon_sym_include] = ACTIONS(2848), + [anon_sym_INCLUDE] = ACTIONS(2848), + [anon_sym_Interface] = ACTIONS(2848), + [anon_sym_interface] = ACTIONS(2848), + [anon_sym_INTERFACE] = ACTIONS(2848), + [anon_sym_New] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_NEW] = ACTIONS(2848), + [anon_sym_Package] = ACTIONS(2848), + [anon_sym_package] = ACTIONS(2848), + [anon_sym_PACKAGE] = ACTIONS(2848), + [anon_sym_Private] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_PRIVATE] = ACTIONS(2848), + [anon_sym_Property] = ACTIONS(2848), + [anon_sym_property] = ACTIONS(2848), + [anon_sym_PROPERTY] = ACTIONS(2848), + [anon_sym_Public] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_PUBLIC] = ACTIONS(2848), + [anon_sym_Remote] = ACTIONS(2848), + [anon_sym_remote] = ACTIONS(2848), + [anon_sym_REMOTE] = ACTIONS(2848), + [anon_sym_Return] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_RETURN] = ACTIONS(2848), + [anon_sym_Static] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_STATIC] = ACTIONS(2848), + [anon_sym_Switch] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_SWITCH] = ACTIONS(2848), + [anon_sym_Throw] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_THROW] = ACTIONS(2848), + [anon_sym_Try] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_TRY] = ACTIONS(2848), + [anon_sym_Var] = ACTIONS(2848), + [anon_sym_var] = ACTIONS(2848), + [anon_sym_VAR] = ACTIONS(2848), + [anon_sym_While] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_WHILE] = ACTIONS(2848), + [anon_sym_With] = ACTIONS(2848), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_WITH] = ACTIONS(2848), + [sym_cf_comment] = ACTIONS(2846), + [sym__java_block_open] = ACTIONS(2846), + [sym__static_type_prefix] = ACTIONS(2846), + }, + [STATE(623)] = { + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_Query] = ACTIONS(2852), + [anon_sym_query] = ACTIONS(2852), + [anon_sym_QUERY] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_SLASH] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_unary_operator_token1] = ACTIONS(2852), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2852), + [aux_sym_number_token2] = ACTIONS(2850), + [anon_sym_This] = ACTIONS(2852), + [anon_sym_this] = ACTIONS(2852), + [anon_sym_THIS] = ACTIONS(2852), + [anon_sym_Super] = ACTIONS(2852), + [anon_sym_super] = ACTIONS(2852), + [anon_sym_SUPER] = ACTIONS(2852), + [anon_sym_True] = ACTIONS(2852), + [anon_sym_true] = ACTIONS(2852), + [anon_sym_TRUE] = ACTIONS(2852), + [anon_sym_False] = ACTIONS(2852), + [anon_sym_false] = ACTIONS(2852), + [anon_sym_FALSE] = ACTIONS(2852), + [anon_sym_Null] = ACTIONS(2852), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_Undefined] = ACTIONS(2852), + [anon_sym_undefined] = ACTIONS(2852), + [anon_sym_UNDEFINED] = ACTIONS(2852), + [anon_sym_get] = ACTIONS(2852), + [anon_sym_set] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [sym_hash_empty] = ACTIONS(2850), + [anon_sym_export] = ACTIONS(2852), + [anon_sym_QueryExecute] = ACTIONS(2852), + [anon_sym_queryexecute] = ACTIONS(2852), + [anon_sym_QUERYEXECUTE] = ACTIONS(2852), + [anon_sym_queryExecute] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2850), + [anon_sym_Abstract] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_ABSTRACT] = ACTIONS(2852), + [anon_sym_Break] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_BREAK] = ACTIONS(2852), + [anon_sym_Case] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_CASE] = ACTIONS(2852), + [anon_sym_Component] = ACTIONS(2852), + [anon_sym_component] = ACTIONS(2852), + [anon_sym_COMPONENT] = ACTIONS(2852), + [anon_sym_Continue] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_CONTINUE] = ACTIONS(2852), + [anon_sym_Debugger] = ACTIONS(2852), + [anon_sym_debugger] = ACTIONS(2852), + [anon_sym_DEBUGGER] = ACTIONS(2852), + [anon_sym_Default] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_DEFAULT] = ACTIONS(2852), + [anon_sym_Do] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_DO] = ACTIONS(2852), + [anon_sym_Else] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_ELSE] = ACTIONS(2852), + [anon_sym_Final] = ACTIONS(2852), + [anon_sym_final] = ACTIONS(2852), + [anon_sym_FINAL] = ACTIONS(2852), + [anon_sym_For] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_FOR] = ACTIONS(2852), + [anon_sym_Function] = ACTIONS(2852), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_FUNCTION] = ACTIONS(2852), + [anon_sym_If] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_IF] = ACTIONS(2852), + [anon_sym_Import] = ACTIONS(2852), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_IMPORT] = ACTIONS(2852), + [anon_sym_Include] = ACTIONS(2852), + [anon_sym_include] = ACTIONS(2852), + [anon_sym_INCLUDE] = ACTIONS(2852), + [anon_sym_Interface] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2852), + [anon_sym_INTERFACE] = ACTIONS(2852), + [anon_sym_New] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_NEW] = ACTIONS(2852), + [anon_sym_Package] = ACTIONS(2852), + [anon_sym_package] = ACTIONS(2852), + [anon_sym_PACKAGE] = ACTIONS(2852), + [anon_sym_Private] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_PRIVATE] = ACTIONS(2852), + [anon_sym_Property] = ACTIONS(2852), + [anon_sym_property] = ACTIONS(2852), + [anon_sym_PROPERTY] = ACTIONS(2852), + [anon_sym_Public] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_PUBLIC] = ACTIONS(2852), + [anon_sym_Remote] = ACTIONS(2852), + [anon_sym_remote] = ACTIONS(2852), + [anon_sym_REMOTE] = ACTIONS(2852), + [anon_sym_Return] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_RETURN] = ACTIONS(2852), + [anon_sym_Static] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_STATIC] = ACTIONS(2852), + [anon_sym_Switch] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_SWITCH] = ACTIONS(2852), + [anon_sym_Throw] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_THROW] = ACTIONS(2852), + [anon_sym_Try] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_TRY] = ACTIONS(2852), + [anon_sym_Var] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2852), + [anon_sym_VAR] = ACTIONS(2852), + [anon_sym_While] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_WHILE] = ACTIONS(2852), + [anon_sym_With] = ACTIONS(2852), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_WITH] = ACTIONS(2852), + [sym_cf_comment] = ACTIONS(2850), + [sym__java_block_open] = ACTIONS(2850), + [sym__static_type_prefix] = ACTIONS(2850), + }, + [STATE(624)] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_Query] = ACTIONS(2856), + [anon_sym_query] = ACTIONS(2856), + [anon_sym_QUERY] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_SLASH] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_unary_operator_token1] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2856), + [aux_sym_number_token2] = ACTIONS(2854), + [anon_sym_This] = ACTIONS(2856), + [anon_sym_this] = ACTIONS(2856), + [anon_sym_THIS] = ACTIONS(2856), + [anon_sym_Super] = ACTIONS(2856), + [anon_sym_super] = ACTIONS(2856), + [anon_sym_SUPER] = ACTIONS(2856), + [anon_sym_True] = ACTIONS(2856), + [anon_sym_true] = ACTIONS(2856), + [anon_sym_TRUE] = ACTIONS(2856), + [anon_sym_False] = ACTIONS(2856), + [anon_sym_false] = ACTIONS(2856), + [anon_sym_FALSE] = ACTIONS(2856), + [anon_sym_Null] = ACTIONS(2856), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_Undefined] = ACTIONS(2856), + [anon_sym_undefined] = ACTIONS(2856), + [anon_sym_UNDEFINED] = ACTIONS(2856), + [anon_sym_get] = ACTIONS(2856), + [anon_sym_set] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [sym_hash_empty] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2856), + [anon_sym_QueryExecute] = ACTIONS(2856), + [anon_sym_queryexecute] = ACTIONS(2856), + [anon_sym_QUERYEXECUTE] = ACTIONS(2856), + [anon_sym_queryExecute] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2854), + [anon_sym_Abstract] = ACTIONS(2856), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_ABSTRACT] = ACTIONS(2856), + [anon_sym_Break] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_BREAK] = ACTIONS(2856), + [anon_sym_Case] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_CASE] = ACTIONS(2856), + [anon_sym_Component] = ACTIONS(2856), + [anon_sym_component] = ACTIONS(2856), + [anon_sym_COMPONENT] = ACTIONS(2856), + [anon_sym_Continue] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_CONTINUE] = ACTIONS(2856), + [anon_sym_Debugger] = ACTIONS(2856), + [anon_sym_debugger] = ACTIONS(2856), + [anon_sym_DEBUGGER] = ACTIONS(2856), + [anon_sym_Default] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_DEFAULT] = ACTIONS(2856), + [anon_sym_Do] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_DO] = ACTIONS(2856), + [anon_sym_Else] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_ELSE] = ACTIONS(2856), + [anon_sym_Final] = ACTIONS(2856), + [anon_sym_final] = ACTIONS(2856), + [anon_sym_FINAL] = ACTIONS(2856), + [anon_sym_For] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_FOR] = ACTIONS(2856), + [anon_sym_Function] = ACTIONS(2856), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_FUNCTION] = ACTIONS(2856), + [anon_sym_If] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_IF] = ACTIONS(2856), + [anon_sym_Import] = ACTIONS(2856), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_IMPORT] = ACTIONS(2856), + [anon_sym_Include] = ACTIONS(2856), + [anon_sym_include] = ACTIONS(2856), + [anon_sym_INCLUDE] = ACTIONS(2856), + [anon_sym_Interface] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2856), + [anon_sym_INTERFACE] = ACTIONS(2856), + [anon_sym_New] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_NEW] = ACTIONS(2856), + [anon_sym_Package] = ACTIONS(2856), + [anon_sym_package] = ACTIONS(2856), + [anon_sym_PACKAGE] = ACTIONS(2856), + [anon_sym_Private] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_PRIVATE] = ACTIONS(2856), + [anon_sym_Property] = ACTIONS(2856), + [anon_sym_property] = ACTIONS(2856), + [anon_sym_PROPERTY] = ACTIONS(2856), + [anon_sym_Public] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_PUBLIC] = ACTIONS(2856), + [anon_sym_Remote] = ACTIONS(2856), + [anon_sym_remote] = ACTIONS(2856), + [anon_sym_REMOTE] = ACTIONS(2856), + [anon_sym_Return] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_RETURN] = ACTIONS(2856), + [anon_sym_Static] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_STATIC] = ACTIONS(2856), + [anon_sym_Switch] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_SWITCH] = ACTIONS(2856), + [anon_sym_Throw] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_THROW] = ACTIONS(2856), + [anon_sym_Try] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_TRY] = ACTIONS(2856), + [anon_sym_Var] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2856), + [anon_sym_VAR] = ACTIONS(2856), + [anon_sym_While] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_WHILE] = ACTIONS(2856), + [anon_sym_With] = ACTIONS(2856), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_WITH] = ACTIONS(2856), + [sym_cf_comment] = ACTIONS(2854), + [sym__java_block_open] = ACTIONS(2854), + [sym__static_type_prefix] = ACTIONS(2854), + }, + [STATE(625)] = { + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_Query] = ACTIONS(2860), + [anon_sym_query] = ACTIONS(2860), + [anon_sym_QUERY] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_SLASH] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_unary_operator_token1] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2860), + [aux_sym_number_token2] = ACTIONS(2858), + [anon_sym_This] = ACTIONS(2860), + [anon_sym_this] = ACTIONS(2860), + [anon_sym_THIS] = ACTIONS(2860), + [anon_sym_Super] = ACTIONS(2860), + [anon_sym_super] = ACTIONS(2860), + [anon_sym_SUPER] = ACTIONS(2860), + [anon_sym_True] = ACTIONS(2860), + [anon_sym_true] = ACTIONS(2860), + [anon_sym_TRUE] = ACTIONS(2860), + [anon_sym_False] = ACTIONS(2860), + [anon_sym_false] = ACTIONS(2860), + [anon_sym_FALSE] = ACTIONS(2860), + [anon_sym_Null] = ACTIONS(2860), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_Undefined] = ACTIONS(2860), + [anon_sym_undefined] = ACTIONS(2860), + [anon_sym_UNDEFINED] = ACTIONS(2860), + [anon_sym_get] = ACTIONS(2860), + [anon_sym_set] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [sym_hash_empty] = ACTIONS(2858), + [anon_sym_export] = ACTIONS(2860), + [anon_sym_QueryExecute] = ACTIONS(2860), + [anon_sym_queryexecute] = ACTIONS(2860), + [anon_sym_QUERYEXECUTE] = ACTIONS(2860), + [anon_sym_queryExecute] = ACTIONS(2860), + [anon_sym_BQUOTE] = ACTIONS(2860), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2858), + [anon_sym_Abstract] = ACTIONS(2860), + [anon_sym_abstract] = ACTIONS(2860), + [anon_sym_ABSTRACT] = ACTIONS(2860), + [anon_sym_Break] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_BREAK] = ACTIONS(2860), + [anon_sym_Case] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_CASE] = ACTIONS(2860), + [anon_sym_Component] = ACTIONS(2860), + [anon_sym_component] = ACTIONS(2860), + [anon_sym_COMPONENT] = ACTIONS(2860), + [anon_sym_Continue] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_CONTINUE] = ACTIONS(2860), + [anon_sym_Debugger] = ACTIONS(2860), + [anon_sym_debugger] = ACTIONS(2860), + [anon_sym_DEBUGGER] = ACTIONS(2860), + [anon_sym_Default] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_DEFAULT] = ACTIONS(2860), + [anon_sym_Do] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_DO] = ACTIONS(2860), + [anon_sym_Else] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_ELSE] = ACTIONS(2860), + [anon_sym_Final] = ACTIONS(2860), + [anon_sym_final] = ACTIONS(2860), + [anon_sym_FINAL] = ACTIONS(2860), + [anon_sym_For] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_FOR] = ACTIONS(2860), + [anon_sym_Function] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_FUNCTION] = ACTIONS(2860), + [anon_sym_If] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_IF] = ACTIONS(2860), + [anon_sym_Import] = ACTIONS(2860), + [anon_sym_import] = ACTIONS(2860), + [anon_sym_IMPORT] = ACTIONS(2860), + [anon_sym_Include] = ACTIONS(2860), + [anon_sym_include] = ACTIONS(2860), + [anon_sym_INCLUDE] = ACTIONS(2860), + [anon_sym_Interface] = ACTIONS(2860), + [anon_sym_interface] = ACTIONS(2860), + [anon_sym_INTERFACE] = ACTIONS(2860), + [anon_sym_New] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_NEW] = ACTIONS(2860), + [anon_sym_Package] = ACTIONS(2860), + [anon_sym_package] = ACTIONS(2860), + [anon_sym_PACKAGE] = ACTIONS(2860), + [anon_sym_Private] = ACTIONS(2860), + [anon_sym_private] = ACTIONS(2860), + [anon_sym_PRIVATE] = ACTIONS(2860), + [anon_sym_Property] = ACTIONS(2860), + [anon_sym_property] = ACTIONS(2860), + [anon_sym_PROPERTY] = ACTIONS(2860), + [anon_sym_Public] = ACTIONS(2860), + [anon_sym_public] = ACTIONS(2860), + [anon_sym_PUBLIC] = ACTIONS(2860), + [anon_sym_Remote] = ACTIONS(2860), + [anon_sym_remote] = ACTIONS(2860), + [anon_sym_REMOTE] = ACTIONS(2860), + [anon_sym_Return] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_RETURN] = ACTIONS(2860), + [anon_sym_Static] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_STATIC] = ACTIONS(2860), + [anon_sym_Switch] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_SWITCH] = ACTIONS(2860), + [anon_sym_Throw] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_THROW] = ACTIONS(2860), + [anon_sym_Try] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_TRY] = ACTIONS(2860), + [anon_sym_Var] = ACTIONS(2860), + [anon_sym_var] = ACTIONS(2860), + [anon_sym_VAR] = ACTIONS(2860), + [anon_sym_While] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_WHILE] = ACTIONS(2860), + [anon_sym_With] = ACTIONS(2860), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_WITH] = ACTIONS(2860), + [sym_cf_comment] = ACTIONS(2858), + [sym__java_block_open] = ACTIONS(2858), + [sym__static_type_prefix] = ACTIONS(2858), + }, + [STATE(626)] = { + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_Query] = ACTIONS(2864), + [anon_sym_query] = ACTIONS(2864), + [anon_sym_QUERY] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_SLASH] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_unary_operator_token1] = ACTIONS(2864), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2864), + [aux_sym_number_token2] = ACTIONS(2862), + [anon_sym_This] = ACTIONS(2864), + [anon_sym_this] = ACTIONS(2864), + [anon_sym_THIS] = ACTIONS(2864), + [anon_sym_Super] = ACTIONS(2864), + [anon_sym_super] = ACTIONS(2864), + [anon_sym_SUPER] = ACTIONS(2864), + [anon_sym_True] = ACTIONS(2864), + [anon_sym_true] = ACTIONS(2864), + [anon_sym_TRUE] = ACTIONS(2864), + [anon_sym_False] = ACTIONS(2864), + [anon_sym_false] = ACTIONS(2864), + [anon_sym_FALSE] = ACTIONS(2864), + [anon_sym_Null] = ACTIONS(2864), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_Undefined] = ACTIONS(2864), + [anon_sym_undefined] = ACTIONS(2864), + [anon_sym_UNDEFINED] = ACTIONS(2864), + [anon_sym_get] = ACTIONS(2864), + [anon_sym_set] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [sym_hash_empty] = ACTIONS(2862), + [anon_sym_export] = ACTIONS(2864), + [anon_sym_QueryExecute] = ACTIONS(2864), + [anon_sym_queryexecute] = ACTIONS(2864), + [anon_sym_QUERYEXECUTE] = ACTIONS(2864), + [anon_sym_queryExecute] = ACTIONS(2864), + [anon_sym_BQUOTE] = ACTIONS(2864), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2862), + [anon_sym_Abstract] = ACTIONS(2864), + [anon_sym_abstract] = ACTIONS(2864), + [anon_sym_ABSTRACT] = ACTIONS(2864), + [anon_sym_Break] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_BREAK] = ACTIONS(2864), + [anon_sym_Case] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_CASE] = ACTIONS(2864), + [anon_sym_Component] = ACTIONS(2864), + [anon_sym_component] = ACTIONS(2864), + [anon_sym_COMPONENT] = ACTIONS(2864), + [anon_sym_Continue] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_CONTINUE] = ACTIONS(2864), + [anon_sym_Debugger] = ACTIONS(2864), + [anon_sym_debugger] = ACTIONS(2864), + [anon_sym_DEBUGGER] = ACTIONS(2864), + [anon_sym_Default] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_DEFAULT] = ACTIONS(2864), + [anon_sym_Do] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_DO] = ACTIONS(2864), + [anon_sym_Else] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_ELSE] = ACTIONS(2864), + [anon_sym_Final] = ACTIONS(2864), + [anon_sym_final] = ACTIONS(2864), + [anon_sym_FINAL] = ACTIONS(2864), + [anon_sym_For] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_FOR] = ACTIONS(2864), + [anon_sym_Function] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_FUNCTION] = ACTIONS(2864), + [anon_sym_If] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_IF] = ACTIONS(2864), + [anon_sym_Import] = ACTIONS(2864), + [anon_sym_import] = ACTIONS(2864), + [anon_sym_IMPORT] = ACTIONS(2864), + [anon_sym_Include] = ACTIONS(2864), + [anon_sym_include] = ACTIONS(2864), + [anon_sym_INCLUDE] = ACTIONS(2864), + [anon_sym_Interface] = ACTIONS(2864), + [anon_sym_interface] = ACTIONS(2864), + [anon_sym_INTERFACE] = ACTIONS(2864), + [anon_sym_New] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_NEW] = ACTIONS(2864), + [anon_sym_Package] = ACTIONS(2864), + [anon_sym_package] = ACTIONS(2864), + [anon_sym_PACKAGE] = ACTIONS(2864), + [anon_sym_Private] = ACTIONS(2864), + [anon_sym_private] = ACTIONS(2864), + [anon_sym_PRIVATE] = ACTIONS(2864), + [anon_sym_Property] = ACTIONS(2864), + [anon_sym_property] = ACTIONS(2864), + [anon_sym_PROPERTY] = ACTIONS(2864), + [anon_sym_Public] = ACTIONS(2864), + [anon_sym_public] = ACTIONS(2864), + [anon_sym_PUBLIC] = ACTIONS(2864), + [anon_sym_Remote] = ACTIONS(2864), + [anon_sym_remote] = ACTIONS(2864), + [anon_sym_REMOTE] = ACTIONS(2864), + [anon_sym_Return] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_RETURN] = ACTIONS(2864), + [anon_sym_Static] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_STATIC] = ACTIONS(2864), + [anon_sym_Switch] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_SWITCH] = ACTIONS(2864), + [anon_sym_Throw] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_THROW] = ACTIONS(2864), + [anon_sym_Try] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_TRY] = ACTIONS(2864), + [anon_sym_Var] = ACTIONS(2864), + [anon_sym_var] = ACTIONS(2864), + [anon_sym_VAR] = ACTIONS(2864), + [anon_sym_While] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_WHILE] = ACTIONS(2864), + [anon_sym_With] = ACTIONS(2864), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_WITH] = ACTIONS(2864), + [sym_cf_comment] = ACTIONS(2862), + [sym__java_block_open] = ACTIONS(2862), + [sym__static_type_prefix] = ACTIONS(2862), + }, + [STATE(627)] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_Query] = ACTIONS(2868), + [anon_sym_query] = ACTIONS(2868), + [anon_sym_QUERY] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_unary_operator_token1] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2868), + [aux_sym_number_token2] = ACTIONS(2866), + [anon_sym_This] = ACTIONS(2868), + [anon_sym_this] = ACTIONS(2868), + [anon_sym_THIS] = ACTIONS(2868), + [anon_sym_Super] = ACTIONS(2868), + [anon_sym_super] = ACTIONS(2868), + [anon_sym_SUPER] = ACTIONS(2868), + [anon_sym_True] = ACTIONS(2868), + [anon_sym_true] = ACTIONS(2868), + [anon_sym_TRUE] = ACTIONS(2868), + [anon_sym_False] = ACTIONS(2868), + [anon_sym_false] = ACTIONS(2868), + [anon_sym_FALSE] = ACTIONS(2868), + [anon_sym_Null] = ACTIONS(2868), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_Undefined] = ACTIONS(2868), + [anon_sym_undefined] = ACTIONS(2868), + [anon_sym_UNDEFINED] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [sym_hash_empty] = ACTIONS(2866), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_QueryExecute] = ACTIONS(2868), + [anon_sym_queryexecute] = ACTIONS(2868), + [anon_sym_QUERYEXECUTE] = ACTIONS(2868), + [anon_sym_queryExecute] = ACTIONS(2868), + [anon_sym_BQUOTE] = ACTIONS(2868), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2866), + [anon_sym_Abstract] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_ABSTRACT] = ACTIONS(2868), + [anon_sym_Break] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_BREAK] = ACTIONS(2868), + [anon_sym_Case] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_CASE] = ACTIONS(2868), + [anon_sym_Component] = ACTIONS(2868), + [anon_sym_component] = ACTIONS(2868), + [anon_sym_COMPONENT] = ACTIONS(2868), + [anon_sym_Continue] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_CONTINUE] = ACTIONS(2868), + [anon_sym_Debugger] = ACTIONS(2868), + [anon_sym_debugger] = ACTIONS(2868), + [anon_sym_DEBUGGER] = ACTIONS(2868), + [anon_sym_Default] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_DEFAULT] = ACTIONS(2868), + [anon_sym_Do] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_DO] = ACTIONS(2868), + [anon_sym_Else] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_ELSE] = ACTIONS(2868), + [anon_sym_Final] = ACTIONS(2868), + [anon_sym_final] = ACTIONS(2868), + [anon_sym_FINAL] = ACTIONS(2868), + [anon_sym_For] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_FOR] = ACTIONS(2868), + [anon_sym_Function] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_FUNCTION] = ACTIONS(2868), + [anon_sym_If] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_IF] = ACTIONS(2868), + [anon_sym_Import] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_IMPORT] = ACTIONS(2868), + [anon_sym_Include] = ACTIONS(2868), + [anon_sym_include] = ACTIONS(2868), + [anon_sym_INCLUDE] = ACTIONS(2868), + [anon_sym_Interface] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_INTERFACE] = ACTIONS(2868), + [anon_sym_New] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_NEW] = ACTIONS(2868), + [anon_sym_Package] = ACTIONS(2868), + [anon_sym_package] = ACTIONS(2868), + [anon_sym_PACKAGE] = ACTIONS(2868), + [anon_sym_Private] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_PRIVATE] = ACTIONS(2868), + [anon_sym_Property] = ACTIONS(2868), + [anon_sym_property] = ACTIONS(2868), + [anon_sym_PROPERTY] = ACTIONS(2868), + [anon_sym_Public] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_PUBLIC] = ACTIONS(2868), + [anon_sym_Remote] = ACTIONS(2868), + [anon_sym_remote] = ACTIONS(2868), + [anon_sym_REMOTE] = ACTIONS(2868), + [anon_sym_Return] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_RETURN] = ACTIONS(2868), + [anon_sym_Static] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_STATIC] = ACTIONS(2868), + [anon_sym_Switch] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_SWITCH] = ACTIONS(2868), + [anon_sym_Throw] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_THROW] = ACTIONS(2868), + [anon_sym_Try] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_TRY] = ACTIONS(2868), + [anon_sym_Var] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [anon_sym_VAR] = ACTIONS(2868), + [anon_sym_While] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_WHILE] = ACTIONS(2868), + [anon_sym_With] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_WITH] = ACTIONS(2868), + [sym_cf_comment] = ACTIONS(2866), + [sym__java_block_open] = ACTIONS(2866), + [sym__static_type_prefix] = ACTIONS(2866), + }, + [STATE(628)] = { + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_Query] = ACTIONS(2872), + [anon_sym_query] = ACTIONS(2872), + [anon_sym_QUERY] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_SLASH] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_unary_operator_token1] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2872), + [aux_sym_number_token2] = ACTIONS(2870), + [anon_sym_This] = ACTIONS(2872), + [anon_sym_this] = ACTIONS(2872), + [anon_sym_THIS] = ACTIONS(2872), + [anon_sym_Super] = ACTIONS(2872), + [anon_sym_super] = ACTIONS(2872), + [anon_sym_SUPER] = ACTIONS(2872), + [anon_sym_True] = ACTIONS(2872), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_TRUE] = ACTIONS(2872), + [anon_sym_False] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [anon_sym_FALSE] = ACTIONS(2872), + [anon_sym_Null] = ACTIONS(2872), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_Undefined] = ACTIONS(2872), + [anon_sym_undefined] = ACTIONS(2872), + [anon_sym_UNDEFINED] = ACTIONS(2872), + [anon_sym_get] = ACTIONS(2872), + [anon_sym_set] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [sym_hash_empty] = ACTIONS(2870), + [anon_sym_export] = ACTIONS(2872), + [anon_sym_QueryExecute] = ACTIONS(2872), + [anon_sym_queryexecute] = ACTIONS(2872), + [anon_sym_QUERYEXECUTE] = ACTIONS(2872), + [anon_sym_queryExecute] = ACTIONS(2872), + [anon_sym_BQUOTE] = ACTIONS(2872), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2870), + [anon_sym_Abstract] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_ABSTRACT] = ACTIONS(2872), + [anon_sym_Break] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_BREAK] = ACTIONS(2872), + [anon_sym_Case] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_CASE] = ACTIONS(2872), + [anon_sym_Component] = ACTIONS(2872), + [anon_sym_component] = ACTIONS(2872), + [anon_sym_COMPONENT] = ACTIONS(2872), + [anon_sym_Continue] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_CONTINUE] = ACTIONS(2872), + [anon_sym_Debugger] = ACTIONS(2872), + [anon_sym_debugger] = ACTIONS(2872), + [anon_sym_DEBUGGER] = ACTIONS(2872), + [anon_sym_Default] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_DEFAULT] = ACTIONS(2872), + [anon_sym_Do] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_DO] = ACTIONS(2872), + [anon_sym_Else] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_ELSE] = ACTIONS(2872), + [anon_sym_Final] = ACTIONS(2872), + [anon_sym_final] = ACTIONS(2872), + [anon_sym_FINAL] = ACTIONS(2872), + [anon_sym_For] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_FOR] = ACTIONS(2872), + [anon_sym_Function] = ACTIONS(2872), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_FUNCTION] = ACTIONS(2872), + [anon_sym_If] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_IF] = ACTIONS(2872), + [anon_sym_Import] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2872), + [anon_sym_IMPORT] = ACTIONS(2872), + [anon_sym_Include] = ACTIONS(2872), + [anon_sym_include] = ACTIONS(2872), + [anon_sym_INCLUDE] = ACTIONS(2872), + [anon_sym_Interface] = ACTIONS(2872), + [anon_sym_interface] = ACTIONS(2872), + [anon_sym_INTERFACE] = ACTIONS(2872), + [anon_sym_New] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_NEW] = ACTIONS(2872), + [anon_sym_Package] = ACTIONS(2872), + [anon_sym_package] = ACTIONS(2872), + [anon_sym_PACKAGE] = ACTIONS(2872), + [anon_sym_Private] = ACTIONS(2872), + [anon_sym_private] = ACTIONS(2872), + [anon_sym_PRIVATE] = ACTIONS(2872), + [anon_sym_Property] = ACTIONS(2872), + [anon_sym_property] = ACTIONS(2872), + [anon_sym_PROPERTY] = ACTIONS(2872), + [anon_sym_Public] = ACTIONS(2872), + [anon_sym_public] = ACTIONS(2872), + [anon_sym_PUBLIC] = ACTIONS(2872), + [anon_sym_Remote] = ACTIONS(2872), + [anon_sym_remote] = ACTIONS(2872), + [anon_sym_REMOTE] = ACTIONS(2872), + [anon_sym_Return] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_RETURN] = ACTIONS(2872), + [anon_sym_Static] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_STATIC] = ACTIONS(2872), + [anon_sym_Switch] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_SWITCH] = ACTIONS(2872), + [anon_sym_Throw] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_THROW] = ACTIONS(2872), + [anon_sym_Try] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_TRY] = ACTIONS(2872), + [anon_sym_Var] = ACTIONS(2872), + [anon_sym_var] = ACTIONS(2872), + [anon_sym_VAR] = ACTIONS(2872), + [anon_sym_While] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_WHILE] = ACTIONS(2872), + [anon_sym_With] = ACTIONS(2872), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_WITH] = ACTIONS(2872), + [sym_cf_comment] = ACTIONS(2870), + [sym__java_block_open] = ACTIONS(2870), + [sym__static_type_prefix] = ACTIONS(2870), + }, + [STATE(629)] = { + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_Query] = ACTIONS(2876), + [anon_sym_query] = ACTIONS(2876), + [anon_sym_QUERY] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_SLASH] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_unary_operator_token1] = ACTIONS(2876), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2876), + [aux_sym_number_token2] = ACTIONS(2874), + [anon_sym_This] = ACTIONS(2876), + [anon_sym_this] = ACTIONS(2876), + [anon_sym_THIS] = ACTIONS(2876), + [anon_sym_Super] = ACTIONS(2876), + [anon_sym_super] = ACTIONS(2876), + [anon_sym_SUPER] = ACTIONS(2876), + [anon_sym_True] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2876), + [anon_sym_TRUE] = ACTIONS(2876), + [anon_sym_False] = ACTIONS(2876), + [anon_sym_false] = ACTIONS(2876), + [anon_sym_FALSE] = ACTIONS(2876), + [anon_sym_Null] = ACTIONS(2876), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_NULL] = ACTIONS(2876), + [anon_sym_Undefined] = ACTIONS(2876), + [anon_sym_undefined] = ACTIONS(2876), + [anon_sym_UNDEFINED] = ACTIONS(2876), + [anon_sym_get] = ACTIONS(2876), + [anon_sym_set] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(2876), + [sym_hash_empty] = ACTIONS(2874), + [anon_sym_export] = ACTIONS(2876), + [anon_sym_QueryExecute] = ACTIONS(2876), + [anon_sym_queryexecute] = ACTIONS(2876), + [anon_sym_QUERYEXECUTE] = ACTIONS(2876), + [anon_sym_queryExecute] = ACTIONS(2876), + [anon_sym_BQUOTE] = ACTIONS(2876), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2874), + [anon_sym_Abstract] = ACTIONS(2876), + [anon_sym_abstract] = ACTIONS(2876), + [anon_sym_ABSTRACT] = ACTIONS(2876), + [anon_sym_Break] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_BREAK] = ACTIONS(2876), + [anon_sym_Case] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_CASE] = ACTIONS(2876), + [anon_sym_Component] = ACTIONS(2876), + [anon_sym_component] = ACTIONS(2876), + [anon_sym_COMPONENT] = ACTIONS(2876), + [anon_sym_Continue] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_CONTINUE] = ACTIONS(2876), + [anon_sym_Debugger] = ACTIONS(2876), + [anon_sym_debugger] = ACTIONS(2876), + [anon_sym_DEBUGGER] = ACTIONS(2876), + [anon_sym_Default] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_DEFAULT] = ACTIONS(2876), + [anon_sym_Do] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_DO] = ACTIONS(2876), + [anon_sym_Else] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_ELSE] = ACTIONS(2876), + [anon_sym_Final] = ACTIONS(2876), + [anon_sym_final] = ACTIONS(2876), + [anon_sym_FINAL] = ACTIONS(2876), + [anon_sym_For] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_FOR] = ACTIONS(2876), + [anon_sym_Function] = ACTIONS(2876), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_FUNCTION] = ACTIONS(2876), + [anon_sym_If] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_IF] = ACTIONS(2876), + [anon_sym_Import] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2876), + [anon_sym_IMPORT] = ACTIONS(2876), + [anon_sym_Include] = ACTIONS(2876), + [anon_sym_include] = ACTIONS(2876), + [anon_sym_INCLUDE] = ACTIONS(2876), + [anon_sym_Interface] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2876), + [anon_sym_INTERFACE] = ACTIONS(2876), + [anon_sym_New] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_NEW] = ACTIONS(2876), + [anon_sym_Package] = ACTIONS(2876), + [anon_sym_package] = ACTIONS(2876), + [anon_sym_PACKAGE] = ACTIONS(2876), + [anon_sym_Private] = ACTIONS(2876), + [anon_sym_private] = ACTIONS(2876), + [anon_sym_PRIVATE] = ACTIONS(2876), + [anon_sym_Property] = ACTIONS(2876), + [anon_sym_property] = ACTIONS(2876), + [anon_sym_PROPERTY] = ACTIONS(2876), + [anon_sym_Public] = ACTIONS(2876), + [anon_sym_public] = ACTIONS(2876), + [anon_sym_PUBLIC] = ACTIONS(2876), + [anon_sym_Remote] = ACTIONS(2876), + [anon_sym_remote] = ACTIONS(2876), + [anon_sym_REMOTE] = ACTIONS(2876), + [anon_sym_Return] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_RETURN] = ACTIONS(2876), + [anon_sym_Static] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_STATIC] = ACTIONS(2876), + [anon_sym_Switch] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_SWITCH] = ACTIONS(2876), + [anon_sym_Throw] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_THROW] = ACTIONS(2876), + [anon_sym_Try] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_TRY] = ACTIONS(2876), + [anon_sym_Var] = ACTIONS(2876), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_VAR] = ACTIONS(2876), + [anon_sym_While] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_WHILE] = ACTIONS(2876), + [anon_sym_With] = ACTIONS(2876), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_WITH] = ACTIONS(2876), + [sym_cf_comment] = ACTIONS(2874), + [sym__java_block_open] = ACTIONS(2874), + [sym__static_type_prefix] = ACTIONS(2874), + }, + [STATE(630)] = { + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_Query] = ACTIONS(2880), + [anon_sym_query] = ACTIONS(2880), + [anon_sym_QUERY] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_unary_operator_token1] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2880), + [aux_sym_number_token2] = ACTIONS(2878), + [anon_sym_This] = ACTIONS(2880), + [anon_sym_this] = ACTIONS(2880), + [anon_sym_THIS] = ACTIONS(2880), + [anon_sym_Super] = ACTIONS(2880), + [anon_sym_super] = ACTIONS(2880), + [anon_sym_SUPER] = ACTIONS(2880), + [anon_sym_True] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_TRUE] = ACTIONS(2880), + [anon_sym_False] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_FALSE] = ACTIONS(2880), + [anon_sym_Null] = ACTIONS(2880), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_NULL] = ACTIONS(2880), + [anon_sym_Undefined] = ACTIONS(2880), + [anon_sym_undefined] = ACTIONS(2880), + [anon_sym_UNDEFINED] = ACTIONS(2880), + [anon_sym_get] = ACTIONS(2880), + [anon_sym_set] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [sym_hash_empty] = ACTIONS(2878), + [anon_sym_export] = ACTIONS(2880), + [anon_sym_QueryExecute] = ACTIONS(2880), + [anon_sym_queryexecute] = ACTIONS(2880), + [anon_sym_QUERYEXECUTE] = ACTIONS(2880), + [anon_sym_queryExecute] = ACTIONS(2880), + [anon_sym_BQUOTE] = ACTIONS(2880), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2878), + [anon_sym_Abstract] = ACTIONS(2880), + [anon_sym_abstract] = ACTIONS(2880), + [anon_sym_ABSTRACT] = ACTIONS(2880), + [anon_sym_Break] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_BREAK] = ACTIONS(2880), + [anon_sym_Case] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_CASE] = ACTIONS(2880), + [anon_sym_Component] = ACTIONS(2880), + [anon_sym_component] = ACTIONS(2880), + [anon_sym_COMPONENT] = ACTIONS(2880), + [anon_sym_Continue] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_CONTINUE] = ACTIONS(2880), + [anon_sym_Debugger] = ACTIONS(2880), + [anon_sym_debugger] = ACTIONS(2880), + [anon_sym_DEBUGGER] = ACTIONS(2880), + [anon_sym_Default] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_DEFAULT] = ACTIONS(2880), + [anon_sym_Do] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_DO] = ACTIONS(2880), + [anon_sym_Else] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_ELSE] = ACTIONS(2880), + [anon_sym_Final] = ACTIONS(2880), + [anon_sym_final] = ACTIONS(2880), + [anon_sym_FINAL] = ACTIONS(2880), + [anon_sym_For] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_FOR] = ACTIONS(2880), + [anon_sym_Function] = ACTIONS(2880), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_FUNCTION] = ACTIONS(2880), + [anon_sym_If] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_IF] = ACTIONS(2880), + [anon_sym_Import] = ACTIONS(2880), + [anon_sym_import] = ACTIONS(2880), + [anon_sym_IMPORT] = ACTIONS(2880), + [anon_sym_Include] = ACTIONS(2880), + [anon_sym_include] = ACTIONS(2880), + [anon_sym_INCLUDE] = ACTIONS(2880), + [anon_sym_Interface] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_INTERFACE] = ACTIONS(2880), + [anon_sym_New] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_NEW] = ACTIONS(2880), + [anon_sym_Package] = ACTIONS(2880), + [anon_sym_package] = ACTIONS(2880), + [anon_sym_PACKAGE] = ACTIONS(2880), + [anon_sym_Private] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_PRIVATE] = ACTIONS(2880), + [anon_sym_Property] = ACTIONS(2880), + [anon_sym_property] = ACTIONS(2880), + [anon_sym_PROPERTY] = ACTIONS(2880), + [anon_sym_Public] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_PUBLIC] = ACTIONS(2880), + [anon_sym_Remote] = ACTIONS(2880), + [anon_sym_remote] = ACTIONS(2880), + [anon_sym_REMOTE] = ACTIONS(2880), + [anon_sym_Return] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_RETURN] = ACTIONS(2880), + [anon_sym_Static] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_STATIC] = ACTIONS(2880), + [anon_sym_Switch] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_SWITCH] = ACTIONS(2880), + [anon_sym_Throw] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_THROW] = ACTIONS(2880), + [anon_sym_Try] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_TRY] = ACTIONS(2880), + [anon_sym_Var] = ACTIONS(2880), + [anon_sym_var] = ACTIONS(2880), + [anon_sym_VAR] = ACTIONS(2880), + [anon_sym_While] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_WHILE] = ACTIONS(2880), + [anon_sym_With] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_WITH] = ACTIONS(2880), + [sym_cf_comment] = ACTIONS(2878), + [sym__java_block_open] = ACTIONS(2878), + [sym__static_type_prefix] = ACTIONS(2878), + }, [STATE(631)] = { - [sym_identifier] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_Query] = ACTIONS(2288), - [anon_sym_query] = ACTIONS(2288), - [anon_sym_QUERY] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2288), - [sym_optional_chain] = ACTIONS(2290), - [sym_static_chain] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_BSLASH] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_LT_GT] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [aux_sym_binary_expression_token1] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [aux_sym_binary_expression_token2] = ACTIONS(2288), - [aux_sym_binary_expression_token3] = ACTIONS(2288), - [aux_sym_binary_expression_token4] = ACTIONS(2290), - [aux_sym_binary_expression_token5] = ACTIONS(2290), - [aux_sym_binary_expression_token6] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2290), - [aux_sym_unary_operator_token1] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2290), - [sym_comment] = ACTIONS(129), - [sym_regex_flags] = ACTIONS(2842), - [aux_sym_number_token1] = ACTIONS(2288), - [aux_sym_number_token2] = ACTIONS(2288), - [anon_sym_This] = ACTIONS(2288), - [anon_sym_this] = ACTIONS(2288), - [anon_sym_THIS] = ACTIONS(2288), - [anon_sym_Super] = ACTIONS(2288), - [anon_sym_super] = ACTIONS(2288), - [anon_sym_SUPER] = ACTIONS(2288), - [anon_sym_True] = ACTIONS(2288), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_TRUE] = ACTIONS(2288), - [anon_sym_False] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [anon_sym_FALSE] = ACTIONS(2288), - [anon_sym_Null] = ACTIONS(2288), - [anon_sym_null] = ACTIONS(2288), - [anon_sym_NULL] = ACTIONS(2288), - [anon_sym_Undefined] = ACTIONS(2288), - [anon_sym_undefined] = ACTIONS(2288), - [anon_sym_UNDEFINED] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(2288), - [sym_hash_empty] = ACTIONS(2290), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_QueryExecute] = ACTIONS(2288), - [anon_sym_queryexecute] = ACTIONS(2288), - [anon_sym_QUERYEXECUTE] = ACTIONS(2288), - [anon_sym_queryExecute] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2290), - [anon_sym_Abstract] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_ABSTRACT] = ACTIONS(2288), - [anon_sym_Component] = ACTIONS(2288), - [anon_sym_component] = ACTIONS(2288), - [anon_sym_COMPONENT] = ACTIONS(2288), - [anon_sym_Debugger] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_DEBUGGER] = ACTIONS(2288), - [anon_sym_Final] = ACTIONS(2288), - [anon_sym_final] = ACTIONS(2288), - [anon_sym_FINAL] = ACTIONS(2288), - [anon_sym_Function] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_FUNCTION] = ACTIONS(2288), - [anon_sym_In] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_IN] = ACTIONS(2288), - [anon_sym_Include] = ACTIONS(2288), - [anon_sym_include] = ACTIONS(2288), - [anon_sym_INCLUDE] = ACTIONS(2288), - [anon_sym_InstanceOf] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_INSTANCEOF] = ACTIONS(2288), - [anon_sym_instanceOf] = ACTIONS(2288), - [anon_sym_New] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_NEW] = ACTIONS(2288), - [anon_sym_Package] = ACTIONS(2288), - [anon_sym_package] = ACTIONS(2288), - [anon_sym_PACKAGE] = ACTIONS(2288), - [anon_sym_Private] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_PRIVATE] = ACTIONS(2288), - [anon_sym_Public] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_PUBLIC] = ACTIONS(2288), - [anon_sym_Remote] = ACTIONS(2288), - [anon_sym_remote] = ACTIONS(2288), - [anon_sym_REMOTE] = ACTIONS(2288), - [anon_sym_Static] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_STATIC] = ACTIONS(2288), - [sym__ternary_qmark] = ACTIONS(2290), - [sym__elvis_operator] = ACTIONS(2290), - [sym_logical_or] = ACTIONS(2290), - [sym__java_block_open] = ACTIONS(2290), - [sym__static_type_prefix] = ACTIONS(2290), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_Query] = ACTIONS(2884), + [anon_sym_query] = ACTIONS(2884), + [anon_sym_QUERY] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_unary_operator_token1] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2884), + [aux_sym_number_token2] = ACTIONS(2882), + [anon_sym_This] = ACTIONS(2884), + [anon_sym_this] = ACTIONS(2884), + [anon_sym_THIS] = ACTIONS(2884), + [anon_sym_Super] = ACTIONS(2884), + [anon_sym_super] = ACTIONS(2884), + [anon_sym_SUPER] = ACTIONS(2884), + [anon_sym_True] = ACTIONS(2884), + [anon_sym_true] = ACTIONS(2884), + [anon_sym_TRUE] = ACTIONS(2884), + [anon_sym_False] = ACTIONS(2884), + [anon_sym_false] = ACTIONS(2884), + [anon_sym_FALSE] = ACTIONS(2884), + [anon_sym_Null] = ACTIONS(2884), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_NULL] = ACTIONS(2884), + [anon_sym_Undefined] = ACTIONS(2884), + [anon_sym_undefined] = ACTIONS(2884), + [anon_sym_UNDEFINED] = ACTIONS(2884), + [anon_sym_get] = ACTIONS(2884), + [anon_sym_set] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(2884), + [sym_hash_empty] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2884), + [anon_sym_QueryExecute] = ACTIONS(2884), + [anon_sym_queryexecute] = ACTIONS(2884), + [anon_sym_QUERYEXECUTE] = ACTIONS(2884), + [anon_sym_queryExecute] = ACTIONS(2884), + [anon_sym_BQUOTE] = ACTIONS(2884), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2882), + [anon_sym_Abstract] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_ABSTRACT] = ACTIONS(2884), + [anon_sym_Break] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_BREAK] = ACTIONS(2884), + [anon_sym_Case] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_CASE] = ACTIONS(2884), + [anon_sym_Component] = ACTIONS(2884), + [anon_sym_component] = ACTIONS(2884), + [anon_sym_COMPONENT] = ACTIONS(2884), + [anon_sym_Continue] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_CONTINUE] = ACTIONS(2884), + [anon_sym_Debugger] = ACTIONS(2884), + [anon_sym_debugger] = ACTIONS(2884), + [anon_sym_DEBUGGER] = ACTIONS(2884), + [anon_sym_Default] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_DEFAULT] = ACTIONS(2884), + [anon_sym_Do] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_DO] = ACTIONS(2884), + [anon_sym_Else] = ACTIONS(2884), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_ELSE] = ACTIONS(2884), + [anon_sym_Final] = ACTIONS(2884), + [anon_sym_final] = ACTIONS(2884), + [anon_sym_FINAL] = ACTIONS(2884), + [anon_sym_For] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_FOR] = ACTIONS(2884), + [anon_sym_Function] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_FUNCTION] = ACTIONS(2884), + [anon_sym_If] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_IF] = ACTIONS(2884), + [anon_sym_Import] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_IMPORT] = ACTIONS(2884), + [anon_sym_Include] = ACTIONS(2884), + [anon_sym_include] = ACTIONS(2884), + [anon_sym_INCLUDE] = ACTIONS(2884), + [anon_sym_Interface] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_INTERFACE] = ACTIONS(2884), + [anon_sym_New] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_NEW] = ACTIONS(2884), + [anon_sym_Package] = ACTIONS(2884), + [anon_sym_package] = ACTIONS(2884), + [anon_sym_PACKAGE] = ACTIONS(2884), + [anon_sym_Private] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_PRIVATE] = ACTIONS(2884), + [anon_sym_Property] = ACTIONS(2884), + [anon_sym_property] = ACTIONS(2884), + [anon_sym_PROPERTY] = ACTIONS(2884), + [anon_sym_Public] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_PUBLIC] = ACTIONS(2884), + [anon_sym_Remote] = ACTIONS(2884), + [anon_sym_remote] = ACTIONS(2884), + [anon_sym_REMOTE] = ACTIONS(2884), + [anon_sym_Return] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_RETURN] = ACTIONS(2884), + [anon_sym_Static] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_STATIC] = ACTIONS(2884), + [anon_sym_Switch] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_SWITCH] = ACTIONS(2884), + [anon_sym_Throw] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_THROW] = ACTIONS(2884), + [anon_sym_Try] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_TRY] = ACTIONS(2884), + [anon_sym_Var] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [anon_sym_VAR] = ACTIONS(2884), + [anon_sym_While] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_WHILE] = ACTIONS(2884), + [anon_sym_With] = ACTIONS(2884), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_WITH] = ACTIONS(2884), + [sym_cf_comment] = ACTIONS(2882), + [sym__java_block_open] = ACTIONS(2882), + [sym__static_type_prefix] = ACTIONS(2882), }, [STATE(632)] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_Query] = ACTIONS(2846), - [anon_sym_query] = ACTIONS(2846), - [anon_sym_QUERY] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_unary_operator_token1] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2846), - [aux_sym_number_token2] = ACTIONS(2844), - [anon_sym_This] = ACTIONS(2846), - [anon_sym_this] = ACTIONS(2846), - [anon_sym_THIS] = ACTIONS(2846), - [anon_sym_Super] = ACTIONS(2846), - [anon_sym_super] = ACTIONS(2846), - [anon_sym_SUPER] = ACTIONS(2846), - [anon_sym_True] = ACTIONS(2846), - [anon_sym_true] = ACTIONS(2846), - [anon_sym_TRUE] = ACTIONS(2846), - [anon_sym_False] = ACTIONS(2846), - [anon_sym_false] = ACTIONS(2846), - [anon_sym_FALSE] = ACTIONS(2846), - [anon_sym_Null] = ACTIONS(2846), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_NULL] = ACTIONS(2846), - [anon_sym_Undefined] = ACTIONS(2846), - [anon_sym_undefined] = ACTIONS(2846), - [anon_sym_UNDEFINED] = ACTIONS(2846), - [anon_sym_get] = ACTIONS(2846), - [anon_sym_set] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [sym_hash_empty] = ACTIONS(2844), - [anon_sym_export] = ACTIONS(2846), - [anon_sym_QueryExecute] = ACTIONS(2846), - [anon_sym_queryexecute] = ACTIONS(2846), - [anon_sym_QUERYEXECUTE] = ACTIONS(2846), - [anon_sym_queryExecute] = ACTIONS(2846), - [anon_sym_BQUOTE] = ACTIONS(2846), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2844), - [anon_sym_Abstract] = ACTIONS(2846), - [anon_sym_abstract] = ACTIONS(2846), - [anon_sym_ABSTRACT] = ACTIONS(2846), - [anon_sym_Break] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_BREAK] = ACTIONS(2846), - [anon_sym_Case] = ACTIONS(2846), - [anon_sym_case] = ACTIONS(2846), - [anon_sym_CASE] = ACTIONS(2846), - [anon_sym_Component] = ACTIONS(2846), - [anon_sym_component] = ACTIONS(2846), - [anon_sym_COMPONENT] = ACTIONS(2846), - [anon_sym_Continue] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_CONTINUE] = ACTIONS(2846), - [anon_sym_Debugger] = ACTIONS(2846), - [anon_sym_debugger] = ACTIONS(2846), - [anon_sym_DEBUGGER] = ACTIONS(2846), - [anon_sym_Default] = ACTIONS(2846), - [anon_sym_default] = ACTIONS(2846), - [anon_sym_DEFAULT] = ACTIONS(2846), - [anon_sym_Do] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_DO] = ACTIONS(2846), - [anon_sym_Else] = ACTIONS(2846), - [anon_sym_else] = ACTIONS(2846), - [anon_sym_ELSE] = ACTIONS(2846), - [anon_sym_Final] = ACTIONS(2846), - [anon_sym_final] = ACTIONS(2846), - [anon_sym_FINAL] = ACTIONS(2846), - [anon_sym_For] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_FOR] = ACTIONS(2846), - [anon_sym_Function] = ACTIONS(2846), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_FUNCTION] = ACTIONS(2846), - [anon_sym_If] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_IF] = ACTIONS(2846), - [anon_sym_Import] = ACTIONS(2846), - [anon_sym_import] = ACTIONS(2846), - [anon_sym_IMPORT] = ACTIONS(2846), - [anon_sym_Include] = ACTIONS(2846), - [anon_sym_include] = ACTIONS(2846), - [anon_sym_INCLUDE] = ACTIONS(2846), - [anon_sym_Interface] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_INTERFACE] = ACTIONS(2846), - [anon_sym_New] = ACTIONS(2846), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_NEW] = ACTIONS(2846), - [anon_sym_Package] = ACTIONS(2846), - [anon_sym_package] = ACTIONS(2846), - [anon_sym_PACKAGE] = ACTIONS(2846), - [anon_sym_Private] = ACTIONS(2846), - [anon_sym_private] = ACTIONS(2846), - [anon_sym_PRIVATE] = ACTIONS(2846), - [anon_sym_Property] = ACTIONS(2846), - [anon_sym_property] = ACTIONS(2846), - [anon_sym_PROPERTY] = ACTIONS(2846), - [anon_sym_Public] = ACTIONS(2846), - [anon_sym_public] = ACTIONS(2846), - [anon_sym_PUBLIC] = ACTIONS(2846), - [anon_sym_Remote] = ACTIONS(2846), - [anon_sym_remote] = ACTIONS(2846), - [anon_sym_REMOTE] = ACTIONS(2846), - [anon_sym_Return] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_RETURN] = ACTIONS(2846), - [anon_sym_Static] = ACTIONS(2846), - [anon_sym_static] = ACTIONS(2846), - [anon_sym_STATIC] = ACTIONS(2846), - [anon_sym_Switch] = ACTIONS(2846), - [anon_sym_switch] = ACTIONS(2846), - [anon_sym_SWITCH] = ACTIONS(2846), - [anon_sym_Throw] = ACTIONS(2846), - [anon_sym_throw] = ACTIONS(2846), - [anon_sym_THROW] = ACTIONS(2846), - [anon_sym_Try] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_TRY] = ACTIONS(2846), - [anon_sym_Var] = ACTIONS(2846), - [anon_sym_var] = ACTIONS(2846), - [anon_sym_VAR] = ACTIONS(2846), - [anon_sym_While] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_WHILE] = ACTIONS(2846), - [anon_sym_With] = ACTIONS(2846), - [anon_sym_with] = ACTIONS(2846), - [anon_sym_WITH] = ACTIONS(2846), - [sym_cf_comment] = ACTIONS(2844), - [sym__java_block_open] = ACTIONS(2844), - [sym__static_type_prefix] = ACTIONS(2844), + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_Query] = ACTIONS(2888), + [anon_sym_query] = ACTIONS(2888), + [anon_sym_QUERY] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_unary_operator_token1] = ACTIONS(2888), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2888), + [aux_sym_number_token2] = ACTIONS(2886), + [anon_sym_This] = ACTIONS(2888), + [anon_sym_this] = ACTIONS(2888), + [anon_sym_THIS] = ACTIONS(2888), + [anon_sym_Super] = ACTIONS(2888), + [anon_sym_super] = ACTIONS(2888), + [anon_sym_SUPER] = ACTIONS(2888), + [anon_sym_True] = ACTIONS(2888), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_TRUE] = ACTIONS(2888), + [anon_sym_False] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_FALSE] = ACTIONS(2888), + [anon_sym_Null] = ACTIONS(2888), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_NULL] = ACTIONS(2888), + [anon_sym_Undefined] = ACTIONS(2888), + [anon_sym_undefined] = ACTIONS(2888), + [anon_sym_UNDEFINED] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2888), + [anon_sym_set] = ACTIONS(2888), + [anon_sym_POUND] = ACTIONS(2888), + [sym_hash_empty] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_QueryExecute] = ACTIONS(2888), + [anon_sym_queryexecute] = ACTIONS(2888), + [anon_sym_QUERYEXECUTE] = ACTIONS(2888), + [anon_sym_queryExecute] = ACTIONS(2888), + [anon_sym_BQUOTE] = ACTIONS(2888), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2886), + [anon_sym_Abstract] = ACTIONS(2888), + [anon_sym_abstract] = ACTIONS(2888), + [anon_sym_ABSTRACT] = ACTIONS(2888), + [anon_sym_Break] = ACTIONS(2888), + [anon_sym_break] = ACTIONS(2888), + [anon_sym_BREAK] = ACTIONS(2888), + [anon_sym_Case] = ACTIONS(2888), + [anon_sym_case] = ACTIONS(2888), + [anon_sym_CASE] = ACTIONS(2888), + [anon_sym_Component] = ACTIONS(2888), + [anon_sym_component] = ACTIONS(2888), + [anon_sym_COMPONENT] = ACTIONS(2888), + [anon_sym_Continue] = ACTIONS(2888), + [anon_sym_continue] = ACTIONS(2888), + [anon_sym_CONTINUE] = ACTIONS(2888), + [anon_sym_Debugger] = ACTIONS(2888), + [anon_sym_debugger] = ACTIONS(2888), + [anon_sym_DEBUGGER] = ACTIONS(2888), + [anon_sym_Default] = ACTIONS(2888), + [anon_sym_default] = ACTIONS(2888), + [anon_sym_DEFAULT] = ACTIONS(2888), + [anon_sym_Do] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_DO] = ACTIONS(2888), + [anon_sym_Else] = ACTIONS(2888), + [anon_sym_else] = ACTIONS(2888), + [anon_sym_ELSE] = ACTIONS(2888), + [anon_sym_Final] = ACTIONS(2888), + [anon_sym_final] = ACTIONS(2888), + [anon_sym_FINAL] = ACTIONS(2888), + [anon_sym_For] = ACTIONS(2888), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_FOR] = ACTIONS(2888), + [anon_sym_Function] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_FUNCTION] = ACTIONS(2888), + [anon_sym_If] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_IF] = ACTIONS(2888), + [anon_sym_Import] = ACTIONS(2888), + [anon_sym_import] = ACTIONS(2888), + [anon_sym_IMPORT] = ACTIONS(2888), + [anon_sym_Include] = ACTIONS(2888), + [anon_sym_include] = ACTIONS(2888), + [anon_sym_INCLUDE] = ACTIONS(2888), + [anon_sym_Interface] = ACTIONS(2888), + [anon_sym_interface] = ACTIONS(2888), + [anon_sym_INTERFACE] = ACTIONS(2888), + [anon_sym_New] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_NEW] = ACTIONS(2888), + [anon_sym_Package] = ACTIONS(2888), + [anon_sym_package] = ACTIONS(2888), + [anon_sym_PACKAGE] = ACTIONS(2888), + [anon_sym_Private] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_PRIVATE] = ACTIONS(2888), + [anon_sym_Property] = ACTIONS(2888), + [anon_sym_property] = ACTIONS(2888), + [anon_sym_PROPERTY] = ACTIONS(2888), + [anon_sym_Public] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_PUBLIC] = ACTIONS(2888), + [anon_sym_Remote] = ACTIONS(2888), + [anon_sym_remote] = ACTIONS(2888), + [anon_sym_REMOTE] = ACTIONS(2888), + [anon_sym_Return] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_RETURN] = ACTIONS(2888), + [anon_sym_Static] = ACTIONS(2888), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_STATIC] = ACTIONS(2888), + [anon_sym_Switch] = ACTIONS(2888), + [anon_sym_switch] = ACTIONS(2888), + [anon_sym_SWITCH] = ACTIONS(2888), + [anon_sym_Throw] = ACTIONS(2888), + [anon_sym_throw] = ACTIONS(2888), + [anon_sym_THROW] = ACTIONS(2888), + [anon_sym_Try] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_TRY] = ACTIONS(2888), + [anon_sym_Var] = ACTIONS(2888), + [anon_sym_var] = ACTIONS(2888), + [anon_sym_VAR] = ACTIONS(2888), + [anon_sym_While] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_WHILE] = ACTIONS(2888), + [anon_sym_With] = ACTIONS(2888), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_WITH] = ACTIONS(2888), + [sym_cf_comment] = ACTIONS(2886), + [sym__java_block_open] = ACTIONS(2886), + [sym__static_type_prefix] = ACTIONS(2886), }, [STATE(633)] = { - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2848), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_Query] = ACTIONS(2850), - [anon_sym_query] = ACTIONS(2850), - [anon_sym_QUERY] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_unary_operator_token1] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_DQUOTE] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2850), - [aux_sym_number_token2] = ACTIONS(2848), - [anon_sym_This] = ACTIONS(2850), - [anon_sym_this] = ACTIONS(2850), - [anon_sym_THIS] = ACTIONS(2850), - [anon_sym_Super] = ACTIONS(2850), - [anon_sym_super] = ACTIONS(2850), - [anon_sym_SUPER] = ACTIONS(2850), - [anon_sym_True] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2850), - [anon_sym_TRUE] = ACTIONS(2850), - [anon_sym_False] = ACTIONS(2850), - [anon_sym_false] = ACTIONS(2850), - [anon_sym_FALSE] = ACTIONS(2850), - [anon_sym_Null] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_NULL] = ACTIONS(2850), - [anon_sym_Undefined] = ACTIONS(2850), - [anon_sym_undefined] = ACTIONS(2850), - [anon_sym_UNDEFINED] = ACTIONS(2850), - [anon_sym_get] = ACTIONS(2850), - [anon_sym_set] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [sym_hash_empty] = ACTIONS(2848), - [anon_sym_export] = ACTIONS(2850), - [anon_sym_QueryExecute] = ACTIONS(2850), - [anon_sym_queryexecute] = ACTIONS(2850), - [anon_sym_QUERYEXECUTE] = ACTIONS(2850), - [anon_sym_queryExecute] = ACTIONS(2850), - [anon_sym_BQUOTE] = ACTIONS(2850), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2848), - [anon_sym_Abstract] = ACTIONS(2850), - [anon_sym_abstract] = ACTIONS(2850), - [anon_sym_ABSTRACT] = ACTIONS(2850), - [anon_sym_Break] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_BREAK] = ACTIONS(2850), - [anon_sym_Case] = ACTIONS(2850), - [anon_sym_case] = ACTIONS(2850), - [anon_sym_CASE] = ACTIONS(2850), - [anon_sym_Component] = ACTIONS(2850), - [anon_sym_component] = ACTIONS(2850), - [anon_sym_COMPONENT] = ACTIONS(2850), - [anon_sym_Continue] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_CONTINUE] = ACTIONS(2850), - [anon_sym_Debugger] = ACTIONS(2850), - [anon_sym_debugger] = ACTIONS(2850), - [anon_sym_DEBUGGER] = ACTIONS(2850), - [anon_sym_Default] = ACTIONS(2850), - [anon_sym_default] = ACTIONS(2850), - [anon_sym_DEFAULT] = ACTIONS(2850), - [anon_sym_Do] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_DO] = ACTIONS(2850), - [anon_sym_Else] = ACTIONS(2850), - [anon_sym_else] = ACTIONS(2850), - [anon_sym_ELSE] = ACTIONS(2850), - [anon_sym_Final] = ACTIONS(2850), - [anon_sym_final] = ACTIONS(2850), - [anon_sym_FINAL] = ACTIONS(2850), - [anon_sym_For] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_FOR] = ACTIONS(2850), - [anon_sym_Function] = ACTIONS(2850), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_FUNCTION] = ACTIONS(2850), - [anon_sym_If] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_IF] = ACTIONS(2850), - [anon_sym_Import] = ACTIONS(2850), - [anon_sym_import] = ACTIONS(2850), - [anon_sym_IMPORT] = ACTIONS(2850), - [anon_sym_Include] = ACTIONS(2850), - [anon_sym_include] = ACTIONS(2850), - [anon_sym_INCLUDE] = ACTIONS(2850), - [anon_sym_Interface] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_INTERFACE] = ACTIONS(2850), - [anon_sym_New] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_NEW] = ACTIONS(2850), - [anon_sym_Package] = ACTIONS(2850), - [anon_sym_package] = ACTIONS(2850), - [anon_sym_PACKAGE] = ACTIONS(2850), - [anon_sym_Private] = ACTIONS(2850), - [anon_sym_private] = ACTIONS(2850), - [anon_sym_PRIVATE] = ACTIONS(2850), - [anon_sym_Property] = ACTIONS(2850), - [anon_sym_property] = ACTIONS(2850), - [anon_sym_PROPERTY] = ACTIONS(2850), - [anon_sym_Public] = ACTIONS(2850), - [anon_sym_public] = ACTIONS(2850), - [anon_sym_PUBLIC] = ACTIONS(2850), - [anon_sym_Remote] = ACTIONS(2850), - [anon_sym_remote] = ACTIONS(2850), - [anon_sym_REMOTE] = ACTIONS(2850), - [anon_sym_Return] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_RETURN] = ACTIONS(2850), - [anon_sym_Static] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2850), - [anon_sym_STATIC] = ACTIONS(2850), - [anon_sym_Switch] = ACTIONS(2850), - [anon_sym_switch] = ACTIONS(2850), - [anon_sym_SWITCH] = ACTIONS(2850), - [anon_sym_Throw] = ACTIONS(2850), - [anon_sym_throw] = ACTIONS(2850), - [anon_sym_THROW] = ACTIONS(2850), - [anon_sym_Try] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_TRY] = ACTIONS(2850), - [anon_sym_Var] = ACTIONS(2850), - [anon_sym_var] = ACTIONS(2850), - [anon_sym_VAR] = ACTIONS(2850), - [anon_sym_While] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_WHILE] = ACTIONS(2850), - [anon_sym_With] = ACTIONS(2850), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_WITH] = ACTIONS(2850), - [sym_cf_comment] = ACTIONS(2848), - [sym__java_block_open] = ACTIONS(2848), - [sym__static_type_prefix] = ACTIONS(2848), + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2890), + [anon_sym_Query] = ACTIONS(2892), + [anon_sym_query] = ACTIONS(2892), + [anon_sym_QUERY] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_unary_operator_token1] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_DQUOTE] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2892), + [aux_sym_number_token2] = ACTIONS(2890), + [anon_sym_This] = ACTIONS(2892), + [anon_sym_this] = ACTIONS(2892), + [anon_sym_THIS] = ACTIONS(2892), + [anon_sym_Super] = ACTIONS(2892), + [anon_sym_super] = ACTIONS(2892), + [anon_sym_SUPER] = ACTIONS(2892), + [anon_sym_True] = ACTIONS(2892), + [anon_sym_true] = ACTIONS(2892), + [anon_sym_TRUE] = ACTIONS(2892), + [anon_sym_False] = ACTIONS(2892), + [anon_sym_false] = ACTIONS(2892), + [anon_sym_FALSE] = ACTIONS(2892), + [anon_sym_Null] = ACTIONS(2892), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_NULL] = ACTIONS(2892), + [anon_sym_Undefined] = ACTIONS(2892), + [anon_sym_undefined] = ACTIONS(2892), + [anon_sym_UNDEFINED] = ACTIONS(2892), + [anon_sym_get] = ACTIONS(2892), + [anon_sym_set] = ACTIONS(2892), + [anon_sym_POUND] = ACTIONS(2892), + [sym_hash_empty] = ACTIONS(2890), + [anon_sym_export] = ACTIONS(2892), + [anon_sym_QueryExecute] = ACTIONS(2892), + [anon_sym_queryexecute] = ACTIONS(2892), + [anon_sym_QUERYEXECUTE] = ACTIONS(2892), + [anon_sym_queryExecute] = ACTIONS(2892), + [anon_sym_BQUOTE] = ACTIONS(2892), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2890), + [anon_sym_Abstract] = ACTIONS(2892), + [anon_sym_abstract] = ACTIONS(2892), + [anon_sym_ABSTRACT] = ACTIONS(2892), + [anon_sym_Break] = ACTIONS(2892), + [anon_sym_break] = ACTIONS(2892), + [anon_sym_BREAK] = ACTIONS(2892), + [anon_sym_Case] = ACTIONS(2892), + [anon_sym_case] = ACTIONS(2892), + [anon_sym_CASE] = ACTIONS(2892), + [anon_sym_Component] = ACTIONS(2892), + [anon_sym_component] = ACTIONS(2892), + [anon_sym_COMPONENT] = ACTIONS(2892), + [anon_sym_Continue] = ACTIONS(2892), + [anon_sym_continue] = ACTIONS(2892), + [anon_sym_CONTINUE] = ACTIONS(2892), + [anon_sym_Debugger] = ACTIONS(2892), + [anon_sym_debugger] = ACTIONS(2892), + [anon_sym_DEBUGGER] = ACTIONS(2892), + [anon_sym_Default] = ACTIONS(2892), + [anon_sym_default] = ACTIONS(2892), + [anon_sym_DEFAULT] = ACTIONS(2892), + [anon_sym_Do] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_DO] = ACTIONS(2892), + [anon_sym_Else] = ACTIONS(2892), + [anon_sym_else] = ACTIONS(2892), + [anon_sym_ELSE] = ACTIONS(2892), + [anon_sym_Final] = ACTIONS(2892), + [anon_sym_final] = ACTIONS(2892), + [anon_sym_FINAL] = ACTIONS(2892), + [anon_sym_For] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_FOR] = ACTIONS(2892), + [anon_sym_Function] = ACTIONS(2892), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_FUNCTION] = ACTIONS(2892), + [anon_sym_If] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_IF] = ACTIONS(2892), + [anon_sym_Import] = ACTIONS(2892), + [anon_sym_import] = ACTIONS(2892), + [anon_sym_IMPORT] = ACTIONS(2892), + [anon_sym_Include] = ACTIONS(2892), + [anon_sym_include] = ACTIONS(2892), + [anon_sym_INCLUDE] = ACTIONS(2892), + [anon_sym_Interface] = ACTIONS(2892), + [anon_sym_interface] = ACTIONS(2892), + [anon_sym_INTERFACE] = ACTIONS(2892), + [anon_sym_New] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_NEW] = ACTIONS(2892), + [anon_sym_Package] = ACTIONS(2892), + [anon_sym_package] = ACTIONS(2892), + [anon_sym_PACKAGE] = ACTIONS(2892), + [anon_sym_Private] = ACTIONS(2892), + [anon_sym_private] = ACTIONS(2892), + [anon_sym_PRIVATE] = ACTIONS(2892), + [anon_sym_Property] = ACTIONS(2892), + [anon_sym_property] = ACTIONS(2892), + [anon_sym_PROPERTY] = ACTIONS(2892), + [anon_sym_Public] = ACTIONS(2892), + [anon_sym_public] = ACTIONS(2892), + [anon_sym_PUBLIC] = ACTIONS(2892), + [anon_sym_Remote] = ACTIONS(2892), + [anon_sym_remote] = ACTIONS(2892), + [anon_sym_REMOTE] = ACTIONS(2892), + [anon_sym_Return] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_RETURN] = ACTIONS(2892), + [anon_sym_Static] = ACTIONS(2892), + [anon_sym_static] = ACTIONS(2892), + [anon_sym_STATIC] = ACTIONS(2892), + [anon_sym_Switch] = ACTIONS(2892), + [anon_sym_switch] = ACTIONS(2892), + [anon_sym_SWITCH] = ACTIONS(2892), + [anon_sym_Throw] = ACTIONS(2892), + [anon_sym_throw] = ACTIONS(2892), + [anon_sym_THROW] = ACTIONS(2892), + [anon_sym_Try] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_TRY] = ACTIONS(2892), + [anon_sym_Var] = ACTIONS(2892), + [anon_sym_var] = ACTIONS(2892), + [anon_sym_VAR] = ACTIONS(2892), + [anon_sym_While] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_WHILE] = ACTIONS(2892), + [anon_sym_With] = ACTIONS(2892), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_WITH] = ACTIONS(2892), + [sym_cf_comment] = ACTIONS(2890), + [sym__java_block_open] = ACTIONS(2890), + [sym__static_type_prefix] = ACTIONS(2890), }, [STATE(634)] = { - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2852), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_Query] = ACTIONS(2854), - [anon_sym_query] = ACTIONS(2854), - [anon_sym_QUERY] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_unary_operator_token1] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2854), - [aux_sym_number_token2] = ACTIONS(2852), - [anon_sym_This] = ACTIONS(2854), - [anon_sym_this] = ACTIONS(2854), - [anon_sym_THIS] = ACTIONS(2854), - [anon_sym_Super] = ACTIONS(2854), - [anon_sym_super] = ACTIONS(2854), - [anon_sym_SUPER] = ACTIONS(2854), - [anon_sym_True] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2854), - [anon_sym_TRUE] = ACTIONS(2854), - [anon_sym_False] = ACTIONS(2854), - [anon_sym_false] = ACTIONS(2854), - [anon_sym_FALSE] = ACTIONS(2854), - [anon_sym_Null] = ACTIONS(2854), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_NULL] = ACTIONS(2854), - [anon_sym_Undefined] = ACTIONS(2854), - [anon_sym_undefined] = ACTIONS(2854), - [anon_sym_UNDEFINED] = ACTIONS(2854), - [anon_sym_get] = ACTIONS(2854), - [anon_sym_set] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [sym_hash_empty] = ACTIONS(2852), - [anon_sym_export] = ACTIONS(2854), - [anon_sym_QueryExecute] = ACTIONS(2854), - [anon_sym_queryexecute] = ACTIONS(2854), - [anon_sym_QUERYEXECUTE] = ACTIONS(2854), - [anon_sym_queryExecute] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2852), - [anon_sym_Abstract] = ACTIONS(2854), - [anon_sym_abstract] = ACTIONS(2854), - [anon_sym_ABSTRACT] = ACTIONS(2854), - [anon_sym_Break] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_BREAK] = ACTIONS(2854), - [anon_sym_Case] = ACTIONS(2854), - [anon_sym_case] = ACTIONS(2854), - [anon_sym_CASE] = ACTIONS(2854), - [anon_sym_Component] = ACTIONS(2854), - [anon_sym_component] = ACTIONS(2854), - [anon_sym_COMPONENT] = ACTIONS(2854), - [anon_sym_Continue] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_CONTINUE] = ACTIONS(2854), - [anon_sym_Debugger] = ACTIONS(2854), - [anon_sym_debugger] = ACTIONS(2854), - [anon_sym_DEBUGGER] = ACTIONS(2854), - [anon_sym_Default] = ACTIONS(2854), - [anon_sym_default] = ACTIONS(2854), - [anon_sym_DEFAULT] = ACTIONS(2854), - [anon_sym_Do] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_DO] = ACTIONS(2854), - [anon_sym_Else] = ACTIONS(2854), - [anon_sym_else] = ACTIONS(2854), - [anon_sym_ELSE] = ACTIONS(2854), - [anon_sym_Final] = ACTIONS(2854), - [anon_sym_final] = ACTIONS(2854), - [anon_sym_FINAL] = ACTIONS(2854), - [anon_sym_For] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_FOR] = ACTIONS(2854), - [anon_sym_Function] = ACTIONS(2854), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_FUNCTION] = ACTIONS(2854), - [anon_sym_If] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_IF] = ACTIONS(2854), - [anon_sym_Import] = ACTIONS(2854), - [anon_sym_import] = ACTIONS(2854), - [anon_sym_IMPORT] = ACTIONS(2854), - [anon_sym_Include] = ACTIONS(2854), - [anon_sym_include] = ACTIONS(2854), - [anon_sym_INCLUDE] = ACTIONS(2854), - [anon_sym_Interface] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_INTERFACE] = ACTIONS(2854), - [anon_sym_New] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_NEW] = ACTIONS(2854), - [anon_sym_Package] = ACTIONS(2854), - [anon_sym_package] = ACTIONS(2854), - [anon_sym_PACKAGE] = ACTIONS(2854), - [anon_sym_Private] = ACTIONS(2854), - [anon_sym_private] = ACTIONS(2854), - [anon_sym_PRIVATE] = ACTIONS(2854), - [anon_sym_Property] = ACTIONS(2854), - [anon_sym_property] = ACTIONS(2854), - [anon_sym_PROPERTY] = ACTIONS(2854), - [anon_sym_Public] = ACTIONS(2854), - [anon_sym_public] = ACTIONS(2854), - [anon_sym_PUBLIC] = ACTIONS(2854), - [anon_sym_Remote] = ACTIONS(2854), - [anon_sym_remote] = ACTIONS(2854), - [anon_sym_REMOTE] = ACTIONS(2854), - [anon_sym_Return] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_RETURN] = ACTIONS(2854), - [anon_sym_Static] = ACTIONS(2854), - [anon_sym_static] = ACTIONS(2854), - [anon_sym_STATIC] = ACTIONS(2854), - [anon_sym_Switch] = ACTIONS(2854), - [anon_sym_switch] = ACTIONS(2854), - [anon_sym_SWITCH] = ACTIONS(2854), - [anon_sym_Throw] = ACTIONS(2854), - [anon_sym_throw] = ACTIONS(2854), - [anon_sym_THROW] = ACTIONS(2854), - [anon_sym_Try] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_TRY] = ACTIONS(2854), - [anon_sym_Var] = ACTIONS(2854), - [anon_sym_var] = ACTIONS(2854), - [anon_sym_VAR] = ACTIONS(2854), - [anon_sym_While] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_WHILE] = ACTIONS(2854), - [anon_sym_With] = ACTIONS(2854), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_WITH] = ACTIONS(2854), - [sym_cf_comment] = ACTIONS(2852), - [sym__java_block_open] = ACTIONS(2852), - [sym__static_type_prefix] = ACTIONS(2852), + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_Query] = ACTIONS(2896), + [anon_sym_query] = ACTIONS(2896), + [anon_sym_QUERY] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_unary_operator_token1] = ACTIONS(2896), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_DQUOTE] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2896), + [aux_sym_number_token2] = ACTIONS(2894), + [anon_sym_This] = ACTIONS(2896), + [anon_sym_this] = ACTIONS(2896), + [anon_sym_THIS] = ACTIONS(2896), + [anon_sym_Super] = ACTIONS(2896), + [anon_sym_super] = ACTIONS(2896), + [anon_sym_SUPER] = ACTIONS(2896), + [anon_sym_True] = ACTIONS(2896), + [anon_sym_true] = ACTIONS(2896), + [anon_sym_TRUE] = ACTIONS(2896), + [anon_sym_False] = ACTIONS(2896), + [anon_sym_false] = ACTIONS(2896), + [anon_sym_FALSE] = ACTIONS(2896), + [anon_sym_Null] = ACTIONS(2896), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_NULL] = ACTIONS(2896), + [anon_sym_Undefined] = ACTIONS(2896), + [anon_sym_undefined] = ACTIONS(2896), + [anon_sym_UNDEFINED] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2896), + [anon_sym_set] = ACTIONS(2896), + [anon_sym_POUND] = ACTIONS(2896), + [sym_hash_empty] = ACTIONS(2894), + [anon_sym_export] = ACTIONS(2896), + [anon_sym_QueryExecute] = ACTIONS(2896), + [anon_sym_queryexecute] = ACTIONS(2896), + [anon_sym_QUERYEXECUTE] = ACTIONS(2896), + [anon_sym_queryExecute] = ACTIONS(2896), + [anon_sym_BQUOTE] = ACTIONS(2896), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2894), + [anon_sym_Abstract] = ACTIONS(2896), + [anon_sym_abstract] = ACTIONS(2896), + [anon_sym_ABSTRACT] = ACTIONS(2896), + [anon_sym_Break] = ACTIONS(2896), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_BREAK] = ACTIONS(2896), + [anon_sym_Case] = ACTIONS(2896), + [anon_sym_case] = ACTIONS(2896), + [anon_sym_CASE] = ACTIONS(2896), + [anon_sym_Component] = ACTIONS(2896), + [anon_sym_component] = ACTIONS(2896), + [anon_sym_COMPONENT] = ACTIONS(2896), + [anon_sym_Continue] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2896), + [anon_sym_CONTINUE] = ACTIONS(2896), + [anon_sym_Debugger] = ACTIONS(2896), + [anon_sym_debugger] = ACTIONS(2896), + [anon_sym_DEBUGGER] = ACTIONS(2896), + [anon_sym_Default] = ACTIONS(2896), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_DEFAULT] = ACTIONS(2896), + [anon_sym_Do] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_DO] = ACTIONS(2896), + [anon_sym_Else] = ACTIONS(2896), + [anon_sym_else] = ACTIONS(2896), + [anon_sym_ELSE] = ACTIONS(2896), + [anon_sym_Final] = ACTIONS(2896), + [anon_sym_final] = ACTIONS(2896), + [anon_sym_FINAL] = ACTIONS(2896), + [anon_sym_For] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_FOR] = ACTIONS(2896), + [anon_sym_Function] = ACTIONS(2896), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_FUNCTION] = ACTIONS(2896), + [anon_sym_If] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_IF] = ACTIONS(2896), + [anon_sym_Import] = ACTIONS(2896), + [anon_sym_import] = ACTIONS(2896), + [anon_sym_IMPORT] = ACTIONS(2896), + [anon_sym_Include] = ACTIONS(2896), + [anon_sym_include] = ACTIONS(2896), + [anon_sym_INCLUDE] = ACTIONS(2896), + [anon_sym_Interface] = ACTIONS(2896), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_INTERFACE] = ACTIONS(2896), + [anon_sym_New] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_NEW] = ACTIONS(2896), + [anon_sym_Package] = ACTIONS(2896), + [anon_sym_package] = ACTIONS(2896), + [anon_sym_PACKAGE] = ACTIONS(2896), + [anon_sym_Private] = ACTIONS(2896), + [anon_sym_private] = ACTIONS(2896), + [anon_sym_PRIVATE] = ACTIONS(2896), + [anon_sym_Property] = ACTIONS(2896), + [anon_sym_property] = ACTIONS(2896), + [anon_sym_PROPERTY] = ACTIONS(2896), + [anon_sym_Public] = ACTIONS(2896), + [anon_sym_public] = ACTIONS(2896), + [anon_sym_PUBLIC] = ACTIONS(2896), + [anon_sym_Remote] = ACTIONS(2896), + [anon_sym_remote] = ACTIONS(2896), + [anon_sym_REMOTE] = ACTIONS(2896), + [anon_sym_Return] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_RETURN] = ACTIONS(2896), + [anon_sym_Static] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_STATIC] = ACTIONS(2896), + [anon_sym_Switch] = ACTIONS(2896), + [anon_sym_switch] = ACTIONS(2896), + [anon_sym_SWITCH] = ACTIONS(2896), + [anon_sym_Throw] = ACTIONS(2896), + [anon_sym_throw] = ACTIONS(2896), + [anon_sym_THROW] = ACTIONS(2896), + [anon_sym_Try] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_TRY] = ACTIONS(2896), + [anon_sym_Var] = ACTIONS(2896), + [anon_sym_var] = ACTIONS(2896), + [anon_sym_VAR] = ACTIONS(2896), + [anon_sym_While] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_WHILE] = ACTIONS(2896), + [anon_sym_With] = ACTIONS(2896), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_WITH] = ACTIONS(2896), + [sym_cf_comment] = ACTIONS(2894), + [sym__java_block_open] = ACTIONS(2894), + [sym__static_type_prefix] = ACTIONS(2894), }, [STATE(635)] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_Query] = ACTIONS(2858), - [anon_sym_query] = ACTIONS(2858), - [anon_sym_QUERY] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_unary_operator_token1] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2858), - [aux_sym_number_token2] = ACTIONS(2856), - [anon_sym_This] = ACTIONS(2858), - [anon_sym_this] = ACTIONS(2858), - [anon_sym_THIS] = ACTIONS(2858), - [anon_sym_Super] = ACTIONS(2858), - [anon_sym_super] = ACTIONS(2858), - [anon_sym_SUPER] = ACTIONS(2858), - [anon_sym_True] = ACTIONS(2858), - [anon_sym_true] = ACTIONS(2858), - [anon_sym_TRUE] = ACTIONS(2858), - [anon_sym_False] = ACTIONS(2858), - [anon_sym_false] = ACTIONS(2858), - [anon_sym_FALSE] = ACTIONS(2858), - [anon_sym_Null] = ACTIONS(2858), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_NULL] = ACTIONS(2858), - [anon_sym_Undefined] = ACTIONS(2858), - [anon_sym_undefined] = ACTIONS(2858), - [anon_sym_UNDEFINED] = ACTIONS(2858), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [sym_hash_empty] = ACTIONS(2856), - [anon_sym_export] = ACTIONS(2858), - [anon_sym_QueryExecute] = ACTIONS(2858), - [anon_sym_queryexecute] = ACTIONS(2858), - [anon_sym_QUERYEXECUTE] = ACTIONS(2858), - [anon_sym_queryExecute] = ACTIONS(2858), - [anon_sym_BQUOTE] = ACTIONS(2858), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2856), - [anon_sym_Abstract] = ACTIONS(2858), - [anon_sym_abstract] = ACTIONS(2858), - [anon_sym_ABSTRACT] = ACTIONS(2858), - [anon_sym_Break] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_BREAK] = ACTIONS(2858), - [anon_sym_Case] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2858), - [anon_sym_CASE] = ACTIONS(2858), - [anon_sym_Component] = ACTIONS(2858), - [anon_sym_component] = ACTIONS(2858), - [anon_sym_COMPONENT] = ACTIONS(2858), - [anon_sym_Continue] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_CONTINUE] = ACTIONS(2858), - [anon_sym_Debugger] = ACTIONS(2858), - [anon_sym_debugger] = ACTIONS(2858), - [anon_sym_DEBUGGER] = ACTIONS(2858), - [anon_sym_Default] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2858), - [anon_sym_DEFAULT] = ACTIONS(2858), - [anon_sym_Do] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_DO] = ACTIONS(2858), - [anon_sym_Else] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_ELSE] = ACTIONS(2858), - [anon_sym_Final] = ACTIONS(2858), - [anon_sym_final] = ACTIONS(2858), - [anon_sym_FINAL] = ACTIONS(2858), - [anon_sym_For] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_FOR] = ACTIONS(2858), - [anon_sym_Function] = ACTIONS(2858), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_FUNCTION] = ACTIONS(2858), - [anon_sym_If] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_IF] = ACTIONS(2858), - [anon_sym_Import] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_IMPORT] = ACTIONS(2858), - [anon_sym_Include] = ACTIONS(2858), - [anon_sym_include] = ACTIONS(2858), - [anon_sym_INCLUDE] = ACTIONS(2858), - [anon_sym_Interface] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_INTERFACE] = ACTIONS(2858), - [anon_sym_New] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_NEW] = ACTIONS(2858), - [anon_sym_Package] = ACTIONS(2858), - [anon_sym_package] = ACTIONS(2858), - [anon_sym_PACKAGE] = ACTIONS(2858), - [anon_sym_Private] = ACTIONS(2858), - [anon_sym_private] = ACTIONS(2858), - [anon_sym_PRIVATE] = ACTIONS(2858), - [anon_sym_Property] = ACTIONS(2858), - [anon_sym_property] = ACTIONS(2858), - [anon_sym_PROPERTY] = ACTIONS(2858), - [anon_sym_Public] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_PUBLIC] = ACTIONS(2858), - [anon_sym_Remote] = ACTIONS(2858), - [anon_sym_remote] = ACTIONS(2858), - [anon_sym_REMOTE] = ACTIONS(2858), - [anon_sym_Return] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_RETURN] = ACTIONS(2858), - [anon_sym_Static] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_STATIC] = ACTIONS(2858), - [anon_sym_Switch] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2858), - [anon_sym_SWITCH] = ACTIONS(2858), - [anon_sym_Throw] = ACTIONS(2858), - [anon_sym_throw] = ACTIONS(2858), - [anon_sym_THROW] = ACTIONS(2858), - [anon_sym_Try] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_TRY] = ACTIONS(2858), - [anon_sym_Var] = ACTIONS(2858), - [anon_sym_var] = ACTIONS(2858), - [anon_sym_VAR] = ACTIONS(2858), - [anon_sym_While] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_WHILE] = ACTIONS(2858), - [anon_sym_With] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_WITH] = ACTIONS(2858), - [sym_cf_comment] = ACTIONS(2856), - [sym__java_block_open] = ACTIONS(2856), - [sym__static_type_prefix] = ACTIONS(2856), + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_Query] = ACTIONS(2900), + [anon_sym_query] = ACTIONS(2900), + [anon_sym_QUERY] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_unary_operator_token1] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2900), + [aux_sym_number_token2] = ACTIONS(2898), + [anon_sym_This] = ACTIONS(2900), + [anon_sym_this] = ACTIONS(2900), + [anon_sym_THIS] = ACTIONS(2900), + [anon_sym_Super] = ACTIONS(2900), + [anon_sym_super] = ACTIONS(2900), + [anon_sym_SUPER] = ACTIONS(2900), + [anon_sym_True] = ACTIONS(2900), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_TRUE] = ACTIONS(2900), + [anon_sym_False] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_FALSE] = ACTIONS(2900), + [anon_sym_Null] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_NULL] = ACTIONS(2900), + [anon_sym_Undefined] = ACTIONS(2900), + [anon_sym_undefined] = ACTIONS(2900), + [anon_sym_UNDEFINED] = ACTIONS(2900), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(2900), + [sym_hash_empty] = ACTIONS(2898), + [anon_sym_export] = ACTIONS(2900), + [anon_sym_QueryExecute] = ACTIONS(2900), + [anon_sym_queryexecute] = ACTIONS(2900), + [anon_sym_QUERYEXECUTE] = ACTIONS(2900), + [anon_sym_queryExecute] = ACTIONS(2900), + [anon_sym_BQUOTE] = ACTIONS(2900), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2898), + [anon_sym_Abstract] = ACTIONS(2900), + [anon_sym_abstract] = ACTIONS(2900), + [anon_sym_ABSTRACT] = ACTIONS(2900), + [anon_sym_Break] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_BREAK] = ACTIONS(2900), + [anon_sym_Case] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_CASE] = ACTIONS(2900), + [anon_sym_Component] = ACTIONS(2900), + [anon_sym_component] = ACTIONS(2900), + [anon_sym_COMPONENT] = ACTIONS(2900), + [anon_sym_Continue] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_CONTINUE] = ACTIONS(2900), + [anon_sym_Debugger] = ACTIONS(2900), + [anon_sym_debugger] = ACTIONS(2900), + [anon_sym_DEBUGGER] = ACTIONS(2900), + [anon_sym_Default] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_DEFAULT] = ACTIONS(2900), + [anon_sym_Do] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_DO] = ACTIONS(2900), + [anon_sym_Else] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_ELSE] = ACTIONS(2900), + [anon_sym_Final] = ACTIONS(2900), + [anon_sym_final] = ACTIONS(2900), + [anon_sym_FINAL] = ACTIONS(2900), + [anon_sym_For] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_FOR] = ACTIONS(2900), + [anon_sym_Function] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_FUNCTION] = ACTIONS(2900), + [anon_sym_If] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_IF] = ACTIONS(2900), + [anon_sym_Import] = ACTIONS(2900), + [anon_sym_import] = ACTIONS(2900), + [anon_sym_IMPORT] = ACTIONS(2900), + [anon_sym_Include] = ACTIONS(2900), + [anon_sym_include] = ACTIONS(2900), + [anon_sym_INCLUDE] = ACTIONS(2900), + [anon_sym_Interface] = ACTIONS(2900), + [anon_sym_interface] = ACTIONS(2900), + [anon_sym_INTERFACE] = ACTIONS(2900), + [anon_sym_New] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_NEW] = ACTIONS(2900), + [anon_sym_Package] = ACTIONS(2900), + [anon_sym_package] = ACTIONS(2900), + [anon_sym_PACKAGE] = ACTIONS(2900), + [anon_sym_Private] = ACTIONS(2900), + [anon_sym_private] = ACTIONS(2900), + [anon_sym_PRIVATE] = ACTIONS(2900), + [anon_sym_Property] = ACTIONS(2900), + [anon_sym_property] = ACTIONS(2900), + [anon_sym_PROPERTY] = ACTIONS(2900), + [anon_sym_Public] = ACTIONS(2900), + [anon_sym_public] = ACTIONS(2900), + [anon_sym_PUBLIC] = ACTIONS(2900), + [anon_sym_Remote] = ACTIONS(2900), + [anon_sym_remote] = ACTIONS(2900), + [anon_sym_REMOTE] = ACTIONS(2900), + [anon_sym_Return] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_RETURN] = ACTIONS(2900), + [anon_sym_Static] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_STATIC] = ACTIONS(2900), + [anon_sym_Switch] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_SWITCH] = ACTIONS(2900), + [anon_sym_Throw] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_THROW] = ACTIONS(2900), + [anon_sym_Try] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_TRY] = ACTIONS(2900), + [anon_sym_Var] = ACTIONS(2900), + [anon_sym_var] = ACTIONS(2900), + [anon_sym_VAR] = ACTIONS(2900), + [anon_sym_While] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_WHILE] = ACTIONS(2900), + [anon_sym_With] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_WITH] = ACTIONS(2900), + [sym_cf_comment] = ACTIONS(2898), + [sym__java_block_open] = ACTIONS(2898), + [sym__static_type_prefix] = ACTIONS(2898), }, [STATE(636)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_Query] = ACTIONS(2284), - [anon_sym_query] = ACTIONS(2284), - [anon_sym_QUERY] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2286), - [aux_sym_unary_operator_token1] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2284), - [aux_sym_number_token2] = ACTIONS(2284), - [anon_sym_This] = ACTIONS(2284), - [anon_sym_this] = ACTIONS(2284), - [anon_sym_THIS] = ACTIONS(2284), - [anon_sym_Super] = ACTIONS(2284), - [anon_sym_super] = ACTIONS(2284), - [anon_sym_SUPER] = ACTIONS(2284), - [anon_sym_True] = ACTIONS(2284), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_TRUE] = ACTIONS(2284), - [anon_sym_False] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_FALSE] = ACTIONS(2284), - [anon_sym_Null] = ACTIONS(2284), - [anon_sym_null] = ACTIONS(2284), - [anon_sym_NULL] = ACTIONS(2284), - [anon_sym_Undefined] = ACTIONS(2284), - [anon_sym_undefined] = ACTIONS(2284), - [anon_sym_UNDEFINED] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2284), - [sym_hash_empty] = ACTIONS(2286), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_QueryExecute] = ACTIONS(2284), - [anon_sym_queryexecute] = ACTIONS(2284), - [anon_sym_QUERYEXECUTE] = ACTIONS(2284), - [anon_sym_queryExecute] = ACTIONS(2284), - [anon_sym_BQUOTE] = ACTIONS(2286), - [anon_sym_Abstract] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_ABSTRACT] = ACTIONS(2284), - [anon_sym_Component] = ACTIONS(2284), - [anon_sym_component] = ACTIONS(2284), - [anon_sym_COMPONENT] = ACTIONS(2284), - [anon_sym_Debugger] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_DEBUGGER] = ACTIONS(2284), - [anon_sym_Final] = ACTIONS(2284), - [anon_sym_final] = ACTIONS(2284), - [anon_sym_FINAL] = ACTIONS(2284), - [anon_sym_Function] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_FUNCTION] = ACTIONS(2284), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_Include] = ACTIONS(2284), - [anon_sym_include] = ACTIONS(2284), - [anon_sym_INCLUDE] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [anon_sym_New] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_NEW] = ACTIONS(2284), - [anon_sym_Package] = ACTIONS(2284), - [anon_sym_package] = ACTIONS(2284), - [anon_sym_PACKAGE] = ACTIONS(2284), - [anon_sym_Private] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_PRIVATE] = ACTIONS(2284), - [anon_sym_Public] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_PUBLIC] = ACTIONS(2284), - [anon_sym_Remote] = ACTIONS(2284), - [anon_sym_remote] = ACTIONS(2284), - [anon_sym_REMOTE] = ACTIONS(2284), - [anon_sym_Static] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_STATIC] = ACTIONS(2284), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym__java_block_open] = ACTIONS(2286), - [sym__static_type_prefix] = ACTIONS(2286), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_Query] = ACTIONS(2201), + [anon_sym_query] = ACTIONS(2201), + [anon_sym_QUERY] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [aux_sym_unary_operator_token1] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2201), + [aux_sym_number_token2] = ACTIONS(2199), + [anon_sym_This] = ACTIONS(2201), + [anon_sym_this] = ACTIONS(2201), + [anon_sym_THIS] = ACTIONS(2201), + [anon_sym_Super] = ACTIONS(2201), + [anon_sym_super] = ACTIONS(2201), + [anon_sym_SUPER] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [anon_sym_Undefined] = ACTIONS(2201), + [anon_sym_undefined] = ACTIONS(2201), + [anon_sym_UNDEFINED] = ACTIONS(2201), + [anon_sym_get] = ACTIONS(2201), + [anon_sym_set] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [sym_hash_empty] = ACTIONS(2199), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_QueryExecute] = ACTIONS(2201), + [anon_sym_queryexecute] = ACTIONS(2201), + [anon_sym_QUERYEXECUTE] = ACTIONS(2201), + [anon_sym_queryExecute] = ACTIONS(2201), + [anon_sym_BQUOTE] = ACTIONS(2201), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2199), + [anon_sym_Abstract] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_ABSTRACT] = ACTIONS(2201), + [anon_sym_Break] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_BREAK] = ACTIONS(2201), + [anon_sym_Case] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(2201), + [anon_sym_CASE] = ACTIONS(2201), + [anon_sym_Component] = ACTIONS(2201), + [anon_sym_component] = ACTIONS(2201), + [anon_sym_COMPONENT] = ACTIONS(2201), + [anon_sym_Continue] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_CONTINUE] = ACTIONS(2201), + [anon_sym_Debugger] = ACTIONS(2201), + [anon_sym_debugger] = ACTIONS(2201), + [anon_sym_DEBUGGER] = ACTIONS(2201), + [anon_sym_Default] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_DEFAULT] = ACTIONS(2201), + [anon_sym_Do] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_DO] = ACTIONS(2201), + [anon_sym_Else] = ACTIONS(2201), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_ELSE] = ACTIONS(2201), + [anon_sym_Final] = ACTIONS(2201), + [anon_sym_final] = ACTIONS(2201), + [anon_sym_FINAL] = ACTIONS(2201), + [anon_sym_For] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_FOR] = ACTIONS(2201), + [anon_sym_Function] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_FUNCTION] = ACTIONS(2201), + [anon_sym_If] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_IF] = ACTIONS(2201), + [anon_sym_Import] = ACTIONS(2201), + [anon_sym_import] = ACTIONS(2201), + [anon_sym_IMPORT] = ACTIONS(2201), + [anon_sym_Include] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_INCLUDE] = ACTIONS(2201), + [anon_sym_Interface] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_INTERFACE] = ACTIONS(2201), + [anon_sym_New] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_NEW] = ACTIONS(2201), + [anon_sym_Package] = ACTIONS(2201), + [anon_sym_package] = ACTIONS(2201), + [anon_sym_PACKAGE] = ACTIONS(2201), + [anon_sym_Private] = ACTIONS(2201), + [anon_sym_private] = ACTIONS(2201), + [anon_sym_PRIVATE] = ACTIONS(2201), + [anon_sym_Property] = ACTIONS(2201), + [anon_sym_property] = ACTIONS(2201), + [anon_sym_PROPERTY] = ACTIONS(2201), + [anon_sym_Public] = ACTIONS(2201), + [anon_sym_public] = ACTIONS(2201), + [anon_sym_PUBLIC] = ACTIONS(2201), + [anon_sym_Remote] = ACTIONS(2201), + [anon_sym_remote] = ACTIONS(2201), + [anon_sym_REMOTE] = ACTIONS(2201), + [anon_sym_Return] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_RETURN] = ACTIONS(2201), + [anon_sym_Static] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_STATIC] = ACTIONS(2201), + [anon_sym_Switch] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_SWITCH] = ACTIONS(2201), + [anon_sym_Throw] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_THROW] = ACTIONS(2201), + [anon_sym_Try] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_TRY] = ACTIONS(2201), + [anon_sym_Var] = ACTIONS(2201), + [anon_sym_var] = ACTIONS(2201), + [anon_sym_VAR] = ACTIONS(2201), + [anon_sym_While] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_WHILE] = ACTIONS(2201), + [anon_sym_With] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2201), + [anon_sym_WITH] = ACTIONS(2201), + [sym_cf_comment] = ACTIONS(2199), + [sym__java_block_open] = ACTIONS(2199), + [sym__static_type_prefix] = ACTIONS(2199), }, [STATE(637)] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_Query] = ACTIONS(2862), - [anon_sym_query] = ACTIONS(2862), - [anon_sym_QUERY] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_unary_operator_token1] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2862), - [aux_sym_number_token2] = ACTIONS(2860), - [anon_sym_This] = ACTIONS(2862), - [anon_sym_this] = ACTIONS(2862), - [anon_sym_THIS] = ACTIONS(2862), - [anon_sym_Super] = ACTIONS(2862), - [anon_sym_super] = ACTIONS(2862), - [anon_sym_SUPER] = ACTIONS(2862), - [anon_sym_True] = ACTIONS(2862), - [anon_sym_true] = ACTIONS(2862), - [anon_sym_TRUE] = ACTIONS(2862), - [anon_sym_False] = ACTIONS(2862), - [anon_sym_false] = ACTIONS(2862), - [anon_sym_FALSE] = ACTIONS(2862), - [anon_sym_Null] = ACTIONS(2862), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_NULL] = ACTIONS(2862), - [anon_sym_Undefined] = ACTIONS(2862), - [anon_sym_undefined] = ACTIONS(2862), - [anon_sym_UNDEFINED] = ACTIONS(2862), - [anon_sym_get] = ACTIONS(2862), - [anon_sym_set] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [sym_hash_empty] = ACTIONS(2860), - [anon_sym_export] = ACTIONS(2862), - [anon_sym_QueryExecute] = ACTIONS(2862), - [anon_sym_queryexecute] = ACTIONS(2862), - [anon_sym_QUERYEXECUTE] = ACTIONS(2862), - [anon_sym_queryExecute] = ACTIONS(2862), - [anon_sym_BQUOTE] = ACTIONS(2862), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2860), - [anon_sym_Abstract] = ACTIONS(2862), - [anon_sym_abstract] = ACTIONS(2862), - [anon_sym_ABSTRACT] = ACTIONS(2862), - [anon_sym_Break] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_BREAK] = ACTIONS(2862), - [anon_sym_Case] = ACTIONS(2862), - [anon_sym_case] = ACTIONS(2862), - [anon_sym_CASE] = ACTIONS(2862), - [anon_sym_Component] = ACTIONS(2862), - [anon_sym_component] = ACTIONS(2862), - [anon_sym_COMPONENT] = ACTIONS(2862), - [anon_sym_Continue] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_CONTINUE] = ACTIONS(2862), - [anon_sym_Debugger] = ACTIONS(2862), - [anon_sym_debugger] = ACTIONS(2862), - [anon_sym_DEBUGGER] = ACTIONS(2862), - [anon_sym_Default] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2862), - [anon_sym_DEFAULT] = ACTIONS(2862), - [anon_sym_Do] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_DO] = ACTIONS(2862), - [anon_sym_Else] = ACTIONS(2862), - [anon_sym_else] = ACTIONS(2862), - [anon_sym_ELSE] = ACTIONS(2862), - [anon_sym_Final] = ACTIONS(2862), - [anon_sym_final] = ACTIONS(2862), - [anon_sym_FINAL] = ACTIONS(2862), - [anon_sym_For] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_FOR] = ACTIONS(2862), - [anon_sym_Function] = ACTIONS(2862), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_FUNCTION] = ACTIONS(2862), - [anon_sym_If] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_IF] = ACTIONS(2862), - [anon_sym_Import] = ACTIONS(2862), - [anon_sym_import] = ACTIONS(2862), - [anon_sym_IMPORT] = ACTIONS(2862), - [anon_sym_Include] = ACTIONS(2862), - [anon_sym_include] = ACTIONS(2862), - [anon_sym_INCLUDE] = ACTIONS(2862), - [anon_sym_Interface] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_INTERFACE] = ACTIONS(2862), - [anon_sym_New] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_NEW] = ACTIONS(2862), - [anon_sym_Package] = ACTIONS(2862), - [anon_sym_package] = ACTIONS(2862), - [anon_sym_PACKAGE] = ACTIONS(2862), - [anon_sym_Private] = ACTIONS(2862), - [anon_sym_private] = ACTIONS(2862), - [anon_sym_PRIVATE] = ACTIONS(2862), - [anon_sym_Property] = ACTIONS(2862), - [anon_sym_property] = ACTIONS(2862), - [anon_sym_PROPERTY] = ACTIONS(2862), - [anon_sym_Public] = ACTIONS(2862), - [anon_sym_public] = ACTIONS(2862), - [anon_sym_PUBLIC] = ACTIONS(2862), - [anon_sym_Remote] = ACTIONS(2862), - [anon_sym_remote] = ACTIONS(2862), - [anon_sym_REMOTE] = ACTIONS(2862), - [anon_sym_Return] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_RETURN] = ACTIONS(2862), - [anon_sym_Static] = ACTIONS(2862), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_STATIC] = ACTIONS(2862), - [anon_sym_Switch] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2862), - [anon_sym_SWITCH] = ACTIONS(2862), - [anon_sym_Throw] = ACTIONS(2862), - [anon_sym_throw] = ACTIONS(2862), - [anon_sym_THROW] = ACTIONS(2862), - [anon_sym_Try] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_TRY] = ACTIONS(2862), - [anon_sym_Var] = ACTIONS(2862), - [anon_sym_var] = ACTIONS(2862), - [anon_sym_VAR] = ACTIONS(2862), - [anon_sym_While] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_WHILE] = ACTIONS(2862), - [anon_sym_With] = ACTIONS(2862), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_WITH] = ACTIONS(2862), - [sym_cf_comment] = ACTIONS(2860), - [sym__java_block_open] = ACTIONS(2860), - [sym__static_type_prefix] = ACTIONS(2860), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_Query] = ACTIONS(2904), + [anon_sym_query] = ACTIONS(2904), + [anon_sym_QUERY] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_unary_operator_token1] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2904), + [aux_sym_number_token2] = ACTIONS(2902), + [anon_sym_This] = ACTIONS(2904), + [anon_sym_this] = ACTIONS(2904), + [anon_sym_THIS] = ACTIONS(2904), + [anon_sym_Super] = ACTIONS(2904), + [anon_sym_super] = ACTIONS(2904), + [anon_sym_SUPER] = ACTIONS(2904), + [anon_sym_True] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2904), + [anon_sym_TRUE] = ACTIONS(2904), + [anon_sym_False] = ACTIONS(2904), + [anon_sym_false] = ACTIONS(2904), + [anon_sym_FALSE] = ACTIONS(2904), + [anon_sym_Null] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_Undefined] = ACTIONS(2904), + [anon_sym_undefined] = ACTIONS(2904), + [anon_sym_UNDEFINED] = ACTIONS(2904), + [anon_sym_get] = ACTIONS(2904), + [anon_sym_set] = ACTIONS(2904), + [anon_sym_POUND] = ACTIONS(2904), + [sym_hash_empty] = ACTIONS(2902), + [anon_sym_export] = ACTIONS(2904), + [anon_sym_QueryExecute] = ACTIONS(2904), + [anon_sym_queryexecute] = ACTIONS(2904), + [anon_sym_QUERYEXECUTE] = ACTIONS(2904), + [anon_sym_queryExecute] = ACTIONS(2904), + [anon_sym_BQUOTE] = ACTIONS(2904), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2902), + [anon_sym_Abstract] = ACTIONS(2904), + [anon_sym_abstract] = ACTIONS(2904), + [anon_sym_ABSTRACT] = ACTIONS(2904), + [anon_sym_Break] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_BREAK] = ACTIONS(2904), + [anon_sym_Case] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_CASE] = ACTIONS(2904), + [anon_sym_Component] = ACTIONS(2904), + [anon_sym_component] = ACTIONS(2904), + [anon_sym_COMPONENT] = ACTIONS(2904), + [anon_sym_Continue] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_CONTINUE] = ACTIONS(2904), + [anon_sym_Debugger] = ACTIONS(2904), + [anon_sym_debugger] = ACTIONS(2904), + [anon_sym_DEBUGGER] = ACTIONS(2904), + [anon_sym_Default] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_DEFAULT] = ACTIONS(2904), + [anon_sym_Do] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_DO] = ACTIONS(2904), + [anon_sym_Else] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_ELSE] = ACTIONS(2904), + [anon_sym_Final] = ACTIONS(2904), + [anon_sym_final] = ACTIONS(2904), + [anon_sym_FINAL] = ACTIONS(2904), + [anon_sym_For] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_FOR] = ACTIONS(2904), + [anon_sym_Function] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_FUNCTION] = ACTIONS(2904), + [anon_sym_If] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_IF] = ACTIONS(2904), + [anon_sym_Import] = ACTIONS(2904), + [anon_sym_import] = ACTIONS(2904), + [anon_sym_IMPORT] = ACTIONS(2904), + [anon_sym_Include] = ACTIONS(2904), + [anon_sym_include] = ACTIONS(2904), + [anon_sym_INCLUDE] = ACTIONS(2904), + [anon_sym_Interface] = ACTIONS(2904), + [anon_sym_interface] = ACTIONS(2904), + [anon_sym_INTERFACE] = ACTIONS(2904), + [anon_sym_New] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_NEW] = ACTIONS(2904), + [anon_sym_Package] = ACTIONS(2904), + [anon_sym_package] = ACTIONS(2904), + [anon_sym_PACKAGE] = ACTIONS(2904), + [anon_sym_Private] = ACTIONS(2904), + [anon_sym_private] = ACTIONS(2904), + [anon_sym_PRIVATE] = ACTIONS(2904), + [anon_sym_Property] = ACTIONS(2904), + [anon_sym_property] = ACTIONS(2904), + [anon_sym_PROPERTY] = ACTIONS(2904), + [anon_sym_Public] = ACTIONS(2904), + [anon_sym_public] = ACTIONS(2904), + [anon_sym_PUBLIC] = ACTIONS(2904), + [anon_sym_Remote] = ACTIONS(2904), + [anon_sym_remote] = ACTIONS(2904), + [anon_sym_REMOTE] = ACTIONS(2904), + [anon_sym_Return] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_RETURN] = ACTIONS(2904), + [anon_sym_Static] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_STATIC] = ACTIONS(2904), + [anon_sym_Switch] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_SWITCH] = ACTIONS(2904), + [anon_sym_Throw] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_THROW] = ACTIONS(2904), + [anon_sym_Try] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_TRY] = ACTIONS(2904), + [anon_sym_Var] = ACTIONS(2904), + [anon_sym_var] = ACTIONS(2904), + [anon_sym_VAR] = ACTIONS(2904), + [anon_sym_While] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_WHILE] = ACTIONS(2904), + [anon_sym_With] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_WITH] = ACTIONS(2904), + [sym_cf_comment] = ACTIONS(2902), + [sym__java_block_open] = ACTIONS(2902), + [sym__static_type_prefix] = ACTIONS(2902), }, [STATE(638)] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2864), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_Query] = ACTIONS(2866), - [anon_sym_query] = ACTIONS(2866), - [anon_sym_QUERY] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_unary_operator_token1] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2866), - [aux_sym_number_token2] = ACTIONS(2864), - [anon_sym_This] = ACTIONS(2866), - [anon_sym_this] = ACTIONS(2866), - [anon_sym_THIS] = ACTIONS(2866), - [anon_sym_Super] = ACTIONS(2866), - [anon_sym_super] = ACTIONS(2866), - [anon_sym_SUPER] = ACTIONS(2866), - [anon_sym_True] = ACTIONS(2866), - [anon_sym_true] = ACTIONS(2866), - [anon_sym_TRUE] = ACTIONS(2866), - [anon_sym_False] = ACTIONS(2866), - [anon_sym_false] = ACTIONS(2866), - [anon_sym_FALSE] = ACTIONS(2866), - [anon_sym_Null] = ACTIONS(2866), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_NULL] = ACTIONS(2866), - [anon_sym_Undefined] = ACTIONS(2866), - [anon_sym_undefined] = ACTIONS(2866), - [anon_sym_UNDEFINED] = ACTIONS(2866), - [anon_sym_get] = ACTIONS(2866), - [anon_sym_set] = ACTIONS(2866), - [anon_sym_POUND] = ACTIONS(2866), - [sym_hash_empty] = ACTIONS(2864), - [anon_sym_export] = ACTIONS(2866), - [anon_sym_QueryExecute] = ACTIONS(2866), - [anon_sym_queryexecute] = ACTIONS(2866), - [anon_sym_QUERYEXECUTE] = ACTIONS(2866), - [anon_sym_queryExecute] = ACTIONS(2866), - [anon_sym_BQUOTE] = ACTIONS(2866), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2864), - [anon_sym_Abstract] = ACTIONS(2866), - [anon_sym_abstract] = ACTIONS(2866), - [anon_sym_ABSTRACT] = ACTIONS(2866), - [anon_sym_Break] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_BREAK] = ACTIONS(2866), - [anon_sym_Case] = ACTIONS(2866), - [anon_sym_case] = ACTIONS(2866), - [anon_sym_CASE] = ACTIONS(2866), - [anon_sym_Component] = ACTIONS(2866), - [anon_sym_component] = ACTIONS(2866), - [anon_sym_COMPONENT] = ACTIONS(2866), - [anon_sym_Continue] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_CONTINUE] = ACTIONS(2866), - [anon_sym_Debugger] = ACTIONS(2866), - [anon_sym_debugger] = ACTIONS(2866), - [anon_sym_DEBUGGER] = ACTIONS(2866), - [anon_sym_Default] = ACTIONS(2866), - [anon_sym_default] = ACTIONS(2866), - [anon_sym_DEFAULT] = ACTIONS(2866), - [anon_sym_Do] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_DO] = ACTIONS(2866), - [anon_sym_Else] = ACTIONS(2866), - [anon_sym_else] = ACTIONS(2866), - [anon_sym_ELSE] = ACTIONS(2866), - [anon_sym_Final] = ACTIONS(2866), - [anon_sym_final] = ACTIONS(2866), - [anon_sym_FINAL] = ACTIONS(2866), - [anon_sym_For] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_FOR] = ACTIONS(2866), - [anon_sym_Function] = ACTIONS(2866), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_FUNCTION] = ACTIONS(2866), - [anon_sym_If] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_IF] = ACTIONS(2866), - [anon_sym_Import] = ACTIONS(2866), - [anon_sym_import] = ACTIONS(2866), - [anon_sym_IMPORT] = ACTIONS(2866), - [anon_sym_Include] = ACTIONS(2866), - [anon_sym_include] = ACTIONS(2866), - [anon_sym_INCLUDE] = ACTIONS(2866), - [anon_sym_Interface] = ACTIONS(2866), - [anon_sym_interface] = ACTIONS(2866), - [anon_sym_INTERFACE] = ACTIONS(2866), - [anon_sym_New] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_NEW] = ACTIONS(2866), - [anon_sym_Package] = ACTIONS(2866), - [anon_sym_package] = ACTIONS(2866), - [anon_sym_PACKAGE] = ACTIONS(2866), - [anon_sym_Private] = ACTIONS(2866), - [anon_sym_private] = ACTIONS(2866), - [anon_sym_PRIVATE] = ACTIONS(2866), - [anon_sym_Property] = ACTIONS(2866), - [anon_sym_property] = ACTIONS(2866), - [anon_sym_PROPERTY] = ACTIONS(2866), - [anon_sym_Public] = ACTIONS(2866), - [anon_sym_public] = ACTIONS(2866), - [anon_sym_PUBLIC] = ACTIONS(2866), - [anon_sym_Remote] = ACTIONS(2866), - [anon_sym_remote] = ACTIONS(2866), - [anon_sym_REMOTE] = ACTIONS(2866), - [anon_sym_Return] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_RETURN] = ACTIONS(2866), - [anon_sym_Static] = ACTIONS(2866), - [anon_sym_static] = ACTIONS(2866), - [anon_sym_STATIC] = ACTIONS(2866), - [anon_sym_Switch] = ACTIONS(2866), - [anon_sym_switch] = ACTIONS(2866), - [anon_sym_SWITCH] = ACTIONS(2866), - [anon_sym_Throw] = ACTIONS(2866), - [anon_sym_throw] = ACTIONS(2866), - [anon_sym_THROW] = ACTIONS(2866), - [anon_sym_Try] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_TRY] = ACTIONS(2866), - [anon_sym_Var] = ACTIONS(2866), - [anon_sym_var] = ACTIONS(2866), - [anon_sym_VAR] = ACTIONS(2866), - [anon_sym_While] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_WHILE] = ACTIONS(2866), - [anon_sym_With] = ACTIONS(2866), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_WITH] = ACTIONS(2866), - [sym_cf_comment] = ACTIONS(2864), - [sym__java_block_open] = ACTIONS(2864), - [sym__static_type_prefix] = ACTIONS(2864), + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_Query] = ACTIONS(2908), + [anon_sym_query] = ACTIONS(2908), + [anon_sym_QUERY] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_unary_operator_token1] = ACTIONS(2908), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2908), + [aux_sym_number_token2] = ACTIONS(2906), + [anon_sym_This] = ACTIONS(2908), + [anon_sym_this] = ACTIONS(2908), + [anon_sym_THIS] = ACTIONS(2908), + [anon_sym_Super] = ACTIONS(2908), + [anon_sym_super] = ACTIONS(2908), + [anon_sym_SUPER] = ACTIONS(2908), + [anon_sym_True] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2908), + [anon_sym_TRUE] = ACTIONS(2908), + [anon_sym_False] = ACTIONS(2908), + [anon_sym_false] = ACTIONS(2908), + [anon_sym_FALSE] = ACTIONS(2908), + [anon_sym_Null] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_Undefined] = ACTIONS(2908), + [anon_sym_undefined] = ACTIONS(2908), + [anon_sym_UNDEFINED] = ACTIONS(2908), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_POUND] = ACTIONS(2908), + [sym_hash_empty] = ACTIONS(2906), + [anon_sym_export] = ACTIONS(2908), + [anon_sym_QueryExecute] = ACTIONS(2908), + [anon_sym_queryexecute] = ACTIONS(2908), + [anon_sym_QUERYEXECUTE] = ACTIONS(2908), + [anon_sym_queryExecute] = ACTIONS(2908), + [anon_sym_BQUOTE] = ACTIONS(2908), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2906), + [anon_sym_Abstract] = ACTIONS(2908), + [anon_sym_abstract] = ACTIONS(2908), + [anon_sym_ABSTRACT] = ACTIONS(2908), + [anon_sym_Break] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_BREAK] = ACTIONS(2908), + [anon_sym_Case] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_CASE] = ACTIONS(2908), + [anon_sym_Component] = ACTIONS(2908), + [anon_sym_component] = ACTIONS(2908), + [anon_sym_COMPONENT] = ACTIONS(2908), + [anon_sym_Continue] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_CONTINUE] = ACTIONS(2908), + [anon_sym_Debugger] = ACTIONS(2908), + [anon_sym_debugger] = ACTIONS(2908), + [anon_sym_DEBUGGER] = ACTIONS(2908), + [anon_sym_Default] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_DEFAULT] = ACTIONS(2908), + [anon_sym_Do] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_DO] = ACTIONS(2908), + [anon_sym_Else] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_ELSE] = ACTIONS(2908), + [anon_sym_Final] = ACTIONS(2908), + [anon_sym_final] = ACTIONS(2908), + [anon_sym_FINAL] = ACTIONS(2908), + [anon_sym_For] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_FOR] = ACTIONS(2908), + [anon_sym_Function] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_FUNCTION] = ACTIONS(2908), + [anon_sym_If] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_IF] = ACTIONS(2908), + [anon_sym_Import] = ACTIONS(2908), + [anon_sym_import] = ACTIONS(2908), + [anon_sym_IMPORT] = ACTIONS(2908), + [anon_sym_Include] = ACTIONS(2908), + [anon_sym_include] = ACTIONS(2908), + [anon_sym_INCLUDE] = ACTIONS(2908), + [anon_sym_Interface] = ACTIONS(2908), + [anon_sym_interface] = ACTIONS(2908), + [anon_sym_INTERFACE] = ACTIONS(2908), + [anon_sym_New] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_NEW] = ACTIONS(2908), + [anon_sym_Package] = ACTIONS(2908), + [anon_sym_package] = ACTIONS(2908), + [anon_sym_PACKAGE] = ACTIONS(2908), + [anon_sym_Private] = ACTIONS(2908), + [anon_sym_private] = ACTIONS(2908), + [anon_sym_PRIVATE] = ACTIONS(2908), + [anon_sym_Property] = ACTIONS(2908), + [anon_sym_property] = ACTIONS(2908), + [anon_sym_PROPERTY] = ACTIONS(2908), + [anon_sym_Public] = ACTIONS(2908), + [anon_sym_public] = ACTIONS(2908), + [anon_sym_PUBLIC] = ACTIONS(2908), + [anon_sym_Remote] = ACTIONS(2908), + [anon_sym_remote] = ACTIONS(2908), + [anon_sym_REMOTE] = ACTIONS(2908), + [anon_sym_Return] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_RETURN] = ACTIONS(2908), + [anon_sym_Static] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_STATIC] = ACTIONS(2908), + [anon_sym_Switch] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_SWITCH] = ACTIONS(2908), + [anon_sym_Throw] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_THROW] = ACTIONS(2908), + [anon_sym_Try] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_TRY] = ACTIONS(2908), + [anon_sym_Var] = ACTIONS(2908), + [anon_sym_var] = ACTIONS(2908), + [anon_sym_VAR] = ACTIONS(2908), + [anon_sym_While] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_WHILE] = ACTIONS(2908), + [anon_sym_With] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_WITH] = ACTIONS(2908), + [sym_cf_comment] = ACTIONS(2906), + [sym__java_block_open] = ACTIONS(2906), + [sym__static_type_prefix] = ACTIONS(2906), }, [STATE(639)] = { - [sym_arguments] = STATE(621), - [sym_identifier] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_Query] = ACTIONS(2230), - [anon_sym_query] = ACTIONS(2230), - [anon_sym_QUERY] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2233), - [aux_sym_unary_operator_token1] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2230), - [aux_sym_number_token2] = ACTIONS(2230), - [anon_sym_This] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2230), - [anon_sym_THIS] = ACTIONS(2230), - [anon_sym_Super] = ACTIONS(2230), - [anon_sym_super] = ACTIONS(2230), - [anon_sym_SUPER] = ACTIONS(2230), - [anon_sym_True] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_TRUE] = ACTIONS(2230), - [anon_sym_False] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [anon_sym_FALSE] = ACTIONS(2230), - [anon_sym_Null] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2230), - [anon_sym_NULL] = ACTIONS(2230), - [anon_sym_Undefined] = ACTIONS(2230), - [anon_sym_undefined] = ACTIONS(2230), - [anon_sym_UNDEFINED] = ACTIONS(2230), - [anon_sym_get] = ACTIONS(2230), - [anon_sym_set] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [sym_hash_empty] = ACTIONS(2233), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_QueryExecute] = ACTIONS(2230), - [anon_sym_queryexecute] = ACTIONS(2230), - [anon_sym_QUERYEXECUTE] = ACTIONS(2230), - [anon_sym_queryExecute] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2233), - [anon_sym_Abstract] = ACTIONS(2230), - [anon_sym_abstract] = ACTIONS(2230), - [anon_sym_ABSTRACT] = ACTIONS(2230), - [anon_sym_Component] = ACTIONS(2230), - [anon_sym_component] = ACTIONS(2230), - [anon_sym_COMPONENT] = ACTIONS(2230), - [anon_sym_Debugger] = ACTIONS(2230), - [anon_sym_debugger] = ACTIONS(2230), - [anon_sym_DEBUGGER] = ACTIONS(2230), - [anon_sym_Final] = ACTIONS(2230), - [anon_sym_final] = ACTIONS(2230), - [anon_sym_FINAL] = ACTIONS(2230), - [anon_sym_Function] = ACTIONS(2230), - [anon_sym_function] = ACTIONS(2230), - [anon_sym_FUNCTION] = ACTIONS(2230), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_Include] = ACTIONS(2230), - [anon_sym_include] = ACTIONS(2230), - [anon_sym_INCLUDE] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_INSTANCEOF] = ACTIONS(2230), - [anon_sym_instanceOf] = ACTIONS(2230), - [anon_sym_New] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_NEW] = ACTIONS(2230), - [anon_sym_Package] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2230), - [anon_sym_PACKAGE] = ACTIONS(2230), - [anon_sym_Private] = ACTIONS(2230), - [anon_sym_private] = ACTIONS(2230), - [anon_sym_PRIVATE] = ACTIONS(2230), - [anon_sym_Public] = ACTIONS(2230), - [anon_sym_public] = ACTIONS(2230), - [anon_sym_PUBLIC] = ACTIONS(2230), - [anon_sym_Remote] = ACTIONS(2230), - [anon_sym_remote] = ACTIONS(2230), - [anon_sym_REMOTE] = ACTIONS(2230), - [anon_sym_Static] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_STATIC] = ACTIONS(2230), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), - [sym__java_block_open] = ACTIONS(2233), - [sym__static_type_prefix] = ACTIONS(2233), + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_Query] = ACTIONS(2912), + [anon_sym_query] = ACTIONS(2912), + [anon_sym_QUERY] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_unary_operator_token1] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2912), + [aux_sym_number_token2] = ACTIONS(2910), + [anon_sym_This] = ACTIONS(2912), + [anon_sym_this] = ACTIONS(2912), + [anon_sym_THIS] = ACTIONS(2912), + [anon_sym_Super] = ACTIONS(2912), + [anon_sym_super] = ACTIONS(2912), + [anon_sym_SUPER] = ACTIONS(2912), + [anon_sym_True] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2912), + [anon_sym_TRUE] = ACTIONS(2912), + [anon_sym_False] = ACTIONS(2912), + [anon_sym_false] = ACTIONS(2912), + [anon_sym_FALSE] = ACTIONS(2912), + [anon_sym_Null] = ACTIONS(2912), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_Undefined] = ACTIONS(2912), + [anon_sym_undefined] = ACTIONS(2912), + [anon_sym_UNDEFINED] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2912), + [anon_sym_set] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2912), + [sym_hash_empty] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_QueryExecute] = ACTIONS(2912), + [anon_sym_queryexecute] = ACTIONS(2912), + [anon_sym_QUERYEXECUTE] = ACTIONS(2912), + [anon_sym_queryExecute] = ACTIONS(2912), + [anon_sym_BQUOTE] = ACTIONS(2912), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2910), + [anon_sym_Abstract] = ACTIONS(2912), + [anon_sym_abstract] = ACTIONS(2912), + [anon_sym_ABSTRACT] = ACTIONS(2912), + [anon_sym_Break] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_BREAK] = ACTIONS(2912), + [anon_sym_Case] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2912), + [anon_sym_CASE] = ACTIONS(2912), + [anon_sym_Component] = ACTIONS(2912), + [anon_sym_component] = ACTIONS(2912), + [anon_sym_COMPONENT] = ACTIONS(2912), + [anon_sym_Continue] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_CONTINUE] = ACTIONS(2912), + [anon_sym_Debugger] = ACTIONS(2912), + [anon_sym_debugger] = ACTIONS(2912), + [anon_sym_DEBUGGER] = ACTIONS(2912), + [anon_sym_Default] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_DEFAULT] = ACTIONS(2912), + [anon_sym_Do] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_DO] = ACTIONS(2912), + [anon_sym_Else] = ACTIONS(2912), + [anon_sym_else] = ACTIONS(2912), + [anon_sym_ELSE] = ACTIONS(2912), + [anon_sym_Final] = ACTIONS(2912), + [anon_sym_final] = ACTIONS(2912), + [anon_sym_FINAL] = ACTIONS(2912), + [anon_sym_For] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_FOR] = ACTIONS(2912), + [anon_sym_Function] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_FUNCTION] = ACTIONS(2912), + [anon_sym_If] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_IF] = ACTIONS(2912), + [anon_sym_Import] = ACTIONS(2912), + [anon_sym_import] = ACTIONS(2912), + [anon_sym_IMPORT] = ACTIONS(2912), + [anon_sym_Include] = ACTIONS(2912), + [anon_sym_include] = ACTIONS(2912), + [anon_sym_INCLUDE] = ACTIONS(2912), + [anon_sym_Interface] = ACTIONS(2912), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_INTERFACE] = ACTIONS(2912), + [anon_sym_New] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_NEW] = ACTIONS(2912), + [anon_sym_Package] = ACTIONS(2912), + [anon_sym_package] = ACTIONS(2912), + [anon_sym_PACKAGE] = ACTIONS(2912), + [anon_sym_Private] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_PRIVATE] = ACTIONS(2912), + [anon_sym_Property] = ACTIONS(2912), + [anon_sym_property] = ACTIONS(2912), + [anon_sym_PROPERTY] = ACTIONS(2912), + [anon_sym_Public] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_PUBLIC] = ACTIONS(2912), + [anon_sym_Remote] = ACTIONS(2912), + [anon_sym_remote] = ACTIONS(2912), + [anon_sym_REMOTE] = ACTIONS(2912), + [anon_sym_Return] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_RETURN] = ACTIONS(2912), + [anon_sym_Static] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_STATIC] = ACTIONS(2912), + [anon_sym_Switch] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_SWITCH] = ACTIONS(2912), + [anon_sym_Throw] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_THROW] = ACTIONS(2912), + [anon_sym_Try] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_TRY] = ACTIONS(2912), + [anon_sym_Var] = ACTIONS(2912), + [anon_sym_var] = ACTIONS(2912), + [anon_sym_VAR] = ACTIONS(2912), + [anon_sym_While] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_WHILE] = ACTIONS(2912), + [anon_sym_With] = ACTIONS(2912), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_WITH] = ACTIONS(2912), + [sym_cf_comment] = ACTIONS(2910), + [sym__java_block_open] = ACTIONS(2910), + [sym__static_type_prefix] = ACTIONS(2910), }, [STATE(640)] = { - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_Query] = ACTIONS(2870), - [anon_sym_query] = ACTIONS(2870), - [anon_sym_QUERY] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_unary_operator_token1] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2870), - [aux_sym_number_token2] = ACTIONS(2868), - [anon_sym_This] = ACTIONS(2870), - [anon_sym_this] = ACTIONS(2870), - [anon_sym_THIS] = ACTIONS(2870), - [anon_sym_Super] = ACTIONS(2870), - [anon_sym_super] = ACTIONS(2870), - [anon_sym_SUPER] = ACTIONS(2870), - [anon_sym_True] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2870), - [anon_sym_TRUE] = ACTIONS(2870), - [anon_sym_False] = ACTIONS(2870), - [anon_sym_false] = ACTIONS(2870), - [anon_sym_FALSE] = ACTIONS(2870), - [anon_sym_Null] = ACTIONS(2870), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_NULL] = ACTIONS(2870), - [anon_sym_Undefined] = ACTIONS(2870), - [anon_sym_undefined] = ACTIONS(2870), - [anon_sym_UNDEFINED] = ACTIONS(2870), - [anon_sym_get] = ACTIONS(2870), - [anon_sym_set] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [sym_hash_empty] = ACTIONS(2868), - [anon_sym_export] = ACTIONS(2870), - [anon_sym_QueryExecute] = ACTIONS(2870), - [anon_sym_queryexecute] = ACTIONS(2870), - [anon_sym_QUERYEXECUTE] = ACTIONS(2870), - [anon_sym_queryExecute] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2868), - [anon_sym_Abstract] = ACTIONS(2870), - [anon_sym_abstract] = ACTIONS(2870), - [anon_sym_ABSTRACT] = ACTIONS(2870), - [anon_sym_Break] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_BREAK] = ACTIONS(2870), - [anon_sym_Case] = ACTIONS(2870), - [anon_sym_case] = ACTIONS(2870), - [anon_sym_CASE] = ACTIONS(2870), - [anon_sym_Component] = ACTIONS(2870), - [anon_sym_component] = ACTIONS(2870), - [anon_sym_COMPONENT] = ACTIONS(2870), - [anon_sym_Continue] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_CONTINUE] = ACTIONS(2870), - [anon_sym_Debugger] = ACTIONS(2870), - [anon_sym_debugger] = ACTIONS(2870), - [anon_sym_DEBUGGER] = ACTIONS(2870), - [anon_sym_Default] = ACTIONS(2870), - [anon_sym_default] = ACTIONS(2870), - [anon_sym_DEFAULT] = ACTIONS(2870), - [anon_sym_Do] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_DO] = ACTIONS(2870), - [anon_sym_Else] = ACTIONS(2870), - [anon_sym_else] = ACTIONS(2870), - [anon_sym_ELSE] = ACTIONS(2870), - [anon_sym_Final] = ACTIONS(2870), - [anon_sym_final] = ACTIONS(2870), - [anon_sym_FINAL] = ACTIONS(2870), - [anon_sym_For] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_FOR] = ACTIONS(2870), - [anon_sym_Function] = ACTIONS(2870), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_FUNCTION] = ACTIONS(2870), - [anon_sym_If] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_IF] = ACTIONS(2870), - [anon_sym_Import] = ACTIONS(2870), - [anon_sym_import] = ACTIONS(2870), - [anon_sym_IMPORT] = ACTIONS(2870), - [anon_sym_Include] = ACTIONS(2870), - [anon_sym_include] = ACTIONS(2870), - [anon_sym_INCLUDE] = ACTIONS(2870), - [anon_sym_Interface] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_INTERFACE] = ACTIONS(2870), - [anon_sym_New] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_NEW] = ACTIONS(2870), - [anon_sym_Package] = ACTIONS(2870), - [anon_sym_package] = ACTIONS(2870), - [anon_sym_PACKAGE] = ACTIONS(2870), - [anon_sym_Private] = ACTIONS(2870), - [anon_sym_private] = ACTIONS(2870), - [anon_sym_PRIVATE] = ACTIONS(2870), - [anon_sym_Property] = ACTIONS(2870), - [anon_sym_property] = ACTIONS(2870), - [anon_sym_PROPERTY] = ACTIONS(2870), - [anon_sym_Public] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2870), - [anon_sym_PUBLIC] = ACTIONS(2870), - [anon_sym_Remote] = ACTIONS(2870), - [anon_sym_remote] = ACTIONS(2870), - [anon_sym_REMOTE] = ACTIONS(2870), - [anon_sym_Return] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_RETURN] = ACTIONS(2870), - [anon_sym_Static] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_STATIC] = ACTIONS(2870), - [anon_sym_Switch] = ACTIONS(2870), - [anon_sym_switch] = ACTIONS(2870), - [anon_sym_SWITCH] = ACTIONS(2870), - [anon_sym_Throw] = ACTIONS(2870), - [anon_sym_throw] = ACTIONS(2870), - [anon_sym_THROW] = ACTIONS(2870), - [anon_sym_Try] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_TRY] = ACTIONS(2870), - [anon_sym_Var] = ACTIONS(2870), - [anon_sym_var] = ACTIONS(2870), - [anon_sym_VAR] = ACTIONS(2870), - [anon_sym_While] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_WHILE] = ACTIONS(2870), - [anon_sym_With] = ACTIONS(2870), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_WITH] = ACTIONS(2870), - [sym_cf_comment] = ACTIONS(2868), - [sym__java_block_open] = ACTIONS(2868), - [sym__static_type_prefix] = ACTIONS(2868), + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_Query] = ACTIONS(2916), + [anon_sym_query] = ACTIONS(2916), + [anon_sym_QUERY] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_unary_operator_token1] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2916), + [aux_sym_number_token2] = ACTIONS(2914), + [anon_sym_This] = ACTIONS(2916), + [anon_sym_this] = ACTIONS(2916), + [anon_sym_THIS] = ACTIONS(2916), + [anon_sym_Super] = ACTIONS(2916), + [anon_sym_super] = ACTIONS(2916), + [anon_sym_SUPER] = ACTIONS(2916), + [anon_sym_True] = ACTIONS(2916), + [anon_sym_true] = ACTIONS(2916), + [anon_sym_TRUE] = ACTIONS(2916), + [anon_sym_False] = ACTIONS(2916), + [anon_sym_false] = ACTIONS(2916), + [anon_sym_FALSE] = ACTIONS(2916), + [anon_sym_Null] = ACTIONS(2916), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_Undefined] = ACTIONS(2916), + [anon_sym_undefined] = ACTIONS(2916), + [anon_sym_UNDEFINED] = ACTIONS(2916), + [anon_sym_get] = ACTIONS(2916), + [anon_sym_set] = ACTIONS(2916), + [anon_sym_POUND] = ACTIONS(2916), + [sym_hash_empty] = ACTIONS(2914), + [anon_sym_export] = ACTIONS(2916), + [anon_sym_QueryExecute] = ACTIONS(2916), + [anon_sym_queryexecute] = ACTIONS(2916), + [anon_sym_QUERYEXECUTE] = ACTIONS(2916), + [anon_sym_queryExecute] = ACTIONS(2916), + [anon_sym_BQUOTE] = ACTIONS(2916), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2914), + [anon_sym_Abstract] = ACTIONS(2916), + [anon_sym_abstract] = ACTIONS(2916), + [anon_sym_ABSTRACT] = ACTIONS(2916), + [anon_sym_Break] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_BREAK] = ACTIONS(2916), + [anon_sym_Case] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_CASE] = ACTIONS(2916), + [anon_sym_Component] = ACTIONS(2916), + [anon_sym_component] = ACTIONS(2916), + [anon_sym_COMPONENT] = ACTIONS(2916), + [anon_sym_Continue] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_CONTINUE] = ACTIONS(2916), + [anon_sym_Debugger] = ACTIONS(2916), + [anon_sym_debugger] = ACTIONS(2916), + [anon_sym_DEBUGGER] = ACTIONS(2916), + [anon_sym_Default] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_DEFAULT] = ACTIONS(2916), + [anon_sym_Do] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_DO] = ACTIONS(2916), + [anon_sym_Else] = ACTIONS(2916), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_ELSE] = ACTIONS(2916), + [anon_sym_Final] = ACTIONS(2916), + [anon_sym_final] = ACTIONS(2916), + [anon_sym_FINAL] = ACTIONS(2916), + [anon_sym_For] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_FOR] = ACTIONS(2916), + [anon_sym_Function] = ACTIONS(2916), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_FUNCTION] = ACTIONS(2916), + [anon_sym_If] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_IF] = ACTIONS(2916), + [anon_sym_Import] = ACTIONS(2916), + [anon_sym_import] = ACTIONS(2916), + [anon_sym_IMPORT] = ACTIONS(2916), + [anon_sym_Include] = ACTIONS(2916), + [anon_sym_include] = ACTIONS(2916), + [anon_sym_INCLUDE] = ACTIONS(2916), + [anon_sym_Interface] = ACTIONS(2916), + [anon_sym_interface] = ACTIONS(2916), + [anon_sym_INTERFACE] = ACTIONS(2916), + [anon_sym_New] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_NEW] = ACTIONS(2916), + [anon_sym_Package] = ACTIONS(2916), + [anon_sym_package] = ACTIONS(2916), + [anon_sym_PACKAGE] = ACTIONS(2916), + [anon_sym_Private] = ACTIONS(2916), + [anon_sym_private] = ACTIONS(2916), + [anon_sym_PRIVATE] = ACTIONS(2916), + [anon_sym_Property] = ACTIONS(2916), + [anon_sym_property] = ACTIONS(2916), + [anon_sym_PROPERTY] = ACTIONS(2916), + [anon_sym_Public] = ACTIONS(2916), + [anon_sym_public] = ACTIONS(2916), + [anon_sym_PUBLIC] = ACTIONS(2916), + [anon_sym_Remote] = ACTIONS(2916), + [anon_sym_remote] = ACTIONS(2916), + [anon_sym_REMOTE] = ACTIONS(2916), + [anon_sym_Return] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_RETURN] = ACTIONS(2916), + [anon_sym_Static] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_STATIC] = ACTIONS(2916), + [anon_sym_Switch] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_SWITCH] = ACTIONS(2916), + [anon_sym_Throw] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_THROW] = ACTIONS(2916), + [anon_sym_Try] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_TRY] = ACTIONS(2916), + [anon_sym_Var] = ACTIONS(2916), + [anon_sym_var] = ACTIONS(2916), + [anon_sym_VAR] = ACTIONS(2916), + [anon_sym_While] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_WHILE] = ACTIONS(2916), + [anon_sym_With] = ACTIONS(2916), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_WITH] = ACTIONS(2916), + [sym_cf_comment] = ACTIONS(2914), + [sym__java_block_open] = ACTIONS(2914), + [sym__static_type_prefix] = ACTIONS(2914), }, [STATE(641)] = { - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_Query] = ACTIONS(2874), - [anon_sym_query] = ACTIONS(2874), - [anon_sym_QUERY] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_unary_operator_token1] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_DQUOTE] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2874), - [aux_sym_number_token2] = ACTIONS(2872), - [anon_sym_This] = ACTIONS(2874), - [anon_sym_this] = ACTIONS(2874), - [anon_sym_THIS] = ACTIONS(2874), - [anon_sym_Super] = ACTIONS(2874), - [anon_sym_super] = ACTIONS(2874), - [anon_sym_SUPER] = ACTIONS(2874), - [anon_sym_True] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_TRUE] = ACTIONS(2874), - [anon_sym_False] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [anon_sym_FALSE] = ACTIONS(2874), - [anon_sym_Null] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_NULL] = ACTIONS(2874), - [anon_sym_Undefined] = ACTIONS(2874), - [anon_sym_undefined] = ACTIONS(2874), - [anon_sym_UNDEFINED] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2874), - [anon_sym_set] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [sym_hash_empty] = ACTIONS(2872), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_QueryExecute] = ACTIONS(2874), - [anon_sym_queryexecute] = ACTIONS(2874), - [anon_sym_QUERYEXECUTE] = ACTIONS(2874), - [anon_sym_queryExecute] = ACTIONS(2874), - [anon_sym_BQUOTE] = ACTIONS(2874), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2872), - [anon_sym_Abstract] = ACTIONS(2874), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_ABSTRACT] = ACTIONS(2874), - [anon_sym_Break] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_BREAK] = ACTIONS(2874), - [anon_sym_Case] = ACTIONS(2874), - [anon_sym_case] = ACTIONS(2874), - [anon_sym_CASE] = ACTIONS(2874), - [anon_sym_Component] = ACTIONS(2874), - [anon_sym_component] = ACTIONS(2874), - [anon_sym_COMPONENT] = ACTIONS(2874), - [anon_sym_Continue] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_CONTINUE] = ACTIONS(2874), - [anon_sym_Debugger] = ACTIONS(2874), - [anon_sym_debugger] = ACTIONS(2874), - [anon_sym_DEBUGGER] = ACTIONS(2874), - [anon_sym_Default] = ACTIONS(2874), - [anon_sym_default] = ACTIONS(2874), - [anon_sym_DEFAULT] = ACTIONS(2874), - [anon_sym_Do] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_DO] = ACTIONS(2874), - [anon_sym_Else] = ACTIONS(2874), - [anon_sym_else] = ACTIONS(2874), - [anon_sym_ELSE] = ACTIONS(2874), - [anon_sym_Final] = ACTIONS(2874), - [anon_sym_final] = ACTIONS(2874), - [anon_sym_FINAL] = ACTIONS(2874), - [anon_sym_For] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_FOR] = ACTIONS(2874), - [anon_sym_Function] = ACTIONS(2874), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_FUNCTION] = ACTIONS(2874), - [anon_sym_If] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_IF] = ACTIONS(2874), - [anon_sym_Import] = ACTIONS(2874), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_IMPORT] = ACTIONS(2874), - [anon_sym_Include] = ACTIONS(2874), - [anon_sym_include] = ACTIONS(2874), - [anon_sym_INCLUDE] = ACTIONS(2874), - [anon_sym_Interface] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_INTERFACE] = ACTIONS(2874), - [anon_sym_New] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_NEW] = ACTIONS(2874), - [anon_sym_Package] = ACTIONS(2874), - [anon_sym_package] = ACTIONS(2874), - [anon_sym_PACKAGE] = ACTIONS(2874), - [anon_sym_Private] = ACTIONS(2874), - [anon_sym_private] = ACTIONS(2874), - [anon_sym_PRIVATE] = ACTIONS(2874), - [anon_sym_Property] = ACTIONS(2874), - [anon_sym_property] = ACTIONS(2874), - [anon_sym_PROPERTY] = ACTIONS(2874), - [anon_sym_Public] = ACTIONS(2874), - [anon_sym_public] = ACTIONS(2874), - [anon_sym_PUBLIC] = ACTIONS(2874), - [anon_sym_Remote] = ACTIONS(2874), - [anon_sym_remote] = ACTIONS(2874), - [anon_sym_REMOTE] = ACTIONS(2874), - [anon_sym_Return] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_RETURN] = ACTIONS(2874), - [anon_sym_Static] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_STATIC] = ACTIONS(2874), - [anon_sym_Switch] = ACTIONS(2874), - [anon_sym_switch] = ACTIONS(2874), - [anon_sym_SWITCH] = ACTIONS(2874), - [anon_sym_Throw] = ACTIONS(2874), - [anon_sym_throw] = ACTIONS(2874), - [anon_sym_THROW] = ACTIONS(2874), - [anon_sym_Try] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_TRY] = ACTIONS(2874), - [anon_sym_Var] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2874), - [anon_sym_VAR] = ACTIONS(2874), - [anon_sym_While] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_WHILE] = ACTIONS(2874), - [anon_sym_With] = ACTIONS(2874), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_WITH] = ACTIONS(2874), - [sym_cf_comment] = ACTIONS(2872), - [sym__java_block_open] = ACTIONS(2872), - [sym__static_type_prefix] = ACTIONS(2872), + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2918), + [anon_sym_Query] = ACTIONS(2920), + [anon_sym_query] = ACTIONS(2920), + [anon_sym_QUERY] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_unary_operator_token1] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2920), + [aux_sym_number_token2] = ACTIONS(2918), + [anon_sym_This] = ACTIONS(2920), + [anon_sym_this] = ACTIONS(2920), + [anon_sym_THIS] = ACTIONS(2920), + [anon_sym_Super] = ACTIONS(2920), + [anon_sym_super] = ACTIONS(2920), + [anon_sym_SUPER] = ACTIONS(2920), + [anon_sym_True] = ACTIONS(2920), + [anon_sym_true] = ACTIONS(2920), + [anon_sym_TRUE] = ACTIONS(2920), + [anon_sym_False] = ACTIONS(2920), + [anon_sym_false] = ACTIONS(2920), + [anon_sym_FALSE] = ACTIONS(2920), + [anon_sym_Null] = ACTIONS(2920), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_Undefined] = ACTIONS(2920), + [anon_sym_undefined] = ACTIONS(2920), + [anon_sym_UNDEFINED] = ACTIONS(2920), + [anon_sym_get] = ACTIONS(2920), + [anon_sym_set] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(2920), + [sym_hash_empty] = ACTIONS(2918), + [anon_sym_export] = ACTIONS(2920), + [anon_sym_QueryExecute] = ACTIONS(2920), + [anon_sym_queryexecute] = ACTIONS(2920), + [anon_sym_QUERYEXECUTE] = ACTIONS(2920), + [anon_sym_queryExecute] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2918), + [anon_sym_Abstract] = ACTIONS(2920), + [anon_sym_abstract] = ACTIONS(2920), + [anon_sym_ABSTRACT] = ACTIONS(2920), + [anon_sym_Break] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_BREAK] = ACTIONS(2920), + [anon_sym_Case] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_CASE] = ACTIONS(2920), + [anon_sym_Component] = ACTIONS(2920), + [anon_sym_component] = ACTIONS(2920), + [anon_sym_COMPONENT] = ACTIONS(2920), + [anon_sym_Continue] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_CONTINUE] = ACTIONS(2920), + [anon_sym_Debugger] = ACTIONS(2920), + [anon_sym_debugger] = ACTIONS(2920), + [anon_sym_DEBUGGER] = ACTIONS(2920), + [anon_sym_Default] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_DEFAULT] = ACTIONS(2920), + [anon_sym_Do] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_DO] = ACTIONS(2920), + [anon_sym_Else] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_ELSE] = ACTIONS(2920), + [anon_sym_Final] = ACTIONS(2920), + [anon_sym_final] = ACTIONS(2920), + [anon_sym_FINAL] = ACTIONS(2920), + [anon_sym_For] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_FOR] = ACTIONS(2920), + [anon_sym_Function] = ACTIONS(2920), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_FUNCTION] = ACTIONS(2920), + [anon_sym_If] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_IF] = ACTIONS(2920), + [anon_sym_Import] = ACTIONS(2920), + [anon_sym_import] = ACTIONS(2920), + [anon_sym_IMPORT] = ACTIONS(2920), + [anon_sym_Include] = ACTIONS(2920), + [anon_sym_include] = ACTIONS(2920), + [anon_sym_INCLUDE] = ACTIONS(2920), + [anon_sym_Interface] = ACTIONS(2920), + [anon_sym_interface] = ACTIONS(2920), + [anon_sym_INTERFACE] = ACTIONS(2920), + [anon_sym_New] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_NEW] = ACTIONS(2920), + [anon_sym_Package] = ACTIONS(2920), + [anon_sym_package] = ACTIONS(2920), + [anon_sym_PACKAGE] = ACTIONS(2920), + [anon_sym_Private] = ACTIONS(2920), + [anon_sym_private] = ACTIONS(2920), + [anon_sym_PRIVATE] = ACTIONS(2920), + [anon_sym_Property] = ACTIONS(2920), + [anon_sym_property] = ACTIONS(2920), + [anon_sym_PROPERTY] = ACTIONS(2920), + [anon_sym_Public] = ACTIONS(2920), + [anon_sym_public] = ACTIONS(2920), + [anon_sym_PUBLIC] = ACTIONS(2920), + [anon_sym_Remote] = ACTIONS(2920), + [anon_sym_remote] = ACTIONS(2920), + [anon_sym_REMOTE] = ACTIONS(2920), + [anon_sym_Return] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_RETURN] = ACTIONS(2920), + [anon_sym_Static] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_STATIC] = ACTIONS(2920), + [anon_sym_Switch] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_SWITCH] = ACTIONS(2920), + [anon_sym_Throw] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_THROW] = ACTIONS(2920), + [anon_sym_Try] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_TRY] = ACTIONS(2920), + [anon_sym_Var] = ACTIONS(2920), + [anon_sym_var] = ACTIONS(2920), + [anon_sym_VAR] = ACTIONS(2920), + [anon_sym_While] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_WHILE] = ACTIONS(2920), + [anon_sym_With] = ACTIONS(2920), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_WITH] = ACTIONS(2920), + [sym_cf_comment] = ACTIONS(2918), + [sym__java_block_open] = ACTIONS(2918), + [sym__static_type_prefix] = ACTIONS(2918), }, [STATE(642)] = { - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_Query] = ACTIONS(2878), - [anon_sym_query] = ACTIONS(2878), - [anon_sym_QUERY] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_unary_operator_token1] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2878), - [aux_sym_number_token2] = ACTIONS(2876), - [anon_sym_This] = ACTIONS(2878), - [anon_sym_this] = ACTIONS(2878), - [anon_sym_THIS] = ACTIONS(2878), - [anon_sym_Super] = ACTIONS(2878), - [anon_sym_super] = ACTIONS(2878), - [anon_sym_SUPER] = ACTIONS(2878), - [anon_sym_True] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2878), - [anon_sym_TRUE] = ACTIONS(2878), - [anon_sym_False] = ACTIONS(2878), - [anon_sym_false] = ACTIONS(2878), - [anon_sym_FALSE] = ACTIONS(2878), - [anon_sym_Null] = ACTIONS(2878), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_NULL] = ACTIONS(2878), - [anon_sym_Undefined] = ACTIONS(2878), - [anon_sym_undefined] = ACTIONS(2878), - [anon_sym_UNDEFINED] = ACTIONS(2878), - [anon_sym_get] = ACTIONS(2878), - [anon_sym_set] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [sym_hash_empty] = ACTIONS(2876), - [anon_sym_export] = ACTIONS(2878), - [anon_sym_QueryExecute] = ACTIONS(2878), - [anon_sym_queryexecute] = ACTIONS(2878), - [anon_sym_QUERYEXECUTE] = ACTIONS(2878), - [anon_sym_queryExecute] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2876), - [anon_sym_Abstract] = ACTIONS(2878), - [anon_sym_abstract] = ACTIONS(2878), - [anon_sym_ABSTRACT] = ACTIONS(2878), - [anon_sym_Break] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_BREAK] = ACTIONS(2878), - [anon_sym_Case] = ACTIONS(2878), - [anon_sym_case] = ACTIONS(2878), - [anon_sym_CASE] = ACTIONS(2878), - [anon_sym_Component] = ACTIONS(2878), - [anon_sym_component] = ACTIONS(2878), - [anon_sym_COMPONENT] = ACTIONS(2878), - [anon_sym_Continue] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_CONTINUE] = ACTIONS(2878), - [anon_sym_Debugger] = ACTIONS(2878), - [anon_sym_debugger] = ACTIONS(2878), - [anon_sym_DEBUGGER] = ACTIONS(2878), - [anon_sym_Default] = ACTIONS(2878), - [anon_sym_default] = ACTIONS(2878), - [anon_sym_DEFAULT] = ACTIONS(2878), - [anon_sym_Do] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_DO] = ACTIONS(2878), - [anon_sym_Else] = ACTIONS(2878), - [anon_sym_else] = ACTIONS(2878), - [anon_sym_ELSE] = ACTIONS(2878), - [anon_sym_Final] = ACTIONS(2878), - [anon_sym_final] = ACTIONS(2878), - [anon_sym_FINAL] = ACTIONS(2878), - [anon_sym_For] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_FOR] = ACTIONS(2878), - [anon_sym_Function] = ACTIONS(2878), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_FUNCTION] = ACTIONS(2878), - [anon_sym_If] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_IF] = ACTIONS(2878), - [anon_sym_Import] = ACTIONS(2878), - [anon_sym_import] = ACTIONS(2878), - [anon_sym_IMPORT] = ACTIONS(2878), - [anon_sym_Include] = ACTIONS(2878), - [anon_sym_include] = ACTIONS(2878), - [anon_sym_INCLUDE] = ACTIONS(2878), - [anon_sym_Interface] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_INTERFACE] = ACTIONS(2878), - [anon_sym_New] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_NEW] = ACTIONS(2878), - [anon_sym_Package] = ACTIONS(2878), - [anon_sym_package] = ACTIONS(2878), - [anon_sym_PACKAGE] = ACTIONS(2878), - [anon_sym_Private] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_PRIVATE] = ACTIONS(2878), - [anon_sym_Property] = ACTIONS(2878), - [anon_sym_property] = ACTIONS(2878), - [anon_sym_PROPERTY] = ACTIONS(2878), - [anon_sym_Public] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_PUBLIC] = ACTIONS(2878), - [anon_sym_Remote] = ACTIONS(2878), - [anon_sym_remote] = ACTIONS(2878), - [anon_sym_REMOTE] = ACTIONS(2878), - [anon_sym_Return] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_RETURN] = ACTIONS(2878), - [anon_sym_Static] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_STATIC] = ACTIONS(2878), - [anon_sym_Switch] = ACTIONS(2878), - [anon_sym_switch] = ACTIONS(2878), - [anon_sym_SWITCH] = ACTIONS(2878), - [anon_sym_Throw] = ACTIONS(2878), - [anon_sym_throw] = ACTIONS(2878), - [anon_sym_THROW] = ACTIONS(2878), - [anon_sym_Try] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_TRY] = ACTIONS(2878), - [anon_sym_Var] = ACTIONS(2878), - [anon_sym_var] = ACTIONS(2878), - [anon_sym_VAR] = ACTIONS(2878), - [anon_sym_While] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_WHILE] = ACTIONS(2878), - [anon_sym_With] = ACTIONS(2878), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_WITH] = ACTIONS(2878), - [sym_cf_comment] = ACTIONS(2876), - [sym__java_block_open] = ACTIONS(2876), - [sym__static_type_prefix] = ACTIONS(2876), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_Query] = ACTIONS(2700), + [anon_sym_query] = ACTIONS(2700), + [anon_sym_QUERY] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [aux_sym_unary_operator_token1] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2700), + [aux_sym_number_token2] = ACTIONS(2698), + [anon_sym_This] = ACTIONS(2700), + [anon_sym_this] = ACTIONS(2700), + [anon_sym_THIS] = ACTIONS(2700), + [anon_sym_Super] = ACTIONS(2700), + [anon_sym_super] = ACTIONS(2700), + [anon_sym_SUPER] = ACTIONS(2700), + [anon_sym_True] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_TRUE] = ACTIONS(2700), + [anon_sym_False] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_FALSE] = ACTIONS(2700), + [anon_sym_Null] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_Undefined] = ACTIONS(2700), + [anon_sym_undefined] = ACTIONS(2700), + [anon_sym_UNDEFINED] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [sym_hash_empty] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_QueryExecute] = ACTIONS(2700), + [anon_sym_queryexecute] = ACTIONS(2700), + [anon_sym_QUERYEXECUTE] = ACTIONS(2700), + [anon_sym_queryExecute] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(2700), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2698), + [anon_sym_Abstract] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_ABSTRACT] = ACTIONS(2700), + [anon_sym_Break] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_BREAK] = ACTIONS(2700), + [anon_sym_Case] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_CASE] = ACTIONS(2700), + [anon_sym_Component] = ACTIONS(2700), + [anon_sym_component] = ACTIONS(2700), + [anon_sym_COMPONENT] = ACTIONS(2700), + [anon_sym_Continue] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_CONTINUE] = ACTIONS(2700), + [anon_sym_Debugger] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_DEBUGGER] = ACTIONS(2700), + [anon_sym_Default] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_DEFAULT] = ACTIONS(2700), + [anon_sym_Do] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_DO] = ACTIONS(2700), + [anon_sym_Else] = ACTIONS(2700), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_ELSE] = ACTIONS(2700), + [anon_sym_Final] = ACTIONS(2700), + [anon_sym_final] = ACTIONS(2700), + [anon_sym_FINAL] = ACTIONS(2700), + [anon_sym_For] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_FOR] = ACTIONS(2700), + [anon_sym_Function] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_FUNCTION] = ACTIONS(2700), + [anon_sym_If] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_IF] = ACTIONS(2700), + [anon_sym_Import] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_IMPORT] = ACTIONS(2700), + [anon_sym_Include] = ACTIONS(2700), + [anon_sym_include] = ACTIONS(2700), + [anon_sym_INCLUDE] = ACTIONS(2700), + [anon_sym_Interface] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_INTERFACE] = ACTIONS(2700), + [anon_sym_New] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_NEW] = ACTIONS(2700), + [anon_sym_Package] = ACTIONS(2700), + [anon_sym_package] = ACTIONS(2700), + [anon_sym_PACKAGE] = ACTIONS(2700), + [anon_sym_Private] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_PRIVATE] = ACTIONS(2700), + [anon_sym_Property] = ACTIONS(2700), + [anon_sym_property] = ACTIONS(2700), + [anon_sym_PROPERTY] = ACTIONS(2700), + [anon_sym_Public] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_PUBLIC] = ACTIONS(2700), + [anon_sym_Remote] = ACTIONS(2700), + [anon_sym_remote] = ACTIONS(2700), + [anon_sym_REMOTE] = ACTIONS(2700), + [anon_sym_Return] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_RETURN] = ACTIONS(2700), + [anon_sym_Static] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_STATIC] = ACTIONS(2700), + [anon_sym_Switch] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_SWITCH] = ACTIONS(2700), + [anon_sym_Throw] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_THROW] = ACTIONS(2700), + [anon_sym_Try] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_TRY] = ACTIONS(2700), + [anon_sym_Var] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [anon_sym_VAR] = ACTIONS(2700), + [anon_sym_While] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_WHILE] = ACTIONS(2700), + [anon_sym_With] = ACTIONS(2700), + [anon_sym_with] = ACTIONS(2700), + [anon_sym_WITH] = ACTIONS(2700), + [sym_cf_comment] = ACTIONS(2698), + [sym__java_block_open] = ACTIONS(2698), + [sym__static_type_prefix] = ACTIONS(2698), }, [STATE(643)] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_Query] = ACTIONS(2882), - [anon_sym_query] = ACTIONS(2882), - [anon_sym_QUERY] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_unary_operator_token1] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_DQUOTE] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2882), - [aux_sym_number_token2] = ACTIONS(2880), - [anon_sym_This] = ACTIONS(2882), - [anon_sym_this] = ACTIONS(2882), - [anon_sym_THIS] = ACTIONS(2882), - [anon_sym_Super] = ACTIONS(2882), - [anon_sym_super] = ACTIONS(2882), - [anon_sym_SUPER] = ACTIONS(2882), - [anon_sym_True] = ACTIONS(2882), - [anon_sym_true] = ACTIONS(2882), - [anon_sym_TRUE] = ACTIONS(2882), - [anon_sym_False] = ACTIONS(2882), - [anon_sym_false] = ACTIONS(2882), - [anon_sym_FALSE] = ACTIONS(2882), - [anon_sym_Null] = ACTIONS(2882), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_NULL] = ACTIONS(2882), - [anon_sym_Undefined] = ACTIONS(2882), - [anon_sym_undefined] = ACTIONS(2882), - [anon_sym_UNDEFINED] = ACTIONS(2882), - [anon_sym_get] = ACTIONS(2882), - [anon_sym_set] = ACTIONS(2882), - [anon_sym_POUND] = ACTIONS(2882), - [sym_hash_empty] = ACTIONS(2880), - [anon_sym_export] = ACTIONS(2882), - [anon_sym_QueryExecute] = ACTIONS(2882), - [anon_sym_queryexecute] = ACTIONS(2882), - [anon_sym_QUERYEXECUTE] = ACTIONS(2882), - [anon_sym_queryExecute] = ACTIONS(2882), - [anon_sym_BQUOTE] = ACTIONS(2882), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2880), - [anon_sym_Abstract] = ACTIONS(2882), - [anon_sym_abstract] = ACTIONS(2882), - [anon_sym_ABSTRACT] = ACTIONS(2882), - [anon_sym_Break] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_BREAK] = ACTIONS(2882), - [anon_sym_Case] = ACTIONS(2882), - [anon_sym_case] = ACTIONS(2882), - [anon_sym_CASE] = ACTIONS(2882), - [anon_sym_Component] = ACTIONS(2882), - [anon_sym_component] = ACTIONS(2882), - [anon_sym_COMPONENT] = ACTIONS(2882), - [anon_sym_Continue] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_CONTINUE] = ACTIONS(2882), - [anon_sym_Debugger] = ACTIONS(2882), - [anon_sym_debugger] = ACTIONS(2882), - [anon_sym_DEBUGGER] = ACTIONS(2882), - [anon_sym_Default] = ACTIONS(2882), - [anon_sym_default] = ACTIONS(2882), - [anon_sym_DEFAULT] = ACTIONS(2882), - [anon_sym_Do] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_DO] = ACTIONS(2882), - [anon_sym_Else] = ACTIONS(2882), - [anon_sym_else] = ACTIONS(2882), - [anon_sym_ELSE] = ACTIONS(2882), - [anon_sym_Final] = ACTIONS(2882), - [anon_sym_final] = ACTIONS(2882), - [anon_sym_FINAL] = ACTIONS(2882), - [anon_sym_For] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_FOR] = ACTIONS(2882), - [anon_sym_Function] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_FUNCTION] = ACTIONS(2882), - [anon_sym_If] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_IF] = ACTIONS(2882), - [anon_sym_Import] = ACTIONS(2882), - [anon_sym_import] = ACTIONS(2882), - [anon_sym_IMPORT] = ACTIONS(2882), - [anon_sym_Include] = ACTIONS(2882), - [anon_sym_include] = ACTIONS(2882), - [anon_sym_INCLUDE] = ACTIONS(2882), - [anon_sym_Interface] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_INTERFACE] = ACTIONS(2882), - [anon_sym_New] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_NEW] = ACTIONS(2882), - [anon_sym_Package] = ACTIONS(2882), - [anon_sym_package] = ACTIONS(2882), - [anon_sym_PACKAGE] = ACTIONS(2882), - [anon_sym_Private] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_PRIVATE] = ACTIONS(2882), - [anon_sym_Property] = ACTIONS(2882), - [anon_sym_property] = ACTIONS(2882), - [anon_sym_PROPERTY] = ACTIONS(2882), - [anon_sym_Public] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_PUBLIC] = ACTIONS(2882), - [anon_sym_Remote] = ACTIONS(2882), - [anon_sym_remote] = ACTIONS(2882), - [anon_sym_REMOTE] = ACTIONS(2882), - [anon_sym_Return] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_RETURN] = ACTIONS(2882), - [anon_sym_Static] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_STATIC] = ACTIONS(2882), - [anon_sym_Switch] = ACTIONS(2882), - [anon_sym_switch] = ACTIONS(2882), - [anon_sym_SWITCH] = ACTIONS(2882), - [anon_sym_Throw] = ACTIONS(2882), - [anon_sym_throw] = ACTIONS(2882), - [anon_sym_THROW] = ACTIONS(2882), - [anon_sym_Try] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_TRY] = ACTIONS(2882), - [anon_sym_Var] = ACTIONS(2882), - [anon_sym_var] = ACTIONS(2882), - [anon_sym_VAR] = ACTIONS(2882), - [anon_sym_While] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_WHILE] = ACTIONS(2882), - [anon_sym_With] = ACTIONS(2882), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_WITH] = ACTIONS(2882), - [sym_cf_comment] = ACTIONS(2880), - [sym__java_block_open] = ACTIONS(2880), - [sym__static_type_prefix] = ACTIONS(2880), + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_Query] = ACTIONS(2924), + [anon_sym_query] = ACTIONS(2924), + [anon_sym_QUERY] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_unary_operator_token1] = ACTIONS(2924), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2924), + [aux_sym_number_token2] = ACTIONS(2922), + [anon_sym_This] = ACTIONS(2924), + [anon_sym_this] = ACTIONS(2924), + [anon_sym_THIS] = ACTIONS(2924), + [anon_sym_Super] = ACTIONS(2924), + [anon_sym_super] = ACTIONS(2924), + [anon_sym_SUPER] = ACTIONS(2924), + [anon_sym_True] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2924), + [anon_sym_TRUE] = ACTIONS(2924), + [anon_sym_False] = ACTIONS(2924), + [anon_sym_false] = ACTIONS(2924), + [anon_sym_FALSE] = ACTIONS(2924), + [anon_sym_Null] = ACTIONS(2924), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_Undefined] = ACTIONS(2924), + [anon_sym_undefined] = ACTIONS(2924), + [anon_sym_UNDEFINED] = ACTIONS(2924), + [anon_sym_get] = ACTIONS(2924), + [anon_sym_set] = ACTIONS(2924), + [anon_sym_POUND] = ACTIONS(2924), + [sym_hash_empty] = ACTIONS(2922), + [anon_sym_export] = ACTIONS(2924), + [anon_sym_QueryExecute] = ACTIONS(2924), + [anon_sym_queryexecute] = ACTIONS(2924), + [anon_sym_QUERYEXECUTE] = ACTIONS(2924), + [anon_sym_queryExecute] = ACTIONS(2924), + [anon_sym_BQUOTE] = ACTIONS(2924), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2922), + [anon_sym_Abstract] = ACTIONS(2924), + [anon_sym_abstract] = ACTIONS(2924), + [anon_sym_ABSTRACT] = ACTIONS(2924), + [anon_sym_Break] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_BREAK] = ACTIONS(2924), + [anon_sym_Case] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2924), + [anon_sym_CASE] = ACTIONS(2924), + [anon_sym_Component] = ACTIONS(2924), + [anon_sym_component] = ACTIONS(2924), + [anon_sym_COMPONENT] = ACTIONS(2924), + [anon_sym_Continue] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_CONTINUE] = ACTIONS(2924), + [anon_sym_Debugger] = ACTIONS(2924), + [anon_sym_debugger] = ACTIONS(2924), + [anon_sym_DEBUGGER] = ACTIONS(2924), + [anon_sym_Default] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_DEFAULT] = ACTIONS(2924), + [anon_sym_Do] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_DO] = ACTIONS(2924), + [anon_sym_Else] = ACTIONS(2924), + [anon_sym_else] = ACTIONS(2924), + [anon_sym_ELSE] = ACTIONS(2924), + [anon_sym_Final] = ACTIONS(2924), + [anon_sym_final] = ACTIONS(2924), + [anon_sym_FINAL] = ACTIONS(2924), + [anon_sym_For] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_FOR] = ACTIONS(2924), + [anon_sym_Function] = ACTIONS(2924), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_FUNCTION] = ACTIONS(2924), + [anon_sym_If] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_IF] = ACTIONS(2924), + [anon_sym_Import] = ACTIONS(2924), + [anon_sym_import] = ACTIONS(2924), + [anon_sym_IMPORT] = ACTIONS(2924), + [anon_sym_Include] = ACTIONS(2924), + [anon_sym_include] = ACTIONS(2924), + [anon_sym_INCLUDE] = ACTIONS(2924), + [anon_sym_Interface] = ACTIONS(2924), + [anon_sym_interface] = ACTIONS(2924), + [anon_sym_INTERFACE] = ACTIONS(2924), + [anon_sym_New] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_NEW] = ACTIONS(2924), + [anon_sym_Package] = ACTIONS(2924), + [anon_sym_package] = ACTIONS(2924), + [anon_sym_PACKAGE] = ACTIONS(2924), + [anon_sym_Private] = ACTIONS(2924), + [anon_sym_private] = ACTIONS(2924), + [anon_sym_PRIVATE] = ACTIONS(2924), + [anon_sym_Property] = ACTIONS(2924), + [anon_sym_property] = ACTIONS(2924), + [anon_sym_PROPERTY] = ACTIONS(2924), + [anon_sym_Public] = ACTIONS(2924), + [anon_sym_public] = ACTIONS(2924), + [anon_sym_PUBLIC] = ACTIONS(2924), + [anon_sym_Remote] = ACTIONS(2924), + [anon_sym_remote] = ACTIONS(2924), + [anon_sym_REMOTE] = ACTIONS(2924), + [anon_sym_Return] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_RETURN] = ACTIONS(2924), + [anon_sym_Static] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_STATIC] = ACTIONS(2924), + [anon_sym_Switch] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_SWITCH] = ACTIONS(2924), + [anon_sym_Throw] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_THROW] = ACTIONS(2924), + [anon_sym_Try] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_TRY] = ACTIONS(2924), + [anon_sym_Var] = ACTIONS(2924), + [anon_sym_var] = ACTIONS(2924), + [anon_sym_VAR] = ACTIONS(2924), + [anon_sym_While] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_WHILE] = ACTIONS(2924), + [anon_sym_With] = ACTIONS(2924), + [anon_sym_with] = ACTIONS(2924), + [anon_sym_WITH] = ACTIONS(2924), + [sym_cf_comment] = ACTIONS(2922), + [sym__java_block_open] = ACTIONS(2922), + [sym__static_type_prefix] = ACTIONS(2922), }, [STATE(644)] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_Query] = ACTIONS(2886), - [anon_sym_query] = ACTIONS(2886), - [anon_sym_QUERY] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_unary_operator_token1] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_DQUOTE] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2886), - [aux_sym_number_token2] = ACTIONS(2884), - [anon_sym_This] = ACTIONS(2886), - [anon_sym_this] = ACTIONS(2886), - [anon_sym_THIS] = ACTIONS(2886), - [anon_sym_Super] = ACTIONS(2886), - [anon_sym_super] = ACTIONS(2886), - [anon_sym_SUPER] = ACTIONS(2886), - [anon_sym_True] = ACTIONS(2886), - [anon_sym_true] = ACTIONS(2886), - [anon_sym_TRUE] = ACTIONS(2886), - [anon_sym_False] = ACTIONS(2886), - [anon_sym_false] = ACTIONS(2886), - [anon_sym_FALSE] = ACTIONS(2886), - [anon_sym_Null] = ACTIONS(2886), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_NULL] = ACTIONS(2886), - [anon_sym_Undefined] = ACTIONS(2886), - [anon_sym_undefined] = ACTIONS(2886), - [anon_sym_UNDEFINED] = ACTIONS(2886), - [anon_sym_get] = ACTIONS(2886), - [anon_sym_set] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [sym_hash_empty] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2886), - [anon_sym_QueryExecute] = ACTIONS(2886), - [anon_sym_queryexecute] = ACTIONS(2886), - [anon_sym_QUERYEXECUTE] = ACTIONS(2886), - [anon_sym_queryExecute] = ACTIONS(2886), - [anon_sym_BQUOTE] = ACTIONS(2886), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2884), - [anon_sym_Abstract] = ACTIONS(2886), - [anon_sym_abstract] = ACTIONS(2886), - [anon_sym_ABSTRACT] = ACTIONS(2886), - [anon_sym_Break] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_BREAK] = ACTIONS(2886), - [anon_sym_Case] = ACTIONS(2886), - [anon_sym_case] = ACTIONS(2886), - [anon_sym_CASE] = ACTIONS(2886), - [anon_sym_Component] = ACTIONS(2886), - [anon_sym_component] = ACTIONS(2886), - [anon_sym_COMPONENT] = ACTIONS(2886), - [anon_sym_Continue] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_CONTINUE] = ACTIONS(2886), - [anon_sym_Debugger] = ACTIONS(2886), - [anon_sym_debugger] = ACTIONS(2886), - [anon_sym_DEBUGGER] = ACTIONS(2886), - [anon_sym_Default] = ACTIONS(2886), - [anon_sym_default] = ACTIONS(2886), - [anon_sym_DEFAULT] = ACTIONS(2886), - [anon_sym_Do] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_DO] = ACTIONS(2886), - [anon_sym_Else] = ACTIONS(2886), - [anon_sym_else] = ACTIONS(2886), - [anon_sym_ELSE] = ACTIONS(2886), - [anon_sym_Final] = ACTIONS(2886), - [anon_sym_final] = ACTIONS(2886), - [anon_sym_FINAL] = ACTIONS(2886), - [anon_sym_For] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_FOR] = ACTIONS(2886), - [anon_sym_Function] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_FUNCTION] = ACTIONS(2886), - [anon_sym_If] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_IF] = ACTIONS(2886), - [anon_sym_Import] = ACTIONS(2886), - [anon_sym_import] = ACTIONS(2886), - [anon_sym_IMPORT] = ACTIONS(2886), - [anon_sym_Include] = ACTIONS(2886), - [anon_sym_include] = ACTIONS(2886), - [anon_sym_INCLUDE] = ACTIONS(2886), - [anon_sym_Interface] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_INTERFACE] = ACTIONS(2886), - [anon_sym_New] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_NEW] = ACTIONS(2886), - [anon_sym_Package] = ACTIONS(2886), - [anon_sym_package] = ACTIONS(2886), - [anon_sym_PACKAGE] = ACTIONS(2886), - [anon_sym_Private] = ACTIONS(2886), - [anon_sym_private] = ACTIONS(2886), - [anon_sym_PRIVATE] = ACTIONS(2886), - [anon_sym_Property] = ACTIONS(2886), - [anon_sym_property] = ACTIONS(2886), - [anon_sym_PROPERTY] = ACTIONS(2886), - [anon_sym_Public] = ACTIONS(2886), - [anon_sym_public] = ACTIONS(2886), - [anon_sym_PUBLIC] = ACTIONS(2886), - [anon_sym_Remote] = ACTIONS(2886), - [anon_sym_remote] = ACTIONS(2886), - [anon_sym_REMOTE] = ACTIONS(2886), - [anon_sym_Return] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_RETURN] = ACTIONS(2886), - [anon_sym_Static] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_STATIC] = ACTIONS(2886), - [anon_sym_Switch] = ACTIONS(2886), - [anon_sym_switch] = ACTIONS(2886), - [anon_sym_SWITCH] = ACTIONS(2886), - [anon_sym_Throw] = ACTIONS(2886), - [anon_sym_throw] = ACTIONS(2886), - [anon_sym_THROW] = ACTIONS(2886), - [anon_sym_Try] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_TRY] = ACTIONS(2886), - [anon_sym_Var] = ACTIONS(2886), - [anon_sym_var] = ACTIONS(2886), - [anon_sym_VAR] = ACTIONS(2886), - [anon_sym_While] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_WHILE] = ACTIONS(2886), - [anon_sym_With] = ACTIONS(2886), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_WITH] = ACTIONS(2886), - [sym_cf_comment] = ACTIONS(2884), - [sym__java_block_open] = ACTIONS(2884), - [sym__static_type_prefix] = ACTIONS(2884), + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_let] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_Query] = ACTIONS(2928), + [anon_sym_query] = ACTIONS(2928), + [anon_sym_QUERY] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [aux_sym_unary_operator_token1] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2928), + [aux_sym_number_token2] = ACTIONS(2926), + [anon_sym_This] = ACTIONS(2928), + [anon_sym_this] = ACTIONS(2928), + [anon_sym_THIS] = ACTIONS(2928), + [anon_sym_Super] = ACTIONS(2928), + [anon_sym_super] = ACTIONS(2928), + [anon_sym_SUPER] = ACTIONS(2928), + [anon_sym_True] = ACTIONS(2928), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_TRUE] = ACTIONS(2928), + [anon_sym_False] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_FALSE] = ACTIONS(2928), + [anon_sym_Null] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_Undefined] = ACTIONS(2928), + [anon_sym_undefined] = ACTIONS(2928), + [anon_sym_UNDEFINED] = ACTIONS(2928), + [anon_sym_get] = ACTIONS(2928), + [anon_sym_set] = ACTIONS(2928), + [anon_sym_POUND] = ACTIONS(2928), + [sym_hash_empty] = ACTIONS(2926), + [anon_sym_export] = ACTIONS(2928), + [anon_sym_QueryExecute] = ACTIONS(2928), + [anon_sym_queryexecute] = ACTIONS(2928), + [anon_sym_QUERYEXECUTE] = ACTIONS(2928), + [anon_sym_queryExecute] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2926), + [anon_sym_Abstract] = ACTIONS(2928), + [anon_sym_abstract] = ACTIONS(2928), + [anon_sym_ABSTRACT] = ACTIONS(2928), + [anon_sym_Break] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_BREAK] = ACTIONS(2928), + [anon_sym_Case] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_CASE] = ACTIONS(2928), + [anon_sym_Component] = ACTIONS(2928), + [anon_sym_component] = ACTIONS(2928), + [anon_sym_COMPONENT] = ACTIONS(2928), + [anon_sym_Continue] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_CONTINUE] = ACTIONS(2928), + [anon_sym_Debugger] = ACTIONS(2928), + [anon_sym_debugger] = ACTIONS(2928), + [anon_sym_DEBUGGER] = ACTIONS(2928), + [anon_sym_Default] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_DEFAULT] = ACTIONS(2928), + [anon_sym_Do] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_DO] = ACTIONS(2928), + [anon_sym_Else] = ACTIONS(2928), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_ELSE] = ACTIONS(2928), + [anon_sym_Final] = ACTIONS(2928), + [anon_sym_final] = ACTIONS(2928), + [anon_sym_FINAL] = ACTIONS(2928), + [anon_sym_For] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_FOR] = ACTIONS(2928), + [anon_sym_Function] = ACTIONS(2928), + [anon_sym_function] = ACTIONS(2928), + [anon_sym_FUNCTION] = ACTIONS(2928), + [anon_sym_If] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_IF] = ACTIONS(2928), + [anon_sym_Import] = ACTIONS(2928), + [anon_sym_import] = ACTIONS(2928), + [anon_sym_IMPORT] = ACTIONS(2928), + [anon_sym_Include] = ACTIONS(2928), + [anon_sym_include] = ACTIONS(2928), + [anon_sym_INCLUDE] = ACTIONS(2928), + [anon_sym_Interface] = ACTIONS(2928), + [anon_sym_interface] = ACTIONS(2928), + [anon_sym_INTERFACE] = ACTIONS(2928), + [anon_sym_New] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_NEW] = ACTIONS(2928), + [anon_sym_Package] = ACTIONS(2928), + [anon_sym_package] = ACTIONS(2928), + [anon_sym_PACKAGE] = ACTIONS(2928), + [anon_sym_Private] = ACTIONS(2928), + [anon_sym_private] = ACTIONS(2928), + [anon_sym_PRIVATE] = ACTIONS(2928), + [anon_sym_Property] = ACTIONS(2928), + [anon_sym_property] = ACTIONS(2928), + [anon_sym_PROPERTY] = ACTIONS(2928), + [anon_sym_Public] = ACTIONS(2928), + [anon_sym_public] = ACTIONS(2928), + [anon_sym_PUBLIC] = ACTIONS(2928), + [anon_sym_Remote] = ACTIONS(2928), + [anon_sym_remote] = ACTIONS(2928), + [anon_sym_REMOTE] = ACTIONS(2928), + [anon_sym_Return] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_RETURN] = ACTIONS(2928), + [anon_sym_Static] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_STATIC] = ACTIONS(2928), + [anon_sym_Switch] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_SWITCH] = ACTIONS(2928), + [anon_sym_Throw] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_THROW] = ACTIONS(2928), + [anon_sym_Try] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_TRY] = ACTIONS(2928), + [anon_sym_Var] = ACTIONS(2928), + [anon_sym_var] = ACTIONS(2928), + [anon_sym_VAR] = ACTIONS(2928), + [anon_sym_While] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_WHILE] = ACTIONS(2928), + [anon_sym_With] = ACTIONS(2928), + [anon_sym_with] = ACTIONS(2928), + [anon_sym_WITH] = ACTIONS(2928), + [sym_cf_comment] = ACTIONS(2926), + [sym__java_block_open] = ACTIONS(2926), + [sym__static_type_prefix] = ACTIONS(2926), }, [STATE(645)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_Query] = ACTIONS(2238), - [anon_sym_query] = ACTIONS(2238), - [anon_sym_QUERY] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2240), - [aux_sym_unary_operator_token1] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2238), - [aux_sym_number_token2] = ACTIONS(2238), - [anon_sym_This] = ACTIONS(2238), - [anon_sym_this] = ACTIONS(2238), - [anon_sym_THIS] = ACTIONS(2238), - [anon_sym_Super] = ACTIONS(2238), - [anon_sym_super] = ACTIONS(2238), - [anon_sym_SUPER] = ACTIONS(2238), - [anon_sym_True] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_TRUE] = ACTIONS(2238), - [anon_sym_False] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_FALSE] = ACTIONS(2238), - [anon_sym_Null] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_NULL] = ACTIONS(2238), - [anon_sym_Undefined] = ACTIONS(2238), - [anon_sym_undefined] = ACTIONS(2238), - [anon_sym_UNDEFINED] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [sym_hash_empty] = ACTIONS(2240), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_QueryExecute] = ACTIONS(2238), - [anon_sym_queryexecute] = ACTIONS(2238), - [anon_sym_QUERYEXECUTE] = ACTIONS(2238), - [anon_sym_queryExecute] = ACTIONS(2238), - [anon_sym_BQUOTE] = ACTIONS(2240), - [anon_sym_Abstract] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_ABSTRACT] = ACTIONS(2238), - [anon_sym_Component] = ACTIONS(2238), - [anon_sym_component] = ACTIONS(2238), - [anon_sym_COMPONENT] = ACTIONS(2238), - [anon_sym_Debugger] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_DEBUGGER] = ACTIONS(2238), - [anon_sym_Final] = ACTIONS(2238), - [anon_sym_final] = ACTIONS(2238), - [anon_sym_FINAL] = ACTIONS(2238), - [anon_sym_Function] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_FUNCTION] = ACTIONS(2238), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_Include] = ACTIONS(2238), - [anon_sym_include] = ACTIONS(2238), - [anon_sym_INCLUDE] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [anon_sym_New] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_NEW] = ACTIONS(2238), - [anon_sym_Package] = ACTIONS(2238), - [anon_sym_package] = ACTIONS(2238), - [anon_sym_PACKAGE] = ACTIONS(2238), - [anon_sym_Private] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_PRIVATE] = ACTIONS(2238), - [anon_sym_Public] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_PUBLIC] = ACTIONS(2238), - [anon_sym_Remote] = ACTIONS(2238), - [anon_sym_remote] = ACTIONS(2238), - [anon_sym_REMOTE] = ACTIONS(2238), - [anon_sym_Static] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_STATIC] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym__java_block_open] = ACTIONS(2240), - [sym__static_type_prefix] = ACTIONS(2240), + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_Query] = ACTIONS(2932), + [anon_sym_query] = ACTIONS(2932), + [anon_sym_QUERY] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [aux_sym_unary_operator_token1] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2932), + [aux_sym_number_token2] = ACTIONS(2930), + [anon_sym_This] = ACTIONS(2932), + [anon_sym_this] = ACTIONS(2932), + [anon_sym_THIS] = ACTIONS(2932), + [anon_sym_Super] = ACTIONS(2932), + [anon_sym_super] = ACTIONS(2932), + [anon_sym_SUPER] = ACTIONS(2932), + [anon_sym_True] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2932), + [anon_sym_TRUE] = ACTIONS(2932), + [anon_sym_False] = ACTIONS(2932), + [anon_sym_false] = ACTIONS(2932), + [anon_sym_FALSE] = ACTIONS(2932), + [anon_sym_Null] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_Undefined] = ACTIONS(2932), + [anon_sym_undefined] = ACTIONS(2932), + [anon_sym_UNDEFINED] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_POUND] = ACTIONS(2932), + [sym_hash_empty] = ACTIONS(2930), + [anon_sym_export] = ACTIONS(2932), + [anon_sym_QueryExecute] = ACTIONS(2932), + [anon_sym_queryexecute] = ACTIONS(2932), + [anon_sym_QUERYEXECUTE] = ACTIONS(2932), + [anon_sym_queryExecute] = ACTIONS(2932), + [anon_sym_BQUOTE] = ACTIONS(2932), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2930), + [anon_sym_Abstract] = ACTIONS(2932), + [anon_sym_abstract] = ACTIONS(2932), + [anon_sym_ABSTRACT] = ACTIONS(2932), + [anon_sym_Break] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_BREAK] = ACTIONS(2932), + [anon_sym_Case] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_CASE] = ACTIONS(2932), + [anon_sym_Component] = ACTIONS(2932), + [anon_sym_component] = ACTIONS(2932), + [anon_sym_COMPONENT] = ACTIONS(2932), + [anon_sym_Continue] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_CONTINUE] = ACTIONS(2932), + [anon_sym_Debugger] = ACTIONS(2932), + [anon_sym_debugger] = ACTIONS(2932), + [anon_sym_DEBUGGER] = ACTIONS(2932), + [anon_sym_Default] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_DEFAULT] = ACTIONS(2932), + [anon_sym_Do] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_DO] = ACTIONS(2932), + [anon_sym_Else] = ACTIONS(2932), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_ELSE] = ACTIONS(2932), + [anon_sym_Final] = ACTIONS(2932), + [anon_sym_final] = ACTIONS(2932), + [anon_sym_FINAL] = ACTIONS(2932), + [anon_sym_For] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_FOR] = ACTIONS(2932), + [anon_sym_Function] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2932), + [anon_sym_FUNCTION] = ACTIONS(2932), + [anon_sym_If] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_IF] = ACTIONS(2932), + [anon_sym_Import] = ACTIONS(2932), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_IMPORT] = ACTIONS(2932), + [anon_sym_Include] = ACTIONS(2932), + [anon_sym_include] = ACTIONS(2932), + [anon_sym_INCLUDE] = ACTIONS(2932), + [anon_sym_Interface] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2932), + [anon_sym_INTERFACE] = ACTIONS(2932), + [anon_sym_New] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_NEW] = ACTIONS(2932), + [anon_sym_Package] = ACTIONS(2932), + [anon_sym_package] = ACTIONS(2932), + [anon_sym_PACKAGE] = ACTIONS(2932), + [anon_sym_Private] = ACTIONS(2932), + [anon_sym_private] = ACTIONS(2932), + [anon_sym_PRIVATE] = ACTIONS(2932), + [anon_sym_Property] = ACTIONS(2932), + [anon_sym_property] = ACTIONS(2932), + [anon_sym_PROPERTY] = ACTIONS(2932), + [anon_sym_Public] = ACTIONS(2932), + [anon_sym_public] = ACTIONS(2932), + [anon_sym_PUBLIC] = ACTIONS(2932), + [anon_sym_Remote] = ACTIONS(2932), + [anon_sym_remote] = ACTIONS(2932), + [anon_sym_REMOTE] = ACTIONS(2932), + [anon_sym_Return] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_RETURN] = ACTIONS(2932), + [anon_sym_Static] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_STATIC] = ACTIONS(2932), + [anon_sym_Switch] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_SWITCH] = ACTIONS(2932), + [anon_sym_Throw] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_THROW] = ACTIONS(2932), + [anon_sym_Try] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_TRY] = ACTIONS(2932), + [anon_sym_Var] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2932), + [anon_sym_VAR] = ACTIONS(2932), + [anon_sym_While] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_WHILE] = ACTIONS(2932), + [anon_sym_With] = ACTIONS(2932), + [anon_sym_with] = ACTIONS(2932), + [anon_sym_WITH] = ACTIONS(2932), + [sym_cf_comment] = ACTIONS(2930), + [sym__java_block_open] = ACTIONS(2930), + [sym__static_type_prefix] = ACTIONS(2930), }, [STATE(646)] = { - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_Query] = ACTIONS(2890), - [anon_sym_query] = ACTIONS(2890), - [anon_sym_QUERY] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_unary_operator_token1] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_DQUOTE] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2890), - [aux_sym_number_token2] = ACTIONS(2888), - [anon_sym_This] = ACTIONS(2890), - [anon_sym_this] = ACTIONS(2890), - [anon_sym_THIS] = ACTIONS(2890), - [anon_sym_Super] = ACTIONS(2890), - [anon_sym_super] = ACTIONS(2890), - [anon_sym_SUPER] = ACTIONS(2890), - [anon_sym_True] = ACTIONS(2890), - [anon_sym_true] = ACTIONS(2890), - [anon_sym_TRUE] = ACTIONS(2890), - [anon_sym_False] = ACTIONS(2890), - [anon_sym_false] = ACTIONS(2890), - [anon_sym_FALSE] = ACTIONS(2890), - [anon_sym_Null] = ACTIONS(2890), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_NULL] = ACTIONS(2890), - [anon_sym_Undefined] = ACTIONS(2890), - [anon_sym_undefined] = ACTIONS(2890), - [anon_sym_UNDEFINED] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2890), - [anon_sym_set] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [sym_hash_empty] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_QueryExecute] = ACTIONS(2890), - [anon_sym_queryexecute] = ACTIONS(2890), - [anon_sym_QUERYEXECUTE] = ACTIONS(2890), - [anon_sym_queryExecute] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2888), - [anon_sym_Abstract] = ACTIONS(2890), - [anon_sym_abstract] = ACTIONS(2890), - [anon_sym_ABSTRACT] = ACTIONS(2890), - [anon_sym_Break] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_BREAK] = ACTIONS(2890), - [anon_sym_Case] = ACTIONS(2890), - [anon_sym_case] = ACTIONS(2890), - [anon_sym_CASE] = ACTIONS(2890), - [anon_sym_Component] = ACTIONS(2890), - [anon_sym_component] = ACTIONS(2890), - [anon_sym_COMPONENT] = ACTIONS(2890), - [anon_sym_Continue] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_CONTINUE] = ACTIONS(2890), - [anon_sym_Debugger] = ACTIONS(2890), - [anon_sym_debugger] = ACTIONS(2890), - [anon_sym_DEBUGGER] = ACTIONS(2890), - [anon_sym_Default] = ACTIONS(2890), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_DEFAULT] = ACTIONS(2890), - [anon_sym_Do] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_DO] = ACTIONS(2890), - [anon_sym_Else] = ACTIONS(2890), - [anon_sym_else] = ACTIONS(2890), - [anon_sym_ELSE] = ACTIONS(2890), - [anon_sym_Final] = ACTIONS(2890), - [anon_sym_final] = ACTIONS(2890), - [anon_sym_FINAL] = ACTIONS(2890), - [anon_sym_For] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_FOR] = ACTIONS(2890), - [anon_sym_Function] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_FUNCTION] = ACTIONS(2890), - [anon_sym_If] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_IF] = ACTIONS(2890), - [anon_sym_Import] = ACTIONS(2890), - [anon_sym_import] = ACTIONS(2890), - [anon_sym_IMPORT] = ACTIONS(2890), - [anon_sym_Include] = ACTIONS(2890), - [anon_sym_include] = ACTIONS(2890), - [anon_sym_INCLUDE] = ACTIONS(2890), - [anon_sym_Interface] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_INTERFACE] = ACTIONS(2890), - [anon_sym_New] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_NEW] = ACTIONS(2890), - [anon_sym_Package] = ACTIONS(2890), - [anon_sym_package] = ACTIONS(2890), - [anon_sym_PACKAGE] = ACTIONS(2890), - [anon_sym_Private] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_PRIVATE] = ACTIONS(2890), - [anon_sym_Property] = ACTIONS(2890), - [anon_sym_property] = ACTIONS(2890), - [anon_sym_PROPERTY] = ACTIONS(2890), - [anon_sym_Public] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_PUBLIC] = ACTIONS(2890), - [anon_sym_Remote] = ACTIONS(2890), - [anon_sym_remote] = ACTIONS(2890), - [anon_sym_REMOTE] = ACTIONS(2890), - [anon_sym_Return] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_RETURN] = ACTIONS(2890), - [anon_sym_Static] = ACTIONS(2890), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_STATIC] = ACTIONS(2890), - [anon_sym_Switch] = ACTIONS(2890), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_SWITCH] = ACTIONS(2890), - [anon_sym_Throw] = ACTIONS(2890), - [anon_sym_throw] = ACTIONS(2890), - [anon_sym_THROW] = ACTIONS(2890), - [anon_sym_Try] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_TRY] = ACTIONS(2890), - [anon_sym_Var] = ACTIONS(2890), - [anon_sym_var] = ACTIONS(2890), - [anon_sym_VAR] = ACTIONS(2890), - [anon_sym_While] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_WHILE] = ACTIONS(2890), - [anon_sym_With] = ACTIONS(2890), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_WITH] = ACTIONS(2890), - [sym_cf_comment] = ACTIONS(2888), - [sym__java_block_open] = ACTIONS(2888), - [sym__static_type_prefix] = ACTIONS(2888), + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_Query] = ACTIONS(2936), + [anon_sym_query] = ACTIONS(2936), + [anon_sym_QUERY] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [aux_sym_unary_operator_token1] = ACTIONS(2936), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2936), + [aux_sym_number_token2] = ACTIONS(2934), + [anon_sym_This] = ACTIONS(2936), + [anon_sym_this] = ACTIONS(2936), + [anon_sym_THIS] = ACTIONS(2936), + [anon_sym_Super] = ACTIONS(2936), + [anon_sym_super] = ACTIONS(2936), + [anon_sym_SUPER] = ACTIONS(2936), + [anon_sym_True] = ACTIONS(2936), + [anon_sym_true] = ACTIONS(2936), + [anon_sym_TRUE] = ACTIONS(2936), + [anon_sym_False] = ACTIONS(2936), + [anon_sym_false] = ACTIONS(2936), + [anon_sym_FALSE] = ACTIONS(2936), + [anon_sym_Null] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_Undefined] = ACTIONS(2936), + [anon_sym_undefined] = ACTIONS(2936), + [anon_sym_UNDEFINED] = ACTIONS(2936), + [anon_sym_get] = ACTIONS(2936), + [anon_sym_set] = ACTIONS(2936), + [anon_sym_POUND] = ACTIONS(2936), + [sym_hash_empty] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2936), + [anon_sym_QueryExecute] = ACTIONS(2936), + [anon_sym_queryexecute] = ACTIONS(2936), + [anon_sym_QUERYEXECUTE] = ACTIONS(2936), + [anon_sym_queryExecute] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2934), + [anon_sym_Abstract] = ACTIONS(2936), + [anon_sym_abstract] = ACTIONS(2936), + [anon_sym_ABSTRACT] = ACTIONS(2936), + [anon_sym_Break] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_BREAK] = ACTIONS(2936), + [anon_sym_Case] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_CASE] = ACTIONS(2936), + [anon_sym_Component] = ACTIONS(2936), + [anon_sym_component] = ACTIONS(2936), + [anon_sym_COMPONENT] = ACTIONS(2936), + [anon_sym_Continue] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_CONTINUE] = ACTIONS(2936), + [anon_sym_Debugger] = ACTIONS(2936), + [anon_sym_debugger] = ACTIONS(2936), + [anon_sym_DEBUGGER] = ACTIONS(2936), + [anon_sym_Default] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_DEFAULT] = ACTIONS(2936), + [anon_sym_Do] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_DO] = ACTIONS(2936), + [anon_sym_Else] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_ELSE] = ACTIONS(2936), + [anon_sym_Final] = ACTIONS(2936), + [anon_sym_final] = ACTIONS(2936), + [anon_sym_FINAL] = ACTIONS(2936), + [anon_sym_For] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_FOR] = ACTIONS(2936), + [anon_sym_Function] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2936), + [anon_sym_FUNCTION] = ACTIONS(2936), + [anon_sym_If] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_IF] = ACTIONS(2936), + [anon_sym_Import] = ACTIONS(2936), + [anon_sym_import] = ACTIONS(2936), + [anon_sym_IMPORT] = ACTIONS(2936), + [anon_sym_Include] = ACTIONS(2936), + [anon_sym_include] = ACTIONS(2936), + [anon_sym_INCLUDE] = ACTIONS(2936), + [anon_sym_Interface] = ACTIONS(2936), + [anon_sym_interface] = ACTIONS(2936), + [anon_sym_INTERFACE] = ACTIONS(2936), + [anon_sym_New] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_NEW] = ACTIONS(2936), + [anon_sym_Package] = ACTIONS(2936), + [anon_sym_package] = ACTIONS(2936), + [anon_sym_PACKAGE] = ACTIONS(2936), + [anon_sym_Private] = ACTIONS(2936), + [anon_sym_private] = ACTIONS(2936), + [anon_sym_PRIVATE] = ACTIONS(2936), + [anon_sym_Property] = ACTIONS(2936), + [anon_sym_property] = ACTIONS(2936), + [anon_sym_PROPERTY] = ACTIONS(2936), + [anon_sym_Public] = ACTIONS(2936), + [anon_sym_public] = ACTIONS(2936), + [anon_sym_PUBLIC] = ACTIONS(2936), + [anon_sym_Remote] = ACTIONS(2936), + [anon_sym_remote] = ACTIONS(2936), + [anon_sym_REMOTE] = ACTIONS(2936), + [anon_sym_Return] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_RETURN] = ACTIONS(2936), + [anon_sym_Static] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_STATIC] = ACTIONS(2936), + [anon_sym_Switch] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_SWITCH] = ACTIONS(2936), + [anon_sym_Throw] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_THROW] = ACTIONS(2936), + [anon_sym_Try] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_TRY] = ACTIONS(2936), + [anon_sym_Var] = ACTIONS(2936), + [anon_sym_var] = ACTIONS(2936), + [anon_sym_VAR] = ACTIONS(2936), + [anon_sym_While] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_WHILE] = ACTIONS(2936), + [anon_sym_With] = ACTIONS(2936), + [anon_sym_with] = ACTIONS(2936), + [anon_sym_WITH] = ACTIONS(2936), + [sym_cf_comment] = ACTIONS(2934), + [sym__java_block_open] = ACTIONS(2934), + [sym__static_type_prefix] = ACTIONS(2934), }, [STATE(647)] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_Query] = ACTIONS(2894), - [anon_sym_query] = ACTIONS(2894), - [anon_sym_QUERY] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_unary_operator_token1] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2894), - [aux_sym_number_token2] = ACTIONS(2892), - [anon_sym_This] = ACTIONS(2894), - [anon_sym_this] = ACTIONS(2894), - [anon_sym_THIS] = ACTIONS(2894), - [anon_sym_Super] = ACTIONS(2894), - [anon_sym_super] = ACTIONS(2894), - [anon_sym_SUPER] = ACTIONS(2894), - [anon_sym_True] = ACTIONS(2894), - [anon_sym_true] = ACTIONS(2894), - [anon_sym_TRUE] = ACTIONS(2894), - [anon_sym_False] = ACTIONS(2894), - [anon_sym_false] = ACTIONS(2894), - [anon_sym_FALSE] = ACTIONS(2894), - [anon_sym_Null] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_NULL] = ACTIONS(2894), - [anon_sym_Undefined] = ACTIONS(2894), - [anon_sym_undefined] = ACTIONS(2894), - [anon_sym_UNDEFINED] = ACTIONS(2894), - [anon_sym_get] = ACTIONS(2894), - [anon_sym_set] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [sym_hash_empty] = ACTIONS(2892), - [anon_sym_export] = ACTIONS(2894), - [anon_sym_QueryExecute] = ACTIONS(2894), - [anon_sym_queryexecute] = ACTIONS(2894), - [anon_sym_QUERYEXECUTE] = ACTIONS(2894), - [anon_sym_queryExecute] = ACTIONS(2894), - [anon_sym_BQUOTE] = ACTIONS(2894), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2892), - [anon_sym_Abstract] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_ABSTRACT] = ACTIONS(2894), - [anon_sym_Break] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_BREAK] = ACTIONS(2894), - [anon_sym_Case] = ACTIONS(2894), - [anon_sym_case] = ACTIONS(2894), - [anon_sym_CASE] = ACTIONS(2894), - [anon_sym_Component] = ACTIONS(2894), - [anon_sym_component] = ACTIONS(2894), - [anon_sym_COMPONENT] = ACTIONS(2894), - [anon_sym_Continue] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_CONTINUE] = ACTIONS(2894), - [anon_sym_Debugger] = ACTIONS(2894), - [anon_sym_debugger] = ACTIONS(2894), - [anon_sym_DEBUGGER] = ACTIONS(2894), - [anon_sym_Default] = ACTIONS(2894), - [anon_sym_default] = ACTIONS(2894), - [anon_sym_DEFAULT] = ACTIONS(2894), - [anon_sym_Do] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_DO] = ACTIONS(2894), - [anon_sym_Else] = ACTIONS(2894), - [anon_sym_else] = ACTIONS(2894), - [anon_sym_ELSE] = ACTIONS(2894), - [anon_sym_Final] = ACTIONS(2894), - [anon_sym_final] = ACTIONS(2894), - [anon_sym_FINAL] = ACTIONS(2894), - [anon_sym_For] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_FOR] = ACTIONS(2894), - [anon_sym_Function] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_FUNCTION] = ACTIONS(2894), - [anon_sym_If] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_IF] = ACTIONS(2894), - [anon_sym_Import] = ACTIONS(2894), - [anon_sym_import] = ACTIONS(2894), - [anon_sym_IMPORT] = ACTIONS(2894), - [anon_sym_Include] = ACTIONS(2894), - [anon_sym_include] = ACTIONS(2894), - [anon_sym_INCLUDE] = ACTIONS(2894), - [anon_sym_Interface] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_INTERFACE] = ACTIONS(2894), - [anon_sym_New] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_NEW] = ACTIONS(2894), - [anon_sym_Package] = ACTIONS(2894), - [anon_sym_package] = ACTIONS(2894), - [anon_sym_PACKAGE] = ACTIONS(2894), - [anon_sym_Private] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_PRIVATE] = ACTIONS(2894), - [anon_sym_Property] = ACTIONS(2894), - [anon_sym_property] = ACTIONS(2894), - [anon_sym_PROPERTY] = ACTIONS(2894), - [anon_sym_Public] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_PUBLIC] = ACTIONS(2894), - [anon_sym_Remote] = ACTIONS(2894), - [anon_sym_remote] = ACTIONS(2894), - [anon_sym_REMOTE] = ACTIONS(2894), - [anon_sym_Return] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_RETURN] = ACTIONS(2894), - [anon_sym_Static] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_STATIC] = ACTIONS(2894), - [anon_sym_Switch] = ACTIONS(2894), - [anon_sym_switch] = ACTIONS(2894), - [anon_sym_SWITCH] = ACTIONS(2894), - [anon_sym_Throw] = ACTIONS(2894), - [anon_sym_throw] = ACTIONS(2894), - [anon_sym_THROW] = ACTIONS(2894), - [anon_sym_Try] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_TRY] = ACTIONS(2894), - [anon_sym_Var] = ACTIONS(2894), - [anon_sym_var] = ACTIONS(2894), - [anon_sym_VAR] = ACTIONS(2894), - [anon_sym_While] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_WHILE] = ACTIONS(2894), - [anon_sym_With] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_WITH] = ACTIONS(2894), - [sym_cf_comment] = ACTIONS(2892), - [sym__java_block_open] = ACTIONS(2892), - [sym__static_type_prefix] = ACTIONS(2892), + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_Query] = ACTIONS(2940), + [anon_sym_query] = ACTIONS(2940), + [anon_sym_QUERY] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [aux_sym_unary_operator_token1] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2940), + [aux_sym_number_token2] = ACTIONS(2938), + [anon_sym_This] = ACTIONS(2940), + [anon_sym_this] = ACTIONS(2940), + [anon_sym_THIS] = ACTIONS(2940), + [anon_sym_Super] = ACTIONS(2940), + [anon_sym_super] = ACTIONS(2940), + [anon_sym_SUPER] = ACTIONS(2940), + [anon_sym_True] = ACTIONS(2940), + [anon_sym_true] = ACTIONS(2940), + [anon_sym_TRUE] = ACTIONS(2940), + [anon_sym_False] = ACTIONS(2940), + [anon_sym_false] = ACTIONS(2940), + [anon_sym_FALSE] = ACTIONS(2940), + [anon_sym_Null] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_Undefined] = ACTIONS(2940), + [anon_sym_undefined] = ACTIONS(2940), + [anon_sym_UNDEFINED] = ACTIONS(2940), + [anon_sym_get] = ACTIONS(2940), + [anon_sym_set] = ACTIONS(2940), + [anon_sym_POUND] = ACTIONS(2940), + [sym_hash_empty] = ACTIONS(2938), + [anon_sym_export] = ACTIONS(2940), + [anon_sym_QueryExecute] = ACTIONS(2940), + [anon_sym_queryexecute] = ACTIONS(2940), + [anon_sym_QUERYEXECUTE] = ACTIONS(2940), + [anon_sym_queryExecute] = ACTIONS(2940), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2938), + [anon_sym_Abstract] = ACTIONS(2940), + [anon_sym_abstract] = ACTIONS(2940), + [anon_sym_ABSTRACT] = ACTIONS(2940), + [anon_sym_Break] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_BREAK] = ACTIONS(2940), + [anon_sym_Case] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_CASE] = ACTIONS(2940), + [anon_sym_Component] = ACTIONS(2940), + [anon_sym_component] = ACTIONS(2940), + [anon_sym_COMPONENT] = ACTIONS(2940), + [anon_sym_Continue] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_CONTINUE] = ACTIONS(2940), + [anon_sym_Debugger] = ACTIONS(2940), + [anon_sym_debugger] = ACTIONS(2940), + [anon_sym_DEBUGGER] = ACTIONS(2940), + [anon_sym_Default] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_DEFAULT] = ACTIONS(2940), + [anon_sym_Do] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_DO] = ACTIONS(2940), + [anon_sym_Else] = ACTIONS(2940), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_ELSE] = ACTIONS(2940), + [anon_sym_Final] = ACTIONS(2940), + [anon_sym_final] = ACTIONS(2940), + [anon_sym_FINAL] = ACTIONS(2940), + [anon_sym_For] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_FOR] = ACTIONS(2940), + [anon_sym_Function] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2940), + [anon_sym_FUNCTION] = ACTIONS(2940), + [anon_sym_If] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_IF] = ACTIONS(2940), + [anon_sym_Import] = ACTIONS(2940), + [anon_sym_import] = ACTIONS(2940), + [anon_sym_IMPORT] = ACTIONS(2940), + [anon_sym_Include] = ACTIONS(2940), + [anon_sym_include] = ACTIONS(2940), + [anon_sym_INCLUDE] = ACTIONS(2940), + [anon_sym_Interface] = ACTIONS(2940), + [anon_sym_interface] = ACTIONS(2940), + [anon_sym_INTERFACE] = ACTIONS(2940), + [anon_sym_New] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_NEW] = ACTIONS(2940), + [anon_sym_Package] = ACTIONS(2940), + [anon_sym_package] = ACTIONS(2940), + [anon_sym_PACKAGE] = ACTIONS(2940), + [anon_sym_Private] = ACTIONS(2940), + [anon_sym_private] = ACTIONS(2940), + [anon_sym_PRIVATE] = ACTIONS(2940), + [anon_sym_Property] = ACTIONS(2940), + [anon_sym_property] = ACTIONS(2940), + [anon_sym_PROPERTY] = ACTIONS(2940), + [anon_sym_Public] = ACTIONS(2940), + [anon_sym_public] = ACTIONS(2940), + [anon_sym_PUBLIC] = ACTIONS(2940), + [anon_sym_Remote] = ACTIONS(2940), + [anon_sym_remote] = ACTIONS(2940), + [anon_sym_REMOTE] = ACTIONS(2940), + [anon_sym_Return] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_RETURN] = ACTIONS(2940), + [anon_sym_Static] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_STATIC] = ACTIONS(2940), + [anon_sym_Switch] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_SWITCH] = ACTIONS(2940), + [anon_sym_Throw] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_THROW] = ACTIONS(2940), + [anon_sym_Try] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_TRY] = ACTIONS(2940), + [anon_sym_Var] = ACTIONS(2940), + [anon_sym_var] = ACTIONS(2940), + [anon_sym_VAR] = ACTIONS(2940), + [anon_sym_While] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_WHILE] = ACTIONS(2940), + [anon_sym_With] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2940), + [anon_sym_WITH] = ACTIONS(2940), + [sym_cf_comment] = ACTIONS(2938), + [sym__java_block_open] = ACTIONS(2938), + [sym__static_type_prefix] = ACTIONS(2938), }, [STATE(648)] = { - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_Query] = ACTIONS(2898), - [anon_sym_query] = ACTIONS(2898), - [anon_sym_QUERY] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_unary_operator_token1] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2898), - [aux_sym_number_token2] = ACTIONS(2896), - [anon_sym_This] = ACTIONS(2898), - [anon_sym_this] = ACTIONS(2898), - [anon_sym_THIS] = ACTIONS(2898), - [anon_sym_Super] = ACTIONS(2898), - [anon_sym_super] = ACTIONS(2898), - [anon_sym_SUPER] = ACTIONS(2898), - [anon_sym_True] = ACTIONS(2898), - [anon_sym_true] = ACTIONS(2898), - [anon_sym_TRUE] = ACTIONS(2898), - [anon_sym_False] = ACTIONS(2898), - [anon_sym_false] = ACTIONS(2898), - [anon_sym_FALSE] = ACTIONS(2898), - [anon_sym_Null] = ACTIONS(2898), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_NULL] = ACTIONS(2898), - [anon_sym_Undefined] = ACTIONS(2898), - [anon_sym_undefined] = ACTIONS(2898), - [anon_sym_UNDEFINED] = ACTIONS(2898), - [anon_sym_get] = ACTIONS(2898), - [anon_sym_set] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [sym_hash_empty] = ACTIONS(2896), - [anon_sym_export] = ACTIONS(2898), - [anon_sym_QueryExecute] = ACTIONS(2898), - [anon_sym_queryexecute] = ACTIONS(2898), - [anon_sym_QUERYEXECUTE] = ACTIONS(2898), - [anon_sym_queryExecute] = ACTIONS(2898), - [anon_sym_BQUOTE] = ACTIONS(2898), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2896), - [anon_sym_Abstract] = ACTIONS(2898), - [anon_sym_abstract] = ACTIONS(2898), - [anon_sym_ABSTRACT] = ACTIONS(2898), - [anon_sym_Break] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_BREAK] = ACTIONS(2898), - [anon_sym_Case] = ACTIONS(2898), - [anon_sym_case] = ACTIONS(2898), - [anon_sym_CASE] = ACTIONS(2898), - [anon_sym_Component] = ACTIONS(2898), - [anon_sym_component] = ACTIONS(2898), - [anon_sym_COMPONENT] = ACTIONS(2898), - [anon_sym_Continue] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_CONTINUE] = ACTIONS(2898), - [anon_sym_Debugger] = ACTIONS(2898), - [anon_sym_debugger] = ACTIONS(2898), - [anon_sym_DEBUGGER] = ACTIONS(2898), - [anon_sym_Default] = ACTIONS(2898), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_DEFAULT] = ACTIONS(2898), - [anon_sym_Do] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_DO] = ACTIONS(2898), - [anon_sym_Else] = ACTIONS(2898), - [anon_sym_else] = ACTIONS(2898), - [anon_sym_ELSE] = ACTIONS(2898), - [anon_sym_Final] = ACTIONS(2898), - [anon_sym_final] = ACTIONS(2898), - [anon_sym_FINAL] = ACTIONS(2898), - [anon_sym_For] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_FOR] = ACTIONS(2898), - [anon_sym_Function] = ACTIONS(2898), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_FUNCTION] = ACTIONS(2898), - [anon_sym_If] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_IF] = ACTIONS(2898), - [anon_sym_Import] = ACTIONS(2898), - [anon_sym_import] = ACTIONS(2898), - [anon_sym_IMPORT] = ACTIONS(2898), - [anon_sym_Include] = ACTIONS(2898), - [anon_sym_include] = ACTIONS(2898), - [anon_sym_INCLUDE] = ACTIONS(2898), - [anon_sym_Interface] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_INTERFACE] = ACTIONS(2898), - [anon_sym_New] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_NEW] = ACTIONS(2898), - [anon_sym_Package] = ACTIONS(2898), - [anon_sym_package] = ACTIONS(2898), - [anon_sym_PACKAGE] = ACTIONS(2898), - [anon_sym_Private] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_PRIVATE] = ACTIONS(2898), - [anon_sym_Property] = ACTIONS(2898), - [anon_sym_property] = ACTIONS(2898), - [anon_sym_PROPERTY] = ACTIONS(2898), - [anon_sym_Public] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_PUBLIC] = ACTIONS(2898), - [anon_sym_Remote] = ACTIONS(2898), - [anon_sym_remote] = ACTIONS(2898), - [anon_sym_REMOTE] = ACTIONS(2898), - [anon_sym_Return] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_RETURN] = ACTIONS(2898), - [anon_sym_Static] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_STATIC] = ACTIONS(2898), - [anon_sym_Switch] = ACTIONS(2898), - [anon_sym_switch] = ACTIONS(2898), - [anon_sym_SWITCH] = ACTIONS(2898), - [anon_sym_Throw] = ACTIONS(2898), - [anon_sym_throw] = ACTIONS(2898), - [anon_sym_THROW] = ACTIONS(2898), - [anon_sym_Try] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_TRY] = ACTIONS(2898), - [anon_sym_Var] = ACTIONS(2898), - [anon_sym_var] = ACTIONS(2898), - [anon_sym_VAR] = ACTIONS(2898), - [anon_sym_While] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_WHILE] = ACTIONS(2898), - [anon_sym_With] = ACTIONS(2898), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_WITH] = ACTIONS(2898), - [sym_cf_comment] = ACTIONS(2896), - [sym__java_block_open] = ACTIONS(2896), - [sym__static_type_prefix] = ACTIONS(2896), + [ts_builtin_sym_end] = ACTIONS(2942), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_Query] = ACTIONS(2944), + [anon_sym_query] = ACTIONS(2944), + [anon_sym_QUERY] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [aux_sym_unary_operator_token1] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2944), + [aux_sym_number_token2] = ACTIONS(2942), + [anon_sym_This] = ACTIONS(2944), + [anon_sym_this] = ACTIONS(2944), + [anon_sym_THIS] = ACTIONS(2944), + [anon_sym_Super] = ACTIONS(2944), + [anon_sym_super] = ACTIONS(2944), + [anon_sym_SUPER] = ACTIONS(2944), + [anon_sym_True] = ACTIONS(2944), + [anon_sym_true] = ACTIONS(2944), + [anon_sym_TRUE] = ACTIONS(2944), + [anon_sym_False] = ACTIONS(2944), + [anon_sym_false] = ACTIONS(2944), + [anon_sym_FALSE] = ACTIONS(2944), + [anon_sym_Null] = ACTIONS(2944), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_Undefined] = ACTIONS(2944), + [anon_sym_undefined] = ACTIONS(2944), + [anon_sym_UNDEFINED] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(2944), + [sym_hash_empty] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_QueryExecute] = ACTIONS(2944), + [anon_sym_queryexecute] = ACTIONS(2944), + [anon_sym_QUERYEXECUTE] = ACTIONS(2944), + [anon_sym_queryExecute] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2942), + [anon_sym_Abstract] = ACTIONS(2944), + [anon_sym_abstract] = ACTIONS(2944), + [anon_sym_ABSTRACT] = ACTIONS(2944), + [anon_sym_Break] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_BREAK] = ACTIONS(2944), + [anon_sym_Case] = ACTIONS(2944), + [anon_sym_case] = ACTIONS(2944), + [anon_sym_CASE] = ACTIONS(2944), + [anon_sym_Component] = ACTIONS(2944), + [anon_sym_component] = ACTIONS(2944), + [anon_sym_COMPONENT] = ACTIONS(2944), + [anon_sym_Continue] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_CONTINUE] = ACTIONS(2944), + [anon_sym_Debugger] = ACTIONS(2944), + [anon_sym_debugger] = ACTIONS(2944), + [anon_sym_DEBUGGER] = ACTIONS(2944), + [anon_sym_Default] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_DEFAULT] = ACTIONS(2944), + [anon_sym_Do] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_DO] = ACTIONS(2944), + [anon_sym_Else] = ACTIONS(2944), + [anon_sym_else] = ACTIONS(2944), + [anon_sym_ELSE] = ACTIONS(2944), + [anon_sym_Final] = ACTIONS(2944), + [anon_sym_final] = ACTIONS(2944), + [anon_sym_FINAL] = ACTIONS(2944), + [anon_sym_For] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_FOR] = ACTIONS(2944), + [anon_sym_Function] = ACTIONS(2944), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_FUNCTION] = ACTIONS(2944), + [anon_sym_If] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_IF] = ACTIONS(2944), + [anon_sym_Import] = ACTIONS(2944), + [anon_sym_import] = ACTIONS(2944), + [anon_sym_IMPORT] = ACTIONS(2944), + [anon_sym_Include] = ACTIONS(2944), + [anon_sym_include] = ACTIONS(2944), + [anon_sym_INCLUDE] = ACTIONS(2944), + [anon_sym_Interface] = ACTIONS(2944), + [anon_sym_interface] = ACTIONS(2944), + [anon_sym_INTERFACE] = ACTIONS(2944), + [anon_sym_New] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_NEW] = ACTIONS(2944), + [anon_sym_Package] = ACTIONS(2944), + [anon_sym_package] = ACTIONS(2944), + [anon_sym_PACKAGE] = ACTIONS(2944), + [anon_sym_Private] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_PRIVATE] = ACTIONS(2944), + [anon_sym_Property] = ACTIONS(2944), + [anon_sym_property] = ACTIONS(2944), + [anon_sym_PROPERTY] = ACTIONS(2944), + [anon_sym_Public] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_PUBLIC] = ACTIONS(2944), + [anon_sym_Remote] = ACTIONS(2944), + [anon_sym_remote] = ACTIONS(2944), + [anon_sym_REMOTE] = ACTIONS(2944), + [anon_sym_Return] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_RETURN] = ACTIONS(2944), + [anon_sym_Static] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_STATIC] = ACTIONS(2944), + [anon_sym_Switch] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_SWITCH] = ACTIONS(2944), + [anon_sym_Throw] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_THROW] = ACTIONS(2944), + [anon_sym_Try] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_TRY] = ACTIONS(2944), + [anon_sym_Var] = ACTIONS(2944), + [anon_sym_var] = ACTIONS(2944), + [anon_sym_VAR] = ACTIONS(2944), + [anon_sym_While] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_WHILE] = ACTIONS(2944), + [anon_sym_With] = ACTIONS(2944), + [anon_sym_with] = ACTIONS(2944), + [anon_sym_WITH] = ACTIONS(2944), + [sym_cf_comment] = ACTIONS(2942), + [sym__java_block_open] = ACTIONS(2942), + [sym__static_type_prefix] = ACTIONS(2942), }, [STATE(649)] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_Query] = ACTIONS(2902), - [anon_sym_query] = ACTIONS(2902), - [anon_sym_QUERY] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_unary_operator_token1] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2902), - [aux_sym_number_token2] = ACTIONS(2900), - [anon_sym_This] = ACTIONS(2902), - [anon_sym_this] = ACTIONS(2902), - [anon_sym_THIS] = ACTIONS(2902), - [anon_sym_Super] = ACTIONS(2902), - [anon_sym_super] = ACTIONS(2902), - [anon_sym_SUPER] = ACTIONS(2902), - [anon_sym_True] = ACTIONS(2902), - [anon_sym_true] = ACTIONS(2902), - [anon_sym_TRUE] = ACTIONS(2902), - [anon_sym_False] = ACTIONS(2902), - [anon_sym_false] = ACTIONS(2902), - [anon_sym_FALSE] = ACTIONS(2902), - [anon_sym_Null] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2902), - [anon_sym_NULL] = ACTIONS(2902), - [anon_sym_Undefined] = ACTIONS(2902), - [anon_sym_undefined] = ACTIONS(2902), - [anon_sym_UNDEFINED] = ACTIONS(2902), - [anon_sym_get] = ACTIONS(2902), - [anon_sym_set] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [sym_hash_empty] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2902), - [anon_sym_QueryExecute] = ACTIONS(2902), - [anon_sym_queryexecute] = ACTIONS(2902), - [anon_sym_QUERYEXECUTE] = ACTIONS(2902), - [anon_sym_queryExecute] = ACTIONS(2902), - [anon_sym_BQUOTE] = ACTIONS(2902), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2900), - [anon_sym_Abstract] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_ABSTRACT] = ACTIONS(2902), - [anon_sym_Break] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_BREAK] = ACTIONS(2902), - [anon_sym_Case] = ACTIONS(2902), - [anon_sym_case] = ACTIONS(2902), - [anon_sym_CASE] = ACTIONS(2902), - [anon_sym_Component] = ACTIONS(2902), - [anon_sym_component] = ACTIONS(2902), - [anon_sym_COMPONENT] = ACTIONS(2902), - [anon_sym_Continue] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_CONTINUE] = ACTIONS(2902), - [anon_sym_Debugger] = ACTIONS(2902), - [anon_sym_debugger] = ACTIONS(2902), - [anon_sym_DEBUGGER] = ACTIONS(2902), - [anon_sym_Default] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_DEFAULT] = ACTIONS(2902), - [anon_sym_Do] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_DO] = ACTIONS(2902), - [anon_sym_Else] = ACTIONS(2902), - [anon_sym_else] = ACTIONS(2902), - [anon_sym_ELSE] = ACTIONS(2902), - [anon_sym_Final] = ACTIONS(2902), - [anon_sym_final] = ACTIONS(2902), - [anon_sym_FINAL] = ACTIONS(2902), - [anon_sym_For] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_FOR] = ACTIONS(2902), - [anon_sym_Function] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_FUNCTION] = ACTIONS(2902), - [anon_sym_If] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_IF] = ACTIONS(2902), - [anon_sym_Import] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_IMPORT] = ACTIONS(2902), - [anon_sym_Include] = ACTIONS(2902), - [anon_sym_include] = ACTIONS(2902), - [anon_sym_INCLUDE] = ACTIONS(2902), - [anon_sym_Interface] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_INTERFACE] = ACTIONS(2902), - [anon_sym_New] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_NEW] = ACTIONS(2902), - [anon_sym_Package] = ACTIONS(2902), - [anon_sym_package] = ACTIONS(2902), - [anon_sym_PACKAGE] = ACTIONS(2902), - [anon_sym_Private] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_PRIVATE] = ACTIONS(2902), - [anon_sym_Property] = ACTIONS(2902), - [anon_sym_property] = ACTIONS(2902), - [anon_sym_PROPERTY] = ACTIONS(2902), - [anon_sym_Public] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_PUBLIC] = ACTIONS(2902), - [anon_sym_Remote] = ACTIONS(2902), - [anon_sym_remote] = ACTIONS(2902), - [anon_sym_REMOTE] = ACTIONS(2902), - [anon_sym_Return] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_RETURN] = ACTIONS(2902), - [anon_sym_Static] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_STATIC] = ACTIONS(2902), - [anon_sym_Switch] = ACTIONS(2902), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_SWITCH] = ACTIONS(2902), - [anon_sym_Throw] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_THROW] = ACTIONS(2902), - [anon_sym_Try] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_TRY] = ACTIONS(2902), - [anon_sym_Var] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [anon_sym_VAR] = ACTIONS(2902), - [anon_sym_While] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_WHILE] = ACTIONS(2902), - [anon_sym_With] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2902), - [anon_sym_WITH] = ACTIONS(2902), - [sym_cf_comment] = ACTIONS(2900), - [sym__java_block_open] = ACTIONS(2900), - [sym__static_type_prefix] = ACTIONS(2900), + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_Query] = ACTIONS(2948), + [anon_sym_query] = ACTIONS(2948), + [anon_sym_QUERY] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_unary_operator_token1] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2948), + [aux_sym_number_token2] = ACTIONS(2946), + [anon_sym_This] = ACTIONS(2948), + [anon_sym_this] = ACTIONS(2948), + [anon_sym_THIS] = ACTIONS(2948), + [anon_sym_Super] = ACTIONS(2948), + [anon_sym_super] = ACTIONS(2948), + [anon_sym_SUPER] = ACTIONS(2948), + [anon_sym_True] = ACTIONS(2948), + [anon_sym_true] = ACTIONS(2948), + [anon_sym_TRUE] = ACTIONS(2948), + [anon_sym_False] = ACTIONS(2948), + [anon_sym_false] = ACTIONS(2948), + [anon_sym_FALSE] = ACTIONS(2948), + [anon_sym_Null] = ACTIONS(2948), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_Undefined] = ACTIONS(2948), + [anon_sym_undefined] = ACTIONS(2948), + [anon_sym_UNDEFINED] = ACTIONS(2948), + [anon_sym_get] = ACTIONS(2948), + [anon_sym_set] = ACTIONS(2948), + [anon_sym_POUND] = ACTIONS(2948), + [sym_hash_empty] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2948), + [anon_sym_QueryExecute] = ACTIONS(2948), + [anon_sym_queryexecute] = ACTIONS(2948), + [anon_sym_QUERYEXECUTE] = ACTIONS(2948), + [anon_sym_queryExecute] = ACTIONS(2948), + [anon_sym_BQUOTE] = ACTIONS(2948), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2946), + [anon_sym_Abstract] = ACTIONS(2948), + [anon_sym_abstract] = ACTIONS(2948), + [anon_sym_ABSTRACT] = ACTIONS(2948), + [anon_sym_Break] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_BREAK] = ACTIONS(2948), + [anon_sym_Case] = ACTIONS(2948), + [anon_sym_case] = ACTIONS(2948), + [anon_sym_CASE] = ACTIONS(2948), + [anon_sym_Component] = ACTIONS(2948), + [anon_sym_component] = ACTIONS(2948), + [anon_sym_COMPONENT] = ACTIONS(2948), + [anon_sym_Continue] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_CONTINUE] = ACTIONS(2948), + [anon_sym_Debugger] = ACTIONS(2948), + [anon_sym_debugger] = ACTIONS(2948), + [anon_sym_DEBUGGER] = ACTIONS(2948), + [anon_sym_Default] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_DEFAULT] = ACTIONS(2948), + [anon_sym_Do] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_DO] = ACTIONS(2948), + [anon_sym_Else] = ACTIONS(2948), + [anon_sym_else] = ACTIONS(2948), + [anon_sym_ELSE] = ACTIONS(2948), + [anon_sym_Final] = ACTIONS(2948), + [anon_sym_final] = ACTIONS(2948), + [anon_sym_FINAL] = ACTIONS(2948), + [anon_sym_For] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_FOR] = ACTIONS(2948), + [anon_sym_Function] = ACTIONS(2948), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_FUNCTION] = ACTIONS(2948), + [anon_sym_If] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_IF] = ACTIONS(2948), + [anon_sym_Import] = ACTIONS(2948), + [anon_sym_import] = ACTIONS(2948), + [anon_sym_IMPORT] = ACTIONS(2948), + [anon_sym_Include] = ACTIONS(2948), + [anon_sym_include] = ACTIONS(2948), + [anon_sym_INCLUDE] = ACTIONS(2948), + [anon_sym_Interface] = ACTIONS(2948), + [anon_sym_interface] = ACTIONS(2948), + [anon_sym_INTERFACE] = ACTIONS(2948), + [anon_sym_New] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_NEW] = ACTIONS(2948), + [anon_sym_Package] = ACTIONS(2948), + [anon_sym_package] = ACTIONS(2948), + [anon_sym_PACKAGE] = ACTIONS(2948), + [anon_sym_Private] = ACTIONS(2948), + [anon_sym_private] = ACTIONS(2948), + [anon_sym_PRIVATE] = ACTIONS(2948), + [anon_sym_Property] = ACTIONS(2948), + [anon_sym_property] = ACTIONS(2948), + [anon_sym_PROPERTY] = ACTIONS(2948), + [anon_sym_Public] = ACTIONS(2948), + [anon_sym_public] = ACTIONS(2948), + [anon_sym_PUBLIC] = ACTIONS(2948), + [anon_sym_Remote] = ACTIONS(2948), + [anon_sym_remote] = ACTIONS(2948), + [anon_sym_REMOTE] = ACTIONS(2948), + [anon_sym_Return] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_RETURN] = ACTIONS(2948), + [anon_sym_Static] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_STATIC] = ACTIONS(2948), + [anon_sym_Switch] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_SWITCH] = ACTIONS(2948), + [anon_sym_Throw] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_THROW] = ACTIONS(2948), + [anon_sym_Try] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_TRY] = ACTIONS(2948), + [anon_sym_Var] = ACTIONS(2948), + [anon_sym_var] = ACTIONS(2948), + [anon_sym_VAR] = ACTIONS(2948), + [anon_sym_While] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_WHILE] = ACTIONS(2948), + [anon_sym_With] = ACTIONS(2948), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_WITH] = ACTIONS(2948), + [sym_cf_comment] = ACTIONS(2946), + [sym__java_block_open] = ACTIONS(2946), + [sym__static_type_prefix] = ACTIONS(2946), }, [STATE(650)] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_Query] = ACTIONS(2906), - [anon_sym_query] = ACTIONS(2906), - [anon_sym_QUERY] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [aux_sym_unary_operator_token1] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2904), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2906), - [aux_sym_number_token2] = ACTIONS(2904), - [anon_sym_This] = ACTIONS(2906), - [anon_sym_this] = ACTIONS(2906), - [anon_sym_THIS] = ACTIONS(2906), - [anon_sym_Super] = ACTIONS(2906), - [anon_sym_super] = ACTIONS(2906), - [anon_sym_SUPER] = ACTIONS(2906), - [anon_sym_True] = ACTIONS(2906), - [anon_sym_true] = ACTIONS(2906), - [anon_sym_TRUE] = ACTIONS(2906), - [anon_sym_False] = ACTIONS(2906), - [anon_sym_false] = ACTIONS(2906), - [anon_sym_FALSE] = ACTIONS(2906), - [anon_sym_Null] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2906), - [anon_sym_NULL] = ACTIONS(2906), - [anon_sym_Undefined] = ACTIONS(2906), - [anon_sym_undefined] = ACTIONS(2906), - [anon_sym_UNDEFINED] = ACTIONS(2906), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [sym_hash_empty] = ACTIONS(2904), - [anon_sym_export] = ACTIONS(2906), - [anon_sym_QueryExecute] = ACTIONS(2906), - [anon_sym_queryexecute] = ACTIONS(2906), - [anon_sym_QUERYEXECUTE] = ACTIONS(2906), - [anon_sym_queryExecute] = ACTIONS(2906), - [anon_sym_BQUOTE] = ACTIONS(2906), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2904), - [anon_sym_Abstract] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_ABSTRACT] = ACTIONS(2906), - [anon_sym_Break] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_BREAK] = ACTIONS(2906), - [anon_sym_Case] = ACTIONS(2906), - [anon_sym_case] = ACTIONS(2906), - [anon_sym_CASE] = ACTIONS(2906), - [anon_sym_Component] = ACTIONS(2906), - [anon_sym_component] = ACTIONS(2906), - [anon_sym_COMPONENT] = ACTIONS(2906), - [anon_sym_Continue] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_CONTINUE] = ACTIONS(2906), - [anon_sym_Debugger] = ACTIONS(2906), - [anon_sym_debugger] = ACTIONS(2906), - [anon_sym_DEBUGGER] = ACTIONS(2906), - [anon_sym_Default] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_DEFAULT] = ACTIONS(2906), - [anon_sym_Do] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_DO] = ACTIONS(2906), - [anon_sym_Else] = ACTIONS(2906), - [anon_sym_else] = ACTIONS(2906), - [anon_sym_ELSE] = ACTIONS(2906), - [anon_sym_Final] = ACTIONS(2906), - [anon_sym_final] = ACTIONS(2906), - [anon_sym_FINAL] = ACTIONS(2906), - [anon_sym_For] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_FOR] = ACTIONS(2906), - [anon_sym_Function] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_FUNCTION] = ACTIONS(2906), - [anon_sym_If] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_IF] = ACTIONS(2906), - [anon_sym_Import] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_IMPORT] = ACTIONS(2906), - [anon_sym_Include] = ACTIONS(2906), - [anon_sym_include] = ACTIONS(2906), - [anon_sym_INCLUDE] = ACTIONS(2906), - [anon_sym_Interface] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_INTERFACE] = ACTIONS(2906), - [anon_sym_New] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_NEW] = ACTIONS(2906), - [anon_sym_Package] = ACTIONS(2906), - [anon_sym_package] = ACTIONS(2906), - [anon_sym_PACKAGE] = ACTIONS(2906), - [anon_sym_Private] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_PRIVATE] = ACTIONS(2906), - [anon_sym_Property] = ACTIONS(2906), - [anon_sym_property] = ACTIONS(2906), - [anon_sym_PROPERTY] = ACTIONS(2906), - [anon_sym_Public] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_PUBLIC] = ACTIONS(2906), - [anon_sym_Remote] = ACTIONS(2906), - [anon_sym_remote] = ACTIONS(2906), - [anon_sym_REMOTE] = ACTIONS(2906), - [anon_sym_Return] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_RETURN] = ACTIONS(2906), - [anon_sym_Static] = ACTIONS(2906), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_STATIC] = ACTIONS(2906), - [anon_sym_Switch] = ACTIONS(2906), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_SWITCH] = ACTIONS(2906), - [anon_sym_Throw] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_THROW] = ACTIONS(2906), - [anon_sym_Try] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_TRY] = ACTIONS(2906), - [anon_sym_Var] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [anon_sym_VAR] = ACTIONS(2906), - [anon_sym_While] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_WHILE] = ACTIONS(2906), - [anon_sym_With] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2906), - [anon_sym_WITH] = ACTIONS(2906), - [sym_cf_comment] = ACTIONS(2904), - [sym__java_block_open] = ACTIONS(2904), - [sym__static_type_prefix] = ACTIONS(2904), + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_let] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_Query] = ACTIONS(2952), + [anon_sym_query] = ACTIONS(2952), + [anon_sym_QUERY] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_unary_operator_token1] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2952), + [aux_sym_number_token2] = ACTIONS(2950), + [anon_sym_This] = ACTIONS(2952), + [anon_sym_this] = ACTIONS(2952), + [anon_sym_THIS] = ACTIONS(2952), + [anon_sym_Super] = ACTIONS(2952), + [anon_sym_super] = ACTIONS(2952), + [anon_sym_SUPER] = ACTIONS(2952), + [anon_sym_True] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2952), + [anon_sym_TRUE] = ACTIONS(2952), + [anon_sym_False] = ACTIONS(2952), + [anon_sym_false] = ACTIONS(2952), + [anon_sym_FALSE] = ACTIONS(2952), + [anon_sym_Null] = ACTIONS(2952), + [anon_sym_null] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_Undefined] = ACTIONS(2952), + [anon_sym_undefined] = ACTIONS(2952), + [anon_sym_UNDEFINED] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2952), + [anon_sym_set] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [sym_hash_empty] = ACTIONS(2950), + [anon_sym_export] = ACTIONS(2952), + [anon_sym_QueryExecute] = ACTIONS(2952), + [anon_sym_queryexecute] = ACTIONS(2952), + [anon_sym_QUERYEXECUTE] = ACTIONS(2952), + [anon_sym_queryExecute] = ACTIONS(2952), + [anon_sym_BQUOTE] = ACTIONS(2952), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2950), + [anon_sym_Abstract] = ACTIONS(2952), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_ABSTRACT] = ACTIONS(2952), + [anon_sym_Break] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_BREAK] = ACTIONS(2952), + [anon_sym_Case] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_CASE] = ACTIONS(2952), + [anon_sym_Component] = ACTIONS(2952), + [anon_sym_component] = ACTIONS(2952), + [anon_sym_COMPONENT] = ACTIONS(2952), + [anon_sym_Continue] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_CONTINUE] = ACTIONS(2952), + [anon_sym_Debugger] = ACTIONS(2952), + [anon_sym_debugger] = ACTIONS(2952), + [anon_sym_DEBUGGER] = ACTIONS(2952), + [anon_sym_Default] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_DEFAULT] = ACTIONS(2952), + [anon_sym_Do] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_DO] = ACTIONS(2952), + [anon_sym_Else] = ACTIONS(2952), + [anon_sym_else] = ACTIONS(2952), + [anon_sym_ELSE] = ACTIONS(2952), + [anon_sym_Final] = ACTIONS(2952), + [anon_sym_final] = ACTIONS(2952), + [anon_sym_FINAL] = ACTIONS(2952), + [anon_sym_For] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_FOR] = ACTIONS(2952), + [anon_sym_Function] = ACTIONS(2952), + [anon_sym_function] = ACTIONS(2952), + [anon_sym_FUNCTION] = ACTIONS(2952), + [anon_sym_If] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_IF] = ACTIONS(2952), + [anon_sym_Import] = ACTIONS(2952), + [anon_sym_import] = ACTIONS(2952), + [anon_sym_IMPORT] = ACTIONS(2952), + [anon_sym_Include] = ACTIONS(2952), + [anon_sym_include] = ACTIONS(2952), + [anon_sym_INCLUDE] = ACTIONS(2952), + [anon_sym_Interface] = ACTIONS(2952), + [anon_sym_interface] = ACTIONS(2952), + [anon_sym_INTERFACE] = ACTIONS(2952), + [anon_sym_New] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_NEW] = ACTIONS(2952), + [anon_sym_Package] = ACTIONS(2952), + [anon_sym_package] = ACTIONS(2952), + [anon_sym_PACKAGE] = ACTIONS(2952), + [anon_sym_Private] = ACTIONS(2952), + [anon_sym_private] = ACTIONS(2952), + [anon_sym_PRIVATE] = ACTIONS(2952), + [anon_sym_Property] = ACTIONS(2952), + [anon_sym_property] = ACTIONS(2952), + [anon_sym_PROPERTY] = ACTIONS(2952), + [anon_sym_Public] = ACTIONS(2952), + [anon_sym_public] = ACTIONS(2952), + [anon_sym_PUBLIC] = ACTIONS(2952), + [anon_sym_Remote] = ACTIONS(2952), + [anon_sym_remote] = ACTIONS(2952), + [anon_sym_REMOTE] = ACTIONS(2952), + [anon_sym_Return] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_RETURN] = ACTIONS(2952), + [anon_sym_Static] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_STATIC] = ACTIONS(2952), + [anon_sym_Switch] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_SWITCH] = ACTIONS(2952), + [anon_sym_Throw] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_THROW] = ACTIONS(2952), + [anon_sym_Try] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_TRY] = ACTIONS(2952), + [anon_sym_Var] = ACTIONS(2952), + [anon_sym_var] = ACTIONS(2952), + [anon_sym_VAR] = ACTIONS(2952), + [anon_sym_While] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_WHILE] = ACTIONS(2952), + [anon_sym_With] = ACTIONS(2952), + [anon_sym_with] = ACTIONS(2952), + [anon_sym_WITH] = ACTIONS(2952), + [sym_cf_comment] = ACTIONS(2950), + [sym__java_block_open] = ACTIONS(2950), + [sym__static_type_prefix] = ACTIONS(2950), }, [STATE(651)] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_Query] = ACTIONS(2910), - [anon_sym_query] = ACTIONS(2910), - [anon_sym_QUERY] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [aux_sym_unary_operator_token1] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_SQUOTE] = ACTIONS(2908), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2910), - [aux_sym_number_token2] = ACTIONS(2908), - [anon_sym_This] = ACTIONS(2910), - [anon_sym_this] = ACTIONS(2910), - [anon_sym_THIS] = ACTIONS(2910), - [anon_sym_Super] = ACTIONS(2910), - [anon_sym_super] = ACTIONS(2910), - [anon_sym_SUPER] = ACTIONS(2910), - [anon_sym_True] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2910), - [anon_sym_TRUE] = ACTIONS(2910), - [anon_sym_False] = ACTIONS(2910), - [anon_sym_false] = ACTIONS(2910), - [anon_sym_FALSE] = ACTIONS(2910), - [anon_sym_Null] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2910), - [anon_sym_NULL] = ACTIONS(2910), - [anon_sym_Undefined] = ACTIONS(2910), - [anon_sym_undefined] = ACTIONS(2910), - [anon_sym_UNDEFINED] = ACTIONS(2910), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [sym_hash_empty] = ACTIONS(2908), - [anon_sym_export] = ACTIONS(2910), - [anon_sym_QueryExecute] = ACTIONS(2910), - [anon_sym_queryexecute] = ACTIONS(2910), - [anon_sym_QUERYEXECUTE] = ACTIONS(2910), - [anon_sym_queryExecute] = ACTIONS(2910), - [anon_sym_BQUOTE] = ACTIONS(2910), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2908), - [anon_sym_Abstract] = ACTIONS(2910), - [anon_sym_abstract] = ACTIONS(2910), - [anon_sym_ABSTRACT] = ACTIONS(2910), - [anon_sym_Break] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_BREAK] = ACTIONS(2910), - [anon_sym_Case] = ACTIONS(2910), - [anon_sym_case] = ACTIONS(2910), - [anon_sym_CASE] = ACTIONS(2910), - [anon_sym_Component] = ACTIONS(2910), - [anon_sym_component] = ACTIONS(2910), - [anon_sym_COMPONENT] = ACTIONS(2910), - [anon_sym_Continue] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_CONTINUE] = ACTIONS(2910), - [anon_sym_Debugger] = ACTIONS(2910), - [anon_sym_debugger] = ACTIONS(2910), - [anon_sym_DEBUGGER] = ACTIONS(2910), - [anon_sym_Default] = ACTIONS(2910), - [anon_sym_default] = ACTIONS(2910), - [anon_sym_DEFAULT] = ACTIONS(2910), - [anon_sym_Do] = ACTIONS(2910), - [anon_sym_do] = ACTIONS(2910), - [anon_sym_DO] = ACTIONS(2910), - [anon_sym_Else] = ACTIONS(2910), - [anon_sym_else] = ACTIONS(2910), - [anon_sym_ELSE] = ACTIONS(2910), - [anon_sym_Final] = ACTIONS(2910), - [anon_sym_final] = ACTIONS(2910), - [anon_sym_FINAL] = ACTIONS(2910), - [anon_sym_For] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_FOR] = ACTIONS(2910), - [anon_sym_Function] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2910), - [anon_sym_FUNCTION] = ACTIONS(2910), - [anon_sym_If] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_IF] = ACTIONS(2910), - [anon_sym_Import] = ACTIONS(2910), - [anon_sym_import] = ACTIONS(2910), - [anon_sym_IMPORT] = ACTIONS(2910), - [anon_sym_Include] = ACTIONS(2910), - [anon_sym_include] = ACTIONS(2910), - [anon_sym_INCLUDE] = ACTIONS(2910), - [anon_sym_Interface] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_INTERFACE] = ACTIONS(2910), - [anon_sym_New] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2910), - [anon_sym_NEW] = ACTIONS(2910), - [anon_sym_Package] = ACTIONS(2910), - [anon_sym_package] = ACTIONS(2910), - [anon_sym_PACKAGE] = ACTIONS(2910), - [anon_sym_Private] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_PRIVATE] = ACTIONS(2910), - [anon_sym_Property] = ACTIONS(2910), - [anon_sym_property] = ACTIONS(2910), - [anon_sym_PROPERTY] = ACTIONS(2910), - [anon_sym_Public] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_PUBLIC] = ACTIONS(2910), - [anon_sym_Remote] = ACTIONS(2910), - [anon_sym_remote] = ACTIONS(2910), - [anon_sym_REMOTE] = ACTIONS(2910), - [anon_sym_Return] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_RETURN] = ACTIONS(2910), - [anon_sym_Static] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_STATIC] = ACTIONS(2910), - [anon_sym_Switch] = ACTIONS(2910), - [anon_sym_switch] = ACTIONS(2910), - [anon_sym_SWITCH] = ACTIONS(2910), - [anon_sym_Throw] = ACTIONS(2910), - [anon_sym_throw] = ACTIONS(2910), - [anon_sym_THROW] = ACTIONS(2910), - [anon_sym_Try] = ACTIONS(2910), - [anon_sym_try] = ACTIONS(2910), - [anon_sym_TRY] = ACTIONS(2910), - [anon_sym_Var] = ACTIONS(2910), - [anon_sym_var] = ACTIONS(2910), - [anon_sym_VAR] = ACTIONS(2910), - [anon_sym_While] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_WHILE] = ACTIONS(2910), - [anon_sym_With] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2910), - [anon_sym_WITH] = ACTIONS(2910), - [sym_cf_comment] = ACTIONS(2908), - [sym__java_block_open] = ACTIONS(2908), - [sym__static_type_prefix] = ACTIONS(2908), + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_let] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_Query] = ACTIONS(2952), + [anon_sym_query] = ACTIONS(2952), + [anon_sym_QUERY] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_unary_operator_token1] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2952), + [aux_sym_number_token2] = ACTIONS(2950), + [anon_sym_This] = ACTIONS(2952), + [anon_sym_this] = ACTIONS(2952), + [anon_sym_THIS] = ACTIONS(2952), + [anon_sym_Super] = ACTIONS(2952), + [anon_sym_super] = ACTIONS(2952), + [anon_sym_SUPER] = ACTIONS(2952), + [anon_sym_True] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2952), + [anon_sym_TRUE] = ACTIONS(2952), + [anon_sym_False] = ACTIONS(2952), + [anon_sym_false] = ACTIONS(2952), + [anon_sym_FALSE] = ACTIONS(2952), + [anon_sym_Null] = ACTIONS(2952), + [anon_sym_null] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_Undefined] = ACTIONS(2952), + [anon_sym_undefined] = ACTIONS(2952), + [anon_sym_UNDEFINED] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2952), + [anon_sym_set] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [sym_hash_empty] = ACTIONS(2950), + [anon_sym_export] = ACTIONS(2952), + [anon_sym_QueryExecute] = ACTIONS(2952), + [anon_sym_queryexecute] = ACTIONS(2952), + [anon_sym_QUERYEXECUTE] = ACTIONS(2952), + [anon_sym_queryExecute] = ACTIONS(2952), + [anon_sym_BQUOTE] = ACTIONS(2952), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2950), + [anon_sym_Abstract] = ACTIONS(2952), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_ABSTRACT] = ACTIONS(2952), + [anon_sym_Break] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_BREAK] = ACTIONS(2952), + [anon_sym_Case] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_CASE] = ACTIONS(2952), + [anon_sym_Component] = ACTIONS(2952), + [anon_sym_component] = ACTIONS(2952), + [anon_sym_COMPONENT] = ACTIONS(2952), + [anon_sym_Continue] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_CONTINUE] = ACTIONS(2952), + [anon_sym_Debugger] = ACTIONS(2952), + [anon_sym_debugger] = ACTIONS(2952), + [anon_sym_DEBUGGER] = ACTIONS(2952), + [anon_sym_Default] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_DEFAULT] = ACTIONS(2952), + [anon_sym_Do] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_DO] = ACTIONS(2952), + [anon_sym_Else] = ACTIONS(2952), + [anon_sym_else] = ACTIONS(2952), + [anon_sym_ELSE] = ACTIONS(2952), + [anon_sym_Final] = ACTIONS(2952), + [anon_sym_final] = ACTIONS(2952), + [anon_sym_FINAL] = ACTIONS(2952), + [anon_sym_For] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_FOR] = ACTIONS(2952), + [anon_sym_Function] = ACTIONS(2952), + [anon_sym_function] = ACTIONS(2952), + [anon_sym_FUNCTION] = ACTIONS(2952), + [anon_sym_If] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_IF] = ACTIONS(2952), + [anon_sym_Import] = ACTIONS(2952), + [anon_sym_import] = ACTIONS(2952), + [anon_sym_IMPORT] = ACTIONS(2952), + [anon_sym_Include] = ACTIONS(2952), + [anon_sym_include] = ACTIONS(2952), + [anon_sym_INCLUDE] = ACTIONS(2952), + [anon_sym_Interface] = ACTIONS(2952), + [anon_sym_interface] = ACTIONS(2952), + [anon_sym_INTERFACE] = ACTIONS(2952), + [anon_sym_New] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_NEW] = ACTIONS(2952), + [anon_sym_Package] = ACTIONS(2952), + [anon_sym_package] = ACTIONS(2952), + [anon_sym_PACKAGE] = ACTIONS(2952), + [anon_sym_Private] = ACTIONS(2952), + [anon_sym_private] = ACTIONS(2952), + [anon_sym_PRIVATE] = ACTIONS(2952), + [anon_sym_Property] = ACTIONS(2952), + [anon_sym_property] = ACTIONS(2952), + [anon_sym_PROPERTY] = ACTIONS(2952), + [anon_sym_Public] = ACTIONS(2952), + [anon_sym_public] = ACTIONS(2952), + [anon_sym_PUBLIC] = ACTIONS(2952), + [anon_sym_Remote] = ACTIONS(2952), + [anon_sym_remote] = ACTIONS(2952), + [anon_sym_REMOTE] = ACTIONS(2952), + [anon_sym_Return] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_RETURN] = ACTIONS(2952), + [anon_sym_Static] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_STATIC] = ACTIONS(2952), + [anon_sym_Switch] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_SWITCH] = ACTIONS(2952), + [anon_sym_Throw] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_THROW] = ACTIONS(2952), + [anon_sym_Try] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_TRY] = ACTIONS(2952), + [anon_sym_Var] = ACTIONS(2952), + [anon_sym_var] = ACTIONS(2952), + [anon_sym_VAR] = ACTIONS(2952), + [anon_sym_While] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_WHILE] = ACTIONS(2952), + [anon_sym_With] = ACTIONS(2952), + [anon_sym_with] = ACTIONS(2952), + [anon_sym_WITH] = ACTIONS(2952), + [sym_cf_comment] = ACTIONS(2950), + [sym__java_block_open] = ACTIONS(2950), + [sym__static_type_prefix] = ACTIONS(2950), }, [STATE(652)] = { - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_Query] = ACTIONS(2914), - [anon_sym_query] = ACTIONS(2914), - [anon_sym_QUERY] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [aux_sym_unary_operator_token1] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2914), - [aux_sym_number_token2] = ACTIONS(2912), - [anon_sym_This] = ACTIONS(2914), - [anon_sym_this] = ACTIONS(2914), - [anon_sym_THIS] = ACTIONS(2914), - [anon_sym_Super] = ACTIONS(2914), - [anon_sym_super] = ACTIONS(2914), - [anon_sym_SUPER] = ACTIONS(2914), - [anon_sym_True] = ACTIONS(2914), - [anon_sym_true] = ACTIONS(2914), - [anon_sym_TRUE] = ACTIONS(2914), - [anon_sym_False] = ACTIONS(2914), - [anon_sym_false] = ACTIONS(2914), - [anon_sym_FALSE] = ACTIONS(2914), - [anon_sym_Null] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2914), - [anon_sym_NULL] = ACTIONS(2914), - [anon_sym_Undefined] = ACTIONS(2914), - [anon_sym_undefined] = ACTIONS(2914), - [anon_sym_UNDEFINED] = ACTIONS(2914), - [anon_sym_get] = ACTIONS(2914), - [anon_sym_set] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [sym_hash_empty] = ACTIONS(2912), - [anon_sym_export] = ACTIONS(2914), - [anon_sym_QueryExecute] = ACTIONS(2914), - [anon_sym_queryexecute] = ACTIONS(2914), - [anon_sym_QUERYEXECUTE] = ACTIONS(2914), - [anon_sym_queryExecute] = ACTIONS(2914), - [anon_sym_BQUOTE] = ACTIONS(2914), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2912), - [anon_sym_Abstract] = ACTIONS(2914), - [anon_sym_abstract] = ACTIONS(2914), - [anon_sym_ABSTRACT] = ACTIONS(2914), - [anon_sym_Break] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_BREAK] = ACTIONS(2914), - [anon_sym_Case] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_CASE] = ACTIONS(2914), - [anon_sym_Component] = ACTIONS(2914), - [anon_sym_component] = ACTIONS(2914), - [anon_sym_COMPONENT] = ACTIONS(2914), - [anon_sym_Continue] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_CONTINUE] = ACTIONS(2914), - [anon_sym_Debugger] = ACTIONS(2914), - [anon_sym_debugger] = ACTIONS(2914), - [anon_sym_DEBUGGER] = ACTIONS(2914), - [anon_sym_Default] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_DEFAULT] = ACTIONS(2914), - [anon_sym_Do] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_DO] = ACTIONS(2914), - [anon_sym_Else] = ACTIONS(2914), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_ELSE] = ACTIONS(2914), - [anon_sym_Final] = ACTIONS(2914), - [anon_sym_final] = ACTIONS(2914), - [anon_sym_FINAL] = ACTIONS(2914), - [anon_sym_For] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_FOR] = ACTIONS(2914), - [anon_sym_Function] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2914), - [anon_sym_FUNCTION] = ACTIONS(2914), - [anon_sym_If] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_IF] = ACTIONS(2914), - [anon_sym_Import] = ACTIONS(2914), - [anon_sym_import] = ACTIONS(2914), - [anon_sym_IMPORT] = ACTIONS(2914), - [anon_sym_Include] = ACTIONS(2914), - [anon_sym_include] = ACTIONS(2914), - [anon_sym_INCLUDE] = ACTIONS(2914), - [anon_sym_Interface] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_INTERFACE] = ACTIONS(2914), - [anon_sym_New] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2914), - [anon_sym_NEW] = ACTIONS(2914), - [anon_sym_Package] = ACTIONS(2914), - [anon_sym_package] = ACTIONS(2914), - [anon_sym_PACKAGE] = ACTIONS(2914), - [anon_sym_Private] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_PRIVATE] = ACTIONS(2914), - [anon_sym_Property] = ACTIONS(2914), - [anon_sym_property] = ACTIONS(2914), - [anon_sym_PROPERTY] = ACTIONS(2914), - [anon_sym_Public] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_PUBLIC] = ACTIONS(2914), - [anon_sym_Remote] = ACTIONS(2914), - [anon_sym_remote] = ACTIONS(2914), - [anon_sym_REMOTE] = ACTIONS(2914), - [anon_sym_Return] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_RETURN] = ACTIONS(2914), - [anon_sym_Static] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_STATIC] = ACTIONS(2914), - [anon_sym_Switch] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_SWITCH] = ACTIONS(2914), - [anon_sym_Throw] = ACTIONS(2914), - [anon_sym_throw] = ACTIONS(2914), - [anon_sym_THROW] = ACTIONS(2914), - [anon_sym_Try] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2914), - [anon_sym_TRY] = ACTIONS(2914), - [anon_sym_Var] = ACTIONS(2914), - [anon_sym_var] = ACTIONS(2914), - [anon_sym_VAR] = ACTIONS(2914), - [anon_sym_While] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_WHILE] = ACTIONS(2914), - [anon_sym_With] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2914), - [anon_sym_WITH] = ACTIONS(2914), - [sym_cf_comment] = ACTIONS(2912), - [sym__java_block_open] = ACTIONS(2912), - [sym__static_type_prefix] = ACTIONS(2912), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_Query] = ACTIONS(2956), + [anon_sym_query] = ACTIONS(2956), + [anon_sym_QUERY] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_unary_operator_token1] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2956), + [aux_sym_number_token2] = ACTIONS(2954), + [anon_sym_This] = ACTIONS(2956), + [anon_sym_this] = ACTIONS(2956), + [anon_sym_THIS] = ACTIONS(2956), + [anon_sym_Super] = ACTIONS(2956), + [anon_sym_super] = ACTIONS(2956), + [anon_sym_SUPER] = ACTIONS(2956), + [anon_sym_True] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2956), + [anon_sym_TRUE] = ACTIONS(2956), + [anon_sym_False] = ACTIONS(2956), + [anon_sym_false] = ACTIONS(2956), + [anon_sym_FALSE] = ACTIONS(2956), + [anon_sym_Null] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_Undefined] = ACTIONS(2956), + [anon_sym_undefined] = ACTIONS(2956), + [anon_sym_UNDEFINED] = ACTIONS(2956), + [anon_sym_get] = ACTIONS(2956), + [anon_sym_set] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [sym_hash_empty] = ACTIONS(2954), + [anon_sym_export] = ACTIONS(2956), + [anon_sym_QueryExecute] = ACTIONS(2956), + [anon_sym_queryexecute] = ACTIONS(2956), + [anon_sym_QUERYEXECUTE] = ACTIONS(2956), + [anon_sym_queryExecute] = ACTIONS(2956), + [anon_sym_BQUOTE] = ACTIONS(2956), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2954), + [anon_sym_Abstract] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2956), + [anon_sym_ABSTRACT] = ACTIONS(2956), + [anon_sym_Break] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_BREAK] = ACTIONS(2956), + [anon_sym_Case] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_CASE] = ACTIONS(2956), + [anon_sym_Component] = ACTIONS(2956), + [anon_sym_component] = ACTIONS(2956), + [anon_sym_COMPONENT] = ACTIONS(2956), + [anon_sym_Continue] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_CONTINUE] = ACTIONS(2956), + [anon_sym_Debugger] = ACTIONS(2956), + [anon_sym_debugger] = ACTIONS(2956), + [anon_sym_DEBUGGER] = ACTIONS(2956), + [anon_sym_Default] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_DEFAULT] = ACTIONS(2956), + [anon_sym_Do] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_DO] = ACTIONS(2956), + [anon_sym_Else] = ACTIONS(2956), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_ELSE] = ACTIONS(2956), + [anon_sym_Final] = ACTIONS(2956), + [anon_sym_final] = ACTIONS(2956), + [anon_sym_FINAL] = ACTIONS(2956), + [anon_sym_For] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_FOR] = ACTIONS(2956), + [anon_sym_Function] = ACTIONS(2956), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_FUNCTION] = ACTIONS(2956), + [anon_sym_If] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_IF] = ACTIONS(2956), + [anon_sym_Import] = ACTIONS(2956), + [anon_sym_import] = ACTIONS(2956), + [anon_sym_IMPORT] = ACTIONS(2956), + [anon_sym_Include] = ACTIONS(2956), + [anon_sym_include] = ACTIONS(2956), + [anon_sym_INCLUDE] = ACTIONS(2956), + [anon_sym_Interface] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_INTERFACE] = ACTIONS(2956), + [anon_sym_New] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_NEW] = ACTIONS(2956), + [anon_sym_Package] = ACTIONS(2956), + [anon_sym_package] = ACTIONS(2956), + [anon_sym_PACKAGE] = ACTIONS(2956), + [anon_sym_Private] = ACTIONS(2956), + [anon_sym_private] = ACTIONS(2956), + [anon_sym_PRIVATE] = ACTIONS(2956), + [anon_sym_Property] = ACTIONS(2956), + [anon_sym_property] = ACTIONS(2956), + [anon_sym_PROPERTY] = ACTIONS(2956), + [anon_sym_Public] = ACTIONS(2956), + [anon_sym_public] = ACTIONS(2956), + [anon_sym_PUBLIC] = ACTIONS(2956), + [anon_sym_Remote] = ACTIONS(2956), + [anon_sym_remote] = ACTIONS(2956), + [anon_sym_REMOTE] = ACTIONS(2956), + [anon_sym_Return] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_RETURN] = ACTIONS(2956), + [anon_sym_Static] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_STATIC] = ACTIONS(2956), + [anon_sym_Switch] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_SWITCH] = ACTIONS(2956), + [anon_sym_Throw] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_THROW] = ACTIONS(2956), + [anon_sym_Try] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_TRY] = ACTIONS(2956), + [anon_sym_Var] = ACTIONS(2956), + [anon_sym_var] = ACTIONS(2956), + [anon_sym_VAR] = ACTIONS(2956), + [anon_sym_While] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_WHILE] = ACTIONS(2956), + [anon_sym_With] = ACTIONS(2956), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_WITH] = ACTIONS(2956), + [sym_cf_comment] = ACTIONS(2954), + [sym__java_block_open] = ACTIONS(2954), + [sym__static_type_prefix] = ACTIONS(2954), }, [STATE(653)] = { - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_Query] = ACTIONS(2918), - [anon_sym_query] = ACTIONS(2918), - [anon_sym_QUERY] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [aux_sym_unary_operator_token1] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2918), - [aux_sym_number_token2] = ACTIONS(2916), - [anon_sym_This] = ACTIONS(2918), - [anon_sym_this] = ACTIONS(2918), - [anon_sym_THIS] = ACTIONS(2918), - [anon_sym_Super] = ACTIONS(2918), - [anon_sym_super] = ACTIONS(2918), - [anon_sym_SUPER] = ACTIONS(2918), - [anon_sym_True] = ACTIONS(2918), - [anon_sym_true] = ACTIONS(2918), - [anon_sym_TRUE] = ACTIONS(2918), - [anon_sym_False] = ACTIONS(2918), - [anon_sym_false] = ACTIONS(2918), - [anon_sym_FALSE] = ACTIONS(2918), - [anon_sym_Null] = ACTIONS(2918), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_NULL] = ACTIONS(2918), - [anon_sym_Undefined] = ACTIONS(2918), - [anon_sym_undefined] = ACTIONS(2918), - [anon_sym_UNDEFINED] = ACTIONS(2918), - [anon_sym_get] = ACTIONS(2918), - [anon_sym_set] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [sym_hash_empty] = ACTIONS(2916), - [anon_sym_export] = ACTIONS(2918), - [anon_sym_QueryExecute] = ACTIONS(2918), - [anon_sym_queryexecute] = ACTIONS(2918), - [anon_sym_QUERYEXECUTE] = ACTIONS(2918), - [anon_sym_queryExecute] = ACTIONS(2918), - [anon_sym_BQUOTE] = ACTIONS(2918), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2916), - [anon_sym_Abstract] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2918), - [anon_sym_ABSTRACT] = ACTIONS(2918), - [anon_sym_Break] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_BREAK] = ACTIONS(2918), - [anon_sym_Case] = ACTIONS(2918), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_CASE] = ACTIONS(2918), - [anon_sym_Component] = ACTIONS(2918), - [anon_sym_component] = ACTIONS(2918), - [anon_sym_COMPONENT] = ACTIONS(2918), - [anon_sym_Continue] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_CONTINUE] = ACTIONS(2918), - [anon_sym_Debugger] = ACTIONS(2918), - [anon_sym_debugger] = ACTIONS(2918), - [anon_sym_DEBUGGER] = ACTIONS(2918), - [anon_sym_Default] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_DEFAULT] = ACTIONS(2918), - [anon_sym_Do] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_DO] = ACTIONS(2918), - [anon_sym_Else] = ACTIONS(2918), - [anon_sym_else] = ACTIONS(2918), - [anon_sym_ELSE] = ACTIONS(2918), - [anon_sym_Final] = ACTIONS(2918), - [anon_sym_final] = ACTIONS(2918), - [anon_sym_FINAL] = ACTIONS(2918), - [anon_sym_For] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_FOR] = ACTIONS(2918), - [anon_sym_Function] = ACTIONS(2918), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_FUNCTION] = ACTIONS(2918), - [anon_sym_If] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_IF] = ACTIONS(2918), - [anon_sym_Import] = ACTIONS(2918), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_IMPORT] = ACTIONS(2918), - [anon_sym_Include] = ACTIONS(2918), - [anon_sym_include] = ACTIONS(2918), - [anon_sym_INCLUDE] = ACTIONS(2918), - [anon_sym_Interface] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_INTERFACE] = ACTIONS(2918), - [anon_sym_New] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_NEW] = ACTIONS(2918), - [anon_sym_Package] = ACTIONS(2918), - [anon_sym_package] = ACTIONS(2918), - [anon_sym_PACKAGE] = ACTIONS(2918), - [anon_sym_Private] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_PRIVATE] = ACTIONS(2918), - [anon_sym_Property] = ACTIONS(2918), - [anon_sym_property] = ACTIONS(2918), - [anon_sym_PROPERTY] = ACTIONS(2918), - [anon_sym_Public] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_PUBLIC] = ACTIONS(2918), - [anon_sym_Remote] = ACTIONS(2918), - [anon_sym_remote] = ACTIONS(2918), - [anon_sym_REMOTE] = ACTIONS(2918), - [anon_sym_Return] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_RETURN] = ACTIONS(2918), - [anon_sym_Static] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_STATIC] = ACTIONS(2918), - [anon_sym_Switch] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_SWITCH] = ACTIONS(2918), - [anon_sym_Throw] = ACTIONS(2918), - [anon_sym_throw] = ACTIONS(2918), - [anon_sym_THROW] = ACTIONS(2918), - [anon_sym_Try] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_TRY] = ACTIONS(2918), - [anon_sym_Var] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2918), - [anon_sym_VAR] = ACTIONS(2918), - [anon_sym_While] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_WHILE] = ACTIONS(2918), - [anon_sym_With] = ACTIONS(2918), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_WITH] = ACTIONS(2918), - [sym_cf_comment] = ACTIONS(2916), - [sym__java_block_open] = ACTIONS(2916), - [sym__static_type_prefix] = ACTIONS(2916), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_Query] = ACTIONS(2956), + [anon_sym_query] = ACTIONS(2956), + [anon_sym_QUERY] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_unary_operator_token1] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2956), + [aux_sym_number_token2] = ACTIONS(2954), + [anon_sym_This] = ACTIONS(2956), + [anon_sym_this] = ACTIONS(2956), + [anon_sym_THIS] = ACTIONS(2956), + [anon_sym_Super] = ACTIONS(2956), + [anon_sym_super] = ACTIONS(2956), + [anon_sym_SUPER] = ACTIONS(2956), + [anon_sym_True] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2956), + [anon_sym_TRUE] = ACTIONS(2956), + [anon_sym_False] = ACTIONS(2956), + [anon_sym_false] = ACTIONS(2956), + [anon_sym_FALSE] = ACTIONS(2956), + [anon_sym_Null] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_Undefined] = ACTIONS(2956), + [anon_sym_undefined] = ACTIONS(2956), + [anon_sym_UNDEFINED] = ACTIONS(2956), + [anon_sym_get] = ACTIONS(2956), + [anon_sym_set] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [sym_hash_empty] = ACTIONS(2954), + [anon_sym_export] = ACTIONS(2956), + [anon_sym_QueryExecute] = ACTIONS(2956), + [anon_sym_queryexecute] = ACTIONS(2956), + [anon_sym_QUERYEXECUTE] = ACTIONS(2956), + [anon_sym_queryExecute] = ACTIONS(2956), + [anon_sym_BQUOTE] = ACTIONS(2956), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2954), + [anon_sym_Abstract] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2956), + [anon_sym_ABSTRACT] = ACTIONS(2956), + [anon_sym_Break] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_BREAK] = ACTIONS(2956), + [anon_sym_Case] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_CASE] = ACTIONS(2956), + [anon_sym_Component] = ACTIONS(2956), + [anon_sym_component] = ACTIONS(2956), + [anon_sym_COMPONENT] = ACTIONS(2956), + [anon_sym_Continue] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_CONTINUE] = ACTIONS(2956), + [anon_sym_Debugger] = ACTIONS(2956), + [anon_sym_debugger] = ACTIONS(2956), + [anon_sym_DEBUGGER] = ACTIONS(2956), + [anon_sym_Default] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_DEFAULT] = ACTIONS(2956), + [anon_sym_Do] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_DO] = ACTIONS(2956), + [anon_sym_Else] = ACTIONS(2956), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_ELSE] = ACTIONS(2956), + [anon_sym_Final] = ACTIONS(2956), + [anon_sym_final] = ACTIONS(2956), + [anon_sym_FINAL] = ACTIONS(2956), + [anon_sym_For] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_FOR] = ACTIONS(2956), + [anon_sym_Function] = ACTIONS(2956), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_FUNCTION] = ACTIONS(2956), + [anon_sym_If] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_IF] = ACTIONS(2956), + [anon_sym_Import] = ACTIONS(2956), + [anon_sym_import] = ACTIONS(2956), + [anon_sym_IMPORT] = ACTIONS(2956), + [anon_sym_Include] = ACTIONS(2956), + [anon_sym_include] = ACTIONS(2956), + [anon_sym_INCLUDE] = ACTIONS(2956), + [anon_sym_Interface] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_INTERFACE] = ACTIONS(2956), + [anon_sym_New] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_NEW] = ACTIONS(2956), + [anon_sym_Package] = ACTIONS(2956), + [anon_sym_package] = ACTIONS(2956), + [anon_sym_PACKAGE] = ACTIONS(2956), + [anon_sym_Private] = ACTIONS(2956), + [anon_sym_private] = ACTIONS(2956), + [anon_sym_PRIVATE] = ACTIONS(2956), + [anon_sym_Property] = ACTIONS(2956), + [anon_sym_property] = ACTIONS(2956), + [anon_sym_PROPERTY] = ACTIONS(2956), + [anon_sym_Public] = ACTIONS(2956), + [anon_sym_public] = ACTIONS(2956), + [anon_sym_PUBLIC] = ACTIONS(2956), + [anon_sym_Remote] = ACTIONS(2956), + [anon_sym_remote] = ACTIONS(2956), + [anon_sym_REMOTE] = ACTIONS(2956), + [anon_sym_Return] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_RETURN] = ACTIONS(2956), + [anon_sym_Static] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_STATIC] = ACTIONS(2956), + [anon_sym_Switch] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_SWITCH] = ACTIONS(2956), + [anon_sym_Throw] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_THROW] = ACTIONS(2956), + [anon_sym_Try] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_TRY] = ACTIONS(2956), + [anon_sym_Var] = ACTIONS(2956), + [anon_sym_var] = ACTIONS(2956), + [anon_sym_VAR] = ACTIONS(2956), + [anon_sym_While] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_WHILE] = ACTIONS(2956), + [anon_sym_With] = ACTIONS(2956), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_WITH] = ACTIONS(2956), + [sym_cf_comment] = ACTIONS(2954), + [sym__java_block_open] = ACTIONS(2954), + [sym__static_type_prefix] = ACTIONS(2954), }, [STATE(654)] = { - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_SEMI] = ACTIONS(2920), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_Query] = ACTIONS(2922), - [anon_sym_query] = ACTIONS(2922), - [anon_sym_QUERY] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_unary_operator_token1] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2922), - [aux_sym_number_token2] = ACTIONS(2920), - [anon_sym_This] = ACTIONS(2922), - [anon_sym_this] = ACTIONS(2922), - [anon_sym_THIS] = ACTIONS(2922), - [anon_sym_Super] = ACTIONS(2922), - [anon_sym_super] = ACTIONS(2922), - [anon_sym_SUPER] = ACTIONS(2922), - [anon_sym_True] = ACTIONS(2922), - [anon_sym_true] = ACTIONS(2922), - [anon_sym_TRUE] = ACTIONS(2922), - [anon_sym_False] = ACTIONS(2922), - [anon_sym_false] = ACTIONS(2922), - [anon_sym_FALSE] = ACTIONS(2922), - [anon_sym_Null] = ACTIONS(2922), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_NULL] = ACTIONS(2922), - [anon_sym_Undefined] = ACTIONS(2922), - [anon_sym_undefined] = ACTIONS(2922), - [anon_sym_UNDEFINED] = ACTIONS(2922), - [anon_sym_get] = ACTIONS(2922), - [anon_sym_set] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [sym_hash_empty] = ACTIONS(2920), - [anon_sym_export] = ACTIONS(2922), - [anon_sym_QueryExecute] = ACTIONS(2922), - [anon_sym_queryexecute] = ACTIONS(2922), - [anon_sym_QUERYEXECUTE] = ACTIONS(2922), - [anon_sym_queryExecute] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2920), - [anon_sym_Abstract] = ACTIONS(2922), - [anon_sym_abstract] = ACTIONS(2922), - [anon_sym_ABSTRACT] = ACTIONS(2922), - [anon_sym_Break] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_BREAK] = ACTIONS(2922), - [anon_sym_Case] = ACTIONS(2922), - [anon_sym_case] = ACTIONS(2922), - [anon_sym_CASE] = ACTIONS(2922), - [anon_sym_Component] = ACTIONS(2922), - [anon_sym_component] = ACTIONS(2922), - [anon_sym_COMPONENT] = ACTIONS(2922), - [anon_sym_Continue] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_CONTINUE] = ACTIONS(2922), - [anon_sym_Debugger] = ACTIONS(2922), - [anon_sym_debugger] = ACTIONS(2922), - [anon_sym_DEBUGGER] = ACTIONS(2922), - [anon_sym_Default] = ACTIONS(2922), - [anon_sym_default] = ACTIONS(2922), - [anon_sym_DEFAULT] = ACTIONS(2922), - [anon_sym_Do] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_DO] = ACTIONS(2922), - [anon_sym_Else] = ACTIONS(2922), - [anon_sym_else] = ACTIONS(2922), - [anon_sym_ELSE] = ACTIONS(2922), - [anon_sym_Final] = ACTIONS(2922), - [anon_sym_final] = ACTIONS(2922), - [anon_sym_FINAL] = ACTIONS(2922), - [anon_sym_For] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_FOR] = ACTIONS(2922), - [anon_sym_Function] = ACTIONS(2922), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_FUNCTION] = ACTIONS(2922), - [anon_sym_If] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_IF] = ACTIONS(2922), - [anon_sym_Import] = ACTIONS(2922), - [anon_sym_import] = ACTIONS(2922), - [anon_sym_IMPORT] = ACTIONS(2922), - [anon_sym_Include] = ACTIONS(2922), - [anon_sym_include] = ACTIONS(2922), - [anon_sym_INCLUDE] = ACTIONS(2922), - [anon_sym_Interface] = ACTIONS(2922), - [anon_sym_interface] = ACTIONS(2922), - [anon_sym_INTERFACE] = ACTIONS(2922), - [anon_sym_New] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_NEW] = ACTIONS(2922), - [anon_sym_Package] = ACTIONS(2922), - [anon_sym_package] = ACTIONS(2922), - [anon_sym_PACKAGE] = ACTIONS(2922), - [anon_sym_Private] = ACTIONS(2922), - [anon_sym_private] = ACTIONS(2922), - [anon_sym_PRIVATE] = ACTIONS(2922), - [anon_sym_Property] = ACTIONS(2922), - [anon_sym_property] = ACTIONS(2922), - [anon_sym_PROPERTY] = ACTIONS(2922), - [anon_sym_Public] = ACTIONS(2922), - [anon_sym_public] = ACTIONS(2922), - [anon_sym_PUBLIC] = ACTIONS(2922), - [anon_sym_Remote] = ACTIONS(2922), - [anon_sym_remote] = ACTIONS(2922), - [anon_sym_REMOTE] = ACTIONS(2922), - [anon_sym_Return] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_RETURN] = ACTIONS(2922), - [anon_sym_Static] = ACTIONS(2922), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_STATIC] = ACTIONS(2922), - [anon_sym_Switch] = ACTIONS(2922), - [anon_sym_switch] = ACTIONS(2922), - [anon_sym_SWITCH] = ACTIONS(2922), - [anon_sym_Throw] = ACTIONS(2922), - [anon_sym_throw] = ACTIONS(2922), - [anon_sym_THROW] = ACTIONS(2922), - [anon_sym_Try] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_TRY] = ACTIONS(2922), - [anon_sym_Var] = ACTIONS(2922), - [anon_sym_var] = ACTIONS(2922), - [anon_sym_VAR] = ACTIONS(2922), - [anon_sym_While] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_WHILE] = ACTIONS(2922), - [anon_sym_With] = ACTIONS(2922), - [anon_sym_with] = ACTIONS(2922), - [anon_sym_WITH] = ACTIONS(2922), - [sym_cf_comment] = ACTIONS(2920), - [sym__java_block_open] = ACTIONS(2920), - [sym__static_type_prefix] = ACTIONS(2920), + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_Query] = ACTIONS(2960), + [anon_sym_query] = ACTIONS(2960), + [anon_sym_QUERY] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [aux_sym_unary_operator_token1] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2958), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2960), + [aux_sym_number_token2] = ACTIONS(2958), + [anon_sym_This] = ACTIONS(2960), + [anon_sym_this] = ACTIONS(2960), + [anon_sym_THIS] = ACTIONS(2960), + [anon_sym_Super] = ACTIONS(2960), + [anon_sym_super] = ACTIONS(2960), + [anon_sym_SUPER] = ACTIONS(2960), + [anon_sym_True] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_TRUE] = ACTIONS(2960), + [anon_sym_False] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_FALSE] = ACTIONS(2960), + [anon_sym_Null] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2960), + [anon_sym_NULL] = ACTIONS(2960), + [anon_sym_Undefined] = ACTIONS(2960), + [anon_sym_undefined] = ACTIONS(2960), + [anon_sym_UNDEFINED] = ACTIONS(2960), + [anon_sym_get] = ACTIONS(2960), + [anon_sym_set] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [sym_hash_empty] = ACTIONS(2958), + [anon_sym_export] = ACTIONS(2960), + [anon_sym_QueryExecute] = ACTIONS(2960), + [anon_sym_queryexecute] = ACTIONS(2960), + [anon_sym_QUERYEXECUTE] = ACTIONS(2960), + [anon_sym_queryExecute] = ACTIONS(2960), + [anon_sym_BQUOTE] = ACTIONS(2960), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2958), + [anon_sym_Abstract] = ACTIONS(2960), + [anon_sym_abstract] = ACTIONS(2960), + [anon_sym_ABSTRACT] = ACTIONS(2960), + [anon_sym_Break] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_BREAK] = ACTIONS(2960), + [anon_sym_Case] = ACTIONS(2960), + [anon_sym_case] = ACTIONS(2960), + [anon_sym_CASE] = ACTIONS(2960), + [anon_sym_Component] = ACTIONS(2960), + [anon_sym_component] = ACTIONS(2960), + [anon_sym_COMPONENT] = ACTIONS(2960), + [anon_sym_Continue] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_CONTINUE] = ACTIONS(2960), + [anon_sym_Debugger] = ACTIONS(2960), + [anon_sym_debugger] = ACTIONS(2960), + [anon_sym_DEBUGGER] = ACTIONS(2960), + [anon_sym_Default] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_DEFAULT] = ACTIONS(2960), + [anon_sym_Do] = ACTIONS(2960), + [anon_sym_do] = ACTIONS(2960), + [anon_sym_DO] = ACTIONS(2960), + [anon_sym_Else] = ACTIONS(2960), + [anon_sym_else] = ACTIONS(2960), + [anon_sym_ELSE] = ACTIONS(2960), + [anon_sym_Final] = ACTIONS(2960), + [anon_sym_final] = ACTIONS(2960), + [anon_sym_FINAL] = ACTIONS(2960), + [anon_sym_For] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_FOR] = ACTIONS(2960), + [anon_sym_Function] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2960), + [anon_sym_FUNCTION] = ACTIONS(2960), + [anon_sym_If] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_IF] = ACTIONS(2960), + [anon_sym_Import] = ACTIONS(2960), + [anon_sym_import] = ACTIONS(2960), + [anon_sym_IMPORT] = ACTIONS(2960), + [anon_sym_Include] = ACTIONS(2960), + [anon_sym_include] = ACTIONS(2960), + [anon_sym_INCLUDE] = ACTIONS(2960), + [anon_sym_Interface] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2960), + [anon_sym_INTERFACE] = ACTIONS(2960), + [anon_sym_New] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2960), + [anon_sym_NEW] = ACTIONS(2960), + [anon_sym_Package] = ACTIONS(2960), + [anon_sym_package] = ACTIONS(2960), + [anon_sym_PACKAGE] = ACTIONS(2960), + [anon_sym_Private] = ACTIONS(2960), + [anon_sym_private] = ACTIONS(2960), + [anon_sym_PRIVATE] = ACTIONS(2960), + [anon_sym_Property] = ACTIONS(2960), + [anon_sym_property] = ACTIONS(2960), + [anon_sym_PROPERTY] = ACTIONS(2960), + [anon_sym_Public] = ACTIONS(2960), + [anon_sym_public] = ACTIONS(2960), + [anon_sym_PUBLIC] = ACTIONS(2960), + [anon_sym_Remote] = ACTIONS(2960), + [anon_sym_remote] = ACTIONS(2960), + [anon_sym_REMOTE] = ACTIONS(2960), + [anon_sym_Return] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_RETURN] = ACTIONS(2960), + [anon_sym_Static] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_STATIC] = ACTIONS(2960), + [anon_sym_Switch] = ACTIONS(2960), + [anon_sym_switch] = ACTIONS(2960), + [anon_sym_SWITCH] = ACTIONS(2960), + [anon_sym_Throw] = ACTIONS(2960), + [anon_sym_throw] = ACTIONS(2960), + [anon_sym_THROW] = ACTIONS(2960), + [anon_sym_Try] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2960), + [anon_sym_TRY] = ACTIONS(2960), + [anon_sym_Var] = ACTIONS(2960), + [anon_sym_var] = ACTIONS(2960), + [anon_sym_VAR] = ACTIONS(2960), + [anon_sym_While] = ACTIONS(2960), + [anon_sym_while] = ACTIONS(2960), + [anon_sym_WHILE] = ACTIONS(2960), + [anon_sym_With] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2960), + [anon_sym_WITH] = ACTIONS(2960), + [sym_cf_comment] = ACTIONS(2958), + [sym__java_block_open] = ACTIONS(2958), + [sym__static_type_prefix] = ACTIONS(2958), }, [STATE(655)] = { - [ts_builtin_sym_end] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_Query] = ACTIONS(2926), - [anon_sym_query] = ACTIONS(2926), - [anon_sym_QUERY] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_unary_operator_token1] = ACTIONS(2926), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2926), - [aux_sym_number_token2] = ACTIONS(2924), - [anon_sym_This] = ACTIONS(2926), - [anon_sym_this] = ACTIONS(2926), - [anon_sym_THIS] = ACTIONS(2926), - [anon_sym_Super] = ACTIONS(2926), - [anon_sym_super] = ACTIONS(2926), - [anon_sym_SUPER] = ACTIONS(2926), - [anon_sym_True] = ACTIONS(2926), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_TRUE] = ACTIONS(2926), - [anon_sym_False] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [anon_sym_FALSE] = ACTIONS(2926), - [anon_sym_Null] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_NULL] = ACTIONS(2926), - [anon_sym_Undefined] = ACTIONS(2926), - [anon_sym_undefined] = ACTIONS(2926), - [anon_sym_UNDEFINED] = ACTIONS(2926), - [anon_sym_get] = ACTIONS(2926), - [anon_sym_set] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [sym_hash_empty] = ACTIONS(2924), - [anon_sym_export] = ACTIONS(2926), - [anon_sym_QueryExecute] = ACTIONS(2926), - [anon_sym_queryexecute] = ACTIONS(2926), - [anon_sym_QUERYEXECUTE] = ACTIONS(2926), - [anon_sym_queryExecute] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2924), - [anon_sym_Abstract] = ACTIONS(2926), - [anon_sym_abstract] = ACTIONS(2926), - [anon_sym_ABSTRACT] = ACTIONS(2926), - [anon_sym_Break] = ACTIONS(2926), - [anon_sym_break] = ACTIONS(2926), - [anon_sym_BREAK] = ACTIONS(2926), - [anon_sym_Case] = ACTIONS(2926), - [anon_sym_case] = ACTIONS(2926), - [anon_sym_CASE] = ACTIONS(2926), - [anon_sym_Component] = ACTIONS(2926), - [anon_sym_component] = ACTIONS(2926), - [anon_sym_COMPONENT] = ACTIONS(2926), - [anon_sym_Continue] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2926), - [anon_sym_CONTINUE] = ACTIONS(2926), - [anon_sym_Debugger] = ACTIONS(2926), - [anon_sym_debugger] = ACTIONS(2926), - [anon_sym_DEBUGGER] = ACTIONS(2926), - [anon_sym_Default] = ACTIONS(2926), - [anon_sym_default] = ACTIONS(2926), - [anon_sym_DEFAULT] = ACTIONS(2926), - [anon_sym_Do] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_DO] = ACTIONS(2926), - [anon_sym_Else] = ACTIONS(2926), - [anon_sym_else] = ACTIONS(2926), - [anon_sym_ELSE] = ACTIONS(2926), - [anon_sym_Final] = ACTIONS(2926), - [anon_sym_final] = ACTIONS(2926), - [anon_sym_FINAL] = ACTIONS(2926), - [anon_sym_For] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_FOR] = ACTIONS(2926), - [anon_sym_Function] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_FUNCTION] = ACTIONS(2926), - [anon_sym_If] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_IF] = ACTIONS(2926), - [anon_sym_Import] = ACTIONS(2926), - [anon_sym_import] = ACTIONS(2926), - [anon_sym_IMPORT] = ACTIONS(2926), - [anon_sym_Include] = ACTIONS(2926), - [anon_sym_include] = ACTIONS(2926), - [anon_sym_INCLUDE] = ACTIONS(2926), - [anon_sym_Interface] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2926), - [anon_sym_INTERFACE] = ACTIONS(2926), - [anon_sym_New] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_NEW] = ACTIONS(2926), - [anon_sym_Package] = ACTIONS(2926), - [anon_sym_package] = ACTIONS(2926), - [anon_sym_PACKAGE] = ACTIONS(2926), - [anon_sym_Private] = ACTIONS(2926), - [anon_sym_private] = ACTIONS(2926), - [anon_sym_PRIVATE] = ACTIONS(2926), - [anon_sym_Property] = ACTIONS(2926), - [anon_sym_property] = ACTIONS(2926), - [anon_sym_PROPERTY] = ACTIONS(2926), - [anon_sym_Public] = ACTIONS(2926), - [anon_sym_public] = ACTIONS(2926), - [anon_sym_PUBLIC] = ACTIONS(2926), - [anon_sym_Remote] = ACTIONS(2926), - [anon_sym_remote] = ACTIONS(2926), - [anon_sym_REMOTE] = ACTIONS(2926), - [anon_sym_Return] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_RETURN] = ACTIONS(2926), - [anon_sym_Static] = ACTIONS(2926), - [anon_sym_static] = ACTIONS(2926), - [anon_sym_STATIC] = ACTIONS(2926), - [anon_sym_Switch] = ACTIONS(2926), - [anon_sym_switch] = ACTIONS(2926), - [anon_sym_SWITCH] = ACTIONS(2926), - [anon_sym_Throw] = ACTIONS(2926), - [anon_sym_throw] = ACTIONS(2926), - [anon_sym_THROW] = ACTIONS(2926), - [anon_sym_Try] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_TRY] = ACTIONS(2926), - [anon_sym_Var] = ACTIONS(2926), - [anon_sym_var] = ACTIONS(2926), - [anon_sym_VAR] = ACTIONS(2926), - [anon_sym_While] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_WHILE] = ACTIONS(2926), - [anon_sym_With] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2926), - [anon_sym_WITH] = ACTIONS(2926), - [sym_cf_comment] = ACTIONS(2924), - [sym__java_block_open] = ACTIONS(2924), - [sym__static_type_prefix] = ACTIONS(2924), + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_Query] = ACTIONS(2960), + [anon_sym_query] = ACTIONS(2960), + [anon_sym_QUERY] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [aux_sym_unary_operator_token1] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2958), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2960), + [aux_sym_number_token2] = ACTIONS(2958), + [anon_sym_This] = ACTIONS(2960), + [anon_sym_this] = ACTIONS(2960), + [anon_sym_THIS] = ACTIONS(2960), + [anon_sym_Super] = ACTIONS(2960), + [anon_sym_super] = ACTIONS(2960), + [anon_sym_SUPER] = ACTIONS(2960), + [anon_sym_True] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_TRUE] = ACTIONS(2960), + [anon_sym_False] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_FALSE] = ACTIONS(2960), + [anon_sym_Null] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2960), + [anon_sym_NULL] = ACTIONS(2960), + [anon_sym_Undefined] = ACTIONS(2960), + [anon_sym_undefined] = ACTIONS(2960), + [anon_sym_UNDEFINED] = ACTIONS(2960), + [anon_sym_get] = ACTIONS(2960), + [anon_sym_set] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [sym_hash_empty] = ACTIONS(2958), + [anon_sym_export] = ACTIONS(2960), + [anon_sym_QueryExecute] = ACTIONS(2960), + [anon_sym_queryexecute] = ACTIONS(2960), + [anon_sym_QUERYEXECUTE] = ACTIONS(2960), + [anon_sym_queryExecute] = ACTIONS(2960), + [anon_sym_BQUOTE] = ACTIONS(2960), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2958), + [anon_sym_Abstract] = ACTIONS(2960), + [anon_sym_abstract] = ACTIONS(2960), + [anon_sym_ABSTRACT] = ACTIONS(2960), + [anon_sym_Break] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_BREAK] = ACTIONS(2960), + [anon_sym_Case] = ACTIONS(2960), + [anon_sym_case] = ACTIONS(2960), + [anon_sym_CASE] = ACTIONS(2960), + [anon_sym_Component] = ACTIONS(2960), + [anon_sym_component] = ACTIONS(2960), + [anon_sym_COMPONENT] = ACTIONS(2960), + [anon_sym_Continue] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_CONTINUE] = ACTIONS(2960), + [anon_sym_Debugger] = ACTIONS(2960), + [anon_sym_debugger] = ACTIONS(2960), + [anon_sym_DEBUGGER] = ACTIONS(2960), + [anon_sym_Default] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_DEFAULT] = ACTIONS(2960), + [anon_sym_Do] = ACTIONS(2960), + [anon_sym_do] = ACTIONS(2960), + [anon_sym_DO] = ACTIONS(2960), + [anon_sym_Else] = ACTIONS(2960), + [anon_sym_else] = ACTIONS(2960), + [anon_sym_ELSE] = ACTIONS(2960), + [anon_sym_Final] = ACTIONS(2960), + [anon_sym_final] = ACTIONS(2960), + [anon_sym_FINAL] = ACTIONS(2960), + [anon_sym_For] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_FOR] = ACTIONS(2960), + [anon_sym_Function] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2960), + [anon_sym_FUNCTION] = ACTIONS(2960), + [anon_sym_If] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_IF] = ACTIONS(2960), + [anon_sym_Import] = ACTIONS(2960), + [anon_sym_import] = ACTIONS(2960), + [anon_sym_IMPORT] = ACTIONS(2960), + [anon_sym_Include] = ACTIONS(2960), + [anon_sym_include] = ACTIONS(2960), + [anon_sym_INCLUDE] = ACTIONS(2960), + [anon_sym_Interface] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2960), + [anon_sym_INTERFACE] = ACTIONS(2960), + [anon_sym_New] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2960), + [anon_sym_NEW] = ACTIONS(2960), + [anon_sym_Package] = ACTIONS(2960), + [anon_sym_package] = ACTIONS(2960), + [anon_sym_PACKAGE] = ACTIONS(2960), + [anon_sym_Private] = ACTIONS(2960), + [anon_sym_private] = ACTIONS(2960), + [anon_sym_PRIVATE] = ACTIONS(2960), + [anon_sym_Property] = ACTIONS(2960), + [anon_sym_property] = ACTIONS(2960), + [anon_sym_PROPERTY] = ACTIONS(2960), + [anon_sym_Public] = ACTIONS(2960), + [anon_sym_public] = ACTIONS(2960), + [anon_sym_PUBLIC] = ACTIONS(2960), + [anon_sym_Remote] = ACTIONS(2960), + [anon_sym_remote] = ACTIONS(2960), + [anon_sym_REMOTE] = ACTIONS(2960), + [anon_sym_Return] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_RETURN] = ACTIONS(2960), + [anon_sym_Static] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_STATIC] = ACTIONS(2960), + [anon_sym_Switch] = ACTIONS(2960), + [anon_sym_switch] = ACTIONS(2960), + [anon_sym_SWITCH] = ACTIONS(2960), + [anon_sym_Throw] = ACTIONS(2960), + [anon_sym_throw] = ACTIONS(2960), + [anon_sym_THROW] = ACTIONS(2960), + [anon_sym_Try] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2960), + [anon_sym_TRY] = ACTIONS(2960), + [anon_sym_Var] = ACTIONS(2960), + [anon_sym_var] = ACTIONS(2960), + [anon_sym_VAR] = ACTIONS(2960), + [anon_sym_While] = ACTIONS(2960), + [anon_sym_while] = ACTIONS(2960), + [anon_sym_WHILE] = ACTIONS(2960), + [anon_sym_With] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2960), + [anon_sym_WITH] = ACTIONS(2960), + [sym_cf_comment] = ACTIONS(2958), + [sym__java_block_open] = ACTIONS(2958), + [sym__static_type_prefix] = ACTIONS(2958), }, [STATE(656)] = { - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_RBRACE] = ACTIONS(2928), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_Query] = ACTIONS(2930), - [anon_sym_query] = ACTIONS(2930), - [anon_sym_QUERY] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_unary_operator_token1] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2928), - [anon_sym_DASH_DASH] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2930), - [aux_sym_number_token2] = ACTIONS(2928), - [anon_sym_This] = ACTIONS(2930), - [anon_sym_this] = ACTIONS(2930), - [anon_sym_THIS] = ACTIONS(2930), - [anon_sym_Super] = ACTIONS(2930), - [anon_sym_super] = ACTIONS(2930), - [anon_sym_SUPER] = ACTIONS(2930), - [anon_sym_True] = ACTIONS(2930), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_TRUE] = ACTIONS(2930), - [anon_sym_False] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [anon_sym_FALSE] = ACTIONS(2930), - [anon_sym_Null] = ACTIONS(2930), - [anon_sym_null] = ACTIONS(2930), - [anon_sym_NULL] = ACTIONS(2930), - [anon_sym_Undefined] = ACTIONS(2930), - [anon_sym_undefined] = ACTIONS(2930), - [anon_sym_UNDEFINED] = ACTIONS(2930), - [anon_sym_get] = ACTIONS(2930), - [anon_sym_set] = ACTIONS(2930), - [anon_sym_POUND] = ACTIONS(2930), - [sym_hash_empty] = ACTIONS(2928), - [anon_sym_export] = ACTIONS(2930), - [anon_sym_QueryExecute] = ACTIONS(2930), - [anon_sym_queryexecute] = ACTIONS(2930), - [anon_sym_QUERYEXECUTE] = ACTIONS(2930), - [anon_sym_queryExecute] = ACTIONS(2930), - [anon_sym_BQUOTE] = ACTIONS(2930), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2928), - [anon_sym_Abstract] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2930), - [anon_sym_ABSTRACT] = ACTIONS(2930), - [anon_sym_Break] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_BREAK] = ACTIONS(2930), - [anon_sym_Case] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_CASE] = ACTIONS(2930), - [anon_sym_Component] = ACTIONS(2930), - [anon_sym_component] = ACTIONS(2930), - [anon_sym_COMPONENT] = ACTIONS(2930), - [anon_sym_Continue] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_CONTINUE] = ACTIONS(2930), - [anon_sym_Debugger] = ACTIONS(2930), - [anon_sym_debugger] = ACTIONS(2930), - [anon_sym_DEBUGGER] = ACTIONS(2930), - [anon_sym_Default] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_DEFAULT] = ACTIONS(2930), - [anon_sym_Do] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_DO] = ACTIONS(2930), - [anon_sym_Else] = ACTIONS(2930), - [anon_sym_else] = ACTIONS(2930), - [anon_sym_ELSE] = ACTIONS(2930), - [anon_sym_Final] = ACTIONS(2930), - [anon_sym_final] = ACTIONS(2930), - [anon_sym_FINAL] = ACTIONS(2930), - [anon_sym_For] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_FOR] = ACTIONS(2930), - [anon_sym_Function] = ACTIONS(2930), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_FUNCTION] = ACTIONS(2930), - [anon_sym_If] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_IF] = ACTIONS(2930), - [anon_sym_Import] = ACTIONS(2930), - [anon_sym_import] = ACTIONS(2930), - [anon_sym_IMPORT] = ACTIONS(2930), - [anon_sym_Include] = ACTIONS(2930), - [anon_sym_include] = ACTIONS(2930), - [anon_sym_INCLUDE] = ACTIONS(2930), - [anon_sym_Interface] = ACTIONS(2930), - [anon_sym_interface] = ACTIONS(2930), - [anon_sym_INTERFACE] = ACTIONS(2930), - [anon_sym_New] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_NEW] = ACTIONS(2930), - [anon_sym_Package] = ACTIONS(2930), - [anon_sym_package] = ACTIONS(2930), - [anon_sym_PACKAGE] = ACTIONS(2930), - [anon_sym_Private] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_PRIVATE] = ACTIONS(2930), - [anon_sym_Property] = ACTIONS(2930), - [anon_sym_property] = ACTIONS(2930), - [anon_sym_PROPERTY] = ACTIONS(2930), - [anon_sym_Public] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_PUBLIC] = ACTIONS(2930), - [anon_sym_Remote] = ACTIONS(2930), - [anon_sym_remote] = ACTIONS(2930), - [anon_sym_REMOTE] = ACTIONS(2930), - [anon_sym_Return] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_RETURN] = ACTIONS(2930), - [anon_sym_Static] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_STATIC] = ACTIONS(2930), - [anon_sym_Switch] = ACTIONS(2930), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_SWITCH] = ACTIONS(2930), - [anon_sym_Throw] = ACTIONS(2930), - [anon_sym_throw] = ACTIONS(2930), - [anon_sym_THROW] = ACTIONS(2930), - [anon_sym_Try] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_TRY] = ACTIONS(2930), - [anon_sym_Var] = ACTIONS(2930), - [anon_sym_var] = ACTIONS(2930), - [anon_sym_VAR] = ACTIONS(2930), - [anon_sym_While] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_WHILE] = ACTIONS(2930), - [anon_sym_With] = ACTIONS(2930), - [anon_sym_with] = ACTIONS(2930), - [anon_sym_WITH] = ACTIONS(2930), - [sym_cf_comment] = ACTIONS(2928), - [sym__java_block_open] = ACTIONS(2928), - [sym__static_type_prefix] = ACTIONS(2928), + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_Query] = ACTIONS(2964), + [anon_sym_query] = ACTIONS(2964), + [anon_sym_QUERY] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [aux_sym_unary_operator_token1] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_SQUOTE] = ACTIONS(2962), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2964), + [aux_sym_number_token2] = ACTIONS(2962), + [anon_sym_This] = ACTIONS(2964), + [anon_sym_this] = ACTIONS(2964), + [anon_sym_THIS] = ACTIONS(2964), + [anon_sym_Super] = ACTIONS(2964), + [anon_sym_super] = ACTIONS(2964), + [anon_sym_SUPER] = ACTIONS(2964), + [anon_sym_True] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2964), + [anon_sym_TRUE] = ACTIONS(2964), + [anon_sym_False] = ACTIONS(2964), + [anon_sym_false] = ACTIONS(2964), + [anon_sym_FALSE] = ACTIONS(2964), + [anon_sym_Null] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_NULL] = ACTIONS(2964), + [anon_sym_Undefined] = ACTIONS(2964), + [anon_sym_undefined] = ACTIONS(2964), + [anon_sym_UNDEFINED] = ACTIONS(2964), + [anon_sym_get] = ACTIONS(2964), + [anon_sym_set] = ACTIONS(2964), + [anon_sym_POUND] = ACTIONS(2964), + [sym_hash_empty] = ACTIONS(2962), + [anon_sym_export] = ACTIONS(2964), + [anon_sym_QueryExecute] = ACTIONS(2964), + [anon_sym_queryexecute] = ACTIONS(2964), + [anon_sym_QUERYEXECUTE] = ACTIONS(2964), + [anon_sym_queryExecute] = ACTIONS(2964), + [anon_sym_BQUOTE] = ACTIONS(2964), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2962), + [anon_sym_Abstract] = ACTIONS(2964), + [anon_sym_abstract] = ACTIONS(2964), + [anon_sym_ABSTRACT] = ACTIONS(2964), + [anon_sym_Break] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2964), + [anon_sym_BREAK] = ACTIONS(2964), + [anon_sym_Case] = ACTIONS(2964), + [anon_sym_case] = ACTIONS(2964), + [anon_sym_CASE] = ACTIONS(2964), + [anon_sym_Component] = ACTIONS(2964), + [anon_sym_component] = ACTIONS(2964), + [anon_sym_COMPONENT] = ACTIONS(2964), + [anon_sym_Continue] = ACTIONS(2964), + [anon_sym_continue] = ACTIONS(2964), + [anon_sym_CONTINUE] = ACTIONS(2964), + [anon_sym_Debugger] = ACTIONS(2964), + [anon_sym_debugger] = ACTIONS(2964), + [anon_sym_DEBUGGER] = ACTIONS(2964), + [anon_sym_Default] = ACTIONS(2964), + [anon_sym_default] = ACTIONS(2964), + [anon_sym_DEFAULT] = ACTIONS(2964), + [anon_sym_Do] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_DO] = ACTIONS(2964), + [anon_sym_Else] = ACTIONS(2964), + [anon_sym_else] = ACTIONS(2964), + [anon_sym_ELSE] = ACTIONS(2964), + [anon_sym_Final] = ACTIONS(2964), + [anon_sym_final] = ACTIONS(2964), + [anon_sym_FINAL] = ACTIONS(2964), + [anon_sym_For] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_FOR] = ACTIONS(2964), + [anon_sym_Function] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_FUNCTION] = ACTIONS(2964), + [anon_sym_If] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_IF] = ACTIONS(2964), + [anon_sym_Import] = ACTIONS(2964), + [anon_sym_import] = ACTIONS(2964), + [anon_sym_IMPORT] = ACTIONS(2964), + [anon_sym_Include] = ACTIONS(2964), + [anon_sym_include] = ACTIONS(2964), + [anon_sym_INCLUDE] = ACTIONS(2964), + [anon_sym_Interface] = ACTIONS(2964), + [anon_sym_interface] = ACTIONS(2964), + [anon_sym_INTERFACE] = ACTIONS(2964), + [anon_sym_New] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_NEW] = ACTIONS(2964), + [anon_sym_Package] = ACTIONS(2964), + [anon_sym_package] = ACTIONS(2964), + [anon_sym_PACKAGE] = ACTIONS(2964), + [anon_sym_Private] = ACTIONS(2964), + [anon_sym_private] = ACTIONS(2964), + [anon_sym_PRIVATE] = ACTIONS(2964), + [anon_sym_Property] = ACTIONS(2964), + [anon_sym_property] = ACTIONS(2964), + [anon_sym_PROPERTY] = ACTIONS(2964), + [anon_sym_Public] = ACTIONS(2964), + [anon_sym_public] = ACTIONS(2964), + [anon_sym_PUBLIC] = ACTIONS(2964), + [anon_sym_Remote] = ACTIONS(2964), + [anon_sym_remote] = ACTIONS(2964), + [anon_sym_REMOTE] = ACTIONS(2964), + [anon_sym_Return] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_RETURN] = ACTIONS(2964), + [anon_sym_Static] = ACTIONS(2964), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_STATIC] = ACTIONS(2964), + [anon_sym_Switch] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2964), + [anon_sym_SWITCH] = ACTIONS(2964), + [anon_sym_Throw] = ACTIONS(2964), + [anon_sym_throw] = ACTIONS(2964), + [anon_sym_THROW] = ACTIONS(2964), + [anon_sym_Try] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_TRY] = ACTIONS(2964), + [anon_sym_Var] = ACTIONS(2964), + [anon_sym_var] = ACTIONS(2964), + [anon_sym_VAR] = ACTIONS(2964), + [anon_sym_While] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_WHILE] = ACTIONS(2964), + [anon_sym_With] = ACTIONS(2964), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_WITH] = ACTIONS(2964), + [sym_cf_comment] = ACTIONS(2962), + [sym__java_block_open] = ACTIONS(2962), + [sym__static_type_prefix] = ACTIONS(2962), + }, + [STATE(657)] = { + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_Query] = ACTIONS(2968), + [anon_sym_query] = ACTIONS(2968), + [anon_sym_QUERY] = ACTIONS(2968), + [anon_sym_PLUS] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_SLASH] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_unary_operator_token1] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_SQUOTE] = ACTIONS(2966), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2968), + [aux_sym_number_token2] = ACTIONS(2966), + [anon_sym_This] = ACTIONS(2968), + [anon_sym_this] = ACTIONS(2968), + [anon_sym_THIS] = ACTIONS(2968), + [anon_sym_Super] = ACTIONS(2968), + [anon_sym_super] = ACTIONS(2968), + [anon_sym_SUPER] = ACTIONS(2968), + [anon_sym_True] = ACTIONS(2968), + [anon_sym_true] = ACTIONS(2968), + [anon_sym_TRUE] = ACTIONS(2968), + [anon_sym_False] = ACTIONS(2968), + [anon_sym_false] = ACTIONS(2968), + [anon_sym_FALSE] = ACTIONS(2968), + [anon_sym_Null] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2968), + [anon_sym_NULL] = ACTIONS(2968), + [anon_sym_Undefined] = ACTIONS(2968), + [anon_sym_undefined] = ACTIONS(2968), + [anon_sym_UNDEFINED] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), + [anon_sym_POUND] = ACTIONS(2968), + [sym_hash_empty] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2968), + [anon_sym_QueryExecute] = ACTIONS(2968), + [anon_sym_queryexecute] = ACTIONS(2968), + [anon_sym_QUERYEXECUTE] = ACTIONS(2968), + [anon_sym_queryExecute] = ACTIONS(2968), + [anon_sym_BQUOTE] = ACTIONS(2968), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2966), + [anon_sym_Abstract] = ACTIONS(2968), + [anon_sym_abstract] = ACTIONS(2968), + [anon_sym_ABSTRACT] = ACTIONS(2968), + [anon_sym_Break] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_BREAK] = ACTIONS(2968), + [anon_sym_Case] = ACTIONS(2968), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_CASE] = ACTIONS(2968), + [anon_sym_Component] = ACTIONS(2968), + [anon_sym_component] = ACTIONS(2968), + [anon_sym_COMPONENT] = ACTIONS(2968), + [anon_sym_Continue] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_CONTINUE] = ACTIONS(2968), + [anon_sym_Debugger] = ACTIONS(2968), + [anon_sym_debugger] = ACTIONS(2968), + [anon_sym_DEBUGGER] = ACTIONS(2968), + [anon_sym_Default] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2968), + [anon_sym_DEFAULT] = ACTIONS(2968), + [anon_sym_Do] = ACTIONS(2968), + [anon_sym_do] = ACTIONS(2968), + [anon_sym_DO] = ACTIONS(2968), + [anon_sym_Else] = ACTIONS(2968), + [anon_sym_else] = ACTIONS(2968), + [anon_sym_ELSE] = ACTIONS(2968), + [anon_sym_Final] = ACTIONS(2968), + [anon_sym_final] = ACTIONS(2968), + [anon_sym_FINAL] = ACTIONS(2968), + [anon_sym_For] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2968), + [anon_sym_FOR] = ACTIONS(2968), + [anon_sym_Function] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2968), + [anon_sym_FUNCTION] = ACTIONS(2968), + [anon_sym_If] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_IF] = ACTIONS(2968), + [anon_sym_Import] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(2968), + [anon_sym_IMPORT] = ACTIONS(2968), + [anon_sym_Include] = ACTIONS(2968), + [anon_sym_include] = ACTIONS(2968), + [anon_sym_INCLUDE] = ACTIONS(2968), + [anon_sym_Interface] = ACTIONS(2968), + [anon_sym_interface] = ACTIONS(2968), + [anon_sym_INTERFACE] = ACTIONS(2968), + [anon_sym_New] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2968), + [anon_sym_NEW] = ACTIONS(2968), + [anon_sym_Package] = ACTIONS(2968), + [anon_sym_package] = ACTIONS(2968), + [anon_sym_PACKAGE] = ACTIONS(2968), + [anon_sym_Private] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_PRIVATE] = ACTIONS(2968), + [anon_sym_Property] = ACTIONS(2968), + [anon_sym_property] = ACTIONS(2968), + [anon_sym_PROPERTY] = ACTIONS(2968), + [anon_sym_Public] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_PUBLIC] = ACTIONS(2968), + [anon_sym_Remote] = ACTIONS(2968), + [anon_sym_remote] = ACTIONS(2968), + [anon_sym_REMOTE] = ACTIONS(2968), + [anon_sym_Return] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_RETURN] = ACTIONS(2968), + [anon_sym_Static] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_STATIC] = ACTIONS(2968), + [anon_sym_Switch] = ACTIONS(2968), + [anon_sym_switch] = ACTIONS(2968), + [anon_sym_SWITCH] = ACTIONS(2968), + [anon_sym_Throw] = ACTIONS(2968), + [anon_sym_throw] = ACTIONS(2968), + [anon_sym_THROW] = ACTIONS(2968), + [anon_sym_Try] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2968), + [anon_sym_TRY] = ACTIONS(2968), + [anon_sym_Var] = ACTIONS(2968), + [anon_sym_var] = ACTIONS(2968), + [anon_sym_VAR] = ACTIONS(2968), + [anon_sym_While] = ACTIONS(2968), + [anon_sym_while] = ACTIONS(2968), + [anon_sym_WHILE] = ACTIONS(2968), + [anon_sym_With] = ACTIONS(2968), + [anon_sym_with] = ACTIONS(2968), + [anon_sym_WITH] = ACTIONS(2968), + [sym_cf_comment] = ACTIONS(2966), + [sym__java_block_open] = ACTIONS(2966), + [sym__static_type_prefix] = ACTIONS(2966), + }, + [STATE(658)] = { + [ts_builtin_sym_end] = ACTIONS(2970), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_Query] = ACTIONS(2972), + [anon_sym_query] = ACTIONS(2972), + [anon_sym_QUERY] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2970), + [aux_sym_unary_operator_token1] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2970), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2972), + [aux_sym_number_token2] = ACTIONS(2970), + [anon_sym_This] = ACTIONS(2972), + [anon_sym_this] = ACTIONS(2972), + [anon_sym_THIS] = ACTIONS(2972), + [anon_sym_Super] = ACTIONS(2972), + [anon_sym_super] = ACTIONS(2972), + [anon_sym_SUPER] = ACTIONS(2972), + [anon_sym_True] = ACTIONS(2972), + [anon_sym_true] = ACTIONS(2972), + [anon_sym_TRUE] = ACTIONS(2972), + [anon_sym_False] = ACTIONS(2972), + [anon_sym_false] = ACTIONS(2972), + [anon_sym_FALSE] = ACTIONS(2972), + [anon_sym_Null] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2972), + [anon_sym_NULL] = ACTIONS(2972), + [anon_sym_Undefined] = ACTIONS(2972), + [anon_sym_undefined] = ACTIONS(2972), + [anon_sym_UNDEFINED] = ACTIONS(2972), + [anon_sym_get] = ACTIONS(2972), + [anon_sym_set] = ACTIONS(2972), + [anon_sym_POUND] = ACTIONS(2972), + [sym_hash_empty] = ACTIONS(2970), + [anon_sym_export] = ACTIONS(2972), + [anon_sym_QueryExecute] = ACTIONS(2972), + [anon_sym_queryexecute] = ACTIONS(2972), + [anon_sym_QUERYEXECUTE] = ACTIONS(2972), + [anon_sym_queryExecute] = ACTIONS(2972), + [anon_sym_BQUOTE] = ACTIONS(2972), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2970), + [anon_sym_Abstract] = ACTIONS(2972), + [anon_sym_abstract] = ACTIONS(2972), + [anon_sym_ABSTRACT] = ACTIONS(2972), + [anon_sym_Break] = ACTIONS(2972), + [anon_sym_break] = ACTIONS(2972), + [anon_sym_BREAK] = ACTIONS(2972), + [anon_sym_Case] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2972), + [anon_sym_CASE] = ACTIONS(2972), + [anon_sym_Component] = ACTIONS(2972), + [anon_sym_component] = ACTIONS(2972), + [anon_sym_COMPONENT] = ACTIONS(2972), + [anon_sym_Continue] = ACTIONS(2972), + [anon_sym_continue] = ACTIONS(2972), + [anon_sym_CONTINUE] = ACTIONS(2972), + [anon_sym_Debugger] = ACTIONS(2972), + [anon_sym_debugger] = ACTIONS(2972), + [anon_sym_DEBUGGER] = ACTIONS(2972), + [anon_sym_Default] = ACTIONS(2972), + [anon_sym_default] = ACTIONS(2972), + [anon_sym_DEFAULT] = ACTIONS(2972), + [anon_sym_Do] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2972), + [anon_sym_DO] = ACTIONS(2972), + [anon_sym_Else] = ACTIONS(2972), + [anon_sym_else] = ACTIONS(2972), + [anon_sym_ELSE] = ACTIONS(2972), + [anon_sym_Final] = ACTIONS(2972), + [anon_sym_final] = ACTIONS(2972), + [anon_sym_FINAL] = ACTIONS(2972), + [anon_sym_For] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2972), + [anon_sym_FOR] = ACTIONS(2972), + [anon_sym_Function] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2972), + [anon_sym_FUNCTION] = ACTIONS(2972), + [anon_sym_If] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_IF] = ACTIONS(2972), + [anon_sym_Import] = ACTIONS(2972), + [anon_sym_import] = ACTIONS(2972), + [anon_sym_IMPORT] = ACTIONS(2972), + [anon_sym_Include] = ACTIONS(2972), + [anon_sym_include] = ACTIONS(2972), + [anon_sym_INCLUDE] = ACTIONS(2972), + [anon_sym_Interface] = ACTIONS(2972), + [anon_sym_interface] = ACTIONS(2972), + [anon_sym_INTERFACE] = ACTIONS(2972), + [anon_sym_New] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2972), + [anon_sym_NEW] = ACTIONS(2972), + [anon_sym_Package] = ACTIONS(2972), + [anon_sym_package] = ACTIONS(2972), + [anon_sym_PACKAGE] = ACTIONS(2972), + [anon_sym_Private] = ACTIONS(2972), + [anon_sym_private] = ACTIONS(2972), + [anon_sym_PRIVATE] = ACTIONS(2972), + [anon_sym_Property] = ACTIONS(2972), + [anon_sym_property] = ACTIONS(2972), + [anon_sym_PROPERTY] = ACTIONS(2972), + [anon_sym_Public] = ACTIONS(2972), + [anon_sym_public] = ACTIONS(2972), + [anon_sym_PUBLIC] = ACTIONS(2972), + [anon_sym_Remote] = ACTIONS(2972), + [anon_sym_remote] = ACTIONS(2972), + [anon_sym_REMOTE] = ACTIONS(2972), + [anon_sym_Return] = ACTIONS(2972), + [anon_sym_return] = ACTIONS(2972), + [anon_sym_RETURN] = ACTIONS(2972), + [anon_sym_Static] = ACTIONS(2972), + [anon_sym_static] = ACTIONS(2972), + [anon_sym_STATIC] = ACTIONS(2972), + [anon_sym_Switch] = ACTIONS(2972), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_SWITCH] = ACTIONS(2972), + [anon_sym_Throw] = ACTIONS(2972), + [anon_sym_throw] = ACTIONS(2972), + [anon_sym_THROW] = ACTIONS(2972), + [anon_sym_Try] = ACTIONS(2972), + [anon_sym_try] = ACTIONS(2972), + [anon_sym_TRY] = ACTIONS(2972), + [anon_sym_Var] = ACTIONS(2972), + [anon_sym_var] = ACTIONS(2972), + [anon_sym_VAR] = ACTIONS(2972), + [anon_sym_While] = ACTIONS(2972), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_WHILE] = ACTIONS(2972), + [anon_sym_With] = ACTIONS(2972), + [anon_sym_with] = ACTIONS(2972), + [anon_sym_WITH] = ACTIONS(2972), + [sym_cf_comment] = ACTIONS(2970), + [sym__java_block_open] = ACTIONS(2970), + [sym__static_type_prefix] = ACTIONS(2970), + }, + [STATE(659)] = { + [ts_builtin_sym_end] = ACTIONS(2974), + [sym_identifier] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_RBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_Query] = ACTIONS(2976), + [anon_sym_query] = ACTIONS(2976), + [anon_sym_QUERY] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2974), + [aux_sym_unary_operator_token1] = ACTIONS(2976), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_SQUOTE] = ACTIONS(2974), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2976), + [aux_sym_number_token2] = ACTIONS(2974), + [anon_sym_This] = ACTIONS(2976), + [anon_sym_this] = ACTIONS(2976), + [anon_sym_THIS] = ACTIONS(2976), + [anon_sym_Super] = ACTIONS(2976), + [anon_sym_super] = ACTIONS(2976), + [anon_sym_SUPER] = ACTIONS(2976), + [anon_sym_True] = ACTIONS(2976), + [anon_sym_true] = ACTIONS(2976), + [anon_sym_TRUE] = ACTIONS(2976), + [anon_sym_False] = ACTIONS(2976), + [anon_sym_false] = ACTIONS(2976), + [anon_sym_FALSE] = ACTIONS(2976), + [anon_sym_Null] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_Undefined] = ACTIONS(2976), + [anon_sym_undefined] = ACTIONS(2976), + [anon_sym_UNDEFINED] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(2976), + [anon_sym_set] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(2976), + [sym_hash_empty] = ACTIONS(2974), + [anon_sym_export] = ACTIONS(2976), + [anon_sym_QueryExecute] = ACTIONS(2976), + [anon_sym_queryexecute] = ACTIONS(2976), + [anon_sym_QUERYEXECUTE] = ACTIONS(2976), + [anon_sym_queryExecute] = ACTIONS(2976), + [anon_sym_BQUOTE] = ACTIONS(2976), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2974), + [anon_sym_Abstract] = ACTIONS(2976), + [anon_sym_abstract] = ACTIONS(2976), + [anon_sym_ABSTRACT] = ACTIONS(2976), + [anon_sym_Break] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_BREAK] = ACTIONS(2976), + [anon_sym_Case] = ACTIONS(2976), + [anon_sym_case] = ACTIONS(2976), + [anon_sym_CASE] = ACTIONS(2976), + [anon_sym_Component] = ACTIONS(2976), + [anon_sym_component] = ACTIONS(2976), + [anon_sym_COMPONENT] = ACTIONS(2976), + [anon_sym_Continue] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_CONTINUE] = ACTIONS(2976), + [anon_sym_Debugger] = ACTIONS(2976), + [anon_sym_debugger] = ACTIONS(2976), + [anon_sym_DEBUGGER] = ACTIONS(2976), + [anon_sym_Default] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_DEFAULT] = ACTIONS(2976), + [anon_sym_Do] = ACTIONS(2976), + [anon_sym_do] = ACTIONS(2976), + [anon_sym_DO] = ACTIONS(2976), + [anon_sym_Else] = ACTIONS(2976), + [anon_sym_else] = ACTIONS(2976), + [anon_sym_ELSE] = ACTIONS(2976), + [anon_sym_Final] = ACTIONS(2976), + [anon_sym_final] = ACTIONS(2976), + [anon_sym_FINAL] = ACTIONS(2976), + [anon_sym_For] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_FOR] = ACTIONS(2976), + [anon_sym_Function] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_FUNCTION] = ACTIONS(2976), + [anon_sym_If] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_IF] = ACTIONS(2976), + [anon_sym_Import] = ACTIONS(2976), + [anon_sym_import] = ACTIONS(2976), + [anon_sym_IMPORT] = ACTIONS(2976), + [anon_sym_Include] = ACTIONS(2976), + [anon_sym_include] = ACTIONS(2976), + [anon_sym_INCLUDE] = ACTIONS(2976), + [anon_sym_Interface] = ACTIONS(2976), + [anon_sym_interface] = ACTIONS(2976), + [anon_sym_INTERFACE] = ACTIONS(2976), + [anon_sym_New] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_NEW] = ACTIONS(2976), + [anon_sym_Package] = ACTIONS(2976), + [anon_sym_package] = ACTIONS(2976), + [anon_sym_PACKAGE] = ACTIONS(2976), + [anon_sym_Private] = ACTIONS(2976), + [anon_sym_private] = ACTIONS(2976), + [anon_sym_PRIVATE] = ACTIONS(2976), + [anon_sym_Property] = ACTIONS(2976), + [anon_sym_property] = ACTIONS(2976), + [anon_sym_PROPERTY] = ACTIONS(2976), + [anon_sym_Public] = ACTIONS(2976), + [anon_sym_public] = ACTIONS(2976), + [anon_sym_PUBLIC] = ACTIONS(2976), + [anon_sym_Remote] = ACTIONS(2976), + [anon_sym_remote] = ACTIONS(2976), + [anon_sym_REMOTE] = ACTIONS(2976), + [anon_sym_Return] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_RETURN] = ACTIONS(2976), + [anon_sym_Static] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_STATIC] = ACTIONS(2976), + [anon_sym_Switch] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2976), + [anon_sym_SWITCH] = ACTIONS(2976), + [anon_sym_Throw] = ACTIONS(2976), + [anon_sym_throw] = ACTIONS(2976), + [anon_sym_THROW] = ACTIONS(2976), + [anon_sym_Try] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [anon_sym_TRY] = ACTIONS(2976), + [anon_sym_Var] = ACTIONS(2976), + [anon_sym_var] = ACTIONS(2976), + [anon_sym_VAR] = ACTIONS(2976), + [anon_sym_While] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_WHILE] = ACTIONS(2976), + [anon_sym_With] = ACTIONS(2976), + [anon_sym_with] = ACTIONS(2976), + [anon_sym_WITH] = ACTIONS(2976), + [sym_cf_comment] = ACTIONS(2974), + [sym__java_block_open] = ACTIONS(2974), + [sym__static_type_prefix] = ACTIONS(2974), + }, + [STATE(660)] = { + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_Query] = ACTIONS(2980), + [anon_sym_query] = ACTIONS(2980), + [anon_sym_QUERY] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [aux_sym_unary_operator_token1] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2980), + [aux_sym_number_token2] = ACTIONS(2978), + [anon_sym_This] = ACTIONS(2980), + [anon_sym_this] = ACTIONS(2980), + [anon_sym_THIS] = ACTIONS(2980), + [anon_sym_Super] = ACTIONS(2980), + [anon_sym_super] = ACTIONS(2980), + [anon_sym_SUPER] = ACTIONS(2980), + [anon_sym_True] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2980), + [anon_sym_TRUE] = ACTIONS(2980), + [anon_sym_False] = ACTIONS(2980), + [anon_sym_false] = ACTIONS(2980), + [anon_sym_FALSE] = ACTIONS(2980), + [anon_sym_Null] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_Undefined] = ACTIONS(2980), + [anon_sym_undefined] = ACTIONS(2980), + [anon_sym_UNDEFINED] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [sym_hash_empty] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_QueryExecute] = ACTIONS(2980), + [anon_sym_queryexecute] = ACTIONS(2980), + [anon_sym_QUERYEXECUTE] = ACTIONS(2980), + [anon_sym_queryExecute] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2978), + [anon_sym_Abstract] = ACTIONS(2980), + [anon_sym_abstract] = ACTIONS(2980), + [anon_sym_ABSTRACT] = ACTIONS(2980), + [anon_sym_Break] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_BREAK] = ACTIONS(2980), + [anon_sym_Case] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_CASE] = ACTIONS(2980), + [anon_sym_Component] = ACTIONS(2980), + [anon_sym_component] = ACTIONS(2980), + [anon_sym_COMPONENT] = ACTIONS(2980), + [anon_sym_Continue] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_CONTINUE] = ACTIONS(2980), + [anon_sym_Debugger] = ACTIONS(2980), + [anon_sym_debugger] = ACTIONS(2980), + [anon_sym_DEBUGGER] = ACTIONS(2980), + [anon_sym_Default] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_DEFAULT] = ACTIONS(2980), + [anon_sym_Do] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_DO] = ACTIONS(2980), + [anon_sym_Else] = ACTIONS(2980), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_ELSE] = ACTIONS(2980), + [anon_sym_Final] = ACTIONS(2980), + [anon_sym_final] = ACTIONS(2980), + [anon_sym_FINAL] = ACTIONS(2980), + [anon_sym_For] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_FOR] = ACTIONS(2980), + [anon_sym_Function] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_FUNCTION] = ACTIONS(2980), + [anon_sym_If] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_IF] = ACTIONS(2980), + [anon_sym_Import] = ACTIONS(2980), + [anon_sym_import] = ACTIONS(2980), + [anon_sym_IMPORT] = ACTIONS(2980), + [anon_sym_Include] = ACTIONS(2980), + [anon_sym_include] = ACTIONS(2980), + [anon_sym_INCLUDE] = ACTIONS(2980), + [anon_sym_Interface] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_INTERFACE] = ACTIONS(2980), + [anon_sym_New] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_NEW] = ACTIONS(2980), + [anon_sym_Package] = ACTIONS(2980), + [anon_sym_package] = ACTIONS(2980), + [anon_sym_PACKAGE] = ACTIONS(2980), + [anon_sym_Private] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_PRIVATE] = ACTIONS(2980), + [anon_sym_Property] = ACTIONS(2980), + [anon_sym_property] = ACTIONS(2980), + [anon_sym_PROPERTY] = ACTIONS(2980), + [anon_sym_Public] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_PUBLIC] = ACTIONS(2980), + [anon_sym_Remote] = ACTIONS(2980), + [anon_sym_remote] = ACTIONS(2980), + [anon_sym_REMOTE] = ACTIONS(2980), + [anon_sym_Return] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_RETURN] = ACTIONS(2980), + [anon_sym_Static] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_STATIC] = ACTIONS(2980), + [anon_sym_Switch] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_SWITCH] = ACTIONS(2980), + [anon_sym_Throw] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_THROW] = ACTIONS(2980), + [anon_sym_Try] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_TRY] = ACTIONS(2980), + [anon_sym_Var] = ACTIONS(2980), + [anon_sym_var] = ACTIONS(2980), + [anon_sym_VAR] = ACTIONS(2980), + [anon_sym_While] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_WHILE] = ACTIONS(2980), + [anon_sym_With] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2980), + [anon_sym_WITH] = ACTIONS(2980), + [sym_cf_comment] = ACTIONS(2978), + [sym__java_block_open] = ACTIONS(2978), + [sym__static_type_prefix] = ACTIONS(2978), + }, + [STATE(661)] = { + [ts_builtin_sym_end] = ACTIONS(2982), + [sym_identifier] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_Query] = ACTIONS(2984), + [anon_sym_query] = ACTIONS(2984), + [anon_sym_QUERY] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [aux_sym_unary_operator_token1] = ACTIONS(2984), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2982), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2984), + [aux_sym_number_token2] = ACTIONS(2982), + [anon_sym_This] = ACTIONS(2984), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_THIS] = ACTIONS(2984), + [anon_sym_Super] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), + [anon_sym_SUPER] = ACTIONS(2984), + [anon_sym_True] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_TRUE] = ACTIONS(2984), + [anon_sym_False] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_FALSE] = ACTIONS(2984), + [anon_sym_Null] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_NULL] = ACTIONS(2984), + [anon_sym_Undefined] = ACTIONS(2984), + [anon_sym_undefined] = ACTIONS(2984), + [anon_sym_UNDEFINED] = ACTIONS(2984), + [anon_sym_get] = ACTIONS(2984), + [anon_sym_set] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(2984), + [sym_hash_empty] = ACTIONS(2982), + [anon_sym_export] = ACTIONS(2984), + [anon_sym_QueryExecute] = ACTIONS(2984), + [anon_sym_queryexecute] = ACTIONS(2984), + [anon_sym_QUERYEXECUTE] = ACTIONS(2984), + [anon_sym_queryExecute] = ACTIONS(2984), + [anon_sym_BQUOTE] = ACTIONS(2984), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2982), + [anon_sym_Abstract] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_ABSTRACT] = ACTIONS(2984), + [anon_sym_Break] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_BREAK] = ACTIONS(2984), + [anon_sym_Case] = ACTIONS(2984), + [anon_sym_case] = ACTIONS(2984), + [anon_sym_CASE] = ACTIONS(2984), + [anon_sym_Component] = ACTIONS(2984), + [anon_sym_component] = ACTIONS(2984), + [anon_sym_COMPONENT] = ACTIONS(2984), + [anon_sym_Continue] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_CONTINUE] = ACTIONS(2984), + [anon_sym_Debugger] = ACTIONS(2984), + [anon_sym_debugger] = ACTIONS(2984), + [anon_sym_DEBUGGER] = ACTIONS(2984), + [anon_sym_Default] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_DEFAULT] = ACTIONS(2984), + [anon_sym_Do] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_DO] = ACTIONS(2984), + [anon_sym_Else] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_ELSE] = ACTIONS(2984), + [anon_sym_Final] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_FINAL] = ACTIONS(2984), + [anon_sym_For] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_FOR] = ACTIONS(2984), + [anon_sym_Function] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2984), + [anon_sym_FUNCTION] = ACTIONS(2984), + [anon_sym_If] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_IF] = ACTIONS(2984), + [anon_sym_Import] = ACTIONS(2984), + [anon_sym_import] = ACTIONS(2984), + [anon_sym_IMPORT] = ACTIONS(2984), + [anon_sym_Include] = ACTIONS(2984), + [anon_sym_include] = ACTIONS(2984), + [anon_sym_INCLUDE] = ACTIONS(2984), + [anon_sym_Interface] = ACTIONS(2984), + [anon_sym_interface] = ACTIONS(2984), + [anon_sym_INTERFACE] = ACTIONS(2984), + [anon_sym_New] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2984), + [anon_sym_NEW] = ACTIONS(2984), + [anon_sym_Package] = ACTIONS(2984), + [anon_sym_package] = ACTIONS(2984), + [anon_sym_PACKAGE] = ACTIONS(2984), + [anon_sym_Private] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_PRIVATE] = ACTIONS(2984), + [anon_sym_Property] = ACTIONS(2984), + [anon_sym_property] = ACTIONS(2984), + [anon_sym_PROPERTY] = ACTIONS(2984), + [anon_sym_Public] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_PUBLIC] = ACTIONS(2984), + [anon_sym_Remote] = ACTIONS(2984), + [anon_sym_remote] = ACTIONS(2984), + [anon_sym_REMOTE] = ACTIONS(2984), + [anon_sym_Return] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_RETURN] = ACTIONS(2984), + [anon_sym_Static] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_STATIC] = ACTIONS(2984), + [anon_sym_Switch] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2984), + [anon_sym_SWITCH] = ACTIONS(2984), + [anon_sym_Throw] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_THROW] = ACTIONS(2984), + [anon_sym_Try] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_TRY] = ACTIONS(2984), + [anon_sym_Var] = ACTIONS(2984), + [anon_sym_var] = ACTIONS(2984), + [anon_sym_VAR] = ACTIONS(2984), + [anon_sym_While] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_WHILE] = ACTIONS(2984), + [anon_sym_With] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2984), + [anon_sym_WITH] = ACTIONS(2984), + [sym_cf_comment] = ACTIONS(2982), + [sym__java_block_open] = ACTIONS(2982), + [sym__static_type_prefix] = ACTIONS(2982), + }, + [STATE(662)] = { + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_Query] = ACTIONS(2988), + [anon_sym_query] = ACTIONS(2988), + [anon_sym_QUERY] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_unary_operator_token1] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2988), + [aux_sym_number_token2] = ACTIONS(2986), + [anon_sym_This] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_THIS] = ACTIONS(2988), + [anon_sym_Super] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_SUPER] = ACTIONS(2988), + [anon_sym_True] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_TRUE] = ACTIONS(2988), + [anon_sym_False] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_FALSE] = ACTIONS(2988), + [anon_sym_Null] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_Undefined] = ACTIONS(2988), + [anon_sym_undefined] = ACTIONS(2988), + [anon_sym_UNDEFINED] = ACTIONS(2988), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [sym_hash_empty] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(2988), + [anon_sym_QueryExecute] = ACTIONS(2988), + [anon_sym_queryexecute] = ACTIONS(2988), + [anon_sym_QUERYEXECUTE] = ACTIONS(2988), + [anon_sym_queryExecute] = ACTIONS(2988), + [anon_sym_BQUOTE] = ACTIONS(2988), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2986), + [anon_sym_Abstract] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_ABSTRACT] = ACTIONS(2988), + [anon_sym_Break] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_BREAK] = ACTIONS(2988), + [anon_sym_Case] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_CASE] = ACTIONS(2988), + [anon_sym_Component] = ACTIONS(2988), + [anon_sym_component] = ACTIONS(2988), + [anon_sym_COMPONENT] = ACTIONS(2988), + [anon_sym_Continue] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_CONTINUE] = ACTIONS(2988), + [anon_sym_Debugger] = ACTIONS(2988), + [anon_sym_debugger] = ACTIONS(2988), + [anon_sym_DEBUGGER] = ACTIONS(2988), + [anon_sym_Default] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_DEFAULT] = ACTIONS(2988), + [anon_sym_Do] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_DO] = ACTIONS(2988), + [anon_sym_Else] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_ELSE] = ACTIONS(2988), + [anon_sym_Final] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_FINAL] = ACTIONS(2988), + [anon_sym_For] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_FOR] = ACTIONS(2988), + [anon_sym_Function] = ACTIONS(2988), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_FUNCTION] = ACTIONS(2988), + [anon_sym_If] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_IF] = ACTIONS(2988), + [anon_sym_Import] = ACTIONS(2988), + [anon_sym_import] = ACTIONS(2988), + [anon_sym_IMPORT] = ACTIONS(2988), + [anon_sym_Include] = ACTIONS(2988), + [anon_sym_include] = ACTIONS(2988), + [anon_sym_INCLUDE] = ACTIONS(2988), + [anon_sym_Interface] = ACTIONS(2988), + [anon_sym_interface] = ACTIONS(2988), + [anon_sym_INTERFACE] = ACTIONS(2988), + [anon_sym_New] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_NEW] = ACTIONS(2988), + [anon_sym_Package] = ACTIONS(2988), + [anon_sym_package] = ACTIONS(2988), + [anon_sym_PACKAGE] = ACTIONS(2988), + [anon_sym_Private] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_PRIVATE] = ACTIONS(2988), + [anon_sym_Property] = ACTIONS(2988), + [anon_sym_property] = ACTIONS(2988), + [anon_sym_PROPERTY] = ACTIONS(2988), + [anon_sym_Public] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_PUBLIC] = ACTIONS(2988), + [anon_sym_Remote] = ACTIONS(2988), + [anon_sym_remote] = ACTIONS(2988), + [anon_sym_REMOTE] = ACTIONS(2988), + [anon_sym_Return] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_RETURN] = ACTIONS(2988), + [anon_sym_Static] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_STATIC] = ACTIONS(2988), + [anon_sym_Switch] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_SWITCH] = ACTIONS(2988), + [anon_sym_Throw] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_THROW] = ACTIONS(2988), + [anon_sym_Try] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_TRY] = ACTIONS(2988), + [anon_sym_Var] = ACTIONS(2988), + [anon_sym_var] = ACTIONS(2988), + [anon_sym_VAR] = ACTIONS(2988), + [anon_sym_While] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_WHILE] = ACTIONS(2988), + [anon_sym_With] = ACTIONS(2988), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_WITH] = ACTIONS(2988), + [sym_cf_comment] = ACTIONS(2986), + [sym__java_block_open] = ACTIONS(2986), + [sym__static_type_prefix] = ACTIONS(2986), + }, + [STATE(663)] = { + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_Query] = ACTIONS(2988), + [anon_sym_query] = ACTIONS(2988), + [anon_sym_QUERY] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_unary_operator_token1] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2988), + [aux_sym_number_token2] = ACTIONS(2986), + [anon_sym_This] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_THIS] = ACTIONS(2988), + [anon_sym_Super] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_SUPER] = ACTIONS(2988), + [anon_sym_True] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_TRUE] = ACTIONS(2988), + [anon_sym_False] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_FALSE] = ACTIONS(2988), + [anon_sym_Null] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_Undefined] = ACTIONS(2988), + [anon_sym_undefined] = ACTIONS(2988), + [anon_sym_UNDEFINED] = ACTIONS(2988), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [sym_hash_empty] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(2988), + [anon_sym_QueryExecute] = ACTIONS(2988), + [anon_sym_queryexecute] = ACTIONS(2988), + [anon_sym_QUERYEXECUTE] = ACTIONS(2988), + [anon_sym_queryExecute] = ACTIONS(2988), + [anon_sym_BQUOTE] = ACTIONS(2988), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2986), + [anon_sym_Abstract] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_ABSTRACT] = ACTIONS(2988), + [anon_sym_Break] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_BREAK] = ACTIONS(2988), + [anon_sym_Case] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_CASE] = ACTIONS(2988), + [anon_sym_Component] = ACTIONS(2988), + [anon_sym_component] = ACTIONS(2988), + [anon_sym_COMPONENT] = ACTIONS(2988), + [anon_sym_Continue] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_CONTINUE] = ACTIONS(2988), + [anon_sym_Debugger] = ACTIONS(2988), + [anon_sym_debugger] = ACTIONS(2988), + [anon_sym_DEBUGGER] = ACTIONS(2988), + [anon_sym_Default] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_DEFAULT] = ACTIONS(2988), + [anon_sym_Do] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_DO] = ACTIONS(2988), + [anon_sym_Else] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_ELSE] = ACTIONS(2988), + [anon_sym_Final] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_FINAL] = ACTIONS(2988), + [anon_sym_For] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_FOR] = ACTIONS(2988), + [anon_sym_Function] = ACTIONS(2988), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_FUNCTION] = ACTIONS(2988), + [anon_sym_If] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_IF] = ACTIONS(2988), + [anon_sym_Import] = ACTIONS(2988), + [anon_sym_import] = ACTIONS(2988), + [anon_sym_IMPORT] = ACTIONS(2988), + [anon_sym_Include] = ACTIONS(2988), + [anon_sym_include] = ACTIONS(2988), + [anon_sym_INCLUDE] = ACTIONS(2988), + [anon_sym_Interface] = ACTIONS(2988), + [anon_sym_interface] = ACTIONS(2988), + [anon_sym_INTERFACE] = ACTIONS(2988), + [anon_sym_New] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_NEW] = ACTIONS(2988), + [anon_sym_Package] = ACTIONS(2988), + [anon_sym_package] = ACTIONS(2988), + [anon_sym_PACKAGE] = ACTIONS(2988), + [anon_sym_Private] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_PRIVATE] = ACTIONS(2988), + [anon_sym_Property] = ACTIONS(2988), + [anon_sym_property] = ACTIONS(2988), + [anon_sym_PROPERTY] = ACTIONS(2988), + [anon_sym_Public] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_PUBLIC] = ACTIONS(2988), + [anon_sym_Remote] = ACTIONS(2988), + [anon_sym_remote] = ACTIONS(2988), + [anon_sym_REMOTE] = ACTIONS(2988), + [anon_sym_Return] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_RETURN] = ACTIONS(2988), + [anon_sym_Static] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_STATIC] = ACTIONS(2988), + [anon_sym_Switch] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_SWITCH] = ACTIONS(2988), + [anon_sym_Throw] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_THROW] = ACTIONS(2988), + [anon_sym_Try] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_TRY] = ACTIONS(2988), + [anon_sym_Var] = ACTIONS(2988), + [anon_sym_var] = ACTIONS(2988), + [anon_sym_VAR] = ACTIONS(2988), + [anon_sym_While] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_WHILE] = ACTIONS(2988), + [anon_sym_With] = ACTIONS(2988), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_WITH] = ACTIONS(2988), + [sym_cf_comment] = ACTIONS(2986), + [sym__java_block_open] = ACTIONS(2986), + [sym__static_type_prefix] = ACTIONS(2986), + }, + [STATE(664)] = { + [sym_arguments] = STATE(672), + [sym_identifier] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_Query] = ACTIONS(2300), + [anon_sym_query] = ACTIONS(2300), + [anon_sym_QUERY] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_BSLASH] = ACTIONS(2300), + [anon_sym_STAR_STAR] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2300), + [aux_sym_binary_expression_token2] = ACTIONS(2300), + [aux_sym_binary_expression_token3] = ACTIONS(2300), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2303), + [aux_sym_unary_operator_token1] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2300), + [aux_sym_number_token2] = ACTIONS(2300), + [anon_sym_This] = ACTIONS(2300), + [anon_sym_this] = ACTIONS(2300), + [anon_sym_THIS] = ACTIONS(2300), + [anon_sym_Super] = ACTIONS(2300), + [anon_sym_super] = ACTIONS(2300), + [anon_sym_SUPER] = ACTIONS(2300), + [anon_sym_True] = ACTIONS(2300), + [anon_sym_true] = ACTIONS(2300), + [anon_sym_TRUE] = ACTIONS(2300), + [anon_sym_False] = ACTIONS(2300), + [anon_sym_false] = ACTIONS(2300), + [anon_sym_FALSE] = ACTIONS(2300), + [anon_sym_Null] = ACTIONS(2300), + [anon_sym_null] = ACTIONS(2300), + [anon_sym_NULL] = ACTIONS(2300), + [anon_sym_Undefined] = ACTIONS(2300), + [anon_sym_undefined] = ACTIONS(2300), + [anon_sym_UNDEFINED] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(2300), + [sym_hash_empty] = ACTIONS(2303), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_QueryExecute] = ACTIONS(2300), + [anon_sym_queryexecute] = ACTIONS(2300), + [anon_sym_QUERYEXECUTE] = ACTIONS(2300), + [anon_sym_queryExecute] = ACTIONS(2300), + [anon_sym_BQUOTE] = ACTIONS(2303), + [anon_sym_Abstract] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_ABSTRACT] = ACTIONS(2300), + [anon_sym_Component] = ACTIONS(2300), + [anon_sym_component] = ACTIONS(2300), + [anon_sym_COMPONENT] = ACTIONS(2300), + [anon_sym_Debugger] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_DEBUGGER] = ACTIONS(2300), + [anon_sym_Final] = ACTIONS(2300), + [anon_sym_final] = ACTIONS(2300), + [anon_sym_FINAL] = ACTIONS(2300), + [anon_sym_Function] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_FUNCTION] = ACTIONS(2300), + [anon_sym_In] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_IN] = ACTIONS(2300), + [anon_sym_Include] = ACTIONS(2300), + [anon_sym_include] = ACTIONS(2300), + [anon_sym_INCLUDE] = ACTIONS(2300), + [anon_sym_InstanceOf] = ACTIONS(2300), + [anon_sym_instanceof] = ACTIONS(2300), + [anon_sym_INSTANCEOF] = ACTIONS(2300), + [anon_sym_instanceOf] = ACTIONS(2300), + [anon_sym_New] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_NEW] = ACTIONS(2300), + [anon_sym_Package] = ACTIONS(2300), + [anon_sym_package] = ACTIONS(2300), + [anon_sym_PACKAGE] = ACTIONS(2300), + [anon_sym_Private] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_PRIVATE] = ACTIONS(2300), + [anon_sym_Public] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_PUBLIC] = ACTIONS(2300), + [anon_sym_Remote] = ACTIONS(2300), + [anon_sym_remote] = ACTIONS(2300), + [anon_sym_REMOTE] = ACTIONS(2300), + [anon_sym_Static] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_STATIC] = ACTIONS(2300), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), + [sym__java_block_open] = ACTIONS(2303), + [sym__static_type_prefix] = ACTIONS(2303), + }, + [STATE(665)] = { + [sym_arguments] = STATE(672), + [sym_identifier] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_let] = ACTIONS(2306), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_Query] = ACTIONS(2306), + [anon_sym_query] = ACTIONS(2306), + [anon_sym_QUERY] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2306), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2306), + [anon_sym_TILDE] = ACTIONS(2309), + [aux_sym_unary_operator_token1] = ACTIONS(2306), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2306), + [aux_sym_number_token2] = ACTIONS(2306), + [anon_sym_This] = ACTIONS(2306), + [anon_sym_this] = ACTIONS(2306), + [anon_sym_THIS] = ACTIONS(2306), + [anon_sym_Super] = ACTIONS(2306), + [anon_sym_super] = ACTIONS(2306), + [anon_sym_SUPER] = ACTIONS(2306), + [anon_sym_True] = ACTIONS(2306), + [anon_sym_true] = ACTIONS(2306), + [anon_sym_TRUE] = ACTIONS(2306), + [anon_sym_False] = ACTIONS(2306), + [anon_sym_false] = ACTIONS(2306), + [anon_sym_FALSE] = ACTIONS(2306), + [anon_sym_Null] = ACTIONS(2306), + [anon_sym_null] = ACTIONS(2306), + [anon_sym_NULL] = ACTIONS(2306), + [anon_sym_Undefined] = ACTIONS(2306), + [anon_sym_undefined] = ACTIONS(2306), + [anon_sym_UNDEFINED] = ACTIONS(2306), + [anon_sym_get] = ACTIONS(2306), + [anon_sym_set] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(2306), + [sym_hash_empty] = ACTIONS(2309), + [anon_sym_export] = ACTIONS(2306), + [anon_sym_QueryExecute] = ACTIONS(2306), + [anon_sym_queryexecute] = ACTIONS(2306), + [anon_sym_QUERYEXECUTE] = ACTIONS(2306), + [anon_sym_queryExecute] = ACTIONS(2306), + [anon_sym_BQUOTE] = ACTIONS(2309), + [anon_sym_Abstract] = ACTIONS(2306), + [anon_sym_abstract] = ACTIONS(2306), + [anon_sym_ABSTRACT] = ACTIONS(2306), + [anon_sym_Component] = ACTIONS(2306), + [anon_sym_component] = ACTIONS(2306), + [anon_sym_COMPONENT] = ACTIONS(2306), + [anon_sym_Debugger] = ACTIONS(2306), + [anon_sym_debugger] = ACTIONS(2306), + [anon_sym_DEBUGGER] = ACTIONS(2306), + [anon_sym_Final] = ACTIONS(2306), + [anon_sym_final] = ACTIONS(2306), + [anon_sym_FINAL] = ACTIONS(2306), + [anon_sym_Function] = ACTIONS(2306), + [anon_sym_function] = ACTIONS(2306), + [anon_sym_FUNCTION] = ACTIONS(2306), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_Include] = ACTIONS(2306), + [anon_sym_include] = ACTIONS(2306), + [anon_sym_INCLUDE] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2306), + [anon_sym_instanceof] = ACTIONS(2306), + [anon_sym_INSTANCEOF] = ACTIONS(2306), + [anon_sym_instanceOf] = ACTIONS(2306), + [anon_sym_New] = ACTIONS(2306), + [anon_sym_new] = ACTIONS(2306), + [anon_sym_NEW] = ACTIONS(2306), + [anon_sym_Package] = ACTIONS(2306), + [anon_sym_package] = ACTIONS(2306), + [anon_sym_PACKAGE] = ACTIONS(2306), + [anon_sym_Private] = ACTIONS(2306), + [anon_sym_private] = ACTIONS(2306), + [anon_sym_PRIVATE] = ACTIONS(2306), + [anon_sym_Public] = ACTIONS(2306), + [anon_sym_public] = ACTIONS(2306), + [anon_sym_PUBLIC] = ACTIONS(2306), + [anon_sym_Remote] = ACTIONS(2306), + [anon_sym_remote] = ACTIONS(2306), + [anon_sym_REMOTE] = ACTIONS(2306), + [anon_sym_Static] = ACTIONS(2306), + [anon_sym_static] = ACTIONS(2306), + [anon_sym_STATIC] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), + [sym__java_block_open] = ACTIONS(2309), + [sym__static_type_prefix] = ACTIONS(2309), + }, + [STATE(666)] = { + [ts_builtin_sym_end] = ACTIONS(2272), + [sym_identifier] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_Query] = ACTIONS(2270), + [anon_sym_query] = ACTIONS(2270), + [anon_sym_QUERY] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [aux_sym_unary_operator_token1] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2270), + [aux_sym_number_token2] = ACTIONS(2272), + [anon_sym_This] = ACTIONS(2270), + [anon_sym_this] = ACTIONS(2270), + [anon_sym_THIS] = ACTIONS(2270), + [anon_sym_Super] = ACTIONS(2270), + [anon_sym_super] = ACTIONS(2270), + [anon_sym_SUPER] = ACTIONS(2270), + [anon_sym_True] = ACTIONS(2270), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_TRUE] = ACTIONS(2270), + [anon_sym_False] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [anon_sym_FALSE] = ACTIONS(2270), + [anon_sym_Null] = ACTIONS(2270), + [anon_sym_null] = ACTIONS(2270), + [anon_sym_NULL] = ACTIONS(2270), + [anon_sym_Undefined] = ACTIONS(2270), + [anon_sym_undefined] = ACTIONS(2270), + [anon_sym_UNDEFINED] = ACTIONS(2270), + [anon_sym_get] = ACTIONS(2270), + [anon_sym_set] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(2270), + [sym_hash_empty] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2270), + [anon_sym_QueryExecute] = ACTIONS(2270), + [anon_sym_queryexecute] = ACTIONS(2270), + [anon_sym_QUERYEXECUTE] = ACTIONS(2270), + [anon_sym_queryExecute] = ACTIONS(2270), + [anon_sym_BQUOTE] = ACTIONS(2270), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2272), + [anon_sym_Abstract] = ACTIONS(2270), + [anon_sym_abstract] = ACTIONS(2270), + [anon_sym_ABSTRACT] = ACTIONS(2270), + [anon_sym_Break] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_BREAK] = ACTIONS(2270), + [anon_sym_Case] = ACTIONS(2270), + [anon_sym_case] = ACTIONS(2270), + [anon_sym_CASE] = ACTIONS(2270), + [anon_sym_Component] = ACTIONS(2270), + [anon_sym_component] = ACTIONS(2270), + [anon_sym_COMPONENT] = ACTIONS(2270), + [anon_sym_Continue] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_CONTINUE] = ACTIONS(2270), + [anon_sym_Debugger] = ACTIONS(2270), + [anon_sym_debugger] = ACTIONS(2270), + [anon_sym_DEBUGGER] = ACTIONS(2270), + [anon_sym_Default] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2270), + [anon_sym_DEFAULT] = ACTIONS(2270), + [anon_sym_Do] = ACTIONS(2270), + [anon_sym_do] = ACTIONS(2270), + [anon_sym_DO] = ACTIONS(2270), + [anon_sym_Else] = ACTIONS(2270), + [anon_sym_else] = ACTIONS(2270), + [anon_sym_ELSE] = ACTIONS(2270), + [anon_sym_Final] = ACTIONS(2270), + [anon_sym_final] = ACTIONS(2270), + [anon_sym_FINAL] = ACTIONS(2270), + [anon_sym_For] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_FOR] = ACTIONS(2270), + [anon_sym_Function] = ACTIONS(2270), + [anon_sym_function] = ACTIONS(2270), + [anon_sym_FUNCTION] = ACTIONS(2270), + [anon_sym_If] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_IF] = ACTIONS(2270), + [anon_sym_Import] = ACTIONS(2270), + [anon_sym_import] = ACTIONS(2270), + [anon_sym_IMPORT] = ACTIONS(2270), + [anon_sym_Include] = ACTIONS(2270), + [anon_sym_include] = ACTIONS(2270), + [anon_sym_INCLUDE] = ACTIONS(2270), + [anon_sym_Interface] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2270), + [anon_sym_INTERFACE] = ACTIONS(2270), + [anon_sym_New] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2270), + [anon_sym_NEW] = ACTIONS(2270), + [anon_sym_Package] = ACTIONS(2270), + [anon_sym_package] = ACTIONS(2270), + [anon_sym_PACKAGE] = ACTIONS(2270), + [anon_sym_Private] = ACTIONS(2270), + [anon_sym_private] = ACTIONS(2270), + [anon_sym_PRIVATE] = ACTIONS(2270), + [anon_sym_Property] = ACTIONS(2270), + [anon_sym_property] = ACTIONS(2270), + [anon_sym_PROPERTY] = ACTIONS(2270), + [anon_sym_Public] = ACTIONS(2270), + [anon_sym_public] = ACTIONS(2270), + [anon_sym_PUBLIC] = ACTIONS(2270), + [anon_sym_Remote] = ACTIONS(2270), + [anon_sym_remote] = ACTIONS(2270), + [anon_sym_REMOTE] = ACTIONS(2270), + [anon_sym_Return] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_RETURN] = ACTIONS(2270), + [anon_sym_Static] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_STATIC] = ACTIONS(2270), + [anon_sym_Switch] = ACTIONS(2270), + [anon_sym_switch] = ACTIONS(2270), + [anon_sym_SWITCH] = ACTIONS(2270), + [anon_sym_Throw] = ACTIONS(2270), + [anon_sym_throw] = ACTIONS(2270), + [anon_sym_THROW] = ACTIONS(2270), + [anon_sym_Try] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2270), + [anon_sym_TRY] = ACTIONS(2270), + [anon_sym_Var] = ACTIONS(2270), + [anon_sym_var] = ACTIONS(2270), + [anon_sym_VAR] = ACTIONS(2270), + [anon_sym_While] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_WHILE] = ACTIONS(2270), + [anon_sym_With] = ACTIONS(2270), + [anon_sym_with] = ACTIONS(2270), + [anon_sym_WITH] = ACTIONS(2270), + [sym_cf_comment] = ACTIONS(2272), + [sym__java_block_open] = ACTIONS(2272), + [sym__static_type_prefix] = ACTIONS(2272), + }, + [STATE(667)] = { + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_Query] = ACTIONS(2294), + [anon_sym_query] = ACTIONS(2294), + [anon_sym_QUERY] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [aux_sym_unary_operator_token1] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2294), + [aux_sym_number_token2] = ACTIONS(2296), + [anon_sym_This] = ACTIONS(2294), + [anon_sym_this] = ACTIONS(2294), + [anon_sym_THIS] = ACTIONS(2294), + [anon_sym_Super] = ACTIONS(2294), + [anon_sym_super] = ACTIONS(2294), + [anon_sym_SUPER] = ACTIONS(2294), + [anon_sym_True] = ACTIONS(2294), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_TRUE] = ACTIONS(2294), + [anon_sym_False] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [anon_sym_FALSE] = ACTIONS(2294), + [anon_sym_Null] = ACTIONS(2294), + [anon_sym_null] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_Undefined] = ACTIONS(2294), + [anon_sym_undefined] = ACTIONS(2294), + [anon_sym_UNDEFINED] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [sym_hash_empty] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_QueryExecute] = ACTIONS(2294), + [anon_sym_queryexecute] = ACTIONS(2294), + [anon_sym_QUERYEXECUTE] = ACTIONS(2294), + [anon_sym_queryExecute] = ACTIONS(2294), + [anon_sym_BQUOTE] = ACTIONS(2294), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2296), + [anon_sym_Abstract] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_ABSTRACT] = ACTIONS(2294), + [anon_sym_Break] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_BREAK] = ACTIONS(2294), + [anon_sym_Case] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_CASE] = ACTIONS(2294), + [anon_sym_Component] = ACTIONS(2294), + [anon_sym_component] = ACTIONS(2294), + [anon_sym_COMPONENT] = ACTIONS(2294), + [anon_sym_Continue] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_CONTINUE] = ACTIONS(2294), + [anon_sym_Debugger] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_DEBUGGER] = ACTIONS(2294), + [anon_sym_Default] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_DEFAULT] = ACTIONS(2294), + [anon_sym_Do] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_DO] = ACTIONS(2294), + [anon_sym_Else] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_ELSE] = ACTIONS(2294), + [anon_sym_Final] = ACTIONS(2294), + [anon_sym_final] = ACTIONS(2294), + [anon_sym_FINAL] = ACTIONS(2294), + [anon_sym_For] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_FOR] = ACTIONS(2294), + [anon_sym_Function] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_FUNCTION] = ACTIONS(2294), + [anon_sym_If] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_IF] = ACTIONS(2294), + [anon_sym_Import] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_IMPORT] = ACTIONS(2294), + [anon_sym_Include] = ACTIONS(2294), + [anon_sym_include] = ACTIONS(2294), + [anon_sym_INCLUDE] = ACTIONS(2294), + [anon_sym_Interface] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_INTERFACE] = ACTIONS(2294), + [anon_sym_New] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_NEW] = ACTIONS(2294), + [anon_sym_Package] = ACTIONS(2294), + [anon_sym_package] = ACTIONS(2294), + [anon_sym_PACKAGE] = ACTIONS(2294), + [anon_sym_Private] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_PRIVATE] = ACTIONS(2294), + [anon_sym_Property] = ACTIONS(2294), + [anon_sym_property] = ACTIONS(2294), + [anon_sym_PROPERTY] = ACTIONS(2294), + [anon_sym_Public] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_PUBLIC] = ACTIONS(2294), + [anon_sym_Remote] = ACTIONS(2294), + [anon_sym_remote] = ACTIONS(2294), + [anon_sym_REMOTE] = ACTIONS(2294), + [anon_sym_Return] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_RETURN] = ACTIONS(2294), + [anon_sym_Static] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_STATIC] = ACTIONS(2294), + [anon_sym_Switch] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_SWITCH] = ACTIONS(2294), + [anon_sym_Throw] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_THROW] = ACTIONS(2294), + [anon_sym_Try] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_TRY] = ACTIONS(2294), + [anon_sym_Var] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_VAR] = ACTIONS(2294), + [anon_sym_While] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_WHILE] = ACTIONS(2294), + [anon_sym_With] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_WITH] = ACTIONS(2294), + [sym_cf_comment] = ACTIONS(2296), + [sym__java_block_open] = ACTIONS(2296), + [sym__static_type_prefix] = ACTIONS(2296), + }, + [STATE(668)] = { + [sym_identifier] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2316), + [anon_sym_Query] = ACTIONS(2314), + [anon_sym_query] = ACTIONS(2314), + [anon_sym_QUERY] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2314), + [sym_optional_chain] = ACTIONS(2316), + [sym_static_chain] = ACTIONS(2316), + [anon_sym_AMP_AMP] = ACTIONS(2316), + [anon_sym_PIPE_PIPE] = ACTIONS(2316), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2316), + [anon_sym_LT_LT] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2316), + [anon_sym_BSLASH] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2316), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2316), + [anon_sym_LT_GT] = ACTIONS(2316), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2316), + [aux_sym_binary_expression_token1] = ACTIONS(2316), + [anon_sym_GT_EQ] = ACTIONS(2316), + [anon_sym_GT] = ACTIONS(2314), + [aux_sym_binary_expression_token2] = ACTIONS(2314), + [aux_sym_binary_expression_token3] = ACTIONS(2314), + [aux_sym_binary_expression_token4] = ACTIONS(2316), + [aux_sym_binary_expression_token5] = ACTIONS(2316), + [aux_sym_binary_expression_token6] = ACTIONS(2316), + [anon_sym_QMARK_QMARK] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2316), + [aux_sym_unary_operator_token1] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2316), + [anon_sym_DASH_DASH] = ACTIONS(2316), + [anon_sym_DQUOTE] = ACTIONS(2316), + [anon_sym_SQUOTE] = ACTIONS(2316), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2314), + [aux_sym_number_token2] = ACTIONS(2314), + [anon_sym_This] = ACTIONS(2314), + [anon_sym_this] = ACTIONS(2314), + [anon_sym_THIS] = ACTIONS(2314), + [anon_sym_Super] = ACTIONS(2314), + [anon_sym_super] = ACTIONS(2314), + [anon_sym_SUPER] = ACTIONS(2314), + [anon_sym_True] = ACTIONS(2314), + [anon_sym_true] = ACTIONS(2314), + [anon_sym_TRUE] = ACTIONS(2314), + [anon_sym_False] = ACTIONS(2314), + [anon_sym_false] = ACTIONS(2314), + [anon_sym_FALSE] = ACTIONS(2314), + [anon_sym_Null] = ACTIONS(2314), + [anon_sym_null] = ACTIONS(2314), + [anon_sym_NULL] = ACTIONS(2314), + [anon_sym_Undefined] = ACTIONS(2314), + [anon_sym_undefined] = ACTIONS(2314), + [anon_sym_UNDEFINED] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(2314), + [sym_hash_empty] = ACTIONS(2316), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_QueryExecute] = ACTIONS(2314), + [anon_sym_queryexecute] = ACTIONS(2314), + [anon_sym_QUERYEXECUTE] = ACTIONS(2314), + [anon_sym_queryExecute] = ACTIONS(2314), + [anon_sym_BQUOTE] = ACTIONS(2316), + [anon_sym_Abstract] = ACTIONS(2314), + [anon_sym_abstract] = ACTIONS(2314), + [anon_sym_ABSTRACT] = ACTIONS(2314), + [anon_sym_Component] = ACTIONS(2314), + [anon_sym_component] = ACTIONS(2314), + [anon_sym_COMPONENT] = ACTIONS(2314), + [anon_sym_Debugger] = ACTIONS(2314), + [anon_sym_debugger] = ACTIONS(2314), + [anon_sym_DEBUGGER] = ACTIONS(2314), + [anon_sym_Final] = ACTIONS(2314), + [anon_sym_final] = ACTIONS(2314), + [anon_sym_FINAL] = ACTIONS(2314), + [anon_sym_Function] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(2314), + [anon_sym_FUNCTION] = ACTIONS(2314), + [anon_sym_In] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_IN] = ACTIONS(2314), + [anon_sym_Include] = ACTIONS(2314), + [anon_sym_include] = ACTIONS(2314), + [anon_sym_INCLUDE] = ACTIONS(2314), + [anon_sym_InstanceOf] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_INSTANCEOF] = ACTIONS(2314), + [anon_sym_instanceOf] = ACTIONS(2314), + [anon_sym_New] = ACTIONS(2314), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_NEW] = ACTIONS(2314), + [anon_sym_Package] = ACTIONS(2314), + [anon_sym_package] = ACTIONS(2314), + [anon_sym_PACKAGE] = ACTIONS(2314), + [anon_sym_Private] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_PRIVATE] = ACTIONS(2314), + [anon_sym_Public] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_PUBLIC] = ACTIONS(2314), + [anon_sym_Remote] = ACTIONS(2314), + [anon_sym_remote] = ACTIONS(2314), + [anon_sym_REMOTE] = ACTIONS(2314), + [anon_sym_Static] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_STATIC] = ACTIONS(2314), + [sym__ternary_qmark] = ACTIONS(2316), + [sym__elvis_operator] = ACTIONS(2316), + [sym_logical_or] = ACTIONS(2316), + [sym__java_block_open] = ACTIONS(2316), + [sym__static_type_prefix] = ACTIONS(2316), + }, + [STATE(669)] = { + [sym_arguments] = STATE(672), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(1718), + [anon_sym_query] = ACTIONS(1718), + [anon_sym_QUERY] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(2996), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [aux_sym_unary_operator_token1] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1718), + [aux_sym_number_token2] = ACTIONS(1718), + [anon_sym_This] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_THIS] = ACTIONS(1718), + [anon_sym_Super] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(1718), + [anon_sym_SUPER] = ACTIONS(1718), + [anon_sym_True] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_TRUE] = ACTIONS(1718), + [anon_sym_False] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_FALSE] = ACTIONS(1718), + [anon_sym_Null] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_NULL] = ACTIONS(1718), + [anon_sym_Undefined] = ACTIONS(1718), + [anon_sym_undefined] = ACTIONS(1718), + [anon_sym_UNDEFINED] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [sym_hash_empty] = ACTIONS(1716), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_QueryExecute] = ACTIONS(1718), + [anon_sym_queryexecute] = ACTIONS(1718), + [anon_sym_QUERYEXECUTE] = ACTIONS(1718), + [anon_sym_queryExecute] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_Abstract] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_ABSTRACT] = ACTIONS(1718), + [anon_sym_Component] = ACTIONS(1718), + [anon_sym_component] = ACTIONS(1718), + [anon_sym_COMPONENT] = ACTIONS(1718), + [anon_sym_Debugger] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_DEBUGGER] = ACTIONS(1718), + [anon_sym_Final] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_FINAL] = ACTIONS(1718), + [anon_sym_Function] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_FUNCTION] = ACTIONS(1718), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1718), + [anon_sym_include] = ACTIONS(1718), + [anon_sym_INCLUDE] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_NEW] = ACTIONS(1718), + [anon_sym_Package] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_PACKAGE] = ACTIONS(1718), + [anon_sym_Private] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_PRIVATE] = ACTIONS(1718), + [anon_sym_Public] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_PUBLIC] = ACTIONS(1718), + [anon_sym_Remote] = ACTIONS(1718), + [anon_sym_remote] = ACTIONS(1718), + [anon_sym_REMOTE] = ACTIONS(1718), + [anon_sym_Static] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_STATIC] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(1716), + [sym__static_type_prefix] = ACTIONS(1716), + }, + [STATE(670)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_let] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_Query] = ACTIONS(507), + [anon_sym_query] = ACTIONS(507), + [anon_sym_QUERY] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [aux_sym_unary_operator_token1] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(507), + [aux_sym_number_token2] = ACTIONS(507), + [anon_sym_This] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), + [anon_sym_THIS] = ACTIONS(507), + [anon_sym_Super] = ACTIONS(507), + [anon_sym_super] = ACTIONS(507), + [anon_sym_SUPER] = ACTIONS(507), + [anon_sym_True] = ACTIONS(507), + [anon_sym_true] = ACTIONS(507), + [anon_sym_TRUE] = ACTIONS(507), + [anon_sym_False] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_FALSE] = ACTIONS(507), + [anon_sym_Null] = ACTIONS(507), + [anon_sym_null] = ACTIONS(507), + [anon_sym_NULL] = ACTIONS(507), + [anon_sym_Undefined] = ACTIONS(507), + [anon_sym_undefined] = ACTIONS(507), + [anon_sym_UNDEFINED] = ACTIONS(507), + [anon_sym_get] = ACTIONS(507), + [anon_sym_set] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [sym_hash_empty] = ACTIONS(509), + [anon_sym_export] = ACTIONS(507), + [anon_sym_QueryExecute] = ACTIONS(507), + [anon_sym_queryexecute] = ACTIONS(507), + [anon_sym_QUERYEXECUTE] = ACTIONS(507), + [anon_sym_queryExecute] = ACTIONS(507), + [anon_sym_BQUOTE] = ACTIONS(509), + [anon_sym_Abstract] = ACTIONS(507), + [anon_sym_abstract] = ACTIONS(507), + [anon_sym_ABSTRACT] = ACTIONS(507), + [anon_sym_Component] = ACTIONS(507), + [anon_sym_component] = ACTIONS(507), + [anon_sym_COMPONENT] = ACTIONS(507), + [anon_sym_Debugger] = ACTIONS(507), + [anon_sym_debugger] = ACTIONS(507), + [anon_sym_DEBUGGER] = ACTIONS(507), + [anon_sym_Final] = ACTIONS(507), + [anon_sym_final] = ACTIONS(507), + [anon_sym_FINAL] = ACTIONS(507), + [anon_sym_Function] = ACTIONS(507), + [anon_sym_function] = ACTIONS(507), + [anon_sym_FUNCTION] = ACTIONS(507), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(507), + [anon_sym_include] = ACTIONS(507), + [anon_sym_INCLUDE] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(507), + [anon_sym_new] = ACTIONS(507), + [anon_sym_NEW] = ACTIONS(507), + [anon_sym_Package] = ACTIONS(507), + [anon_sym_package] = ACTIONS(507), + [anon_sym_PACKAGE] = ACTIONS(507), + [anon_sym_Private] = ACTIONS(507), + [anon_sym_private] = ACTIONS(507), + [anon_sym_PRIVATE] = ACTIONS(507), + [anon_sym_Public] = ACTIONS(507), + [anon_sym_public] = ACTIONS(507), + [anon_sym_PUBLIC] = ACTIONS(507), + [anon_sym_Remote] = ACTIONS(507), + [anon_sym_remote] = ACTIONS(507), + [anon_sym_REMOTE] = ACTIONS(507), + [anon_sym_Static] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_STATIC] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(509), + [sym__static_type_prefix] = ACTIONS(509), + }, + [STATE(671)] = { + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2324), + [anon_sym_COLON] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2326), + [anon_sym_Query] = ACTIONS(2324), + [anon_sym_query] = ACTIONS(2324), + [anon_sym_QUERY] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), + [sym_optional_chain] = ACTIONS(2326), + [sym_static_chain] = ACTIONS(2326), + [anon_sym_AMP_AMP] = ACTIONS(2326), + [anon_sym_PIPE_PIPE] = ACTIONS(2326), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_GT_GT_GT] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_SLASH] = ACTIONS(2324), + [anon_sym_PERCENT] = ACTIONS(2326), + [anon_sym_BSLASH] = ACTIONS(2324), + [anon_sym_STAR_STAR] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_LT_EQ] = ACTIONS(2326), + [anon_sym_EQ_EQ] = ACTIONS(2324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), + [anon_sym_LT_GT] = ACTIONS(2326), + [anon_sym_BANG_EQ] = ACTIONS(2324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), + [aux_sym_binary_expression_token1] = ACTIONS(2326), + [anon_sym_GT_EQ] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2324), + [aux_sym_binary_expression_token2] = ACTIONS(2324), + [aux_sym_binary_expression_token3] = ACTIONS(2324), + [aux_sym_binary_expression_token4] = ACTIONS(2326), + [aux_sym_binary_expression_token5] = ACTIONS(2326), + [aux_sym_binary_expression_token6] = ACTIONS(2326), + [anon_sym_QMARK_QMARK] = ACTIONS(2326), + [anon_sym_BANG] = ACTIONS(2324), + [anon_sym_TILDE] = ACTIONS(2326), + [aux_sym_unary_operator_token1] = ACTIONS(2324), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(2326), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2324), + [aux_sym_number_token2] = ACTIONS(2324), + [anon_sym_This] = ACTIONS(2324), + [anon_sym_this] = ACTIONS(2324), + [anon_sym_THIS] = ACTIONS(2324), + [anon_sym_Super] = ACTIONS(2324), + [anon_sym_super] = ACTIONS(2324), + [anon_sym_SUPER] = ACTIONS(2324), + [anon_sym_True] = ACTIONS(2324), + [anon_sym_true] = ACTIONS(2324), + [anon_sym_TRUE] = ACTIONS(2324), + [anon_sym_False] = ACTIONS(2324), + [anon_sym_false] = ACTIONS(2324), + [anon_sym_FALSE] = ACTIONS(2324), + [anon_sym_Null] = ACTIONS(2324), + [anon_sym_null] = ACTIONS(2324), + [anon_sym_NULL] = ACTIONS(2324), + [anon_sym_Undefined] = ACTIONS(2324), + [anon_sym_undefined] = ACTIONS(2324), + [anon_sym_UNDEFINED] = ACTIONS(2324), + [anon_sym_get] = ACTIONS(2324), + [anon_sym_set] = ACTIONS(2324), + [anon_sym_POUND] = ACTIONS(2324), + [sym_hash_empty] = ACTIONS(2326), + [anon_sym_export] = ACTIONS(2324), + [anon_sym_QueryExecute] = ACTIONS(2324), + [anon_sym_queryexecute] = ACTIONS(2324), + [anon_sym_QUERYEXECUTE] = ACTIONS(2324), + [anon_sym_queryExecute] = ACTIONS(2324), + [anon_sym_BQUOTE] = ACTIONS(2326), + [anon_sym_Abstract] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2324), + [anon_sym_ABSTRACT] = ACTIONS(2324), + [anon_sym_Component] = ACTIONS(2324), + [anon_sym_component] = ACTIONS(2324), + [anon_sym_COMPONENT] = ACTIONS(2324), + [anon_sym_Debugger] = ACTIONS(2324), + [anon_sym_debugger] = ACTIONS(2324), + [anon_sym_DEBUGGER] = ACTIONS(2324), + [anon_sym_Final] = ACTIONS(2324), + [anon_sym_final] = ACTIONS(2324), + [anon_sym_FINAL] = ACTIONS(2324), + [anon_sym_Function] = ACTIONS(2324), + [anon_sym_function] = ACTIONS(2324), + [anon_sym_FUNCTION] = ACTIONS(2324), + [anon_sym_In] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2324), + [anon_sym_IN] = ACTIONS(2324), + [anon_sym_Include] = ACTIONS(2324), + [anon_sym_include] = ACTIONS(2324), + [anon_sym_INCLUDE] = ACTIONS(2324), + [anon_sym_InstanceOf] = ACTIONS(2324), + [anon_sym_instanceof] = ACTIONS(2324), + [anon_sym_INSTANCEOF] = ACTIONS(2324), + [anon_sym_instanceOf] = ACTIONS(2324), + [anon_sym_New] = ACTIONS(2324), + [anon_sym_new] = ACTIONS(2324), + [anon_sym_NEW] = ACTIONS(2324), + [anon_sym_Package] = ACTIONS(2324), + [anon_sym_package] = ACTIONS(2324), + [anon_sym_PACKAGE] = ACTIONS(2324), + [anon_sym_Private] = ACTIONS(2324), + [anon_sym_private] = ACTIONS(2324), + [anon_sym_PRIVATE] = ACTIONS(2324), + [anon_sym_Public] = ACTIONS(2324), + [anon_sym_public] = ACTIONS(2324), + [anon_sym_PUBLIC] = ACTIONS(2324), + [anon_sym_Remote] = ACTIONS(2324), + [anon_sym_remote] = ACTIONS(2324), + [anon_sym_REMOTE] = ACTIONS(2324), + [anon_sym_Static] = ACTIONS(2324), + [anon_sym_static] = ACTIONS(2324), + [anon_sym_STATIC] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2326), + [sym__elvis_operator] = ACTIONS(2326), + [sym_logical_or] = ACTIONS(2326), + [sym__java_block_open] = ACTIONS(2326), + [sym__static_type_prefix] = ACTIONS(2326), + }, + [STATE(672)] = { + [sym_identifier] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_COLON] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2330), + [anon_sym_Query] = ACTIONS(2328), + [anon_sym_query] = ACTIONS(2328), + [anon_sym_QUERY] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2328), + [sym_optional_chain] = ACTIONS(2330), + [sym_static_chain] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2330), + [anon_sym_LT_LT] = ACTIONS(2330), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2330), + [anon_sym_BSLASH] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2330), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2330), + [anon_sym_LT_GT] = ACTIONS(2330), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2330), + [aux_sym_binary_expression_token1] = ACTIONS(2330), + [anon_sym_GT_EQ] = ACTIONS(2330), + [anon_sym_GT] = ACTIONS(2328), + [aux_sym_binary_expression_token2] = ACTIONS(2328), + [aux_sym_binary_expression_token3] = ACTIONS(2328), + [aux_sym_binary_expression_token4] = ACTIONS(2330), + [aux_sym_binary_expression_token5] = ACTIONS(2330), + [aux_sym_binary_expression_token6] = ACTIONS(2330), + [anon_sym_QMARK_QMARK] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2330), + [aux_sym_unary_operator_token1] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2330), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2328), + [aux_sym_number_token2] = ACTIONS(2328), + [anon_sym_This] = ACTIONS(2328), + [anon_sym_this] = ACTIONS(2328), + [anon_sym_THIS] = ACTIONS(2328), + [anon_sym_Super] = ACTIONS(2328), + [anon_sym_super] = ACTIONS(2328), + [anon_sym_SUPER] = ACTIONS(2328), + [anon_sym_True] = ACTIONS(2328), + [anon_sym_true] = ACTIONS(2328), + [anon_sym_TRUE] = ACTIONS(2328), + [anon_sym_False] = ACTIONS(2328), + [anon_sym_false] = ACTIONS(2328), + [anon_sym_FALSE] = ACTIONS(2328), + [anon_sym_Null] = ACTIONS(2328), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_NULL] = ACTIONS(2328), + [anon_sym_Undefined] = ACTIONS(2328), + [anon_sym_undefined] = ACTIONS(2328), + [anon_sym_UNDEFINED] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_POUND] = ACTIONS(2328), + [sym_hash_empty] = ACTIONS(2330), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_QueryExecute] = ACTIONS(2328), + [anon_sym_queryexecute] = ACTIONS(2328), + [anon_sym_QUERYEXECUTE] = ACTIONS(2328), + [anon_sym_queryExecute] = ACTIONS(2328), + [anon_sym_BQUOTE] = ACTIONS(2330), + [anon_sym_Abstract] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_ABSTRACT] = ACTIONS(2328), + [anon_sym_Component] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_COMPONENT] = ACTIONS(2328), + [anon_sym_Debugger] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_DEBUGGER] = ACTIONS(2328), + [anon_sym_Final] = ACTIONS(2328), + [anon_sym_final] = ACTIONS(2328), + [anon_sym_FINAL] = ACTIONS(2328), + [anon_sym_Function] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_FUNCTION] = ACTIONS(2328), + [anon_sym_In] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_IN] = ACTIONS(2328), + [anon_sym_Include] = ACTIONS(2328), + [anon_sym_include] = ACTIONS(2328), + [anon_sym_INCLUDE] = ACTIONS(2328), + [anon_sym_InstanceOf] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_INSTANCEOF] = ACTIONS(2328), + [anon_sym_instanceOf] = ACTIONS(2328), + [anon_sym_New] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_NEW] = ACTIONS(2328), + [anon_sym_Package] = ACTIONS(2328), + [anon_sym_package] = ACTIONS(2328), + [anon_sym_PACKAGE] = ACTIONS(2328), + [anon_sym_Private] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_PRIVATE] = ACTIONS(2328), + [anon_sym_Public] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_PUBLIC] = ACTIONS(2328), + [anon_sym_Remote] = ACTIONS(2328), + [anon_sym_remote] = ACTIONS(2328), + [anon_sym_REMOTE] = ACTIONS(2328), + [anon_sym_Static] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_STATIC] = ACTIONS(2328), + [sym__ternary_qmark] = ACTIONS(2330), + [sym__elvis_operator] = ACTIONS(2330), + [sym_logical_or] = ACTIONS(2330), + [sym__java_block_open] = ACTIONS(2330), + [sym__static_type_prefix] = ACTIONS(2330), }, - [STATE(657)] = { - [ts_builtin_sym_end] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_Query] = ACTIONS(2934), - [anon_sym_query] = ACTIONS(2934), - [anon_sym_QUERY] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2932), - [aux_sym_unary_operator_token1] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2934), - [aux_sym_number_token2] = ACTIONS(2932), - [anon_sym_This] = ACTIONS(2934), - [anon_sym_this] = ACTIONS(2934), - [anon_sym_THIS] = ACTIONS(2934), - [anon_sym_Super] = ACTIONS(2934), - [anon_sym_super] = ACTIONS(2934), - [anon_sym_SUPER] = ACTIONS(2934), - [anon_sym_True] = ACTIONS(2934), - [anon_sym_true] = ACTIONS(2934), - [anon_sym_TRUE] = ACTIONS(2934), - [anon_sym_False] = ACTIONS(2934), - [anon_sym_false] = ACTIONS(2934), - [anon_sym_FALSE] = ACTIONS(2934), - [anon_sym_Null] = ACTIONS(2934), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_NULL] = ACTIONS(2934), - [anon_sym_Undefined] = ACTIONS(2934), - [anon_sym_undefined] = ACTIONS(2934), - [anon_sym_UNDEFINED] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(2934), - [anon_sym_set] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [sym_hash_empty] = ACTIONS(2932), - [anon_sym_export] = ACTIONS(2934), - [anon_sym_QueryExecute] = ACTIONS(2934), - [anon_sym_queryexecute] = ACTIONS(2934), - [anon_sym_QUERYEXECUTE] = ACTIONS(2934), - [anon_sym_queryExecute] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2932), - [anon_sym_Abstract] = ACTIONS(2934), - [anon_sym_abstract] = ACTIONS(2934), - [anon_sym_ABSTRACT] = ACTIONS(2934), - [anon_sym_Break] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_BREAK] = ACTIONS(2934), - [anon_sym_Case] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_CASE] = ACTIONS(2934), - [anon_sym_Component] = ACTIONS(2934), - [anon_sym_component] = ACTIONS(2934), - [anon_sym_COMPONENT] = ACTIONS(2934), - [anon_sym_Continue] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_CONTINUE] = ACTIONS(2934), - [anon_sym_Debugger] = ACTIONS(2934), - [anon_sym_debugger] = ACTIONS(2934), - [anon_sym_DEBUGGER] = ACTIONS(2934), - [anon_sym_Default] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_DEFAULT] = ACTIONS(2934), - [anon_sym_Do] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_DO] = ACTIONS(2934), - [anon_sym_Else] = ACTIONS(2934), - [anon_sym_else] = ACTIONS(2934), - [anon_sym_ELSE] = ACTIONS(2934), - [anon_sym_Final] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_FINAL] = ACTIONS(2934), - [anon_sym_For] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_FOR] = ACTIONS(2934), - [anon_sym_Function] = ACTIONS(2934), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_FUNCTION] = ACTIONS(2934), - [anon_sym_If] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_IF] = ACTIONS(2934), - [anon_sym_Import] = ACTIONS(2934), - [anon_sym_import] = ACTIONS(2934), - [anon_sym_IMPORT] = ACTIONS(2934), - [anon_sym_Include] = ACTIONS(2934), - [anon_sym_include] = ACTIONS(2934), - [anon_sym_INCLUDE] = ACTIONS(2934), - [anon_sym_Interface] = ACTIONS(2934), - [anon_sym_interface] = ACTIONS(2934), - [anon_sym_INTERFACE] = ACTIONS(2934), - [anon_sym_New] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_NEW] = ACTIONS(2934), - [anon_sym_Package] = ACTIONS(2934), - [anon_sym_package] = ACTIONS(2934), - [anon_sym_PACKAGE] = ACTIONS(2934), - [anon_sym_Private] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_PRIVATE] = ACTIONS(2934), - [anon_sym_Property] = ACTIONS(2934), - [anon_sym_property] = ACTIONS(2934), - [anon_sym_PROPERTY] = ACTIONS(2934), - [anon_sym_Public] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_PUBLIC] = ACTIONS(2934), - [anon_sym_Remote] = ACTIONS(2934), - [anon_sym_remote] = ACTIONS(2934), - [anon_sym_REMOTE] = ACTIONS(2934), - [anon_sym_Return] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_RETURN] = ACTIONS(2934), - [anon_sym_Static] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_STATIC] = ACTIONS(2934), - [anon_sym_Switch] = ACTIONS(2934), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_SWITCH] = ACTIONS(2934), - [anon_sym_Throw] = ACTIONS(2934), - [anon_sym_throw] = ACTIONS(2934), - [anon_sym_THROW] = ACTIONS(2934), - [anon_sym_Try] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_TRY] = ACTIONS(2934), - [anon_sym_Var] = ACTIONS(2934), - [anon_sym_var] = ACTIONS(2934), - [anon_sym_VAR] = ACTIONS(2934), - [anon_sym_While] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_WHILE] = ACTIONS(2934), - [anon_sym_With] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), - [anon_sym_WITH] = ACTIONS(2934), - [sym_cf_comment] = ACTIONS(2932), - [sym__java_block_open] = ACTIONS(2932), - [sym__static_type_prefix] = ACTIONS(2932), + [STATE(673)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Else] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_ELSE] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, - [STATE(658)] = { - [ts_builtin_sym_end] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_RBRACE] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_Query] = ACTIONS(2938), - [anon_sym_query] = ACTIONS(2938), - [anon_sym_QUERY] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_unary_operator_token1] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2938), - [aux_sym_number_token2] = ACTIONS(2936), - [anon_sym_This] = ACTIONS(2938), - [anon_sym_this] = ACTIONS(2938), - [anon_sym_THIS] = ACTIONS(2938), - [anon_sym_Super] = ACTIONS(2938), - [anon_sym_super] = ACTIONS(2938), - [anon_sym_SUPER] = ACTIONS(2938), - [anon_sym_True] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_TRUE] = ACTIONS(2938), - [anon_sym_False] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [anon_sym_FALSE] = ACTIONS(2938), - [anon_sym_Null] = ACTIONS(2938), - [anon_sym_null] = ACTIONS(2938), - [anon_sym_NULL] = ACTIONS(2938), - [anon_sym_Undefined] = ACTIONS(2938), - [anon_sym_undefined] = ACTIONS(2938), - [anon_sym_UNDEFINED] = ACTIONS(2938), - [anon_sym_get] = ACTIONS(2938), - [anon_sym_set] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [sym_hash_empty] = ACTIONS(2936), - [anon_sym_export] = ACTIONS(2938), - [anon_sym_QueryExecute] = ACTIONS(2938), - [anon_sym_queryexecute] = ACTIONS(2938), - [anon_sym_QUERYEXECUTE] = ACTIONS(2938), - [anon_sym_queryExecute] = ACTIONS(2938), - [anon_sym_BQUOTE] = ACTIONS(2938), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2936), - [anon_sym_Abstract] = ACTIONS(2938), - [anon_sym_abstract] = ACTIONS(2938), - [anon_sym_ABSTRACT] = ACTIONS(2938), - [anon_sym_Break] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_BREAK] = ACTIONS(2938), - [anon_sym_Case] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_CASE] = ACTIONS(2938), - [anon_sym_Component] = ACTIONS(2938), - [anon_sym_component] = ACTIONS(2938), - [anon_sym_COMPONENT] = ACTIONS(2938), - [anon_sym_Continue] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_CONTINUE] = ACTIONS(2938), - [anon_sym_Debugger] = ACTIONS(2938), - [anon_sym_debugger] = ACTIONS(2938), - [anon_sym_DEBUGGER] = ACTIONS(2938), - [anon_sym_Default] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_DEFAULT] = ACTIONS(2938), - [anon_sym_Do] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_DO] = ACTIONS(2938), - [anon_sym_Else] = ACTIONS(2938), - [anon_sym_else] = ACTIONS(2938), - [anon_sym_ELSE] = ACTIONS(2938), - [anon_sym_Final] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_FINAL] = ACTIONS(2938), - [anon_sym_For] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_FOR] = ACTIONS(2938), - [anon_sym_Function] = ACTIONS(2938), - [anon_sym_function] = ACTIONS(2938), - [anon_sym_FUNCTION] = ACTIONS(2938), - [anon_sym_If] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_IF] = ACTIONS(2938), - [anon_sym_Import] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2938), - [anon_sym_IMPORT] = ACTIONS(2938), - [anon_sym_Include] = ACTIONS(2938), - [anon_sym_include] = ACTIONS(2938), - [anon_sym_INCLUDE] = ACTIONS(2938), - [anon_sym_Interface] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2938), - [anon_sym_INTERFACE] = ACTIONS(2938), - [anon_sym_New] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(2938), - [anon_sym_NEW] = ACTIONS(2938), - [anon_sym_Package] = ACTIONS(2938), - [anon_sym_package] = ACTIONS(2938), - [anon_sym_PACKAGE] = ACTIONS(2938), - [anon_sym_Private] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_PRIVATE] = ACTIONS(2938), - [anon_sym_Property] = ACTIONS(2938), - [anon_sym_property] = ACTIONS(2938), - [anon_sym_PROPERTY] = ACTIONS(2938), - [anon_sym_Public] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_PUBLIC] = ACTIONS(2938), - [anon_sym_Remote] = ACTIONS(2938), - [anon_sym_remote] = ACTIONS(2938), - [anon_sym_REMOTE] = ACTIONS(2938), - [anon_sym_Return] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_RETURN] = ACTIONS(2938), - [anon_sym_Static] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_STATIC] = ACTIONS(2938), - [anon_sym_Switch] = ACTIONS(2938), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_SWITCH] = ACTIONS(2938), - [anon_sym_Throw] = ACTIONS(2938), - [anon_sym_throw] = ACTIONS(2938), - [anon_sym_THROW] = ACTIONS(2938), - [anon_sym_Try] = ACTIONS(2938), - [anon_sym_try] = ACTIONS(2938), - [anon_sym_TRY] = ACTIONS(2938), - [anon_sym_Var] = ACTIONS(2938), - [anon_sym_var] = ACTIONS(2938), - [anon_sym_VAR] = ACTIONS(2938), - [anon_sym_While] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_WHILE] = ACTIONS(2938), - [anon_sym_With] = ACTIONS(2938), - [anon_sym_with] = ACTIONS(2938), - [anon_sym_WITH] = ACTIONS(2938), - [sym_cf_comment] = ACTIONS(2936), - [sym__java_block_open] = ACTIONS(2936), - [sym__static_type_prefix] = ACTIONS(2936), + [STATE(674)] = { + [sym_identifier] = ACTIONS(2332), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_Query] = ACTIONS(2332), + [anon_sym_query] = ACTIONS(2332), + [anon_sym_QUERY] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), + [sym_optional_chain] = ACTIONS(2334), + [sym_static_chain] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2332), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_BSLASH] = ACTIONS(2332), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [aux_sym_binary_expression_token1] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2332), + [aux_sym_binary_expression_token2] = ACTIONS(2332), + [aux_sym_binary_expression_token3] = ACTIONS(2332), + [aux_sym_binary_expression_token4] = ACTIONS(2334), + [aux_sym_binary_expression_token5] = ACTIONS(2334), + [aux_sym_binary_expression_token6] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2334), + [aux_sym_unary_operator_token1] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2334), + [sym_comment] = ACTIONS(129), + [sym_regex_flags] = ACTIONS(3000), + [aux_sym_number_token1] = ACTIONS(2332), + [aux_sym_number_token2] = ACTIONS(2332), + [anon_sym_This] = ACTIONS(2332), + [anon_sym_this] = ACTIONS(2332), + [anon_sym_THIS] = ACTIONS(2332), + [anon_sym_Super] = ACTIONS(2332), + [anon_sym_super] = ACTIONS(2332), + [anon_sym_SUPER] = ACTIONS(2332), + [anon_sym_True] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_TRUE] = ACTIONS(2332), + [anon_sym_False] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_FALSE] = ACTIONS(2332), + [anon_sym_Null] = ACTIONS(2332), + [anon_sym_null] = ACTIONS(2332), + [anon_sym_NULL] = ACTIONS(2332), + [anon_sym_Undefined] = ACTIONS(2332), + [anon_sym_undefined] = ACTIONS(2332), + [anon_sym_UNDEFINED] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(2332), + [sym_hash_empty] = ACTIONS(2334), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_QueryExecute] = ACTIONS(2332), + [anon_sym_queryexecute] = ACTIONS(2332), + [anon_sym_QUERYEXECUTE] = ACTIONS(2332), + [anon_sym_queryExecute] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_Abstract] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_ABSTRACT] = ACTIONS(2332), + [anon_sym_Component] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_COMPONENT] = ACTIONS(2332), + [anon_sym_Debugger] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_DEBUGGER] = ACTIONS(2332), + [anon_sym_Final] = ACTIONS(2332), + [anon_sym_final] = ACTIONS(2332), + [anon_sym_FINAL] = ACTIONS(2332), + [anon_sym_Function] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_FUNCTION] = ACTIONS(2332), + [anon_sym_In] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_IN] = ACTIONS(2332), + [anon_sym_Include] = ACTIONS(2332), + [anon_sym_include] = ACTIONS(2332), + [anon_sym_INCLUDE] = ACTIONS(2332), + [anon_sym_InstanceOf] = ACTIONS(2332), + [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_INSTANCEOF] = ACTIONS(2332), + [anon_sym_instanceOf] = ACTIONS(2332), + [anon_sym_New] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_NEW] = ACTIONS(2332), + [anon_sym_Package] = ACTIONS(2332), + [anon_sym_package] = ACTIONS(2332), + [anon_sym_PACKAGE] = ACTIONS(2332), + [anon_sym_Private] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_PRIVATE] = ACTIONS(2332), + [anon_sym_Public] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_PUBLIC] = ACTIONS(2332), + [anon_sym_Remote] = ACTIONS(2332), + [anon_sym_remote] = ACTIONS(2332), + [anon_sym_REMOTE] = ACTIONS(2332), + [anon_sym_Static] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_STATIC] = ACTIONS(2332), + [sym__ternary_qmark] = ACTIONS(2334), + [sym__elvis_operator] = ACTIONS(2334), + [sym_logical_or] = ACTIONS(2334), + [sym__java_block_open] = ACTIONS(2334), + [sym__static_type_prefix] = ACTIONS(2334), }, - [STATE(659)] = { - [ts_builtin_sym_end] = ACTIONS(2940), - [sym_identifier] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_Query] = ACTIONS(2942), - [anon_sym_query] = ACTIONS(2942), - [anon_sym_QUERY] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2940), - [anon_sym_TILDE] = ACTIONS(2940), - [aux_sym_unary_operator_token1] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2940), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2942), - [aux_sym_number_token2] = ACTIONS(2940), - [anon_sym_This] = ACTIONS(2942), - [anon_sym_this] = ACTIONS(2942), - [anon_sym_THIS] = ACTIONS(2942), - [anon_sym_Super] = ACTIONS(2942), - [anon_sym_super] = ACTIONS(2942), - [anon_sym_SUPER] = ACTIONS(2942), - [anon_sym_True] = ACTIONS(2942), - [anon_sym_true] = ACTIONS(2942), - [anon_sym_TRUE] = ACTIONS(2942), - [anon_sym_False] = ACTIONS(2942), - [anon_sym_false] = ACTIONS(2942), - [anon_sym_FALSE] = ACTIONS(2942), - [anon_sym_Null] = ACTIONS(2942), - [anon_sym_null] = ACTIONS(2942), - [anon_sym_NULL] = ACTIONS(2942), - [anon_sym_Undefined] = ACTIONS(2942), - [anon_sym_undefined] = ACTIONS(2942), - [anon_sym_UNDEFINED] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2942), - [sym_hash_empty] = ACTIONS(2940), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_QueryExecute] = ACTIONS(2942), - [anon_sym_queryexecute] = ACTIONS(2942), - [anon_sym_QUERYEXECUTE] = ACTIONS(2942), - [anon_sym_queryExecute] = ACTIONS(2942), - [anon_sym_BQUOTE] = ACTIONS(2942), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2940), - [anon_sym_Abstract] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_ABSTRACT] = ACTIONS(2942), - [anon_sym_Break] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_BREAK] = ACTIONS(2942), - [anon_sym_Case] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_CASE] = ACTIONS(2942), - [anon_sym_Component] = ACTIONS(2942), - [anon_sym_component] = ACTIONS(2942), - [anon_sym_COMPONENT] = ACTIONS(2942), - [anon_sym_Continue] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_CONTINUE] = ACTIONS(2942), - [anon_sym_Debugger] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_DEBUGGER] = ACTIONS(2942), - [anon_sym_Default] = ACTIONS(2942), - [anon_sym_default] = ACTIONS(2942), - [anon_sym_DEFAULT] = ACTIONS(2942), - [anon_sym_Do] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_DO] = ACTIONS(2942), - [anon_sym_Else] = ACTIONS(2942), - [anon_sym_else] = ACTIONS(2942), - [anon_sym_ELSE] = ACTIONS(2942), - [anon_sym_Final] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_FINAL] = ACTIONS(2942), - [anon_sym_For] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_FOR] = ACTIONS(2942), - [anon_sym_Function] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_FUNCTION] = ACTIONS(2942), - [anon_sym_If] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_IF] = ACTIONS(2942), - [anon_sym_Import] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_IMPORT] = ACTIONS(2942), - [anon_sym_Include] = ACTIONS(2942), - [anon_sym_include] = ACTIONS(2942), - [anon_sym_INCLUDE] = ACTIONS(2942), - [anon_sym_Interface] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_INTERFACE] = ACTIONS(2942), - [anon_sym_New] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_NEW] = ACTIONS(2942), - [anon_sym_Package] = ACTIONS(2942), - [anon_sym_package] = ACTIONS(2942), - [anon_sym_PACKAGE] = ACTIONS(2942), - [anon_sym_Private] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_PRIVATE] = ACTIONS(2942), - [anon_sym_Property] = ACTIONS(2942), - [anon_sym_property] = ACTIONS(2942), - [anon_sym_PROPERTY] = ACTIONS(2942), - [anon_sym_Public] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_PUBLIC] = ACTIONS(2942), - [anon_sym_Remote] = ACTIONS(2942), - [anon_sym_remote] = ACTIONS(2942), - [anon_sym_REMOTE] = ACTIONS(2942), - [anon_sym_Return] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_RETURN] = ACTIONS(2942), - [anon_sym_Static] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_STATIC] = ACTIONS(2942), - [anon_sym_Switch] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_SWITCH] = ACTIONS(2942), - [anon_sym_Throw] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_THROW] = ACTIONS(2942), - [anon_sym_Try] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_TRY] = ACTIONS(2942), - [anon_sym_Var] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_VAR] = ACTIONS(2942), - [anon_sym_While] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_WHILE] = ACTIONS(2942), - [anon_sym_With] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_WITH] = ACTIONS(2942), - [sym_cf_comment] = ACTIONS(2940), - [sym__java_block_open] = ACTIONS(2940), - [sym__static_type_prefix] = ACTIONS(2940), + [STATE(675)] = { + [sym_identifier] = ACTIONS(2282), + [anon_sym_DOT] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2282), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_Query] = ACTIONS(2282), + [anon_sym_query] = ACTIONS(2282), + [anon_sym_QUERY] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2282), + [sym_optional_chain] = ACTIONS(2284), + [sym_static_chain] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_GT_GT_GT] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2282), + [anon_sym_STAR_STAR] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_LT_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2284), + [anon_sym_LT_GT] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2284), + [aux_sym_binary_expression_token1] = ACTIONS(2284), + [anon_sym_GT_EQ] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2282), + [aux_sym_binary_expression_token2] = ACTIONS(2282), + [aux_sym_binary_expression_token3] = ACTIONS(2282), + [aux_sym_binary_expression_token4] = ACTIONS(2284), + [aux_sym_binary_expression_token5] = ACTIONS(2284), + [aux_sym_binary_expression_token6] = ACTIONS(2284), + [anon_sym_QMARK_QMARK] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2282), + [anon_sym_TILDE] = ACTIONS(2284), + [aux_sym_unary_operator_token1] = ACTIONS(2282), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2282), + [aux_sym_number_token2] = ACTIONS(2282), + [anon_sym_This] = ACTIONS(2282), + [anon_sym_this] = ACTIONS(2282), + [anon_sym_THIS] = ACTIONS(2282), + [anon_sym_Super] = ACTIONS(2282), + [anon_sym_super] = ACTIONS(2282), + [anon_sym_SUPER] = ACTIONS(2282), + [anon_sym_True] = ACTIONS(2282), + [anon_sym_true] = ACTIONS(2282), + [anon_sym_TRUE] = ACTIONS(2282), + [anon_sym_False] = ACTIONS(2282), + [anon_sym_false] = ACTIONS(2282), + [anon_sym_FALSE] = ACTIONS(2282), + [anon_sym_Null] = ACTIONS(2282), + [anon_sym_null] = ACTIONS(2282), + [anon_sym_NULL] = ACTIONS(2282), + [anon_sym_Undefined] = ACTIONS(2282), + [anon_sym_undefined] = ACTIONS(2282), + [anon_sym_UNDEFINED] = ACTIONS(2282), + [anon_sym_get] = ACTIONS(2282), + [anon_sym_set] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(2282), + [sym_hash_empty] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(2282), + [anon_sym_QueryExecute] = ACTIONS(2282), + [anon_sym_queryexecute] = ACTIONS(2282), + [anon_sym_QUERYEXECUTE] = ACTIONS(2282), + [anon_sym_queryExecute] = ACTIONS(2282), + [anon_sym_BQUOTE] = ACTIONS(2284), + [anon_sym_Abstract] = ACTIONS(2282), + [anon_sym_abstract] = ACTIONS(2282), + [anon_sym_ABSTRACT] = ACTIONS(2282), + [anon_sym_Component] = ACTIONS(2282), + [anon_sym_component] = ACTIONS(2282), + [anon_sym_COMPONENT] = ACTIONS(2282), + [anon_sym_Debugger] = ACTIONS(2282), + [anon_sym_debugger] = ACTIONS(2282), + [anon_sym_DEBUGGER] = ACTIONS(2282), + [anon_sym_Final] = ACTIONS(2282), + [anon_sym_final] = ACTIONS(2282), + [anon_sym_FINAL] = ACTIONS(2282), + [anon_sym_Function] = ACTIONS(2282), + [anon_sym_function] = ACTIONS(2282), + [anon_sym_FUNCTION] = ACTIONS(2282), + [anon_sym_In] = ACTIONS(2282), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_IN] = ACTIONS(2282), + [anon_sym_Include] = ACTIONS(2282), + [anon_sym_include] = ACTIONS(2282), + [anon_sym_INCLUDE] = ACTIONS(2282), + [anon_sym_InstanceOf] = ACTIONS(2282), + [anon_sym_instanceof] = ACTIONS(2282), + [anon_sym_INSTANCEOF] = ACTIONS(2282), + [anon_sym_instanceOf] = ACTIONS(2282), + [anon_sym_New] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2282), + [anon_sym_NEW] = ACTIONS(2282), + [anon_sym_Package] = ACTIONS(2282), + [anon_sym_package] = ACTIONS(2282), + [anon_sym_PACKAGE] = ACTIONS(2282), + [anon_sym_Private] = ACTIONS(2282), + [anon_sym_private] = ACTIONS(2282), + [anon_sym_PRIVATE] = ACTIONS(2282), + [anon_sym_Public] = ACTIONS(2282), + [anon_sym_public] = ACTIONS(2282), + [anon_sym_PUBLIC] = ACTIONS(2282), + [anon_sym_Remote] = ACTIONS(2282), + [anon_sym_remote] = ACTIONS(2282), + [anon_sym_REMOTE] = ACTIONS(2282), + [anon_sym_Static] = ACTIONS(2282), + [anon_sym_static] = ACTIONS(2282), + [anon_sym_STATIC] = ACTIONS(2282), + [sym__ternary_qmark] = ACTIONS(2284), + [sym__elvis_operator] = ACTIONS(2284), + [sym_logical_or] = ACTIONS(2284), + [sym__java_block_open] = ACTIONS(2284), + [sym__static_type_prefix] = ACTIONS(2284), }, - [STATE(660)] = { - [ts_builtin_sym_end] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_RBRACE] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_let] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_Query] = ACTIONS(2946), - [anon_sym_query] = ACTIONS(2946), - [anon_sym_QUERY] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [aux_sym_unary_operator_token1] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2946), - [aux_sym_number_token2] = ACTIONS(2944), - [anon_sym_This] = ACTIONS(2946), - [anon_sym_this] = ACTIONS(2946), - [anon_sym_THIS] = ACTIONS(2946), - [anon_sym_Super] = ACTIONS(2946), - [anon_sym_super] = ACTIONS(2946), - [anon_sym_SUPER] = ACTIONS(2946), - [anon_sym_True] = ACTIONS(2946), - [anon_sym_true] = ACTIONS(2946), - [anon_sym_TRUE] = ACTIONS(2946), - [anon_sym_False] = ACTIONS(2946), - [anon_sym_false] = ACTIONS(2946), - [anon_sym_FALSE] = ACTIONS(2946), - [anon_sym_Null] = ACTIONS(2946), - [anon_sym_null] = ACTIONS(2946), - [anon_sym_NULL] = ACTIONS(2946), - [anon_sym_Undefined] = ACTIONS(2946), - [anon_sym_undefined] = ACTIONS(2946), - [anon_sym_UNDEFINED] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(2946), - [sym_hash_empty] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_QueryExecute] = ACTIONS(2946), - [anon_sym_queryexecute] = ACTIONS(2946), - [anon_sym_QUERYEXECUTE] = ACTIONS(2946), - [anon_sym_queryExecute] = ACTIONS(2946), - [anon_sym_BQUOTE] = ACTIONS(2946), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2944), - [anon_sym_Abstract] = ACTIONS(2946), - [anon_sym_abstract] = ACTIONS(2946), - [anon_sym_ABSTRACT] = ACTIONS(2946), - [anon_sym_Break] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_BREAK] = ACTIONS(2946), - [anon_sym_Case] = ACTIONS(2946), - [anon_sym_case] = ACTIONS(2946), - [anon_sym_CASE] = ACTIONS(2946), - [anon_sym_Component] = ACTIONS(2946), - [anon_sym_component] = ACTIONS(2946), - [anon_sym_COMPONENT] = ACTIONS(2946), - [anon_sym_Continue] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_CONTINUE] = ACTIONS(2946), - [anon_sym_Debugger] = ACTIONS(2946), - [anon_sym_debugger] = ACTIONS(2946), - [anon_sym_DEBUGGER] = ACTIONS(2946), - [anon_sym_Default] = ACTIONS(2946), - [anon_sym_default] = ACTIONS(2946), - [anon_sym_DEFAULT] = ACTIONS(2946), - [anon_sym_Do] = ACTIONS(2946), - [anon_sym_do] = ACTIONS(2946), - [anon_sym_DO] = ACTIONS(2946), - [anon_sym_Else] = ACTIONS(2946), - [anon_sym_else] = ACTIONS(2946), - [anon_sym_ELSE] = ACTIONS(2946), - [anon_sym_Final] = ACTIONS(2946), - [anon_sym_final] = ACTIONS(2946), - [anon_sym_FINAL] = ACTIONS(2946), - [anon_sym_For] = ACTIONS(2946), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_FOR] = ACTIONS(2946), - [anon_sym_Function] = ACTIONS(2946), - [anon_sym_function] = ACTIONS(2946), - [anon_sym_FUNCTION] = ACTIONS(2946), - [anon_sym_If] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_IF] = ACTIONS(2946), - [anon_sym_Import] = ACTIONS(2946), - [anon_sym_import] = ACTIONS(2946), - [anon_sym_IMPORT] = ACTIONS(2946), - [anon_sym_Include] = ACTIONS(2946), - [anon_sym_include] = ACTIONS(2946), - [anon_sym_INCLUDE] = ACTIONS(2946), - [anon_sym_Interface] = ACTIONS(2946), - [anon_sym_interface] = ACTIONS(2946), - [anon_sym_INTERFACE] = ACTIONS(2946), - [anon_sym_New] = ACTIONS(2946), - [anon_sym_new] = ACTIONS(2946), - [anon_sym_NEW] = ACTIONS(2946), - [anon_sym_Package] = ACTIONS(2946), - [anon_sym_package] = ACTIONS(2946), - [anon_sym_PACKAGE] = ACTIONS(2946), - [anon_sym_Private] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_PRIVATE] = ACTIONS(2946), - [anon_sym_Property] = ACTIONS(2946), - [anon_sym_property] = ACTIONS(2946), - [anon_sym_PROPERTY] = ACTIONS(2946), - [anon_sym_Public] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_PUBLIC] = ACTIONS(2946), - [anon_sym_Remote] = ACTIONS(2946), - [anon_sym_remote] = ACTIONS(2946), - [anon_sym_REMOTE] = ACTIONS(2946), - [anon_sym_Return] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_RETURN] = ACTIONS(2946), - [anon_sym_Static] = ACTIONS(2946), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_STATIC] = ACTIONS(2946), - [anon_sym_Switch] = ACTIONS(2946), - [anon_sym_switch] = ACTIONS(2946), - [anon_sym_SWITCH] = ACTIONS(2946), - [anon_sym_Throw] = ACTIONS(2946), - [anon_sym_throw] = ACTIONS(2946), - [anon_sym_THROW] = ACTIONS(2946), - [anon_sym_Try] = ACTIONS(2946), - [anon_sym_try] = ACTIONS(2946), - [anon_sym_TRY] = ACTIONS(2946), - [anon_sym_Var] = ACTIONS(2946), - [anon_sym_var] = ACTIONS(2946), - [anon_sym_VAR] = ACTIONS(2946), - [anon_sym_While] = ACTIONS(2946), - [anon_sym_while] = ACTIONS(2946), - [anon_sym_WHILE] = ACTIONS(2946), - [anon_sym_With] = ACTIONS(2946), - [anon_sym_with] = ACTIONS(2946), - [anon_sym_WITH] = ACTIONS(2946), - [sym_cf_comment] = ACTIONS(2944), - [sym__java_block_open] = ACTIONS(2944), - [sym__static_type_prefix] = ACTIONS(2944), + [STATE(676)] = { + [sym_identifier] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_COLON] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_Query] = ACTIONS(2224), + [anon_sym_query] = ACTIONS(2224), + [anon_sym_QUERY] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2224), + [sym_optional_chain] = ACTIONS(2226), + [sym_static_chain] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2226), + [anon_sym_PIPE_PIPE] = ACTIONS(2226), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2226), + [anon_sym_BSLASH] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2226), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2226), + [anon_sym_LT_GT] = ACTIONS(2226), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2226), + [aux_sym_binary_expression_token1] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2224), + [aux_sym_binary_expression_token2] = ACTIONS(2224), + [aux_sym_binary_expression_token3] = ACTIONS(2224), + [aux_sym_binary_expression_token4] = ACTIONS(2226), + [aux_sym_binary_expression_token5] = ACTIONS(2226), + [aux_sym_binary_expression_token6] = ACTIONS(2226), + [anon_sym_QMARK_QMARK] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_TILDE] = ACTIONS(2226), + [aux_sym_unary_operator_token1] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2224), + [aux_sym_number_token2] = ACTIONS(2224), + [anon_sym_This] = ACTIONS(2224), + [anon_sym_this] = ACTIONS(2224), + [anon_sym_THIS] = ACTIONS(2224), + [anon_sym_Super] = ACTIONS(2224), + [anon_sym_super] = ACTIONS(2224), + [anon_sym_SUPER] = ACTIONS(2224), + [anon_sym_True] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2224), + [anon_sym_TRUE] = ACTIONS(2224), + [anon_sym_False] = ACTIONS(2224), + [anon_sym_false] = ACTIONS(2224), + [anon_sym_FALSE] = ACTIONS(2224), + [anon_sym_Null] = ACTIONS(2224), + [anon_sym_null] = ACTIONS(2224), + [anon_sym_NULL] = ACTIONS(2224), + [anon_sym_Undefined] = ACTIONS(2224), + [anon_sym_undefined] = ACTIONS(2224), + [anon_sym_UNDEFINED] = ACTIONS(2224), + [anon_sym_get] = ACTIONS(2224), + [anon_sym_set] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [sym_hash_empty] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_QueryExecute] = ACTIONS(2224), + [anon_sym_queryexecute] = ACTIONS(2224), + [anon_sym_QUERYEXECUTE] = ACTIONS(2224), + [anon_sym_queryExecute] = ACTIONS(2224), + [anon_sym_BQUOTE] = ACTIONS(2226), + [anon_sym_Abstract] = ACTIONS(2224), + [anon_sym_abstract] = ACTIONS(2224), + [anon_sym_ABSTRACT] = ACTIONS(2224), + [anon_sym_Component] = ACTIONS(2224), + [anon_sym_component] = ACTIONS(2224), + [anon_sym_COMPONENT] = ACTIONS(2224), + [anon_sym_Debugger] = ACTIONS(2224), + [anon_sym_debugger] = ACTIONS(2224), + [anon_sym_DEBUGGER] = ACTIONS(2224), + [anon_sym_Final] = ACTIONS(2224), + [anon_sym_final] = ACTIONS(2224), + [anon_sym_FINAL] = ACTIONS(2224), + [anon_sym_Function] = ACTIONS(2224), + [anon_sym_function] = ACTIONS(2224), + [anon_sym_FUNCTION] = ACTIONS(2224), + [anon_sym_In] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_IN] = ACTIONS(2224), + [anon_sym_Include] = ACTIONS(2224), + [anon_sym_include] = ACTIONS(2224), + [anon_sym_INCLUDE] = ACTIONS(2224), + [anon_sym_InstanceOf] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_INSTANCEOF] = ACTIONS(2224), + [anon_sym_instanceOf] = ACTIONS(2224), + [anon_sym_New] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_NEW] = ACTIONS(2224), + [anon_sym_Package] = ACTIONS(2224), + [anon_sym_package] = ACTIONS(2224), + [anon_sym_PACKAGE] = ACTIONS(2224), + [anon_sym_Private] = ACTIONS(2224), + [anon_sym_private] = ACTIONS(2224), + [anon_sym_PRIVATE] = ACTIONS(2224), + [anon_sym_Public] = ACTIONS(2224), + [anon_sym_public] = ACTIONS(2224), + [anon_sym_PUBLIC] = ACTIONS(2224), + [anon_sym_Remote] = ACTIONS(2224), + [anon_sym_remote] = ACTIONS(2224), + [anon_sym_REMOTE] = ACTIONS(2224), + [anon_sym_Static] = ACTIONS(2224), + [anon_sym_static] = ACTIONS(2224), + [anon_sym_STATIC] = ACTIONS(2224), + [sym__ternary_qmark] = ACTIONS(2226), + [sym__elvis_operator] = ACTIONS(2226), + [sym_logical_or] = ACTIONS(2226), + [sym__java_block_open] = ACTIONS(2226), + [sym__static_type_prefix] = ACTIONS(2226), }, - [STATE(661)] = { - [sym_identifier] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_COLON] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_Query] = ACTIONS(2304), - [anon_sym_query] = ACTIONS(2304), - [anon_sym_QUERY] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2304), - [sym_optional_chain] = ACTIONS(2306), - [sym_static_chain] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_BSLASH] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2306), - [anon_sym_LT_GT] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2306), - [aux_sym_binary_expression_token1] = ACTIONS(2306), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [aux_sym_binary_expression_token2] = ACTIONS(2304), - [aux_sym_binary_expression_token3] = ACTIONS(2304), - [aux_sym_binary_expression_token4] = ACTIONS(2306), - [aux_sym_binary_expression_token5] = ACTIONS(2306), - [aux_sym_binary_expression_token6] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2306), - [aux_sym_unary_operator_token1] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [anon_sym_DQUOTE] = ACTIONS(2306), - [anon_sym_SQUOTE] = ACTIONS(2306), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2304), - [aux_sym_number_token2] = ACTIONS(2304), - [anon_sym_This] = ACTIONS(2304), - [anon_sym_this] = ACTIONS(2304), - [anon_sym_THIS] = ACTIONS(2304), - [anon_sym_Super] = ACTIONS(2304), - [anon_sym_super] = ACTIONS(2304), - [anon_sym_SUPER] = ACTIONS(2304), - [anon_sym_True] = ACTIONS(2304), - [anon_sym_true] = ACTIONS(2304), - [anon_sym_TRUE] = ACTIONS(2304), - [anon_sym_False] = ACTIONS(2304), - [anon_sym_false] = ACTIONS(2304), - [anon_sym_FALSE] = ACTIONS(2304), - [anon_sym_Null] = ACTIONS(2304), - [anon_sym_null] = ACTIONS(2304), - [anon_sym_NULL] = ACTIONS(2304), - [anon_sym_Undefined] = ACTIONS(2304), - [anon_sym_undefined] = ACTIONS(2304), - [anon_sym_UNDEFINED] = ACTIONS(2304), - [anon_sym_get] = ACTIONS(2304), - [anon_sym_set] = ACTIONS(2304), - [anon_sym_POUND] = ACTIONS(2304), - [sym_hash_empty] = ACTIONS(2306), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_QueryExecute] = ACTIONS(2304), - [anon_sym_queryexecute] = ACTIONS(2304), - [anon_sym_QUERYEXECUTE] = ACTIONS(2304), - [anon_sym_queryExecute] = ACTIONS(2304), - [anon_sym_BQUOTE] = ACTIONS(2306), - [anon_sym_Abstract] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_ABSTRACT] = ACTIONS(2304), - [anon_sym_Component] = ACTIONS(2304), - [anon_sym_component] = ACTIONS(2304), - [anon_sym_COMPONENT] = ACTIONS(2304), - [anon_sym_Debugger] = ACTIONS(2304), - [anon_sym_debugger] = ACTIONS(2304), - [anon_sym_DEBUGGER] = ACTIONS(2304), - [anon_sym_Final] = ACTIONS(2304), - [anon_sym_final] = ACTIONS(2304), - [anon_sym_FINAL] = ACTIONS(2304), - [anon_sym_Function] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_FUNCTION] = ACTIONS(2304), - [anon_sym_In] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_IN] = ACTIONS(2304), - [anon_sym_Include] = ACTIONS(2304), - [anon_sym_include] = ACTIONS(2304), - [anon_sym_INCLUDE] = ACTIONS(2304), - [anon_sym_InstanceOf] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_INSTANCEOF] = ACTIONS(2304), - [anon_sym_instanceOf] = ACTIONS(2304), - [anon_sym_New] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_NEW] = ACTIONS(2304), - [anon_sym_Package] = ACTIONS(2304), - [anon_sym_package] = ACTIONS(2304), - [anon_sym_PACKAGE] = ACTIONS(2304), - [anon_sym_Private] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_PRIVATE] = ACTIONS(2304), - [anon_sym_Public] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_PUBLIC] = ACTIONS(2304), - [anon_sym_Remote] = ACTIONS(2304), - [anon_sym_remote] = ACTIONS(2304), - [anon_sym_REMOTE] = ACTIONS(2304), - [anon_sym_Static] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_STATIC] = ACTIONS(2304), - [sym__ternary_qmark] = ACTIONS(2306), - [sym__elvis_operator] = ACTIONS(2306), - [sym_logical_or] = ACTIONS(2306), - [sym__java_block_open] = ACTIONS(2306), - [sym__static_type_prefix] = ACTIONS(2306), + [STATE(677)] = { + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_Query] = ACTIONS(2244), + [anon_sym_query] = ACTIONS(2244), + [anon_sym_QUERY] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2246), + [aux_sym_unary_operator_token1] = ACTIONS(2244), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2244), + [aux_sym_number_token2] = ACTIONS(2244), + [anon_sym_This] = ACTIONS(2244), + [anon_sym_this] = ACTIONS(2244), + [anon_sym_THIS] = ACTIONS(2244), + [anon_sym_Super] = ACTIONS(2244), + [anon_sym_super] = ACTIONS(2244), + [anon_sym_SUPER] = ACTIONS(2244), + [anon_sym_True] = ACTIONS(2244), + [anon_sym_true] = ACTIONS(2244), + [anon_sym_TRUE] = ACTIONS(2244), + [anon_sym_False] = ACTIONS(2244), + [anon_sym_false] = ACTIONS(2244), + [anon_sym_FALSE] = ACTIONS(2244), + [anon_sym_Null] = ACTIONS(2244), + [anon_sym_null] = ACTIONS(2244), + [anon_sym_NULL] = ACTIONS(2244), + [anon_sym_Undefined] = ACTIONS(2244), + [anon_sym_undefined] = ACTIONS(2244), + [anon_sym_UNDEFINED] = ACTIONS(2244), + [anon_sym_get] = ACTIONS(2244), + [anon_sym_set] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(2244), + [sym_hash_empty] = ACTIONS(2246), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_QueryExecute] = ACTIONS(2244), + [anon_sym_queryexecute] = ACTIONS(2244), + [anon_sym_QUERYEXECUTE] = ACTIONS(2244), + [anon_sym_queryExecute] = ACTIONS(2244), + [anon_sym_BQUOTE] = ACTIONS(2246), + [anon_sym_Abstract] = ACTIONS(2244), + [anon_sym_abstract] = ACTIONS(2244), + [anon_sym_ABSTRACT] = ACTIONS(2244), + [anon_sym_Component] = ACTIONS(2244), + [anon_sym_component] = ACTIONS(2244), + [anon_sym_COMPONENT] = ACTIONS(2244), + [anon_sym_Debugger] = ACTIONS(2244), + [anon_sym_debugger] = ACTIONS(2244), + [anon_sym_DEBUGGER] = ACTIONS(2244), + [anon_sym_Final] = ACTIONS(2244), + [anon_sym_final] = ACTIONS(2244), + [anon_sym_FINAL] = ACTIONS(2244), + [anon_sym_Function] = ACTIONS(2244), + [anon_sym_function] = ACTIONS(2244), + [anon_sym_FUNCTION] = ACTIONS(2244), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_Include] = ACTIONS(2244), + [anon_sym_include] = ACTIONS(2244), + [anon_sym_INCLUDE] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [anon_sym_New] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2244), + [anon_sym_NEW] = ACTIONS(2244), + [anon_sym_Package] = ACTIONS(2244), + [anon_sym_package] = ACTIONS(2244), + [anon_sym_PACKAGE] = ACTIONS(2244), + [anon_sym_Private] = ACTIONS(2244), + [anon_sym_private] = ACTIONS(2244), + [anon_sym_PRIVATE] = ACTIONS(2244), + [anon_sym_Public] = ACTIONS(2244), + [anon_sym_public] = ACTIONS(2244), + [anon_sym_PUBLIC] = ACTIONS(2244), + [anon_sym_Remote] = ACTIONS(2244), + [anon_sym_remote] = ACTIONS(2244), + [anon_sym_REMOTE] = ACTIONS(2244), + [anon_sym_Static] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_STATIC] = ACTIONS(2244), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym__java_block_open] = ACTIONS(2246), + [sym__static_type_prefix] = ACTIONS(2246), }, - [STATE(662)] = { - [sym_arguments] = STATE(621), - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2250), + [STATE(678)] = { + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2252), [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2250), - [anon_sym_query] = ACTIONS(2250), - [anon_sym_QUERY] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2746), - [sym_static_chain] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_COLON] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_Query] = ACTIONS(2252), + [anon_sym_query] = ACTIONS(2252), + [anon_sym_QUERY] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2252), + [sym_optional_chain] = ACTIONS(2254), + [sym_static_chain] = ACTIONS(2254), [anon_sym_AMP_AMP] = ACTIONS(2254), [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2252), [anon_sym_GT_GT_GT] = ACTIONS(2254), [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2252), [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_SLASH] = ACTIONS(2252), [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2252), [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2252), [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2252), [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), [aux_sym_binary_expression_token1] = ACTIONS(2254), [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2252), + [aux_sym_binary_expression_token2] = ACTIONS(2252), + [aux_sym_binary_expression_token3] = ACTIONS(2252), [aux_sym_binary_expression_token4] = ACTIONS(2254), [aux_sym_binary_expression_token5] = ACTIONS(2254), [aux_sym_binary_expression_token6] = ACTIONS(2254), [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2252), [anon_sym_TILDE] = ACTIONS(2254), - [aux_sym_unary_operator_token1] = ACTIONS(2250), + [aux_sym_unary_operator_token1] = ACTIONS(2252), [anon_sym_PLUS_PLUS] = ACTIONS(2254), [anon_sym_DASH_DASH] = ACTIONS(2254), [anon_sym_DQUOTE] = ACTIONS(2254), [anon_sym_SQUOTE] = ACTIONS(2254), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2250), - [aux_sym_number_token2] = ACTIONS(2250), - [anon_sym_This] = ACTIONS(2250), - [anon_sym_this] = ACTIONS(2250), - [anon_sym_THIS] = ACTIONS(2250), - [anon_sym_Super] = ACTIONS(2250), - [anon_sym_super] = ACTIONS(2250), - [anon_sym_SUPER] = ACTIONS(2250), - [anon_sym_True] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_TRUE] = ACTIONS(2250), - [anon_sym_False] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_FALSE] = ACTIONS(2250), - [anon_sym_Null] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [anon_sym_NULL] = ACTIONS(2250), - [anon_sym_Undefined] = ACTIONS(2250), - [anon_sym_undefined] = ACTIONS(2250), - [anon_sym_UNDEFINED] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), + [aux_sym_number_token1] = ACTIONS(2252), + [aux_sym_number_token2] = ACTIONS(2252), + [anon_sym_This] = ACTIONS(2252), + [anon_sym_this] = ACTIONS(2252), + [anon_sym_THIS] = ACTIONS(2252), + [anon_sym_Super] = ACTIONS(2252), + [anon_sym_super] = ACTIONS(2252), + [anon_sym_SUPER] = ACTIONS(2252), + [anon_sym_True] = ACTIONS(2252), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_TRUE] = ACTIONS(2252), + [anon_sym_False] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_FALSE] = ACTIONS(2252), + [anon_sym_Null] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2252), + [anon_sym_NULL] = ACTIONS(2252), + [anon_sym_Undefined] = ACTIONS(2252), + [anon_sym_undefined] = ACTIONS(2252), + [anon_sym_UNDEFINED] = ACTIONS(2252), + [anon_sym_get] = ACTIONS(2252), + [anon_sym_set] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(2252), [sym_hash_empty] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_QueryExecute] = ACTIONS(2250), - [anon_sym_queryexecute] = ACTIONS(2250), - [anon_sym_QUERYEXECUTE] = ACTIONS(2250), - [anon_sym_queryExecute] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_QueryExecute] = ACTIONS(2252), + [anon_sym_queryexecute] = ACTIONS(2252), + [anon_sym_QUERYEXECUTE] = ACTIONS(2252), + [anon_sym_queryExecute] = ACTIONS(2252), [anon_sym_BQUOTE] = ACTIONS(2254), - [anon_sym_Abstract] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_ABSTRACT] = ACTIONS(2250), - [anon_sym_Component] = ACTIONS(2250), - [anon_sym_component] = ACTIONS(2250), - [anon_sym_COMPONENT] = ACTIONS(2250), - [anon_sym_Debugger] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_DEBUGGER] = ACTIONS(2250), - [anon_sym_Final] = ACTIONS(2250), - [anon_sym_final] = ACTIONS(2250), - [anon_sym_FINAL] = ACTIONS(2250), - [anon_sym_Function] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_FUNCTION] = ACTIONS(2250), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_Include] = ACTIONS(2250), - [anon_sym_include] = ACTIONS(2250), - [anon_sym_INCLUDE] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [anon_sym_New] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_NEW] = ACTIONS(2250), - [anon_sym_Package] = ACTIONS(2250), - [anon_sym_package] = ACTIONS(2250), - [anon_sym_PACKAGE] = ACTIONS(2250), - [anon_sym_Private] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_PRIVATE] = ACTIONS(2250), - [anon_sym_Public] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_PUBLIC] = ACTIONS(2250), - [anon_sym_Remote] = ACTIONS(2250), - [anon_sym_remote] = ACTIONS(2250), - [anon_sym_REMOTE] = ACTIONS(2250), - [anon_sym_Static] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_STATIC] = ACTIONS(2250), + [anon_sym_Abstract] = ACTIONS(2252), + [anon_sym_abstract] = ACTIONS(2252), + [anon_sym_ABSTRACT] = ACTIONS(2252), + [anon_sym_Component] = ACTIONS(2252), + [anon_sym_component] = ACTIONS(2252), + [anon_sym_COMPONENT] = ACTIONS(2252), + [anon_sym_Debugger] = ACTIONS(2252), + [anon_sym_debugger] = ACTIONS(2252), + [anon_sym_DEBUGGER] = ACTIONS(2252), + [anon_sym_Final] = ACTIONS(2252), + [anon_sym_final] = ACTIONS(2252), + [anon_sym_FINAL] = ACTIONS(2252), + [anon_sym_Function] = ACTIONS(2252), + [anon_sym_function] = ACTIONS(2252), + [anon_sym_FUNCTION] = ACTIONS(2252), + [anon_sym_In] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_IN] = ACTIONS(2252), + [anon_sym_Include] = ACTIONS(2252), + [anon_sym_include] = ACTIONS(2252), + [anon_sym_INCLUDE] = ACTIONS(2252), + [anon_sym_InstanceOf] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_INSTANCEOF] = ACTIONS(2252), + [anon_sym_instanceOf] = ACTIONS(2252), + [anon_sym_New] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2252), + [anon_sym_NEW] = ACTIONS(2252), + [anon_sym_Package] = ACTIONS(2252), + [anon_sym_package] = ACTIONS(2252), + [anon_sym_PACKAGE] = ACTIONS(2252), + [anon_sym_Private] = ACTIONS(2252), + [anon_sym_private] = ACTIONS(2252), + [anon_sym_PRIVATE] = ACTIONS(2252), + [anon_sym_Public] = ACTIONS(2252), + [anon_sym_public] = ACTIONS(2252), + [anon_sym_PUBLIC] = ACTIONS(2252), + [anon_sym_Remote] = ACTIONS(2252), + [anon_sym_remote] = ACTIONS(2252), + [anon_sym_REMOTE] = ACTIONS(2252), + [anon_sym_Static] = ACTIONS(2252), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_STATIC] = ACTIONS(2252), [sym__ternary_qmark] = ACTIONS(2254), [sym__elvis_operator] = ACTIONS(2254), [sym_logical_or] = ACTIONS(2254), [sym__java_block_open] = ACTIONS(2254), [sym__static_type_prefix] = ACTIONS(2254), }, - [STATE(663)] = { - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2948), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_Query] = ACTIONS(2950), - [anon_sym_query] = ACTIONS(2950), - [anon_sym_QUERY] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2948), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_unary_operator_token1] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2950), - [aux_sym_number_token2] = ACTIONS(2948), - [anon_sym_This] = ACTIONS(2950), - [anon_sym_this] = ACTIONS(2950), - [anon_sym_THIS] = ACTIONS(2950), - [anon_sym_Super] = ACTIONS(2950), - [anon_sym_super] = ACTIONS(2950), - [anon_sym_SUPER] = ACTIONS(2950), - [anon_sym_True] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2950), - [anon_sym_TRUE] = ACTIONS(2950), - [anon_sym_False] = ACTIONS(2950), - [anon_sym_false] = ACTIONS(2950), - [anon_sym_FALSE] = ACTIONS(2950), - [anon_sym_Null] = ACTIONS(2950), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_NULL] = ACTIONS(2950), - [anon_sym_Undefined] = ACTIONS(2950), - [anon_sym_undefined] = ACTIONS(2950), - [anon_sym_UNDEFINED] = ACTIONS(2950), - [anon_sym_get] = ACTIONS(2950), - [anon_sym_set] = ACTIONS(2950), - [anon_sym_POUND] = ACTIONS(2950), - [sym_hash_empty] = ACTIONS(2948), - [anon_sym_export] = ACTIONS(2950), - [anon_sym_QueryExecute] = ACTIONS(2950), - [anon_sym_queryexecute] = ACTIONS(2950), - [anon_sym_QUERYEXECUTE] = ACTIONS(2950), - [anon_sym_queryExecute] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2948), - [anon_sym_Abstract] = ACTIONS(2950), - [anon_sym_abstract] = ACTIONS(2950), - [anon_sym_ABSTRACT] = ACTIONS(2950), - [anon_sym_Break] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_BREAK] = ACTIONS(2950), - [anon_sym_Case] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2950), - [anon_sym_CASE] = ACTIONS(2950), - [anon_sym_Component] = ACTIONS(2950), - [anon_sym_component] = ACTIONS(2950), - [anon_sym_COMPONENT] = ACTIONS(2950), - [anon_sym_Continue] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_CONTINUE] = ACTIONS(2950), - [anon_sym_Debugger] = ACTIONS(2950), - [anon_sym_debugger] = ACTIONS(2950), - [anon_sym_DEBUGGER] = ACTIONS(2950), - [anon_sym_Default] = ACTIONS(2950), - [anon_sym_default] = ACTIONS(2950), - [anon_sym_DEFAULT] = ACTIONS(2950), - [anon_sym_Do] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_DO] = ACTIONS(2950), - [anon_sym_Else] = ACTIONS(2950), - [anon_sym_else] = ACTIONS(2950), - [anon_sym_ELSE] = ACTIONS(2950), - [anon_sym_Final] = ACTIONS(2950), - [anon_sym_final] = ACTIONS(2950), - [anon_sym_FINAL] = ACTIONS(2950), - [anon_sym_For] = ACTIONS(2950), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_FOR] = ACTIONS(2950), - [anon_sym_Function] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_FUNCTION] = ACTIONS(2950), - [anon_sym_If] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_IF] = ACTIONS(2950), - [anon_sym_Import] = ACTIONS(2950), - [anon_sym_import] = ACTIONS(2950), - [anon_sym_IMPORT] = ACTIONS(2950), - [anon_sym_Include] = ACTIONS(2950), - [anon_sym_include] = ACTIONS(2950), - [anon_sym_INCLUDE] = ACTIONS(2950), - [anon_sym_Interface] = ACTIONS(2950), - [anon_sym_interface] = ACTIONS(2950), - [anon_sym_INTERFACE] = ACTIONS(2950), - [anon_sym_New] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_NEW] = ACTIONS(2950), - [anon_sym_Package] = ACTIONS(2950), - [anon_sym_package] = ACTIONS(2950), - [anon_sym_PACKAGE] = ACTIONS(2950), - [anon_sym_Private] = ACTIONS(2950), - [anon_sym_private] = ACTIONS(2950), - [anon_sym_PRIVATE] = ACTIONS(2950), - [anon_sym_Property] = ACTIONS(2950), - [anon_sym_property] = ACTIONS(2950), - [anon_sym_PROPERTY] = ACTIONS(2950), - [anon_sym_Public] = ACTIONS(2950), - [anon_sym_public] = ACTIONS(2950), - [anon_sym_PUBLIC] = ACTIONS(2950), - [anon_sym_Remote] = ACTIONS(2950), - [anon_sym_remote] = ACTIONS(2950), - [anon_sym_REMOTE] = ACTIONS(2950), - [anon_sym_Return] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_RETURN] = ACTIONS(2950), - [anon_sym_Static] = ACTIONS(2950), - [anon_sym_static] = ACTIONS(2950), - [anon_sym_STATIC] = ACTIONS(2950), - [anon_sym_Switch] = ACTIONS(2950), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_SWITCH] = ACTIONS(2950), - [anon_sym_Throw] = ACTIONS(2950), - [anon_sym_throw] = ACTIONS(2950), - [anon_sym_THROW] = ACTIONS(2950), - [anon_sym_Try] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_TRY] = ACTIONS(2950), - [anon_sym_Var] = ACTIONS(2950), - [anon_sym_var] = ACTIONS(2950), - [anon_sym_VAR] = ACTIONS(2950), - [anon_sym_While] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_WHILE] = ACTIONS(2950), - [anon_sym_With] = ACTIONS(2950), - [anon_sym_with] = ACTIONS(2950), - [anon_sym_WITH] = ACTIONS(2950), - [sym_cf_comment] = ACTIONS(2948), - [sym__java_block_open] = ACTIONS(2948), - [sym__static_type_prefix] = ACTIONS(2948), - }, - [STATE(664)] = { - [ts_builtin_sym_end] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_Query] = ACTIONS(2954), - [anon_sym_query] = ACTIONS(2954), - [anon_sym_QUERY] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2952), - [aux_sym_unary_operator_token1] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2952), - [anon_sym_DASH_DASH] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2952), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2954), - [aux_sym_number_token2] = ACTIONS(2952), - [anon_sym_This] = ACTIONS(2954), - [anon_sym_this] = ACTIONS(2954), - [anon_sym_THIS] = ACTIONS(2954), - [anon_sym_Super] = ACTIONS(2954), - [anon_sym_super] = ACTIONS(2954), - [anon_sym_SUPER] = ACTIONS(2954), - [anon_sym_True] = ACTIONS(2954), - [anon_sym_true] = ACTIONS(2954), - [anon_sym_TRUE] = ACTIONS(2954), - [anon_sym_False] = ACTIONS(2954), - [anon_sym_false] = ACTIONS(2954), - [anon_sym_FALSE] = ACTIONS(2954), - [anon_sym_Null] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2954), - [anon_sym_NULL] = ACTIONS(2954), - [anon_sym_Undefined] = ACTIONS(2954), - [anon_sym_undefined] = ACTIONS(2954), - [anon_sym_UNDEFINED] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2954), - [anon_sym_set] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2954), - [sym_hash_empty] = ACTIONS(2952), - [anon_sym_export] = ACTIONS(2954), - [anon_sym_QueryExecute] = ACTIONS(2954), - [anon_sym_queryexecute] = ACTIONS(2954), - [anon_sym_QUERYEXECUTE] = ACTIONS(2954), - [anon_sym_queryExecute] = ACTIONS(2954), - [anon_sym_BQUOTE] = ACTIONS(2954), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2952), - [anon_sym_Abstract] = ACTIONS(2954), - [anon_sym_abstract] = ACTIONS(2954), - [anon_sym_ABSTRACT] = ACTIONS(2954), - [anon_sym_Break] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_BREAK] = ACTIONS(2954), - [anon_sym_Case] = ACTIONS(2954), - [anon_sym_case] = ACTIONS(2954), - [anon_sym_CASE] = ACTIONS(2954), - [anon_sym_Component] = ACTIONS(2954), - [anon_sym_component] = ACTIONS(2954), - [anon_sym_COMPONENT] = ACTIONS(2954), - [anon_sym_Continue] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_CONTINUE] = ACTIONS(2954), - [anon_sym_Debugger] = ACTIONS(2954), - [anon_sym_debugger] = ACTIONS(2954), - [anon_sym_DEBUGGER] = ACTIONS(2954), - [anon_sym_Default] = ACTIONS(2954), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_DEFAULT] = ACTIONS(2954), - [anon_sym_Do] = ACTIONS(2954), - [anon_sym_do] = ACTIONS(2954), - [anon_sym_DO] = ACTIONS(2954), - [anon_sym_Else] = ACTIONS(2954), - [anon_sym_else] = ACTIONS(2954), - [anon_sym_ELSE] = ACTIONS(2954), - [anon_sym_Final] = ACTIONS(2954), - [anon_sym_final] = ACTIONS(2954), - [anon_sym_FINAL] = ACTIONS(2954), - [anon_sym_For] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_FOR] = ACTIONS(2954), - [anon_sym_Function] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2954), - [anon_sym_FUNCTION] = ACTIONS(2954), - [anon_sym_If] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_IF] = ACTIONS(2954), - [anon_sym_Import] = ACTIONS(2954), - [anon_sym_import] = ACTIONS(2954), - [anon_sym_IMPORT] = ACTIONS(2954), - [anon_sym_Include] = ACTIONS(2954), - [anon_sym_include] = ACTIONS(2954), - [anon_sym_INCLUDE] = ACTIONS(2954), - [anon_sym_Interface] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_INTERFACE] = ACTIONS(2954), - [anon_sym_New] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2954), - [anon_sym_NEW] = ACTIONS(2954), - [anon_sym_Package] = ACTIONS(2954), - [anon_sym_package] = ACTIONS(2954), - [anon_sym_PACKAGE] = ACTIONS(2954), - [anon_sym_Private] = ACTIONS(2954), - [anon_sym_private] = ACTIONS(2954), - [anon_sym_PRIVATE] = ACTIONS(2954), - [anon_sym_Property] = ACTIONS(2954), - [anon_sym_property] = ACTIONS(2954), - [anon_sym_PROPERTY] = ACTIONS(2954), - [anon_sym_Public] = ACTIONS(2954), - [anon_sym_public] = ACTIONS(2954), - [anon_sym_PUBLIC] = ACTIONS(2954), - [anon_sym_Remote] = ACTIONS(2954), - [anon_sym_remote] = ACTIONS(2954), - [anon_sym_REMOTE] = ACTIONS(2954), - [anon_sym_Return] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_RETURN] = ACTIONS(2954), - [anon_sym_Static] = ACTIONS(2954), - [anon_sym_static] = ACTIONS(2954), - [anon_sym_STATIC] = ACTIONS(2954), - [anon_sym_Switch] = ACTIONS(2954), - [anon_sym_switch] = ACTIONS(2954), - [anon_sym_SWITCH] = ACTIONS(2954), - [anon_sym_Throw] = ACTIONS(2954), - [anon_sym_throw] = ACTIONS(2954), - [anon_sym_THROW] = ACTIONS(2954), - [anon_sym_Try] = ACTIONS(2954), - [anon_sym_try] = ACTIONS(2954), - [anon_sym_TRY] = ACTIONS(2954), - [anon_sym_Var] = ACTIONS(2954), - [anon_sym_var] = ACTIONS(2954), - [anon_sym_VAR] = ACTIONS(2954), - [anon_sym_While] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2954), - [anon_sym_WHILE] = ACTIONS(2954), - [anon_sym_With] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2954), - [anon_sym_WITH] = ACTIONS(2954), - [sym_cf_comment] = ACTIONS(2952), - [sym__java_block_open] = ACTIONS(2952), - [sym__static_type_prefix] = ACTIONS(2952), - }, - [STATE(665)] = { - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_Query] = ACTIONS(2958), - [anon_sym_query] = ACTIONS(2958), - [anon_sym_QUERY] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_unary_operator_token1] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2956), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2958), - [aux_sym_number_token2] = ACTIONS(2956), - [anon_sym_This] = ACTIONS(2958), - [anon_sym_this] = ACTIONS(2958), - [anon_sym_THIS] = ACTIONS(2958), - [anon_sym_Super] = ACTIONS(2958), - [anon_sym_super] = ACTIONS(2958), - [anon_sym_SUPER] = ACTIONS(2958), - [anon_sym_True] = ACTIONS(2958), - [anon_sym_true] = ACTIONS(2958), - [anon_sym_TRUE] = ACTIONS(2958), - [anon_sym_False] = ACTIONS(2958), - [anon_sym_false] = ACTIONS(2958), - [anon_sym_FALSE] = ACTIONS(2958), - [anon_sym_Null] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2958), - [anon_sym_NULL] = ACTIONS(2958), - [anon_sym_Undefined] = ACTIONS(2958), - [anon_sym_undefined] = ACTIONS(2958), - [anon_sym_UNDEFINED] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2958), - [sym_hash_empty] = ACTIONS(2956), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_QueryExecute] = ACTIONS(2958), - [anon_sym_queryexecute] = ACTIONS(2958), - [anon_sym_QUERYEXECUTE] = ACTIONS(2958), - [anon_sym_queryExecute] = ACTIONS(2958), - [anon_sym_BQUOTE] = ACTIONS(2958), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2956), - [anon_sym_Abstract] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_ABSTRACT] = ACTIONS(2958), - [anon_sym_Break] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_BREAK] = ACTIONS(2958), - [anon_sym_Case] = ACTIONS(2958), - [anon_sym_case] = ACTIONS(2958), - [anon_sym_CASE] = ACTIONS(2958), - [anon_sym_Component] = ACTIONS(2958), - [anon_sym_component] = ACTIONS(2958), - [anon_sym_COMPONENT] = ACTIONS(2958), - [anon_sym_Continue] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_CONTINUE] = ACTIONS(2958), - [anon_sym_Debugger] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_DEBUGGER] = ACTIONS(2958), - [anon_sym_Default] = ACTIONS(2958), - [anon_sym_default] = ACTIONS(2958), - [anon_sym_DEFAULT] = ACTIONS(2958), - [anon_sym_Do] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_DO] = ACTIONS(2958), - [anon_sym_Else] = ACTIONS(2958), - [anon_sym_else] = ACTIONS(2958), - [anon_sym_ELSE] = ACTIONS(2958), - [anon_sym_Final] = ACTIONS(2958), - [anon_sym_final] = ACTIONS(2958), - [anon_sym_FINAL] = ACTIONS(2958), - [anon_sym_For] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_FOR] = ACTIONS(2958), - [anon_sym_Function] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_FUNCTION] = ACTIONS(2958), - [anon_sym_If] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_IF] = ACTIONS(2958), - [anon_sym_Import] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_IMPORT] = ACTIONS(2958), - [anon_sym_Include] = ACTIONS(2958), - [anon_sym_include] = ACTIONS(2958), - [anon_sym_INCLUDE] = ACTIONS(2958), - [anon_sym_Interface] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_INTERFACE] = ACTIONS(2958), - [anon_sym_New] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_NEW] = ACTIONS(2958), - [anon_sym_Package] = ACTIONS(2958), - [anon_sym_package] = ACTIONS(2958), - [anon_sym_PACKAGE] = ACTIONS(2958), - [anon_sym_Private] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_PRIVATE] = ACTIONS(2958), - [anon_sym_Property] = ACTIONS(2958), - [anon_sym_property] = ACTIONS(2958), - [anon_sym_PROPERTY] = ACTIONS(2958), - [anon_sym_Public] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_PUBLIC] = ACTIONS(2958), - [anon_sym_Remote] = ACTIONS(2958), - [anon_sym_remote] = ACTIONS(2958), - [anon_sym_REMOTE] = ACTIONS(2958), - [anon_sym_Return] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_RETURN] = ACTIONS(2958), - [anon_sym_Static] = ACTIONS(2958), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_STATIC] = ACTIONS(2958), - [anon_sym_Switch] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_SWITCH] = ACTIONS(2958), - [anon_sym_Throw] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_THROW] = ACTIONS(2958), - [anon_sym_Try] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_TRY] = ACTIONS(2958), - [anon_sym_Var] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_VAR] = ACTIONS(2958), - [anon_sym_While] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_WHILE] = ACTIONS(2958), - [anon_sym_With] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_WITH] = ACTIONS(2958), - [sym_cf_comment] = ACTIONS(2956), - [sym__java_block_open] = ACTIONS(2956), - [sym__static_type_prefix] = ACTIONS(2956), - }, - [STATE(666)] = { - [ts_builtin_sym_end] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_Query] = ACTIONS(2962), - [anon_sym_query] = ACTIONS(2962), - [anon_sym_QUERY] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2960), - [aux_sym_unary_operator_token1] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2962), - [aux_sym_number_token2] = ACTIONS(2960), - [anon_sym_This] = ACTIONS(2962), - [anon_sym_this] = ACTIONS(2962), - [anon_sym_THIS] = ACTIONS(2962), - [anon_sym_Super] = ACTIONS(2962), - [anon_sym_super] = ACTIONS(2962), - [anon_sym_SUPER] = ACTIONS(2962), - [anon_sym_True] = ACTIONS(2962), - [anon_sym_true] = ACTIONS(2962), - [anon_sym_TRUE] = ACTIONS(2962), - [anon_sym_False] = ACTIONS(2962), - [anon_sym_false] = ACTIONS(2962), - [anon_sym_FALSE] = ACTIONS(2962), - [anon_sym_Null] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2962), - [anon_sym_NULL] = ACTIONS(2962), - [anon_sym_Undefined] = ACTIONS(2962), - [anon_sym_undefined] = ACTIONS(2962), - [anon_sym_UNDEFINED] = ACTIONS(2962), - [anon_sym_get] = ACTIONS(2962), - [anon_sym_set] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2962), - [sym_hash_empty] = ACTIONS(2960), - [anon_sym_export] = ACTIONS(2962), - [anon_sym_QueryExecute] = ACTIONS(2962), - [anon_sym_queryexecute] = ACTIONS(2962), - [anon_sym_QUERYEXECUTE] = ACTIONS(2962), - [anon_sym_queryExecute] = ACTIONS(2962), - [anon_sym_BQUOTE] = ACTIONS(2962), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2960), - [anon_sym_Abstract] = ACTIONS(2962), - [anon_sym_abstract] = ACTIONS(2962), - [anon_sym_ABSTRACT] = ACTIONS(2962), - [anon_sym_Break] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_BREAK] = ACTIONS(2962), - [anon_sym_Case] = ACTIONS(2962), - [anon_sym_case] = ACTIONS(2962), - [anon_sym_CASE] = ACTIONS(2962), - [anon_sym_Component] = ACTIONS(2962), - [anon_sym_component] = ACTIONS(2962), - [anon_sym_COMPONENT] = ACTIONS(2962), - [anon_sym_Continue] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_CONTINUE] = ACTIONS(2962), - [anon_sym_Debugger] = ACTIONS(2962), - [anon_sym_debugger] = ACTIONS(2962), - [anon_sym_DEBUGGER] = ACTIONS(2962), - [anon_sym_Default] = ACTIONS(2962), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_DEFAULT] = ACTIONS(2962), - [anon_sym_Do] = ACTIONS(2962), - [anon_sym_do] = ACTIONS(2962), - [anon_sym_DO] = ACTIONS(2962), - [anon_sym_Else] = ACTIONS(2962), - [anon_sym_else] = ACTIONS(2962), - [anon_sym_ELSE] = ACTIONS(2962), - [anon_sym_Final] = ACTIONS(2962), - [anon_sym_final] = ACTIONS(2962), - [anon_sym_FINAL] = ACTIONS(2962), - [anon_sym_For] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_FOR] = ACTIONS(2962), - [anon_sym_Function] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2962), - [anon_sym_FUNCTION] = ACTIONS(2962), - [anon_sym_If] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_IF] = ACTIONS(2962), - [anon_sym_Import] = ACTIONS(2962), - [anon_sym_import] = ACTIONS(2962), - [anon_sym_IMPORT] = ACTIONS(2962), - [anon_sym_Include] = ACTIONS(2962), - [anon_sym_include] = ACTIONS(2962), - [anon_sym_INCLUDE] = ACTIONS(2962), - [anon_sym_Interface] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_INTERFACE] = ACTIONS(2962), - [anon_sym_New] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2962), - [anon_sym_NEW] = ACTIONS(2962), - [anon_sym_Package] = ACTIONS(2962), - [anon_sym_package] = ACTIONS(2962), - [anon_sym_PACKAGE] = ACTIONS(2962), - [anon_sym_Private] = ACTIONS(2962), - [anon_sym_private] = ACTIONS(2962), - [anon_sym_PRIVATE] = ACTIONS(2962), - [anon_sym_Property] = ACTIONS(2962), - [anon_sym_property] = ACTIONS(2962), - [anon_sym_PROPERTY] = ACTIONS(2962), - [anon_sym_Public] = ACTIONS(2962), - [anon_sym_public] = ACTIONS(2962), - [anon_sym_PUBLIC] = ACTIONS(2962), - [anon_sym_Remote] = ACTIONS(2962), - [anon_sym_remote] = ACTIONS(2962), - [anon_sym_REMOTE] = ACTIONS(2962), - [anon_sym_Return] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_RETURN] = ACTIONS(2962), - [anon_sym_Static] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(2962), - [anon_sym_STATIC] = ACTIONS(2962), - [anon_sym_Switch] = ACTIONS(2962), - [anon_sym_switch] = ACTIONS(2962), - [anon_sym_SWITCH] = ACTIONS(2962), - [anon_sym_Throw] = ACTIONS(2962), - [anon_sym_throw] = ACTIONS(2962), - [anon_sym_THROW] = ACTIONS(2962), - [anon_sym_Try] = ACTIONS(2962), - [anon_sym_try] = ACTIONS(2962), - [anon_sym_TRY] = ACTIONS(2962), - [anon_sym_Var] = ACTIONS(2962), - [anon_sym_var] = ACTIONS(2962), - [anon_sym_VAR] = ACTIONS(2962), - [anon_sym_While] = ACTIONS(2962), - [anon_sym_while] = ACTIONS(2962), - [anon_sym_WHILE] = ACTIONS(2962), - [anon_sym_With] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2962), - [anon_sym_WITH] = ACTIONS(2962), - [sym_cf_comment] = ACTIONS(2960), - [sym__java_block_open] = ACTIONS(2960), - [sym__static_type_prefix] = ACTIONS(2960), - }, - [STATE(667)] = { - [ts_builtin_sym_end] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_SEMI] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_Query] = ACTIONS(2966), - [anon_sym_query] = ACTIONS(2966), - [anon_sym_QUERY] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2964), - [aux_sym_unary_operator_token1] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(2964), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2966), - [aux_sym_number_token2] = ACTIONS(2964), - [anon_sym_This] = ACTIONS(2966), - [anon_sym_this] = ACTIONS(2966), - [anon_sym_THIS] = ACTIONS(2966), - [anon_sym_Super] = ACTIONS(2966), - [anon_sym_super] = ACTIONS(2966), - [anon_sym_SUPER] = ACTIONS(2966), - [anon_sym_True] = ACTIONS(2966), - [anon_sym_true] = ACTIONS(2966), - [anon_sym_TRUE] = ACTIONS(2966), - [anon_sym_False] = ACTIONS(2966), - [anon_sym_false] = ACTIONS(2966), - [anon_sym_FALSE] = ACTIONS(2966), - [anon_sym_Null] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_NULL] = ACTIONS(2966), - [anon_sym_Undefined] = ACTIONS(2966), - [anon_sym_undefined] = ACTIONS(2966), - [anon_sym_UNDEFINED] = ACTIONS(2966), - [anon_sym_get] = ACTIONS(2966), - [anon_sym_set] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2966), - [sym_hash_empty] = ACTIONS(2964), - [anon_sym_export] = ACTIONS(2966), - [anon_sym_QueryExecute] = ACTIONS(2966), - [anon_sym_queryexecute] = ACTIONS(2966), - [anon_sym_QUERYEXECUTE] = ACTIONS(2966), - [anon_sym_queryExecute] = ACTIONS(2966), - [anon_sym_BQUOTE] = ACTIONS(2966), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2964), - [anon_sym_Abstract] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_ABSTRACT] = ACTIONS(2966), - [anon_sym_Break] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_BREAK] = ACTIONS(2966), - [anon_sym_Case] = ACTIONS(2966), - [anon_sym_case] = ACTIONS(2966), - [anon_sym_CASE] = ACTIONS(2966), - [anon_sym_Component] = ACTIONS(2966), - [anon_sym_component] = ACTIONS(2966), - [anon_sym_COMPONENT] = ACTIONS(2966), - [anon_sym_Continue] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_CONTINUE] = ACTIONS(2966), - [anon_sym_Debugger] = ACTIONS(2966), - [anon_sym_debugger] = ACTIONS(2966), - [anon_sym_DEBUGGER] = ACTIONS(2966), - [anon_sym_Default] = ACTIONS(2966), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_DEFAULT] = ACTIONS(2966), - [anon_sym_Do] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_DO] = ACTIONS(2966), - [anon_sym_Else] = ACTIONS(2966), - [anon_sym_else] = ACTIONS(2966), - [anon_sym_ELSE] = ACTIONS(2966), - [anon_sym_Final] = ACTIONS(2966), - [anon_sym_final] = ACTIONS(2966), - [anon_sym_FINAL] = ACTIONS(2966), - [anon_sym_For] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_FOR] = ACTIONS(2966), - [anon_sym_Function] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_FUNCTION] = ACTIONS(2966), - [anon_sym_If] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_IF] = ACTIONS(2966), - [anon_sym_Import] = ACTIONS(2966), - [anon_sym_import] = ACTIONS(2966), - [anon_sym_IMPORT] = ACTIONS(2966), - [anon_sym_Include] = ACTIONS(2966), - [anon_sym_include] = ACTIONS(2966), - [anon_sym_INCLUDE] = ACTIONS(2966), - [anon_sym_Interface] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_INTERFACE] = ACTIONS(2966), - [anon_sym_New] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_NEW] = ACTIONS(2966), - [anon_sym_Package] = ACTIONS(2966), - [anon_sym_package] = ACTIONS(2966), - [anon_sym_PACKAGE] = ACTIONS(2966), - [anon_sym_Private] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_PRIVATE] = ACTIONS(2966), - [anon_sym_Property] = ACTIONS(2966), - [anon_sym_property] = ACTIONS(2966), - [anon_sym_PROPERTY] = ACTIONS(2966), - [anon_sym_Public] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_PUBLIC] = ACTIONS(2966), - [anon_sym_Remote] = ACTIONS(2966), - [anon_sym_remote] = ACTIONS(2966), - [anon_sym_REMOTE] = ACTIONS(2966), - [anon_sym_Return] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_RETURN] = ACTIONS(2966), - [anon_sym_Static] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_STATIC] = ACTIONS(2966), - [anon_sym_Switch] = ACTIONS(2966), - [anon_sym_switch] = ACTIONS(2966), - [anon_sym_SWITCH] = ACTIONS(2966), - [anon_sym_Throw] = ACTIONS(2966), - [anon_sym_throw] = ACTIONS(2966), - [anon_sym_THROW] = ACTIONS(2966), - [anon_sym_Try] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_TRY] = ACTIONS(2966), - [anon_sym_Var] = ACTIONS(2966), - [anon_sym_var] = ACTIONS(2966), - [anon_sym_VAR] = ACTIONS(2966), - [anon_sym_While] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_WHILE] = ACTIONS(2966), - [anon_sym_With] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_WITH] = ACTIONS(2966), - [sym_cf_comment] = ACTIONS(2964), - [sym__java_block_open] = ACTIONS(2964), - [sym__static_type_prefix] = ACTIONS(2964), - }, - [STATE(668)] = { - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_Query] = ACTIONS(2970), - [anon_sym_query] = ACTIONS(2970), - [anon_sym_QUERY] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_unary_operator_token1] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2968), - [anon_sym_DASH_DASH] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(2968), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2970), - [aux_sym_number_token2] = ACTIONS(2968), - [anon_sym_This] = ACTIONS(2970), - [anon_sym_this] = ACTIONS(2970), - [anon_sym_THIS] = ACTIONS(2970), - [anon_sym_Super] = ACTIONS(2970), - [anon_sym_super] = ACTIONS(2970), - [anon_sym_SUPER] = ACTIONS(2970), - [anon_sym_True] = ACTIONS(2970), - [anon_sym_true] = ACTIONS(2970), - [anon_sym_TRUE] = ACTIONS(2970), - [anon_sym_False] = ACTIONS(2970), - [anon_sym_false] = ACTIONS(2970), - [anon_sym_FALSE] = ACTIONS(2970), - [anon_sym_Null] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_NULL] = ACTIONS(2970), - [anon_sym_Undefined] = ACTIONS(2970), - [anon_sym_undefined] = ACTIONS(2970), - [anon_sym_UNDEFINED] = ACTIONS(2970), - [anon_sym_get] = ACTIONS(2970), - [anon_sym_set] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [sym_hash_empty] = ACTIONS(2968), - [anon_sym_export] = ACTIONS(2970), - [anon_sym_QueryExecute] = ACTIONS(2970), - [anon_sym_queryexecute] = ACTIONS(2970), - [anon_sym_QUERYEXECUTE] = ACTIONS(2970), - [anon_sym_queryExecute] = ACTIONS(2970), - [anon_sym_BQUOTE] = ACTIONS(2970), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2968), - [anon_sym_Abstract] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_ABSTRACT] = ACTIONS(2970), - [anon_sym_Break] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_BREAK] = ACTIONS(2970), - [anon_sym_Case] = ACTIONS(2970), - [anon_sym_case] = ACTIONS(2970), - [anon_sym_CASE] = ACTIONS(2970), - [anon_sym_Component] = ACTIONS(2970), - [anon_sym_component] = ACTIONS(2970), - [anon_sym_COMPONENT] = ACTIONS(2970), - [anon_sym_Continue] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_CONTINUE] = ACTIONS(2970), - [anon_sym_Debugger] = ACTIONS(2970), - [anon_sym_debugger] = ACTIONS(2970), - [anon_sym_DEBUGGER] = ACTIONS(2970), - [anon_sym_Default] = ACTIONS(2970), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_DEFAULT] = ACTIONS(2970), - [anon_sym_Do] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_DO] = ACTIONS(2970), - [anon_sym_Else] = ACTIONS(2970), - [anon_sym_else] = ACTIONS(2970), - [anon_sym_ELSE] = ACTIONS(2970), - [anon_sym_Final] = ACTIONS(2970), - [anon_sym_final] = ACTIONS(2970), - [anon_sym_FINAL] = ACTIONS(2970), - [anon_sym_For] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_FOR] = ACTIONS(2970), - [anon_sym_Function] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_FUNCTION] = ACTIONS(2970), - [anon_sym_If] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_IF] = ACTIONS(2970), - [anon_sym_Import] = ACTIONS(2970), - [anon_sym_import] = ACTIONS(2970), - [anon_sym_IMPORT] = ACTIONS(2970), - [anon_sym_Include] = ACTIONS(2970), - [anon_sym_include] = ACTIONS(2970), - [anon_sym_INCLUDE] = ACTIONS(2970), - [anon_sym_Interface] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_INTERFACE] = ACTIONS(2970), - [anon_sym_New] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_NEW] = ACTIONS(2970), - [anon_sym_Package] = ACTIONS(2970), - [anon_sym_package] = ACTIONS(2970), - [anon_sym_PACKAGE] = ACTIONS(2970), - [anon_sym_Private] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_PRIVATE] = ACTIONS(2970), - [anon_sym_Property] = ACTIONS(2970), - [anon_sym_property] = ACTIONS(2970), - [anon_sym_PROPERTY] = ACTIONS(2970), - [anon_sym_Public] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_PUBLIC] = ACTIONS(2970), - [anon_sym_Remote] = ACTIONS(2970), - [anon_sym_remote] = ACTIONS(2970), - [anon_sym_REMOTE] = ACTIONS(2970), - [anon_sym_Return] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_RETURN] = ACTIONS(2970), - [anon_sym_Static] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_STATIC] = ACTIONS(2970), - [anon_sym_Switch] = ACTIONS(2970), - [anon_sym_switch] = ACTIONS(2970), - [anon_sym_SWITCH] = ACTIONS(2970), - [anon_sym_Throw] = ACTIONS(2970), - [anon_sym_throw] = ACTIONS(2970), - [anon_sym_THROW] = ACTIONS(2970), - [anon_sym_Try] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_TRY] = ACTIONS(2970), - [anon_sym_Var] = ACTIONS(2970), - [anon_sym_var] = ACTIONS(2970), - [anon_sym_VAR] = ACTIONS(2970), - [anon_sym_While] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_WHILE] = ACTIONS(2970), - [anon_sym_With] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_WITH] = ACTIONS(2970), - [sym_cf_comment] = ACTIONS(2968), - [sym__java_block_open] = ACTIONS(2968), - [sym__static_type_prefix] = ACTIONS(2968), - }, - [STATE(669)] = { - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_SEMI] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_Query] = ACTIONS(2974), - [anon_sym_query] = ACTIONS(2974), - [anon_sym_QUERY] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_unary_operator_token1] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2972), - [anon_sym_DASH_DASH] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_SQUOTE] = ACTIONS(2972), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2974), - [aux_sym_number_token2] = ACTIONS(2972), - [anon_sym_This] = ACTIONS(2974), - [anon_sym_this] = ACTIONS(2974), - [anon_sym_THIS] = ACTIONS(2974), - [anon_sym_Super] = ACTIONS(2974), - [anon_sym_super] = ACTIONS(2974), - [anon_sym_SUPER] = ACTIONS(2974), - [anon_sym_True] = ACTIONS(2974), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_TRUE] = ACTIONS(2974), - [anon_sym_False] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_FALSE] = ACTIONS(2974), - [anon_sym_Null] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2974), - [anon_sym_NULL] = ACTIONS(2974), - [anon_sym_Undefined] = ACTIONS(2974), - [anon_sym_undefined] = ACTIONS(2974), - [anon_sym_UNDEFINED] = ACTIONS(2974), - [anon_sym_get] = ACTIONS(2974), - [anon_sym_set] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2974), - [sym_hash_empty] = ACTIONS(2972), - [anon_sym_export] = ACTIONS(2974), - [anon_sym_QueryExecute] = ACTIONS(2974), - [anon_sym_queryexecute] = ACTIONS(2974), - [anon_sym_QUERYEXECUTE] = ACTIONS(2974), - [anon_sym_queryExecute] = ACTIONS(2974), - [anon_sym_BQUOTE] = ACTIONS(2974), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2972), - [anon_sym_Abstract] = ACTIONS(2974), - [anon_sym_abstract] = ACTIONS(2974), - [anon_sym_ABSTRACT] = ACTIONS(2974), - [anon_sym_Break] = ACTIONS(2974), - [anon_sym_break] = ACTIONS(2974), - [anon_sym_BREAK] = ACTIONS(2974), - [anon_sym_Case] = ACTIONS(2974), - [anon_sym_case] = ACTIONS(2974), - [anon_sym_CASE] = ACTIONS(2974), - [anon_sym_Component] = ACTIONS(2974), - [anon_sym_component] = ACTIONS(2974), - [anon_sym_COMPONENT] = ACTIONS(2974), - [anon_sym_Continue] = ACTIONS(2974), - [anon_sym_continue] = ACTIONS(2974), - [anon_sym_CONTINUE] = ACTIONS(2974), - [anon_sym_Debugger] = ACTIONS(2974), - [anon_sym_debugger] = ACTIONS(2974), - [anon_sym_DEBUGGER] = ACTIONS(2974), - [anon_sym_Default] = ACTIONS(2974), - [anon_sym_default] = ACTIONS(2974), - [anon_sym_DEFAULT] = ACTIONS(2974), - [anon_sym_Do] = ACTIONS(2974), - [anon_sym_do] = ACTIONS(2974), - [anon_sym_DO] = ACTIONS(2974), - [anon_sym_Else] = ACTIONS(2974), - [anon_sym_else] = ACTIONS(2974), - [anon_sym_ELSE] = ACTIONS(2974), - [anon_sym_Final] = ACTIONS(2974), - [anon_sym_final] = ACTIONS(2974), - [anon_sym_FINAL] = ACTIONS(2974), - [anon_sym_For] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2974), - [anon_sym_FOR] = ACTIONS(2974), - [anon_sym_Function] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2974), - [anon_sym_FUNCTION] = ACTIONS(2974), - [anon_sym_If] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_IF] = ACTIONS(2974), - [anon_sym_Import] = ACTIONS(2974), - [anon_sym_import] = ACTIONS(2974), - [anon_sym_IMPORT] = ACTIONS(2974), - [anon_sym_Include] = ACTIONS(2974), - [anon_sym_include] = ACTIONS(2974), - [anon_sym_INCLUDE] = ACTIONS(2974), - [anon_sym_Interface] = ACTIONS(2974), - [anon_sym_interface] = ACTIONS(2974), - [anon_sym_INTERFACE] = ACTIONS(2974), - [anon_sym_New] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_NEW] = ACTIONS(2974), - [anon_sym_Package] = ACTIONS(2974), - [anon_sym_package] = ACTIONS(2974), - [anon_sym_PACKAGE] = ACTIONS(2974), - [anon_sym_Private] = ACTIONS(2974), - [anon_sym_private] = ACTIONS(2974), - [anon_sym_PRIVATE] = ACTIONS(2974), - [anon_sym_Property] = ACTIONS(2974), - [anon_sym_property] = ACTIONS(2974), - [anon_sym_PROPERTY] = ACTIONS(2974), - [anon_sym_Public] = ACTIONS(2974), - [anon_sym_public] = ACTIONS(2974), - [anon_sym_PUBLIC] = ACTIONS(2974), - [anon_sym_Remote] = ACTIONS(2974), - [anon_sym_remote] = ACTIONS(2974), - [anon_sym_REMOTE] = ACTIONS(2974), - [anon_sym_Return] = ACTIONS(2974), - [anon_sym_return] = ACTIONS(2974), - [anon_sym_RETURN] = ACTIONS(2974), - [anon_sym_Static] = ACTIONS(2974), - [anon_sym_static] = ACTIONS(2974), - [anon_sym_STATIC] = ACTIONS(2974), - [anon_sym_Switch] = ACTIONS(2974), - [anon_sym_switch] = ACTIONS(2974), - [anon_sym_SWITCH] = ACTIONS(2974), - [anon_sym_Throw] = ACTIONS(2974), - [anon_sym_throw] = ACTIONS(2974), - [anon_sym_THROW] = ACTIONS(2974), - [anon_sym_Try] = ACTIONS(2974), - [anon_sym_try] = ACTIONS(2974), - [anon_sym_TRY] = ACTIONS(2974), - [anon_sym_Var] = ACTIONS(2974), - [anon_sym_var] = ACTIONS(2974), - [anon_sym_VAR] = ACTIONS(2974), - [anon_sym_While] = ACTIONS(2974), - [anon_sym_while] = ACTIONS(2974), - [anon_sym_WHILE] = ACTIONS(2974), - [anon_sym_With] = ACTIONS(2974), - [anon_sym_with] = ACTIONS(2974), - [anon_sym_WITH] = ACTIONS(2974), - [sym_cf_comment] = ACTIONS(2972), - [sym__java_block_open] = ACTIONS(2972), - [sym__static_type_prefix] = ACTIONS(2972), - }, - [STATE(670)] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_RBRACE] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_Query] = ACTIONS(2978), - [anon_sym_query] = ACTIONS(2978), - [anon_sym_QUERY] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_SLASH] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2976), - [aux_sym_unary_operator_token1] = ACTIONS(2978), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_SQUOTE] = ACTIONS(2976), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2978), - [aux_sym_number_token2] = ACTIONS(2976), - [anon_sym_This] = ACTIONS(2978), - [anon_sym_this] = ACTIONS(2978), - [anon_sym_THIS] = ACTIONS(2978), - [anon_sym_Super] = ACTIONS(2978), - [anon_sym_super] = ACTIONS(2978), - [anon_sym_SUPER] = ACTIONS(2978), - [anon_sym_True] = ACTIONS(2978), - [anon_sym_true] = ACTIONS(2978), - [anon_sym_TRUE] = ACTIONS(2978), - [anon_sym_False] = ACTIONS(2978), - [anon_sym_false] = ACTIONS(2978), - [anon_sym_FALSE] = ACTIONS(2978), - [anon_sym_Null] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2978), - [anon_sym_NULL] = ACTIONS(2978), - [anon_sym_Undefined] = ACTIONS(2978), - [anon_sym_undefined] = ACTIONS(2978), - [anon_sym_UNDEFINED] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(2978), - [anon_sym_set] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2978), - [sym_hash_empty] = ACTIONS(2976), - [anon_sym_export] = ACTIONS(2978), - [anon_sym_QueryExecute] = ACTIONS(2978), - [anon_sym_queryexecute] = ACTIONS(2978), - [anon_sym_QUERYEXECUTE] = ACTIONS(2978), - [anon_sym_queryExecute] = ACTIONS(2978), - [anon_sym_BQUOTE] = ACTIONS(2978), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2976), - [anon_sym_Abstract] = ACTIONS(2978), - [anon_sym_abstract] = ACTIONS(2978), - [anon_sym_ABSTRACT] = ACTIONS(2978), - [anon_sym_Break] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_BREAK] = ACTIONS(2978), - [anon_sym_Case] = ACTIONS(2978), - [anon_sym_case] = ACTIONS(2978), - [anon_sym_CASE] = ACTIONS(2978), - [anon_sym_Component] = ACTIONS(2978), - [anon_sym_component] = ACTIONS(2978), - [anon_sym_COMPONENT] = ACTIONS(2978), - [anon_sym_Continue] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_CONTINUE] = ACTIONS(2978), - [anon_sym_Debugger] = ACTIONS(2978), - [anon_sym_debugger] = ACTIONS(2978), - [anon_sym_DEBUGGER] = ACTIONS(2978), - [anon_sym_Default] = ACTIONS(2978), - [anon_sym_default] = ACTIONS(2978), - [anon_sym_DEFAULT] = ACTIONS(2978), - [anon_sym_Do] = ACTIONS(2978), - [anon_sym_do] = ACTIONS(2978), - [anon_sym_DO] = ACTIONS(2978), - [anon_sym_Else] = ACTIONS(2978), - [anon_sym_else] = ACTIONS(2978), - [anon_sym_ELSE] = ACTIONS(2978), - [anon_sym_Final] = ACTIONS(2978), - [anon_sym_final] = ACTIONS(2978), - [anon_sym_FINAL] = ACTIONS(2978), - [anon_sym_For] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_FOR] = ACTIONS(2978), - [anon_sym_Function] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_FUNCTION] = ACTIONS(2978), - [anon_sym_If] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_IF] = ACTIONS(2978), - [anon_sym_Import] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(2978), - [anon_sym_IMPORT] = ACTIONS(2978), - [anon_sym_Include] = ACTIONS(2978), - [anon_sym_include] = ACTIONS(2978), - [anon_sym_INCLUDE] = ACTIONS(2978), - [anon_sym_Interface] = ACTIONS(2978), - [anon_sym_interface] = ACTIONS(2978), - [anon_sym_INTERFACE] = ACTIONS(2978), - [anon_sym_New] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2978), - [anon_sym_NEW] = ACTIONS(2978), - [anon_sym_Package] = ACTIONS(2978), - [anon_sym_package] = ACTIONS(2978), - [anon_sym_PACKAGE] = ACTIONS(2978), - [anon_sym_Private] = ACTIONS(2978), - [anon_sym_private] = ACTIONS(2978), - [anon_sym_PRIVATE] = ACTIONS(2978), - [anon_sym_Property] = ACTIONS(2978), - [anon_sym_property] = ACTIONS(2978), - [anon_sym_PROPERTY] = ACTIONS(2978), - [anon_sym_Public] = ACTIONS(2978), - [anon_sym_public] = ACTIONS(2978), - [anon_sym_PUBLIC] = ACTIONS(2978), - [anon_sym_Remote] = ACTIONS(2978), - [anon_sym_remote] = ACTIONS(2978), - [anon_sym_REMOTE] = ACTIONS(2978), - [anon_sym_Return] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_RETURN] = ACTIONS(2978), - [anon_sym_Static] = ACTIONS(2978), - [anon_sym_static] = ACTIONS(2978), - [anon_sym_STATIC] = ACTIONS(2978), - [anon_sym_Switch] = ACTIONS(2978), - [anon_sym_switch] = ACTIONS(2978), - [anon_sym_SWITCH] = ACTIONS(2978), - [anon_sym_Throw] = ACTIONS(2978), - [anon_sym_throw] = ACTIONS(2978), - [anon_sym_THROW] = ACTIONS(2978), - [anon_sym_Try] = ACTIONS(2978), - [anon_sym_try] = ACTIONS(2978), - [anon_sym_TRY] = ACTIONS(2978), - [anon_sym_Var] = ACTIONS(2978), - [anon_sym_var] = ACTIONS(2978), - [anon_sym_VAR] = ACTIONS(2978), - [anon_sym_While] = ACTIONS(2978), - [anon_sym_while] = ACTIONS(2978), - [anon_sym_WHILE] = ACTIONS(2978), - [anon_sym_With] = ACTIONS(2978), - [anon_sym_with] = ACTIONS(2978), - [anon_sym_WITH] = ACTIONS(2978), - [sym_cf_comment] = ACTIONS(2976), - [sym__java_block_open] = ACTIONS(2976), - [sym__static_type_prefix] = ACTIONS(2976), - }, - [STATE(671)] = { - [sym_arguments] = STATE(621), - [sym_identifier] = ACTIONS(2264), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_Query] = ACTIONS(2264), - [anon_sym_query] = ACTIONS(2264), - [anon_sym_QUERY] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2264), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2267), - [aux_sym_unary_operator_token1] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2264), - [aux_sym_number_token2] = ACTIONS(2264), - [anon_sym_This] = ACTIONS(2264), - [anon_sym_this] = ACTIONS(2264), - [anon_sym_THIS] = ACTIONS(2264), - [anon_sym_Super] = ACTIONS(2264), - [anon_sym_super] = ACTIONS(2264), - [anon_sym_SUPER] = ACTIONS(2264), - [anon_sym_True] = ACTIONS(2264), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_TRUE] = ACTIONS(2264), - [anon_sym_False] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [anon_sym_FALSE] = ACTIONS(2264), - [anon_sym_Null] = ACTIONS(2264), - [anon_sym_null] = ACTIONS(2264), - [anon_sym_NULL] = ACTIONS(2264), - [anon_sym_Undefined] = ACTIONS(2264), - [anon_sym_undefined] = ACTIONS(2264), - [anon_sym_UNDEFINED] = ACTIONS(2264), - [anon_sym_get] = ACTIONS(2264), - [anon_sym_set] = ACTIONS(2264), - [anon_sym_POUND] = ACTIONS(2264), - [sym_hash_empty] = ACTIONS(2267), - [anon_sym_export] = ACTIONS(2264), - [anon_sym_QueryExecute] = ACTIONS(2264), - [anon_sym_queryexecute] = ACTIONS(2264), - [anon_sym_QUERYEXECUTE] = ACTIONS(2264), - [anon_sym_queryExecute] = ACTIONS(2264), - [anon_sym_BQUOTE] = ACTIONS(2267), - [anon_sym_Abstract] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_ABSTRACT] = ACTIONS(2264), - [anon_sym_Component] = ACTIONS(2264), - [anon_sym_component] = ACTIONS(2264), - [anon_sym_COMPONENT] = ACTIONS(2264), - [anon_sym_Debugger] = ACTIONS(2264), - [anon_sym_debugger] = ACTIONS(2264), - [anon_sym_DEBUGGER] = ACTIONS(2264), - [anon_sym_Final] = ACTIONS(2264), - [anon_sym_final] = ACTIONS(2264), - [anon_sym_FINAL] = ACTIONS(2264), - [anon_sym_Function] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_FUNCTION] = ACTIONS(2264), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_Include] = ACTIONS(2264), - [anon_sym_include] = ACTIONS(2264), - [anon_sym_INCLUDE] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2264), - [anon_sym_instanceof] = ACTIONS(2264), - [anon_sym_INSTANCEOF] = ACTIONS(2264), - [anon_sym_instanceOf] = ACTIONS(2264), - [anon_sym_New] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_NEW] = ACTIONS(2264), - [anon_sym_Package] = ACTIONS(2264), - [anon_sym_package] = ACTIONS(2264), - [anon_sym_PACKAGE] = ACTIONS(2264), - [anon_sym_Private] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_PRIVATE] = ACTIONS(2264), - [anon_sym_Public] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_PUBLIC] = ACTIONS(2264), - [anon_sym_Remote] = ACTIONS(2264), - [anon_sym_remote] = ACTIONS(2264), - [anon_sym_REMOTE] = ACTIONS(2264), - [anon_sym_Static] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_STATIC] = ACTIONS(2264), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), - [sym__java_block_open] = ACTIONS(2267), - [sym__static_type_prefix] = ACTIONS(2267), - }, - [STATE(672)] = { - [ts_builtin_sym_end] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_RBRACE] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_SEMI] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2982), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_Query] = ACTIONS(2982), - [anon_sym_query] = ACTIONS(2982), - [anon_sym_QUERY] = ACTIONS(2982), - [anon_sym_PLUS] = ACTIONS(2982), - [anon_sym_DASH] = ACTIONS(2982), - [anon_sym_SLASH] = ACTIONS(2982), - [anon_sym_BANG] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2980), - [aux_sym_unary_operator_token1] = ACTIONS(2982), - [anon_sym_PLUS_PLUS] = ACTIONS(2980), - [anon_sym_DASH_DASH] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2980), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2982), - [aux_sym_number_token2] = ACTIONS(2980), - [anon_sym_This] = ACTIONS(2982), - [anon_sym_this] = ACTIONS(2982), - [anon_sym_THIS] = ACTIONS(2982), - [anon_sym_Super] = ACTIONS(2982), - [anon_sym_super] = ACTIONS(2982), - [anon_sym_SUPER] = ACTIONS(2982), - [anon_sym_True] = ACTIONS(2982), - [anon_sym_true] = ACTIONS(2982), - [anon_sym_TRUE] = ACTIONS(2982), - [anon_sym_False] = ACTIONS(2982), - [anon_sym_false] = ACTIONS(2982), - [anon_sym_FALSE] = ACTIONS(2982), - [anon_sym_Null] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2982), - [anon_sym_NULL] = ACTIONS(2982), - [anon_sym_Undefined] = ACTIONS(2982), - [anon_sym_undefined] = ACTIONS(2982), - [anon_sym_UNDEFINED] = ACTIONS(2982), - [anon_sym_get] = ACTIONS(2982), - [anon_sym_set] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2982), - [sym_hash_empty] = ACTIONS(2980), - [anon_sym_export] = ACTIONS(2982), - [anon_sym_QueryExecute] = ACTIONS(2982), - [anon_sym_queryexecute] = ACTIONS(2982), - [anon_sym_QUERYEXECUTE] = ACTIONS(2982), - [anon_sym_queryExecute] = ACTIONS(2982), - [anon_sym_BQUOTE] = ACTIONS(2982), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2980), - [anon_sym_Abstract] = ACTIONS(2982), - [anon_sym_abstract] = ACTIONS(2982), - [anon_sym_ABSTRACT] = ACTIONS(2982), - [anon_sym_Break] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_BREAK] = ACTIONS(2982), - [anon_sym_Case] = ACTIONS(2982), - [anon_sym_case] = ACTIONS(2982), - [anon_sym_CASE] = ACTIONS(2982), - [anon_sym_Component] = ACTIONS(2982), - [anon_sym_component] = ACTIONS(2982), - [anon_sym_COMPONENT] = ACTIONS(2982), - [anon_sym_Continue] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_CONTINUE] = ACTIONS(2982), - [anon_sym_Debugger] = ACTIONS(2982), - [anon_sym_debugger] = ACTIONS(2982), - [anon_sym_DEBUGGER] = ACTIONS(2982), - [anon_sym_Default] = ACTIONS(2982), - [anon_sym_default] = ACTIONS(2982), - [anon_sym_DEFAULT] = ACTIONS(2982), - [anon_sym_Do] = ACTIONS(2982), - [anon_sym_do] = ACTIONS(2982), - [anon_sym_DO] = ACTIONS(2982), - [anon_sym_Else] = ACTIONS(2982), - [anon_sym_else] = ACTIONS(2982), - [anon_sym_ELSE] = ACTIONS(2982), - [anon_sym_Final] = ACTIONS(2982), - [anon_sym_final] = ACTIONS(2982), - [anon_sym_FINAL] = ACTIONS(2982), - [anon_sym_For] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_FOR] = ACTIONS(2982), - [anon_sym_Function] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2982), - [anon_sym_FUNCTION] = ACTIONS(2982), - [anon_sym_If] = ACTIONS(2982), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_IF] = ACTIONS(2982), - [anon_sym_Import] = ACTIONS(2982), - [anon_sym_import] = ACTIONS(2982), - [anon_sym_IMPORT] = ACTIONS(2982), - [anon_sym_Include] = ACTIONS(2982), - [anon_sym_include] = ACTIONS(2982), - [anon_sym_INCLUDE] = ACTIONS(2982), - [anon_sym_Interface] = ACTIONS(2982), - [anon_sym_interface] = ACTIONS(2982), - [anon_sym_INTERFACE] = ACTIONS(2982), - [anon_sym_New] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2982), - [anon_sym_NEW] = ACTIONS(2982), - [anon_sym_Package] = ACTIONS(2982), - [anon_sym_package] = ACTIONS(2982), - [anon_sym_PACKAGE] = ACTIONS(2982), - [anon_sym_Private] = ACTIONS(2982), - [anon_sym_private] = ACTIONS(2982), - [anon_sym_PRIVATE] = ACTIONS(2982), - [anon_sym_Property] = ACTIONS(2982), - [anon_sym_property] = ACTIONS(2982), - [anon_sym_PROPERTY] = ACTIONS(2982), - [anon_sym_Public] = ACTIONS(2982), - [anon_sym_public] = ACTIONS(2982), - [anon_sym_PUBLIC] = ACTIONS(2982), - [anon_sym_Remote] = ACTIONS(2982), - [anon_sym_remote] = ACTIONS(2982), - [anon_sym_REMOTE] = ACTIONS(2982), - [anon_sym_Return] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_RETURN] = ACTIONS(2982), - [anon_sym_Static] = ACTIONS(2982), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_STATIC] = ACTIONS(2982), - [anon_sym_Switch] = ACTIONS(2982), - [anon_sym_switch] = ACTIONS(2982), - [anon_sym_SWITCH] = ACTIONS(2982), - [anon_sym_Throw] = ACTIONS(2982), - [anon_sym_throw] = ACTIONS(2982), - [anon_sym_THROW] = ACTIONS(2982), - [anon_sym_Try] = ACTIONS(2982), - [anon_sym_try] = ACTIONS(2982), - [anon_sym_TRY] = ACTIONS(2982), - [anon_sym_Var] = ACTIONS(2982), - [anon_sym_var] = ACTIONS(2982), - [anon_sym_VAR] = ACTIONS(2982), - [anon_sym_While] = ACTIONS(2982), - [anon_sym_while] = ACTIONS(2982), - [anon_sym_WHILE] = ACTIONS(2982), - [anon_sym_With] = ACTIONS(2982), - [anon_sym_with] = ACTIONS(2982), - [anon_sym_WITH] = ACTIONS(2982), - [sym_cf_comment] = ACTIONS(2980), - [sym__java_block_open] = ACTIONS(2980), - [sym__static_type_prefix] = ACTIONS(2980), - }, - [STATE(673)] = { - [ts_builtin_sym_end] = ACTIONS(2984), - [sym_identifier] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_RBRACE] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_Query] = ACTIONS(2986), - [anon_sym_query] = ACTIONS(2986), - [anon_sym_QUERY] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_SLASH] = ACTIONS(2986), - [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2984), - [aux_sym_unary_operator_token1] = ACTIONS(2986), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_SQUOTE] = ACTIONS(2984), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2986), - [aux_sym_number_token2] = ACTIONS(2984), - [anon_sym_This] = ACTIONS(2986), - [anon_sym_this] = ACTIONS(2986), - [anon_sym_THIS] = ACTIONS(2986), - [anon_sym_Super] = ACTIONS(2986), - [anon_sym_super] = ACTIONS(2986), - [anon_sym_SUPER] = ACTIONS(2986), - [anon_sym_True] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_TRUE] = ACTIONS(2986), - [anon_sym_False] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [anon_sym_FALSE] = ACTIONS(2986), - [anon_sym_Null] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_NULL] = ACTIONS(2986), - [anon_sym_Undefined] = ACTIONS(2986), - [anon_sym_undefined] = ACTIONS(2986), - [anon_sym_UNDEFINED] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(2986), - [anon_sym_set] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(2986), - [sym_hash_empty] = ACTIONS(2984), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_QueryExecute] = ACTIONS(2986), - [anon_sym_queryexecute] = ACTIONS(2986), - [anon_sym_QUERYEXECUTE] = ACTIONS(2986), - [anon_sym_queryExecute] = ACTIONS(2986), - [anon_sym_BQUOTE] = ACTIONS(2986), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2984), - [anon_sym_Abstract] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_ABSTRACT] = ACTIONS(2986), - [anon_sym_Break] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_BREAK] = ACTIONS(2986), - [anon_sym_Case] = ACTIONS(2986), - [anon_sym_case] = ACTIONS(2986), - [anon_sym_CASE] = ACTIONS(2986), - [anon_sym_Component] = ACTIONS(2986), - [anon_sym_component] = ACTIONS(2986), - [anon_sym_COMPONENT] = ACTIONS(2986), - [anon_sym_Continue] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_CONTINUE] = ACTIONS(2986), - [anon_sym_Debugger] = ACTIONS(2986), - [anon_sym_debugger] = ACTIONS(2986), - [anon_sym_DEBUGGER] = ACTIONS(2986), - [anon_sym_Default] = ACTIONS(2986), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_DEFAULT] = ACTIONS(2986), - [anon_sym_Do] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_DO] = ACTIONS(2986), - [anon_sym_Else] = ACTIONS(2986), - [anon_sym_else] = ACTIONS(2986), - [anon_sym_ELSE] = ACTIONS(2986), - [anon_sym_Final] = ACTIONS(2986), - [anon_sym_final] = ACTIONS(2986), - [anon_sym_FINAL] = ACTIONS(2986), - [anon_sym_For] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_FOR] = ACTIONS(2986), - [anon_sym_Function] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_FUNCTION] = ACTIONS(2986), - [anon_sym_If] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_IF] = ACTIONS(2986), - [anon_sym_Import] = ACTIONS(2986), - [anon_sym_import] = ACTIONS(2986), - [anon_sym_IMPORT] = ACTIONS(2986), - [anon_sym_Include] = ACTIONS(2986), - [anon_sym_include] = ACTIONS(2986), - [anon_sym_INCLUDE] = ACTIONS(2986), - [anon_sym_Interface] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_INTERFACE] = ACTIONS(2986), - [anon_sym_New] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_NEW] = ACTIONS(2986), - [anon_sym_Package] = ACTIONS(2986), - [anon_sym_package] = ACTIONS(2986), - [anon_sym_PACKAGE] = ACTIONS(2986), - [anon_sym_Private] = ACTIONS(2986), - [anon_sym_private] = ACTIONS(2986), - [anon_sym_PRIVATE] = ACTIONS(2986), - [anon_sym_Property] = ACTIONS(2986), - [anon_sym_property] = ACTIONS(2986), - [anon_sym_PROPERTY] = ACTIONS(2986), - [anon_sym_Public] = ACTIONS(2986), - [anon_sym_public] = ACTIONS(2986), - [anon_sym_PUBLIC] = ACTIONS(2986), - [anon_sym_Remote] = ACTIONS(2986), - [anon_sym_remote] = ACTIONS(2986), - [anon_sym_REMOTE] = ACTIONS(2986), - [anon_sym_Return] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_RETURN] = ACTIONS(2986), - [anon_sym_Static] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_STATIC] = ACTIONS(2986), - [anon_sym_Switch] = ACTIONS(2986), - [anon_sym_switch] = ACTIONS(2986), - [anon_sym_SWITCH] = ACTIONS(2986), - [anon_sym_Throw] = ACTIONS(2986), - [anon_sym_throw] = ACTIONS(2986), - [anon_sym_THROW] = ACTIONS(2986), - [anon_sym_Try] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_TRY] = ACTIONS(2986), - [anon_sym_Var] = ACTIONS(2986), - [anon_sym_var] = ACTIONS(2986), - [anon_sym_VAR] = ACTIONS(2986), - [anon_sym_While] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_WHILE] = ACTIONS(2986), - [anon_sym_With] = ACTIONS(2986), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_WITH] = ACTIONS(2986), - [sym_cf_comment] = ACTIONS(2984), - [sym__java_block_open] = ACTIONS(2984), - [sym__static_type_prefix] = ACTIONS(2984), - }, - [STATE(674)] = { - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_Query] = ACTIONS(2990), - [anon_sym_query] = ACTIONS(2990), - [anon_sym_QUERY] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_SLASH] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_unary_operator_token1] = ACTIONS(2990), - [anon_sym_PLUS_PLUS] = ACTIONS(2988), - [anon_sym_DASH_DASH] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_SQUOTE] = ACTIONS(2988), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2990), - [aux_sym_number_token2] = ACTIONS(2988), - [anon_sym_This] = ACTIONS(2990), - [anon_sym_this] = ACTIONS(2990), - [anon_sym_THIS] = ACTIONS(2990), - [anon_sym_Super] = ACTIONS(2990), - [anon_sym_super] = ACTIONS(2990), - [anon_sym_SUPER] = ACTIONS(2990), - [anon_sym_True] = ACTIONS(2990), - [anon_sym_true] = ACTIONS(2990), - [anon_sym_TRUE] = ACTIONS(2990), - [anon_sym_False] = ACTIONS(2990), - [anon_sym_false] = ACTIONS(2990), - [anon_sym_FALSE] = ACTIONS(2990), - [anon_sym_Null] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2990), - [anon_sym_Undefined] = ACTIONS(2990), - [anon_sym_undefined] = ACTIONS(2990), - [anon_sym_UNDEFINED] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2990), - [sym_hash_empty] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_QueryExecute] = ACTIONS(2990), - [anon_sym_queryexecute] = ACTIONS(2990), - [anon_sym_QUERYEXECUTE] = ACTIONS(2990), - [anon_sym_queryExecute] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2988), - [anon_sym_Abstract] = ACTIONS(2990), - [anon_sym_abstract] = ACTIONS(2990), - [anon_sym_ABSTRACT] = ACTIONS(2990), - [anon_sym_Break] = ACTIONS(2990), - [anon_sym_break] = ACTIONS(2990), - [anon_sym_BREAK] = ACTIONS(2990), - [anon_sym_Case] = ACTIONS(2990), - [anon_sym_case] = ACTIONS(2990), - [anon_sym_CASE] = ACTIONS(2990), - [anon_sym_Component] = ACTIONS(2990), - [anon_sym_component] = ACTIONS(2990), - [anon_sym_COMPONENT] = ACTIONS(2990), - [anon_sym_Continue] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(2990), - [anon_sym_CONTINUE] = ACTIONS(2990), - [anon_sym_Debugger] = ACTIONS(2990), - [anon_sym_debugger] = ACTIONS(2990), - [anon_sym_DEBUGGER] = ACTIONS(2990), - [anon_sym_Default] = ACTIONS(2990), - [anon_sym_default] = ACTIONS(2990), - [anon_sym_DEFAULT] = ACTIONS(2990), - [anon_sym_Do] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_DO] = ACTIONS(2990), - [anon_sym_Else] = ACTIONS(2990), - [anon_sym_else] = ACTIONS(2990), - [anon_sym_ELSE] = ACTIONS(2990), - [anon_sym_Final] = ACTIONS(2990), - [anon_sym_final] = ACTIONS(2990), - [anon_sym_FINAL] = ACTIONS(2990), - [anon_sym_For] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_FOR] = ACTIONS(2990), - [anon_sym_Function] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_FUNCTION] = ACTIONS(2990), - [anon_sym_If] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_IF] = ACTIONS(2990), - [anon_sym_Import] = ACTIONS(2990), - [anon_sym_import] = ACTIONS(2990), - [anon_sym_IMPORT] = ACTIONS(2990), - [anon_sym_Include] = ACTIONS(2990), - [anon_sym_include] = ACTIONS(2990), - [anon_sym_INCLUDE] = ACTIONS(2990), - [anon_sym_Interface] = ACTIONS(2990), - [anon_sym_interface] = ACTIONS(2990), - [anon_sym_INTERFACE] = ACTIONS(2990), - [anon_sym_New] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_NEW] = ACTIONS(2990), - [anon_sym_Package] = ACTIONS(2990), - [anon_sym_package] = ACTIONS(2990), - [anon_sym_PACKAGE] = ACTIONS(2990), - [anon_sym_Private] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_PRIVATE] = ACTIONS(2990), - [anon_sym_Property] = ACTIONS(2990), - [anon_sym_property] = ACTIONS(2990), - [anon_sym_PROPERTY] = ACTIONS(2990), - [anon_sym_Public] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_PUBLIC] = ACTIONS(2990), - [anon_sym_Remote] = ACTIONS(2990), - [anon_sym_remote] = ACTIONS(2990), - [anon_sym_REMOTE] = ACTIONS(2990), - [anon_sym_Return] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_RETURN] = ACTIONS(2990), - [anon_sym_Static] = ACTIONS(2990), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_STATIC] = ACTIONS(2990), - [anon_sym_Switch] = ACTIONS(2990), - [anon_sym_switch] = ACTIONS(2990), - [anon_sym_SWITCH] = ACTIONS(2990), - [anon_sym_Throw] = ACTIONS(2990), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_THROW] = ACTIONS(2990), - [anon_sym_Try] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_TRY] = ACTIONS(2990), - [anon_sym_Var] = ACTIONS(2990), - [anon_sym_var] = ACTIONS(2990), - [anon_sym_VAR] = ACTIONS(2990), - [anon_sym_While] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_WHILE] = ACTIONS(2990), - [anon_sym_With] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_WITH] = ACTIONS(2990), - [sym_cf_comment] = ACTIONS(2988), - [sym__java_block_open] = ACTIONS(2988), - [sym__static_type_prefix] = ACTIONS(2988), - }, - [STATE(675)] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1670), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Break] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_BREAK] = ACTIONS(1672), - [anon_sym_Case] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_CASE] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Continue] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_CONTINUE] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Default] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_DEFAULT] = ACTIONS(1672), - [anon_sym_Do] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_DO] = ACTIONS(1672), - [anon_sym_Else] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_ELSE] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_For] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_FOR] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_If] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_IF] = ACTIONS(1672), - [anon_sym_Import] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_IMPORT] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_Interface] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_INTERFACE] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Property] = ACTIONS(1672), - [anon_sym_property] = ACTIONS(1672), - [anon_sym_PROPERTY] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Return] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_RETURN] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [anon_sym_Switch] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_SWITCH] = ACTIONS(1672), - [anon_sym_Throw] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_THROW] = ACTIONS(1672), - [anon_sym_Try] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_TRY] = ACTIONS(1672), - [anon_sym_Var] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_VAR] = ACTIONS(1672), - [anon_sym_While] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_WHILE] = ACTIONS(1672), - [anon_sym_With] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_WITH] = ACTIONS(1672), - [sym_cf_comment] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), - }, - [STATE(676)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_let] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_Query] = ACTIONS(507), - [anon_sym_query] = ACTIONS(507), - [anon_sym_QUERY] = ACTIONS(507), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(509), - [aux_sym_unary_operator_token1] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(507), - [aux_sym_number_token2] = ACTIONS(507), - [anon_sym_This] = ACTIONS(507), - [anon_sym_this] = ACTIONS(507), - [anon_sym_THIS] = ACTIONS(507), - [anon_sym_Super] = ACTIONS(507), - [anon_sym_super] = ACTIONS(507), - [anon_sym_SUPER] = ACTIONS(507), - [anon_sym_True] = ACTIONS(507), - [anon_sym_true] = ACTIONS(507), - [anon_sym_TRUE] = ACTIONS(507), - [anon_sym_False] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_FALSE] = ACTIONS(507), - [anon_sym_Null] = ACTIONS(507), - [anon_sym_null] = ACTIONS(507), - [anon_sym_NULL] = ACTIONS(507), - [anon_sym_Undefined] = ACTIONS(507), - [anon_sym_undefined] = ACTIONS(507), - [anon_sym_UNDEFINED] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(507), - [sym_hash_empty] = ACTIONS(509), - [anon_sym_export] = ACTIONS(507), - [anon_sym_QueryExecute] = ACTIONS(507), - [anon_sym_queryexecute] = ACTIONS(507), - [anon_sym_QUERYEXECUTE] = ACTIONS(507), - [anon_sym_queryExecute] = ACTIONS(507), - [anon_sym_BQUOTE] = ACTIONS(509), - [anon_sym_Abstract] = ACTIONS(507), - [anon_sym_abstract] = ACTIONS(507), - [anon_sym_ABSTRACT] = ACTIONS(507), - [anon_sym_Component] = ACTIONS(507), - [anon_sym_component] = ACTIONS(507), - [anon_sym_COMPONENT] = ACTIONS(507), - [anon_sym_Debugger] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_DEBUGGER] = ACTIONS(507), - [anon_sym_Final] = ACTIONS(507), - [anon_sym_final] = ACTIONS(507), - [anon_sym_FINAL] = ACTIONS(507), - [anon_sym_Function] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_FUNCTION] = ACTIONS(507), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(507), - [anon_sym_include] = ACTIONS(507), - [anon_sym_INCLUDE] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_NEW] = ACTIONS(507), - [anon_sym_Package] = ACTIONS(507), - [anon_sym_package] = ACTIONS(507), - [anon_sym_PACKAGE] = ACTIONS(507), - [anon_sym_Private] = ACTIONS(507), - [anon_sym_private] = ACTIONS(507), - [anon_sym_PRIVATE] = ACTIONS(507), - [anon_sym_Public] = ACTIONS(507), - [anon_sym_public] = ACTIONS(507), - [anon_sym_PUBLIC] = ACTIONS(507), - [anon_sym_Remote] = ACTIONS(507), - [anon_sym_remote] = ACTIONS(507), - [anon_sym_REMOTE] = ACTIONS(507), - [anon_sym_Static] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_STATIC] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(509), - [sym__static_type_prefix] = ACTIONS(509), - }, - [STATE(677)] = { - [ts_builtin_sym_end] = ACTIONS(2992), - [sym_identifier] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_Query] = ACTIONS(2994), - [anon_sym_query] = ACTIONS(2994), - [anon_sym_QUERY] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_unary_operator_token1] = ACTIONS(2994), - [anon_sym_PLUS_PLUS] = ACTIONS(2992), - [anon_sym_DASH_DASH] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2992), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2994), - [aux_sym_number_token2] = ACTIONS(2992), - [anon_sym_This] = ACTIONS(2994), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_THIS] = ACTIONS(2994), - [anon_sym_Super] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_SUPER] = ACTIONS(2994), - [anon_sym_True] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_TRUE] = ACTIONS(2994), - [anon_sym_False] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_FALSE] = ACTIONS(2994), - [anon_sym_Null] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_NULL] = ACTIONS(2994), - [anon_sym_Undefined] = ACTIONS(2994), - [anon_sym_undefined] = ACTIONS(2994), - [anon_sym_UNDEFINED] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2994), - [anon_sym_set] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2994), - [sym_hash_empty] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2994), - [anon_sym_QueryExecute] = ACTIONS(2994), - [anon_sym_queryexecute] = ACTIONS(2994), - [anon_sym_QUERYEXECUTE] = ACTIONS(2994), - [anon_sym_queryExecute] = ACTIONS(2994), - [anon_sym_BQUOTE] = ACTIONS(2994), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2992), - [anon_sym_Abstract] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_ABSTRACT] = ACTIONS(2994), - [anon_sym_Break] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_BREAK] = ACTIONS(2994), - [anon_sym_Case] = ACTIONS(2994), - [anon_sym_case] = ACTIONS(2994), - [anon_sym_CASE] = ACTIONS(2994), - [anon_sym_Component] = ACTIONS(2994), - [anon_sym_component] = ACTIONS(2994), - [anon_sym_COMPONENT] = ACTIONS(2994), - [anon_sym_Continue] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_CONTINUE] = ACTIONS(2994), - [anon_sym_Debugger] = ACTIONS(2994), - [anon_sym_debugger] = ACTIONS(2994), - [anon_sym_DEBUGGER] = ACTIONS(2994), - [anon_sym_Default] = ACTIONS(2994), - [anon_sym_default] = ACTIONS(2994), - [anon_sym_DEFAULT] = ACTIONS(2994), - [anon_sym_Do] = ACTIONS(2994), - [anon_sym_do] = ACTIONS(2994), - [anon_sym_DO] = ACTIONS(2994), - [anon_sym_Else] = ACTIONS(2994), - [anon_sym_else] = ACTIONS(2994), - [anon_sym_ELSE] = ACTIONS(2994), - [anon_sym_Final] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_FINAL] = ACTIONS(2994), - [anon_sym_For] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2994), - [anon_sym_FOR] = ACTIONS(2994), - [anon_sym_Function] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_FUNCTION] = ACTIONS(2994), - [anon_sym_If] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_IF] = ACTIONS(2994), - [anon_sym_Import] = ACTIONS(2994), - [anon_sym_import] = ACTIONS(2994), - [anon_sym_IMPORT] = ACTIONS(2994), - [anon_sym_Include] = ACTIONS(2994), - [anon_sym_include] = ACTIONS(2994), - [anon_sym_INCLUDE] = ACTIONS(2994), - [anon_sym_Interface] = ACTIONS(2994), - [anon_sym_interface] = ACTIONS(2994), - [anon_sym_INTERFACE] = ACTIONS(2994), - [anon_sym_New] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2994), - [anon_sym_NEW] = ACTIONS(2994), - [anon_sym_Package] = ACTIONS(2994), - [anon_sym_package] = ACTIONS(2994), - [anon_sym_PACKAGE] = ACTIONS(2994), - [anon_sym_Private] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_PRIVATE] = ACTIONS(2994), - [anon_sym_Property] = ACTIONS(2994), - [anon_sym_property] = ACTIONS(2994), - [anon_sym_PROPERTY] = ACTIONS(2994), - [anon_sym_Public] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_PUBLIC] = ACTIONS(2994), - [anon_sym_Remote] = ACTIONS(2994), - [anon_sym_remote] = ACTIONS(2994), - [anon_sym_REMOTE] = ACTIONS(2994), - [anon_sym_Return] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_RETURN] = ACTIONS(2994), - [anon_sym_Static] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2994), - [anon_sym_STATIC] = ACTIONS(2994), - [anon_sym_Switch] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2994), - [anon_sym_SWITCH] = ACTIONS(2994), - [anon_sym_Throw] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_THROW] = ACTIONS(2994), - [anon_sym_Try] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_TRY] = ACTIONS(2994), - [anon_sym_Var] = ACTIONS(2994), - [anon_sym_var] = ACTIONS(2994), - [anon_sym_VAR] = ACTIONS(2994), - [anon_sym_While] = ACTIONS(2994), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_WHILE] = ACTIONS(2994), - [anon_sym_With] = ACTIONS(2994), - [anon_sym_with] = ACTIONS(2994), - [anon_sym_WITH] = ACTIONS(2994), - [sym_cf_comment] = ACTIONS(2992), - [sym__java_block_open] = ACTIONS(2992), - [sym__static_type_prefix] = ACTIONS(2992), - }, - [STATE(678)] = { - [ts_builtin_sym_end] = ACTIONS(2996), - [sym_identifier] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_Query] = ACTIONS(2998), - [anon_sym_query] = ACTIONS(2998), - [anon_sym_QUERY] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2996), - [aux_sym_unary_operator_token1] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2998), - [aux_sym_number_token2] = ACTIONS(2996), - [anon_sym_This] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_THIS] = ACTIONS(2998), - [anon_sym_Super] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_SUPER] = ACTIONS(2998), - [anon_sym_True] = ACTIONS(2998), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_TRUE] = ACTIONS(2998), - [anon_sym_False] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_FALSE] = ACTIONS(2998), - [anon_sym_Null] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_NULL] = ACTIONS(2998), - [anon_sym_Undefined] = ACTIONS(2998), - [anon_sym_undefined] = ACTIONS(2998), - [anon_sym_UNDEFINED] = ACTIONS(2998), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_POUND] = ACTIONS(2998), - [sym_hash_empty] = ACTIONS(2996), - [anon_sym_export] = ACTIONS(2998), - [anon_sym_QueryExecute] = ACTIONS(2998), - [anon_sym_queryexecute] = ACTIONS(2998), - [anon_sym_QUERYEXECUTE] = ACTIONS(2998), - [anon_sym_queryExecute] = ACTIONS(2998), - [anon_sym_BQUOTE] = ACTIONS(2998), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2996), - [anon_sym_Abstract] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_ABSTRACT] = ACTIONS(2998), - [anon_sym_Break] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_BREAK] = ACTIONS(2998), - [anon_sym_Case] = ACTIONS(2998), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_CASE] = ACTIONS(2998), - [anon_sym_Component] = ACTIONS(2998), - [anon_sym_component] = ACTIONS(2998), - [anon_sym_COMPONENT] = ACTIONS(2998), - [anon_sym_Continue] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_CONTINUE] = ACTIONS(2998), - [anon_sym_Debugger] = ACTIONS(2998), - [anon_sym_debugger] = ACTIONS(2998), - [anon_sym_DEBUGGER] = ACTIONS(2998), - [anon_sym_Default] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_DEFAULT] = ACTIONS(2998), - [anon_sym_Do] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_DO] = ACTIONS(2998), - [anon_sym_Else] = ACTIONS(2998), - [anon_sym_else] = ACTIONS(2998), - [anon_sym_ELSE] = ACTIONS(2998), - [anon_sym_Final] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_FINAL] = ACTIONS(2998), - [anon_sym_For] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_FOR] = ACTIONS(2998), - [anon_sym_Function] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_FUNCTION] = ACTIONS(2998), - [anon_sym_If] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_IF] = ACTIONS(2998), - [anon_sym_Import] = ACTIONS(2998), - [anon_sym_import] = ACTIONS(2998), - [anon_sym_IMPORT] = ACTIONS(2998), - [anon_sym_Include] = ACTIONS(2998), - [anon_sym_include] = ACTIONS(2998), - [anon_sym_INCLUDE] = ACTIONS(2998), - [anon_sym_Interface] = ACTIONS(2998), - [anon_sym_interface] = ACTIONS(2998), - [anon_sym_INTERFACE] = ACTIONS(2998), - [anon_sym_New] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_NEW] = ACTIONS(2998), - [anon_sym_Package] = ACTIONS(2998), - [anon_sym_package] = ACTIONS(2998), - [anon_sym_PACKAGE] = ACTIONS(2998), - [anon_sym_Private] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_PRIVATE] = ACTIONS(2998), - [anon_sym_Property] = ACTIONS(2998), - [anon_sym_property] = ACTIONS(2998), - [anon_sym_PROPERTY] = ACTIONS(2998), - [anon_sym_Public] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_PUBLIC] = ACTIONS(2998), - [anon_sym_Remote] = ACTIONS(2998), - [anon_sym_remote] = ACTIONS(2998), - [anon_sym_REMOTE] = ACTIONS(2998), - [anon_sym_Return] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_RETURN] = ACTIONS(2998), - [anon_sym_Static] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(2998), - [anon_sym_STATIC] = ACTIONS(2998), - [anon_sym_Switch] = ACTIONS(2998), - [anon_sym_switch] = ACTIONS(2998), - [anon_sym_SWITCH] = ACTIONS(2998), - [anon_sym_Throw] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_THROW] = ACTIONS(2998), - [anon_sym_Try] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_TRY] = ACTIONS(2998), - [anon_sym_Var] = ACTIONS(2998), - [anon_sym_var] = ACTIONS(2998), - [anon_sym_VAR] = ACTIONS(2998), - [anon_sym_While] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_WHILE] = ACTIONS(2998), - [anon_sym_With] = ACTIONS(2998), - [anon_sym_with] = ACTIONS(2998), - [anon_sym_WITH] = ACTIONS(2998), - [sym_cf_comment] = ACTIONS(2996), - [sym__java_block_open] = ACTIONS(2996), - [sym__static_type_prefix] = ACTIONS(2996), - }, [STATE(679)] = { - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3000), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_Query] = ACTIONS(3002), - [anon_sym_query] = ACTIONS(3002), - [anon_sym_QUERY] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3000), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_unary_operator_token1] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3000), - [anon_sym_DASH_DASH] = ACTIONS(3000), - [anon_sym_DQUOTE] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3002), - [aux_sym_number_token2] = ACTIONS(3000), - [anon_sym_This] = ACTIONS(3002), - [anon_sym_this] = ACTIONS(3002), - [anon_sym_THIS] = ACTIONS(3002), - [anon_sym_Super] = ACTIONS(3002), - [anon_sym_super] = ACTIONS(3002), - [anon_sym_SUPER] = ACTIONS(3002), - [anon_sym_True] = ACTIONS(3002), - [anon_sym_true] = ACTIONS(3002), - [anon_sym_TRUE] = ACTIONS(3002), - [anon_sym_False] = ACTIONS(3002), - [anon_sym_false] = ACTIONS(3002), - [anon_sym_FALSE] = ACTIONS(3002), - [anon_sym_Null] = ACTIONS(3002), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_NULL] = ACTIONS(3002), - [anon_sym_Undefined] = ACTIONS(3002), - [anon_sym_undefined] = ACTIONS(3002), - [anon_sym_UNDEFINED] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3002), - [sym_hash_empty] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_QueryExecute] = ACTIONS(3002), - [anon_sym_queryexecute] = ACTIONS(3002), - [anon_sym_QUERYEXECUTE] = ACTIONS(3002), - [anon_sym_queryExecute] = ACTIONS(3002), - [anon_sym_BQUOTE] = ACTIONS(3002), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3000), - [anon_sym_Abstract] = ACTIONS(3002), - [anon_sym_abstract] = ACTIONS(3002), - [anon_sym_ABSTRACT] = ACTIONS(3002), - [anon_sym_Break] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_BREAK] = ACTIONS(3002), - [anon_sym_Case] = ACTIONS(3002), - [anon_sym_case] = ACTIONS(3002), - [anon_sym_CASE] = ACTIONS(3002), - [anon_sym_Component] = ACTIONS(3002), - [anon_sym_component] = ACTIONS(3002), - [anon_sym_COMPONENT] = ACTIONS(3002), - [anon_sym_Continue] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_CONTINUE] = ACTIONS(3002), - [anon_sym_Debugger] = ACTIONS(3002), - [anon_sym_debugger] = ACTIONS(3002), - [anon_sym_DEBUGGER] = ACTIONS(3002), - [anon_sym_Default] = ACTIONS(3002), - [anon_sym_default] = ACTIONS(3002), - [anon_sym_DEFAULT] = ACTIONS(3002), - [anon_sym_Do] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_DO] = ACTIONS(3002), - [anon_sym_Else] = ACTIONS(3002), - [anon_sym_else] = ACTIONS(3002), - [anon_sym_ELSE] = ACTIONS(3002), - [anon_sym_Final] = ACTIONS(3002), - [anon_sym_final] = ACTIONS(3002), - [anon_sym_FINAL] = ACTIONS(3002), - [anon_sym_For] = ACTIONS(3002), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_FOR] = ACTIONS(3002), - [anon_sym_Function] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_FUNCTION] = ACTIONS(3002), - [anon_sym_If] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_IF] = ACTIONS(3002), - [anon_sym_Import] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(3002), - [anon_sym_IMPORT] = ACTIONS(3002), - [anon_sym_Include] = ACTIONS(3002), - [anon_sym_include] = ACTIONS(3002), - [anon_sym_INCLUDE] = ACTIONS(3002), - [anon_sym_Interface] = ACTIONS(3002), - [anon_sym_interface] = ACTIONS(3002), - [anon_sym_INTERFACE] = ACTIONS(3002), - [anon_sym_New] = ACTIONS(3002), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_NEW] = ACTIONS(3002), - [anon_sym_Package] = ACTIONS(3002), - [anon_sym_package] = ACTIONS(3002), - [anon_sym_PACKAGE] = ACTIONS(3002), - [anon_sym_Private] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_PRIVATE] = ACTIONS(3002), - [anon_sym_Property] = ACTIONS(3002), - [anon_sym_property] = ACTIONS(3002), - [anon_sym_PROPERTY] = ACTIONS(3002), - [anon_sym_Public] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_PUBLIC] = ACTIONS(3002), - [anon_sym_Remote] = ACTIONS(3002), - [anon_sym_remote] = ACTIONS(3002), - [anon_sym_REMOTE] = ACTIONS(3002), - [anon_sym_Return] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_RETURN] = ACTIONS(3002), - [anon_sym_Static] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_STATIC] = ACTIONS(3002), - [anon_sym_Switch] = ACTIONS(3002), - [anon_sym_switch] = ACTIONS(3002), - [anon_sym_SWITCH] = ACTIONS(3002), - [anon_sym_Throw] = ACTIONS(3002), - [anon_sym_throw] = ACTIONS(3002), - [anon_sym_THROW] = ACTIONS(3002), - [anon_sym_Try] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_TRY] = ACTIONS(3002), - [anon_sym_Var] = ACTIONS(3002), - [anon_sym_var] = ACTIONS(3002), - [anon_sym_VAR] = ACTIONS(3002), - [anon_sym_While] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_WHILE] = ACTIONS(3002), - [anon_sym_With] = ACTIONS(3002), - [anon_sym_with] = ACTIONS(3002), - [anon_sym_WITH] = ACTIONS(3002), - [sym_cf_comment] = ACTIONS(3000), - [sym__java_block_open] = ACTIONS(3000), - [sym__static_type_prefix] = ACTIONS(3000), + [sym_arguments] = STATE(672), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2256), + [anon_sym_query] = ACTIONS(2256), + [anon_sym_QUERY] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2996), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2260), + [aux_sym_unary_operator_token1] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2256), + [aux_sym_number_token2] = ACTIONS(2256), + [anon_sym_This] = ACTIONS(2256), + [anon_sym_this] = ACTIONS(2256), + [anon_sym_THIS] = ACTIONS(2256), + [anon_sym_Super] = ACTIONS(2256), + [anon_sym_super] = ACTIONS(2256), + [anon_sym_SUPER] = ACTIONS(2256), + [anon_sym_True] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_TRUE] = ACTIONS(2256), + [anon_sym_False] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_FALSE] = ACTIONS(2256), + [anon_sym_Null] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_Undefined] = ACTIONS(2256), + [anon_sym_undefined] = ACTIONS(2256), + [anon_sym_UNDEFINED] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [sym_hash_empty] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_QueryExecute] = ACTIONS(2256), + [anon_sym_queryexecute] = ACTIONS(2256), + [anon_sym_QUERYEXECUTE] = ACTIONS(2256), + [anon_sym_queryExecute] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2260), + [anon_sym_Abstract] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_ABSTRACT] = ACTIONS(2256), + [anon_sym_Component] = ACTIONS(2256), + [anon_sym_component] = ACTIONS(2256), + [anon_sym_COMPONENT] = ACTIONS(2256), + [anon_sym_Debugger] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_DEBUGGER] = ACTIONS(2256), + [anon_sym_Final] = ACTIONS(2256), + [anon_sym_final] = ACTIONS(2256), + [anon_sym_FINAL] = ACTIONS(2256), + [anon_sym_Function] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_FUNCTION] = ACTIONS(2256), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_Include] = ACTIONS(2256), + [anon_sym_include] = ACTIONS(2256), + [anon_sym_INCLUDE] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [anon_sym_New] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_NEW] = ACTIONS(2256), + [anon_sym_Package] = ACTIONS(2256), + [anon_sym_package] = ACTIONS(2256), + [anon_sym_PACKAGE] = ACTIONS(2256), + [anon_sym_Private] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_PRIVATE] = ACTIONS(2256), + [anon_sym_Public] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_PUBLIC] = ACTIONS(2256), + [anon_sym_Remote] = ACTIONS(2256), + [anon_sym_remote] = ACTIONS(2256), + [anon_sym_REMOTE] = ACTIONS(2256), + [anon_sym_Static] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_STATIC] = ACTIONS(2256), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym__java_block_open] = ACTIONS(2260), + [sym__static_type_prefix] = ACTIONS(2260), }, [STATE(680)] = { - [ts_builtin_sym_end] = ACTIONS(3004), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_Query] = ACTIONS(3006), - [anon_sym_query] = ACTIONS(3006), - [anon_sym_QUERY] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_SLASH] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_unary_operator_token1] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3006), - [aux_sym_number_token2] = ACTIONS(3004), - [anon_sym_This] = ACTIONS(3006), - [anon_sym_this] = ACTIONS(3006), - [anon_sym_THIS] = ACTIONS(3006), - [anon_sym_Super] = ACTIONS(3006), - [anon_sym_super] = ACTIONS(3006), - [anon_sym_SUPER] = ACTIONS(3006), - [anon_sym_True] = ACTIONS(3006), - [anon_sym_true] = ACTIONS(3006), - [anon_sym_TRUE] = ACTIONS(3006), - [anon_sym_False] = ACTIONS(3006), - [anon_sym_false] = ACTIONS(3006), - [anon_sym_FALSE] = ACTIONS(3006), - [anon_sym_Null] = ACTIONS(3006), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_NULL] = ACTIONS(3006), - [anon_sym_Undefined] = ACTIONS(3006), - [anon_sym_undefined] = ACTIONS(3006), - [anon_sym_UNDEFINED] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3006), - [sym_hash_empty] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), - [anon_sym_QueryExecute] = ACTIONS(3006), - [anon_sym_queryexecute] = ACTIONS(3006), - [anon_sym_QUERYEXECUTE] = ACTIONS(3006), - [anon_sym_queryExecute] = ACTIONS(3006), - [anon_sym_BQUOTE] = ACTIONS(3006), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3004), - [anon_sym_Abstract] = ACTIONS(3006), - [anon_sym_abstract] = ACTIONS(3006), - [anon_sym_ABSTRACT] = ACTIONS(3006), - [anon_sym_Break] = ACTIONS(3006), - [anon_sym_break] = ACTIONS(3006), - [anon_sym_BREAK] = ACTIONS(3006), - [anon_sym_Case] = ACTIONS(3006), - [anon_sym_case] = ACTIONS(3006), - [anon_sym_CASE] = ACTIONS(3006), - [anon_sym_Component] = ACTIONS(3006), - [anon_sym_component] = ACTIONS(3006), - [anon_sym_COMPONENT] = ACTIONS(3006), - [anon_sym_Continue] = ACTIONS(3006), - [anon_sym_continue] = ACTIONS(3006), - [anon_sym_CONTINUE] = ACTIONS(3006), - [anon_sym_Debugger] = ACTIONS(3006), - [anon_sym_debugger] = ACTIONS(3006), - [anon_sym_DEBUGGER] = ACTIONS(3006), - [anon_sym_Default] = ACTIONS(3006), - [anon_sym_default] = ACTIONS(3006), - [anon_sym_DEFAULT] = ACTIONS(3006), - [anon_sym_Do] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_DO] = ACTIONS(3006), - [anon_sym_Else] = ACTIONS(3006), - [anon_sym_else] = ACTIONS(3006), - [anon_sym_ELSE] = ACTIONS(3006), - [anon_sym_Final] = ACTIONS(3006), - [anon_sym_final] = ACTIONS(3006), - [anon_sym_FINAL] = ACTIONS(3006), - [anon_sym_For] = ACTIONS(3006), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_FOR] = ACTIONS(3006), - [anon_sym_Function] = ACTIONS(3006), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_FUNCTION] = ACTIONS(3006), - [anon_sym_If] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_IF] = ACTIONS(3006), - [anon_sym_Import] = ACTIONS(3006), - [anon_sym_import] = ACTIONS(3006), - [anon_sym_IMPORT] = ACTIONS(3006), - [anon_sym_Include] = ACTIONS(3006), - [anon_sym_include] = ACTIONS(3006), - [anon_sym_INCLUDE] = ACTIONS(3006), - [anon_sym_Interface] = ACTIONS(3006), - [anon_sym_interface] = ACTIONS(3006), - [anon_sym_INTERFACE] = ACTIONS(3006), - [anon_sym_New] = ACTIONS(3006), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_NEW] = ACTIONS(3006), - [anon_sym_Package] = ACTIONS(3006), - [anon_sym_package] = ACTIONS(3006), - [anon_sym_PACKAGE] = ACTIONS(3006), - [anon_sym_Private] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_PRIVATE] = ACTIONS(3006), - [anon_sym_Property] = ACTIONS(3006), - [anon_sym_property] = ACTIONS(3006), - [anon_sym_PROPERTY] = ACTIONS(3006), - [anon_sym_Public] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_PUBLIC] = ACTIONS(3006), - [anon_sym_Remote] = ACTIONS(3006), - [anon_sym_remote] = ACTIONS(3006), - [anon_sym_REMOTE] = ACTIONS(3006), - [anon_sym_Return] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_RETURN] = ACTIONS(3006), - [anon_sym_Static] = ACTIONS(3006), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_STATIC] = ACTIONS(3006), - [anon_sym_Switch] = ACTIONS(3006), - [anon_sym_switch] = ACTIONS(3006), - [anon_sym_SWITCH] = ACTIONS(3006), - [anon_sym_Throw] = ACTIONS(3006), - [anon_sym_throw] = ACTIONS(3006), - [anon_sym_THROW] = ACTIONS(3006), - [anon_sym_Try] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_TRY] = ACTIONS(3006), - [anon_sym_Var] = ACTIONS(3006), - [anon_sym_var] = ACTIONS(3006), - [anon_sym_VAR] = ACTIONS(3006), - [anon_sym_While] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_WHILE] = ACTIONS(3006), - [anon_sym_With] = ACTIONS(3006), - [anon_sym_with] = ACTIONS(3006), - [anon_sym_WITH] = ACTIONS(3006), - [sym_cf_comment] = ACTIONS(3004), - [sym__java_block_open] = ACTIONS(3004), - [sym__static_type_prefix] = ACTIONS(3004), + [sym_arguments] = STATE(672), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2256), + [anon_sym_query] = ACTIONS(2256), + [anon_sym_QUERY] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(2996), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2289), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2260), + [aux_sym_unary_operator_token1] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2256), + [aux_sym_number_token2] = ACTIONS(2256), + [anon_sym_This] = ACTIONS(2256), + [anon_sym_this] = ACTIONS(2256), + [anon_sym_THIS] = ACTIONS(2256), + [anon_sym_Super] = ACTIONS(2256), + [anon_sym_super] = ACTIONS(2256), + [anon_sym_SUPER] = ACTIONS(2256), + [anon_sym_True] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_TRUE] = ACTIONS(2256), + [anon_sym_False] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_FALSE] = ACTIONS(2256), + [anon_sym_Null] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_Undefined] = ACTIONS(2256), + [anon_sym_undefined] = ACTIONS(2256), + [anon_sym_UNDEFINED] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [sym_hash_empty] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_QueryExecute] = ACTIONS(2256), + [anon_sym_queryexecute] = ACTIONS(2256), + [anon_sym_QUERYEXECUTE] = ACTIONS(2256), + [anon_sym_queryExecute] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2260), + [anon_sym_Abstract] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_ABSTRACT] = ACTIONS(2256), + [anon_sym_Component] = ACTIONS(2256), + [anon_sym_component] = ACTIONS(2256), + [anon_sym_COMPONENT] = ACTIONS(2256), + [anon_sym_Debugger] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_DEBUGGER] = ACTIONS(2256), + [anon_sym_Final] = ACTIONS(2256), + [anon_sym_final] = ACTIONS(2256), + [anon_sym_FINAL] = ACTIONS(2256), + [anon_sym_Function] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_FUNCTION] = ACTIONS(2256), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_Include] = ACTIONS(2256), + [anon_sym_include] = ACTIONS(2256), + [anon_sym_INCLUDE] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [anon_sym_New] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_NEW] = ACTIONS(2256), + [anon_sym_Package] = ACTIONS(2256), + [anon_sym_package] = ACTIONS(2256), + [anon_sym_PACKAGE] = ACTIONS(2256), + [anon_sym_Private] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_PRIVATE] = ACTIONS(2256), + [anon_sym_Public] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_PUBLIC] = ACTIONS(2256), + [anon_sym_Remote] = ACTIONS(2256), + [anon_sym_remote] = ACTIONS(2256), + [anon_sym_REMOTE] = ACTIONS(2256), + [anon_sym_Static] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_STATIC] = ACTIONS(2256), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + [sym__java_block_open] = ACTIONS(2260), + [sym__static_type_prefix] = ACTIONS(2260), }, [STATE(681)] = { - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_Query] = ACTIONS(2316), - [anon_sym_query] = ACTIONS(2316), - [anon_sym_QUERY] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_BANG] = ACTIONS(2318), - [anon_sym_TILDE] = ACTIONS(2318), - [aux_sym_unary_operator_token1] = ACTIONS(2316), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_DQUOTE] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2318), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2316), - [aux_sym_number_token2] = ACTIONS(2318), - [anon_sym_This] = ACTIONS(2316), - [anon_sym_this] = ACTIONS(2316), - [anon_sym_THIS] = ACTIONS(2316), - [anon_sym_Super] = ACTIONS(2316), - [anon_sym_super] = ACTIONS(2316), - [anon_sym_SUPER] = ACTIONS(2316), - [anon_sym_True] = ACTIONS(2316), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_TRUE] = ACTIONS(2316), - [anon_sym_False] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [anon_sym_FALSE] = ACTIONS(2316), - [anon_sym_Null] = ACTIONS(2316), - [anon_sym_null] = ACTIONS(2316), - [anon_sym_NULL] = ACTIONS(2316), - [anon_sym_Undefined] = ACTIONS(2316), - [anon_sym_undefined] = ACTIONS(2316), - [anon_sym_UNDEFINED] = ACTIONS(2316), - [anon_sym_get] = ACTIONS(2316), - [anon_sym_set] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2316), - [sym_hash_empty] = ACTIONS(2318), - [anon_sym_export] = ACTIONS(2316), - [anon_sym_QueryExecute] = ACTIONS(2316), - [anon_sym_queryexecute] = ACTIONS(2316), - [anon_sym_QUERYEXECUTE] = ACTIONS(2316), - [anon_sym_queryExecute] = ACTIONS(2316), - [anon_sym_BQUOTE] = ACTIONS(2316), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2318), - [anon_sym_Abstract] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2316), - [anon_sym_ABSTRACT] = ACTIONS(2316), - [anon_sym_Break] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_BREAK] = ACTIONS(2316), - [anon_sym_Case] = ACTIONS(2316), - [anon_sym_case] = ACTIONS(2316), - [anon_sym_CASE] = ACTIONS(2316), - [anon_sym_Component] = ACTIONS(2316), - [anon_sym_component] = ACTIONS(2316), - [anon_sym_COMPONENT] = ACTIONS(2316), - [anon_sym_Continue] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_CONTINUE] = ACTIONS(2316), - [anon_sym_Debugger] = ACTIONS(2316), - [anon_sym_debugger] = ACTIONS(2316), - [anon_sym_DEBUGGER] = ACTIONS(2316), - [anon_sym_Default] = ACTIONS(2316), - [anon_sym_default] = ACTIONS(2316), - [anon_sym_DEFAULT] = ACTIONS(2316), - [anon_sym_Do] = ACTIONS(2316), - [anon_sym_do] = ACTIONS(2316), - [anon_sym_DO] = ACTIONS(2316), - [anon_sym_Else] = ACTIONS(2316), - [anon_sym_else] = ACTIONS(2316), - [anon_sym_ELSE] = ACTIONS(2316), - [anon_sym_Final] = ACTIONS(2316), - [anon_sym_final] = ACTIONS(2316), - [anon_sym_FINAL] = ACTIONS(2316), - [anon_sym_For] = ACTIONS(2316), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_FOR] = ACTIONS(2316), - [anon_sym_Function] = ACTIONS(2316), - [anon_sym_function] = ACTIONS(2316), - [anon_sym_FUNCTION] = ACTIONS(2316), - [anon_sym_If] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_IF] = ACTIONS(2316), - [anon_sym_Import] = ACTIONS(2316), - [anon_sym_import] = ACTIONS(2316), - [anon_sym_IMPORT] = ACTIONS(2316), - [anon_sym_Include] = ACTIONS(2316), - [anon_sym_include] = ACTIONS(2316), - [anon_sym_INCLUDE] = ACTIONS(2316), - [anon_sym_Interface] = ACTIONS(2316), - [anon_sym_interface] = ACTIONS(2316), - [anon_sym_INTERFACE] = ACTIONS(2316), - [anon_sym_New] = ACTIONS(2316), - [anon_sym_new] = ACTIONS(2316), - [anon_sym_NEW] = ACTIONS(2316), - [anon_sym_Package] = ACTIONS(2316), - [anon_sym_package] = ACTIONS(2316), - [anon_sym_PACKAGE] = ACTIONS(2316), - [anon_sym_Private] = ACTIONS(2316), - [anon_sym_private] = ACTIONS(2316), - [anon_sym_PRIVATE] = ACTIONS(2316), - [anon_sym_Property] = ACTIONS(2316), - [anon_sym_property] = ACTIONS(2316), - [anon_sym_PROPERTY] = ACTIONS(2316), - [anon_sym_Public] = ACTIONS(2316), - [anon_sym_public] = ACTIONS(2316), - [anon_sym_PUBLIC] = ACTIONS(2316), - [anon_sym_Remote] = ACTIONS(2316), - [anon_sym_remote] = ACTIONS(2316), - [anon_sym_REMOTE] = ACTIONS(2316), - [anon_sym_Return] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_RETURN] = ACTIONS(2316), - [anon_sym_Static] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_STATIC] = ACTIONS(2316), - [anon_sym_Switch] = ACTIONS(2316), - [anon_sym_switch] = ACTIONS(2316), - [anon_sym_SWITCH] = ACTIONS(2316), - [anon_sym_Throw] = ACTIONS(2316), - [anon_sym_throw] = ACTIONS(2316), - [anon_sym_THROW] = ACTIONS(2316), - [anon_sym_Try] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(2316), - [anon_sym_TRY] = ACTIONS(2316), - [anon_sym_Var] = ACTIONS(2316), - [anon_sym_var] = ACTIONS(2316), - [anon_sym_VAR] = ACTIONS(2316), - [anon_sym_While] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_WHILE] = ACTIONS(2316), - [anon_sym_With] = ACTIONS(2316), - [anon_sym_with] = ACTIONS(2316), - [anon_sym_WITH] = ACTIONS(2316), - [sym_cf_comment] = ACTIONS(2318), - [sym__java_block_open] = ACTIONS(2318), - [sym__static_type_prefix] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_Query] = ACTIONS(2256), + [anon_sym_query] = ACTIONS(2256), + [anon_sym_QUERY] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(2286), + [sym_static_chain] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2289), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2260), + [aux_sym_unary_operator_token1] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2256), + [aux_sym_number_token2] = ACTIONS(2256), + [anon_sym_This] = ACTIONS(2256), + [anon_sym_this] = ACTIONS(2256), + [anon_sym_THIS] = ACTIONS(2256), + [anon_sym_Super] = ACTIONS(2256), + [anon_sym_super] = ACTIONS(2256), + [anon_sym_SUPER] = ACTIONS(2256), + [anon_sym_True] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_TRUE] = ACTIONS(2256), + [anon_sym_False] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_FALSE] = ACTIONS(2256), + [anon_sym_Null] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_Undefined] = ACTIONS(2256), + [anon_sym_undefined] = ACTIONS(2256), + [anon_sym_UNDEFINED] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [sym_hash_empty] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_QueryExecute] = ACTIONS(2256), + [anon_sym_queryexecute] = ACTIONS(2256), + [anon_sym_QUERYEXECUTE] = ACTIONS(2256), + [anon_sym_queryExecute] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2260), + [anon_sym_Abstract] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_ABSTRACT] = ACTIONS(2256), + [anon_sym_Component] = ACTIONS(2256), + [anon_sym_component] = ACTIONS(2256), + [anon_sym_COMPONENT] = ACTIONS(2256), + [anon_sym_Debugger] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_DEBUGGER] = ACTIONS(2256), + [anon_sym_Final] = ACTIONS(2256), + [anon_sym_final] = ACTIONS(2256), + [anon_sym_FINAL] = ACTIONS(2256), + [anon_sym_Function] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_FUNCTION] = ACTIONS(2256), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_Include] = ACTIONS(2256), + [anon_sym_include] = ACTIONS(2256), + [anon_sym_INCLUDE] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [anon_sym_New] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_NEW] = ACTIONS(2256), + [anon_sym_Package] = ACTIONS(2256), + [anon_sym_package] = ACTIONS(2256), + [anon_sym_PACKAGE] = ACTIONS(2256), + [anon_sym_Private] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_PRIVATE] = ACTIONS(2256), + [anon_sym_Public] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_PUBLIC] = ACTIONS(2256), + [anon_sym_Remote] = ACTIONS(2256), + [anon_sym_remote] = ACTIONS(2256), + [anon_sym_REMOTE] = ACTIONS(2256), + [anon_sym_Static] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_STATIC] = ACTIONS(2256), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + [sym__java_block_open] = ACTIONS(2260), + [sym__static_type_prefix] = ACTIONS(2260), }, [STATE(682)] = { - [ts_builtin_sym_end] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_RBRACE] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_Query] = ACTIONS(3010), - [anon_sym_query] = ACTIONS(3010), - [anon_sym_QUERY] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_unary_operator_token1] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3010), - [aux_sym_number_token2] = ACTIONS(3008), - [anon_sym_This] = ACTIONS(3010), - [anon_sym_this] = ACTIONS(3010), - [anon_sym_THIS] = ACTIONS(3010), - [anon_sym_Super] = ACTIONS(3010), - [anon_sym_super] = ACTIONS(3010), - [anon_sym_SUPER] = ACTIONS(3010), - [anon_sym_True] = ACTIONS(3010), - [anon_sym_true] = ACTIONS(3010), - [anon_sym_TRUE] = ACTIONS(3010), - [anon_sym_False] = ACTIONS(3010), - [anon_sym_false] = ACTIONS(3010), - [anon_sym_FALSE] = ACTIONS(3010), - [anon_sym_Null] = ACTIONS(3010), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_NULL] = ACTIONS(3010), - [anon_sym_Undefined] = ACTIONS(3010), - [anon_sym_undefined] = ACTIONS(3010), - [anon_sym_UNDEFINED] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3010), - [sym_hash_empty] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_QueryExecute] = ACTIONS(3010), - [anon_sym_queryexecute] = ACTIONS(3010), - [anon_sym_QUERYEXECUTE] = ACTIONS(3010), - [anon_sym_queryExecute] = ACTIONS(3010), - [anon_sym_BQUOTE] = ACTIONS(3010), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3008), - [anon_sym_Abstract] = ACTIONS(3010), - [anon_sym_abstract] = ACTIONS(3010), - [anon_sym_ABSTRACT] = ACTIONS(3010), - [anon_sym_Break] = ACTIONS(3010), - [anon_sym_break] = ACTIONS(3010), - [anon_sym_BREAK] = ACTIONS(3010), - [anon_sym_Case] = ACTIONS(3010), - [anon_sym_case] = ACTIONS(3010), - [anon_sym_CASE] = ACTIONS(3010), - [anon_sym_Component] = ACTIONS(3010), - [anon_sym_component] = ACTIONS(3010), - [anon_sym_COMPONENT] = ACTIONS(3010), - [anon_sym_Continue] = ACTIONS(3010), - [anon_sym_continue] = ACTIONS(3010), - [anon_sym_CONTINUE] = ACTIONS(3010), - [anon_sym_Debugger] = ACTIONS(3010), - [anon_sym_debugger] = ACTIONS(3010), - [anon_sym_DEBUGGER] = ACTIONS(3010), - [anon_sym_Default] = ACTIONS(3010), - [anon_sym_default] = ACTIONS(3010), - [anon_sym_DEFAULT] = ACTIONS(3010), - [anon_sym_Do] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_DO] = ACTIONS(3010), - [anon_sym_Else] = ACTIONS(3010), - [anon_sym_else] = ACTIONS(3010), - [anon_sym_ELSE] = ACTIONS(3010), - [anon_sym_Final] = ACTIONS(3010), - [anon_sym_final] = ACTIONS(3010), - [anon_sym_FINAL] = ACTIONS(3010), - [anon_sym_For] = ACTIONS(3010), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_FOR] = ACTIONS(3010), - [anon_sym_Function] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_FUNCTION] = ACTIONS(3010), - [anon_sym_If] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_IF] = ACTIONS(3010), - [anon_sym_Import] = ACTIONS(3010), - [anon_sym_import] = ACTIONS(3010), - [anon_sym_IMPORT] = ACTIONS(3010), - [anon_sym_Include] = ACTIONS(3010), - [anon_sym_include] = ACTIONS(3010), - [anon_sym_INCLUDE] = ACTIONS(3010), - [anon_sym_Interface] = ACTIONS(3010), - [anon_sym_interface] = ACTIONS(3010), - [anon_sym_INTERFACE] = ACTIONS(3010), - [anon_sym_New] = ACTIONS(3010), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_NEW] = ACTIONS(3010), - [anon_sym_Package] = ACTIONS(3010), - [anon_sym_package] = ACTIONS(3010), - [anon_sym_PACKAGE] = ACTIONS(3010), - [anon_sym_Private] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_PRIVATE] = ACTIONS(3010), - [anon_sym_Property] = ACTIONS(3010), - [anon_sym_property] = ACTIONS(3010), - [anon_sym_PROPERTY] = ACTIONS(3010), - [anon_sym_Public] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_PUBLIC] = ACTIONS(3010), - [anon_sym_Remote] = ACTIONS(3010), - [anon_sym_remote] = ACTIONS(3010), - [anon_sym_REMOTE] = ACTIONS(3010), - [anon_sym_Return] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_RETURN] = ACTIONS(3010), - [anon_sym_Static] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_STATIC] = ACTIONS(3010), - [anon_sym_Switch] = ACTIONS(3010), - [anon_sym_switch] = ACTIONS(3010), - [anon_sym_SWITCH] = ACTIONS(3010), - [anon_sym_Throw] = ACTIONS(3010), - [anon_sym_throw] = ACTIONS(3010), - [anon_sym_THROW] = ACTIONS(3010), - [anon_sym_Try] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_TRY] = ACTIONS(3010), - [anon_sym_Var] = ACTIONS(3010), - [anon_sym_var] = ACTIONS(3010), - [anon_sym_VAR] = ACTIONS(3010), - [anon_sym_While] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_WHILE] = ACTIONS(3010), - [anon_sym_With] = ACTIONS(3010), - [anon_sym_with] = ACTIONS(3010), - [anon_sym_WITH] = ACTIONS(3010), - [sym_cf_comment] = ACTIONS(3008), - [sym__java_block_open] = ACTIONS(3008), - [sym__static_type_prefix] = ACTIONS(3008), + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1596), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Break] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_BREAK] = ACTIONS(1598), + [anon_sym_Case] = ACTIONS(1598), + [anon_sym_case] = ACTIONS(1598), + [anon_sym_CASE] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Continue] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_CONTINUE] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Default] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_DEFAULT] = ACTIONS(1598), + [anon_sym_Do] = ACTIONS(1598), + [anon_sym_do] = ACTIONS(1598), + [anon_sym_DO] = ACTIONS(1598), + [anon_sym_Else] = ACTIONS(1598), + [anon_sym_else] = ACTIONS(1598), + [anon_sym_ELSE] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_For] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_FOR] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_If] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_IF] = ACTIONS(1598), + [anon_sym_Import] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_IMPORT] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_Interface] = ACTIONS(1598), + [anon_sym_interface] = ACTIONS(1598), + [anon_sym_INTERFACE] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Property] = ACTIONS(1598), + [anon_sym_property] = ACTIONS(1598), + [anon_sym_PROPERTY] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Return] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_RETURN] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [anon_sym_Switch] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1598), + [anon_sym_SWITCH] = ACTIONS(1598), + [anon_sym_Throw] = ACTIONS(1598), + [anon_sym_throw] = ACTIONS(1598), + [anon_sym_THROW] = ACTIONS(1598), + [anon_sym_Try] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_TRY] = ACTIONS(1598), + [anon_sym_Var] = ACTIONS(1598), + [anon_sym_var] = ACTIONS(1598), + [anon_sym_VAR] = ACTIONS(1598), + [anon_sym_While] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_WHILE] = ACTIONS(1598), + [anon_sym_With] = ACTIONS(1598), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_WITH] = ACTIONS(1598), + [sym_cf_comment] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), }, [STATE(683)] = { - [ts_builtin_sym_end] = ACTIONS(3012), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_Query] = ACTIONS(3014), - [anon_sym_query] = ACTIONS(3014), - [anon_sym_QUERY] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_unary_operator_token1] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_DQUOTE] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3014), - [aux_sym_number_token2] = ACTIONS(3012), - [anon_sym_This] = ACTIONS(3014), - [anon_sym_this] = ACTIONS(3014), - [anon_sym_THIS] = ACTIONS(3014), - [anon_sym_Super] = ACTIONS(3014), - [anon_sym_super] = ACTIONS(3014), - [anon_sym_SUPER] = ACTIONS(3014), - [anon_sym_True] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3014), - [anon_sym_TRUE] = ACTIONS(3014), - [anon_sym_False] = ACTIONS(3014), - [anon_sym_false] = ACTIONS(3014), - [anon_sym_FALSE] = ACTIONS(3014), - [anon_sym_Null] = ACTIONS(3014), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_NULL] = ACTIONS(3014), - [anon_sym_Undefined] = ACTIONS(3014), - [anon_sym_undefined] = ACTIONS(3014), - [anon_sym_UNDEFINED] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(3014), - [anon_sym_set] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [sym_hash_empty] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3014), - [anon_sym_QueryExecute] = ACTIONS(3014), - [anon_sym_queryexecute] = ACTIONS(3014), - [anon_sym_QUERYEXECUTE] = ACTIONS(3014), - [anon_sym_queryExecute] = ACTIONS(3014), - [anon_sym_BQUOTE] = ACTIONS(3014), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3012), - [anon_sym_Abstract] = ACTIONS(3014), - [anon_sym_abstract] = ACTIONS(3014), - [anon_sym_ABSTRACT] = ACTIONS(3014), - [anon_sym_Break] = ACTIONS(3014), - [anon_sym_break] = ACTIONS(3014), - [anon_sym_BREAK] = ACTIONS(3014), - [anon_sym_Case] = ACTIONS(3014), - [anon_sym_case] = ACTIONS(3014), - [anon_sym_CASE] = ACTIONS(3014), - [anon_sym_Component] = ACTIONS(3014), - [anon_sym_component] = ACTIONS(3014), - [anon_sym_COMPONENT] = ACTIONS(3014), - [anon_sym_Continue] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(3014), - [anon_sym_CONTINUE] = ACTIONS(3014), - [anon_sym_Debugger] = ACTIONS(3014), - [anon_sym_debugger] = ACTIONS(3014), - [anon_sym_DEBUGGER] = ACTIONS(3014), - [anon_sym_Default] = ACTIONS(3014), - [anon_sym_default] = ACTIONS(3014), - [anon_sym_DEFAULT] = ACTIONS(3014), - [anon_sym_Do] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_DO] = ACTIONS(3014), - [anon_sym_Else] = ACTIONS(3014), - [anon_sym_else] = ACTIONS(3014), - [anon_sym_ELSE] = ACTIONS(3014), - [anon_sym_Final] = ACTIONS(3014), - [anon_sym_final] = ACTIONS(3014), - [anon_sym_FINAL] = ACTIONS(3014), - [anon_sym_For] = ACTIONS(3014), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_FOR] = ACTIONS(3014), - [anon_sym_Function] = ACTIONS(3014), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_FUNCTION] = ACTIONS(3014), - [anon_sym_If] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_IF] = ACTIONS(3014), - [anon_sym_Import] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(3014), - [anon_sym_IMPORT] = ACTIONS(3014), - [anon_sym_Include] = ACTIONS(3014), - [anon_sym_include] = ACTIONS(3014), - [anon_sym_INCLUDE] = ACTIONS(3014), - [anon_sym_Interface] = ACTIONS(3014), - [anon_sym_interface] = ACTIONS(3014), - [anon_sym_INTERFACE] = ACTIONS(3014), - [anon_sym_New] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_NEW] = ACTIONS(3014), - [anon_sym_Package] = ACTIONS(3014), - [anon_sym_package] = ACTIONS(3014), - [anon_sym_PACKAGE] = ACTIONS(3014), - [anon_sym_Private] = ACTIONS(3014), - [anon_sym_private] = ACTIONS(3014), - [anon_sym_PRIVATE] = ACTIONS(3014), - [anon_sym_Property] = ACTIONS(3014), - [anon_sym_property] = ACTIONS(3014), - [anon_sym_PROPERTY] = ACTIONS(3014), - [anon_sym_Public] = ACTIONS(3014), - [anon_sym_public] = ACTIONS(3014), - [anon_sym_PUBLIC] = ACTIONS(3014), - [anon_sym_Remote] = ACTIONS(3014), - [anon_sym_remote] = ACTIONS(3014), - [anon_sym_REMOTE] = ACTIONS(3014), - [anon_sym_Return] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_RETURN] = ACTIONS(3014), - [anon_sym_Static] = ACTIONS(3014), - [anon_sym_static] = ACTIONS(3014), - [anon_sym_STATIC] = ACTIONS(3014), - [anon_sym_Switch] = ACTIONS(3014), - [anon_sym_switch] = ACTIONS(3014), - [anon_sym_SWITCH] = ACTIONS(3014), - [anon_sym_Throw] = ACTIONS(3014), - [anon_sym_throw] = ACTIONS(3014), - [anon_sym_THROW] = ACTIONS(3014), - [anon_sym_Try] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_TRY] = ACTIONS(3014), - [anon_sym_Var] = ACTIONS(3014), - [anon_sym_var] = ACTIONS(3014), - [anon_sym_VAR] = ACTIONS(3014), - [anon_sym_While] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_WHILE] = ACTIONS(3014), - [anon_sym_With] = ACTIONS(3014), - [anon_sym_with] = ACTIONS(3014), - [anon_sym_WITH] = ACTIONS(3014), - [sym_cf_comment] = ACTIONS(3012), - [sym__java_block_open] = ACTIONS(3012), - [sym__static_type_prefix] = ACTIONS(3012), + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_Query] = ACTIONS(2232), + [anon_sym_query] = ACTIONS(2232), + [anon_sym_QUERY] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2234), + [aux_sym_unary_operator_token1] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2232), + [aux_sym_number_token2] = ACTIONS(2232), + [anon_sym_This] = ACTIONS(2232), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_THIS] = ACTIONS(2232), + [anon_sym_Super] = ACTIONS(2232), + [anon_sym_super] = ACTIONS(2232), + [anon_sym_SUPER] = ACTIONS(2232), + [anon_sym_True] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_TRUE] = ACTIONS(2232), + [anon_sym_False] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_FALSE] = ACTIONS(2232), + [anon_sym_Null] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [anon_sym_NULL] = ACTIONS(2232), + [anon_sym_Undefined] = ACTIONS(2232), + [anon_sym_undefined] = ACTIONS(2232), + [anon_sym_UNDEFINED] = ACTIONS(2232), + [anon_sym_get] = ACTIONS(2232), + [anon_sym_set] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [sym_hash_empty] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2232), + [anon_sym_QueryExecute] = ACTIONS(2232), + [anon_sym_queryexecute] = ACTIONS(2232), + [anon_sym_QUERYEXECUTE] = ACTIONS(2232), + [anon_sym_queryExecute] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2234), + [anon_sym_Abstract] = ACTIONS(2232), + [anon_sym_abstract] = ACTIONS(2232), + [anon_sym_ABSTRACT] = ACTIONS(2232), + [anon_sym_Component] = ACTIONS(2232), + [anon_sym_component] = ACTIONS(2232), + [anon_sym_COMPONENT] = ACTIONS(2232), + [anon_sym_Debugger] = ACTIONS(2232), + [anon_sym_debugger] = ACTIONS(2232), + [anon_sym_DEBUGGER] = ACTIONS(2232), + [anon_sym_Final] = ACTIONS(2232), + [anon_sym_final] = ACTIONS(2232), + [anon_sym_FINAL] = ACTIONS(2232), + [anon_sym_Function] = ACTIONS(2232), + [anon_sym_function] = ACTIONS(2232), + [anon_sym_FUNCTION] = ACTIONS(2232), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_Include] = ACTIONS(2232), + [anon_sym_include] = ACTIONS(2232), + [anon_sym_INCLUDE] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [anon_sym_New] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_NEW] = ACTIONS(2232), + [anon_sym_Package] = ACTIONS(2232), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_PACKAGE] = ACTIONS(2232), + [anon_sym_Private] = ACTIONS(2232), + [anon_sym_private] = ACTIONS(2232), + [anon_sym_PRIVATE] = ACTIONS(2232), + [anon_sym_Public] = ACTIONS(2232), + [anon_sym_public] = ACTIONS(2232), + [anon_sym_PUBLIC] = ACTIONS(2232), + [anon_sym_Remote] = ACTIONS(2232), + [anon_sym_remote] = ACTIONS(2232), + [anon_sym_REMOTE] = ACTIONS(2232), + [anon_sym_Static] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_STATIC] = ACTIONS(2232), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym__java_block_open] = ACTIONS(2234), + [sym__static_type_prefix] = ACTIONS(2234), }, [STATE(684)] = { - [ts_builtin_sym_end] = ACTIONS(3016), - [sym_identifier] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_RBRACE] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_Query] = ACTIONS(3018), - [anon_sym_query] = ACTIONS(3018), - [anon_sym_QUERY] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_unary_operator_token1] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3016), - [anon_sym_DASH_DASH] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3018), - [aux_sym_number_token2] = ACTIONS(3016), - [anon_sym_This] = ACTIONS(3018), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_THIS] = ACTIONS(3018), - [anon_sym_Super] = ACTIONS(3018), - [anon_sym_super] = ACTIONS(3018), - [anon_sym_SUPER] = ACTIONS(3018), - [anon_sym_True] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_TRUE] = ACTIONS(3018), - [anon_sym_False] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [anon_sym_FALSE] = ACTIONS(3018), - [anon_sym_Null] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_NULL] = ACTIONS(3018), - [anon_sym_Undefined] = ACTIONS(3018), - [anon_sym_undefined] = ACTIONS(3018), - [anon_sym_UNDEFINED] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3018), - [anon_sym_set] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3018), - [sym_hash_empty] = ACTIONS(3016), - [anon_sym_export] = ACTIONS(3018), - [anon_sym_QueryExecute] = ACTIONS(3018), - [anon_sym_queryexecute] = ACTIONS(3018), - [anon_sym_QUERYEXECUTE] = ACTIONS(3018), - [anon_sym_queryExecute] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3016), - [anon_sym_Abstract] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_ABSTRACT] = ACTIONS(3018), - [anon_sym_Break] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_BREAK] = ACTIONS(3018), - [anon_sym_Case] = ACTIONS(3018), - [anon_sym_case] = ACTIONS(3018), - [anon_sym_CASE] = ACTIONS(3018), - [anon_sym_Component] = ACTIONS(3018), - [anon_sym_component] = ACTIONS(3018), - [anon_sym_COMPONENT] = ACTIONS(3018), - [anon_sym_Continue] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_CONTINUE] = ACTIONS(3018), - [anon_sym_Debugger] = ACTIONS(3018), - [anon_sym_debugger] = ACTIONS(3018), - [anon_sym_DEBUGGER] = ACTIONS(3018), - [anon_sym_Default] = ACTIONS(3018), - [anon_sym_default] = ACTIONS(3018), - [anon_sym_DEFAULT] = ACTIONS(3018), - [anon_sym_Do] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_DO] = ACTIONS(3018), - [anon_sym_Else] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_ELSE] = ACTIONS(3018), - [anon_sym_Final] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_FINAL] = ACTIONS(3018), - [anon_sym_For] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_FOR] = ACTIONS(3018), - [anon_sym_Function] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_FUNCTION] = ACTIONS(3018), - [anon_sym_If] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_IF] = ACTIONS(3018), - [anon_sym_Import] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(3018), - [anon_sym_IMPORT] = ACTIONS(3018), - [anon_sym_Include] = ACTIONS(3018), - [anon_sym_include] = ACTIONS(3018), - [anon_sym_INCLUDE] = ACTIONS(3018), - [anon_sym_Interface] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_INTERFACE] = ACTIONS(3018), - [anon_sym_New] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_NEW] = ACTIONS(3018), - [anon_sym_Package] = ACTIONS(3018), - [anon_sym_package] = ACTIONS(3018), - [anon_sym_PACKAGE] = ACTIONS(3018), - [anon_sym_Private] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_PRIVATE] = ACTIONS(3018), - [anon_sym_Property] = ACTIONS(3018), - [anon_sym_property] = ACTIONS(3018), - [anon_sym_PROPERTY] = ACTIONS(3018), - [anon_sym_Public] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_PUBLIC] = ACTIONS(3018), - [anon_sym_Remote] = ACTIONS(3018), - [anon_sym_remote] = ACTIONS(3018), - [anon_sym_REMOTE] = ACTIONS(3018), - [anon_sym_Return] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_RETURN] = ACTIONS(3018), - [anon_sym_Static] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_STATIC] = ACTIONS(3018), - [anon_sym_Switch] = ACTIONS(3018), - [anon_sym_switch] = ACTIONS(3018), - [anon_sym_SWITCH] = ACTIONS(3018), - [anon_sym_Throw] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_THROW] = ACTIONS(3018), - [anon_sym_Try] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_TRY] = ACTIONS(3018), - [anon_sym_Var] = ACTIONS(3018), - [anon_sym_var] = ACTIONS(3018), - [anon_sym_VAR] = ACTIONS(3018), - [anon_sym_While] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_WHILE] = ACTIONS(3018), - [anon_sym_With] = ACTIONS(3018), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_WITH] = ACTIONS(3018), - [sym_cf_comment] = ACTIONS(3016), - [sym__java_block_open] = ACTIONS(3016), - [sym__static_type_prefix] = ACTIONS(3016), + [sym_identifier] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_Query] = ACTIONS(2240), + [anon_sym_query] = ACTIONS(2240), + [anon_sym_QUERY] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2240), + [sym_optional_chain] = ACTIONS(2242), + [sym_static_chain] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2242), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2242), + [aux_sym_binary_expression_token1] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2240), + [aux_sym_binary_expression_token2] = ACTIONS(2240), + [aux_sym_binary_expression_token3] = ACTIONS(2240), + [aux_sym_binary_expression_token4] = ACTIONS(2242), + [aux_sym_binary_expression_token5] = ACTIONS(2242), + [aux_sym_binary_expression_token6] = ACTIONS(2242), + [anon_sym_QMARK_QMARK] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2242), + [aux_sym_unary_operator_token1] = ACTIONS(2240), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2240), + [aux_sym_number_token2] = ACTIONS(2240), + [anon_sym_This] = ACTIONS(2240), + [anon_sym_this] = ACTIONS(2240), + [anon_sym_THIS] = ACTIONS(2240), + [anon_sym_Super] = ACTIONS(2240), + [anon_sym_super] = ACTIONS(2240), + [anon_sym_SUPER] = ACTIONS(2240), + [anon_sym_True] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2240), + [anon_sym_TRUE] = ACTIONS(2240), + [anon_sym_False] = ACTIONS(2240), + [anon_sym_false] = ACTIONS(2240), + [anon_sym_FALSE] = ACTIONS(2240), + [anon_sym_Null] = ACTIONS(2240), + [anon_sym_null] = ACTIONS(2240), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_Undefined] = ACTIONS(2240), + [anon_sym_undefined] = ACTIONS(2240), + [anon_sym_UNDEFINED] = ACTIONS(2240), + [anon_sym_get] = ACTIONS(2240), + [anon_sym_set] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2240), + [sym_hash_empty] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_QueryExecute] = ACTIONS(2240), + [anon_sym_queryexecute] = ACTIONS(2240), + [anon_sym_QUERYEXECUTE] = ACTIONS(2240), + [anon_sym_queryExecute] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_Abstract] = ACTIONS(2240), + [anon_sym_abstract] = ACTIONS(2240), + [anon_sym_ABSTRACT] = ACTIONS(2240), + [anon_sym_Component] = ACTIONS(2240), + [anon_sym_component] = ACTIONS(2240), + [anon_sym_COMPONENT] = ACTIONS(2240), + [anon_sym_Debugger] = ACTIONS(2240), + [anon_sym_debugger] = ACTIONS(2240), + [anon_sym_DEBUGGER] = ACTIONS(2240), + [anon_sym_Final] = ACTIONS(2240), + [anon_sym_final] = ACTIONS(2240), + [anon_sym_FINAL] = ACTIONS(2240), + [anon_sym_Function] = ACTIONS(2240), + [anon_sym_function] = ACTIONS(2240), + [anon_sym_FUNCTION] = ACTIONS(2240), + [anon_sym_In] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_IN] = ACTIONS(2240), + [anon_sym_Include] = ACTIONS(2240), + [anon_sym_include] = ACTIONS(2240), + [anon_sym_INCLUDE] = ACTIONS(2240), + [anon_sym_InstanceOf] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_INSTANCEOF] = ACTIONS(2240), + [anon_sym_instanceOf] = ACTIONS(2240), + [anon_sym_New] = ACTIONS(2240), + [anon_sym_new] = ACTIONS(2240), + [anon_sym_NEW] = ACTIONS(2240), + [anon_sym_Package] = ACTIONS(2240), + [anon_sym_package] = ACTIONS(2240), + [anon_sym_PACKAGE] = ACTIONS(2240), + [anon_sym_Private] = ACTIONS(2240), + [anon_sym_private] = ACTIONS(2240), + [anon_sym_PRIVATE] = ACTIONS(2240), + [anon_sym_Public] = ACTIONS(2240), + [anon_sym_public] = ACTIONS(2240), + [anon_sym_PUBLIC] = ACTIONS(2240), + [anon_sym_Remote] = ACTIONS(2240), + [anon_sym_remote] = ACTIONS(2240), + [anon_sym_REMOTE] = ACTIONS(2240), + [anon_sym_Static] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_STATIC] = ACTIONS(2240), + [sym__ternary_qmark] = ACTIONS(2242), + [sym__elvis_operator] = ACTIONS(2242), + [sym_logical_or] = ACTIONS(2242), + [sym__java_block_open] = ACTIONS(2242), + [sym__static_type_prefix] = ACTIONS(2242), }, [STATE(685)] = { [sym_identifier] = ACTIONS(507), @@ -149073,7 +149204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_COLON] = ACTIONS(3002), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), @@ -149188,1668 +149319,780 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_INCLUDE] = ACTIONS(507), [anon_sym_InstanceOf] = ACTIONS(507), [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_NEW] = ACTIONS(507), - [anon_sym_Package] = ACTIONS(507), - [anon_sym_package] = ACTIONS(507), - [anon_sym_PACKAGE] = ACTIONS(507), - [anon_sym_Private] = ACTIONS(507), - [anon_sym_private] = ACTIONS(507), - [anon_sym_PRIVATE] = ACTIONS(507), - [anon_sym_Public] = ACTIONS(507), - [anon_sym_public] = ACTIONS(507), - [anon_sym_PUBLIC] = ACTIONS(507), - [anon_sym_Remote] = ACTIONS(507), - [anon_sym_remote] = ACTIONS(507), - [anon_sym_REMOTE] = ACTIONS(507), - [anon_sym_Static] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_STATIC] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(509), - [sym__static_type_prefix] = ACTIONS(509), - }, - [STATE(686)] = { - [ts_builtin_sym_end] = ACTIONS(3020), - [sym_identifier] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3020), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3020), - [anon_sym_SEMI] = ACTIONS(3020), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_Query] = ACTIONS(3022), - [anon_sym_query] = ACTIONS(3022), - [anon_sym_QUERY] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3020), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_unary_operator_token1] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3020), - [anon_sym_DASH_DASH] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3022), - [aux_sym_number_token2] = ACTIONS(3020), - [anon_sym_This] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_THIS] = ACTIONS(3022), - [anon_sym_Super] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_SUPER] = ACTIONS(3022), - [anon_sym_True] = ACTIONS(3022), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_TRUE] = ACTIONS(3022), - [anon_sym_False] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_FALSE] = ACTIONS(3022), - [anon_sym_Null] = ACTIONS(3022), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_NULL] = ACTIONS(3022), - [anon_sym_Undefined] = ACTIONS(3022), - [anon_sym_undefined] = ACTIONS(3022), - [anon_sym_UNDEFINED] = ACTIONS(3022), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3022), - [sym_hash_empty] = ACTIONS(3020), - [anon_sym_export] = ACTIONS(3022), - [anon_sym_QueryExecute] = ACTIONS(3022), - [anon_sym_queryexecute] = ACTIONS(3022), - [anon_sym_QUERYEXECUTE] = ACTIONS(3022), - [anon_sym_queryExecute] = ACTIONS(3022), - [anon_sym_BQUOTE] = ACTIONS(3022), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3020), - [anon_sym_Abstract] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_ABSTRACT] = ACTIONS(3022), - [anon_sym_Break] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_BREAK] = ACTIONS(3022), - [anon_sym_Case] = ACTIONS(3022), - [anon_sym_case] = ACTIONS(3022), - [anon_sym_CASE] = ACTIONS(3022), - [anon_sym_Component] = ACTIONS(3022), - [anon_sym_component] = ACTIONS(3022), - [anon_sym_COMPONENT] = ACTIONS(3022), - [anon_sym_Continue] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_CONTINUE] = ACTIONS(3022), - [anon_sym_Debugger] = ACTIONS(3022), - [anon_sym_debugger] = ACTIONS(3022), - [anon_sym_DEBUGGER] = ACTIONS(3022), - [anon_sym_Default] = ACTIONS(3022), - [anon_sym_default] = ACTIONS(3022), - [anon_sym_DEFAULT] = ACTIONS(3022), - [anon_sym_Do] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_DO] = ACTIONS(3022), - [anon_sym_Else] = ACTIONS(3022), - [anon_sym_else] = ACTIONS(3022), - [anon_sym_ELSE] = ACTIONS(3022), - [anon_sym_Final] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_FINAL] = ACTIONS(3022), - [anon_sym_For] = ACTIONS(3022), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_FOR] = ACTIONS(3022), - [anon_sym_Function] = ACTIONS(3022), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_FUNCTION] = ACTIONS(3022), - [anon_sym_If] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_IF] = ACTIONS(3022), - [anon_sym_Import] = ACTIONS(3022), - [anon_sym_import] = ACTIONS(3022), - [anon_sym_IMPORT] = ACTIONS(3022), - [anon_sym_Include] = ACTIONS(3022), - [anon_sym_include] = ACTIONS(3022), - [anon_sym_INCLUDE] = ACTIONS(3022), - [anon_sym_Interface] = ACTIONS(3022), - [anon_sym_interface] = ACTIONS(3022), - [anon_sym_INTERFACE] = ACTIONS(3022), - [anon_sym_New] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_NEW] = ACTIONS(3022), - [anon_sym_Package] = ACTIONS(3022), - [anon_sym_package] = ACTIONS(3022), - [anon_sym_PACKAGE] = ACTIONS(3022), - [anon_sym_Private] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_PRIVATE] = ACTIONS(3022), - [anon_sym_Property] = ACTIONS(3022), - [anon_sym_property] = ACTIONS(3022), - [anon_sym_PROPERTY] = ACTIONS(3022), - [anon_sym_Public] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_PUBLIC] = ACTIONS(3022), - [anon_sym_Remote] = ACTIONS(3022), - [anon_sym_remote] = ACTIONS(3022), - [anon_sym_REMOTE] = ACTIONS(3022), - [anon_sym_Return] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_RETURN] = ACTIONS(3022), - [anon_sym_Static] = ACTIONS(3022), - [anon_sym_static] = ACTIONS(3022), - [anon_sym_STATIC] = ACTIONS(3022), - [anon_sym_Switch] = ACTIONS(3022), - [anon_sym_switch] = ACTIONS(3022), - [anon_sym_SWITCH] = ACTIONS(3022), - [anon_sym_Throw] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_THROW] = ACTIONS(3022), - [anon_sym_Try] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_TRY] = ACTIONS(3022), - [anon_sym_Var] = ACTIONS(3022), - [anon_sym_var] = ACTIONS(3022), - [anon_sym_VAR] = ACTIONS(3022), - [anon_sym_While] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_WHILE] = ACTIONS(3022), - [anon_sym_With] = ACTIONS(3022), - [anon_sym_with] = ACTIONS(3022), - [anon_sym_WITH] = ACTIONS(3022), - [sym_cf_comment] = ACTIONS(3020), - [sym__java_block_open] = ACTIONS(3020), - [sym__static_type_prefix] = ACTIONS(3020), - }, - [STATE(687)] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_Query] = ACTIONS(2300), - [anon_sym_query] = ACTIONS(2300), - [anon_sym_QUERY] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_BSLASH] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2300), - [aux_sym_binary_expression_token2] = ACTIONS(2300), - [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2302), - [aux_sym_unary_operator_token1] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2300), - [aux_sym_number_token2] = ACTIONS(2300), - [anon_sym_This] = ACTIONS(2300), - [anon_sym_this] = ACTIONS(2300), - [anon_sym_THIS] = ACTIONS(2300), - [anon_sym_Super] = ACTIONS(2300), - [anon_sym_super] = ACTIONS(2300), - [anon_sym_SUPER] = ACTIONS(2300), - [anon_sym_True] = ACTIONS(2300), - [anon_sym_true] = ACTIONS(2300), - [anon_sym_TRUE] = ACTIONS(2300), - [anon_sym_False] = ACTIONS(2300), - [anon_sym_false] = ACTIONS(2300), - [anon_sym_FALSE] = ACTIONS(2300), - [anon_sym_Null] = ACTIONS(2300), - [anon_sym_null] = ACTIONS(2300), - [anon_sym_NULL] = ACTIONS(2300), - [anon_sym_Undefined] = ACTIONS(2300), - [anon_sym_undefined] = ACTIONS(2300), - [anon_sym_UNDEFINED] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(2300), - [sym_hash_empty] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_QueryExecute] = ACTIONS(2300), - [anon_sym_queryexecute] = ACTIONS(2300), - [anon_sym_QUERYEXECUTE] = ACTIONS(2300), - [anon_sym_queryExecute] = ACTIONS(2300), - [anon_sym_BQUOTE] = ACTIONS(2302), - [anon_sym_Abstract] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_ABSTRACT] = ACTIONS(2300), - [anon_sym_Component] = ACTIONS(2300), - [anon_sym_component] = ACTIONS(2300), - [anon_sym_COMPONENT] = ACTIONS(2300), - [anon_sym_Debugger] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_DEBUGGER] = ACTIONS(2300), - [anon_sym_Final] = ACTIONS(2300), - [anon_sym_final] = ACTIONS(2300), - [anon_sym_FINAL] = ACTIONS(2300), - [anon_sym_Function] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_FUNCTION] = ACTIONS(2300), - [anon_sym_In] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_IN] = ACTIONS(2300), - [anon_sym_Include] = ACTIONS(2300), - [anon_sym_include] = ACTIONS(2300), - [anon_sym_INCLUDE] = ACTIONS(2300), - [anon_sym_InstanceOf] = ACTIONS(2300), - [anon_sym_instanceof] = ACTIONS(2300), - [anon_sym_INSTANCEOF] = ACTIONS(2300), - [anon_sym_instanceOf] = ACTIONS(2300), - [anon_sym_New] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_NEW] = ACTIONS(2300), - [anon_sym_Package] = ACTIONS(2300), - [anon_sym_package] = ACTIONS(2300), - [anon_sym_PACKAGE] = ACTIONS(2300), - [anon_sym_Private] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_PRIVATE] = ACTIONS(2300), - [anon_sym_Public] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_PUBLIC] = ACTIONS(2300), - [anon_sym_Remote] = ACTIONS(2300), - [anon_sym_remote] = ACTIONS(2300), - [anon_sym_REMOTE] = ACTIONS(2300), - [anon_sym_Static] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_STATIC] = ACTIONS(2300), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), - [sym__java_block_open] = ACTIONS(2302), - [sym__static_type_prefix] = ACTIONS(2302), - }, - [STATE(688)] = { - [ts_builtin_sym_end] = ACTIONS(3024), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3024), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_Query] = ACTIONS(3026), - [anon_sym_query] = ACTIONS(3026), - [anon_sym_QUERY] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3024), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_unary_operator_token1] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3024), - [anon_sym_DASH_DASH] = ACTIONS(3024), - [anon_sym_DQUOTE] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3026), - [aux_sym_number_token2] = ACTIONS(3024), - [anon_sym_This] = ACTIONS(3026), - [anon_sym_this] = ACTIONS(3026), - [anon_sym_THIS] = ACTIONS(3026), - [anon_sym_Super] = ACTIONS(3026), - [anon_sym_super] = ACTIONS(3026), - [anon_sym_SUPER] = ACTIONS(3026), - [anon_sym_True] = ACTIONS(3026), - [anon_sym_true] = ACTIONS(3026), - [anon_sym_TRUE] = ACTIONS(3026), - [anon_sym_False] = ACTIONS(3026), - [anon_sym_false] = ACTIONS(3026), - [anon_sym_FALSE] = ACTIONS(3026), - [anon_sym_Null] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_NULL] = ACTIONS(3026), - [anon_sym_Undefined] = ACTIONS(3026), - [anon_sym_undefined] = ACTIONS(3026), - [anon_sym_UNDEFINED] = ACTIONS(3026), - [anon_sym_get] = ACTIONS(3026), - [anon_sym_set] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3026), - [sym_hash_empty] = ACTIONS(3024), - [anon_sym_export] = ACTIONS(3026), - [anon_sym_QueryExecute] = ACTIONS(3026), - [anon_sym_queryexecute] = ACTIONS(3026), - [anon_sym_QUERYEXECUTE] = ACTIONS(3026), - [anon_sym_queryExecute] = ACTIONS(3026), - [anon_sym_BQUOTE] = ACTIONS(3026), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3024), - [anon_sym_Abstract] = ACTIONS(3026), - [anon_sym_abstract] = ACTIONS(3026), - [anon_sym_ABSTRACT] = ACTIONS(3026), - [anon_sym_Break] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_BREAK] = ACTIONS(3026), - [anon_sym_Case] = ACTIONS(3026), - [anon_sym_case] = ACTIONS(3026), - [anon_sym_CASE] = ACTIONS(3026), - [anon_sym_Component] = ACTIONS(3026), - [anon_sym_component] = ACTIONS(3026), - [anon_sym_COMPONENT] = ACTIONS(3026), - [anon_sym_Continue] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_CONTINUE] = ACTIONS(3026), - [anon_sym_Debugger] = ACTIONS(3026), - [anon_sym_debugger] = ACTIONS(3026), - [anon_sym_DEBUGGER] = ACTIONS(3026), - [anon_sym_Default] = ACTIONS(3026), - [anon_sym_default] = ACTIONS(3026), - [anon_sym_DEFAULT] = ACTIONS(3026), - [anon_sym_Do] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_DO] = ACTIONS(3026), - [anon_sym_Else] = ACTIONS(3026), - [anon_sym_else] = ACTIONS(3026), - [anon_sym_ELSE] = ACTIONS(3026), - [anon_sym_Final] = ACTIONS(3026), - [anon_sym_final] = ACTIONS(3026), - [anon_sym_FINAL] = ACTIONS(3026), - [anon_sym_For] = ACTIONS(3026), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_FOR] = ACTIONS(3026), - [anon_sym_Function] = ACTIONS(3026), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_FUNCTION] = ACTIONS(3026), - [anon_sym_If] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_IF] = ACTIONS(3026), - [anon_sym_Import] = ACTIONS(3026), - [anon_sym_import] = ACTIONS(3026), - [anon_sym_IMPORT] = ACTIONS(3026), - [anon_sym_Include] = ACTIONS(3026), - [anon_sym_include] = ACTIONS(3026), - [anon_sym_INCLUDE] = ACTIONS(3026), - [anon_sym_Interface] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_INTERFACE] = ACTIONS(3026), - [anon_sym_New] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_NEW] = ACTIONS(3026), - [anon_sym_Package] = ACTIONS(3026), - [anon_sym_package] = ACTIONS(3026), - [anon_sym_PACKAGE] = ACTIONS(3026), - [anon_sym_Private] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_PRIVATE] = ACTIONS(3026), - [anon_sym_Property] = ACTIONS(3026), - [anon_sym_property] = ACTIONS(3026), - [anon_sym_PROPERTY] = ACTIONS(3026), - [anon_sym_Public] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_PUBLIC] = ACTIONS(3026), - [anon_sym_Remote] = ACTIONS(3026), - [anon_sym_remote] = ACTIONS(3026), - [anon_sym_REMOTE] = ACTIONS(3026), - [anon_sym_Return] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_RETURN] = ACTIONS(3026), - [anon_sym_Static] = ACTIONS(3026), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_STATIC] = ACTIONS(3026), - [anon_sym_Switch] = ACTIONS(3026), - [anon_sym_switch] = ACTIONS(3026), - [anon_sym_SWITCH] = ACTIONS(3026), - [anon_sym_Throw] = ACTIONS(3026), - [anon_sym_throw] = ACTIONS(3026), - [anon_sym_THROW] = ACTIONS(3026), - [anon_sym_Try] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_TRY] = ACTIONS(3026), - [anon_sym_Var] = ACTIONS(3026), - [anon_sym_var] = ACTIONS(3026), - [anon_sym_VAR] = ACTIONS(3026), - [anon_sym_While] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_WHILE] = ACTIONS(3026), - [anon_sym_With] = ACTIONS(3026), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_WITH] = ACTIONS(3026), - [sym_cf_comment] = ACTIONS(3024), - [sym__java_block_open] = ACTIONS(3024), - [sym__static_type_prefix] = ACTIONS(3024), - }, - [STATE(689)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1686), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(3028), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), - }, - [STATE(690)] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_Query] = ACTIONS(2219), - [anon_sym_query] = ACTIONS(2219), - [anon_sym_QUERY] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2221), - [aux_sym_unary_operator_token1] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2219), - [aux_sym_number_token2] = ACTIONS(2219), - [anon_sym_This] = ACTIONS(2219), - [anon_sym_this] = ACTIONS(2219), - [anon_sym_THIS] = ACTIONS(2219), - [anon_sym_Super] = ACTIONS(2219), - [anon_sym_super] = ACTIONS(2219), - [anon_sym_SUPER] = ACTIONS(2219), - [anon_sym_True] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_TRUE] = ACTIONS(2219), - [anon_sym_False] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [anon_sym_FALSE] = ACTIONS(2219), - [anon_sym_Null] = ACTIONS(2219), - [anon_sym_null] = ACTIONS(2219), - [anon_sym_NULL] = ACTIONS(2219), - [anon_sym_Undefined] = ACTIONS(2219), - [anon_sym_undefined] = ACTIONS(2219), - [anon_sym_UNDEFINED] = ACTIONS(2219), - [anon_sym_get] = ACTIONS(2219), - [anon_sym_set] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(2219), - [sym_hash_empty] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2219), - [anon_sym_QueryExecute] = ACTIONS(2219), - [anon_sym_queryexecute] = ACTIONS(2219), - [anon_sym_QUERYEXECUTE] = ACTIONS(2219), - [anon_sym_queryExecute] = ACTIONS(2219), - [anon_sym_BQUOTE] = ACTIONS(2221), - [anon_sym_Abstract] = ACTIONS(2219), - [anon_sym_abstract] = ACTIONS(2219), - [anon_sym_ABSTRACT] = ACTIONS(2219), - [anon_sym_Component] = ACTIONS(2219), - [anon_sym_component] = ACTIONS(2219), - [anon_sym_COMPONENT] = ACTIONS(2219), - [anon_sym_Debugger] = ACTIONS(2219), - [anon_sym_debugger] = ACTIONS(2219), - [anon_sym_DEBUGGER] = ACTIONS(2219), - [anon_sym_Final] = ACTIONS(2219), - [anon_sym_final] = ACTIONS(2219), - [anon_sym_FINAL] = ACTIONS(2219), - [anon_sym_Function] = ACTIONS(2219), - [anon_sym_function] = ACTIONS(2219), - [anon_sym_FUNCTION] = ACTIONS(2219), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_Include] = ACTIONS(2219), - [anon_sym_include] = ACTIONS(2219), - [anon_sym_INCLUDE] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), - [anon_sym_New] = ACTIONS(2219), - [anon_sym_new] = ACTIONS(2219), - [anon_sym_NEW] = ACTIONS(2219), - [anon_sym_Package] = ACTIONS(2219), - [anon_sym_package] = ACTIONS(2219), - [anon_sym_PACKAGE] = ACTIONS(2219), - [anon_sym_Private] = ACTIONS(2219), - [anon_sym_private] = ACTIONS(2219), - [anon_sym_PRIVATE] = ACTIONS(2219), - [anon_sym_Public] = ACTIONS(2219), - [anon_sym_public] = ACTIONS(2219), - [anon_sym_PUBLIC] = ACTIONS(2219), - [anon_sym_Remote] = ACTIONS(2219), - [anon_sym_remote] = ACTIONS(2219), - [anon_sym_REMOTE] = ACTIONS(2219), - [anon_sym_Static] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2219), - [anon_sym_STATIC] = ACTIONS(2219), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym__java_block_open] = ACTIONS(2221), - [sym__static_type_prefix] = ACTIONS(2221), - }, - [STATE(691)] = { - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_Query] = ACTIONS(2189), - [anon_sym_query] = ACTIONS(2189), - [anon_sym_QUERY] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2187), - [aux_sym_unary_operator_token1] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2187), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2189), - [aux_sym_number_token2] = ACTIONS(2187), - [anon_sym_This] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(2189), - [anon_sym_THIS] = ACTIONS(2189), - [anon_sym_Super] = ACTIONS(2189), - [anon_sym_super] = ACTIONS(2189), - [anon_sym_SUPER] = ACTIONS(2189), - [anon_sym_True] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_TRUE] = ACTIONS(2189), - [anon_sym_False] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_FALSE] = ACTIONS(2189), - [anon_sym_Null] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_NULL] = ACTIONS(2189), - [anon_sym_Undefined] = ACTIONS(2189), - [anon_sym_undefined] = ACTIONS(2189), - [anon_sym_UNDEFINED] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2189), - [sym_hash_empty] = ACTIONS(2187), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_QueryExecute] = ACTIONS(2189), - [anon_sym_queryexecute] = ACTIONS(2189), - [anon_sym_QUERYEXECUTE] = ACTIONS(2189), - [anon_sym_queryExecute] = ACTIONS(2189), - [anon_sym_BQUOTE] = ACTIONS(2189), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2187), - [anon_sym_Abstract] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_ABSTRACT] = ACTIONS(2189), - [anon_sym_Break] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_BREAK] = ACTIONS(2189), - [anon_sym_Case] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2189), - [anon_sym_CASE] = ACTIONS(2189), - [anon_sym_Component] = ACTIONS(2189), - [anon_sym_component] = ACTIONS(2189), - [anon_sym_COMPONENT] = ACTIONS(2189), - [anon_sym_Continue] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_CONTINUE] = ACTIONS(2189), - [anon_sym_Debugger] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_DEBUGGER] = ACTIONS(2189), - [anon_sym_Default] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_DEFAULT] = ACTIONS(2189), - [anon_sym_Do] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_DO] = ACTIONS(2189), - [anon_sym_Else] = ACTIONS(2189), - [anon_sym_else] = ACTIONS(2189), - [anon_sym_ELSE] = ACTIONS(2189), - [anon_sym_Final] = ACTIONS(2189), - [anon_sym_final] = ACTIONS(2189), - [anon_sym_FINAL] = ACTIONS(2189), - [anon_sym_For] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_FOR] = ACTIONS(2189), - [anon_sym_Function] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_FUNCTION] = ACTIONS(2189), - [anon_sym_If] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_IF] = ACTIONS(2189), - [anon_sym_Import] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_IMPORT] = ACTIONS(2189), - [anon_sym_Include] = ACTIONS(2189), - [anon_sym_include] = ACTIONS(2189), - [anon_sym_INCLUDE] = ACTIONS(2189), - [anon_sym_Interface] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_INTERFACE] = ACTIONS(2189), - [anon_sym_New] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_NEW] = ACTIONS(2189), - [anon_sym_Package] = ACTIONS(2189), - [anon_sym_package] = ACTIONS(2189), - [anon_sym_PACKAGE] = ACTIONS(2189), - [anon_sym_Private] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_PRIVATE] = ACTIONS(2189), - [anon_sym_Property] = ACTIONS(2189), - [anon_sym_property] = ACTIONS(2189), - [anon_sym_PROPERTY] = ACTIONS(2189), - [anon_sym_Public] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_PUBLIC] = ACTIONS(2189), - [anon_sym_Remote] = ACTIONS(2189), - [anon_sym_remote] = ACTIONS(2189), - [anon_sym_REMOTE] = ACTIONS(2189), - [anon_sym_Return] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_RETURN] = ACTIONS(2189), - [anon_sym_Static] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_STATIC] = ACTIONS(2189), - [anon_sym_Switch] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_SWITCH] = ACTIONS(2189), - [anon_sym_Throw] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_THROW] = ACTIONS(2189), - [anon_sym_Try] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_TRY] = ACTIONS(2189), - [anon_sym_Var] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_VAR] = ACTIONS(2189), - [anon_sym_While] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_WHILE] = ACTIONS(2189), - [anon_sym_With] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_WITH] = ACTIONS(2189), - [sym_cf_comment] = ACTIONS(2187), - [sym__java_block_open] = ACTIONS(2187), - [sym__static_type_prefix] = ACTIONS(2187), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(507), + [anon_sym_new] = ACTIONS(507), + [anon_sym_NEW] = ACTIONS(507), + [anon_sym_Package] = ACTIONS(507), + [anon_sym_package] = ACTIONS(507), + [anon_sym_PACKAGE] = ACTIONS(507), + [anon_sym_Private] = ACTIONS(507), + [anon_sym_private] = ACTIONS(507), + [anon_sym_PRIVATE] = ACTIONS(507), + [anon_sym_Public] = ACTIONS(507), + [anon_sym_public] = ACTIONS(507), + [anon_sym_PUBLIC] = ACTIONS(507), + [anon_sym_Remote] = ACTIONS(507), + [anon_sym_remote] = ACTIONS(507), + [anon_sym_REMOTE] = ACTIONS(507), + [anon_sym_Static] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_STATIC] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(509), + [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(692)] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_Query] = ACTIONS(2278), - [anon_sym_query] = ACTIONS(2278), - [anon_sym_QUERY] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(2280), - [aux_sym_unary_operator_token1] = ACTIONS(2278), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2278), - [aux_sym_number_token2] = ACTIONS(2278), - [anon_sym_This] = ACTIONS(2278), - [anon_sym_this] = ACTIONS(2278), - [anon_sym_THIS] = ACTIONS(2278), - [anon_sym_Super] = ACTIONS(2278), - [anon_sym_super] = ACTIONS(2278), - [anon_sym_SUPER] = ACTIONS(2278), - [anon_sym_True] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2278), - [anon_sym_TRUE] = ACTIONS(2278), - [anon_sym_False] = ACTIONS(2278), - [anon_sym_false] = ACTIONS(2278), - [anon_sym_FALSE] = ACTIONS(2278), - [anon_sym_Null] = ACTIONS(2278), - [anon_sym_null] = ACTIONS(2278), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_Undefined] = ACTIONS(2278), - [anon_sym_undefined] = ACTIONS(2278), - [anon_sym_UNDEFINED] = ACTIONS(2278), - [anon_sym_get] = ACTIONS(2278), - [anon_sym_set] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(2278), - [sym_hash_empty] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2278), - [anon_sym_QueryExecute] = ACTIONS(2278), - [anon_sym_queryexecute] = ACTIONS(2278), - [anon_sym_QUERYEXECUTE] = ACTIONS(2278), - [anon_sym_queryExecute] = ACTIONS(2278), - [anon_sym_BQUOTE] = ACTIONS(2280), - [anon_sym_Abstract] = ACTIONS(2278), - [anon_sym_abstract] = ACTIONS(2278), - [anon_sym_ABSTRACT] = ACTIONS(2278), - [anon_sym_Component] = ACTIONS(2278), - [anon_sym_component] = ACTIONS(2278), - [anon_sym_COMPONENT] = ACTIONS(2278), - [anon_sym_Debugger] = ACTIONS(2278), - [anon_sym_debugger] = ACTIONS(2278), - [anon_sym_DEBUGGER] = ACTIONS(2278), - [anon_sym_Final] = ACTIONS(2278), - [anon_sym_final] = ACTIONS(2278), - [anon_sym_FINAL] = ACTIONS(2278), - [anon_sym_Function] = ACTIONS(2278), - [anon_sym_function] = ACTIONS(2278), - [anon_sym_FUNCTION] = ACTIONS(2278), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_Include] = ACTIONS(2278), - [anon_sym_include] = ACTIONS(2278), - [anon_sym_INCLUDE] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_INSTANCEOF] = ACTIONS(2278), - [anon_sym_instanceOf] = ACTIONS(2278), - [anon_sym_New] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [anon_sym_NEW] = ACTIONS(2278), - [anon_sym_Package] = ACTIONS(2278), - [anon_sym_package] = ACTIONS(2278), - [anon_sym_PACKAGE] = ACTIONS(2278), - [anon_sym_Private] = ACTIONS(2278), - [anon_sym_private] = ACTIONS(2278), - [anon_sym_PRIVATE] = ACTIONS(2278), - [anon_sym_Public] = ACTIONS(2278), - [anon_sym_public] = ACTIONS(2278), - [anon_sym_PUBLIC] = ACTIONS(2278), - [anon_sym_Remote] = ACTIONS(2278), - [anon_sym_remote] = ACTIONS(2278), - [anon_sym_REMOTE] = ACTIONS(2278), - [anon_sym_Static] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_STATIC] = ACTIONS(2278), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), - [sym__java_block_open] = ACTIONS(2280), - [sym__static_type_prefix] = ACTIONS(2280), + [STATE(686)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_COLON] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_Query] = ACTIONS(1718), + [anon_sym_query] = ACTIONS(1718), + [anon_sym_QUERY] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [aux_sym_unary_operator_token1] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1718), + [aux_sym_number_token2] = ACTIONS(1718), + [anon_sym_This] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_THIS] = ACTIONS(1718), + [anon_sym_Super] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(1718), + [anon_sym_SUPER] = ACTIONS(1718), + [anon_sym_True] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_TRUE] = ACTIONS(1718), + [anon_sym_False] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_FALSE] = ACTIONS(1718), + [anon_sym_Null] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_NULL] = ACTIONS(1718), + [anon_sym_Undefined] = ACTIONS(1718), + [anon_sym_undefined] = ACTIONS(1718), + [anon_sym_UNDEFINED] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [sym_hash_empty] = ACTIONS(1716), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_QueryExecute] = ACTIONS(1718), + [anon_sym_queryexecute] = ACTIONS(1718), + [anon_sym_QUERYEXECUTE] = ACTIONS(1718), + [anon_sym_queryExecute] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_Abstract] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_ABSTRACT] = ACTIONS(1718), + [anon_sym_Component] = ACTIONS(1718), + [anon_sym_component] = ACTIONS(1718), + [anon_sym_COMPONENT] = ACTIONS(1718), + [anon_sym_Debugger] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_DEBUGGER] = ACTIONS(1718), + [anon_sym_Final] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_FINAL] = ACTIONS(1718), + [anon_sym_Function] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_FUNCTION] = ACTIONS(1718), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1718), + [anon_sym_include] = ACTIONS(1718), + [anon_sym_INCLUDE] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_NEW] = ACTIONS(1718), + [anon_sym_Package] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_PACKAGE] = ACTIONS(1718), + [anon_sym_Private] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_PRIVATE] = ACTIONS(1718), + [anon_sym_Public] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_PUBLIC] = ACTIONS(1718), + [anon_sym_Remote] = ACTIONS(1718), + [anon_sym_remote] = ACTIONS(1718), + [anon_sym_REMOTE] = ACTIONS(1718), + [anon_sym_Static] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_STATIC] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(1716), + [sym__static_type_prefix] = ACTIONS(1716), }, - [STATE(693)] = { - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1083), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1083), - [anon_sym_instanceof] = ACTIONS(1083), - [anon_sym_INSTANCEOF] = ACTIONS(1083), - [anon_sym_instanceOf] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(3030), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [STATE(687)] = { + [sym_arguments] = STATE(672), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_Query] = ACTIONS(1718), + [anon_sym_query] = ACTIONS(1718), + [anon_sym_QUERY] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [aux_sym_unary_operator_token1] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1718), + [aux_sym_number_token2] = ACTIONS(1718), + [anon_sym_This] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_THIS] = ACTIONS(1718), + [anon_sym_Super] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(1718), + [anon_sym_SUPER] = ACTIONS(1718), + [anon_sym_True] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_TRUE] = ACTIONS(1718), + [anon_sym_False] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_FALSE] = ACTIONS(1718), + [anon_sym_Null] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_NULL] = ACTIONS(1718), + [anon_sym_Undefined] = ACTIONS(1718), + [anon_sym_undefined] = ACTIONS(1718), + [anon_sym_UNDEFINED] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [sym_hash_empty] = ACTIONS(1716), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_QueryExecute] = ACTIONS(1718), + [anon_sym_queryexecute] = ACTIONS(1718), + [anon_sym_QUERYEXECUTE] = ACTIONS(1718), + [anon_sym_queryExecute] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_Abstract] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_ABSTRACT] = ACTIONS(1718), + [anon_sym_Component] = ACTIONS(1718), + [anon_sym_component] = ACTIONS(1718), + [anon_sym_COMPONENT] = ACTIONS(1718), + [anon_sym_Debugger] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_DEBUGGER] = ACTIONS(1718), + [anon_sym_Final] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_FINAL] = ACTIONS(1718), + [anon_sym_Function] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_FUNCTION] = ACTIONS(1718), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1718), + [anon_sym_include] = ACTIONS(1718), + [anon_sym_INCLUDE] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_NEW] = ACTIONS(1718), + [anon_sym_Package] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_PACKAGE] = ACTIONS(1718), + [anon_sym_Private] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_PRIVATE] = ACTIONS(1718), + [anon_sym_Public] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_PUBLIC] = ACTIONS(1718), + [anon_sym_Remote] = ACTIONS(1718), + [anon_sym_remote] = ACTIONS(1718), + [anon_sym_REMOTE] = ACTIONS(1718), + [anon_sym_Static] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_STATIC] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(1716), + [sym__static_type_prefix] = ACTIONS(1716), }, - [STATE(694)] = { - [ts_builtin_sym_end] = ACTIONS(3032), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_RBRACE] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_SEMI] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_Query] = ACTIONS(3034), - [anon_sym_query] = ACTIONS(3034), - [anon_sym_QUERY] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3032), - [aux_sym_unary_operator_token1] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3032), - [anon_sym_DASH_DASH] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_SQUOTE] = ACTIONS(3032), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3034), - [aux_sym_number_token2] = ACTIONS(3032), - [anon_sym_This] = ACTIONS(3034), - [anon_sym_this] = ACTIONS(3034), - [anon_sym_THIS] = ACTIONS(3034), - [anon_sym_Super] = ACTIONS(3034), - [anon_sym_super] = ACTIONS(3034), - [anon_sym_SUPER] = ACTIONS(3034), - [anon_sym_True] = ACTIONS(3034), - [anon_sym_true] = ACTIONS(3034), - [anon_sym_TRUE] = ACTIONS(3034), - [anon_sym_False] = ACTIONS(3034), - [anon_sym_false] = ACTIONS(3034), - [anon_sym_FALSE] = ACTIONS(3034), - [anon_sym_Null] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3034), - [anon_sym_NULL] = ACTIONS(3034), - [anon_sym_Undefined] = ACTIONS(3034), - [anon_sym_undefined] = ACTIONS(3034), - [anon_sym_UNDEFINED] = ACTIONS(3034), - [anon_sym_get] = ACTIONS(3034), - [anon_sym_set] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3034), - [sym_hash_empty] = ACTIONS(3032), - [anon_sym_export] = ACTIONS(3034), - [anon_sym_QueryExecute] = ACTIONS(3034), - [anon_sym_queryexecute] = ACTIONS(3034), - [anon_sym_QUERYEXECUTE] = ACTIONS(3034), - [anon_sym_queryExecute] = ACTIONS(3034), - [anon_sym_BQUOTE] = ACTIONS(3034), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3032), - [anon_sym_Abstract] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3034), - [anon_sym_ABSTRACT] = ACTIONS(3034), - [anon_sym_Break] = ACTIONS(3034), - [anon_sym_break] = ACTIONS(3034), - [anon_sym_BREAK] = ACTIONS(3034), - [anon_sym_Case] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_CASE] = ACTIONS(3034), - [anon_sym_Component] = ACTIONS(3034), - [anon_sym_component] = ACTIONS(3034), - [anon_sym_COMPONENT] = ACTIONS(3034), - [anon_sym_Continue] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(3034), - [anon_sym_CONTINUE] = ACTIONS(3034), - [anon_sym_Debugger] = ACTIONS(3034), - [anon_sym_debugger] = ACTIONS(3034), - [anon_sym_DEBUGGER] = ACTIONS(3034), - [anon_sym_Default] = ACTIONS(3034), - [anon_sym_default] = ACTIONS(3034), - [anon_sym_DEFAULT] = ACTIONS(3034), - [anon_sym_Do] = ACTIONS(3034), - [anon_sym_do] = ACTIONS(3034), - [anon_sym_DO] = ACTIONS(3034), - [anon_sym_Else] = ACTIONS(3034), - [anon_sym_else] = ACTIONS(3034), - [anon_sym_ELSE] = ACTIONS(3034), - [anon_sym_Final] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_FINAL] = ACTIONS(3034), - [anon_sym_For] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3034), - [anon_sym_FOR] = ACTIONS(3034), - [anon_sym_Function] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3034), - [anon_sym_FUNCTION] = ACTIONS(3034), - [anon_sym_If] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_IF] = ACTIONS(3034), - [anon_sym_Import] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_IMPORT] = ACTIONS(3034), - [anon_sym_Include] = ACTIONS(3034), - [anon_sym_include] = ACTIONS(3034), - [anon_sym_INCLUDE] = ACTIONS(3034), - [anon_sym_Interface] = ACTIONS(3034), - [anon_sym_interface] = ACTIONS(3034), - [anon_sym_INTERFACE] = ACTIONS(3034), - [anon_sym_New] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3034), - [anon_sym_NEW] = ACTIONS(3034), - [anon_sym_Package] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_PACKAGE] = ACTIONS(3034), - [anon_sym_Private] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_PRIVATE] = ACTIONS(3034), - [anon_sym_Property] = ACTIONS(3034), - [anon_sym_property] = ACTIONS(3034), - [anon_sym_PROPERTY] = ACTIONS(3034), - [anon_sym_Public] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_PUBLIC] = ACTIONS(3034), - [anon_sym_Remote] = ACTIONS(3034), - [anon_sym_remote] = ACTIONS(3034), - [anon_sym_REMOTE] = ACTIONS(3034), - [anon_sym_Return] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3034), - [anon_sym_RETURN] = ACTIONS(3034), - [anon_sym_Static] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_STATIC] = ACTIONS(3034), - [anon_sym_Switch] = ACTIONS(3034), - [anon_sym_switch] = ACTIONS(3034), - [anon_sym_SWITCH] = ACTIONS(3034), - [anon_sym_Throw] = ACTIONS(3034), - [anon_sym_throw] = ACTIONS(3034), - [anon_sym_THROW] = ACTIONS(3034), - [anon_sym_Try] = ACTIONS(3034), - [anon_sym_try] = ACTIONS(3034), - [anon_sym_TRY] = ACTIONS(3034), - [anon_sym_Var] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [anon_sym_VAR] = ACTIONS(3034), - [anon_sym_While] = ACTIONS(3034), - [anon_sym_while] = ACTIONS(3034), - [anon_sym_WHILE] = ACTIONS(3034), - [anon_sym_With] = ACTIONS(3034), - [anon_sym_with] = ACTIONS(3034), - [anon_sym_WITH] = ACTIONS(3034), - [sym_cf_comment] = ACTIONS(3032), - [sym__java_block_open] = ACTIONS(3032), - [sym__static_type_prefix] = ACTIONS(3032), + [STATE(688)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_Query] = ACTIONS(2211), + [anon_sym_query] = ACTIONS(2211), + [anon_sym_QUERY] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2213), + [aux_sym_unary_operator_token1] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2211), + [aux_sym_number_token2] = ACTIONS(2211), + [anon_sym_This] = ACTIONS(2211), + [anon_sym_this] = ACTIONS(2211), + [anon_sym_THIS] = ACTIONS(2211), + [anon_sym_Super] = ACTIONS(2211), + [anon_sym_super] = ACTIONS(2211), + [anon_sym_SUPER] = ACTIONS(2211), + [anon_sym_True] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_TRUE] = ACTIONS(2211), + [anon_sym_False] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_FALSE] = ACTIONS(2211), + [anon_sym_Null] = ACTIONS(2211), + [anon_sym_null] = ACTIONS(2211), + [anon_sym_NULL] = ACTIONS(2211), + [anon_sym_Undefined] = ACTIONS(2211), + [anon_sym_undefined] = ACTIONS(2211), + [anon_sym_UNDEFINED] = ACTIONS(2211), + [anon_sym_get] = ACTIONS(2211), + [anon_sym_set] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [sym_hash_empty] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2211), + [anon_sym_QueryExecute] = ACTIONS(2211), + [anon_sym_queryexecute] = ACTIONS(2211), + [anon_sym_QUERYEXECUTE] = ACTIONS(2211), + [anon_sym_queryExecute] = ACTIONS(2211), + [anon_sym_BQUOTE] = ACTIONS(2213), + [anon_sym_Abstract] = ACTIONS(2211), + [anon_sym_abstract] = ACTIONS(2211), + [anon_sym_ABSTRACT] = ACTIONS(2211), + [anon_sym_Component] = ACTIONS(2211), + [anon_sym_component] = ACTIONS(2211), + [anon_sym_COMPONENT] = ACTIONS(2211), + [anon_sym_Debugger] = ACTIONS(2211), + [anon_sym_debugger] = ACTIONS(2211), + [anon_sym_DEBUGGER] = ACTIONS(2211), + [anon_sym_Final] = ACTIONS(2211), + [anon_sym_final] = ACTIONS(2211), + [anon_sym_FINAL] = ACTIONS(2211), + [anon_sym_Function] = ACTIONS(2211), + [anon_sym_function] = ACTIONS(2211), + [anon_sym_FUNCTION] = ACTIONS(2211), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_Include] = ACTIONS(2211), + [anon_sym_include] = ACTIONS(2211), + [anon_sym_INCLUDE] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [anon_sym_New] = ACTIONS(2211), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_NEW] = ACTIONS(2211), + [anon_sym_Package] = ACTIONS(2211), + [anon_sym_package] = ACTIONS(2211), + [anon_sym_PACKAGE] = ACTIONS(2211), + [anon_sym_Private] = ACTIONS(2211), + [anon_sym_private] = ACTIONS(2211), + [anon_sym_PRIVATE] = ACTIONS(2211), + [anon_sym_Public] = ACTIONS(2211), + [anon_sym_public] = ACTIONS(2211), + [anon_sym_PUBLIC] = ACTIONS(2211), + [anon_sym_Remote] = ACTIONS(2211), + [anon_sym_remote] = ACTIONS(2211), + [anon_sym_REMOTE] = ACTIONS(2211), + [anon_sym_Static] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_STATIC] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym__java_block_open] = ACTIONS(2213), + [sym__static_type_prefix] = ACTIONS(2213), }, - [STATE(695)] = { - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_RBRACE] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_SEMI] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_Query] = ACTIONS(3038), - [anon_sym_query] = ACTIONS(3038), - [anon_sym_QUERY] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3036), - [aux_sym_unary_operator_token1] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3036), - [anon_sym_DASH_DASH] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3036), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3038), - [aux_sym_number_token2] = ACTIONS(3036), - [anon_sym_This] = ACTIONS(3038), - [anon_sym_this] = ACTIONS(3038), - [anon_sym_THIS] = ACTIONS(3038), - [anon_sym_Super] = ACTIONS(3038), - [anon_sym_super] = ACTIONS(3038), - [anon_sym_SUPER] = ACTIONS(3038), - [anon_sym_True] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3038), - [anon_sym_TRUE] = ACTIONS(3038), - [anon_sym_False] = ACTIONS(3038), - [anon_sym_false] = ACTIONS(3038), - [anon_sym_FALSE] = ACTIONS(3038), - [anon_sym_Null] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3038), - [anon_sym_NULL] = ACTIONS(3038), - [anon_sym_Undefined] = ACTIONS(3038), - [anon_sym_undefined] = ACTIONS(3038), - [anon_sym_UNDEFINED] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(3038), - [anon_sym_set] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3038), - [sym_hash_empty] = ACTIONS(3036), - [anon_sym_export] = ACTIONS(3038), - [anon_sym_QueryExecute] = ACTIONS(3038), - [anon_sym_queryexecute] = ACTIONS(3038), - [anon_sym_QUERYEXECUTE] = ACTIONS(3038), - [anon_sym_queryExecute] = ACTIONS(3038), - [anon_sym_BQUOTE] = ACTIONS(3038), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3036), - [anon_sym_Abstract] = ACTIONS(3038), - [anon_sym_abstract] = ACTIONS(3038), - [anon_sym_ABSTRACT] = ACTIONS(3038), - [anon_sym_Break] = ACTIONS(3038), - [anon_sym_break] = ACTIONS(3038), - [anon_sym_BREAK] = ACTIONS(3038), - [anon_sym_Case] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_CASE] = ACTIONS(3038), - [anon_sym_Component] = ACTIONS(3038), - [anon_sym_component] = ACTIONS(3038), - [anon_sym_COMPONENT] = ACTIONS(3038), - [anon_sym_Continue] = ACTIONS(3038), - [anon_sym_continue] = ACTIONS(3038), - [anon_sym_CONTINUE] = ACTIONS(3038), - [anon_sym_Debugger] = ACTIONS(3038), - [anon_sym_debugger] = ACTIONS(3038), - [anon_sym_DEBUGGER] = ACTIONS(3038), - [anon_sym_Default] = ACTIONS(3038), - [anon_sym_default] = ACTIONS(3038), - [anon_sym_DEFAULT] = ACTIONS(3038), - [anon_sym_Do] = ACTIONS(3038), - [anon_sym_do] = ACTIONS(3038), - [anon_sym_DO] = ACTIONS(3038), - [anon_sym_Else] = ACTIONS(3038), - [anon_sym_else] = ACTIONS(3038), - [anon_sym_ELSE] = ACTIONS(3038), - [anon_sym_Final] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_FINAL] = ACTIONS(3038), - [anon_sym_For] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3038), - [anon_sym_FOR] = ACTIONS(3038), - [anon_sym_Function] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3038), - [anon_sym_FUNCTION] = ACTIONS(3038), - [anon_sym_If] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_IF] = ACTIONS(3038), - [anon_sym_Import] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_IMPORT] = ACTIONS(3038), - [anon_sym_Include] = ACTIONS(3038), - [anon_sym_include] = ACTIONS(3038), - [anon_sym_INCLUDE] = ACTIONS(3038), - [anon_sym_Interface] = ACTIONS(3038), - [anon_sym_interface] = ACTIONS(3038), - [anon_sym_INTERFACE] = ACTIONS(3038), - [anon_sym_New] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3038), - [anon_sym_NEW] = ACTIONS(3038), - [anon_sym_Package] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_PACKAGE] = ACTIONS(3038), - [anon_sym_Private] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_PRIVATE] = ACTIONS(3038), - [anon_sym_Property] = ACTIONS(3038), - [anon_sym_property] = ACTIONS(3038), - [anon_sym_PROPERTY] = ACTIONS(3038), - [anon_sym_Public] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_PUBLIC] = ACTIONS(3038), - [anon_sym_Remote] = ACTIONS(3038), - [anon_sym_remote] = ACTIONS(3038), - [anon_sym_REMOTE] = ACTIONS(3038), - [anon_sym_Return] = ACTIONS(3038), - [anon_sym_return] = ACTIONS(3038), - [anon_sym_RETURN] = ACTIONS(3038), - [anon_sym_Static] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_STATIC] = ACTIONS(3038), - [anon_sym_Switch] = ACTIONS(3038), - [anon_sym_switch] = ACTIONS(3038), - [anon_sym_SWITCH] = ACTIONS(3038), - [anon_sym_Throw] = ACTIONS(3038), - [anon_sym_throw] = ACTIONS(3038), - [anon_sym_THROW] = ACTIONS(3038), - [anon_sym_Try] = ACTIONS(3038), - [anon_sym_try] = ACTIONS(3038), - [anon_sym_TRY] = ACTIONS(3038), - [anon_sym_Var] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [anon_sym_VAR] = ACTIONS(3038), - [anon_sym_While] = ACTIONS(3038), - [anon_sym_while] = ACTIONS(3038), - [anon_sym_WHILE] = ACTIONS(3038), - [anon_sym_With] = ACTIONS(3038), - [anon_sym_with] = ACTIONS(3038), - [anon_sym_WITH] = ACTIONS(3038), - [sym_cf_comment] = ACTIONS(3036), - [sym__java_block_open] = ACTIONS(3036), - [sym__static_type_prefix] = ACTIONS(3036), + [STATE(689)] = { + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_Query] = ACTIONS(2256), + [anon_sym_query] = ACTIONS(2256), + [anon_sym_QUERY] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2260), + [sym_static_chain] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2260), + [aux_sym_unary_operator_token1] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2256), + [aux_sym_number_token2] = ACTIONS(2256), + [anon_sym_This] = ACTIONS(2256), + [anon_sym_this] = ACTIONS(2256), + [anon_sym_THIS] = ACTIONS(2256), + [anon_sym_Super] = ACTIONS(2256), + [anon_sym_super] = ACTIONS(2256), + [anon_sym_SUPER] = ACTIONS(2256), + [anon_sym_True] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_TRUE] = ACTIONS(2256), + [anon_sym_False] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_FALSE] = ACTIONS(2256), + [anon_sym_Null] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_NULL] = ACTIONS(2256), + [anon_sym_Undefined] = ACTIONS(2256), + [anon_sym_undefined] = ACTIONS(2256), + [anon_sym_UNDEFINED] = ACTIONS(2256), + [anon_sym_get] = ACTIONS(2256), + [anon_sym_set] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [sym_hash_empty] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2256), + [anon_sym_QueryExecute] = ACTIONS(2256), + [anon_sym_queryexecute] = ACTIONS(2256), + [anon_sym_QUERYEXECUTE] = ACTIONS(2256), + [anon_sym_queryExecute] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2260), + [anon_sym_Abstract] = ACTIONS(2256), + [anon_sym_abstract] = ACTIONS(2256), + [anon_sym_ABSTRACT] = ACTIONS(2256), + [anon_sym_Component] = ACTIONS(2256), + [anon_sym_component] = ACTIONS(2256), + [anon_sym_COMPONENT] = ACTIONS(2256), + [anon_sym_Debugger] = ACTIONS(2256), + [anon_sym_debugger] = ACTIONS(2256), + [anon_sym_DEBUGGER] = ACTIONS(2256), + [anon_sym_Final] = ACTIONS(2256), + [anon_sym_final] = ACTIONS(2256), + [anon_sym_FINAL] = ACTIONS(2256), + [anon_sym_Function] = ACTIONS(2256), + [anon_sym_function] = ACTIONS(2256), + [anon_sym_FUNCTION] = ACTIONS(2256), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_Include] = ACTIONS(2256), + [anon_sym_include] = ACTIONS(2256), + [anon_sym_INCLUDE] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [anon_sym_New] = ACTIONS(2256), + [anon_sym_new] = ACTIONS(2256), + [anon_sym_NEW] = ACTIONS(2256), + [anon_sym_Package] = ACTIONS(2256), + [anon_sym_package] = ACTIONS(2256), + [anon_sym_PACKAGE] = ACTIONS(2256), + [anon_sym_Private] = ACTIONS(2256), + [anon_sym_private] = ACTIONS(2256), + [anon_sym_PRIVATE] = ACTIONS(2256), + [anon_sym_Public] = ACTIONS(2256), + [anon_sym_public] = ACTIONS(2256), + [anon_sym_PUBLIC] = ACTIONS(2256), + [anon_sym_Remote] = ACTIONS(2256), + [anon_sym_remote] = ACTIONS(2256), + [anon_sym_REMOTE] = ACTIONS(2256), + [anon_sym_Static] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_STATIC] = ACTIONS(2256), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym__java_block_open] = ACTIONS(2260), + [sym__static_type_prefix] = ACTIONS(2260), }, - [STATE(696)] = { - [ts_builtin_sym_end] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_RBRACE] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_Query] = ACTIONS(2938), - [anon_sym_query] = ACTIONS(2938), - [anon_sym_QUERY] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_unary_operator_token1] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2938), - [aux_sym_number_token2] = ACTIONS(2936), - [anon_sym_This] = ACTIONS(2938), - [anon_sym_this] = ACTIONS(2938), - [anon_sym_THIS] = ACTIONS(2938), - [anon_sym_Super] = ACTIONS(2938), - [anon_sym_super] = ACTIONS(2938), - [anon_sym_SUPER] = ACTIONS(2938), - [anon_sym_True] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_TRUE] = ACTIONS(2938), - [anon_sym_False] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [anon_sym_FALSE] = ACTIONS(2938), - [anon_sym_Null] = ACTIONS(2938), - [anon_sym_null] = ACTIONS(2938), - [anon_sym_NULL] = ACTIONS(2938), - [anon_sym_Undefined] = ACTIONS(2938), - [anon_sym_undefined] = ACTIONS(2938), - [anon_sym_UNDEFINED] = ACTIONS(2938), - [anon_sym_get] = ACTIONS(2938), - [anon_sym_set] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [sym_hash_empty] = ACTIONS(2936), - [anon_sym_export] = ACTIONS(2938), - [anon_sym_QueryExecute] = ACTIONS(2938), - [anon_sym_queryexecute] = ACTIONS(2938), - [anon_sym_QUERYEXECUTE] = ACTIONS(2938), - [anon_sym_queryExecute] = ACTIONS(2938), - [anon_sym_BQUOTE] = ACTIONS(2938), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2936), - [anon_sym_Abstract] = ACTIONS(2938), - [anon_sym_abstract] = ACTIONS(2938), - [anon_sym_ABSTRACT] = ACTIONS(2938), - [anon_sym_Break] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_BREAK] = ACTIONS(2938), - [anon_sym_Case] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_CASE] = ACTIONS(2938), - [anon_sym_Component] = ACTIONS(2938), - [anon_sym_component] = ACTIONS(2938), - [anon_sym_COMPONENT] = ACTIONS(2938), - [anon_sym_Continue] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_CONTINUE] = ACTIONS(2938), - [anon_sym_Debugger] = ACTIONS(2938), - [anon_sym_debugger] = ACTIONS(2938), - [anon_sym_DEBUGGER] = ACTIONS(2938), - [anon_sym_Default] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_DEFAULT] = ACTIONS(2938), - [anon_sym_Do] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_DO] = ACTIONS(2938), - [anon_sym_Else] = ACTIONS(2938), - [anon_sym_else] = ACTIONS(2938), - [anon_sym_ELSE] = ACTIONS(2938), - [anon_sym_Final] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_FINAL] = ACTIONS(2938), - [anon_sym_For] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_FOR] = ACTIONS(2938), - [anon_sym_Function] = ACTIONS(2938), - [anon_sym_function] = ACTIONS(2938), - [anon_sym_FUNCTION] = ACTIONS(2938), - [anon_sym_If] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_IF] = ACTIONS(2938), - [anon_sym_Import] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2938), - [anon_sym_IMPORT] = ACTIONS(2938), - [anon_sym_Include] = ACTIONS(2938), - [anon_sym_include] = ACTIONS(2938), - [anon_sym_INCLUDE] = ACTIONS(2938), - [anon_sym_Interface] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2938), - [anon_sym_INTERFACE] = ACTIONS(2938), - [anon_sym_New] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(2938), - [anon_sym_NEW] = ACTIONS(2938), - [anon_sym_Package] = ACTIONS(2938), - [anon_sym_package] = ACTIONS(2938), - [anon_sym_PACKAGE] = ACTIONS(2938), - [anon_sym_Private] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_PRIVATE] = ACTIONS(2938), - [anon_sym_Property] = ACTIONS(2938), - [anon_sym_property] = ACTIONS(2938), - [anon_sym_PROPERTY] = ACTIONS(2938), - [anon_sym_Public] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_PUBLIC] = ACTIONS(2938), - [anon_sym_Remote] = ACTIONS(2938), - [anon_sym_remote] = ACTIONS(2938), - [anon_sym_REMOTE] = ACTIONS(2938), - [anon_sym_Return] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_RETURN] = ACTIONS(2938), - [anon_sym_Static] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_STATIC] = ACTIONS(2938), - [anon_sym_Switch] = ACTIONS(2938), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_SWITCH] = ACTIONS(2938), - [anon_sym_Throw] = ACTIONS(2938), - [anon_sym_throw] = ACTIONS(2938), - [anon_sym_THROW] = ACTIONS(2938), - [anon_sym_Try] = ACTIONS(2938), - [anon_sym_try] = ACTIONS(2938), - [anon_sym_TRY] = ACTIONS(2938), - [anon_sym_Var] = ACTIONS(2938), - [anon_sym_var] = ACTIONS(2938), - [anon_sym_VAR] = ACTIONS(2938), - [anon_sym_While] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_WHILE] = ACTIONS(2938), - [anon_sym_With] = ACTIONS(2938), - [anon_sym_with] = ACTIONS(2938), - [anon_sym_WITH] = ACTIONS(2938), - [sym_cf_comment] = ACTIONS(2936), - [sym__java_block_open] = ACTIONS(2936), - [sym__static_type_prefix] = ACTIONS(2936), + [STATE(690)] = { + [sym_identifier] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_Query] = ACTIONS(2274), + [anon_sym_query] = ACTIONS(2274), + [anon_sym_QUERY] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), + [sym_optional_chain] = ACTIONS(2276), + [sym_static_chain] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_BSLASH] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT_EQ] = ACTIONS(2276), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2276), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), + [aux_sym_binary_expression_token1] = ACTIONS(2276), + [anon_sym_GT_EQ] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2274), + [aux_sym_binary_expression_token2] = ACTIONS(2274), + [aux_sym_binary_expression_token3] = ACTIONS(2274), + [aux_sym_binary_expression_token4] = ACTIONS(2276), + [aux_sym_binary_expression_token5] = ACTIONS(2276), + [aux_sym_binary_expression_token6] = ACTIONS(2276), + [anon_sym_QMARK_QMARK] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2276), + [aux_sym_unary_operator_token1] = ACTIONS(2274), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2274), + [aux_sym_number_token2] = ACTIONS(2274), + [anon_sym_This] = ACTIONS(2274), + [anon_sym_this] = ACTIONS(2274), + [anon_sym_THIS] = ACTIONS(2274), + [anon_sym_Super] = ACTIONS(2274), + [anon_sym_super] = ACTIONS(2274), + [anon_sym_SUPER] = ACTIONS(2274), + [anon_sym_True] = ACTIONS(2274), + [anon_sym_true] = ACTIONS(2274), + [anon_sym_TRUE] = ACTIONS(2274), + [anon_sym_False] = ACTIONS(2274), + [anon_sym_false] = ACTIONS(2274), + [anon_sym_FALSE] = ACTIONS(2274), + [anon_sym_Null] = ACTIONS(2274), + [anon_sym_null] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2274), + [anon_sym_Undefined] = ACTIONS(2274), + [anon_sym_undefined] = ACTIONS(2274), + [anon_sym_UNDEFINED] = ACTIONS(2274), + [anon_sym_get] = ACTIONS(2274), + [anon_sym_set] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(2274), + [sym_hash_empty] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_QueryExecute] = ACTIONS(2274), + [anon_sym_queryexecute] = ACTIONS(2274), + [anon_sym_QUERYEXECUTE] = ACTIONS(2274), + [anon_sym_queryExecute] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2276), + [anon_sym_Abstract] = ACTIONS(2274), + [anon_sym_abstract] = ACTIONS(2274), + [anon_sym_ABSTRACT] = ACTIONS(2274), + [anon_sym_Component] = ACTIONS(2274), + [anon_sym_component] = ACTIONS(2274), + [anon_sym_COMPONENT] = ACTIONS(2274), + [anon_sym_Debugger] = ACTIONS(2274), + [anon_sym_debugger] = ACTIONS(2274), + [anon_sym_DEBUGGER] = ACTIONS(2274), + [anon_sym_Final] = ACTIONS(2274), + [anon_sym_final] = ACTIONS(2274), + [anon_sym_FINAL] = ACTIONS(2274), + [anon_sym_Function] = ACTIONS(2274), + [anon_sym_function] = ACTIONS(2274), + [anon_sym_FUNCTION] = ACTIONS(2274), + [anon_sym_In] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_IN] = ACTIONS(2274), + [anon_sym_Include] = ACTIONS(2274), + [anon_sym_include] = ACTIONS(2274), + [anon_sym_INCLUDE] = ACTIONS(2274), + [anon_sym_InstanceOf] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_INSTANCEOF] = ACTIONS(2274), + [anon_sym_instanceOf] = ACTIONS(2274), + [anon_sym_New] = ACTIONS(2274), + [anon_sym_new] = ACTIONS(2274), + [anon_sym_NEW] = ACTIONS(2274), + [anon_sym_Package] = ACTIONS(2274), + [anon_sym_package] = ACTIONS(2274), + [anon_sym_PACKAGE] = ACTIONS(2274), + [anon_sym_Private] = ACTIONS(2274), + [anon_sym_private] = ACTIONS(2274), + [anon_sym_PRIVATE] = ACTIONS(2274), + [anon_sym_Public] = ACTIONS(2274), + [anon_sym_public] = ACTIONS(2274), + [anon_sym_PUBLIC] = ACTIONS(2274), + [anon_sym_Remote] = ACTIONS(2274), + [anon_sym_remote] = ACTIONS(2274), + [anon_sym_REMOTE] = ACTIONS(2274), + [anon_sym_Static] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_STATIC] = ACTIONS(2274), + [sym__ternary_qmark] = ACTIONS(2276), + [sym__elvis_operator] = ACTIONS(2276), + [sym_logical_or] = ACTIONS(2276), + [sym__java_block_open] = ACTIONS(2276), + [sym__static_type_prefix] = ACTIONS(2276), }, - [STATE(697)] = { + [STATE(691)] = { [sym_identifier] = ACTIONS(2244), [anon_sym_DOT] = ACTIONS(2246), [anon_sym_STAR] = ACTIONS(2244), [anon_sym_LBRACE] = ACTIONS(2246), [anon_sym_LPAREN] = ACTIONS(2246), [anon_sym_let] = ACTIONS(2244), - [anon_sym_EQ] = ACTIONS(2248), + [anon_sym_COLON] = ACTIONS(2244), [anon_sym_LBRACK] = ACTIONS(2246), [anon_sym_Query] = ACTIONS(2244), [anon_sym_query] = ACTIONS(2244), @@ -150990,1494 +150233,902 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2246), [sym__static_type_prefix] = ACTIONS(2246), }, - [STATE(698)] = { - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_RBRACE] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_Query] = ACTIONS(3042), - [anon_sym_query] = ACTIONS(3042), - [anon_sym_QUERY] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_unary_operator_token1] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3040), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3042), - [aux_sym_number_token2] = ACTIONS(3040), - [anon_sym_This] = ACTIONS(3042), - [anon_sym_this] = ACTIONS(3042), - [anon_sym_THIS] = ACTIONS(3042), - [anon_sym_Super] = ACTIONS(3042), - [anon_sym_super] = ACTIONS(3042), - [anon_sym_SUPER] = ACTIONS(3042), - [anon_sym_True] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3042), - [anon_sym_TRUE] = ACTIONS(3042), - [anon_sym_False] = ACTIONS(3042), - [anon_sym_false] = ACTIONS(3042), - [anon_sym_FALSE] = ACTIONS(3042), - [anon_sym_Null] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_NULL] = ACTIONS(3042), - [anon_sym_Undefined] = ACTIONS(3042), - [anon_sym_undefined] = ACTIONS(3042), - [anon_sym_UNDEFINED] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(3042), - [anon_sym_set] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [sym_hash_empty] = ACTIONS(3040), - [anon_sym_export] = ACTIONS(3042), - [anon_sym_QueryExecute] = ACTIONS(3042), - [anon_sym_queryexecute] = ACTIONS(3042), - [anon_sym_QUERYEXECUTE] = ACTIONS(3042), - [anon_sym_queryExecute] = ACTIONS(3042), - [anon_sym_BQUOTE] = ACTIONS(3042), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3040), - [anon_sym_Abstract] = ACTIONS(3042), - [anon_sym_abstract] = ACTIONS(3042), - [anon_sym_ABSTRACT] = ACTIONS(3042), - [anon_sym_Break] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_BREAK] = ACTIONS(3042), - [anon_sym_Case] = ACTIONS(3042), - [anon_sym_case] = ACTIONS(3042), - [anon_sym_CASE] = ACTIONS(3042), - [anon_sym_Component] = ACTIONS(3042), - [anon_sym_component] = ACTIONS(3042), - [anon_sym_COMPONENT] = ACTIONS(3042), - [anon_sym_Continue] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_CONTINUE] = ACTIONS(3042), - [anon_sym_Debugger] = ACTIONS(3042), - [anon_sym_debugger] = ACTIONS(3042), - [anon_sym_DEBUGGER] = ACTIONS(3042), - [anon_sym_Default] = ACTIONS(3042), - [anon_sym_default] = ACTIONS(3042), - [anon_sym_DEFAULT] = ACTIONS(3042), - [anon_sym_Do] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_DO] = ACTIONS(3042), - [anon_sym_Else] = ACTIONS(3042), - [anon_sym_else] = ACTIONS(3042), - [anon_sym_ELSE] = ACTIONS(3042), - [anon_sym_Final] = ACTIONS(3042), - [anon_sym_final] = ACTIONS(3042), - [anon_sym_FINAL] = ACTIONS(3042), - [anon_sym_For] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_FOR] = ACTIONS(3042), - [anon_sym_Function] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_FUNCTION] = ACTIONS(3042), - [anon_sym_If] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_IF] = ACTIONS(3042), - [anon_sym_Import] = ACTIONS(3042), - [anon_sym_import] = ACTIONS(3042), - [anon_sym_IMPORT] = ACTIONS(3042), - [anon_sym_Include] = ACTIONS(3042), - [anon_sym_include] = ACTIONS(3042), - [anon_sym_INCLUDE] = ACTIONS(3042), - [anon_sym_Interface] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_INTERFACE] = ACTIONS(3042), - [anon_sym_New] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_NEW] = ACTIONS(3042), - [anon_sym_Package] = ACTIONS(3042), - [anon_sym_package] = ACTIONS(3042), - [anon_sym_PACKAGE] = ACTIONS(3042), - [anon_sym_Private] = ACTIONS(3042), - [anon_sym_private] = ACTIONS(3042), - [anon_sym_PRIVATE] = ACTIONS(3042), - [anon_sym_Property] = ACTIONS(3042), - [anon_sym_property] = ACTIONS(3042), - [anon_sym_PROPERTY] = ACTIONS(3042), - [anon_sym_Public] = ACTIONS(3042), - [anon_sym_public] = ACTIONS(3042), - [anon_sym_PUBLIC] = ACTIONS(3042), - [anon_sym_Remote] = ACTIONS(3042), - [anon_sym_remote] = ACTIONS(3042), - [anon_sym_REMOTE] = ACTIONS(3042), - [anon_sym_Return] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_RETURN] = ACTIONS(3042), - [anon_sym_Static] = ACTIONS(3042), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_STATIC] = ACTIONS(3042), - [anon_sym_Switch] = ACTIONS(3042), - [anon_sym_switch] = ACTIONS(3042), - [anon_sym_SWITCH] = ACTIONS(3042), - [anon_sym_Throw] = ACTIONS(3042), - [anon_sym_throw] = ACTIONS(3042), - [anon_sym_THROW] = ACTIONS(3042), - [anon_sym_Try] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_TRY] = ACTIONS(3042), - [anon_sym_Var] = ACTIONS(3042), - [anon_sym_var] = ACTIONS(3042), - [anon_sym_VAR] = ACTIONS(3042), - [anon_sym_While] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_WHILE] = ACTIONS(3042), - [anon_sym_With] = ACTIONS(3042), - [anon_sym_with] = ACTIONS(3042), - [anon_sym_WITH] = ACTIONS(3042), - [sym_cf_comment] = ACTIONS(3040), - [sym__java_block_open] = ACTIONS(3040), - [sym__static_type_prefix] = ACTIONS(3040), - }, - [STATE(699)] = { - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_RBRACE] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_Query] = ACTIONS(3046), - [anon_sym_query] = ACTIONS(3046), - [anon_sym_QUERY] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3044), - [aux_sym_unary_operator_token1] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3044), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3046), - [aux_sym_number_token2] = ACTIONS(3044), - [anon_sym_This] = ACTIONS(3046), - [anon_sym_this] = ACTIONS(3046), - [anon_sym_THIS] = ACTIONS(3046), - [anon_sym_Super] = ACTIONS(3046), - [anon_sym_super] = ACTIONS(3046), - [anon_sym_SUPER] = ACTIONS(3046), - [anon_sym_True] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3046), - [anon_sym_TRUE] = ACTIONS(3046), - [anon_sym_False] = ACTIONS(3046), - [anon_sym_false] = ACTIONS(3046), - [anon_sym_FALSE] = ACTIONS(3046), - [anon_sym_Null] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3046), - [anon_sym_NULL] = ACTIONS(3046), - [anon_sym_Undefined] = ACTIONS(3046), - [anon_sym_undefined] = ACTIONS(3046), - [anon_sym_UNDEFINED] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(3046), - [anon_sym_set] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [sym_hash_empty] = ACTIONS(3044), - [anon_sym_export] = ACTIONS(3046), - [anon_sym_QueryExecute] = ACTIONS(3046), - [anon_sym_queryexecute] = ACTIONS(3046), - [anon_sym_QUERYEXECUTE] = ACTIONS(3046), - [anon_sym_queryExecute] = ACTIONS(3046), - [anon_sym_BQUOTE] = ACTIONS(3046), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3044), - [anon_sym_Abstract] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_ABSTRACT] = ACTIONS(3046), - [anon_sym_Break] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_BREAK] = ACTIONS(3046), - [anon_sym_Case] = ACTIONS(3046), - [anon_sym_case] = ACTIONS(3046), - [anon_sym_CASE] = ACTIONS(3046), - [anon_sym_Component] = ACTIONS(3046), - [anon_sym_component] = ACTIONS(3046), - [anon_sym_COMPONENT] = ACTIONS(3046), - [anon_sym_Continue] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_CONTINUE] = ACTIONS(3046), - [anon_sym_Debugger] = ACTIONS(3046), - [anon_sym_debugger] = ACTIONS(3046), - [anon_sym_DEBUGGER] = ACTIONS(3046), - [anon_sym_Default] = ACTIONS(3046), - [anon_sym_default] = ACTIONS(3046), - [anon_sym_DEFAULT] = ACTIONS(3046), - [anon_sym_Do] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_DO] = ACTIONS(3046), - [anon_sym_Else] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3046), - [anon_sym_ELSE] = ACTIONS(3046), - [anon_sym_Final] = ACTIONS(3046), - [anon_sym_final] = ACTIONS(3046), - [anon_sym_FINAL] = ACTIONS(3046), - [anon_sym_For] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_FOR] = ACTIONS(3046), - [anon_sym_Function] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_FUNCTION] = ACTIONS(3046), - [anon_sym_If] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_IF] = ACTIONS(3046), - [anon_sym_Import] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_IMPORT] = ACTIONS(3046), - [anon_sym_Include] = ACTIONS(3046), - [anon_sym_include] = ACTIONS(3046), - [anon_sym_INCLUDE] = ACTIONS(3046), - [anon_sym_Interface] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_INTERFACE] = ACTIONS(3046), - [anon_sym_New] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_NEW] = ACTIONS(3046), - [anon_sym_Package] = ACTIONS(3046), - [anon_sym_package] = ACTIONS(3046), - [anon_sym_PACKAGE] = ACTIONS(3046), - [anon_sym_Private] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_PRIVATE] = ACTIONS(3046), - [anon_sym_Property] = ACTIONS(3046), - [anon_sym_property] = ACTIONS(3046), - [anon_sym_PROPERTY] = ACTIONS(3046), - [anon_sym_Public] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_PUBLIC] = ACTIONS(3046), - [anon_sym_Remote] = ACTIONS(3046), - [anon_sym_remote] = ACTIONS(3046), - [anon_sym_REMOTE] = ACTIONS(3046), - [anon_sym_Return] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_RETURN] = ACTIONS(3046), - [anon_sym_Static] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_STATIC] = ACTIONS(3046), - [anon_sym_Switch] = ACTIONS(3046), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_SWITCH] = ACTIONS(3046), - [anon_sym_Throw] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_THROW] = ACTIONS(3046), - [anon_sym_Try] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_TRY] = ACTIONS(3046), - [anon_sym_Var] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [anon_sym_VAR] = ACTIONS(3046), - [anon_sym_While] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_WHILE] = ACTIONS(3046), - [anon_sym_With] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_WITH] = ACTIONS(3046), - [sym_cf_comment] = ACTIONS(3044), - [sym__java_block_open] = ACTIONS(3044), - [sym__static_type_prefix] = ACTIONS(3044), - }, - [STATE(700)] = { - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_RBRACE] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_Query] = ACTIONS(3050), - [anon_sym_query] = ACTIONS(3050), - [anon_sym_QUERY] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3048), - [aux_sym_unary_operator_token1] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3048), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3050), - [aux_sym_number_token2] = ACTIONS(3048), - [anon_sym_This] = ACTIONS(3050), - [anon_sym_this] = ACTIONS(3050), - [anon_sym_THIS] = ACTIONS(3050), - [anon_sym_Super] = ACTIONS(3050), - [anon_sym_super] = ACTIONS(3050), - [anon_sym_SUPER] = ACTIONS(3050), - [anon_sym_True] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3050), - [anon_sym_TRUE] = ACTIONS(3050), - [anon_sym_False] = ACTIONS(3050), - [anon_sym_false] = ACTIONS(3050), - [anon_sym_FALSE] = ACTIONS(3050), - [anon_sym_Null] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3050), - [anon_sym_NULL] = ACTIONS(3050), - [anon_sym_Undefined] = ACTIONS(3050), - [anon_sym_undefined] = ACTIONS(3050), - [anon_sym_UNDEFINED] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(3050), - [anon_sym_set] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [sym_hash_empty] = ACTIONS(3048), - [anon_sym_export] = ACTIONS(3050), - [anon_sym_QueryExecute] = ACTIONS(3050), - [anon_sym_queryexecute] = ACTIONS(3050), - [anon_sym_QUERYEXECUTE] = ACTIONS(3050), - [anon_sym_queryExecute] = ACTIONS(3050), - [anon_sym_BQUOTE] = ACTIONS(3050), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3048), - [anon_sym_Abstract] = ACTIONS(3050), - [anon_sym_abstract] = ACTIONS(3050), - [anon_sym_ABSTRACT] = ACTIONS(3050), - [anon_sym_Break] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_BREAK] = ACTIONS(3050), - [anon_sym_Case] = ACTIONS(3050), - [anon_sym_case] = ACTIONS(3050), - [anon_sym_CASE] = ACTIONS(3050), - [anon_sym_Component] = ACTIONS(3050), - [anon_sym_component] = ACTIONS(3050), - [anon_sym_COMPONENT] = ACTIONS(3050), - [anon_sym_Continue] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_CONTINUE] = ACTIONS(3050), - [anon_sym_Debugger] = ACTIONS(3050), - [anon_sym_debugger] = ACTIONS(3050), - [anon_sym_DEBUGGER] = ACTIONS(3050), - [anon_sym_Default] = ACTIONS(3050), - [anon_sym_default] = ACTIONS(3050), - [anon_sym_DEFAULT] = ACTIONS(3050), - [anon_sym_Do] = ACTIONS(3050), - [anon_sym_do] = ACTIONS(3050), - [anon_sym_DO] = ACTIONS(3050), - [anon_sym_Else] = ACTIONS(3050), - [anon_sym_else] = ACTIONS(3050), - [anon_sym_ELSE] = ACTIONS(3050), - [anon_sym_Final] = ACTIONS(3050), - [anon_sym_final] = ACTIONS(3050), - [anon_sym_FINAL] = ACTIONS(3050), - [anon_sym_For] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_FOR] = ACTIONS(3050), - [anon_sym_Function] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3050), - [anon_sym_FUNCTION] = ACTIONS(3050), - [anon_sym_If] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_IF] = ACTIONS(3050), - [anon_sym_Import] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(3050), - [anon_sym_IMPORT] = ACTIONS(3050), - [anon_sym_Include] = ACTIONS(3050), - [anon_sym_include] = ACTIONS(3050), - [anon_sym_INCLUDE] = ACTIONS(3050), - [anon_sym_Interface] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_INTERFACE] = ACTIONS(3050), - [anon_sym_New] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3050), - [anon_sym_NEW] = ACTIONS(3050), - [anon_sym_Package] = ACTIONS(3050), - [anon_sym_package] = ACTIONS(3050), - [anon_sym_PACKAGE] = ACTIONS(3050), - [anon_sym_Private] = ACTIONS(3050), - [anon_sym_private] = ACTIONS(3050), - [anon_sym_PRIVATE] = ACTIONS(3050), - [anon_sym_Property] = ACTIONS(3050), - [anon_sym_property] = ACTIONS(3050), - [anon_sym_PROPERTY] = ACTIONS(3050), - [anon_sym_Public] = ACTIONS(3050), - [anon_sym_public] = ACTIONS(3050), - [anon_sym_PUBLIC] = ACTIONS(3050), - [anon_sym_Remote] = ACTIONS(3050), - [anon_sym_remote] = ACTIONS(3050), - [anon_sym_REMOTE] = ACTIONS(3050), - [anon_sym_Return] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_RETURN] = ACTIONS(3050), - [anon_sym_Static] = ACTIONS(3050), - [anon_sym_static] = ACTIONS(3050), - [anon_sym_STATIC] = ACTIONS(3050), - [anon_sym_Switch] = ACTIONS(3050), - [anon_sym_switch] = ACTIONS(3050), - [anon_sym_SWITCH] = ACTIONS(3050), - [anon_sym_Throw] = ACTIONS(3050), - [anon_sym_throw] = ACTIONS(3050), - [anon_sym_THROW] = ACTIONS(3050), - [anon_sym_Try] = ACTIONS(3050), - [anon_sym_try] = ACTIONS(3050), - [anon_sym_TRY] = ACTIONS(3050), - [anon_sym_Var] = ACTIONS(3050), - [anon_sym_var] = ACTIONS(3050), - [anon_sym_VAR] = ACTIONS(3050), - [anon_sym_While] = ACTIONS(3050), - [anon_sym_while] = ACTIONS(3050), - [anon_sym_WHILE] = ACTIONS(3050), - [anon_sym_With] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3050), - [anon_sym_WITH] = ACTIONS(3050), - [sym_cf_comment] = ACTIONS(3048), - [sym__java_block_open] = ACTIONS(3048), - [sym__static_type_prefix] = ACTIONS(3048), - }, - [STATE(701)] = { - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_Query] = ACTIONS(3054), - [anon_sym_query] = ACTIONS(3054), - [anon_sym_QUERY] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_unary_operator_token1] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3054), - [aux_sym_number_token2] = ACTIONS(3052), - [anon_sym_This] = ACTIONS(3054), - [anon_sym_this] = ACTIONS(3054), - [anon_sym_THIS] = ACTIONS(3054), - [anon_sym_Super] = ACTIONS(3054), - [anon_sym_super] = ACTIONS(3054), - [anon_sym_SUPER] = ACTIONS(3054), - [anon_sym_True] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3054), - [anon_sym_TRUE] = ACTIONS(3054), - [anon_sym_False] = ACTIONS(3054), - [anon_sym_false] = ACTIONS(3054), - [anon_sym_FALSE] = ACTIONS(3054), - [anon_sym_Null] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_NULL] = ACTIONS(3054), - [anon_sym_Undefined] = ACTIONS(3054), - [anon_sym_undefined] = ACTIONS(3054), - [anon_sym_UNDEFINED] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(3054), - [anon_sym_set] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [sym_hash_empty] = ACTIONS(3052), - [anon_sym_export] = ACTIONS(3054), - [anon_sym_QueryExecute] = ACTIONS(3054), - [anon_sym_queryexecute] = ACTIONS(3054), - [anon_sym_QUERYEXECUTE] = ACTIONS(3054), - [anon_sym_queryExecute] = ACTIONS(3054), - [anon_sym_BQUOTE] = ACTIONS(3054), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3052), - [anon_sym_Abstract] = ACTIONS(3054), - [anon_sym_abstract] = ACTIONS(3054), - [anon_sym_ABSTRACT] = ACTIONS(3054), - [anon_sym_Break] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_BREAK] = ACTIONS(3054), - [anon_sym_Case] = ACTIONS(3054), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_CASE] = ACTIONS(3054), - [anon_sym_Component] = ACTIONS(3054), - [anon_sym_component] = ACTIONS(3054), - [anon_sym_COMPONENT] = ACTIONS(3054), - [anon_sym_Continue] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_CONTINUE] = ACTIONS(3054), - [anon_sym_Debugger] = ACTIONS(3054), - [anon_sym_debugger] = ACTIONS(3054), - [anon_sym_DEBUGGER] = ACTIONS(3054), - [anon_sym_Default] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_DEFAULT] = ACTIONS(3054), - [anon_sym_Do] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_DO] = ACTIONS(3054), - [anon_sym_Else] = ACTIONS(3054), - [anon_sym_else] = ACTIONS(3054), - [anon_sym_ELSE] = ACTIONS(3054), - [anon_sym_Final] = ACTIONS(3054), - [anon_sym_final] = ACTIONS(3054), - [anon_sym_FINAL] = ACTIONS(3054), - [anon_sym_For] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_FOR] = ACTIONS(3054), - [anon_sym_Function] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_FUNCTION] = ACTIONS(3054), - [anon_sym_If] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_IF] = ACTIONS(3054), - [anon_sym_Import] = ACTIONS(3054), - [anon_sym_import] = ACTIONS(3054), - [anon_sym_IMPORT] = ACTIONS(3054), - [anon_sym_Include] = ACTIONS(3054), - [anon_sym_include] = ACTIONS(3054), - [anon_sym_INCLUDE] = ACTIONS(3054), - [anon_sym_Interface] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_INTERFACE] = ACTIONS(3054), - [anon_sym_New] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_NEW] = ACTIONS(3054), - [anon_sym_Package] = ACTIONS(3054), - [anon_sym_package] = ACTIONS(3054), - [anon_sym_PACKAGE] = ACTIONS(3054), - [anon_sym_Private] = ACTIONS(3054), - [anon_sym_private] = ACTIONS(3054), - [anon_sym_PRIVATE] = ACTIONS(3054), - [anon_sym_Property] = ACTIONS(3054), - [anon_sym_property] = ACTIONS(3054), - [anon_sym_PROPERTY] = ACTIONS(3054), - [anon_sym_Public] = ACTIONS(3054), - [anon_sym_public] = ACTIONS(3054), - [anon_sym_PUBLIC] = ACTIONS(3054), - [anon_sym_Remote] = ACTIONS(3054), - [anon_sym_remote] = ACTIONS(3054), - [anon_sym_REMOTE] = ACTIONS(3054), - [anon_sym_Return] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_RETURN] = ACTIONS(3054), - [anon_sym_Static] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_STATIC] = ACTIONS(3054), - [anon_sym_Switch] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_SWITCH] = ACTIONS(3054), - [anon_sym_Throw] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_THROW] = ACTIONS(3054), - [anon_sym_Try] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_TRY] = ACTIONS(3054), - [anon_sym_Var] = ACTIONS(3054), - [anon_sym_var] = ACTIONS(3054), - [anon_sym_VAR] = ACTIONS(3054), - [anon_sym_While] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_WHILE] = ACTIONS(3054), - [anon_sym_With] = ACTIONS(3054), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_WITH] = ACTIONS(3054), - [sym_cf_comment] = ACTIONS(3052), - [sym__java_block_open] = ACTIONS(3052), - [sym__static_type_prefix] = ACTIONS(3052), - }, - [STATE(702)] = { - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_Query] = ACTIONS(3058), - [anon_sym_query] = ACTIONS(3058), - [anon_sym_QUERY] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_unary_operator_token1] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3058), - [aux_sym_number_token2] = ACTIONS(3056), - [anon_sym_This] = ACTIONS(3058), - [anon_sym_this] = ACTIONS(3058), - [anon_sym_THIS] = ACTIONS(3058), - [anon_sym_Super] = ACTIONS(3058), - [anon_sym_super] = ACTIONS(3058), - [anon_sym_SUPER] = ACTIONS(3058), - [anon_sym_True] = ACTIONS(3058), - [anon_sym_true] = ACTIONS(3058), - [anon_sym_TRUE] = ACTIONS(3058), - [anon_sym_False] = ACTIONS(3058), - [anon_sym_false] = ACTIONS(3058), - [anon_sym_FALSE] = ACTIONS(3058), - [anon_sym_Null] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_NULL] = ACTIONS(3058), - [anon_sym_Undefined] = ACTIONS(3058), - [anon_sym_undefined] = ACTIONS(3058), - [anon_sym_UNDEFINED] = ACTIONS(3058), - [anon_sym_get] = ACTIONS(3058), - [anon_sym_set] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [sym_hash_empty] = ACTIONS(3056), - [anon_sym_export] = ACTIONS(3058), - [anon_sym_QueryExecute] = ACTIONS(3058), - [anon_sym_queryexecute] = ACTIONS(3058), - [anon_sym_QUERYEXECUTE] = ACTIONS(3058), - [anon_sym_queryExecute] = ACTIONS(3058), - [anon_sym_BQUOTE] = ACTIONS(3058), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3056), - [anon_sym_Abstract] = ACTIONS(3058), - [anon_sym_abstract] = ACTIONS(3058), - [anon_sym_ABSTRACT] = ACTIONS(3058), - [anon_sym_Break] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_BREAK] = ACTIONS(3058), - [anon_sym_Case] = ACTIONS(3058), - [anon_sym_case] = ACTIONS(3058), - [anon_sym_CASE] = ACTIONS(3058), - [anon_sym_Component] = ACTIONS(3058), - [anon_sym_component] = ACTIONS(3058), - [anon_sym_COMPONENT] = ACTIONS(3058), - [anon_sym_Continue] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_CONTINUE] = ACTIONS(3058), - [anon_sym_Debugger] = ACTIONS(3058), - [anon_sym_debugger] = ACTIONS(3058), - [anon_sym_DEBUGGER] = ACTIONS(3058), - [anon_sym_Default] = ACTIONS(3058), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_DEFAULT] = ACTIONS(3058), - [anon_sym_Do] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_DO] = ACTIONS(3058), - [anon_sym_Else] = ACTIONS(3058), - [anon_sym_else] = ACTIONS(3058), - [anon_sym_ELSE] = ACTIONS(3058), - [anon_sym_Final] = ACTIONS(3058), - [anon_sym_final] = ACTIONS(3058), - [anon_sym_FINAL] = ACTIONS(3058), - [anon_sym_For] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_FOR] = ACTIONS(3058), - [anon_sym_Function] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_FUNCTION] = ACTIONS(3058), - [anon_sym_If] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_IF] = ACTIONS(3058), - [anon_sym_Import] = ACTIONS(3058), - [anon_sym_import] = ACTIONS(3058), - [anon_sym_IMPORT] = ACTIONS(3058), - [anon_sym_Include] = ACTIONS(3058), - [anon_sym_include] = ACTIONS(3058), - [anon_sym_INCLUDE] = ACTIONS(3058), - [anon_sym_Interface] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_INTERFACE] = ACTIONS(3058), - [anon_sym_New] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_NEW] = ACTIONS(3058), - [anon_sym_Package] = ACTIONS(3058), - [anon_sym_package] = ACTIONS(3058), - [anon_sym_PACKAGE] = ACTIONS(3058), - [anon_sym_Private] = ACTIONS(3058), - [anon_sym_private] = ACTIONS(3058), - [anon_sym_PRIVATE] = ACTIONS(3058), - [anon_sym_Property] = ACTIONS(3058), - [anon_sym_property] = ACTIONS(3058), - [anon_sym_PROPERTY] = ACTIONS(3058), - [anon_sym_Public] = ACTIONS(3058), - [anon_sym_public] = ACTIONS(3058), - [anon_sym_PUBLIC] = ACTIONS(3058), - [anon_sym_Remote] = ACTIONS(3058), - [anon_sym_remote] = ACTIONS(3058), - [anon_sym_REMOTE] = ACTIONS(3058), - [anon_sym_Return] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_RETURN] = ACTIONS(3058), - [anon_sym_Static] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_STATIC] = ACTIONS(3058), - [anon_sym_Switch] = ACTIONS(3058), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_SWITCH] = ACTIONS(3058), - [anon_sym_Throw] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_THROW] = ACTIONS(3058), - [anon_sym_Try] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_TRY] = ACTIONS(3058), - [anon_sym_Var] = ACTIONS(3058), - [anon_sym_var] = ACTIONS(3058), - [anon_sym_VAR] = ACTIONS(3058), - [anon_sym_While] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_WHILE] = ACTIONS(3058), - [anon_sym_With] = ACTIONS(3058), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_WITH] = ACTIONS(3058), - [sym_cf_comment] = ACTIONS(3056), - [sym__java_block_open] = ACTIONS(3056), - [sym__static_type_prefix] = ACTIONS(3056), + [STATE(692)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_Query] = ACTIONS(1947), + [anon_sym_query] = ACTIONS(1947), + [anon_sym_QUERY] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1947), + [sym_optional_chain] = ACTIONS(1955), + [sym_static_chain] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_BSLASH] = ACTIONS(1947), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_LT_GT] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [aux_sym_binary_expression_token1] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1947), + [aux_sym_binary_expression_token2] = ACTIONS(1947), + [aux_sym_binary_expression_token3] = ACTIONS(1947), + [aux_sym_binary_expression_token4] = ACTIONS(1955), + [aux_sym_binary_expression_token5] = ACTIONS(1955), + [aux_sym_binary_expression_token6] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1955), + [aux_sym_unary_operator_token1] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1947), + [aux_sym_number_token2] = ACTIONS(1947), + [anon_sym_This] = ACTIONS(1947), + [anon_sym_this] = ACTIONS(1947), + [anon_sym_THIS] = ACTIONS(1947), + [anon_sym_Super] = ACTIONS(1947), + [anon_sym_super] = ACTIONS(1947), + [anon_sym_SUPER] = ACTIONS(1947), + [anon_sym_True] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_TRUE] = ACTIONS(1947), + [anon_sym_False] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_FALSE] = ACTIONS(1947), + [anon_sym_Null] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_Undefined] = ACTIONS(1947), + [anon_sym_undefined] = ACTIONS(1947), + [anon_sym_UNDEFINED] = ACTIONS(1947), + [anon_sym_get] = ACTIONS(1947), + [anon_sym_set] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1947), + [sym_hash_empty] = ACTIONS(1955), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_QueryExecute] = ACTIONS(1947), + [anon_sym_queryexecute] = ACTIONS(1947), + [anon_sym_QUERYEXECUTE] = ACTIONS(1947), + [anon_sym_queryExecute] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1955), + [anon_sym_Abstract] = ACTIONS(1947), + [anon_sym_abstract] = ACTIONS(1947), + [anon_sym_ABSTRACT] = ACTIONS(1947), + [anon_sym_Component] = ACTIONS(1947), + [anon_sym_component] = ACTIONS(1947), + [anon_sym_COMPONENT] = ACTIONS(1947), + [anon_sym_Debugger] = ACTIONS(1947), + [anon_sym_debugger] = ACTIONS(1947), + [anon_sym_DEBUGGER] = ACTIONS(1947), + [anon_sym_Final] = ACTIONS(1947), + [anon_sym_final] = ACTIONS(1947), + [anon_sym_FINAL] = ACTIONS(1947), + [anon_sym_Function] = ACTIONS(1947), + [anon_sym_function] = ACTIONS(1947), + [anon_sym_FUNCTION] = ACTIONS(1947), + [anon_sym_In] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_IN] = ACTIONS(1947), + [anon_sym_Include] = ACTIONS(1947), + [anon_sym_include] = ACTIONS(1947), + [anon_sym_INCLUDE] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1947), + [anon_sym_instanceof] = ACTIONS(1947), + [anon_sym_INSTANCEOF] = ACTIONS(1947), + [anon_sym_instanceOf] = ACTIONS(1947), + [anon_sym_New] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_NEW] = ACTIONS(1947), + [anon_sym_Package] = ACTIONS(1947), + [anon_sym_package] = ACTIONS(1947), + [anon_sym_PACKAGE] = ACTIONS(1947), + [anon_sym_Private] = ACTIONS(1947), + [anon_sym_private] = ACTIONS(1947), + [anon_sym_PRIVATE] = ACTIONS(1947), + [anon_sym_Public] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_PUBLIC] = ACTIONS(1947), + [anon_sym_Remote] = ACTIONS(1947), + [anon_sym_remote] = ACTIONS(1947), + [anon_sym_REMOTE] = ACTIONS(1947), + [anon_sym_Static] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_STATIC] = ACTIONS(1947), + [sym__ternary_qmark] = ACTIONS(1955), + [sym__elvis_operator] = ACTIONS(1955), + [sym_logical_or] = ACTIONS(1955), + [sym__java_block_open] = ACTIONS(1955), + [sym__static_type_prefix] = ACTIONS(1955), }, - [STATE(703)] = { - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_Query] = ACTIONS(3062), - [anon_sym_query] = ACTIONS(3062), - [anon_sym_QUERY] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [aux_sym_unary_operator_token1] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3062), - [aux_sym_number_token2] = ACTIONS(3060), - [anon_sym_This] = ACTIONS(3062), - [anon_sym_this] = ACTIONS(3062), - [anon_sym_THIS] = ACTIONS(3062), - [anon_sym_Super] = ACTIONS(3062), - [anon_sym_super] = ACTIONS(3062), - [anon_sym_SUPER] = ACTIONS(3062), - [anon_sym_True] = ACTIONS(3062), - [anon_sym_true] = ACTIONS(3062), - [anon_sym_TRUE] = ACTIONS(3062), - [anon_sym_False] = ACTIONS(3062), - [anon_sym_false] = ACTIONS(3062), - [anon_sym_FALSE] = ACTIONS(3062), - [anon_sym_Null] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3062), - [anon_sym_NULL] = ACTIONS(3062), - [anon_sym_Undefined] = ACTIONS(3062), - [anon_sym_undefined] = ACTIONS(3062), - [anon_sym_UNDEFINED] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [sym_hash_empty] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_QueryExecute] = ACTIONS(3062), - [anon_sym_queryexecute] = ACTIONS(3062), - [anon_sym_QUERYEXECUTE] = ACTIONS(3062), - [anon_sym_queryExecute] = ACTIONS(3062), - [anon_sym_BQUOTE] = ACTIONS(3062), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3060), - [anon_sym_Abstract] = ACTIONS(3062), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_ABSTRACT] = ACTIONS(3062), - [anon_sym_Break] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_BREAK] = ACTIONS(3062), - [anon_sym_Case] = ACTIONS(3062), - [anon_sym_case] = ACTIONS(3062), - [anon_sym_CASE] = ACTIONS(3062), - [anon_sym_Component] = ACTIONS(3062), - [anon_sym_component] = ACTIONS(3062), - [anon_sym_COMPONENT] = ACTIONS(3062), - [anon_sym_Continue] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_CONTINUE] = ACTIONS(3062), - [anon_sym_Debugger] = ACTIONS(3062), - [anon_sym_debugger] = ACTIONS(3062), - [anon_sym_DEBUGGER] = ACTIONS(3062), - [anon_sym_Default] = ACTIONS(3062), - [anon_sym_default] = ACTIONS(3062), - [anon_sym_DEFAULT] = ACTIONS(3062), - [anon_sym_Do] = ACTIONS(3062), - [anon_sym_do] = ACTIONS(3062), - [anon_sym_DO] = ACTIONS(3062), - [anon_sym_Else] = ACTIONS(3062), - [anon_sym_else] = ACTIONS(3062), - [anon_sym_ELSE] = ACTIONS(3062), - [anon_sym_Final] = ACTIONS(3062), - [anon_sym_final] = ACTIONS(3062), - [anon_sym_FINAL] = ACTIONS(3062), - [anon_sym_For] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_FOR] = ACTIONS(3062), - [anon_sym_Function] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_FUNCTION] = ACTIONS(3062), - [anon_sym_If] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_IF] = ACTIONS(3062), - [anon_sym_Import] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(3062), - [anon_sym_IMPORT] = ACTIONS(3062), - [anon_sym_Include] = ACTIONS(3062), - [anon_sym_include] = ACTIONS(3062), - [anon_sym_INCLUDE] = ACTIONS(3062), - [anon_sym_Interface] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_INTERFACE] = ACTIONS(3062), - [anon_sym_New] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_NEW] = ACTIONS(3062), - [anon_sym_Package] = ACTIONS(3062), - [anon_sym_package] = ACTIONS(3062), - [anon_sym_PACKAGE] = ACTIONS(3062), - [anon_sym_Private] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_PRIVATE] = ACTIONS(3062), - [anon_sym_Property] = ACTIONS(3062), - [anon_sym_property] = ACTIONS(3062), - [anon_sym_PROPERTY] = ACTIONS(3062), - [anon_sym_Public] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_PUBLIC] = ACTIONS(3062), - [anon_sym_Remote] = ACTIONS(3062), - [anon_sym_remote] = ACTIONS(3062), - [anon_sym_REMOTE] = ACTIONS(3062), - [anon_sym_Return] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_RETURN] = ACTIONS(3062), - [anon_sym_Static] = ACTIONS(3062), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_STATIC] = ACTIONS(3062), - [anon_sym_Switch] = ACTIONS(3062), - [anon_sym_switch] = ACTIONS(3062), - [anon_sym_SWITCH] = ACTIONS(3062), - [anon_sym_Throw] = ACTIONS(3062), - [anon_sym_throw] = ACTIONS(3062), - [anon_sym_THROW] = ACTIONS(3062), - [anon_sym_Try] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3062), - [anon_sym_TRY] = ACTIONS(3062), - [anon_sym_Var] = ACTIONS(3062), - [anon_sym_var] = ACTIONS(3062), - [anon_sym_VAR] = ACTIONS(3062), - [anon_sym_While] = ACTIONS(3062), - [anon_sym_while] = ACTIONS(3062), - [anon_sym_WHILE] = ACTIONS(3062), - [anon_sym_With] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3062), - [anon_sym_WITH] = ACTIONS(3062), - [sym_cf_comment] = ACTIONS(3060), - [sym__java_block_open] = ACTIONS(3060), - [sym__static_type_prefix] = ACTIONS(3060), + [STATE(693)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_Query] = ACTIONS(2232), + [anon_sym_query] = ACTIONS(2232), + [anon_sym_QUERY] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2234), + [aux_sym_unary_operator_token1] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2232), + [aux_sym_number_token2] = ACTIONS(2232), + [anon_sym_This] = ACTIONS(2232), + [anon_sym_this] = ACTIONS(2232), + [anon_sym_THIS] = ACTIONS(2232), + [anon_sym_Super] = ACTIONS(2232), + [anon_sym_super] = ACTIONS(2232), + [anon_sym_SUPER] = ACTIONS(2232), + [anon_sym_True] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_TRUE] = ACTIONS(2232), + [anon_sym_False] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_FALSE] = ACTIONS(2232), + [anon_sym_Null] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [anon_sym_NULL] = ACTIONS(2232), + [anon_sym_Undefined] = ACTIONS(2232), + [anon_sym_undefined] = ACTIONS(2232), + [anon_sym_UNDEFINED] = ACTIONS(2232), + [anon_sym_get] = ACTIONS(2232), + [anon_sym_set] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [sym_hash_empty] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2232), + [anon_sym_QueryExecute] = ACTIONS(2232), + [anon_sym_queryexecute] = ACTIONS(2232), + [anon_sym_QUERYEXECUTE] = ACTIONS(2232), + [anon_sym_queryExecute] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2234), + [anon_sym_Abstract] = ACTIONS(2232), + [anon_sym_abstract] = ACTIONS(2232), + [anon_sym_ABSTRACT] = ACTIONS(2232), + [anon_sym_Component] = ACTIONS(2232), + [anon_sym_component] = ACTIONS(2232), + [anon_sym_COMPONENT] = ACTIONS(2232), + [anon_sym_Debugger] = ACTIONS(2232), + [anon_sym_debugger] = ACTIONS(2232), + [anon_sym_DEBUGGER] = ACTIONS(2232), + [anon_sym_Final] = ACTIONS(2232), + [anon_sym_final] = ACTIONS(2232), + [anon_sym_FINAL] = ACTIONS(2232), + [anon_sym_Function] = ACTIONS(2232), + [anon_sym_function] = ACTIONS(2232), + [anon_sym_FUNCTION] = ACTIONS(2232), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_Include] = ACTIONS(2232), + [anon_sym_include] = ACTIONS(2232), + [anon_sym_INCLUDE] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [anon_sym_New] = ACTIONS(2232), + [anon_sym_new] = ACTIONS(2232), + [anon_sym_NEW] = ACTIONS(2232), + [anon_sym_Package] = ACTIONS(2232), + [anon_sym_package] = ACTIONS(2232), + [anon_sym_PACKAGE] = ACTIONS(2232), + [anon_sym_Private] = ACTIONS(2232), + [anon_sym_private] = ACTIONS(2232), + [anon_sym_PRIVATE] = ACTIONS(2232), + [anon_sym_Public] = ACTIONS(2232), + [anon_sym_public] = ACTIONS(2232), + [anon_sym_PUBLIC] = ACTIONS(2232), + [anon_sym_Remote] = ACTIONS(2232), + [anon_sym_remote] = ACTIONS(2232), + [anon_sym_REMOTE] = ACTIONS(2232), + [anon_sym_Static] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_STATIC] = ACTIONS(2232), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym__java_block_open] = ACTIONS(2234), + [sym__static_type_prefix] = ACTIONS(2234), }, - [STATE(704)] = { - [ts_builtin_sym_end] = ACTIONS(3064), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_RBRACE] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_Query] = ACTIONS(3066), - [anon_sym_query] = ACTIONS(3066), - [anon_sym_QUERY] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [aux_sym_unary_operator_token1] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_SQUOTE] = ACTIONS(3064), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3066), - [aux_sym_number_token2] = ACTIONS(3064), - [anon_sym_This] = ACTIONS(3066), - [anon_sym_this] = ACTIONS(3066), - [anon_sym_THIS] = ACTIONS(3066), - [anon_sym_Super] = ACTIONS(3066), - [anon_sym_super] = ACTIONS(3066), - [anon_sym_SUPER] = ACTIONS(3066), - [anon_sym_True] = ACTIONS(3066), - [anon_sym_true] = ACTIONS(3066), - [anon_sym_TRUE] = ACTIONS(3066), - [anon_sym_False] = ACTIONS(3066), - [anon_sym_false] = ACTIONS(3066), - [anon_sym_FALSE] = ACTIONS(3066), - [anon_sym_Null] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_NULL] = ACTIONS(3066), - [anon_sym_Undefined] = ACTIONS(3066), - [anon_sym_undefined] = ACTIONS(3066), - [anon_sym_UNDEFINED] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_POUND] = ACTIONS(3066), - [sym_hash_empty] = ACTIONS(3064), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_QueryExecute] = ACTIONS(3066), - [anon_sym_queryexecute] = ACTIONS(3066), - [anon_sym_QUERYEXECUTE] = ACTIONS(3066), - [anon_sym_queryExecute] = ACTIONS(3066), - [anon_sym_BQUOTE] = ACTIONS(3066), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3064), - [anon_sym_Abstract] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_ABSTRACT] = ACTIONS(3066), - [anon_sym_Break] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_BREAK] = ACTIONS(3066), - [anon_sym_Case] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_CASE] = ACTIONS(3066), - [anon_sym_Component] = ACTIONS(3066), - [anon_sym_component] = ACTIONS(3066), - [anon_sym_COMPONENT] = ACTIONS(3066), - [anon_sym_Continue] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_CONTINUE] = ACTIONS(3066), - [anon_sym_Debugger] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_DEBUGGER] = ACTIONS(3066), - [anon_sym_Default] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_DEFAULT] = ACTIONS(3066), - [anon_sym_Do] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_DO] = ACTIONS(3066), - [anon_sym_Else] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3066), - [anon_sym_ELSE] = ACTIONS(3066), - [anon_sym_Final] = ACTIONS(3066), - [anon_sym_final] = ACTIONS(3066), - [anon_sym_FINAL] = ACTIONS(3066), - [anon_sym_For] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_FOR] = ACTIONS(3066), - [anon_sym_Function] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_FUNCTION] = ACTIONS(3066), - [anon_sym_If] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_IF] = ACTIONS(3066), - [anon_sym_Import] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_IMPORT] = ACTIONS(3066), - [anon_sym_Include] = ACTIONS(3066), - [anon_sym_include] = ACTIONS(3066), - [anon_sym_INCLUDE] = ACTIONS(3066), - [anon_sym_Interface] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_INTERFACE] = ACTIONS(3066), - [anon_sym_New] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_NEW] = ACTIONS(3066), - [anon_sym_Package] = ACTIONS(3066), - [anon_sym_package] = ACTIONS(3066), - [anon_sym_PACKAGE] = ACTIONS(3066), - [anon_sym_Private] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_PRIVATE] = ACTIONS(3066), - [anon_sym_Property] = ACTIONS(3066), - [anon_sym_property] = ACTIONS(3066), - [anon_sym_PROPERTY] = ACTIONS(3066), - [anon_sym_Public] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_PUBLIC] = ACTIONS(3066), - [anon_sym_Remote] = ACTIONS(3066), - [anon_sym_remote] = ACTIONS(3066), - [anon_sym_REMOTE] = ACTIONS(3066), - [anon_sym_Return] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_RETURN] = ACTIONS(3066), - [anon_sym_Static] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_STATIC] = ACTIONS(3066), - [anon_sym_Switch] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_SWITCH] = ACTIONS(3066), - [anon_sym_Throw] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_THROW] = ACTIONS(3066), - [anon_sym_Try] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_TRY] = ACTIONS(3066), - [anon_sym_Var] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_VAR] = ACTIONS(3066), - [anon_sym_While] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_WHILE] = ACTIONS(3066), - [anon_sym_With] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_WITH] = ACTIONS(3066), - [sym_cf_comment] = ACTIONS(3064), - [sym__java_block_open] = ACTIONS(3064), - [sym__static_type_prefix] = ACTIONS(3064), + [STATE(694)] = { + [sym_identifier] = ACTIONS(2248), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_COLON] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_Query] = ACTIONS(2248), + [anon_sym_query] = ACTIONS(2248), + [anon_sym_QUERY] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2248), + [sym_optional_chain] = ACTIONS(2250), + [sym_static_chain] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2248), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2248), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_LT_GT] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [aux_sym_binary_expression_token1] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2248), + [aux_sym_binary_expression_token2] = ACTIONS(2248), + [aux_sym_binary_expression_token3] = ACTIONS(2248), + [aux_sym_binary_expression_token4] = ACTIONS(2250), + [aux_sym_binary_expression_token5] = ACTIONS(2250), + [aux_sym_binary_expression_token6] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_TILDE] = ACTIONS(2250), + [aux_sym_unary_operator_token1] = ACTIONS(2248), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2248), + [aux_sym_number_token2] = ACTIONS(2248), + [anon_sym_This] = ACTIONS(2248), + [anon_sym_this] = ACTIONS(2248), + [anon_sym_THIS] = ACTIONS(2248), + [anon_sym_Super] = ACTIONS(2248), + [anon_sym_super] = ACTIONS(2248), + [anon_sym_SUPER] = ACTIONS(2248), + [anon_sym_True] = ACTIONS(2248), + [anon_sym_true] = ACTIONS(2248), + [anon_sym_TRUE] = ACTIONS(2248), + [anon_sym_False] = ACTIONS(2248), + [anon_sym_false] = ACTIONS(2248), + [anon_sym_FALSE] = ACTIONS(2248), + [anon_sym_Null] = ACTIONS(2248), + [anon_sym_null] = ACTIONS(2248), + [anon_sym_NULL] = ACTIONS(2248), + [anon_sym_Undefined] = ACTIONS(2248), + [anon_sym_undefined] = ACTIONS(2248), + [anon_sym_UNDEFINED] = ACTIONS(2248), + [anon_sym_get] = ACTIONS(2248), + [anon_sym_set] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(2248), + [sym_hash_empty] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_QueryExecute] = ACTIONS(2248), + [anon_sym_queryexecute] = ACTIONS(2248), + [anon_sym_QUERYEXECUTE] = ACTIONS(2248), + [anon_sym_queryExecute] = ACTIONS(2248), + [anon_sym_BQUOTE] = ACTIONS(2250), + [anon_sym_Abstract] = ACTIONS(2248), + [anon_sym_abstract] = ACTIONS(2248), + [anon_sym_ABSTRACT] = ACTIONS(2248), + [anon_sym_Component] = ACTIONS(2248), + [anon_sym_component] = ACTIONS(2248), + [anon_sym_COMPONENT] = ACTIONS(2248), + [anon_sym_Debugger] = ACTIONS(2248), + [anon_sym_debugger] = ACTIONS(2248), + [anon_sym_DEBUGGER] = ACTIONS(2248), + [anon_sym_Final] = ACTIONS(2248), + [anon_sym_final] = ACTIONS(2248), + [anon_sym_FINAL] = ACTIONS(2248), + [anon_sym_Function] = ACTIONS(2248), + [anon_sym_function] = ACTIONS(2248), + [anon_sym_FUNCTION] = ACTIONS(2248), + [anon_sym_In] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [anon_sym_IN] = ACTIONS(2248), + [anon_sym_Include] = ACTIONS(2248), + [anon_sym_include] = ACTIONS(2248), + [anon_sym_INCLUDE] = ACTIONS(2248), + [anon_sym_InstanceOf] = ACTIONS(2248), + [anon_sym_instanceof] = ACTIONS(2248), + [anon_sym_INSTANCEOF] = ACTIONS(2248), + [anon_sym_instanceOf] = ACTIONS(2248), + [anon_sym_New] = ACTIONS(2248), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_NEW] = ACTIONS(2248), + [anon_sym_Package] = ACTIONS(2248), + [anon_sym_package] = ACTIONS(2248), + [anon_sym_PACKAGE] = ACTIONS(2248), + [anon_sym_Private] = ACTIONS(2248), + [anon_sym_private] = ACTIONS(2248), + [anon_sym_PRIVATE] = ACTIONS(2248), + [anon_sym_Public] = ACTIONS(2248), + [anon_sym_public] = ACTIONS(2248), + [anon_sym_PUBLIC] = ACTIONS(2248), + [anon_sym_Remote] = ACTIONS(2248), + [anon_sym_remote] = ACTIONS(2248), + [anon_sym_REMOTE] = ACTIONS(2248), + [anon_sym_Static] = ACTIONS(2248), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_STATIC] = ACTIONS(2248), + [sym__ternary_qmark] = ACTIONS(2250), + [sym__elvis_operator] = ACTIONS(2250), + [sym_logical_or] = ACTIONS(2250), + [sym__java_block_open] = ACTIONS(2250), + [sym__static_type_prefix] = ACTIONS(2250), }, - [STATE(705)] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_Query] = ACTIONS(3070), - [anon_sym_query] = ACTIONS(3070), - [anon_sym_QUERY] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_unary_operator_token1] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3070), - [aux_sym_number_token2] = ACTIONS(3068), - [anon_sym_This] = ACTIONS(3070), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_THIS] = ACTIONS(3070), - [anon_sym_Super] = ACTIONS(3070), - [anon_sym_super] = ACTIONS(3070), - [anon_sym_SUPER] = ACTIONS(3070), - [anon_sym_True] = ACTIONS(3070), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_TRUE] = ACTIONS(3070), - [anon_sym_False] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_FALSE] = ACTIONS(3070), - [anon_sym_Null] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_Undefined] = ACTIONS(3070), - [anon_sym_undefined] = ACTIONS(3070), - [anon_sym_UNDEFINED] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [sym_hash_empty] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_QueryExecute] = ACTIONS(3070), - [anon_sym_queryexecute] = ACTIONS(3070), - [anon_sym_QUERYEXECUTE] = ACTIONS(3070), - [anon_sym_queryExecute] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3068), - [anon_sym_Abstract] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_ABSTRACT] = ACTIONS(3070), - [anon_sym_Break] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_BREAK] = ACTIONS(3070), - [anon_sym_Case] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_CASE] = ACTIONS(3070), - [anon_sym_Component] = ACTIONS(3070), - [anon_sym_component] = ACTIONS(3070), - [anon_sym_COMPONENT] = ACTIONS(3070), - [anon_sym_Continue] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_CONTINUE] = ACTIONS(3070), - [anon_sym_Debugger] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_DEBUGGER] = ACTIONS(3070), - [anon_sym_Default] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_DEFAULT] = ACTIONS(3070), - [anon_sym_Do] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_DO] = ACTIONS(3070), - [anon_sym_Else] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_ELSE] = ACTIONS(3070), - [anon_sym_Final] = ACTIONS(3070), - [anon_sym_final] = ACTIONS(3070), - [anon_sym_FINAL] = ACTIONS(3070), - [anon_sym_For] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_FOR] = ACTIONS(3070), - [anon_sym_Function] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_FUNCTION] = ACTIONS(3070), - [anon_sym_If] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_IF] = ACTIONS(3070), - [anon_sym_Import] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_IMPORT] = ACTIONS(3070), - [anon_sym_Include] = ACTIONS(3070), - [anon_sym_include] = ACTIONS(3070), - [anon_sym_INCLUDE] = ACTIONS(3070), - [anon_sym_Interface] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_INTERFACE] = ACTIONS(3070), - [anon_sym_New] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_NEW] = ACTIONS(3070), - [anon_sym_Package] = ACTIONS(3070), - [anon_sym_package] = ACTIONS(3070), - [anon_sym_PACKAGE] = ACTIONS(3070), - [anon_sym_Private] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_PRIVATE] = ACTIONS(3070), - [anon_sym_Property] = ACTIONS(3070), - [anon_sym_property] = ACTIONS(3070), - [anon_sym_PROPERTY] = ACTIONS(3070), - [anon_sym_Public] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_PUBLIC] = ACTIONS(3070), - [anon_sym_Remote] = ACTIONS(3070), - [anon_sym_remote] = ACTIONS(3070), - [anon_sym_REMOTE] = ACTIONS(3070), - [anon_sym_Return] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_RETURN] = ACTIONS(3070), - [anon_sym_Static] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_STATIC] = ACTIONS(3070), - [anon_sym_Switch] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_SWITCH] = ACTIONS(3070), - [anon_sym_Throw] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_THROW] = ACTIONS(3070), - [anon_sym_Try] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_TRY] = ACTIONS(3070), - [anon_sym_Var] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [anon_sym_VAR] = ACTIONS(3070), - [anon_sym_While] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_WHILE] = ACTIONS(3070), - [anon_sym_With] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3070), - [anon_sym_WITH] = ACTIONS(3070), - [sym_cf_comment] = ACTIONS(3068), - [sym__java_block_open] = ACTIONS(3068), - [sym__static_type_prefix] = ACTIONS(3068), + [STATE(695)] = { + [sym_identifier] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_Query] = ACTIONS(2270), + [anon_sym_query] = ACTIONS(2270), + [anon_sym_QUERY] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), + [sym_optional_chain] = ACTIONS(2272), + [sym_static_chain] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2272), + [anon_sym_LT_LT] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_PERCENT] = ACTIONS(2272), + [anon_sym_BSLASH] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), + [anon_sym_LT_GT] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), + [aux_sym_binary_expression_token1] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2270), + [aux_sym_binary_expression_token2] = ACTIONS(2270), + [aux_sym_binary_expression_token3] = ACTIONS(2270), + [aux_sym_binary_expression_token4] = ACTIONS(2272), + [aux_sym_binary_expression_token5] = ACTIONS(2272), + [aux_sym_binary_expression_token6] = ACTIONS(2272), + [anon_sym_QMARK_QMARK] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_TILDE] = ACTIONS(2272), + [aux_sym_unary_operator_token1] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2270), + [aux_sym_number_token2] = ACTIONS(2270), + [anon_sym_This] = ACTIONS(2270), + [anon_sym_this] = ACTIONS(2270), + [anon_sym_THIS] = ACTIONS(2270), + [anon_sym_Super] = ACTIONS(2270), + [anon_sym_super] = ACTIONS(2270), + [anon_sym_SUPER] = ACTIONS(2270), + [anon_sym_True] = ACTIONS(2270), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_TRUE] = ACTIONS(2270), + [anon_sym_False] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [anon_sym_FALSE] = ACTIONS(2270), + [anon_sym_Null] = ACTIONS(2270), + [anon_sym_null] = ACTIONS(2270), + [anon_sym_NULL] = ACTIONS(2270), + [anon_sym_Undefined] = ACTIONS(2270), + [anon_sym_undefined] = ACTIONS(2270), + [anon_sym_UNDEFINED] = ACTIONS(2270), + [anon_sym_get] = ACTIONS(2270), + [anon_sym_set] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(2270), + [sym_hash_empty] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2270), + [anon_sym_QueryExecute] = ACTIONS(2270), + [anon_sym_queryexecute] = ACTIONS(2270), + [anon_sym_QUERYEXECUTE] = ACTIONS(2270), + [anon_sym_queryExecute] = ACTIONS(2270), + [anon_sym_BQUOTE] = ACTIONS(2272), + [anon_sym_Abstract] = ACTIONS(2270), + [anon_sym_abstract] = ACTIONS(2270), + [anon_sym_ABSTRACT] = ACTIONS(2270), + [anon_sym_Component] = ACTIONS(2270), + [anon_sym_component] = ACTIONS(2270), + [anon_sym_COMPONENT] = ACTIONS(2270), + [anon_sym_Debugger] = ACTIONS(2270), + [anon_sym_debugger] = ACTIONS(2270), + [anon_sym_DEBUGGER] = ACTIONS(2270), + [anon_sym_Final] = ACTIONS(2270), + [anon_sym_final] = ACTIONS(2270), + [anon_sym_FINAL] = ACTIONS(2270), + [anon_sym_Function] = ACTIONS(2270), + [anon_sym_function] = ACTIONS(2270), + [anon_sym_FUNCTION] = ACTIONS(2270), + [anon_sym_In] = ACTIONS(2270), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_IN] = ACTIONS(2270), + [anon_sym_Include] = ACTIONS(2270), + [anon_sym_include] = ACTIONS(2270), + [anon_sym_INCLUDE] = ACTIONS(2270), + [anon_sym_InstanceOf] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_INSTANCEOF] = ACTIONS(2270), + [anon_sym_instanceOf] = ACTIONS(2270), + [anon_sym_New] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2270), + [anon_sym_NEW] = ACTIONS(2270), + [anon_sym_Package] = ACTIONS(2270), + [anon_sym_package] = ACTIONS(2270), + [anon_sym_PACKAGE] = ACTIONS(2270), + [anon_sym_Private] = ACTIONS(2270), + [anon_sym_private] = ACTIONS(2270), + [anon_sym_PRIVATE] = ACTIONS(2270), + [anon_sym_Public] = ACTIONS(2270), + [anon_sym_public] = ACTIONS(2270), + [anon_sym_PUBLIC] = ACTIONS(2270), + [anon_sym_Remote] = ACTIONS(2270), + [anon_sym_remote] = ACTIONS(2270), + [anon_sym_REMOTE] = ACTIONS(2270), + [anon_sym_Static] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_STATIC] = ACTIONS(2270), + [sym__ternary_qmark] = ACTIONS(2272), + [sym__elvis_operator] = ACTIONS(2272), + [sym_logical_or] = ACTIONS(2272), + [sym__java_block_open] = ACTIONS(2272), + [sym__static_type_prefix] = ACTIONS(2272), }, - [STATE(706)] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_Query] = ACTIONS(3070), - [anon_sym_query] = ACTIONS(3070), - [anon_sym_QUERY] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_unary_operator_token1] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3070), - [aux_sym_number_token2] = ACTIONS(3068), - [anon_sym_This] = ACTIONS(3070), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_THIS] = ACTIONS(3070), - [anon_sym_Super] = ACTIONS(3070), - [anon_sym_super] = ACTIONS(3070), - [anon_sym_SUPER] = ACTIONS(3070), - [anon_sym_True] = ACTIONS(3070), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_TRUE] = ACTIONS(3070), - [anon_sym_False] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_FALSE] = ACTIONS(3070), - [anon_sym_Null] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_Undefined] = ACTIONS(3070), - [anon_sym_undefined] = ACTIONS(3070), - [anon_sym_UNDEFINED] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [sym_hash_empty] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_QueryExecute] = ACTIONS(3070), - [anon_sym_queryexecute] = ACTIONS(3070), - [anon_sym_QUERYEXECUTE] = ACTIONS(3070), - [anon_sym_queryExecute] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3068), - [anon_sym_Abstract] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_ABSTRACT] = ACTIONS(3070), - [anon_sym_Break] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_BREAK] = ACTIONS(3070), - [anon_sym_Case] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_CASE] = ACTIONS(3070), - [anon_sym_Component] = ACTIONS(3070), - [anon_sym_component] = ACTIONS(3070), - [anon_sym_COMPONENT] = ACTIONS(3070), - [anon_sym_Continue] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_CONTINUE] = ACTIONS(3070), - [anon_sym_Debugger] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_DEBUGGER] = ACTIONS(3070), - [anon_sym_Default] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_DEFAULT] = ACTIONS(3070), - [anon_sym_Do] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_DO] = ACTIONS(3070), - [anon_sym_Else] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_ELSE] = ACTIONS(3070), - [anon_sym_Final] = ACTIONS(3070), - [anon_sym_final] = ACTIONS(3070), - [anon_sym_FINAL] = ACTIONS(3070), - [anon_sym_For] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_FOR] = ACTIONS(3070), - [anon_sym_Function] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_FUNCTION] = ACTIONS(3070), - [anon_sym_If] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_IF] = ACTIONS(3070), - [anon_sym_Import] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_IMPORT] = ACTIONS(3070), - [anon_sym_Include] = ACTIONS(3070), - [anon_sym_include] = ACTIONS(3070), - [anon_sym_INCLUDE] = ACTIONS(3070), - [anon_sym_Interface] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_INTERFACE] = ACTIONS(3070), - [anon_sym_New] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_NEW] = ACTIONS(3070), - [anon_sym_Package] = ACTIONS(3070), - [anon_sym_package] = ACTIONS(3070), - [anon_sym_PACKAGE] = ACTIONS(3070), - [anon_sym_Private] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_PRIVATE] = ACTIONS(3070), - [anon_sym_Property] = ACTIONS(3070), - [anon_sym_property] = ACTIONS(3070), - [anon_sym_PROPERTY] = ACTIONS(3070), - [anon_sym_Public] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_PUBLIC] = ACTIONS(3070), - [anon_sym_Remote] = ACTIONS(3070), - [anon_sym_remote] = ACTIONS(3070), - [anon_sym_REMOTE] = ACTIONS(3070), - [anon_sym_Return] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_RETURN] = ACTIONS(3070), - [anon_sym_Static] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_STATIC] = ACTIONS(3070), - [anon_sym_Switch] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_SWITCH] = ACTIONS(3070), - [anon_sym_Throw] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_THROW] = ACTIONS(3070), - [anon_sym_Try] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_TRY] = ACTIONS(3070), - [anon_sym_Var] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [anon_sym_VAR] = ACTIONS(3070), - [anon_sym_While] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_WHILE] = ACTIONS(3070), - [anon_sym_With] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3070), - [anon_sym_WITH] = ACTIONS(3070), - [sym_cf_comment] = ACTIONS(3068), - [sym__java_block_open] = ACTIONS(3068), - [sym__static_type_prefix] = ACTIONS(3068), + [STATE(696)] = { + [sym_identifier] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_Query] = ACTIONS(2294), + [anon_sym_query] = ACTIONS(2294), + [anon_sym_QUERY] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2294), + [sym_optional_chain] = ACTIONS(2296), + [sym_static_chain] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_LT_GT] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [aux_sym_binary_expression_token1] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2294), + [aux_sym_binary_expression_token2] = ACTIONS(2294), + [aux_sym_binary_expression_token3] = ACTIONS(2294), + [aux_sym_binary_expression_token4] = ACTIONS(2296), + [aux_sym_binary_expression_token5] = ACTIONS(2296), + [aux_sym_binary_expression_token6] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2296), + [aux_sym_unary_operator_token1] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2294), + [aux_sym_number_token2] = ACTIONS(2294), + [anon_sym_This] = ACTIONS(2294), + [anon_sym_this] = ACTIONS(2294), + [anon_sym_THIS] = ACTIONS(2294), + [anon_sym_Super] = ACTIONS(2294), + [anon_sym_super] = ACTIONS(2294), + [anon_sym_SUPER] = ACTIONS(2294), + [anon_sym_True] = ACTIONS(2294), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_TRUE] = ACTIONS(2294), + [anon_sym_False] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [anon_sym_FALSE] = ACTIONS(2294), + [anon_sym_Null] = ACTIONS(2294), + [anon_sym_null] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_Undefined] = ACTIONS(2294), + [anon_sym_undefined] = ACTIONS(2294), + [anon_sym_UNDEFINED] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [sym_hash_empty] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_QueryExecute] = ACTIONS(2294), + [anon_sym_queryexecute] = ACTIONS(2294), + [anon_sym_QUERYEXECUTE] = ACTIONS(2294), + [anon_sym_queryExecute] = ACTIONS(2294), + [anon_sym_BQUOTE] = ACTIONS(2296), + [anon_sym_Abstract] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_ABSTRACT] = ACTIONS(2294), + [anon_sym_Component] = ACTIONS(2294), + [anon_sym_component] = ACTIONS(2294), + [anon_sym_COMPONENT] = ACTIONS(2294), + [anon_sym_Debugger] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_DEBUGGER] = ACTIONS(2294), + [anon_sym_Final] = ACTIONS(2294), + [anon_sym_final] = ACTIONS(2294), + [anon_sym_FINAL] = ACTIONS(2294), + [anon_sym_Function] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_FUNCTION] = ACTIONS(2294), + [anon_sym_In] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_IN] = ACTIONS(2294), + [anon_sym_Include] = ACTIONS(2294), + [anon_sym_include] = ACTIONS(2294), + [anon_sym_INCLUDE] = ACTIONS(2294), + [anon_sym_InstanceOf] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_INSTANCEOF] = ACTIONS(2294), + [anon_sym_instanceOf] = ACTIONS(2294), + [anon_sym_New] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_NEW] = ACTIONS(2294), + [anon_sym_Package] = ACTIONS(2294), + [anon_sym_package] = ACTIONS(2294), + [anon_sym_PACKAGE] = ACTIONS(2294), + [anon_sym_Private] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_PRIVATE] = ACTIONS(2294), + [anon_sym_Public] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_PUBLIC] = ACTIONS(2294), + [anon_sym_Remote] = ACTIONS(2294), + [anon_sym_remote] = ACTIONS(2294), + [anon_sym_REMOTE] = ACTIONS(2294), + [anon_sym_Static] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_STATIC] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2296), + [sym__elvis_operator] = ACTIONS(2296), + [sym_logical_or] = ACTIONS(2296), + [sym__java_block_open] = ACTIONS(2296), + [sym__static_type_prefix] = ACTIONS(2296), }, - [STATE(707)] = { - [sym_identifier] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_Query] = ACTIONS(2296), - [anon_sym_query] = ACTIONS(2296), - [anon_sym_QUERY] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2296), - [sym_optional_chain] = ACTIONS(2298), - [sym_static_chain] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_BSLASH] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), - [anon_sym_LT_GT] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), - [aux_sym_binary_expression_token1] = ACTIONS(2298), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [aux_sym_binary_expression_token2] = ACTIONS(2296), - [aux_sym_binary_expression_token3] = ACTIONS(2296), - [aux_sym_binary_expression_token4] = ACTIONS(2298), - [aux_sym_binary_expression_token5] = ACTIONS(2298), - [aux_sym_binary_expression_token6] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2298), - [aux_sym_unary_operator_token1] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2296), - [aux_sym_number_token2] = ACTIONS(2296), - [anon_sym_This] = ACTIONS(2296), - [anon_sym_this] = ACTIONS(2296), - [anon_sym_THIS] = ACTIONS(2296), - [anon_sym_Super] = ACTIONS(2296), - [anon_sym_super] = ACTIONS(2296), - [anon_sym_SUPER] = ACTIONS(2296), - [anon_sym_True] = ACTIONS(2296), - [anon_sym_true] = ACTIONS(2296), - [anon_sym_TRUE] = ACTIONS(2296), - [anon_sym_False] = ACTIONS(2296), - [anon_sym_false] = ACTIONS(2296), - [anon_sym_FALSE] = ACTIONS(2296), - [anon_sym_Null] = ACTIONS(2296), - [anon_sym_null] = ACTIONS(2296), - [anon_sym_NULL] = ACTIONS(2296), - [anon_sym_Undefined] = ACTIONS(2296), - [anon_sym_undefined] = ACTIONS(2296), - [anon_sym_UNDEFINED] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(2296), - [sym_hash_empty] = ACTIONS(2298), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_QueryExecute] = ACTIONS(2296), - [anon_sym_queryexecute] = ACTIONS(2296), - [anon_sym_QUERYEXECUTE] = ACTIONS(2296), - [anon_sym_queryExecute] = ACTIONS(2296), - [anon_sym_BQUOTE] = ACTIONS(2298), - [anon_sym_Abstract] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_ABSTRACT] = ACTIONS(2296), - [anon_sym_Component] = ACTIONS(2296), - [anon_sym_component] = ACTIONS(2296), - [anon_sym_COMPONENT] = ACTIONS(2296), - [anon_sym_Debugger] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_DEBUGGER] = ACTIONS(2296), - [anon_sym_Final] = ACTIONS(2296), - [anon_sym_final] = ACTIONS(2296), - [anon_sym_FINAL] = ACTIONS(2296), - [anon_sym_Function] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_FUNCTION] = ACTIONS(2296), - [anon_sym_In] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_IN] = ACTIONS(2296), - [anon_sym_Include] = ACTIONS(2296), - [anon_sym_include] = ACTIONS(2296), - [anon_sym_INCLUDE] = ACTIONS(2296), - [anon_sym_InstanceOf] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_INSTANCEOF] = ACTIONS(2296), - [anon_sym_instanceOf] = ACTIONS(2296), - [anon_sym_New] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_NEW] = ACTIONS(2296), - [anon_sym_Package] = ACTIONS(2296), - [anon_sym_package] = ACTIONS(2296), - [anon_sym_PACKAGE] = ACTIONS(2296), - [anon_sym_Private] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_PRIVATE] = ACTIONS(2296), - [anon_sym_Public] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_PUBLIC] = ACTIONS(2296), - [anon_sym_Remote] = ACTIONS(2296), - [anon_sym_remote] = ACTIONS(2296), - [anon_sym_REMOTE] = ACTIONS(2296), - [anon_sym_Static] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_STATIC] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2298), - [sym__elvis_operator] = ACTIONS(2298), - [sym_logical_or] = ACTIONS(2298), - [sym__java_block_open] = ACTIONS(2298), - [sym__static_type_prefix] = ACTIONS(2298), + [STATE(697)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_let] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_Query] = ACTIONS(507), + [anon_sym_query] = ACTIONS(507), + [anon_sym_QUERY] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [aux_sym_unary_operator_token1] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(507), + [aux_sym_number_token2] = ACTIONS(507), + [anon_sym_This] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), + [anon_sym_THIS] = ACTIONS(507), + [anon_sym_Super] = ACTIONS(507), + [anon_sym_super] = ACTIONS(507), + [anon_sym_SUPER] = ACTIONS(507), + [anon_sym_True] = ACTIONS(507), + [anon_sym_true] = ACTIONS(507), + [anon_sym_TRUE] = ACTIONS(507), + [anon_sym_False] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_FALSE] = ACTIONS(507), + [anon_sym_Null] = ACTIONS(507), + [anon_sym_null] = ACTIONS(507), + [anon_sym_NULL] = ACTIONS(507), + [anon_sym_Undefined] = ACTIONS(507), + [anon_sym_undefined] = ACTIONS(507), + [anon_sym_UNDEFINED] = ACTIONS(507), + [anon_sym_get] = ACTIONS(507), + [anon_sym_set] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [sym_hash_empty] = ACTIONS(509), + [anon_sym_export] = ACTIONS(507), + [anon_sym_QueryExecute] = ACTIONS(507), + [anon_sym_queryexecute] = ACTIONS(507), + [anon_sym_QUERYEXECUTE] = ACTIONS(507), + [anon_sym_queryExecute] = ACTIONS(507), + [anon_sym_BQUOTE] = ACTIONS(509), + [anon_sym_Abstract] = ACTIONS(507), + [anon_sym_abstract] = ACTIONS(507), + [anon_sym_ABSTRACT] = ACTIONS(507), + [anon_sym_Component] = ACTIONS(507), + [anon_sym_component] = ACTIONS(507), + [anon_sym_COMPONENT] = ACTIONS(507), + [anon_sym_Debugger] = ACTIONS(507), + [anon_sym_debugger] = ACTIONS(507), + [anon_sym_DEBUGGER] = ACTIONS(507), + [anon_sym_Final] = ACTIONS(507), + [anon_sym_final] = ACTIONS(507), + [anon_sym_FINAL] = ACTIONS(507), + [anon_sym_Function] = ACTIONS(507), + [anon_sym_function] = ACTIONS(507), + [anon_sym_FUNCTION] = ACTIONS(507), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(507), + [anon_sym_include] = ACTIONS(507), + [anon_sym_INCLUDE] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(507), + [anon_sym_new] = ACTIONS(507), + [anon_sym_NEW] = ACTIONS(507), + [anon_sym_Package] = ACTIONS(507), + [anon_sym_package] = ACTIONS(507), + [anon_sym_PACKAGE] = ACTIONS(507), + [anon_sym_Private] = ACTIONS(507), + [anon_sym_private] = ACTIONS(507), + [anon_sym_PRIVATE] = ACTIONS(507), + [anon_sym_Public] = ACTIONS(507), + [anon_sym_public] = ACTIONS(507), + [anon_sym_PUBLIC] = ACTIONS(507), + [anon_sym_Remote] = ACTIONS(507), + [anon_sym_remote] = ACTIONS(507), + [anon_sym_REMOTE] = ACTIONS(507), + [anon_sym_Static] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_STATIC] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(509), + [sym__static_type_prefix] = ACTIONS(509), }, - [STATE(708)] = { + [STATE(698)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_let] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(3072), + [anon_sym_COLON] = ACTIONS(2312), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_Query] = ACTIONS(507), [anon_sym_query] = ACTIONS(507), @@ -152618,155 +151269,3411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(509), [sym__static_type_prefix] = ACTIONS(509), }, + [STATE(699)] = { + [sym_identifier] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_Query] = ACTIONS(2228), + [anon_sym_query] = ACTIONS(2228), + [anon_sym_QUERY] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2230), + [aux_sym_unary_operator_token1] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2228), + [aux_sym_number_token2] = ACTIONS(2228), + [anon_sym_This] = ACTIONS(2228), + [anon_sym_this] = ACTIONS(2228), + [anon_sym_THIS] = ACTIONS(2228), + [anon_sym_Super] = ACTIONS(2228), + [anon_sym_super] = ACTIONS(2228), + [anon_sym_SUPER] = ACTIONS(2228), + [anon_sym_True] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_TRUE] = ACTIONS(2228), + [anon_sym_False] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_FALSE] = ACTIONS(2228), + [anon_sym_Null] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [anon_sym_NULL] = ACTIONS(2228), + [anon_sym_Undefined] = ACTIONS(2228), + [anon_sym_undefined] = ACTIONS(2228), + [anon_sym_UNDEFINED] = ACTIONS(2228), + [anon_sym_get] = ACTIONS(2228), + [anon_sym_set] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(2228), + [sym_hash_empty] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_QueryExecute] = ACTIONS(2228), + [anon_sym_queryexecute] = ACTIONS(2228), + [anon_sym_QUERYEXECUTE] = ACTIONS(2228), + [anon_sym_queryExecute] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_Abstract] = ACTIONS(2228), + [anon_sym_abstract] = ACTIONS(2228), + [anon_sym_ABSTRACT] = ACTIONS(2228), + [anon_sym_Component] = ACTIONS(2228), + [anon_sym_component] = ACTIONS(2228), + [anon_sym_COMPONENT] = ACTIONS(2228), + [anon_sym_Debugger] = ACTIONS(2228), + [anon_sym_debugger] = ACTIONS(2228), + [anon_sym_DEBUGGER] = ACTIONS(2228), + [anon_sym_Final] = ACTIONS(2228), + [anon_sym_final] = ACTIONS(2228), + [anon_sym_FINAL] = ACTIONS(2228), + [anon_sym_Function] = ACTIONS(2228), + [anon_sym_function] = ACTIONS(2228), + [anon_sym_FUNCTION] = ACTIONS(2228), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_Include] = ACTIONS(2228), + [anon_sym_include] = ACTIONS(2228), + [anon_sym_INCLUDE] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_INSTANCEOF] = ACTIONS(2228), + [anon_sym_instanceOf] = ACTIONS(2228), + [anon_sym_New] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2228), + [anon_sym_NEW] = ACTIONS(2228), + [anon_sym_Package] = ACTIONS(2228), + [anon_sym_package] = ACTIONS(2228), + [anon_sym_PACKAGE] = ACTIONS(2228), + [anon_sym_Private] = ACTIONS(2228), + [anon_sym_private] = ACTIONS(2228), + [anon_sym_PRIVATE] = ACTIONS(2228), + [anon_sym_Public] = ACTIONS(2228), + [anon_sym_public] = ACTIONS(2228), + [anon_sym_PUBLIC] = ACTIONS(2228), + [anon_sym_Remote] = ACTIONS(2228), + [anon_sym_remote] = ACTIONS(2228), + [anon_sym_REMOTE] = ACTIONS(2228), + [anon_sym_Static] = ACTIONS(2228), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_STATIC] = ACTIONS(2228), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), + [sym__java_block_open] = ACTIONS(2230), + [sym__static_type_prefix] = ACTIONS(2230), + }, + [STATE(700)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1590), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(3006), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(701)] = { + [sym_identifier] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_Query] = ACTIONS(2236), + [anon_sym_query] = ACTIONS(2236), + [anon_sym_QUERY] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2238), + [aux_sym_unary_operator_token1] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2236), + [aux_sym_number_token2] = ACTIONS(2236), + [anon_sym_This] = ACTIONS(2236), + [anon_sym_this] = ACTIONS(2236), + [anon_sym_THIS] = ACTIONS(2236), + [anon_sym_Super] = ACTIONS(2236), + [anon_sym_super] = ACTIONS(2236), + [anon_sym_SUPER] = ACTIONS(2236), + [anon_sym_True] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2236), + [anon_sym_TRUE] = ACTIONS(2236), + [anon_sym_False] = ACTIONS(2236), + [anon_sym_false] = ACTIONS(2236), + [anon_sym_FALSE] = ACTIONS(2236), + [anon_sym_Null] = ACTIONS(2236), + [anon_sym_null] = ACTIONS(2236), + [anon_sym_NULL] = ACTIONS(2236), + [anon_sym_Undefined] = ACTIONS(2236), + [anon_sym_undefined] = ACTIONS(2236), + [anon_sym_UNDEFINED] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(2236), + [sym_hash_empty] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_QueryExecute] = ACTIONS(2236), + [anon_sym_queryexecute] = ACTIONS(2236), + [anon_sym_QUERYEXECUTE] = ACTIONS(2236), + [anon_sym_queryExecute] = ACTIONS(2236), + [anon_sym_BQUOTE] = ACTIONS(2238), + [anon_sym_Abstract] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_ABSTRACT] = ACTIONS(2236), + [anon_sym_Component] = ACTIONS(2236), + [anon_sym_component] = ACTIONS(2236), + [anon_sym_COMPONENT] = ACTIONS(2236), + [anon_sym_Debugger] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_DEBUGGER] = ACTIONS(2236), + [anon_sym_Final] = ACTIONS(2236), + [anon_sym_final] = ACTIONS(2236), + [anon_sym_FINAL] = ACTIONS(2236), + [anon_sym_Function] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_FUNCTION] = ACTIONS(2236), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_Include] = ACTIONS(2236), + [anon_sym_include] = ACTIONS(2236), + [anon_sym_INCLUDE] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_INSTANCEOF] = ACTIONS(2236), + [anon_sym_instanceOf] = ACTIONS(2236), + [anon_sym_New] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_NEW] = ACTIONS(2236), + [anon_sym_Package] = ACTIONS(2236), + [anon_sym_package] = ACTIONS(2236), + [anon_sym_PACKAGE] = ACTIONS(2236), + [anon_sym_Private] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_PRIVATE] = ACTIONS(2236), + [anon_sym_Public] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_PUBLIC] = ACTIONS(2236), + [anon_sym_Remote] = ACTIONS(2236), + [anon_sym_remote] = ACTIONS(2236), + [anon_sym_REMOTE] = ACTIONS(2236), + [anon_sym_Static] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_STATIC] = ACTIONS(2236), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), + [sym__java_block_open] = ACTIONS(2238), + [sym__static_type_prefix] = ACTIONS(2238), + }, + [STATE(702)] = { + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1085), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1085), + [anon_sym_instanceof] = ACTIONS(1085), + [anon_sym_INSTANCEOF] = ACTIONS(1085), + [anon_sym_instanceOf] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(3008), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(703)] = { + [sym_identifier] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym_Query] = ACTIONS(2318), + [anon_sym_query] = ACTIONS(2318), + [anon_sym_QUERY] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2320), + [aux_sym_unary_operator_token1] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2318), + [aux_sym_number_token2] = ACTIONS(2318), + [anon_sym_This] = ACTIONS(2318), + [anon_sym_this] = ACTIONS(2318), + [anon_sym_THIS] = ACTIONS(2318), + [anon_sym_Super] = ACTIONS(2318), + [anon_sym_super] = ACTIONS(2318), + [anon_sym_SUPER] = ACTIONS(2318), + [anon_sym_True] = ACTIONS(2318), + [anon_sym_true] = ACTIONS(2318), + [anon_sym_TRUE] = ACTIONS(2318), + [anon_sym_False] = ACTIONS(2318), + [anon_sym_false] = ACTIONS(2318), + [anon_sym_FALSE] = ACTIONS(2318), + [anon_sym_Null] = ACTIONS(2318), + [anon_sym_null] = ACTIONS(2318), + [anon_sym_NULL] = ACTIONS(2318), + [anon_sym_Undefined] = ACTIONS(2318), + [anon_sym_undefined] = ACTIONS(2318), + [anon_sym_UNDEFINED] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [sym_hash_empty] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_QueryExecute] = ACTIONS(2318), + [anon_sym_queryexecute] = ACTIONS(2318), + [anon_sym_QUERYEXECUTE] = ACTIONS(2318), + [anon_sym_queryExecute] = ACTIONS(2318), + [anon_sym_BQUOTE] = ACTIONS(2320), + [anon_sym_Abstract] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_ABSTRACT] = ACTIONS(2318), + [anon_sym_Component] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_COMPONENT] = ACTIONS(2318), + [anon_sym_Debugger] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_DEBUGGER] = ACTIONS(2318), + [anon_sym_Final] = ACTIONS(2318), + [anon_sym_final] = ACTIONS(2318), + [anon_sym_FINAL] = ACTIONS(2318), + [anon_sym_Function] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_FUNCTION] = ACTIONS(2318), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_Include] = ACTIONS(2318), + [anon_sym_include] = ACTIONS(2318), + [anon_sym_INCLUDE] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_INSTANCEOF] = ACTIONS(2318), + [anon_sym_instanceOf] = ACTIONS(2318), + [anon_sym_New] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_NEW] = ACTIONS(2318), + [anon_sym_Package] = ACTIONS(2318), + [anon_sym_package] = ACTIONS(2318), + [anon_sym_PACKAGE] = ACTIONS(2318), + [anon_sym_Private] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_PRIVATE] = ACTIONS(2318), + [anon_sym_Public] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_PUBLIC] = ACTIONS(2318), + [anon_sym_Remote] = ACTIONS(2318), + [anon_sym_remote] = ACTIONS(2318), + [anon_sym_REMOTE] = ACTIONS(2318), + [anon_sym_Static] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_STATIC] = ACTIONS(2318), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + [sym__java_block_open] = ACTIONS(2320), + [sym__static_type_prefix] = ACTIONS(2320), + }, + [STATE(704)] = { + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_RBRACE] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_Query] = ACTIONS(3012), + [anon_sym_query] = ACTIONS(3012), + [anon_sym_QUERY] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_unary_operator_token1] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3012), + [aux_sym_number_token2] = ACTIONS(3010), + [anon_sym_This] = ACTIONS(3012), + [anon_sym_this] = ACTIONS(3012), + [anon_sym_THIS] = ACTIONS(3012), + [anon_sym_Super] = ACTIONS(3012), + [anon_sym_super] = ACTIONS(3012), + [anon_sym_SUPER] = ACTIONS(3012), + [anon_sym_True] = ACTIONS(3012), + [anon_sym_true] = ACTIONS(3012), + [anon_sym_TRUE] = ACTIONS(3012), + [anon_sym_False] = ACTIONS(3012), + [anon_sym_false] = ACTIONS(3012), + [anon_sym_FALSE] = ACTIONS(3012), + [anon_sym_Null] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_Undefined] = ACTIONS(3012), + [anon_sym_undefined] = ACTIONS(3012), + [anon_sym_UNDEFINED] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(3012), + [anon_sym_set] = ACTIONS(3012), + [anon_sym_POUND] = ACTIONS(3012), + [sym_hash_empty] = ACTIONS(3010), + [anon_sym_export] = ACTIONS(3012), + [anon_sym_QueryExecute] = ACTIONS(3012), + [anon_sym_queryexecute] = ACTIONS(3012), + [anon_sym_QUERYEXECUTE] = ACTIONS(3012), + [anon_sym_queryExecute] = ACTIONS(3012), + [anon_sym_BQUOTE] = ACTIONS(3012), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3010), + [anon_sym_Abstract] = ACTIONS(3012), + [anon_sym_abstract] = ACTIONS(3012), + [anon_sym_ABSTRACT] = ACTIONS(3012), + [anon_sym_Break] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_BREAK] = ACTIONS(3012), + [anon_sym_Case] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_CASE] = ACTIONS(3012), + [anon_sym_Component] = ACTIONS(3012), + [anon_sym_component] = ACTIONS(3012), + [anon_sym_COMPONENT] = ACTIONS(3012), + [anon_sym_Continue] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_CONTINUE] = ACTIONS(3012), + [anon_sym_Debugger] = ACTIONS(3012), + [anon_sym_debugger] = ACTIONS(3012), + [anon_sym_DEBUGGER] = ACTIONS(3012), + [anon_sym_Default] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_DEFAULT] = ACTIONS(3012), + [anon_sym_Do] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_DO] = ACTIONS(3012), + [anon_sym_Else] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_ELSE] = ACTIONS(3012), + [anon_sym_Final] = ACTIONS(3012), + [anon_sym_final] = ACTIONS(3012), + [anon_sym_FINAL] = ACTIONS(3012), + [anon_sym_For] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_FOR] = ACTIONS(3012), + [anon_sym_Function] = ACTIONS(3012), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_FUNCTION] = ACTIONS(3012), + [anon_sym_If] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_IF] = ACTIONS(3012), + [anon_sym_Import] = ACTIONS(3012), + [anon_sym_import] = ACTIONS(3012), + [anon_sym_IMPORT] = ACTIONS(3012), + [anon_sym_Include] = ACTIONS(3012), + [anon_sym_include] = ACTIONS(3012), + [anon_sym_INCLUDE] = ACTIONS(3012), + [anon_sym_Interface] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_INTERFACE] = ACTIONS(3012), + [anon_sym_New] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_NEW] = ACTIONS(3012), + [anon_sym_Package] = ACTIONS(3012), + [anon_sym_package] = ACTIONS(3012), + [anon_sym_PACKAGE] = ACTIONS(3012), + [anon_sym_Private] = ACTIONS(3012), + [anon_sym_private] = ACTIONS(3012), + [anon_sym_PRIVATE] = ACTIONS(3012), + [anon_sym_Property] = ACTIONS(3012), + [anon_sym_property] = ACTIONS(3012), + [anon_sym_PROPERTY] = ACTIONS(3012), + [anon_sym_Public] = ACTIONS(3012), + [anon_sym_public] = ACTIONS(3012), + [anon_sym_PUBLIC] = ACTIONS(3012), + [anon_sym_Remote] = ACTIONS(3012), + [anon_sym_remote] = ACTIONS(3012), + [anon_sym_REMOTE] = ACTIONS(3012), + [anon_sym_Return] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_RETURN] = ACTIONS(3012), + [anon_sym_Static] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_STATIC] = ACTIONS(3012), + [anon_sym_Switch] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_SWITCH] = ACTIONS(3012), + [anon_sym_Throw] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_THROW] = ACTIONS(3012), + [anon_sym_Try] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_TRY] = ACTIONS(3012), + [anon_sym_Var] = ACTIONS(3012), + [anon_sym_var] = ACTIONS(3012), + [anon_sym_VAR] = ACTIONS(3012), + [anon_sym_While] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_WHILE] = ACTIONS(3012), + [anon_sym_With] = ACTIONS(3012), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_WITH] = ACTIONS(3012), + [sym_cf_comment] = ACTIONS(3010), + [sym__java_block_open] = ACTIONS(3010), + [sym__static_type_prefix] = ACTIONS(3010), + }, + [STATE(705)] = { + [ts_builtin_sym_end] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_let] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_Query] = ACTIONS(3016), + [anon_sym_query] = ACTIONS(3016), + [anon_sym_QUERY] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [aux_sym_unary_operator_token1] = ACTIONS(3016), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3016), + [aux_sym_number_token2] = ACTIONS(3014), + [anon_sym_This] = ACTIONS(3016), + [anon_sym_this] = ACTIONS(3016), + [anon_sym_THIS] = ACTIONS(3016), + [anon_sym_Super] = ACTIONS(3016), + [anon_sym_super] = ACTIONS(3016), + [anon_sym_SUPER] = ACTIONS(3016), + [anon_sym_True] = ACTIONS(3016), + [anon_sym_true] = ACTIONS(3016), + [anon_sym_TRUE] = ACTIONS(3016), + [anon_sym_False] = ACTIONS(3016), + [anon_sym_false] = ACTIONS(3016), + [anon_sym_FALSE] = ACTIONS(3016), + [anon_sym_Null] = ACTIONS(3016), + [anon_sym_null] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_Undefined] = ACTIONS(3016), + [anon_sym_undefined] = ACTIONS(3016), + [anon_sym_UNDEFINED] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [sym_hash_empty] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_QueryExecute] = ACTIONS(3016), + [anon_sym_queryexecute] = ACTIONS(3016), + [anon_sym_QUERYEXECUTE] = ACTIONS(3016), + [anon_sym_queryExecute] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3014), + [anon_sym_Abstract] = ACTIONS(3016), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_ABSTRACT] = ACTIONS(3016), + [anon_sym_Break] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_BREAK] = ACTIONS(3016), + [anon_sym_Case] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_CASE] = ACTIONS(3016), + [anon_sym_Component] = ACTIONS(3016), + [anon_sym_component] = ACTIONS(3016), + [anon_sym_COMPONENT] = ACTIONS(3016), + [anon_sym_Continue] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_CONTINUE] = ACTIONS(3016), + [anon_sym_Debugger] = ACTIONS(3016), + [anon_sym_debugger] = ACTIONS(3016), + [anon_sym_DEBUGGER] = ACTIONS(3016), + [anon_sym_Default] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_DEFAULT] = ACTIONS(3016), + [anon_sym_Do] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_DO] = ACTIONS(3016), + [anon_sym_Else] = ACTIONS(3016), + [anon_sym_else] = ACTIONS(3016), + [anon_sym_ELSE] = ACTIONS(3016), + [anon_sym_Final] = ACTIONS(3016), + [anon_sym_final] = ACTIONS(3016), + [anon_sym_FINAL] = ACTIONS(3016), + [anon_sym_For] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_FOR] = ACTIONS(3016), + [anon_sym_Function] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(3016), + [anon_sym_FUNCTION] = ACTIONS(3016), + [anon_sym_If] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_IF] = ACTIONS(3016), + [anon_sym_Import] = ACTIONS(3016), + [anon_sym_import] = ACTIONS(3016), + [anon_sym_IMPORT] = ACTIONS(3016), + [anon_sym_Include] = ACTIONS(3016), + [anon_sym_include] = ACTIONS(3016), + [anon_sym_INCLUDE] = ACTIONS(3016), + [anon_sym_Interface] = ACTIONS(3016), + [anon_sym_interface] = ACTIONS(3016), + [anon_sym_INTERFACE] = ACTIONS(3016), + [anon_sym_New] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_NEW] = ACTIONS(3016), + [anon_sym_Package] = ACTIONS(3016), + [anon_sym_package] = ACTIONS(3016), + [anon_sym_PACKAGE] = ACTIONS(3016), + [anon_sym_Private] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_PRIVATE] = ACTIONS(3016), + [anon_sym_Property] = ACTIONS(3016), + [anon_sym_property] = ACTIONS(3016), + [anon_sym_PROPERTY] = ACTIONS(3016), + [anon_sym_Public] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_PUBLIC] = ACTIONS(3016), + [anon_sym_Remote] = ACTIONS(3016), + [anon_sym_remote] = ACTIONS(3016), + [anon_sym_REMOTE] = ACTIONS(3016), + [anon_sym_Return] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_RETURN] = ACTIONS(3016), + [anon_sym_Static] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_STATIC] = ACTIONS(3016), + [anon_sym_Switch] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_SWITCH] = ACTIONS(3016), + [anon_sym_Throw] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_THROW] = ACTIONS(3016), + [anon_sym_Try] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_TRY] = ACTIONS(3016), + [anon_sym_Var] = ACTIONS(3016), + [anon_sym_var] = ACTIONS(3016), + [anon_sym_VAR] = ACTIONS(3016), + [anon_sym_While] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_WHILE] = ACTIONS(3016), + [anon_sym_With] = ACTIONS(3016), + [anon_sym_with] = ACTIONS(3016), + [anon_sym_WITH] = ACTIONS(3016), + [sym_cf_comment] = ACTIONS(3014), + [sym__java_block_open] = ACTIONS(3014), + [sym__static_type_prefix] = ACTIONS(3014), + }, + [STATE(706)] = { + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_let] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_Query] = ACTIONS(3020), + [anon_sym_query] = ACTIONS(3020), + [anon_sym_QUERY] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [aux_sym_unary_operator_token1] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3020), + [aux_sym_number_token2] = ACTIONS(3018), + [anon_sym_This] = ACTIONS(3020), + [anon_sym_this] = ACTIONS(3020), + [anon_sym_THIS] = ACTIONS(3020), + [anon_sym_Super] = ACTIONS(3020), + [anon_sym_super] = ACTIONS(3020), + [anon_sym_SUPER] = ACTIONS(3020), + [anon_sym_True] = ACTIONS(3020), + [anon_sym_true] = ACTIONS(3020), + [anon_sym_TRUE] = ACTIONS(3020), + [anon_sym_False] = ACTIONS(3020), + [anon_sym_false] = ACTIONS(3020), + [anon_sym_FALSE] = ACTIONS(3020), + [anon_sym_Null] = ACTIONS(3020), + [anon_sym_null] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_Undefined] = ACTIONS(3020), + [anon_sym_undefined] = ACTIONS(3020), + [anon_sym_UNDEFINED] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(3020), + [anon_sym_set] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [sym_hash_empty] = ACTIONS(3018), + [anon_sym_export] = ACTIONS(3020), + [anon_sym_QueryExecute] = ACTIONS(3020), + [anon_sym_queryexecute] = ACTIONS(3020), + [anon_sym_QUERYEXECUTE] = ACTIONS(3020), + [anon_sym_queryExecute] = ACTIONS(3020), + [anon_sym_BQUOTE] = ACTIONS(3020), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3018), + [anon_sym_Abstract] = ACTIONS(3020), + [anon_sym_abstract] = ACTIONS(3020), + [anon_sym_ABSTRACT] = ACTIONS(3020), + [anon_sym_Break] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_BREAK] = ACTIONS(3020), + [anon_sym_Case] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_CASE] = ACTIONS(3020), + [anon_sym_Component] = ACTIONS(3020), + [anon_sym_component] = ACTIONS(3020), + [anon_sym_COMPONENT] = ACTIONS(3020), + [anon_sym_Continue] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_CONTINUE] = ACTIONS(3020), + [anon_sym_Debugger] = ACTIONS(3020), + [anon_sym_debugger] = ACTIONS(3020), + [anon_sym_DEBUGGER] = ACTIONS(3020), + [anon_sym_Default] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_DEFAULT] = ACTIONS(3020), + [anon_sym_Do] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_DO] = ACTIONS(3020), + [anon_sym_Else] = ACTIONS(3020), + [anon_sym_else] = ACTIONS(3020), + [anon_sym_ELSE] = ACTIONS(3020), + [anon_sym_Final] = ACTIONS(3020), + [anon_sym_final] = ACTIONS(3020), + [anon_sym_FINAL] = ACTIONS(3020), + [anon_sym_For] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_FOR] = ACTIONS(3020), + [anon_sym_Function] = ACTIONS(3020), + [anon_sym_function] = ACTIONS(3020), + [anon_sym_FUNCTION] = ACTIONS(3020), + [anon_sym_If] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_IF] = ACTIONS(3020), + [anon_sym_Import] = ACTIONS(3020), + [anon_sym_import] = ACTIONS(3020), + [anon_sym_IMPORT] = ACTIONS(3020), + [anon_sym_Include] = ACTIONS(3020), + [anon_sym_include] = ACTIONS(3020), + [anon_sym_INCLUDE] = ACTIONS(3020), + [anon_sym_Interface] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_INTERFACE] = ACTIONS(3020), + [anon_sym_New] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_NEW] = ACTIONS(3020), + [anon_sym_Package] = ACTIONS(3020), + [anon_sym_package] = ACTIONS(3020), + [anon_sym_PACKAGE] = ACTIONS(3020), + [anon_sym_Private] = ACTIONS(3020), + [anon_sym_private] = ACTIONS(3020), + [anon_sym_PRIVATE] = ACTIONS(3020), + [anon_sym_Property] = ACTIONS(3020), + [anon_sym_property] = ACTIONS(3020), + [anon_sym_PROPERTY] = ACTIONS(3020), + [anon_sym_Public] = ACTIONS(3020), + [anon_sym_public] = ACTIONS(3020), + [anon_sym_PUBLIC] = ACTIONS(3020), + [anon_sym_Remote] = ACTIONS(3020), + [anon_sym_remote] = ACTIONS(3020), + [anon_sym_REMOTE] = ACTIONS(3020), + [anon_sym_Return] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_RETURN] = ACTIONS(3020), + [anon_sym_Static] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_STATIC] = ACTIONS(3020), + [anon_sym_Switch] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_SWITCH] = ACTIONS(3020), + [anon_sym_Throw] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_THROW] = ACTIONS(3020), + [anon_sym_Try] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_TRY] = ACTIONS(3020), + [anon_sym_Var] = ACTIONS(3020), + [anon_sym_var] = ACTIONS(3020), + [anon_sym_VAR] = ACTIONS(3020), + [anon_sym_While] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_WHILE] = ACTIONS(3020), + [anon_sym_With] = ACTIONS(3020), + [anon_sym_with] = ACTIONS(3020), + [anon_sym_WITH] = ACTIONS(3020), + [sym_cf_comment] = ACTIONS(3018), + [sym__java_block_open] = ACTIONS(3018), + [sym__static_type_prefix] = ACTIONS(3018), + }, + [STATE(707)] = { + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_Query] = ACTIONS(3024), + [anon_sym_query] = ACTIONS(3024), + [anon_sym_QUERY] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_unary_operator_token1] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3024), + [aux_sym_number_token2] = ACTIONS(3022), + [anon_sym_This] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_THIS] = ACTIONS(3024), + [anon_sym_Super] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), + [anon_sym_SUPER] = ACTIONS(3024), + [anon_sym_True] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_TRUE] = ACTIONS(3024), + [anon_sym_False] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_FALSE] = ACTIONS(3024), + [anon_sym_Null] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_Undefined] = ACTIONS(3024), + [anon_sym_undefined] = ACTIONS(3024), + [anon_sym_UNDEFINED] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [sym_hash_empty] = ACTIONS(3022), + [anon_sym_export] = ACTIONS(3024), + [anon_sym_QueryExecute] = ACTIONS(3024), + [anon_sym_queryexecute] = ACTIONS(3024), + [anon_sym_QUERYEXECUTE] = ACTIONS(3024), + [anon_sym_queryExecute] = ACTIONS(3024), + [anon_sym_BQUOTE] = ACTIONS(3024), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3022), + [anon_sym_Abstract] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_ABSTRACT] = ACTIONS(3024), + [anon_sym_Break] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_BREAK] = ACTIONS(3024), + [anon_sym_Case] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_CASE] = ACTIONS(3024), + [anon_sym_Component] = ACTIONS(3024), + [anon_sym_component] = ACTIONS(3024), + [anon_sym_COMPONENT] = ACTIONS(3024), + [anon_sym_Continue] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_CONTINUE] = ACTIONS(3024), + [anon_sym_Debugger] = ACTIONS(3024), + [anon_sym_debugger] = ACTIONS(3024), + [anon_sym_DEBUGGER] = ACTIONS(3024), + [anon_sym_Default] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_DEFAULT] = ACTIONS(3024), + [anon_sym_Do] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_DO] = ACTIONS(3024), + [anon_sym_Else] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_ELSE] = ACTIONS(3024), + [anon_sym_Final] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_FINAL] = ACTIONS(3024), + [anon_sym_For] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_FOR] = ACTIONS(3024), + [anon_sym_Function] = ACTIONS(3024), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_FUNCTION] = ACTIONS(3024), + [anon_sym_If] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_IF] = ACTIONS(3024), + [anon_sym_Import] = ACTIONS(3024), + [anon_sym_import] = ACTIONS(3024), + [anon_sym_IMPORT] = ACTIONS(3024), + [anon_sym_Include] = ACTIONS(3024), + [anon_sym_include] = ACTIONS(3024), + [anon_sym_INCLUDE] = ACTIONS(3024), + [anon_sym_Interface] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_INTERFACE] = ACTIONS(3024), + [anon_sym_New] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_NEW] = ACTIONS(3024), + [anon_sym_Package] = ACTIONS(3024), + [anon_sym_package] = ACTIONS(3024), + [anon_sym_PACKAGE] = ACTIONS(3024), + [anon_sym_Private] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_PRIVATE] = ACTIONS(3024), + [anon_sym_Property] = ACTIONS(3024), + [anon_sym_property] = ACTIONS(3024), + [anon_sym_PROPERTY] = ACTIONS(3024), + [anon_sym_Public] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_PUBLIC] = ACTIONS(3024), + [anon_sym_Remote] = ACTIONS(3024), + [anon_sym_remote] = ACTIONS(3024), + [anon_sym_REMOTE] = ACTIONS(3024), + [anon_sym_Return] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_RETURN] = ACTIONS(3024), + [anon_sym_Static] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_STATIC] = ACTIONS(3024), + [anon_sym_Switch] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_SWITCH] = ACTIONS(3024), + [anon_sym_Throw] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_THROW] = ACTIONS(3024), + [anon_sym_Try] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_TRY] = ACTIONS(3024), + [anon_sym_Var] = ACTIONS(3024), + [anon_sym_var] = ACTIONS(3024), + [anon_sym_VAR] = ACTIONS(3024), + [anon_sym_While] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_WHILE] = ACTIONS(3024), + [anon_sym_With] = ACTIONS(3024), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_WITH] = ACTIONS(3024), + [sym_cf_comment] = ACTIONS(3022), + [sym__java_block_open] = ACTIONS(3022), + [sym__static_type_prefix] = ACTIONS(3022), + }, + [STATE(708)] = { + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_let] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_Query] = ACTIONS(3028), + [anon_sym_query] = ACTIONS(3028), + [anon_sym_QUERY] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_SLASH] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [aux_sym_unary_operator_token1] = ACTIONS(3028), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3028), + [aux_sym_number_token2] = ACTIONS(3026), + [anon_sym_This] = ACTIONS(3028), + [anon_sym_this] = ACTIONS(3028), + [anon_sym_THIS] = ACTIONS(3028), + [anon_sym_Super] = ACTIONS(3028), + [anon_sym_super] = ACTIONS(3028), + [anon_sym_SUPER] = ACTIONS(3028), + [anon_sym_True] = ACTIONS(3028), + [anon_sym_true] = ACTIONS(3028), + [anon_sym_TRUE] = ACTIONS(3028), + [anon_sym_False] = ACTIONS(3028), + [anon_sym_false] = ACTIONS(3028), + [anon_sym_FALSE] = ACTIONS(3028), + [anon_sym_Null] = ACTIONS(3028), + [anon_sym_null] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_Undefined] = ACTIONS(3028), + [anon_sym_undefined] = ACTIONS(3028), + [anon_sym_UNDEFINED] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(3028), + [anon_sym_set] = ACTIONS(3028), + [anon_sym_POUND] = ACTIONS(3028), + [sym_hash_empty] = ACTIONS(3026), + [anon_sym_export] = ACTIONS(3028), + [anon_sym_QueryExecute] = ACTIONS(3028), + [anon_sym_queryexecute] = ACTIONS(3028), + [anon_sym_QUERYEXECUTE] = ACTIONS(3028), + [anon_sym_queryExecute] = ACTIONS(3028), + [anon_sym_BQUOTE] = ACTIONS(3028), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3026), + [anon_sym_Abstract] = ACTIONS(3028), + [anon_sym_abstract] = ACTIONS(3028), + [anon_sym_ABSTRACT] = ACTIONS(3028), + [anon_sym_Break] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_BREAK] = ACTIONS(3028), + [anon_sym_Case] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_CASE] = ACTIONS(3028), + [anon_sym_Component] = ACTIONS(3028), + [anon_sym_component] = ACTIONS(3028), + [anon_sym_COMPONENT] = ACTIONS(3028), + [anon_sym_Continue] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_CONTINUE] = ACTIONS(3028), + [anon_sym_Debugger] = ACTIONS(3028), + [anon_sym_debugger] = ACTIONS(3028), + [anon_sym_DEBUGGER] = ACTIONS(3028), + [anon_sym_Default] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_DEFAULT] = ACTIONS(3028), + [anon_sym_Do] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_DO] = ACTIONS(3028), + [anon_sym_Else] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_ELSE] = ACTIONS(3028), + [anon_sym_Final] = ACTIONS(3028), + [anon_sym_final] = ACTIONS(3028), + [anon_sym_FINAL] = ACTIONS(3028), + [anon_sym_For] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_FOR] = ACTIONS(3028), + [anon_sym_Function] = ACTIONS(3028), + [anon_sym_function] = ACTIONS(3028), + [anon_sym_FUNCTION] = ACTIONS(3028), + [anon_sym_If] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_IF] = ACTIONS(3028), + [anon_sym_Import] = ACTIONS(3028), + [anon_sym_import] = ACTIONS(3028), + [anon_sym_IMPORT] = ACTIONS(3028), + [anon_sym_Include] = ACTIONS(3028), + [anon_sym_include] = ACTIONS(3028), + [anon_sym_INCLUDE] = ACTIONS(3028), + [anon_sym_Interface] = ACTIONS(3028), + [anon_sym_interface] = ACTIONS(3028), + [anon_sym_INTERFACE] = ACTIONS(3028), + [anon_sym_New] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_NEW] = ACTIONS(3028), + [anon_sym_Package] = ACTIONS(3028), + [anon_sym_package] = ACTIONS(3028), + [anon_sym_PACKAGE] = ACTIONS(3028), + [anon_sym_Private] = ACTIONS(3028), + [anon_sym_private] = ACTIONS(3028), + [anon_sym_PRIVATE] = ACTIONS(3028), + [anon_sym_Property] = ACTIONS(3028), + [anon_sym_property] = ACTIONS(3028), + [anon_sym_PROPERTY] = ACTIONS(3028), + [anon_sym_Public] = ACTIONS(3028), + [anon_sym_public] = ACTIONS(3028), + [anon_sym_PUBLIC] = ACTIONS(3028), + [anon_sym_Remote] = ACTIONS(3028), + [anon_sym_remote] = ACTIONS(3028), + [anon_sym_REMOTE] = ACTIONS(3028), + [anon_sym_Return] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_RETURN] = ACTIONS(3028), + [anon_sym_Static] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_STATIC] = ACTIONS(3028), + [anon_sym_Switch] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_SWITCH] = ACTIONS(3028), + [anon_sym_Throw] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_THROW] = ACTIONS(3028), + [anon_sym_Try] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_TRY] = ACTIONS(3028), + [anon_sym_Var] = ACTIONS(3028), + [anon_sym_var] = ACTIONS(3028), + [anon_sym_VAR] = ACTIONS(3028), + [anon_sym_While] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_WHILE] = ACTIONS(3028), + [anon_sym_With] = ACTIONS(3028), + [anon_sym_with] = ACTIONS(3028), + [anon_sym_WITH] = ACTIONS(3028), + [sym_cf_comment] = ACTIONS(3026), + [sym__java_block_open] = ACTIONS(3026), + [sym__static_type_prefix] = ACTIONS(3026), + }, [STATE(709)] = { - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_Query] = ACTIONS(3076), - [anon_sym_query] = ACTIONS(3076), - [anon_sym_QUERY] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_SLASH] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_unary_operator_token1] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3076), - [aux_sym_number_token2] = ACTIONS(3074), - [anon_sym_This] = ACTIONS(3076), - [anon_sym_this] = ACTIONS(3076), - [anon_sym_THIS] = ACTIONS(3076), - [anon_sym_Super] = ACTIONS(3076), - [anon_sym_super] = ACTIONS(3076), - [anon_sym_SUPER] = ACTIONS(3076), - [anon_sym_True] = ACTIONS(3076), - [anon_sym_true] = ACTIONS(3076), - [anon_sym_TRUE] = ACTIONS(3076), - [anon_sym_False] = ACTIONS(3076), - [anon_sym_false] = ACTIONS(3076), - [anon_sym_FALSE] = ACTIONS(3076), - [anon_sym_Null] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_Undefined] = ACTIONS(3076), - [anon_sym_undefined] = ACTIONS(3076), - [anon_sym_UNDEFINED] = ACTIONS(3076), - [anon_sym_get] = ACTIONS(3076), - [anon_sym_set] = ACTIONS(3076), - [anon_sym_POUND] = ACTIONS(3076), - [sym_hash_empty] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3076), - [anon_sym_QueryExecute] = ACTIONS(3076), - [anon_sym_queryexecute] = ACTIONS(3076), - [anon_sym_QUERYEXECUTE] = ACTIONS(3076), - [anon_sym_queryExecute] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3074), - [anon_sym_Abstract] = ACTIONS(3076), - [anon_sym_abstract] = ACTIONS(3076), - [anon_sym_ABSTRACT] = ACTIONS(3076), - [anon_sym_Break] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_BREAK] = ACTIONS(3076), - [anon_sym_Case] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3076), - [anon_sym_CASE] = ACTIONS(3076), - [anon_sym_Component] = ACTIONS(3076), - [anon_sym_component] = ACTIONS(3076), - [anon_sym_COMPONENT] = ACTIONS(3076), - [anon_sym_Continue] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_CONTINUE] = ACTIONS(3076), - [anon_sym_Debugger] = ACTIONS(3076), - [anon_sym_debugger] = ACTIONS(3076), - [anon_sym_DEBUGGER] = ACTIONS(3076), - [anon_sym_Default] = ACTIONS(3076), - [anon_sym_default] = ACTIONS(3076), - [anon_sym_DEFAULT] = ACTIONS(3076), - [anon_sym_Do] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_DO] = ACTIONS(3076), - [anon_sym_Else] = ACTIONS(3076), - [anon_sym_else] = ACTIONS(3076), - [anon_sym_ELSE] = ACTIONS(3076), - [anon_sym_Final] = ACTIONS(3076), - [anon_sym_final] = ACTIONS(3076), - [anon_sym_FINAL] = ACTIONS(3076), - [anon_sym_For] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_FOR] = ACTIONS(3076), - [anon_sym_Function] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_FUNCTION] = ACTIONS(3076), - [anon_sym_If] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_IF] = ACTIONS(3076), - [anon_sym_Import] = ACTIONS(3076), - [anon_sym_import] = ACTIONS(3076), - [anon_sym_IMPORT] = ACTIONS(3076), - [anon_sym_Include] = ACTIONS(3076), - [anon_sym_include] = ACTIONS(3076), - [anon_sym_INCLUDE] = ACTIONS(3076), - [anon_sym_Interface] = ACTIONS(3076), - [anon_sym_interface] = ACTIONS(3076), - [anon_sym_INTERFACE] = ACTIONS(3076), - [anon_sym_New] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_NEW] = ACTIONS(3076), - [anon_sym_Package] = ACTIONS(3076), - [anon_sym_package] = ACTIONS(3076), - [anon_sym_PACKAGE] = ACTIONS(3076), - [anon_sym_Private] = ACTIONS(3076), - [anon_sym_private] = ACTIONS(3076), - [anon_sym_PRIVATE] = ACTIONS(3076), - [anon_sym_Property] = ACTIONS(3076), - [anon_sym_property] = ACTIONS(3076), - [anon_sym_PROPERTY] = ACTIONS(3076), - [anon_sym_Public] = ACTIONS(3076), - [anon_sym_public] = ACTIONS(3076), - [anon_sym_PUBLIC] = ACTIONS(3076), - [anon_sym_Remote] = ACTIONS(3076), - [anon_sym_remote] = ACTIONS(3076), - [anon_sym_REMOTE] = ACTIONS(3076), - [anon_sym_Return] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_RETURN] = ACTIONS(3076), - [anon_sym_Static] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_STATIC] = ACTIONS(3076), - [anon_sym_Switch] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_SWITCH] = ACTIONS(3076), - [anon_sym_Throw] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_THROW] = ACTIONS(3076), - [anon_sym_Try] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_TRY] = ACTIONS(3076), - [anon_sym_Var] = ACTIONS(3076), - [anon_sym_var] = ACTIONS(3076), - [anon_sym_VAR] = ACTIONS(3076), - [anon_sym_While] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_WHILE] = ACTIONS(3076), - [anon_sym_With] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_WITH] = ACTIONS(3076), - [sym_cf_comment] = ACTIONS(3074), - [sym__java_block_open] = ACTIONS(3074), - [sym__static_type_prefix] = ACTIONS(3074), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_Query] = ACTIONS(3032), + [anon_sym_query] = ACTIONS(3032), + [anon_sym_QUERY] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_unary_operator_token1] = ACTIONS(3032), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3032), + [aux_sym_number_token2] = ACTIONS(3030), + [anon_sym_This] = ACTIONS(3032), + [anon_sym_this] = ACTIONS(3032), + [anon_sym_THIS] = ACTIONS(3032), + [anon_sym_Super] = ACTIONS(3032), + [anon_sym_super] = ACTIONS(3032), + [anon_sym_SUPER] = ACTIONS(3032), + [anon_sym_True] = ACTIONS(3032), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_TRUE] = ACTIONS(3032), + [anon_sym_False] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_FALSE] = ACTIONS(3032), + [anon_sym_Null] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_NULL] = ACTIONS(3032), + [anon_sym_Undefined] = ACTIONS(3032), + [anon_sym_undefined] = ACTIONS(3032), + [anon_sym_UNDEFINED] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(3032), + [anon_sym_set] = ACTIONS(3032), + [anon_sym_POUND] = ACTIONS(3032), + [sym_hash_empty] = ACTIONS(3030), + [anon_sym_export] = ACTIONS(3032), + [anon_sym_QueryExecute] = ACTIONS(3032), + [anon_sym_queryexecute] = ACTIONS(3032), + [anon_sym_QUERYEXECUTE] = ACTIONS(3032), + [anon_sym_queryExecute] = ACTIONS(3032), + [anon_sym_BQUOTE] = ACTIONS(3032), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3030), + [anon_sym_Abstract] = ACTIONS(3032), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_ABSTRACT] = ACTIONS(3032), + [anon_sym_Break] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_BREAK] = ACTIONS(3032), + [anon_sym_Case] = ACTIONS(3032), + [anon_sym_case] = ACTIONS(3032), + [anon_sym_CASE] = ACTIONS(3032), + [anon_sym_Component] = ACTIONS(3032), + [anon_sym_component] = ACTIONS(3032), + [anon_sym_COMPONENT] = ACTIONS(3032), + [anon_sym_Continue] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_CONTINUE] = ACTIONS(3032), + [anon_sym_Debugger] = ACTIONS(3032), + [anon_sym_debugger] = ACTIONS(3032), + [anon_sym_DEBUGGER] = ACTIONS(3032), + [anon_sym_Default] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_DEFAULT] = ACTIONS(3032), + [anon_sym_Do] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_DO] = ACTIONS(3032), + [anon_sym_Else] = ACTIONS(3032), + [anon_sym_else] = ACTIONS(3032), + [anon_sym_ELSE] = ACTIONS(3032), + [anon_sym_Final] = ACTIONS(3032), + [anon_sym_final] = ACTIONS(3032), + [anon_sym_FINAL] = ACTIONS(3032), + [anon_sym_For] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_FOR] = ACTIONS(3032), + [anon_sym_Function] = ACTIONS(3032), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_FUNCTION] = ACTIONS(3032), + [anon_sym_If] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_IF] = ACTIONS(3032), + [anon_sym_Import] = ACTIONS(3032), + [anon_sym_import] = ACTIONS(3032), + [anon_sym_IMPORT] = ACTIONS(3032), + [anon_sym_Include] = ACTIONS(3032), + [anon_sym_include] = ACTIONS(3032), + [anon_sym_INCLUDE] = ACTIONS(3032), + [anon_sym_Interface] = ACTIONS(3032), + [anon_sym_interface] = ACTIONS(3032), + [anon_sym_INTERFACE] = ACTIONS(3032), + [anon_sym_New] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_NEW] = ACTIONS(3032), + [anon_sym_Package] = ACTIONS(3032), + [anon_sym_package] = ACTIONS(3032), + [anon_sym_PACKAGE] = ACTIONS(3032), + [anon_sym_Private] = ACTIONS(3032), + [anon_sym_private] = ACTIONS(3032), + [anon_sym_PRIVATE] = ACTIONS(3032), + [anon_sym_Property] = ACTIONS(3032), + [anon_sym_property] = ACTIONS(3032), + [anon_sym_PROPERTY] = ACTIONS(3032), + [anon_sym_Public] = ACTIONS(3032), + [anon_sym_public] = ACTIONS(3032), + [anon_sym_PUBLIC] = ACTIONS(3032), + [anon_sym_Remote] = ACTIONS(3032), + [anon_sym_remote] = ACTIONS(3032), + [anon_sym_REMOTE] = ACTIONS(3032), + [anon_sym_Return] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_RETURN] = ACTIONS(3032), + [anon_sym_Static] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_STATIC] = ACTIONS(3032), + [anon_sym_Switch] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3032), + [anon_sym_SWITCH] = ACTIONS(3032), + [anon_sym_Throw] = ACTIONS(3032), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_THROW] = ACTIONS(3032), + [anon_sym_Try] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_TRY] = ACTIONS(3032), + [anon_sym_Var] = ACTIONS(3032), + [anon_sym_var] = ACTIONS(3032), + [anon_sym_VAR] = ACTIONS(3032), + [anon_sym_While] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_WHILE] = ACTIONS(3032), + [anon_sym_With] = ACTIONS(3032), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_WITH] = ACTIONS(3032), + [sym_cf_comment] = ACTIONS(3030), + [sym__java_block_open] = ACTIONS(3030), + [sym__static_type_prefix] = ACTIONS(3030), }, [STATE(710)] = { + [ts_builtin_sym_end] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3034), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_let] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3034), + [anon_sym_Query] = ACTIONS(3036), + [anon_sym_query] = ACTIONS(3036), + [anon_sym_QUERY] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [aux_sym_unary_operator_token1] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3034), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3036), + [aux_sym_number_token2] = ACTIONS(3034), + [anon_sym_This] = ACTIONS(3036), + [anon_sym_this] = ACTIONS(3036), + [anon_sym_THIS] = ACTIONS(3036), + [anon_sym_Super] = ACTIONS(3036), + [anon_sym_super] = ACTIONS(3036), + [anon_sym_SUPER] = ACTIONS(3036), + [anon_sym_True] = ACTIONS(3036), + [anon_sym_true] = ACTIONS(3036), + [anon_sym_TRUE] = ACTIONS(3036), + [anon_sym_False] = ACTIONS(3036), + [anon_sym_false] = ACTIONS(3036), + [anon_sym_FALSE] = ACTIONS(3036), + [anon_sym_Null] = ACTIONS(3036), + [anon_sym_null] = ACTIONS(3036), + [anon_sym_NULL] = ACTIONS(3036), + [anon_sym_Undefined] = ACTIONS(3036), + [anon_sym_undefined] = ACTIONS(3036), + [anon_sym_UNDEFINED] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(3036), + [anon_sym_set] = ACTIONS(3036), + [anon_sym_POUND] = ACTIONS(3036), + [sym_hash_empty] = ACTIONS(3034), + [anon_sym_export] = ACTIONS(3036), + [anon_sym_QueryExecute] = ACTIONS(3036), + [anon_sym_queryexecute] = ACTIONS(3036), + [anon_sym_QUERYEXECUTE] = ACTIONS(3036), + [anon_sym_queryExecute] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3034), + [anon_sym_Abstract] = ACTIONS(3036), + [anon_sym_abstract] = ACTIONS(3036), + [anon_sym_ABSTRACT] = ACTIONS(3036), + [anon_sym_Break] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_BREAK] = ACTIONS(3036), + [anon_sym_Case] = ACTIONS(3036), + [anon_sym_case] = ACTIONS(3036), + [anon_sym_CASE] = ACTIONS(3036), + [anon_sym_Component] = ACTIONS(3036), + [anon_sym_component] = ACTIONS(3036), + [anon_sym_COMPONENT] = ACTIONS(3036), + [anon_sym_Continue] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_CONTINUE] = ACTIONS(3036), + [anon_sym_Debugger] = ACTIONS(3036), + [anon_sym_debugger] = ACTIONS(3036), + [anon_sym_DEBUGGER] = ACTIONS(3036), + [anon_sym_Default] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_DEFAULT] = ACTIONS(3036), + [anon_sym_Do] = ACTIONS(3036), + [anon_sym_do] = ACTIONS(3036), + [anon_sym_DO] = ACTIONS(3036), + [anon_sym_Else] = ACTIONS(3036), + [anon_sym_else] = ACTIONS(3036), + [anon_sym_ELSE] = ACTIONS(3036), + [anon_sym_Final] = ACTIONS(3036), + [anon_sym_final] = ACTIONS(3036), + [anon_sym_FINAL] = ACTIONS(3036), + [anon_sym_For] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_FOR] = ACTIONS(3036), + [anon_sym_Function] = ACTIONS(3036), + [anon_sym_function] = ACTIONS(3036), + [anon_sym_FUNCTION] = ACTIONS(3036), + [anon_sym_If] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_IF] = ACTIONS(3036), + [anon_sym_Import] = ACTIONS(3036), + [anon_sym_import] = ACTIONS(3036), + [anon_sym_IMPORT] = ACTIONS(3036), + [anon_sym_Include] = ACTIONS(3036), + [anon_sym_include] = ACTIONS(3036), + [anon_sym_INCLUDE] = ACTIONS(3036), + [anon_sym_Interface] = ACTIONS(3036), + [anon_sym_interface] = ACTIONS(3036), + [anon_sym_INTERFACE] = ACTIONS(3036), + [anon_sym_New] = ACTIONS(3036), + [anon_sym_new] = ACTIONS(3036), + [anon_sym_NEW] = ACTIONS(3036), + [anon_sym_Package] = ACTIONS(3036), + [anon_sym_package] = ACTIONS(3036), + [anon_sym_PACKAGE] = ACTIONS(3036), + [anon_sym_Private] = ACTIONS(3036), + [anon_sym_private] = ACTIONS(3036), + [anon_sym_PRIVATE] = ACTIONS(3036), + [anon_sym_Property] = ACTIONS(3036), + [anon_sym_property] = ACTIONS(3036), + [anon_sym_PROPERTY] = ACTIONS(3036), + [anon_sym_Public] = ACTIONS(3036), + [anon_sym_public] = ACTIONS(3036), + [anon_sym_PUBLIC] = ACTIONS(3036), + [anon_sym_Remote] = ACTIONS(3036), + [anon_sym_remote] = ACTIONS(3036), + [anon_sym_REMOTE] = ACTIONS(3036), + [anon_sym_Return] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_RETURN] = ACTIONS(3036), + [anon_sym_Static] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_STATIC] = ACTIONS(3036), + [anon_sym_Switch] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3036), + [anon_sym_SWITCH] = ACTIONS(3036), + [anon_sym_Throw] = ACTIONS(3036), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_THROW] = ACTIONS(3036), + [anon_sym_Try] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [anon_sym_TRY] = ACTIONS(3036), + [anon_sym_Var] = ACTIONS(3036), + [anon_sym_var] = ACTIONS(3036), + [anon_sym_VAR] = ACTIONS(3036), + [anon_sym_While] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_WHILE] = ACTIONS(3036), + [anon_sym_With] = ACTIONS(3036), + [anon_sym_with] = ACTIONS(3036), + [anon_sym_WITH] = ACTIONS(3036), + [sym_cf_comment] = ACTIONS(3034), + [sym__java_block_open] = ACTIONS(3034), + [sym__static_type_prefix] = ACTIONS(3034), + }, + [STATE(711)] = { + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_let] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_Query] = ACTIONS(3040), + [anon_sym_query] = ACTIONS(3040), + [anon_sym_QUERY] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [aux_sym_unary_operator_token1] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3040), + [aux_sym_number_token2] = ACTIONS(3038), + [anon_sym_This] = ACTIONS(3040), + [anon_sym_this] = ACTIONS(3040), + [anon_sym_THIS] = ACTIONS(3040), + [anon_sym_Super] = ACTIONS(3040), + [anon_sym_super] = ACTIONS(3040), + [anon_sym_SUPER] = ACTIONS(3040), + [anon_sym_True] = ACTIONS(3040), + [anon_sym_true] = ACTIONS(3040), + [anon_sym_TRUE] = ACTIONS(3040), + [anon_sym_False] = ACTIONS(3040), + [anon_sym_false] = ACTIONS(3040), + [anon_sym_FALSE] = ACTIONS(3040), + [anon_sym_Null] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3040), + [anon_sym_NULL] = ACTIONS(3040), + [anon_sym_Undefined] = ACTIONS(3040), + [anon_sym_undefined] = ACTIONS(3040), + [anon_sym_UNDEFINED] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(3040), + [anon_sym_set] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [sym_hash_empty] = ACTIONS(3038), + [anon_sym_export] = ACTIONS(3040), + [anon_sym_QueryExecute] = ACTIONS(3040), + [anon_sym_queryexecute] = ACTIONS(3040), + [anon_sym_QUERYEXECUTE] = ACTIONS(3040), + [anon_sym_queryExecute] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3038), + [anon_sym_Abstract] = ACTIONS(3040), + [anon_sym_abstract] = ACTIONS(3040), + [anon_sym_ABSTRACT] = ACTIONS(3040), + [anon_sym_Break] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_BREAK] = ACTIONS(3040), + [anon_sym_Case] = ACTIONS(3040), + [anon_sym_case] = ACTIONS(3040), + [anon_sym_CASE] = ACTIONS(3040), + [anon_sym_Component] = ACTIONS(3040), + [anon_sym_component] = ACTIONS(3040), + [anon_sym_COMPONENT] = ACTIONS(3040), + [anon_sym_Continue] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_CONTINUE] = ACTIONS(3040), + [anon_sym_Debugger] = ACTIONS(3040), + [anon_sym_debugger] = ACTIONS(3040), + [anon_sym_DEBUGGER] = ACTIONS(3040), + [anon_sym_Default] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_DEFAULT] = ACTIONS(3040), + [anon_sym_Do] = ACTIONS(3040), + [anon_sym_do] = ACTIONS(3040), + [anon_sym_DO] = ACTIONS(3040), + [anon_sym_Else] = ACTIONS(3040), + [anon_sym_else] = ACTIONS(3040), + [anon_sym_ELSE] = ACTIONS(3040), + [anon_sym_Final] = ACTIONS(3040), + [anon_sym_final] = ACTIONS(3040), + [anon_sym_FINAL] = ACTIONS(3040), + [anon_sym_For] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_FOR] = ACTIONS(3040), + [anon_sym_Function] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3040), + [anon_sym_FUNCTION] = ACTIONS(3040), + [anon_sym_If] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_IF] = ACTIONS(3040), + [anon_sym_Import] = ACTIONS(3040), + [anon_sym_import] = ACTIONS(3040), + [anon_sym_IMPORT] = ACTIONS(3040), + [anon_sym_Include] = ACTIONS(3040), + [anon_sym_include] = ACTIONS(3040), + [anon_sym_INCLUDE] = ACTIONS(3040), + [anon_sym_Interface] = ACTIONS(3040), + [anon_sym_interface] = ACTIONS(3040), + [anon_sym_INTERFACE] = ACTIONS(3040), + [anon_sym_New] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3040), + [anon_sym_NEW] = ACTIONS(3040), + [anon_sym_Package] = ACTIONS(3040), + [anon_sym_package] = ACTIONS(3040), + [anon_sym_PACKAGE] = ACTIONS(3040), + [anon_sym_Private] = ACTIONS(3040), + [anon_sym_private] = ACTIONS(3040), + [anon_sym_PRIVATE] = ACTIONS(3040), + [anon_sym_Property] = ACTIONS(3040), + [anon_sym_property] = ACTIONS(3040), + [anon_sym_PROPERTY] = ACTIONS(3040), + [anon_sym_Public] = ACTIONS(3040), + [anon_sym_public] = ACTIONS(3040), + [anon_sym_PUBLIC] = ACTIONS(3040), + [anon_sym_Remote] = ACTIONS(3040), + [anon_sym_remote] = ACTIONS(3040), + [anon_sym_REMOTE] = ACTIONS(3040), + [anon_sym_Return] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_RETURN] = ACTIONS(3040), + [anon_sym_Static] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_STATIC] = ACTIONS(3040), + [anon_sym_Switch] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3040), + [anon_sym_SWITCH] = ACTIONS(3040), + [anon_sym_Throw] = ACTIONS(3040), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_THROW] = ACTIONS(3040), + [anon_sym_Try] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [anon_sym_TRY] = ACTIONS(3040), + [anon_sym_Var] = ACTIONS(3040), + [anon_sym_var] = ACTIONS(3040), + [anon_sym_VAR] = ACTIONS(3040), + [anon_sym_While] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_WHILE] = ACTIONS(3040), + [anon_sym_With] = ACTIONS(3040), + [anon_sym_with] = ACTIONS(3040), + [anon_sym_WITH] = ACTIONS(3040), + [sym_cf_comment] = ACTIONS(3038), + [sym__java_block_open] = ACTIONS(3038), + [sym__static_type_prefix] = ACTIONS(3038), + }, + [STATE(712)] = { + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_Query] = ACTIONS(3044), + [anon_sym_query] = ACTIONS(3044), + [anon_sym_QUERY] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [aux_sym_unary_operator_token1] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3044), + [aux_sym_number_token2] = ACTIONS(3042), + [anon_sym_This] = ACTIONS(3044), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_THIS] = ACTIONS(3044), + [anon_sym_Super] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_SUPER] = ACTIONS(3044), + [anon_sym_True] = ACTIONS(3044), + [anon_sym_true] = ACTIONS(3044), + [anon_sym_TRUE] = ACTIONS(3044), + [anon_sym_False] = ACTIONS(3044), + [anon_sym_false] = ACTIONS(3044), + [anon_sym_FALSE] = ACTIONS(3044), + [anon_sym_Null] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3044), + [anon_sym_NULL] = ACTIONS(3044), + [anon_sym_Undefined] = ACTIONS(3044), + [anon_sym_undefined] = ACTIONS(3044), + [anon_sym_UNDEFINED] = ACTIONS(3044), + [anon_sym_get] = ACTIONS(3044), + [anon_sym_set] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [sym_hash_empty] = ACTIONS(3042), + [anon_sym_export] = ACTIONS(3044), + [anon_sym_QueryExecute] = ACTIONS(3044), + [anon_sym_queryexecute] = ACTIONS(3044), + [anon_sym_QUERYEXECUTE] = ACTIONS(3044), + [anon_sym_queryExecute] = ACTIONS(3044), + [anon_sym_BQUOTE] = ACTIONS(3044), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3042), + [anon_sym_Abstract] = ACTIONS(3044), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_ABSTRACT] = ACTIONS(3044), + [anon_sym_Break] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_BREAK] = ACTIONS(3044), + [anon_sym_Case] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3044), + [anon_sym_CASE] = ACTIONS(3044), + [anon_sym_Component] = ACTIONS(3044), + [anon_sym_component] = ACTIONS(3044), + [anon_sym_COMPONENT] = ACTIONS(3044), + [anon_sym_Continue] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_CONTINUE] = ACTIONS(3044), + [anon_sym_Debugger] = ACTIONS(3044), + [anon_sym_debugger] = ACTIONS(3044), + [anon_sym_DEBUGGER] = ACTIONS(3044), + [anon_sym_Default] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_DEFAULT] = ACTIONS(3044), + [anon_sym_Do] = ACTIONS(3044), + [anon_sym_do] = ACTIONS(3044), + [anon_sym_DO] = ACTIONS(3044), + [anon_sym_Else] = ACTIONS(3044), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_ELSE] = ACTIONS(3044), + [anon_sym_Final] = ACTIONS(3044), + [anon_sym_final] = ACTIONS(3044), + [anon_sym_FINAL] = ACTIONS(3044), + [anon_sym_For] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_FOR] = ACTIONS(3044), + [anon_sym_Function] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3044), + [anon_sym_FUNCTION] = ACTIONS(3044), + [anon_sym_If] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_IF] = ACTIONS(3044), + [anon_sym_Import] = ACTIONS(3044), + [anon_sym_import] = ACTIONS(3044), + [anon_sym_IMPORT] = ACTIONS(3044), + [anon_sym_Include] = ACTIONS(3044), + [anon_sym_include] = ACTIONS(3044), + [anon_sym_INCLUDE] = ACTIONS(3044), + [anon_sym_Interface] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_INTERFACE] = ACTIONS(3044), + [anon_sym_New] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3044), + [anon_sym_NEW] = ACTIONS(3044), + [anon_sym_Package] = ACTIONS(3044), + [anon_sym_package] = ACTIONS(3044), + [anon_sym_PACKAGE] = ACTIONS(3044), + [anon_sym_Private] = ACTIONS(3044), + [anon_sym_private] = ACTIONS(3044), + [anon_sym_PRIVATE] = ACTIONS(3044), + [anon_sym_Property] = ACTIONS(3044), + [anon_sym_property] = ACTIONS(3044), + [anon_sym_PROPERTY] = ACTIONS(3044), + [anon_sym_Public] = ACTIONS(3044), + [anon_sym_public] = ACTIONS(3044), + [anon_sym_PUBLIC] = ACTIONS(3044), + [anon_sym_Remote] = ACTIONS(3044), + [anon_sym_remote] = ACTIONS(3044), + [anon_sym_REMOTE] = ACTIONS(3044), + [anon_sym_Return] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_RETURN] = ACTIONS(3044), + [anon_sym_Static] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_STATIC] = ACTIONS(3044), + [anon_sym_Switch] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_SWITCH] = ACTIONS(3044), + [anon_sym_Throw] = ACTIONS(3044), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_THROW] = ACTIONS(3044), + [anon_sym_Try] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [anon_sym_TRY] = ACTIONS(3044), + [anon_sym_Var] = ACTIONS(3044), + [anon_sym_var] = ACTIONS(3044), + [anon_sym_VAR] = ACTIONS(3044), + [anon_sym_While] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_WHILE] = ACTIONS(3044), + [anon_sym_With] = ACTIONS(3044), + [anon_sym_with] = ACTIONS(3044), + [anon_sym_WITH] = ACTIONS(3044), + [sym_cf_comment] = ACTIONS(3042), + [sym__java_block_open] = ACTIONS(3042), + [sym__static_type_prefix] = ACTIONS(3042), + }, + [STATE(713)] = { + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_Query] = ACTIONS(3048), + [anon_sym_query] = ACTIONS(3048), + [anon_sym_QUERY] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [aux_sym_unary_operator_token1] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3048), + [aux_sym_number_token2] = ACTIONS(3046), + [anon_sym_This] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_THIS] = ACTIONS(3048), + [anon_sym_Super] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_SUPER] = ACTIONS(3048), + [anon_sym_True] = ACTIONS(3048), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_TRUE] = ACTIONS(3048), + [anon_sym_False] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_FALSE] = ACTIONS(3048), + [anon_sym_Null] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_Undefined] = ACTIONS(3048), + [anon_sym_undefined] = ACTIONS(3048), + [anon_sym_UNDEFINED] = ACTIONS(3048), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_POUND] = ACTIONS(3048), + [sym_hash_empty] = ACTIONS(3046), + [anon_sym_export] = ACTIONS(3048), + [anon_sym_QueryExecute] = ACTIONS(3048), + [anon_sym_queryexecute] = ACTIONS(3048), + [anon_sym_QUERYEXECUTE] = ACTIONS(3048), + [anon_sym_queryExecute] = ACTIONS(3048), + [anon_sym_BQUOTE] = ACTIONS(3048), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3046), + [anon_sym_Abstract] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_ABSTRACT] = ACTIONS(3048), + [anon_sym_Break] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_BREAK] = ACTIONS(3048), + [anon_sym_Case] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_CASE] = ACTIONS(3048), + [anon_sym_Component] = ACTIONS(3048), + [anon_sym_component] = ACTIONS(3048), + [anon_sym_COMPONENT] = ACTIONS(3048), + [anon_sym_Continue] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_CONTINUE] = ACTIONS(3048), + [anon_sym_Debugger] = ACTIONS(3048), + [anon_sym_debugger] = ACTIONS(3048), + [anon_sym_DEBUGGER] = ACTIONS(3048), + [anon_sym_Default] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_DEFAULT] = ACTIONS(3048), + [anon_sym_Do] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_DO] = ACTIONS(3048), + [anon_sym_Else] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_ELSE] = ACTIONS(3048), + [anon_sym_Final] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_FINAL] = ACTIONS(3048), + [anon_sym_For] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_FOR] = ACTIONS(3048), + [anon_sym_Function] = ACTIONS(3048), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_FUNCTION] = ACTIONS(3048), + [anon_sym_If] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_IF] = ACTIONS(3048), + [anon_sym_Import] = ACTIONS(3048), + [anon_sym_import] = ACTIONS(3048), + [anon_sym_IMPORT] = ACTIONS(3048), + [anon_sym_Include] = ACTIONS(3048), + [anon_sym_include] = ACTIONS(3048), + [anon_sym_INCLUDE] = ACTIONS(3048), + [anon_sym_Interface] = ACTIONS(3048), + [anon_sym_interface] = ACTIONS(3048), + [anon_sym_INTERFACE] = ACTIONS(3048), + [anon_sym_New] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_NEW] = ACTIONS(3048), + [anon_sym_Package] = ACTIONS(3048), + [anon_sym_package] = ACTIONS(3048), + [anon_sym_PACKAGE] = ACTIONS(3048), + [anon_sym_Private] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_PRIVATE] = ACTIONS(3048), + [anon_sym_Property] = ACTIONS(3048), + [anon_sym_property] = ACTIONS(3048), + [anon_sym_PROPERTY] = ACTIONS(3048), + [anon_sym_Public] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_PUBLIC] = ACTIONS(3048), + [anon_sym_Remote] = ACTIONS(3048), + [anon_sym_remote] = ACTIONS(3048), + [anon_sym_REMOTE] = ACTIONS(3048), + [anon_sym_Return] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_RETURN] = ACTIONS(3048), + [anon_sym_Static] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_STATIC] = ACTIONS(3048), + [anon_sym_Switch] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_SWITCH] = ACTIONS(3048), + [anon_sym_Throw] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_THROW] = ACTIONS(3048), + [anon_sym_Try] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_TRY] = ACTIONS(3048), + [anon_sym_Var] = ACTIONS(3048), + [anon_sym_var] = ACTIONS(3048), + [anon_sym_VAR] = ACTIONS(3048), + [anon_sym_While] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_WHILE] = ACTIONS(3048), + [anon_sym_With] = ACTIONS(3048), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_WITH] = ACTIONS(3048), + [sym_cf_comment] = ACTIONS(3046), + [sym__java_block_open] = ACTIONS(3046), + [sym__static_type_prefix] = ACTIONS(3046), + }, + [STATE(714)] = { + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_Query] = ACTIONS(3048), + [anon_sym_query] = ACTIONS(3048), + [anon_sym_QUERY] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [aux_sym_unary_operator_token1] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3048), + [aux_sym_number_token2] = ACTIONS(3046), + [anon_sym_This] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_THIS] = ACTIONS(3048), + [anon_sym_Super] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_SUPER] = ACTIONS(3048), + [anon_sym_True] = ACTIONS(3048), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_TRUE] = ACTIONS(3048), + [anon_sym_False] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_FALSE] = ACTIONS(3048), + [anon_sym_Null] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_Undefined] = ACTIONS(3048), + [anon_sym_undefined] = ACTIONS(3048), + [anon_sym_UNDEFINED] = ACTIONS(3048), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_POUND] = ACTIONS(3048), + [sym_hash_empty] = ACTIONS(3046), + [anon_sym_export] = ACTIONS(3048), + [anon_sym_QueryExecute] = ACTIONS(3048), + [anon_sym_queryexecute] = ACTIONS(3048), + [anon_sym_QUERYEXECUTE] = ACTIONS(3048), + [anon_sym_queryExecute] = ACTIONS(3048), + [anon_sym_BQUOTE] = ACTIONS(3048), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3046), + [anon_sym_Abstract] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_ABSTRACT] = ACTIONS(3048), + [anon_sym_Break] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_BREAK] = ACTIONS(3048), + [anon_sym_Case] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_CASE] = ACTIONS(3048), + [anon_sym_Component] = ACTIONS(3048), + [anon_sym_component] = ACTIONS(3048), + [anon_sym_COMPONENT] = ACTIONS(3048), + [anon_sym_Continue] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_CONTINUE] = ACTIONS(3048), + [anon_sym_Debugger] = ACTIONS(3048), + [anon_sym_debugger] = ACTIONS(3048), + [anon_sym_DEBUGGER] = ACTIONS(3048), + [anon_sym_Default] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_DEFAULT] = ACTIONS(3048), + [anon_sym_Do] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_DO] = ACTIONS(3048), + [anon_sym_Else] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_ELSE] = ACTIONS(3048), + [anon_sym_Final] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_FINAL] = ACTIONS(3048), + [anon_sym_For] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_FOR] = ACTIONS(3048), + [anon_sym_Function] = ACTIONS(3048), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_FUNCTION] = ACTIONS(3048), + [anon_sym_If] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_IF] = ACTIONS(3048), + [anon_sym_Import] = ACTIONS(3048), + [anon_sym_import] = ACTIONS(3048), + [anon_sym_IMPORT] = ACTIONS(3048), + [anon_sym_Include] = ACTIONS(3048), + [anon_sym_include] = ACTIONS(3048), + [anon_sym_INCLUDE] = ACTIONS(3048), + [anon_sym_Interface] = ACTIONS(3048), + [anon_sym_interface] = ACTIONS(3048), + [anon_sym_INTERFACE] = ACTIONS(3048), + [anon_sym_New] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_NEW] = ACTIONS(3048), + [anon_sym_Package] = ACTIONS(3048), + [anon_sym_package] = ACTIONS(3048), + [anon_sym_PACKAGE] = ACTIONS(3048), + [anon_sym_Private] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_PRIVATE] = ACTIONS(3048), + [anon_sym_Property] = ACTIONS(3048), + [anon_sym_property] = ACTIONS(3048), + [anon_sym_PROPERTY] = ACTIONS(3048), + [anon_sym_Public] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_PUBLIC] = ACTIONS(3048), + [anon_sym_Remote] = ACTIONS(3048), + [anon_sym_remote] = ACTIONS(3048), + [anon_sym_REMOTE] = ACTIONS(3048), + [anon_sym_Return] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_RETURN] = ACTIONS(3048), + [anon_sym_Static] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_STATIC] = ACTIONS(3048), + [anon_sym_Switch] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_SWITCH] = ACTIONS(3048), + [anon_sym_Throw] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_THROW] = ACTIONS(3048), + [anon_sym_Try] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_TRY] = ACTIONS(3048), + [anon_sym_Var] = ACTIONS(3048), + [anon_sym_var] = ACTIONS(3048), + [anon_sym_VAR] = ACTIONS(3048), + [anon_sym_While] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_WHILE] = ACTIONS(3048), + [anon_sym_With] = ACTIONS(3048), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_WITH] = ACTIONS(3048), + [sym_cf_comment] = ACTIONS(3046), + [sym__java_block_open] = ACTIONS(3046), + [sym__static_type_prefix] = ACTIONS(3046), + }, + [STATE(715)] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_Query] = ACTIONS(3052), + [anon_sym_query] = ACTIONS(3052), + [anon_sym_QUERY] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_unary_operator_token1] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3052), + [aux_sym_number_token2] = ACTIONS(3050), + [anon_sym_This] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3052), + [anon_sym_THIS] = ACTIONS(3052), + [anon_sym_Super] = ACTIONS(3052), + [anon_sym_super] = ACTIONS(3052), + [anon_sym_SUPER] = ACTIONS(3052), + [anon_sym_True] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3052), + [anon_sym_TRUE] = ACTIONS(3052), + [anon_sym_False] = ACTIONS(3052), + [anon_sym_false] = ACTIONS(3052), + [anon_sym_FALSE] = ACTIONS(3052), + [anon_sym_Null] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_NULL] = ACTIONS(3052), + [anon_sym_Undefined] = ACTIONS(3052), + [anon_sym_undefined] = ACTIONS(3052), + [anon_sym_UNDEFINED] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_POUND] = ACTIONS(3052), + [sym_hash_empty] = ACTIONS(3050), + [anon_sym_export] = ACTIONS(3052), + [anon_sym_QueryExecute] = ACTIONS(3052), + [anon_sym_queryexecute] = ACTIONS(3052), + [anon_sym_QUERYEXECUTE] = ACTIONS(3052), + [anon_sym_queryExecute] = ACTIONS(3052), + [anon_sym_BQUOTE] = ACTIONS(3052), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3050), + [anon_sym_Abstract] = ACTIONS(3052), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_ABSTRACT] = ACTIONS(3052), + [anon_sym_Break] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_BREAK] = ACTIONS(3052), + [anon_sym_Case] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_CASE] = ACTIONS(3052), + [anon_sym_Component] = ACTIONS(3052), + [anon_sym_component] = ACTIONS(3052), + [anon_sym_COMPONENT] = ACTIONS(3052), + [anon_sym_Continue] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_CONTINUE] = ACTIONS(3052), + [anon_sym_Debugger] = ACTIONS(3052), + [anon_sym_debugger] = ACTIONS(3052), + [anon_sym_DEBUGGER] = ACTIONS(3052), + [anon_sym_Default] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_DEFAULT] = ACTIONS(3052), + [anon_sym_Do] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_DO] = ACTIONS(3052), + [anon_sym_Else] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3052), + [anon_sym_ELSE] = ACTIONS(3052), + [anon_sym_Final] = ACTIONS(3052), + [anon_sym_final] = ACTIONS(3052), + [anon_sym_FINAL] = ACTIONS(3052), + [anon_sym_For] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_FOR] = ACTIONS(3052), + [anon_sym_Function] = ACTIONS(3052), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_FUNCTION] = ACTIONS(3052), + [anon_sym_If] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_IF] = ACTIONS(3052), + [anon_sym_Import] = ACTIONS(3052), + [anon_sym_import] = ACTIONS(3052), + [anon_sym_IMPORT] = ACTIONS(3052), + [anon_sym_Include] = ACTIONS(3052), + [anon_sym_include] = ACTIONS(3052), + [anon_sym_INCLUDE] = ACTIONS(3052), + [anon_sym_Interface] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_INTERFACE] = ACTIONS(3052), + [anon_sym_New] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_NEW] = ACTIONS(3052), + [anon_sym_Package] = ACTIONS(3052), + [anon_sym_package] = ACTIONS(3052), + [anon_sym_PACKAGE] = ACTIONS(3052), + [anon_sym_Private] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_PRIVATE] = ACTIONS(3052), + [anon_sym_Property] = ACTIONS(3052), + [anon_sym_property] = ACTIONS(3052), + [anon_sym_PROPERTY] = ACTIONS(3052), + [anon_sym_Public] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_PUBLIC] = ACTIONS(3052), + [anon_sym_Remote] = ACTIONS(3052), + [anon_sym_remote] = ACTIONS(3052), + [anon_sym_REMOTE] = ACTIONS(3052), + [anon_sym_Return] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_RETURN] = ACTIONS(3052), + [anon_sym_Static] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_STATIC] = ACTIONS(3052), + [anon_sym_Switch] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_SWITCH] = ACTIONS(3052), + [anon_sym_Throw] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_THROW] = ACTIONS(3052), + [anon_sym_Try] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_TRY] = ACTIONS(3052), + [anon_sym_Var] = ACTIONS(3052), + [anon_sym_var] = ACTIONS(3052), + [anon_sym_VAR] = ACTIONS(3052), + [anon_sym_While] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_WHILE] = ACTIONS(3052), + [anon_sym_With] = ACTIONS(3052), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_WITH] = ACTIONS(3052), + [sym_cf_comment] = ACTIONS(3050), + [sym__java_block_open] = ACTIONS(3050), + [sym__static_type_prefix] = ACTIONS(3050), + }, + [STATE(716)] = { + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_Query] = ACTIONS(3056), + [anon_sym_query] = ACTIONS(3056), + [anon_sym_QUERY] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_unary_operator_token1] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3056), + [aux_sym_number_token2] = ACTIONS(3054), + [anon_sym_This] = ACTIONS(3056), + [anon_sym_this] = ACTIONS(3056), + [anon_sym_THIS] = ACTIONS(3056), + [anon_sym_Super] = ACTIONS(3056), + [anon_sym_super] = ACTIONS(3056), + [anon_sym_SUPER] = ACTIONS(3056), + [anon_sym_True] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3056), + [anon_sym_TRUE] = ACTIONS(3056), + [anon_sym_False] = ACTIONS(3056), + [anon_sym_false] = ACTIONS(3056), + [anon_sym_FALSE] = ACTIONS(3056), + [anon_sym_Null] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3056), + [anon_sym_Undefined] = ACTIONS(3056), + [anon_sym_undefined] = ACTIONS(3056), + [anon_sym_UNDEFINED] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3056), + [anon_sym_set] = ACTIONS(3056), + [anon_sym_POUND] = ACTIONS(3056), + [sym_hash_empty] = ACTIONS(3054), + [anon_sym_export] = ACTIONS(3056), + [anon_sym_QueryExecute] = ACTIONS(3056), + [anon_sym_queryexecute] = ACTIONS(3056), + [anon_sym_QUERYEXECUTE] = ACTIONS(3056), + [anon_sym_queryExecute] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3056), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3054), + [anon_sym_Abstract] = ACTIONS(3056), + [anon_sym_abstract] = ACTIONS(3056), + [anon_sym_ABSTRACT] = ACTIONS(3056), + [anon_sym_Break] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_BREAK] = ACTIONS(3056), + [anon_sym_Case] = ACTIONS(3056), + [anon_sym_case] = ACTIONS(3056), + [anon_sym_CASE] = ACTIONS(3056), + [anon_sym_Component] = ACTIONS(3056), + [anon_sym_component] = ACTIONS(3056), + [anon_sym_COMPONENT] = ACTIONS(3056), + [anon_sym_Continue] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_CONTINUE] = ACTIONS(3056), + [anon_sym_Debugger] = ACTIONS(3056), + [anon_sym_debugger] = ACTIONS(3056), + [anon_sym_DEBUGGER] = ACTIONS(3056), + [anon_sym_Default] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_DEFAULT] = ACTIONS(3056), + [anon_sym_Do] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_DO] = ACTIONS(3056), + [anon_sym_Else] = ACTIONS(3056), + [anon_sym_else] = ACTIONS(3056), + [anon_sym_ELSE] = ACTIONS(3056), + [anon_sym_Final] = ACTIONS(3056), + [anon_sym_final] = ACTIONS(3056), + [anon_sym_FINAL] = ACTIONS(3056), + [anon_sym_For] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_FOR] = ACTIONS(3056), + [anon_sym_Function] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3056), + [anon_sym_FUNCTION] = ACTIONS(3056), + [anon_sym_If] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_IF] = ACTIONS(3056), + [anon_sym_Import] = ACTIONS(3056), + [anon_sym_import] = ACTIONS(3056), + [anon_sym_IMPORT] = ACTIONS(3056), + [anon_sym_Include] = ACTIONS(3056), + [anon_sym_include] = ACTIONS(3056), + [anon_sym_INCLUDE] = ACTIONS(3056), + [anon_sym_Interface] = ACTIONS(3056), + [anon_sym_interface] = ACTIONS(3056), + [anon_sym_INTERFACE] = ACTIONS(3056), + [anon_sym_New] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3056), + [anon_sym_NEW] = ACTIONS(3056), + [anon_sym_Package] = ACTIONS(3056), + [anon_sym_package] = ACTIONS(3056), + [anon_sym_PACKAGE] = ACTIONS(3056), + [anon_sym_Private] = ACTIONS(3056), + [anon_sym_private] = ACTIONS(3056), + [anon_sym_PRIVATE] = ACTIONS(3056), + [anon_sym_Property] = ACTIONS(3056), + [anon_sym_property] = ACTIONS(3056), + [anon_sym_PROPERTY] = ACTIONS(3056), + [anon_sym_Public] = ACTIONS(3056), + [anon_sym_public] = ACTIONS(3056), + [anon_sym_PUBLIC] = ACTIONS(3056), + [anon_sym_Remote] = ACTIONS(3056), + [anon_sym_remote] = ACTIONS(3056), + [anon_sym_REMOTE] = ACTIONS(3056), + [anon_sym_Return] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_RETURN] = ACTIONS(3056), + [anon_sym_Static] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_STATIC] = ACTIONS(3056), + [anon_sym_Switch] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3056), + [anon_sym_SWITCH] = ACTIONS(3056), + [anon_sym_Throw] = ACTIONS(3056), + [anon_sym_throw] = ACTIONS(3056), + [anon_sym_THROW] = ACTIONS(3056), + [anon_sym_Try] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_TRY] = ACTIONS(3056), + [anon_sym_Var] = ACTIONS(3056), + [anon_sym_var] = ACTIONS(3056), + [anon_sym_VAR] = ACTIONS(3056), + [anon_sym_While] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_WHILE] = ACTIONS(3056), + [anon_sym_With] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3056), + [anon_sym_WITH] = ACTIONS(3056), + [sym_cf_comment] = ACTIONS(3054), + [sym__java_block_open] = ACTIONS(3054), + [sym__static_type_prefix] = ACTIONS(3054), + }, + [STATE(717)] = { + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_Query] = ACTIONS(3060), + [anon_sym_query] = ACTIONS(3060), + [anon_sym_QUERY] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_unary_operator_token1] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3060), + [aux_sym_number_token2] = ACTIONS(3058), + [anon_sym_This] = ACTIONS(3060), + [anon_sym_this] = ACTIONS(3060), + [anon_sym_THIS] = ACTIONS(3060), + [anon_sym_Super] = ACTIONS(3060), + [anon_sym_super] = ACTIONS(3060), + [anon_sym_SUPER] = ACTIONS(3060), + [anon_sym_True] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_TRUE] = ACTIONS(3060), + [anon_sym_False] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_FALSE] = ACTIONS(3060), + [anon_sym_Null] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_Undefined] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [anon_sym_UNDEFINED] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_POUND] = ACTIONS(3060), + [sym_hash_empty] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_QueryExecute] = ACTIONS(3060), + [anon_sym_queryexecute] = ACTIONS(3060), + [anon_sym_QUERYEXECUTE] = ACTIONS(3060), + [anon_sym_queryExecute] = ACTIONS(3060), + [anon_sym_BQUOTE] = ACTIONS(3060), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3058), + [anon_sym_Abstract] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_ABSTRACT] = ACTIONS(3060), + [anon_sym_Break] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_BREAK] = ACTIONS(3060), + [anon_sym_Case] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_CASE] = ACTIONS(3060), + [anon_sym_Component] = ACTIONS(3060), + [anon_sym_component] = ACTIONS(3060), + [anon_sym_COMPONENT] = ACTIONS(3060), + [anon_sym_Continue] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_CONTINUE] = ACTIONS(3060), + [anon_sym_Debugger] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_DEBUGGER] = ACTIONS(3060), + [anon_sym_Default] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_DEFAULT] = ACTIONS(3060), + [anon_sym_Do] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_DO] = ACTIONS(3060), + [anon_sym_Else] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_ELSE] = ACTIONS(3060), + [anon_sym_Final] = ACTIONS(3060), + [anon_sym_final] = ACTIONS(3060), + [anon_sym_FINAL] = ACTIONS(3060), + [anon_sym_For] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_FOR] = ACTIONS(3060), + [anon_sym_Function] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_FUNCTION] = ACTIONS(3060), + [anon_sym_If] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_IF] = ACTIONS(3060), + [anon_sym_Import] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_IMPORT] = ACTIONS(3060), + [anon_sym_Include] = ACTIONS(3060), + [anon_sym_include] = ACTIONS(3060), + [anon_sym_INCLUDE] = ACTIONS(3060), + [anon_sym_Interface] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_INTERFACE] = ACTIONS(3060), + [anon_sym_New] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_NEW] = ACTIONS(3060), + [anon_sym_Package] = ACTIONS(3060), + [anon_sym_package] = ACTIONS(3060), + [anon_sym_PACKAGE] = ACTIONS(3060), + [anon_sym_Private] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_PRIVATE] = ACTIONS(3060), + [anon_sym_Property] = ACTIONS(3060), + [anon_sym_property] = ACTIONS(3060), + [anon_sym_PROPERTY] = ACTIONS(3060), + [anon_sym_Public] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_PUBLIC] = ACTIONS(3060), + [anon_sym_Remote] = ACTIONS(3060), + [anon_sym_remote] = ACTIONS(3060), + [anon_sym_REMOTE] = ACTIONS(3060), + [anon_sym_Return] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_RETURN] = ACTIONS(3060), + [anon_sym_Static] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_STATIC] = ACTIONS(3060), + [anon_sym_Switch] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_SWITCH] = ACTIONS(3060), + [anon_sym_Throw] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_THROW] = ACTIONS(3060), + [anon_sym_Try] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_TRY] = ACTIONS(3060), + [anon_sym_Var] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_VAR] = ACTIONS(3060), + [anon_sym_While] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_WHILE] = ACTIONS(3060), + [anon_sym_With] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_WITH] = ACTIONS(3060), + [sym_cf_comment] = ACTIONS(3058), + [sym__java_block_open] = ACTIONS(3058), + [sym__static_type_prefix] = ACTIONS(3058), + }, + [STATE(718)] = { + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_Query] = ACTIONS(3060), + [anon_sym_query] = ACTIONS(3060), + [anon_sym_QUERY] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_unary_operator_token1] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3060), + [aux_sym_number_token2] = ACTIONS(3058), + [anon_sym_This] = ACTIONS(3060), + [anon_sym_this] = ACTIONS(3060), + [anon_sym_THIS] = ACTIONS(3060), + [anon_sym_Super] = ACTIONS(3060), + [anon_sym_super] = ACTIONS(3060), + [anon_sym_SUPER] = ACTIONS(3060), + [anon_sym_True] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_TRUE] = ACTIONS(3060), + [anon_sym_False] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_FALSE] = ACTIONS(3060), + [anon_sym_Null] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_Undefined] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [anon_sym_UNDEFINED] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_POUND] = ACTIONS(3060), + [sym_hash_empty] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_QueryExecute] = ACTIONS(3060), + [anon_sym_queryexecute] = ACTIONS(3060), + [anon_sym_QUERYEXECUTE] = ACTIONS(3060), + [anon_sym_queryExecute] = ACTIONS(3060), + [anon_sym_BQUOTE] = ACTIONS(3060), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3058), + [anon_sym_Abstract] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_ABSTRACT] = ACTIONS(3060), + [anon_sym_Break] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_BREAK] = ACTIONS(3060), + [anon_sym_Case] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_CASE] = ACTIONS(3060), + [anon_sym_Component] = ACTIONS(3060), + [anon_sym_component] = ACTIONS(3060), + [anon_sym_COMPONENT] = ACTIONS(3060), + [anon_sym_Continue] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_CONTINUE] = ACTIONS(3060), + [anon_sym_Debugger] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_DEBUGGER] = ACTIONS(3060), + [anon_sym_Default] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_DEFAULT] = ACTIONS(3060), + [anon_sym_Do] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_DO] = ACTIONS(3060), + [anon_sym_Else] = ACTIONS(3060), + [anon_sym_else] = ACTIONS(3060), + [anon_sym_ELSE] = ACTIONS(3060), + [anon_sym_Final] = ACTIONS(3060), + [anon_sym_final] = ACTIONS(3060), + [anon_sym_FINAL] = ACTIONS(3060), + [anon_sym_For] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_FOR] = ACTIONS(3060), + [anon_sym_Function] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_FUNCTION] = ACTIONS(3060), + [anon_sym_If] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_IF] = ACTIONS(3060), + [anon_sym_Import] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_IMPORT] = ACTIONS(3060), + [anon_sym_Include] = ACTIONS(3060), + [anon_sym_include] = ACTIONS(3060), + [anon_sym_INCLUDE] = ACTIONS(3060), + [anon_sym_Interface] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_INTERFACE] = ACTIONS(3060), + [anon_sym_New] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_NEW] = ACTIONS(3060), + [anon_sym_Package] = ACTIONS(3060), + [anon_sym_package] = ACTIONS(3060), + [anon_sym_PACKAGE] = ACTIONS(3060), + [anon_sym_Private] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_PRIVATE] = ACTIONS(3060), + [anon_sym_Property] = ACTIONS(3060), + [anon_sym_property] = ACTIONS(3060), + [anon_sym_PROPERTY] = ACTIONS(3060), + [anon_sym_Public] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_PUBLIC] = ACTIONS(3060), + [anon_sym_Remote] = ACTIONS(3060), + [anon_sym_remote] = ACTIONS(3060), + [anon_sym_REMOTE] = ACTIONS(3060), + [anon_sym_Return] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_RETURN] = ACTIONS(3060), + [anon_sym_Static] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_STATIC] = ACTIONS(3060), + [anon_sym_Switch] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_SWITCH] = ACTIONS(3060), + [anon_sym_Throw] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_THROW] = ACTIONS(3060), + [anon_sym_Try] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_TRY] = ACTIONS(3060), + [anon_sym_Var] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_VAR] = ACTIONS(3060), + [anon_sym_While] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_WHILE] = ACTIONS(3060), + [anon_sym_With] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_WITH] = ACTIONS(3060), + [sym_cf_comment] = ACTIONS(3058), + [sym__java_block_open] = ACTIONS(3058), + [sym__static_type_prefix] = ACTIONS(3058), + }, + [STATE(719)] = { + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_Query] = ACTIONS(3064), + [anon_sym_query] = ACTIONS(3064), + [anon_sym_QUERY] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [aux_sym_unary_operator_token1] = ACTIONS(3064), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3064), + [aux_sym_number_token2] = ACTIONS(3062), + [anon_sym_This] = ACTIONS(3064), + [anon_sym_this] = ACTIONS(3064), + [anon_sym_THIS] = ACTIONS(3064), + [anon_sym_Super] = ACTIONS(3064), + [anon_sym_super] = ACTIONS(3064), + [anon_sym_SUPER] = ACTIONS(3064), + [anon_sym_True] = ACTIONS(3064), + [anon_sym_true] = ACTIONS(3064), + [anon_sym_TRUE] = ACTIONS(3064), + [anon_sym_False] = ACTIONS(3064), + [anon_sym_false] = ACTIONS(3064), + [anon_sym_FALSE] = ACTIONS(3064), + [anon_sym_Null] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3064), + [anon_sym_NULL] = ACTIONS(3064), + [anon_sym_Undefined] = ACTIONS(3064), + [anon_sym_undefined] = ACTIONS(3064), + [anon_sym_UNDEFINED] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_POUND] = ACTIONS(3064), + [sym_hash_empty] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_QueryExecute] = ACTIONS(3064), + [anon_sym_queryexecute] = ACTIONS(3064), + [anon_sym_QUERYEXECUTE] = ACTIONS(3064), + [anon_sym_queryExecute] = ACTIONS(3064), + [anon_sym_BQUOTE] = ACTIONS(3064), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3062), + [anon_sym_Abstract] = ACTIONS(3064), + [anon_sym_abstract] = ACTIONS(3064), + [anon_sym_ABSTRACT] = ACTIONS(3064), + [anon_sym_Break] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_BREAK] = ACTIONS(3064), + [anon_sym_Case] = ACTIONS(3064), + [anon_sym_case] = ACTIONS(3064), + [anon_sym_CASE] = ACTIONS(3064), + [anon_sym_Component] = ACTIONS(3064), + [anon_sym_component] = ACTIONS(3064), + [anon_sym_COMPONENT] = ACTIONS(3064), + [anon_sym_Continue] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_CONTINUE] = ACTIONS(3064), + [anon_sym_Debugger] = ACTIONS(3064), + [anon_sym_debugger] = ACTIONS(3064), + [anon_sym_DEBUGGER] = ACTIONS(3064), + [anon_sym_Default] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_DEFAULT] = ACTIONS(3064), + [anon_sym_Do] = ACTIONS(3064), + [anon_sym_do] = ACTIONS(3064), + [anon_sym_DO] = ACTIONS(3064), + [anon_sym_Else] = ACTIONS(3064), + [anon_sym_else] = ACTIONS(3064), + [anon_sym_ELSE] = ACTIONS(3064), + [anon_sym_Final] = ACTIONS(3064), + [anon_sym_final] = ACTIONS(3064), + [anon_sym_FINAL] = ACTIONS(3064), + [anon_sym_For] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_FOR] = ACTIONS(3064), + [anon_sym_Function] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3064), + [anon_sym_FUNCTION] = ACTIONS(3064), + [anon_sym_If] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_IF] = ACTIONS(3064), + [anon_sym_Import] = ACTIONS(3064), + [anon_sym_import] = ACTIONS(3064), + [anon_sym_IMPORT] = ACTIONS(3064), + [anon_sym_Include] = ACTIONS(3064), + [anon_sym_include] = ACTIONS(3064), + [anon_sym_INCLUDE] = ACTIONS(3064), + [anon_sym_Interface] = ACTIONS(3064), + [anon_sym_interface] = ACTIONS(3064), + [anon_sym_INTERFACE] = ACTIONS(3064), + [anon_sym_New] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_NEW] = ACTIONS(3064), + [anon_sym_Package] = ACTIONS(3064), + [anon_sym_package] = ACTIONS(3064), + [anon_sym_PACKAGE] = ACTIONS(3064), + [anon_sym_Private] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_PRIVATE] = ACTIONS(3064), + [anon_sym_Property] = ACTIONS(3064), + [anon_sym_property] = ACTIONS(3064), + [anon_sym_PROPERTY] = ACTIONS(3064), + [anon_sym_Public] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_PUBLIC] = ACTIONS(3064), + [anon_sym_Remote] = ACTIONS(3064), + [anon_sym_remote] = ACTIONS(3064), + [anon_sym_REMOTE] = ACTIONS(3064), + [anon_sym_Return] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_RETURN] = ACTIONS(3064), + [anon_sym_Static] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_STATIC] = ACTIONS(3064), + [anon_sym_Switch] = ACTIONS(3064), + [anon_sym_switch] = ACTIONS(3064), + [anon_sym_SWITCH] = ACTIONS(3064), + [anon_sym_Throw] = ACTIONS(3064), + [anon_sym_throw] = ACTIONS(3064), + [anon_sym_THROW] = ACTIONS(3064), + [anon_sym_Try] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [anon_sym_TRY] = ACTIONS(3064), + [anon_sym_Var] = ACTIONS(3064), + [anon_sym_var] = ACTIONS(3064), + [anon_sym_VAR] = ACTIONS(3064), + [anon_sym_While] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_WHILE] = ACTIONS(3064), + [anon_sym_With] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3064), + [anon_sym_WITH] = ACTIONS(3064), + [sym_cf_comment] = ACTIONS(3062), + [sym__java_block_open] = ACTIONS(3062), + [sym__static_type_prefix] = ACTIONS(3062), + }, + [STATE(720)] = { + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_Query] = ACTIONS(3068), + [anon_sym_query] = ACTIONS(3068), + [anon_sym_QUERY] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_unary_operator_token1] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3068), + [aux_sym_number_token2] = ACTIONS(3066), + [anon_sym_This] = ACTIONS(3068), + [anon_sym_this] = ACTIONS(3068), + [anon_sym_THIS] = ACTIONS(3068), + [anon_sym_Super] = ACTIONS(3068), + [anon_sym_super] = ACTIONS(3068), + [anon_sym_SUPER] = ACTIONS(3068), + [anon_sym_True] = ACTIONS(3068), + [anon_sym_true] = ACTIONS(3068), + [anon_sym_TRUE] = ACTIONS(3068), + [anon_sym_False] = ACTIONS(3068), + [anon_sym_false] = ACTIONS(3068), + [anon_sym_FALSE] = ACTIONS(3068), + [anon_sym_Null] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_NULL] = ACTIONS(3068), + [anon_sym_Undefined] = ACTIONS(3068), + [anon_sym_undefined] = ACTIONS(3068), + [anon_sym_UNDEFINED] = ACTIONS(3068), + [anon_sym_get] = ACTIONS(3068), + [anon_sym_set] = ACTIONS(3068), + [anon_sym_POUND] = ACTIONS(3068), + [sym_hash_empty] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3068), + [anon_sym_QueryExecute] = ACTIONS(3068), + [anon_sym_queryexecute] = ACTIONS(3068), + [anon_sym_QUERYEXECUTE] = ACTIONS(3068), + [anon_sym_queryExecute] = ACTIONS(3068), + [anon_sym_BQUOTE] = ACTIONS(3068), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3066), + [anon_sym_Abstract] = ACTIONS(3068), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_ABSTRACT] = ACTIONS(3068), + [anon_sym_Break] = ACTIONS(3068), + [anon_sym_break] = ACTIONS(3068), + [anon_sym_BREAK] = ACTIONS(3068), + [anon_sym_Case] = ACTIONS(3068), + [anon_sym_case] = ACTIONS(3068), + [anon_sym_CASE] = ACTIONS(3068), + [anon_sym_Component] = ACTIONS(3068), + [anon_sym_component] = ACTIONS(3068), + [anon_sym_COMPONENT] = ACTIONS(3068), + [anon_sym_Continue] = ACTIONS(3068), + [anon_sym_continue] = ACTIONS(3068), + [anon_sym_CONTINUE] = ACTIONS(3068), + [anon_sym_Debugger] = ACTIONS(3068), + [anon_sym_debugger] = ACTIONS(3068), + [anon_sym_DEBUGGER] = ACTIONS(3068), + [anon_sym_Default] = ACTIONS(3068), + [anon_sym_default] = ACTIONS(3068), + [anon_sym_DEFAULT] = ACTIONS(3068), + [anon_sym_Do] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_DO] = ACTIONS(3068), + [anon_sym_Else] = ACTIONS(3068), + [anon_sym_else] = ACTIONS(3068), + [anon_sym_ELSE] = ACTIONS(3068), + [anon_sym_Final] = ACTIONS(3068), + [anon_sym_final] = ACTIONS(3068), + [anon_sym_FINAL] = ACTIONS(3068), + [anon_sym_For] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_FOR] = ACTIONS(3068), + [anon_sym_Function] = ACTIONS(3068), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_FUNCTION] = ACTIONS(3068), + [anon_sym_If] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_IF] = ACTIONS(3068), + [anon_sym_Import] = ACTIONS(3068), + [anon_sym_import] = ACTIONS(3068), + [anon_sym_IMPORT] = ACTIONS(3068), + [anon_sym_Include] = ACTIONS(3068), + [anon_sym_include] = ACTIONS(3068), + [anon_sym_INCLUDE] = ACTIONS(3068), + [anon_sym_Interface] = ACTIONS(3068), + [anon_sym_interface] = ACTIONS(3068), + [anon_sym_INTERFACE] = ACTIONS(3068), + [anon_sym_New] = ACTIONS(3068), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_NEW] = ACTIONS(3068), + [anon_sym_Package] = ACTIONS(3068), + [anon_sym_package] = ACTIONS(3068), + [anon_sym_PACKAGE] = ACTIONS(3068), + [anon_sym_Private] = ACTIONS(3068), + [anon_sym_private] = ACTIONS(3068), + [anon_sym_PRIVATE] = ACTIONS(3068), + [anon_sym_Property] = ACTIONS(3068), + [anon_sym_property] = ACTIONS(3068), + [anon_sym_PROPERTY] = ACTIONS(3068), + [anon_sym_Public] = ACTIONS(3068), + [anon_sym_public] = ACTIONS(3068), + [anon_sym_PUBLIC] = ACTIONS(3068), + [anon_sym_Remote] = ACTIONS(3068), + [anon_sym_remote] = ACTIONS(3068), + [anon_sym_REMOTE] = ACTIONS(3068), + [anon_sym_Return] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_RETURN] = ACTIONS(3068), + [anon_sym_Static] = ACTIONS(3068), + [anon_sym_static] = ACTIONS(3068), + [anon_sym_STATIC] = ACTIONS(3068), + [anon_sym_Switch] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(3068), + [anon_sym_SWITCH] = ACTIONS(3068), + [anon_sym_Throw] = ACTIONS(3068), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_THROW] = ACTIONS(3068), + [anon_sym_Try] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_TRY] = ACTIONS(3068), + [anon_sym_Var] = ACTIONS(3068), + [anon_sym_var] = ACTIONS(3068), + [anon_sym_VAR] = ACTIONS(3068), + [anon_sym_While] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_WHILE] = ACTIONS(3068), + [anon_sym_With] = ACTIONS(3068), + [anon_sym_with] = ACTIONS(3068), + [anon_sym_WITH] = ACTIONS(3068), + [sym_cf_comment] = ACTIONS(3066), + [sym__java_block_open] = ACTIONS(3066), + [sym__static_type_prefix] = ACTIONS(3066), + }, + [STATE(721)] = { + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_Query] = ACTIONS(3072), + [anon_sym_query] = ACTIONS(3072), + [anon_sym_QUERY] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_unary_operator_token1] = ACTIONS(3072), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3072), + [aux_sym_number_token2] = ACTIONS(3070), + [anon_sym_This] = ACTIONS(3072), + [anon_sym_this] = ACTIONS(3072), + [anon_sym_THIS] = ACTIONS(3072), + [anon_sym_Super] = ACTIONS(3072), + [anon_sym_super] = ACTIONS(3072), + [anon_sym_SUPER] = ACTIONS(3072), + [anon_sym_True] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3072), + [anon_sym_TRUE] = ACTIONS(3072), + [anon_sym_False] = ACTIONS(3072), + [anon_sym_false] = ACTIONS(3072), + [anon_sym_FALSE] = ACTIONS(3072), + [anon_sym_Null] = ACTIONS(3072), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_NULL] = ACTIONS(3072), + [anon_sym_Undefined] = ACTIONS(3072), + [anon_sym_undefined] = ACTIONS(3072), + [anon_sym_UNDEFINED] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(3072), + [anon_sym_set] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [sym_hash_empty] = ACTIONS(3070), + [anon_sym_export] = ACTIONS(3072), + [anon_sym_QueryExecute] = ACTIONS(3072), + [anon_sym_queryexecute] = ACTIONS(3072), + [anon_sym_QUERYEXECUTE] = ACTIONS(3072), + [anon_sym_queryExecute] = ACTIONS(3072), + [anon_sym_BQUOTE] = ACTIONS(3072), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3070), + [anon_sym_Abstract] = ACTIONS(3072), + [anon_sym_abstract] = ACTIONS(3072), + [anon_sym_ABSTRACT] = ACTIONS(3072), + [anon_sym_Break] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_BREAK] = ACTIONS(3072), + [anon_sym_Case] = ACTIONS(3072), + [anon_sym_case] = ACTIONS(3072), + [anon_sym_CASE] = ACTIONS(3072), + [anon_sym_Component] = ACTIONS(3072), + [anon_sym_component] = ACTIONS(3072), + [anon_sym_COMPONENT] = ACTIONS(3072), + [anon_sym_Continue] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_CONTINUE] = ACTIONS(3072), + [anon_sym_Debugger] = ACTIONS(3072), + [anon_sym_debugger] = ACTIONS(3072), + [anon_sym_DEBUGGER] = ACTIONS(3072), + [anon_sym_Default] = ACTIONS(3072), + [anon_sym_default] = ACTIONS(3072), + [anon_sym_DEFAULT] = ACTIONS(3072), + [anon_sym_Do] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_DO] = ACTIONS(3072), + [anon_sym_Else] = ACTIONS(3072), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_ELSE] = ACTIONS(3072), + [anon_sym_Final] = ACTIONS(3072), + [anon_sym_final] = ACTIONS(3072), + [anon_sym_FINAL] = ACTIONS(3072), + [anon_sym_For] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_FOR] = ACTIONS(3072), + [anon_sym_Function] = ACTIONS(3072), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_FUNCTION] = ACTIONS(3072), + [anon_sym_If] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_IF] = ACTIONS(3072), + [anon_sym_Import] = ACTIONS(3072), + [anon_sym_import] = ACTIONS(3072), + [anon_sym_IMPORT] = ACTIONS(3072), + [anon_sym_Include] = ACTIONS(3072), + [anon_sym_include] = ACTIONS(3072), + [anon_sym_INCLUDE] = ACTIONS(3072), + [anon_sym_Interface] = ACTIONS(3072), + [anon_sym_interface] = ACTIONS(3072), + [anon_sym_INTERFACE] = ACTIONS(3072), + [anon_sym_New] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_NEW] = ACTIONS(3072), + [anon_sym_Package] = ACTIONS(3072), + [anon_sym_package] = ACTIONS(3072), + [anon_sym_PACKAGE] = ACTIONS(3072), + [anon_sym_Private] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_PRIVATE] = ACTIONS(3072), + [anon_sym_Property] = ACTIONS(3072), + [anon_sym_property] = ACTIONS(3072), + [anon_sym_PROPERTY] = ACTIONS(3072), + [anon_sym_Public] = ACTIONS(3072), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_PUBLIC] = ACTIONS(3072), + [anon_sym_Remote] = ACTIONS(3072), + [anon_sym_remote] = ACTIONS(3072), + [anon_sym_REMOTE] = ACTIONS(3072), + [anon_sym_Return] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_RETURN] = ACTIONS(3072), + [anon_sym_Static] = ACTIONS(3072), + [anon_sym_static] = ACTIONS(3072), + [anon_sym_STATIC] = ACTIONS(3072), + [anon_sym_Switch] = ACTIONS(3072), + [anon_sym_switch] = ACTIONS(3072), + [anon_sym_SWITCH] = ACTIONS(3072), + [anon_sym_Throw] = ACTIONS(3072), + [anon_sym_throw] = ACTIONS(3072), + [anon_sym_THROW] = ACTIONS(3072), + [anon_sym_Try] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_TRY] = ACTIONS(3072), + [anon_sym_Var] = ACTIONS(3072), + [anon_sym_var] = ACTIONS(3072), + [anon_sym_VAR] = ACTIONS(3072), + [anon_sym_While] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_WHILE] = ACTIONS(3072), + [anon_sym_With] = ACTIONS(3072), + [anon_sym_with] = ACTIONS(3072), + [anon_sym_WITH] = ACTIONS(3072), + [sym_cf_comment] = ACTIONS(3070), + [sym__java_block_open] = ACTIONS(3070), + [sym__static_type_prefix] = ACTIONS(3070), + }, + [STATE(722)] = { [ts_builtin_sym_end] = ACTIONS(3074), [sym_identifier] = ACTIONS(3076), [anon_sym_LBRACE] = ACTIONS(3074), @@ -152914,7 +154821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(3074), [sym__static_type_prefix] = ACTIONS(3074), }, - [STATE(711)] = { + [STATE(723)] = { [ts_builtin_sym_end] = ACTIONS(3078), [sym_identifier] = ACTIONS(3080), [anon_sym_LBRACE] = ACTIONS(3078), @@ -153062,7 +154969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(3078), [sym__static_type_prefix] = ACTIONS(3078), }, - [STATE(712)] = { + [STATE(724)] = { [ts_builtin_sym_end] = ACTIONS(3082), [sym_identifier] = ACTIONS(3084), [anon_sym_LBRACE] = ACTIONS(3082), @@ -153210,7 +155117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(3082), [sym__static_type_prefix] = ACTIONS(3082), }, - [STATE(713)] = { + [STATE(725)] = { [ts_builtin_sym_end] = ACTIONS(3086), [sym_identifier] = ACTIONS(3088), [anon_sym_LBRACE] = ACTIONS(3086), @@ -153358,3542 +155265,2516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(3086), [sym__static_type_prefix] = ACTIONS(3086), }, - [STATE(714)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_Query] = ACTIONS(2284), - [anon_sym_query] = ACTIONS(2284), - [anon_sym_QUERY] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2286), - [aux_sym_unary_operator_token1] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2284), - [aux_sym_number_token2] = ACTIONS(2284), - [anon_sym_This] = ACTIONS(2284), - [anon_sym_this] = ACTIONS(2284), - [anon_sym_THIS] = ACTIONS(2284), - [anon_sym_Super] = ACTIONS(2284), - [anon_sym_super] = ACTIONS(2284), - [anon_sym_SUPER] = ACTIONS(2284), - [anon_sym_True] = ACTIONS(2284), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_TRUE] = ACTIONS(2284), - [anon_sym_False] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_FALSE] = ACTIONS(2284), - [anon_sym_Null] = ACTIONS(2284), - [anon_sym_null] = ACTIONS(2284), - [anon_sym_NULL] = ACTIONS(2284), - [anon_sym_Undefined] = ACTIONS(2284), - [anon_sym_undefined] = ACTIONS(2284), - [anon_sym_UNDEFINED] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2284), - [sym_hash_empty] = ACTIONS(2286), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_QueryExecute] = ACTIONS(2284), - [anon_sym_queryexecute] = ACTIONS(2284), - [anon_sym_QUERYEXECUTE] = ACTIONS(2284), - [anon_sym_queryExecute] = ACTIONS(2284), - [anon_sym_BQUOTE] = ACTIONS(2286), - [anon_sym_Abstract] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_ABSTRACT] = ACTIONS(2284), - [anon_sym_Component] = ACTIONS(2284), - [anon_sym_component] = ACTIONS(2284), - [anon_sym_COMPONENT] = ACTIONS(2284), - [anon_sym_Debugger] = ACTIONS(2284), - [anon_sym_debugger] = ACTIONS(2284), - [anon_sym_DEBUGGER] = ACTIONS(2284), - [anon_sym_Final] = ACTIONS(2284), - [anon_sym_final] = ACTIONS(2284), - [anon_sym_FINAL] = ACTIONS(2284), - [anon_sym_Function] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_FUNCTION] = ACTIONS(2284), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_Include] = ACTIONS(2284), - [anon_sym_include] = ACTIONS(2284), - [anon_sym_INCLUDE] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [anon_sym_New] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_NEW] = ACTIONS(2284), - [anon_sym_Package] = ACTIONS(2284), - [anon_sym_package] = ACTIONS(2284), - [anon_sym_PACKAGE] = ACTIONS(2284), - [anon_sym_Private] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_PRIVATE] = ACTIONS(2284), - [anon_sym_Public] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_PUBLIC] = ACTIONS(2284), - [anon_sym_Remote] = ACTIONS(2284), - [anon_sym_remote] = ACTIONS(2284), - [anon_sym_REMOTE] = ACTIONS(2284), - [anon_sym_Static] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_STATIC] = ACTIONS(2284), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym__java_block_open] = ACTIONS(2286), - [sym__static_type_prefix] = ACTIONS(2286), + [STATE(726)] = { + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_Query] = ACTIONS(3092), + [anon_sym_query] = ACTIONS(3092), + [anon_sym_QUERY] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_SLASH] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_unary_operator_token1] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3090), + [anon_sym_DQUOTE] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3092), + [aux_sym_number_token2] = ACTIONS(3090), + [anon_sym_This] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_THIS] = ACTIONS(3092), + [anon_sym_Super] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_SUPER] = ACTIONS(3092), + [anon_sym_True] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_TRUE] = ACTIONS(3092), + [anon_sym_False] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_FALSE] = ACTIONS(3092), + [anon_sym_Null] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_NULL] = ACTIONS(3092), + [anon_sym_Undefined] = ACTIONS(3092), + [anon_sym_undefined] = ACTIONS(3092), + [anon_sym_UNDEFINED] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_POUND] = ACTIONS(3092), + [sym_hash_empty] = ACTIONS(3090), + [anon_sym_export] = ACTIONS(3092), + [anon_sym_QueryExecute] = ACTIONS(3092), + [anon_sym_queryexecute] = ACTIONS(3092), + [anon_sym_QUERYEXECUTE] = ACTIONS(3092), + [anon_sym_queryExecute] = ACTIONS(3092), + [anon_sym_BQUOTE] = ACTIONS(3092), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3090), + [anon_sym_Abstract] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_ABSTRACT] = ACTIONS(3092), + [anon_sym_Break] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_BREAK] = ACTIONS(3092), + [anon_sym_Case] = ACTIONS(3092), + [anon_sym_case] = ACTIONS(3092), + [anon_sym_CASE] = ACTIONS(3092), + [anon_sym_Component] = ACTIONS(3092), + [anon_sym_component] = ACTIONS(3092), + [anon_sym_COMPONENT] = ACTIONS(3092), + [anon_sym_Continue] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_CONTINUE] = ACTIONS(3092), + [anon_sym_Debugger] = ACTIONS(3092), + [anon_sym_debugger] = ACTIONS(3092), + [anon_sym_DEBUGGER] = ACTIONS(3092), + [anon_sym_Default] = ACTIONS(3092), + [anon_sym_default] = ACTIONS(3092), + [anon_sym_DEFAULT] = ACTIONS(3092), + [anon_sym_Do] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_DO] = ACTIONS(3092), + [anon_sym_Else] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_ELSE] = ACTIONS(3092), + [anon_sym_Final] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_FINAL] = ACTIONS(3092), + [anon_sym_For] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_FOR] = ACTIONS(3092), + [anon_sym_Function] = ACTIONS(3092), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_FUNCTION] = ACTIONS(3092), + [anon_sym_If] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_IF] = ACTIONS(3092), + [anon_sym_Import] = ACTIONS(3092), + [anon_sym_import] = ACTIONS(3092), + [anon_sym_IMPORT] = ACTIONS(3092), + [anon_sym_Include] = ACTIONS(3092), + [anon_sym_include] = ACTIONS(3092), + [anon_sym_INCLUDE] = ACTIONS(3092), + [anon_sym_Interface] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_INTERFACE] = ACTIONS(3092), + [anon_sym_New] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_NEW] = ACTIONS(3092), + [anon_sym_Package] = ACTIONS(3092), + [anon_sym_package] = ACTIONS(3092), + [anon_sym_PACKAGE] = ACTIONS(3092), + [anon_sym_Private] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_PRIVATE] = ACTIONS(3092), + [anon_sym_Property] = ACTIONS(3092), + [anon_sym_property] = ACTIONS(3092), + [anon_sym_PROPERTY] = ACTIONS(3092), + [anon_sym_Public] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_PUBLIC] = ACTIONS(3092), + [anon_sym_Remote] = ACTIONS(3092), + [anon_sym_remote] = ACTIONS(3092), + [anon_sym_REMOTE] = ACTIONS(3092), + [anon_sym_Return] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_RETURN] = ACTIONS(3092), + [anon_sym_Static] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_STATIC] = ACTIONS(3092), + [anon_sym_Switch] = ACTIONS(3092), + [anon_sym_switch] = ACTIONS(3092), + [anon_sym_SWITCH] = ACTIONS(3092), + [anon_sym_Throw] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_THROW] = ACTIONS(3092), + [anon_sym_Try] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_TRY] = ACTIONS(3092), + [anon_sym_Var] = ACTIONS(3092), + [anon_sym_var] = ACTIONS(3092), + [anon_sym_VAR] = ACTIONS(3092), + [anon_sym_While] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_WHILE] = ACTIONS(3092), + [anon_sym_With] = ACTIONS(3092), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_WITH] = ACTIONS(3092), + [sym_cf_comment] = ACTIONS(3090), + [sym__java_block_open] = ACTIONS(3090), + [sym__static_type_prefix] = ACTIONS(3090), }, - [STATE(715)] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_Query] = ACTIONS(2312), - [anon_sym_query] = ACTIONS(2312), - [anon_sym_QUERY] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2312), - [sym_optional_chain] = ACTIONS(2314), - [sym_static_chain] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_BSLASH] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_LT_GT] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [aux_sym_binary_expression_token1] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [aux_sym_binary_expression_token2] = ACTIONS(2312), - [aux_sym_binary_expression_token3] = ACTIONS(2312), - [aux_sym_binary_expression_token4] = ACTIONS(2314), - [aux_sym_binary_expression_token5] = ACTIONS(2314), - [aux_sym_binary_expression_token6] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [aux_sym_unary_operator_token1] = ACTIONS(2312), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2312), - [aux_sym_number_token2] = ACTIONS(2312), - [anon_sym_This] = ACTIONS(2312), - [anon_sym_this] = ACTIONS(2312), - [anon_sym_THIS] = ACTIONS(2312), - [anon_sym_Super] = ACTIONS(2312), - [anon_sym_super] = ACTIONS(2312), - [anon_sym_SUPER] = ACTIONS(2312), - [anon_sym_True] = ACTIONS(2312), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_TRUE] = ACTIONS(2312), - [anon_sym_False] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [anon_sym_FALSE] = ACTIONS(2312), - [anon_sym_Null] = ACTIONS(2312), - [anon_sym_null] = ACTIONS(2312), - [anon_sym_NULL] = ACTIONS(2312), - [anon_sym_Undefined] = ACTIONS(2312), - [anon_sym_undefined] = ACTIONS(2312), - [anon_sym_UNDEFINED] = ACTIONS(2312), - [anon_sym_get] = ACTIONS(2312), - [anon_sym_set] = ACTIONS(2312), - [anon_sym_POUND] = ACTIONS(2312), - [sym_hash_empty] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2312), - [anon_sym_QueryExecute] = ACTIONS(2312), - [anon_sym_queryexecute] = ACTIONS(2312), - [anon_sym_QUERYEXECUTE] = ACTIONS(2312), - [anon_sym_queryExecute] = ACTIONS(2312), - [anon_sym_BQUOTE] = ACTIONS(2314), - [anon_sym_Abstract] = ACTIONS(2312), - [anon_sym_abstract] = ACTIONS(2312), - [anon_sym_ABSTRACT] = ACTIONS(2312), - [anon_sym_Component] = ACTIONS(2312), - [anon_sym_component] = ACTIONS(2312), - [anon_sym_COMPONENT] = ACTIONS(2312), - [anon_sym_Debugger] = ACTIONS(2312), - [anon_sym_debugger] = ACTIONS(2312), - [anon_sym_DEBUGGER] = ACTIONS(2312), - [anon_sym_Final] = ACTIONS(2312), - [anon_sym_final] = ACTIONS(2312), - [anon_sym_FINAL] = ACTIONS(2312), - [anon_sym_Function] = ACTIONS(2312), - [anon_sym_function] = ACTIONS(2312), - [anon_sym_FUNCTION] = ACTIONS(2312), - [anon_sym_In] = ACTIONS(2312), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_IN] = ACTIONS(2312), - [anon_sym_Include] = ACTIONS(2312), - [anon_sym_include] = ACTIONS(2312), - [anon_sym_INCLUDE] = ACTIONS(2312), - [anon_sym_InstanceOf] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_INSTANCEOF] = ACTIONS(2312), - [anon_sym_instanceOf] = ACTIONS(2312), - [anon_sym_New] = ACTIONS(2312), - [anon_sym_new] = ACTIONS(2312), - [anon_sym_NEW] = ACTIONS(2312), - [anon_sym_Package] = ACTIONS(2312), - [anon_sym_package] = ACTIONS(2312), - [anon_sym_PACKAGE] = ACTIONS(2312), - [anon_sym_Private] = ACTIONS(2312), - [anon_sym_private] = ACTIONS(2312), - [anon_sym_PRIVATE] = ACTIONS(2312), - [anon_sym_Public] = ACTIONS(2312), - [anon_sym_public] = ACTIONS(2312), - [anon_sym_PUBLIC] = ACTIONS(2312), - [anon_sym_Remote] = ACTIONS(2312), - [anon_sym_remote] = ACTIONS(2312), - [anon_sym_REMOTE] = ACTIONS(2312), - [anon_sym_Static] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2312), - [anon_sym_STATIC] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2314), - [sym__elvis_operator] = ACTIONS(2314), - [sym_logical_or] = ACTIONS(2314), - [sym__java_block_open] = ACTIONS(2314), - [sym__static_type_prefix] = ACTIONS(2314), + [STATE(727)] = { + [ts_builtin_sym_end] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_Query] = ACTIONS(3096), + [anon_sym_query] = ACTIONS(3096), + [anon_sym_QUERY] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [aux_sym_unary_operator_token1] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [anon_sym_DQUOTE] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3096), + [aux_sym_number_token2] = ACTIONS(3094), + [anon_sym_This] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_THIS] = ACTIONS(3096), + [anon_sym_Super] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_SUPER] = ACTIONS(3096), + [anon_sym_True] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_TRUE] = ACTIONS(3096), + [anon_sym_False] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_FALSE] = ACTIONS(3096), + [anon_sym_Null] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_NULL] = ACTIONS(3096), + [anon_sym_Undefined] = ACTIONS(3096), + [anon_sym_undefined] = ACTIONS(3096), + [anon_sym_UNDEFINED] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3096), + [sym_hash_empty] = ACTIONS(3094), + [anon_sym_export] = ACTIONS(3096), + [anon_sym_QueryExecute] = ACTIONS(3096), + [anon_sym_queryexecute] = ACTIONS(3096), + [anon_sym_QUERYEXECUTE] = ACTIONS(3096), + [anon_sym_queryExecute] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(3096), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3094), + [anon_sym_Abstract] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_ABSTRACT] = ACTIONS(3096), + [anon_sym_Break] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_BREAK] = ACTIONS(3096), + [anon_sym_Case] = ACTIONS(3096), + [anon_sym_case] = ACTIONS(3096), + [anon_sym_CASE] = ACTIONS(3096), + [anon_sym_Component] = ACTIONS(3096), + [anon_sym_component] = ACTIONS(3096), + [anon_sym_COMPONENT] = ACTIONS(3096), + [anon_sym_Continue] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_CONTINUE] = ACTIONS(3096), + [anon_sym_Debugger] = ACTIONS(3096), + [anon_sym_debugger] = ACTIONS(3096), + [anon_sym_DEBUGGER] = ACTIONS(3096), + [anon_sym_Default] = ACTIONS(3096), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_DEFAULT] = ACTIONS(3096), + [anon_sym_Do] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_DO] = ACTIONS(3096), + [anon_sym_Else] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_ELSE] = ACTIONS(3096), + [anon_sym_Final] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_FINAL] = ACTIONS(3096), + [anon_sym_For] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_FOR] = ACTIONS(3096), + [anon_sym_Function] = ACTIONS(3096), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_FUNCTION] = ACTIONS(3096), + [anon_sym_If] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_IF] = ACTIONS(3096), + [anon_sym_Import] = ACTIONS(3096), + [anon_sym_import] = ACTIONS(3096), + [anon_sym_IMPORT] = ACTIONS(3096), + [anon_sym_Include] = ACTIONS(3096), + [anon_sym_include] = ACTIONS(3096), + [anon_sym_INCLUDE] = ACTIONS(3096), + [anon_sym_Interface] = ACTIONS(3096), + [anon_sym_interface] = ACTIONS(3096), + [anon_sym_INTERFACE] = ACTIONS(3096), + [anon_sym_New] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_NEW] = ACTIONS(3096), + [anon_sym_Package] = ACTIONS(3096), + [anon_sym_package] = ACTIONS(3096), + [anon_sym_PACKAGE] = ACTIONS(3096), + [anon_sym_Private] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_PRIVATE] = ACTIONS(3096), + [anon_sym_Property] = ACTIONS(3096), + [anon_sym_property] = ACTIONS(3096), + [anon_sym_PROPERTY] = ACTIONS(3096), + [anon_sym_Public] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_PUBLIC] = ACTIONS(3096), + [anon_sym_Remote] = ACTIONS(3096), + [anon_sym_remote] = ACTIONS(3096), + [anon_sym_REMOTE] = ACTIONS(3096), + [anon_sym_Return] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_RETURN] = ACTIONS(3096), + [anon_sym_Static] = ACTIONS(3096), + [anon_sym_static] = ACTIONS(3096), + [anon_sym_STATIC] = ACTIONS(3096), + [anon_sym_Switch] = ACTIONS(3096), + [anon_sym_switch] = ACTIONS(3096), + [anon_sym_SWITCH] = ACTIONS(3096), + [anon_sym_Throw] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_THROW] = ACTIONS(3096), + [anon_sym_Try] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_TRY] = ACTIONS(3096), + [anon_sym_Var] = ACTIONS(3096), + [anon_sym_var] = ACTIONS(3096), + [anon_sym_VAR] = ACTIONS(3096), + [anon_sym_While] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_WHILE] = ACTIONS(3096), + [anon_sym_With] = ACTIONS(3096), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_WITH] = ACTIONS(3096), + [sym_cf_comment] = ACTIONS(3094), + [sym__java_block_open] = ACTIONS(3094), + [sym__static_type_prefix] = ACTIONS(3094), }, - [STATE(716)] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2470), - [anon_sym_query] = ACTIONS(2470), - [anon_sym_QUERY] = ACTIONS(2470), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [aux_sym_unary_operator_token1] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2470), - [aux_sym_number_token2] = ACTIONS(2470), - [anon_sym_This] = ACTIONS(2470), - [anon_sym_this] = ACTIONS(2470), - [anon_sym_THIS] = ACTIONS(2470), - [anon_sym_Super] = ACTIONS(2470), - [anon_sym_super] = ACTIONS(2470), - [anon_sym_SUPER] = ACTIONS(2470), - [anon_sym_True] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_TRUE] = ACTIONS(2470), - [anon_sym_False] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_FALSE] = ACTIONS(2470), - [anon_sym_Null] = ACTIONS(2470), - [anon_sym_null] = ACTIONS(2470), - [anon_sym_NULL] = ACTIONS(2470), - [anon_sym_Undefined] = ACTIONS(2470), - [anon_sym_undefined] = ACTIONS(2470), - [anon_sym_UNDEFINED] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(2470), - [sym_hash_empty] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_QueryExecute] = ACTIONS(2470), - [anon_sym_queryexecute] = ACTIONS(2470), - [anon_sym_QUERYEXECUTE] = ACTIONS(2470), - [anon_sym_queryExecute] = ACTIONS(2470), - [anon_sym_BQUOTE] = ACTIONS(2472), - [anon_sym_Abstract] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_ABSTRACT] = ACTIONS(2470), - [anon_sym_Component] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_COMPONENT] = ACTIONS(2470), - [anon_sym_Debugger] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_DEBUGGER] = ACTIONS(2470), - [anon_sym_Final] = ACTIONS(2470), - [anon_sym_final] = ACTIONS(2470), - [anon_sym_FINAL] = ACTIONS(2470), - [anon_sym_Function] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_FUNCTION] = ACTIONS(2470), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2470), - [anon_sym_include] = ACTIONS(2470), - [anon_sym_INCLUDE] = ACTIONS(2470), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_NEW] = ACTIONS(2470), - [anon_sym_Package] = ACTIONS(2470), - [anon_sym_package] = ACTIONS(2470), - [anon_sym_PACKAGE] = ACTIONS(2470), - [anon_sym_Private] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_PRIVATE] = ACTIONS(2470), - [anon_sym_Public] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_PUBLIC] = ACTIONS(2470), - [anon_sym_Remote] = ACTIONS(2470), - [anon_sym_remote] = ACTIONS(2470), - [anon_sym_REMOTE] = ACTIONS(2470), - [anon_sym_Static] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_STATIC] = ACTIONS(2470), - [sym__ternary_qmark] = ACTIONS(3132), - [sym__elvis_operator] = ACTIONS(3134), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2472), - [sym__static_type_prefix] = ACTIONS(2472), + [STATE(728)] = { + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_Query] = ACTIONS(2980), + [anon_sym_query] = ACTIONS(2980), + [anon_sym_QUERY] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [aux_sym_unary_operator_token1] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2980), + [aux_sym_number_token2] = ACTIONS(2978), + [anon_sym_This] = ACTIONS(2980), + [anon_sym_this] = ACTIONS(2980), + [anon_sym_THIS] = ACTIONS(2980), + [anon_sym_Super] = ACTIONS(2980), + [anon_sym_super] = ACTIONS(2980), + [anon_sym_SUPER] = ACTIONS(2980), + [anon_sym_True] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2980), + [anon_sym_TRUE] = ACTIONS(2980), + [anon_sym_False] = ACTIONS(2980), + [anon_sym_false] = ACTIONS(2980), + [anon_sym_FALSE] = ACTIONS(2980), + [anon_sym_Null] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_Undefined] = ACTIONS(2980), + [anon_sym_undefined] = ACTIONS(2980), + [anon_sym_UNDEFINED] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [sym_hash_empty] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_QueryExecute] = ACTIONS(2980), + [anon_sym_queryexecute] = ACTIONS(2980), + [anon_sym_QUERYEXECUTE] = ACTIONS(2980), + [anon_sym_queryExecute] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2978), + [anon_sym_Abstract] = ACTIONS(2980), + [anon_sym_abstract] = ACTIONS(2980), + [anon_sym_ABSTRACT] = ACTIONS(2980), + [anon_sym_Break] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_BREAK] = ACTIONS(2980), + [anon_sym_Case] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_CASE] = ACTIONS(2980), + [anon_sym_Component] = ACTIONS(2980), + [anon_sym_component] = ACTIONS(2980), + [anon_sym_COMPONENT] = ACTIONS(2980), + [anon_sym_Continue] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_CONTINUE] = ACTIONS(2980), + [anon_sym_Debugger] = ACTIONS(2980), + [anon_sym_debugger] = ACTIONS(2980), + [anon_sym_DEBUGGER] = ACTIONS(2980), + [anon_sym_Default] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_DEFAULT] = ACTIONS(2980), + [anon_sym_Do] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_DO] = ACTIONS(2980), + [anon_sym_Else] = ACTIONS(2980), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_ELSE] = ACTIONS(2980), + [anon_sym_Final] = ACTIONS(2980), + [anon_sym_final] = ACTIONS(2980), + [anon_sym_FINAL] = ACTIONS(2980), + [anon_sym_For] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_FOR] = ACTIONS(2980), + [anon_sym_Function] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_FUNCTION] = ACTIONS(2980), + [anon_sym_If] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_IF] = ACTIONS(2980), + [anon_sym_Import] = ACTIONS(2980), + [anon_sym_import] = ACTIONS(2980), + [anon_sym_IMPORT] = ACTIONS(2980), + [anon_sym_Include] = ACTIONS(2980), + [anon_sym_include] = ACTIONS(2980), + [anon_sym_INCLUDE] = ACTIONS(2980), + [anon_sym_Interface] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_INTERFACE] = ACTIONS(2980), + [anon_sym_New] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_NEW] = ACTIONS(2980), + [anon_sym_Package] = ACTIONS(2980), + [anon_sym_package] = ACTIONS(2980), + [anon_sym_PACKAGE] = ACTIONS(2980), + [anon_sym_Private] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_PRIVATE] = ACTIONS(2980), + [anon_sym_Property] = ACTIONS(2980), + [anon_sym_property] = ACTIONS(2980), + [anon_sym_PROPERTY] = ACTIONS(2980), + [anon_sym_Public] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_PUBLIC] = ACTIONS(2980), + [anon_sym_Remote] = ACTIONS(2980), + [anon_sym_remote] = ACTIONS(2980), + [anon_sym_REMOTE] = ACTIONS(2980), + [anon_sym_Return] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_RETURN] = ACTIONS(2980), + [anon_sym_Static] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_STATIC] = ACTIONS(2980), + [anon_sym_Switch] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_SWITCH] = ACTIONS(2980), + [anon_sym_Throw] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_THROW] = ACTIONS(2980), + [anon_sym_Try] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_TRY] = ACTIONS(2980), + [anon_sym_Var] = ACTIONS(2980), + [anon_sym_var] = ACTIONS(2980), + [anon_sym_VAR] = ACTIONS(2980), + [anon_sym_While] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_WHILE] = ACTIONS(2980), + [anon_sym_With] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2980), + [anon_sym_WITH] = ACTIONS(2980), + [sym_cf_comment] = ACTIONS(2978), + [sym__java_block_open] = ACTIONS(2978), + [sym__static_type_prefix] = ACTIONS(2978), }, - [STATE(717)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_let] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_Query] = ACTIONS(507), - [anon_sym_query] = ACTIONS(507), - [anon_sym_QUERY] = ACTIONS(507), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(509), - [aux_sym_unary_operator_token1] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(509), + [STATE(729)] = { + [sym_identifier] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1598), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1598), + [anon_sym_instanceof] = ACTIONS(1598), + [anon_sym_INSTANCEOF] = ACTIONS(1598), + [anon_sym_instanceOf] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), + }, + [STATE(730)] = { + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2468), + [anon_sym_query] = ACTIONS(2468), + [anon_sym_QUERY] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2470), + [aux_sym_unary_operator_token1] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2468), + [aux_sym_number_token2] = ACTIONS(2468), + [anon_sym_This] = ACTIONS(2468), + [anon_sym_this] = ACTIONS(2468), + [anon_sym_THIS] = ACTIONS(2468), + [anon_sym_Super] = ACTIONS(2468), + [anon_sym_super] = ACTIONS(2468), + [anon_sym_SUPER] = ACTIONS(2468), + [anon_sym_True] = ACTIONS(2468), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_TRUE] = ACTIONS(2468), + [anon_sym_False] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_FALSE] = ACTIONS(2468), + [anon_sym_Null] = ACTIONS(2468), + [anon_sym_null] = ACTIONS(2468), + [anon_sym_NULL] = ACTIONS(2468), + [anon_sym_Undefined] = ACTIONS(2468), + [anon_sym_undefined] = ACTIONS(2468), + [anon_sym_UNDEFINED] = ACTIONS(2468), + [anon_sym_get] = ACTIONS(2468), + [anon_sym_set] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(2468), + [sym_hash_empty] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_QueryExecute] = ACTIONS(2468), + [anon_sym_queryexecute] = ACTIONS(2468), + [anon_sym_QUERYEXECUTE] = ACTIONS(2468), + [anon_sym_queryExecute] = ACTIONS(2468), + [anon_sym_BQUOTE] = ACTIONS(2470), + [anon_sym_Abstract] = ACTIONS(2468), + [anon_sym_abstract] = ACTIONS(2468), + [anon_sym_ABSTRACT] = ACTIONS(2468), + [anon_sym_Component] = ACTIONS(2468), + [anon_sym_component] = ACTIONS(2468), + [anon_sym_COMPONENT] = ACTIONS(2468), + [anon_sym_Debugger] = ACTIONS(2468), + [anon_sym_debugger] = ACTIONS(2468), + [anon_sym_DEBUGGER] = ACTIONS(2468), + [anon_sym_Final] = ACTIONS(2468), + [anon_sym_final] = ACTIONS(2468), + [anon_sym_FINAL] = ACTIONS(2468), + [anon_sym_Function] = ACTIONS(2468), + [anon_sym_function] = ACTIONS(2468), + [anon_sym_FUNCTION] = ACTIONS(2468), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2468), + [anon_sym_include] = ACTIONS(2468), + [anon_sym_INCLUDE] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2468), + [anon_sym_new] = ACTIONS(2468), + [anon_sym_NEW] = ACTIONS(2468), + [anon_sym_Package] = ACTIONS(2468), + [anon_sym_package] = ACTIONS(2468), + [anon_sym_PACKAGE] = ACTIONS(2468), + [anon_sym_Private] = ACTIONS(2468), + [anon_sym_private] = ACTIONS(2468), + [anon_sym_PRIVATE] = ACTIONS(2468), + [anon_sym_Public] = ACTIONS(2468), + [anon_sym_public] = ACTIONS(2468), + [anon_sym_PUBLIC] = ACTIONS(2468), + [anon_sym_Remote] = ACTIONS(2468), + [anon_sym_remote] = ACTIONS(2468), + [anon_sym_REMOTE] = ACTIONS(2468), + [anon_sym_Static] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_STATIC] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(3140), + [sym__elvis_operator] = ACTIONS(3142), + [sym_logical_or] = ACTIONS(3114), + [sym__java_block_open] = ACTIONS(2470), + [sym__static_type_prefix] = ACTIONS(2470), + }, + [STATE(731)] = { + [sym_identifier] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2476), + [anon_sym_query] = ACTIONS(2476), + [anon_sym_QUERY] = ACTIONS(2476), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2478), + [aux_sym_unary_operator_token1] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2476), + [aux_sym_number_token2] = ACTIONS(2476), + [anon_sym_This] = ACTIONS(2476), + [anon_sym_this] = ACTIONS(2476), + [anon_sym_THIS] = ACTIONS(2476), + [anon_sym_Super] = ACTIONS(2476), + [anon_sym_super] = ACTIONS(2476), + [anon_sym_SUPER] = ACTIONS(2476), + [anon_sym_True] = ACTIONS(2476), + [anon_sym_true] = ACTIONS(2476), + [anon_sym_TRUE] = ACTIONS(2476), + [anon_sym_False] = ACTIONS(2476), + [anon_sym_false] = ACTIONS(2476), + [anon_sym_FALSE] = ACTIONS(2476), + [anon_sym_Null] = ACTIONS(2476), + [anon_sym_null] = ACTIONS(2476), + [anon_sym_NULL] = ACTIONS(2476), + [anon_sym_Undefined] = ACTIONS(2476), + [anon_sym_undefined] = ACTIONS(2476), + [anon_sym_UNDEFINED] = ACTIONS(2476), + [anon_sym_get] = ACTIONS(2476), + [anon_sym_set] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2476), + [sym_hash_empty] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2476), + [anon_sym_QueryExecute] = ACTIONS(2476), + [anon_sym_queryexecute] = ACTIONS(2476), + [anon_sym_QUERYEXECUTE] = ACTIONS(2476), + [anon_sym_queryExecute] = ACTIONS(2476), + [anon_sym_BQUOTE] = ACTIONS(2478), + [anon_sym_Abstract] = ACTIONS(2476), + [anon_sym_abstract] = ACTIONS(2476), + [anon_sym_ABSTRACT] = ACTIONS(2476), + [anon_sym_Component] = ACTIONS(2476), + [anon_sym_component] = ACTIONS(2476), + [anon_sym_COMPONENT] = ACTIONS(2476), + [anon_sym_Debugger] = ACTIONS(2476), + [anon_sym_debugger] = ACTIONS(2476), + [anon_sym_DEBUGGER] = ACTIONS(2476), + [anon_sym_Final] = ACTIONS(2476), + [anon_sym_final] = ACTIONS(2476), + [anon_sym_FINAL] = ACTIONS(2476), + [anon_sym_Function] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2476), + [anon_sym_FUNCTION] = ACTIONS(2476), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2476), + [anon_sym_include] = ACTIONS(2476), + [anon_sym_INCLUDE] = ACTIONS(2476), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_NEW] = ACTIONS(2476), + [anon_sym_Package] = ACTIONS(2476), + [anon_sym_package] = ACTIONS(2476), + [anon_sym_PACKAGE] = ACTIONS(2476), + [anon_sym_Private] = ACTIONS(2476), + [anon_sym_private] = ACTIONS(2476), + [anon_sym_PRIVATE] = ACTIONS(2476), + [anon_sym_Public] = ACTIONS(2476), + [anon_sym_public] = ACTIONS(2476), + [anon_sym_PUBLIC] = ACTIONS(2476), + [anon_sym_Remote] = ACTIONS(2476), + [anon_sym_remote] = ACTIONS(2476), + [anon_sym_REMOTE] = ACTIONS(2476), + [anon_sym_Static] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_STATIC] = ACTIONS(2476), + [sym__ternary_qmark] = ACTIONS(3140), + [sym__elvis_operator] = ACTIONS(3142), + [sym_logical_or] = ACTIONS(3114), + [sym__java_block_open] = ACTIONS(2478), + [sym__static_type_prefix] = ACTIONS(2478), + }, + [STATE(732)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(507), - [aux_sym_number_token2] = ACTIONS(507), - [anon_sym_This] = ACTIONS(507), - [anon_sym_this] = ACTIONS(507), - [anon_sym_THIS] = ACTIONS(507), - [anon_sym_Super] = ACTIONS(507), - [anon_sym_super] = ACTIONS(507), - [anon_sym_SUPER] = ACTIONS(507), - [anon_sym_True] = ACTIONS(507), - [anon_sym_true] = ACTIONS(507), - [anon_sym_TRUE] = ACTIONS(507), - [anon_sym_False] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_FALSE] = ACTIONS(507), - [anon_sym_Null] = ACTIONS(507), - [anon_sym_null] = ACTIONS(507), - [anon_sym_NULL] = ACTIONS(507), - [anon_sym_Undefined] = ACTIONS(507), - [anon_sym_undefined] = ACTIONS(507), - [anon_sym_UNDEFINED] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(507), - [sym_hash_empty] = ACTIONS(509), - [anon_sym_export] = ACTIONS(507), - [anon_sym_QueryExecute] = ACTIONS(507), - [anon_sym_queryexecute] = ACTIONS(507), - [anon_sym_QUERYEXECUTE] = ACTIONS(507), - [anon_sym_queryExecute] = ACTIONS(507), - [anon_sym_BQUOTE] = ACTIONS(509), - [anon_sym_Abstract] = ACTIONS(507), - [anon_sym_abstract] = ACTIONS(507), - [anon_sym_ABSTRACT] = ACTIONS(507), - [anon_sym_Component] = ACTIONS(507), - [anon_sym_component] = ACTIONS(507), - [anon_sym_COMPONENT] = ACTIONS(507), - [anon_sym_Debugger] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_DEBUGGER] = ACTIONS(507), - [anon_sym_Final] = ACTIONS(507), - [anon_sym_final] = ACTIONS(507), - [anon_sym_FINAL] = ACTIONS(507), - [anon_sym_Function] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_FUNCTION] = ACTIONS(507), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_Include] = ACTIONS(507), - [anon_sym_include] = ACTIONS(507), - [anon_sym_INCLUDE] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [anon_sym_New] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_NEW] = ACTIONS(507), - [anon_sym_Package] = ACTIONS(507), - [anon_sym_package] = ACTIONS(507), - [anon_sym_PACKAGE] = ACTIONS(507), - [anon_sym_Private] = ACTIONS(507), - [anon_sym_private] = ACTIONS(507), - [anon_sym_PRIVATE] = ACTIONS(507), - [anon_sym_Public] = ACTIONS(507), - [anon_sym_public] = ACTIONS(507), - [anon_sym_PUBLIC] = ACTIONS(507), - [anon_sym_Remote] = ACTIONS(507), - [anon_sym_remote] = ACTIONS(507), - [anon_sym_REMOTE] = ACTIONS(507), - [anon_sym_Static] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_STATIC] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__java_block_open] = ACTIONS(509), - [sym__static_type_prefix] = ACTIONS(509), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(718)] = { - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_Query] = ACTIONS(1722), - [anon_sym_query] = ACTIONS(1722), - [anon_sym_QUERY] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1720), - [aux_sym_unary_operator_token1] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1722), - [aux_sym_number_token2] = ACTIONS(1722), - [anon_sym_This] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1722), - [anon_sym_THIS] = ACTIONS(1722), - [anon_sym_Super] = ACTIONS(1722), - [anon_sym_super] = ACTIONS(1722), - [anon_sym_SUPER] = ACTIONS(1722), - [anon_sym_True] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_TRUE] = ACTIONS(1722), - [anon_sym_False] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [anon_sym_FALSE] = ACTIONS(1722), - [anon_sym_Null] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1722), - [anon_sym_NULL] = ACTIONS(1722), - [anon_sym_Undefined] = ACTIONS(1722), - [anon_sym_undefined] = ACTIONS(1722), - [anon_sym_UNDEFINED] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1722), - [sym_hash_empty] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_QueryExecute] = ACTIONS(1722), - [anon_sym_queryexecute] = ACTIONS(1722), - [anon_sym_QUERYEXECUTE] = ACTIONS(1722), - [anon_sym_queryExecute] = ACTIONS(1722), - [anon_sym_BQUOTE] = ACTIONS(1720), - [anon_sym_Abstract] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_ABSTRACT] = ACTIONS(1722), - [anon_sym_Component] = ACTIONS(1722), - [anon_sym_component] = ACTIONS(1722), - [anon_sym_COMPONENT] = ACTIONS(1722), - [anon_sym_Debugger] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_DEBUGGER] = ACTIONS(1722), - [anon_sym_Final] = ACTIONS(1722), - [anon_sym_final] = ACTIONS(1722), - [anon_sym_FINAL] = ACTIONS(1722), - [anon_sym_Function] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_FUNCTION] = ACTIONS(1722), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(1722), - [anon_sym_include] = ACTIONS(1722), - [anon_sym_INCLUDE] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_NEW] = ACTIONS(1722), - [anon_sym_Package] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1722), - [anon_sym_PACKAGE] = ACTIONS(1722), - [anon_sym_Private] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_PRIVATE] = ACTIONS(1722), - [anon_sym_Public] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_PUBLIC] = ACTIONS(1722), - [anon_sym_Remote] = ACTIONS(1722), - [anon_sym_remote] = ACTIONS(1722), - [anon_sym_REMOTE] = ACTIONS(1722), - [anon_sym_Static] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_STATIC] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym__java_block_open] = ACTIONS(1720), - [sym__static_type_prefix] = ACTIONS(1720), + [STATE(733)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(719)] = { - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_Query] = ACTIONS(2250), - [anon_sym_query] = ACTIONS(2250), - [anon_sym_QUERY] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2254), - [sym_static_chain] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_TILDE] = ACTIONS(2254), - [aux_sym_unary_operator_token1] = ACTIONS(2250), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2254), + [STATE(734)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2250), - [aux_sym_number_token2] = ACTIONS(2250), - [anon_sym_This] = ACTIONS(2250), - [anon_sym_this] = ACTIONS(2250), - [anon_sym_THIS] = ACTIONS(2250), - [anon_sym_Super] = ACTIONS(2250), - [anon_sym_super] = ACTIONS(2250), - [anon_sym_SUPER] = ACTIONS(2250), - [anon_sym_True] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_TRUE] = ACTIONS(2250), - [anon_sym_False] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_FALSE] = ACTIONS(2250), - [anon_sym_Null] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [anon_sym_NULL] = ACTIONS(2250), - [anon_sym_Undefined] = ACTIONS(2250), - [anon_sym_undefined] = ACTIONS(2250), - [anon_sym_UNDEFINED] = ACTIONS(2250), - [anon_sym_get] = ACTIONS(2250), - [anon_sym_set] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), - [sym_hash_empty] = ACTIONS(2254), - [anon_sym_export] = ACTIONS(2250), - [anon_sym_QueryExecute] = ACTIONS(2250), - [anon_sym_queryexecute] = ACTIONS(2250), - [anon_sym_QUERYEXECUTE] = ACTIONS(2250), - [anon_sym_queryExecute] = ACTIONS(2250), - [anon_sym_BQUOTE] = ACTIONS(2254), - [anon_sym_Abstract] = ACTIONS(2250), - [anon_sym_abstract] = ACTIONS(2250), - [anon_sym_ABSTRACT] = ACTIONS(2250), - [anon_sym_Component] = ACTIONS(2250), - [anon_sym_component] = ACTIONS(2250), - [anon_sym_COMPONENT] = ACTIONS(2250), - [anon_sym_Debugger] = ACTIONS(2250), - [anon_sym_debugger] = ACTIONS(2250), - [anon_sym_DEBUGGER] = ACTIONS(2250), - [anon_sym_Final] = ACTIONS(2250), - [anon_sym_final] = ACTIONS(2250), - [anon_sym_FINAL] = ACTIONS(2250), - [anon_sym_Function] = ACTIONS(2250), - [anon_sym_function] = ACTIONS(2250), - [anon_sym_FUNCTION] = ACTIONS(2250), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_Include] = ACTIONS(2250), - [anon_sym_include] = ACTIONS(2250), - [anon_sym_INCLUDE] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [anon_sym_New] = ACTIONS(2250), - [anon_sym_new] = ACTIONS(2250), - [anon_sym_NEW] = ACTIONS(2250), - [anon_sym_Package] = ACTIONS(2250), - [anon_sym_package] = ACTIONS(2250), - [anon_sym_PACKAGE] = ACTIONS(2250), - [anon_sym_Private] = ACTIONS(2250), - [anon_sym_private] = ACTIONS(2250), - [anon_sym_PRIVATE] = ACTIONS(2250), - [anon_sym_Public] = ACTIONS(2250), - [anon_sym_public] = ACTIONS(2250), - [anon_sym_PUBLIC] = ACTIONS(2250), - [anon_sym_Remote] = ACTIONS(2250), - [anon_sym_remote] = ACTIONS(2250), - [anon_sym_REMOTE] = ACTIONS(2250), - [anon_sym_Static] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_STATIC] = ACTIONS(2250), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - [sym__java_block_open] = ACTIONS(2254), - [sym__static_type_prefix] = ACTIONS(2254), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(720)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [STATE(735)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(721)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [STATE(736)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(722)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_Query] = ACTIONS(2462), - [anon_sym_query] = ACTIONS(2462), - [anon_sym_QUERY] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2462), - [sym_optional_chain] = ACTIONS(2464), - [sym_static_chain] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_GT_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_BSLASH] = ACTIONS(2462), - [anon_sym_STAR_STAR] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_LT_EQ] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_LT_GT] = ACTIONS(2464), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2464), - [aux_sym_binary_expression_token1] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2462), - [aux_sym_binary_expression_token2] = ACTIONS(2462), - [aux_sym_binary_expression_token3] = ACTIONS(2462), - [aux_sym_binary_expression_token4] = ACTIONS(2464), - [aux_sym_binary_expression_token5] = ACTIONS(2464), - [aux_sym_binary_expression_token6] = ACTIONS(2464), - [anon_sym_QMARK_QMARK] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_TILDE] = ACTIONS(2464), - [aux_sym_unary_operator_token1] = ACTIONS(2462), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2464), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2462), - [aux_sym_number_token2] = ACTIONS(2462), - [anon_sym_This] = ACTIONS(2462), - [anon_sym_this] = ACTIONS(2462), - [anon_sym_THIS] = ACTIONS(2462), - [anon_sym_Super] = ACTIONS(2462), - [anon_sym_super] = ACTIONS(2462), - [anon_sym_SUPER] = ACTIONS(2462), - [anon_sym_True] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2462), - [anon_sym_TRUE] = ACTIONS(2462), - [anon_sym_False] = ACTIONS(2462), - [anon_sym_false] = ACTIONS(2462), - [anon_sym_FALSE] = ACTIONS(2462), - [anon_sym_Null] = ACTIONS(2462), - [anon_sym_null] = ACTIONS(2462), - [anon_sym_NULL] = ACTIONS(2462), - [anon_sym_Undefined] = ACTIONS(2462), - [anon_sym_undefined] = ACTIONS(2462), - [anon_sym_UNDEFINED] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(2462), - [sym_hash_empty] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_QueryExecute] = ACTIONS(2462), - [anon_sym_queryexecute] = ACTIONS(2462), - [anon_sym_QUERYEXECUTE] = ACTIONS(2462), - [anon_sym_queryExecute] = ACTIONS(2462), - [anon_sym_BQUOTE] = ACTIONS(2464), - [anon_sym_Abstract] = ACTIONS(2462), - [anon_sym_abstract] = ACTIONS(2462), - [anon_sym_ABSTRACT] = ACTIONS(2462), - [anon_sym_Component] = ACTIONS(2462), - [anon_sym_component] = ACTIONS(2462), - [anon_sym_COMPONENT] = ACTIONS(2462), - [anon_sym_Debugger] = ACTIONS(2462), - [anon_sym_debugger] = ACTIONS(2462), - [anon_sym_DEBUGGER] = ACTIONS(2462), - [anon_sym_Final] = ACTIONS(2462), - [anon_sym_final] = ACTIONS(2462), - [anon_sym_FINAL] = ACTIONS(2462), - [anon_sym_Function] = ACTIONS(2462), - [anon_sym_function] = ACTIONS(2462), - [anon_sym_FUNCTION] = ACTIONS(2462), - [anon_sym_In] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [anon_sym_IN] = ACTIONS(2462), - [anon_sym_Include] = ACTIONS(2462), - [anon_sym_include] = ACTIONS(2462), - [anon_sym_INCLUDE] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(2462), - [anon_sym_instanceof] = ACTIONS(2462), - [anon_sym_INSTANCEOF] = ACTIONS(2462), - [anon_sym_instanceOf] = ACTIONS(2462), - [anon_sym_New] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_NEW] = ACTIONS(2462), - [anon_sym_Package] = ACTIONS(2462), - [anon_sym_package] = ACTIONS(2462), - [anon_sym_PACKAGE] = ACTIONS(2462), - [anon_sym_Private] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_PRIVATE] = ACTIONS(2462), - [anon_sym_Public] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_PUBLIC] = ACTIONS(2462), - [anon_sym_Remote] = ACTIONS(2462), - [anon_sym_remote] = ACTIONS(2462), - [anon_sym_REMOTE] = ACTIONS(2462), - [anon_sym_Static] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_STATIC] = ACTIONS(2462), - [sym__ternary_qmark] = ACTIONS(2464), - [sym__elvis_operator] = ACTIONS(2464), - [sym_logical_or] = ACTIONS(2464), - [sym__java_block_open] = ACTIONS(2464), - [sym__static_type_prefix] = ACTIONS(2464), + [STATE(737)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(723)] = { - [sym_identifier] = ACTIONS(2566), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_Query] = ACTIONS(2566), - [anon_sym_query] = ACTIONS(2566), - [anon_sym_QUERY] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2566), - [sym_optional_chain] = ACTIONS(2568), - [sym_static_chain] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_GT_GT_GT] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_CARET] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2568), - [anon_sym_BSLASH] = ACTIONS(2566), - [anon_sym_STAR_STAR] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2568), - [anon_sym_LT_GT] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2568), - [aux_sym_binary_expression_token1] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(2566), - [aux_sym_binary_expression_token2] = ACTIONS(2566), - [aux_sym_binary_expression_token3] = ACTIONS(2566), - [aux_sym_binary_expression_token4] = ACTIONS(2568), - [aux_sym_binary_expression_token5] = ACTIONS(2568), - [aux_sym_binary_expression_token6] = ACTIONS(2568), - [anon_sym_QMARK_QMARK] = ACTIONS(2568), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_TILDE] = ACTIONS(2568), - [aux_sym_unary_operator_token1] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2568), - [anon_sym_SQUOTE] = ACTIONS(2568), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2566), - [aux_sym_number_token2] = ACTIONS(2566), - [anon_sym_This] = ACTIONS(2566), - [anon_sym_this] = ACTIONS(2566), - [anon_sym_THIS] = ACTIONS(2566), - [anon_sym_Super] = ACTIONS(2566), - [anon_sym_super] = ACTIONS(2566), - [anon_sym_SUPER] = ACTIONS(2566), - [anon_sym_True] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2566), - [anon_sym_TRUE] = ACTIONS(2566), - [anon_sym_False] = ACTIONS(2566), - [anon_sym_false] = ACTIONS(2566), - [anon_sym_FALSE] = ACTIONS(2566), - [anon_sym_Null] = ACTIONS(2566), - [anon_sym_null] = ACTIONS(2566), - [anon_sym_NULL] = ACTIONS(2566), - [anon_sym_Undefined] = ACTIONS(2566), - [anon_sym_undefined] = ACTIONS(2566), - [anon_sym_UNDEFINED] = ACTIONS(2566), - [anon_sym_get] = ACTIONS(2566), - [anon_sym_set] = ACTIONS(2566), - [anon_sym_POUND] = ACTIONS(2566), - [sym_hash_empty] = ACTIONS(2568), - [anon_sym_export] = ACTIONS(2566), - [anon_sym_QueryExecute] = ACTIONS(2566), - [anon_sym_queryexecute] = ACTIONS(2566), - [anon_sym_QUERYEXECUTE] = ACTIONS(2566), - [anon_sym_queryExecute] = ACTIONS(2566), - [anon_sym_BQUOTE] = ACTIONS(2568), - [anon_sym_Abstract] = ACTIONS(2566), - [anon_sym_abstract] = ACTIONS(2566), - [anon_sym_ABSTRACT] = ACTIONS(2566), - [anon_sym_Component] = ACTIONS(2566), - [anon_sym_component] = ACTIONS(2566), - [anon_sym_COMPONENT] = ACTIONS(2566), - [anon_sym_Debugger] = ACTIONS(2566), - [anon_sym_debugger] = ACTIONS(2566), - [anon_sym_DEBUGGER] = ACTIONS(2566), - [anon_sym_Final] = ACTIONS(2566), - [anon_sym_final] = ACTIONS(2566), - [anon_sym_FINAL] = ACTIONS(2566), - [anon_sym_Function] = ACTIONS(2566), - [anon_sym_function] = ACTIONS(2566), - [anon_sym_FUNCTION] = ACTIONS(2566), - [anon_sym_In] = ACTIONS(2566), - [anon_sym_in] = ACTIONS(2566), - [anon_sym_IN] = ACTIONS(2566), - [anon_sym_Include] = ACTIONS(2566), - [anon_sym_include] = ACTIONS(2566), - [anon_sym_INCLUDE] = ACTIONS(2566), - [anon_sym_InstanceOf] = ACTIONS(2566), - [anon_sym_instanceof] = ACTIONS(2566), - [anon_sym_INSTANCEOF] = ACTIONS(2566), - [anon_sym_instanceOf] = ACTIONS(2566), - [anon_sym_New] = ACTIONS(2566), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_NEW] = ACTIONS(2566), - [anon_sym_Package] = ACTIONS(2566), - [anon_sym_package] = ACTIONS(2566), - [anon_sym_PACKAGE] = ACTIONS(2566), - [anon_sym_Private] = ACTIONS(2566), - [anon_sym_private] = ACTIONS(2566), - [anon_sym_PRIVATE] = ACTIONS(2566), - [anon_sym_Public] = ACTIONS(2566), - [anon_sym_public] = ACTIONS(2566), - [anon_sym_PUBLIC] = ACTIONS(2566), - [anon_sym_Remote] = ACTIONS(2566), - [anon_sym_remote] = ACTIONS(2566), - [anon_sym_REMOTE] = ACTIONS(2566), - [anon_sym_Static] = ACTIONS(2566), - [anon_sym_static] = ACTIONS(2566), - [anon_sym_STATIC] = ACTIONS(2566), - [sym__ternary_qmark] = ACTIONS(2568), - [sym__elvis_operator] = ACTIONS(2568), - [sym_logical_or] = ACTIONS(2568), - [sym__java_block_open] = ACTIONS(2568), - [sym__static_type_prefix] = ACTIONS(2568), + [STATE(738)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(724)] = { - [sym_identifier] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_Query] = ACTIONS(2570), - [anon_sym_query] = ACTIONS(2570), - [anon_sym_QUERY] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2570), - [sym_optional_chain] = ACTIONS(2572), - [sym_static_chain] = ACTIONS(2572), - [anon_sym_AMP_AMP] = ACTIONS(2572), - [anon_sym_PIPE_PIPE] = ACTIONS(2572), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_GT_GT_GT] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2572), - [anon_sym_BSLASH] = ACTIONS(2570), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2572), - [anon_sym_LT_GT] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2572), - [aux_sym_binary_expression_token1] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2570), - [aux_sym_binary_expression_token2] = ACTIONS(2570), - [aux_sym_binary_expression_token3] = ACTIONS(2570), - [aux_sym_binary_expression_token4] = ACTIONS(2572), - [aux_sym_binary_expression_token5] = ACTIONS(2572), - [aux_sym_binary_expression_token6] = ACTIONS(2572), - [anon_sym_QMARK_QMARK] = ACTIONS(2572), - [anon_sym_BANG] = ACTIONS(2570), - [anon_sym_TILDE] = ACTIONS(2572), - [aux_sym_unary_operator_token1] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2570), - [aux_sym_number_token2] = ACTIONS(2570), - [anon_sym_This] = ACTIONS(2570), - [anon_sym_this] = ACTIONS(2570), - [anon_sym_THIS] = ACTIONS(2570), - [anon_sym_Super] = ACTIONS(2570), - [anon_sym_super] = ACTIONS(2570), - [anon_sym_SUPER] = ACTIONS(2570), - [anon_sym_True] = ACTIONS(2570), - [anon_sym_true] = ACTIONS(2570), - [anon_sym_TRUE] = ACTIONS(2570), - [anon_sym_False] = ACTIONS(2570), - [anon_sym_false] = ACTIONS(2570), - [anon_sym_FALSE] = ACTIONS(2570), - [anon_sym_Null] = ACTIONS(2570), - [anon_sym_null] = ACTIONS(2570), - [anon_sym_NULL] = ACTIONS(2570), - [anon_sym_Undefined] = ACTIONS(2570), - [anon_sym_undefined] = ACTIONS(2570), - [anon_sym_UNDEFINED] = ACTIONS(2570), - [anon_sym_get] = ACTIONS(2570), - [anon_sym_set] = ACTIONS(2570), - [anon_sym_POUND] = ACTIONS(2570), - [sym_hash_empty] = ACTIONS(2572), - [anon_sym_export] = ACTIONS(2570), - [anon_sym_QueryExecute] = ACTIONS(2570), - [anon_sym_queryexecute] = ACTIONS(2570), - [anon_sym_QUERYEXECUTE] = ACTIONS(2570), - [anon_sym_queryExecute] = ACTIONS(2570), - [anon_sym_BQUOTE] = ACTIONS(2572), - [anon_sym_Abstract] = ACTIONS(2570), - [anon_sym_abstract] = ACTIONS(2570), - [anon_sym_ABSTRACT] = ACTIONS(2570), - [anon_sym_Component] = ACTIONS(2570), - [anon_sym_component] = ACTIONS(2570), - [anon_sym_COMPONENT] = ACTIONS(2570), - [anon_sym_Debugger] = ACTIONS(2570), - [anon_sym_debugger] = ACTIONS(2570), - [anon_sym_DEBUGGER] = ACTIONS(2570), - [anon_sym_Final] = ACTIONS(2570), - [anon_sym_final] = ACTIONS(2570), - [anon_sym_FINAL] = ACTIONS(2570), - [anon_sym_Function] = ACTIONS(2570), - [anon_sym_function] = ACTIONS(2570), - [anon_sym_FUNCTION] = ACTIONS(2570), - [anon_sym_In] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [anon_sym_IN] = ACTIONS(2570), - [anon_sym_Include] = ACTIONS(2570), - [anon_sym_include] = ACTIONS(2570), - [anon_sym_INCLUDE] = ACTIONS(2570), - [anon_sym_InstanceOf] = ACTIONS(2570), - [anon_sym_instanceof] = ACTIONS(2570), - [anon_sym_INSTANCEOF] = ACTIONS(2570), - [anon_sym_instanceOf] = ACTIONS(2570), - [anon_sym_New] = ACTIONS(2570), - [anon_sym_new] = ACTIONS(2570), - [anon_sym_NEW] = ACTIONS(2570), - [anon_sym_Package] = ACTIONS(2570), - [anon_sym_package] = ACTIONS(2570), - [anon_sym_PACKAGE] = ACTIONS(2570), - [anon_sym_Private] = ACTIONS(2570), - [anon_sym_private] = ACTIONS(2570), - [anon_sym_PRIVATE] = ACTIONS(2570), - [anon_sym_Public] = ACTIONS(2570), - [anon_sym_public] = ACTIONS(2570), - [anon_sym_PUBLIC] = ACTIONS(2570), - [anon_sym_Remote] = ACTIONS(2570), - [anon_sym_remote] = ACTIONS(2570), - [anon_sym_REMOTE] = ACTIONS(2570), - [anon_sym_Static] = ACTIONS(2570), - [anon_sym_static] = ACTIONS(2570), - [anon_sym_STATIC] = ACTIONS(2570), - [sym__ternary_qmark] = ACTIONS(2572), - [sym__elvis_operator] = ACTIONS(2572), - [sym_logical_or] = ACTIONS(2572), - [sym__java_block_open] = ACTIONS(2572), - [sym__static_type_prefix] = ACTIONS(2572), + [STATE(739)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(725)] = { - [sym_identifier] = ACTIONS(2506), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2506), - [anon_sym_query] = ACTIONS(2506), - [anon_sym_QUERY] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2506), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_GT_GT_GT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2506), - [anon_sym_STAR_STAR] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2508), - [anon_sym_LT_GT] = ACTIONS(2508), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2508), - [aux_sym_binary_expression_token1] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2506), - [aux_sym_binary_expression_token2] = ACTIONS(2506), - [aux_sym_binary_expression_token3] = ACTIONS(2506), - [aux_sym_binary_expression_token4] = ACTIONS(2508), - [aux_sym_binary_expression_token5] = ACTIONS(2508), - [aux_sym_binary_expression_token6] = ACTIONS(2508), - [anon_sym_QMARK_QMARK] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2508), - [aux_sym_unary_operator_token1] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2506), - [aux_sym_number_token2] = ACTIONS(2506), - [anon_sym_This] = ACTIONS(2506), - [anon_sym_this] = ACTIONS(2506), - [anon_sym_THIS] = ACTIONS(2506), - [anon_sym_Super] = ACTIONS(2506), - [anon_sym_super] = ACTIONS(2506), - [anon_sym_SUPER] = ACTIONS(2506), - [anon_sym_True] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2506), - [anon_sym_TRUE] = ACTIONS(2506), - [anon_sym_False] = ACTIONS(2506), - [anon_sym_false] = ACTIONS(2506), - [anon_sym_FALSE] = ACTIONS(2506), - [anon_sym_Null] = ACTIONS(2506), - [anon_sym_null] = ACTIONS(2506), - [anon_sym_NULL] = ACTIONS(2506), - [anon_sym_Undefined] = ACTIONS(2506), - [anon_sym_undefined] = ACTIONS(2506), - [anon_sym_UNDEFINED] = ACTIONS(2506), - [anon_sym_get] = ACTIONS(2506), - [anon_sym_set] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2506), - [sym_hash_empty] = ACTIONS(2508), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_QueryExecute] = ACTIONS(2506), - [anon_sym_queryexecute] = ACTIONS(2506), - [anon_sym_QUERYEXECUTE] = ACTIONS(2506), - [anon_sym_queryExecute] = ACTIONS(2506), - [anon_sym_BQUOTE] = ACTIONS(2508), - [anon_sym_Abstract] = ACTIONS(2506), - [anon_sym_abstract] = ACTIONS(2506), - [anon_sym_ABSTRACT] = ACTIONS(2506), - [anon_sym_Component] = ACTIONS(2506), - [anon_sym_component] = ACTIONS(2506), - [anon_sym_COMPONENT] = ACTIONS(2506), - [anon_sym_Debugger] = ACTIONS(2506), - [anon_sym_debugger] = ACTIONS(2506), - [anon_sym_DEBUGGER] = ACTIONS(2506), - [anon_sym_Final] = ACTIONS(2506), - [anon_sym_final] = ACTIONS(2506), - [anon_sym_FINAL] = ACTIONS(2506), - [anon_sym_Function] = ACTIONS(2506), - [anon_sym_function] = ACTIONS(2506), - [anon_sym_FUNCTION] = ACTIONS(2506), - [anon_sym_In] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_IN] = ACTIONS(2506), - [anon_sym_Include] = ACTIONS(2506), - [anon_sym_include] = ACTIONS(2506), - [anon_sym_INCLUDE] = ACTIONS(2506), - [anon_sym_InstanceOf] = ACTIONS(2506), - [anon_sym_instanceof] = ACTIONS(2506), - [anon_sym_INSTANCEOF] = ACTIONS(2506), - [anon_sym_instanceOf] = ACTIONS(2506), - [anon_sym_New] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(2506), - [anon_sym_NEW] = ACTIONS(2506), - [anon_sym_Package] = ACTIONS(2506), - [anon_sym_package] = ACTIONS(2506), - [anon_sym_PACKAGE] = ACTIONS(2506), - [anon_sym_Private] = ACTIONS(2506), - [anon_sym_private] = ACTIONS(2506), - [anon_sym_PRIVATE] = ACTIONS(2506), - [anon_sym_Public] = ACTIONS(2506), - [anon_sym_public] = ACTIONS(2506), - [anon_sym_PUBLIC] = ACTIONS(2506), - [anon_sym_Remote] = ACTIONS(2506), - [anon_sym_remote] = ACTIONS(2506), - [anon_sym_REMOTE] = ACTIONS(2506), - [anon_sym_Static] = ACTIONS(2506), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_STATIC] = ACTIONS(2506), - [sym__ternary_qmark] = ACTIONS(2508), - [sym__elvis_operator] = ACTIONS(2508), - [sym_logical_or] = ACTIONS(2508), - [sym__java_block_open] = ACTIONS(2508), - [sym__static_type_prefix] = ACTIONS(2508), + [STATE(740)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(726)] = { - [sym_identifier] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_Query] = ACTIONS(3136), - [anon_sym_query] = ACTIONS(3136), - [anon_sym_QUERY] = ACTIONS(3136), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3138), - [aux_sym_unary_operator_token1] = ACTIONS(3136), + [STATE(741)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), [anon_sym_PLUS_PLUS] = ACTIONS(3138), [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3136), - [aux_sym_number_token2] = ACTIONS(3136), - [anon_sym_This] = ACTIONS(3136), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_THIS] = ACTIONS(3136), - [anon_sym_Super] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), - [anon_sym_SUPER] = ACTIONS(3136), - [anon_sym_True] = ACTIONS(3136), - [anon_sym_true] = ACTIONS(3136), - [anon_sym_TRUE] = ACTIONS(3136), - [anon_sym_False] = ACTIONS(3136), - [anon_sym_false] = ACTIONS(3136), - [anon_sym_FALSE] = ACTIONS(3136), - [anon_sym_Null] = ACTIONS(3136), - [anon_sym_null] = ACTIONS(3136), - [anon_sym_NULL] = ACTIONS(3136), - [anon_sym_Undefined] = ACTIONS(3136), - [anon_sym_undefined] = ACTIONS(3136), - [anon_sym_UNDEFINED] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_POUND] = ACTIONS(3136), - [sym_hash_empty] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_QueryExecute] = ACTIONS(3136), - [anon_sym_queryexecute] = ACTIONS(3136), - [anon_sym_QUERYEXECUTE] = ACTIONS(3136), - [anon_sym_queryExecute] = ACTIONS(3136), - [anon_sym_BQUOTE] = ACTIONS(3138), - [anon_sym_Abstract] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_ABSTRACT] = ACTIONS(3136), - [anon_sym_Component] = ACTIONS(3136), - [anon_sym_component] = ACTIONS(3136), - [anon_sym_COMPONENT] = ACTIONS(3136), - [anon_sym_Debugger] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_DEBUGGER] = ACTIONS(3136), - [anon_sym_Final] = ACTIONS(3136), - [anon_sym_final] = ACTIONS(3136), - [anon_sym_FINAL] = ACTIONS(3136), - [anon_sym_Function] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_FUNCTION] = ACTIONS(3136), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_Include] = ACTIONS(3136), - [anon_sym_include] = ACTIONS(3136), - [anon_sym_INCLUDE] = ACTIONS(3136), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [anon_sym_New] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_NEW] = ACTIONS(3136), - [anon_sym_Package] = ACTIONS(3136), - [anon_sym_package] = ACTIONS(3136), - [anon_sym_PACKAGE] = ACTIONS(3136), - [anon_sym_Private] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_PRIVATE] = ACTIONS(3136), - [anon_sym_Public] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_PUBLIC] = ACTIONS(3136), - [anon_sym_Remote] = ACTIONS(3136), - [anon_sym_remote] = ACTIONS(3136), - [anon_sym_REMOTE] = ACTIONS(3136), - [anon_sym_Static] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_STATIC] = ACTIONS(3136), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym__java_block_open] = ACTIONS(3138), - [sym__static_type_prefix] = ACTIONS(3138), - }, - [STATE(727)] = { - [sym_identifier] = ACTIONS(2498), - [anon_sym_DOT] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_Query] = ACTIONS(2498), - [anon_sym_query] = ACTIONS(2498), - [anon_sym_QUERY] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2498), - [sym_optional_chain] = ACTIONS(2500), - [sym_static_chain] = ACTIONS(2500), - [anon_sym_AMP_AMP] = ACTIONS(2500), - [anon_sym_PIPE_PIPE] = ACTIONS(2500), - [anon_sym_GT_GT] = ACTIONS(2498), - [anon_sym_GT_GT_GT] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_BSLASH] = ACTIONS(2498), - [anon_sym_STAR_STAR] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_LT_EQ] = ACTIONS(2500), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2500), - [anon_sym_LT_GT] = ACTIONS(2500), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2500), - [aux_sym_binary_expression_token1] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2498), - [aux_sym_binary_expression_token2] = ACTIONS(2498), - [aux_sym_binary_expression_token3] = ACTIONS(2498), - [aux_sym_binary_expression_token4] = ACTIONS(2500), - [aux_sym_binary_expression_token5] = ACTIONS(2500), - [aux_sym_binary_expression_token6] = ACTIONS(2500), - [anon_sym_QMARK_QMARK] = ACTIONS(2500), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2500), - [aux_sym_unary_operator_token1] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2498), - [aux_sym_number_token2] = ACTIONS(2498), - [anon_sym_This] = ACTIONS(2498), - [anon_sym_this] = ACTIONS(2498), - [anon_sym_THIS] = ACTIONS(2498), - [anon_sym_Super] = ACTIONS(2498), - [anon_sym_super] = ACTIONS(2498), - [anon_sym_SUPER] = ACTIONS(2498), - [anon_sym_True] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_TRUE] = ACTIONS(2498), - [anon_sym_False] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_FALSE] = ACTIONS(2498), - [anon_sym_Null] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2498), - [anon_sym_NULL] = ACTIONS(2498), - [anon_sym_Undefined] = ACTIONS(2498), - [anon_sym_undefined] = ACTIONS(2498), - [anon_sym_UNDEFINED] = ACTIONS(2498), - [anon_sym_get] = ACTIONS(2498), - [anon_sym_set] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(2498), - [sym_hash_empty] = ACTIONS(2500), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_QueryExecute] = ACTIONS(2498), - [anon_sym_queryexecute] = ACTIONS(2498), - [anon_sym_QUERYEXECUTE] = ACTIONS(2498), - [anon_sym_queryExecute] = ACTIONS(2498), - [anon_sym_BQUOTE] = ACTIONS(2500), - [anon_sym_Abstract] = ACTIONS(2498), - [anon_sym_abstract] = ACTIONS(2498), - [anon_sym_ABSTRACT] = ACTIONS(2498), - [anon_sym_Component] = ACTIONS(2498), - [anon_sym_component] = ACTIONS(2498), - [anon_sym_COMPONENT] = ACTIONS(2498), - [anon_sym_Debugger] = ACTIONS(2498), - [anon_sym_debugger] = ACTIONS(2498), - [anon_sym_DEBUGGER] = ACTIONS(2498), - [anon_sym_Final] = ACTIONS(2498), - [anon_sym_final] = ACTIONS(2498), - [anon_sym_FINAL] = ACTIONS(2498), - [anon_sym_Function] = ACTIONS(2498), - [anon_sym_function] = ACTIONS(2498), - [anon_sym_FUNCTION] = ACTIONS(2498), - [anon_sym_In] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_IN] = ACTIONS(2498), - [anon_sym_Include] = ACTIONS(2498), - [anon_sym_include] = ACTIONS(2498), - [anon_sym_INCLUDE] = ACTIONS(2498), - [anon_sym_InstanceOf] = ACTIONS(2498), - [anon_sym_instanceof] = ACTIONS(2498), - [anon_sym_INSTANCEOF] = ACTIONS(2498), - [anon_sym_instanceOf] = ACTIONS(2498), - [anon_sym_New] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(2498), - [anon_sym_NEW] = ACTIONS(2498), - [anon_sym_Package] = ACTIONS(2498), - [anon_sym_package] = ACTIONS(2498), - [anon_sym_PACKAGE] = ACTIONS(2498), - [anon_sym_Private] = ACTIONS(2498), - [anon_sym_private] = ACTIONS(2498), - [anon_sym_PRIVATE] = ACTIONS(2498), - [anon_sym_Public] = ACTIONS(2498), - [anon_sym_public] = ACTIONS(2498), - [anon_sym_PUBLIC] = ACTIONS(2498), - [anon_sym_Remote] = ACTIONS(2498), - [anon_sym_remote] = ACTIONS(2498), - [anon_sym_REMOTE] = ACTIONS(2498), - [anon_sym_Static] = ACTIONS(2498), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_STATIC] = ACTIONS(2498), - [sym__ternary_qmark] = ACTIONS(2500), - [sym__elvis_operator] = ACTIONS(2500), - [sym_logical_or] = ACTIONS(2500), - [sym__java_block_open] = ACTIONS(2500), - [sym__static_type_prefix] = ACTIONS(2500), - }, - [STATE(728)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_Query] = ACTIONS(2442), - [anon_sym_query] = ACTIONS(2442), - [anon_sym_QUERY] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2442), - [sym_optional_chain] = ACTIONS(2444), - [sym_static_chain] = ACTIONS(2444), - [anon_sym_AMP_AMP] = ACTIONS(2444), - [anon_sym_PIPE_PIPE] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_BSLASH] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2444), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), - [anon_sym_LT_GT] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), - [aux_sym_binary_expression_token1] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2442), - [aux_sym_binary_expression_token2] = ACTIONS(2442), - [aux_sym_binary_expression_token3] = ACTIONS(2442), - [aux_sym_binary_expression_token4] = ACTIONS(2444), - [aux_sym_binary_expression_token5] = ACTIONS(2444), - [aux_sym_binary_expression_token6] = ACTIONS(2444), - [anon_sym_QMARK_QMARK] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2444), - [aux_sym_unary_operator_token1] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2442), - [aux_sym_number_token2] = ACTIONS(2442), - [anon_sym_This] = ACTIONS(2442), - [anon_sym_this] = ACTIONS(2442), - [anon_sym_THIS] = ACTIONS(2442), - [anon_sym_Super] = ACTIONS(2442), - [anon_sym_super] = ACTIONS(2442), - [anon_sym_SUPER] = ACTIONS(2442), - [anon_sym_True] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_TRUE] = ACTIONS(2442), - [anon_sym_False] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_FALSE] = ACTIONS(2442), - [anon_sym_Null] = ACTIONS(2442), - [anon_sym_null] = ACTIONS(2442), - [anon_sym_NULL] = ACTIONS(2442), - [anon_sym_Undefined] = ACTIONS(2442), - [anon_sym_undefined] = ACTIONS(2442), - [anon_sym_UNDEFINED] = ACTIONS(2442), - [anon_sym_get] = ACTIONS(2442), - [anon_sym_set] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(2442), - [sym_hash_empty] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_QueryExecute] = ACTIONS(2442), - [anon_sym_queryexecute] = ACTIONS(2442), - [anon_sym_QUERYEXECUTE] = ACTIONS(2442), - [anon_sym_queryExecute] = ACTIONS(2442), - [anon_sym_BQUOTE] = ACTIONS(2444), - [anon_sym_Abstract] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_ABSTRACT] = ACTIONS(2442), - [anon_sym_Component] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_COMPONENT] = ACTIONS(2442), - [anon_sym_Debugger] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_DEBUGGER] = ACTIONS(2442), - [anon_sym_Final] = ACTIONS(2442), - [anon_sym_final] = ACTIONS(2442), - [anon_sym_FINAL] = ACTIONS(2442), - [anon_sym_Function] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_FUNCTION] = ACTIONS(2442), - [anon_sym_In] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_IN] = ACTIONS(2442), - [anon_sym_Include] = ACTIONS(2442), - [anon_sym_include] = ACTIONS(2442), - [anon_sym_INCLUDE] = ACTIONS(2442), - [anon_sym_InstanceOf] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_INSTANCEOF] = ACTIONS(2442), - [anon_sym_instanceOf] = ACTIONS(2442), - [anon_sym_New] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_NEW] = ACTIONS(2442), - [anon_sym_Package] = ACTIONS(2442), - [anon_sym_package] = ACTIONS(2442), - [anon_sym_PACKAGE] = ACTIONS(2442), - [anon_sym_Private] = ACTIONS(2442), - [anon_sym_private] = ACTIONS(2442), - [anon_sym_PRIVATE] = ACTIONS(2442), - [anon_sym_Public] = ACTIONS(2442), - [anon_sym_public] = ACTIONS(2442), - [anon_sym_PUBLIC] = ACTIONS(2442), - [anon_sym_Remote] = ACTIONS(2442), - [anon_sym_remote] = ACTIONS(2442), - [anon_sym_REMOTE] = ACTIONS(2442), - [anon_sym_Static] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_STATIC] = ACTIONS(2442), - [sym__ternary_qmark] = ACTIONS(2444), - [sym__elvis_operator] = ACTIONS(2444), - [sym_logical_or] = ACTIONS(2444), - [sym__java_block_open] = ACTIONS(2444), - [sym__static_type_prefix] = ACTIONS(2444), - }, - [STATE(729)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(730)] = { - [sym_identifier] = ACTIONS(2510), - [anon_sym_DOT] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2512), - [anon_sym_Query] = ACTIONS(2510), - [anon_sym_query] = ACTIONS(2510), - [anon_sym_QUERY] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2510), - [sym_optional_chain] = ACTIONS(2512), - [sym_static_chain] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_PIPE_PIPE] = ACTIONS(2512), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_GT_GT_GT] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_CARET] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2512), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_STAR_STAR] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2512), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2512), - [anon_sym_LT_GT] = ACTIONS(2512), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2512), - [aux_sym_binary_expression_token1] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2512), - [anon_sym_GT] = ACTIONS(2510), - [aux_sym_binary_expression_token2] = ACTIONS(2510), - [aux_sym_binary_expression_token3] = ACTIONS(2510), - [aux_sym_binary_expression_token4] = ACTIONS(2512), - [aux_sym_binary_expression_token5] = ACTIONS(2512), - [aux_sym_binary_expression_token6] = ACTIONS(2512), - [anon_sym_QMARK_QMARK] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2512), - [aux_sym_unary_operator_token1] = ACTIONS(2510), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2510), - [aux_sym_number_token2] = ACTIONS(2510), - [anon_sym_This] = ACTIONS(2510), - [anon_sym_this] = ACTIONS(2510), - [anon_sym_THIS] = ACTIONS(2510), - [anon_sym_Super] = ACTIONS(2510), - [anon_sym_super] = ACTIONS(2510), - [anon_sym_SUPER] = ACTIONS(2510), - [anon_sym_True] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_TRUE] = ACTIONS(2510), - [anon_sym_False] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_FALSE] = ACTIONS(2510), - [anon_sym_Null] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2510), - [anon_sym_NULL] = ACTIONS(2510), - [anon_sym_Undefined] = ACTIONS(2510), - [anon_sym_undefined] = ACTIONS(2510), - [anon_sym_UNDEFINED] = ACTIONS(2510), - [anon_sym_get] = ACTIONS(2510), - [anon_sym_set] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(2510), - [sym_hash_empty] = ACTIONS(2512), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_QueryExecute] = ACTIONS(2510), - [anon_sym_queryexecute] = ACTIONS(2510), - [anon_sym_QUERYEXECUTE] = ACTIONS(2510), - [anon_sym_queryExecute] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_Abstract] = ACTIONS(2510), - [anon_sym_abstract] = ACTIONS(2510), - [anon_sym_ABSTRACT] = ACTIONS(2510), - [anon_sym_Component] = ACTIONS(2510), - [anon_sym_component] = ACTIONS(2510), - [anon_sym_COMPONENT] = ACTIONS(2510), - [anon_sym_Debugger] = ACTIONS(2510), - [anon_sym_debugger] = ACTIONS(2510), - [anon_sym_DEBUGGER] = ACTIONS(2510), - [anon_sym_Final] = ACTIONS(2510), - [anon_sym_final] = ACTIONS(2510), - [anon_sym_FINAL] = ACTIONS(2510), - [anon_sym_Function] = ACTIONS(2510), - [anon_sym_function] = ACTIONS(2510), - [anon_sym_FUNCTION] = ACTIONS(2510), - [anon_sym_In] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_IN] = ACTIONS(2510), - [anon_sym_Include] = ACTIONS(2510), - [anon_sym_include] = ACTIONS(2510), - [anon_sym_INCLUDE] = ACTIONS(2510), - [anon_sym_InstanceOf] = ACTIONS(2510), - [anon_sym_instanceof] = ACTIONS(2510), - [anon_sym_INSTANCEOF] = ACTIONS(2510), - [anon_sym_instanceOf] = ACTIONS(2510), - [anon_sym_New] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_NEW] = ACTIONS(2510), - [anon_sym_Package] = ACTIONS(2510), - [anon_sym_package] = ACTIONS(2510), - [anon_sym_PACKAGE] = ACTIONS(2510), - [anon_sym_Private] = ACTIONS(2510), - [anon_sym_private] = ACTIONS(2510), - [anon_sym_PRIVATE] = ACTIONS(2510), - [anon_sym_Public] = ACTIONS(2510), - [anon_sym_public] = ACTIONS(2510), - [anon_sym_PUBLIC] = ACTIONS(2510), - [anon_sym_Remote] = ACTIONS(2510), - [anon_sym_remote] = ACTIONS(2510), - [anon_sym_REMOTE] = ACTIONS(2510), - [anon_sym_Static] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_STATIC] = ACTIONS(2510), - [sym__ternary_qmark] = ACTIONS(2512), - [sym__elvis_operator] = ACTIONS(2512), - [sym_logical_or] = ACTIONS(2512), - [sym__java_block_open] = ACTIONS(2512), - [sym__static_type_prefix] = ACTIONS(2512), - }, - [STATE(731)] = { - [sym_identifier] = ACTIONS(2578), - [anon_sym_DOT] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_let] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_Query] = ACTIONS(2578), - [anon_sym_query] = ACTIONS(2578), - [anon_sym_QUERY] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2578), - [sym_optional_chain] = ACTIONS(2580), - [sym_static_chain] = ACTIONS(2580), - [anon_sym_AMP_AMP] = ACTIONS(2580), - [anon_sym_PIPE_PIPE] = ACTIONS(2580), - [anon_sym_GT_GT] = ACTIONS(2578), - [anon_sym_GT_GT_GT] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_CARET] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2580), - [anon_sym_BSLASH] = ACTIONS(2578), - [anon_sym_STAR_STAR] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_LT_EQ] = ACTIONS(2580), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2580), - [anon_sym_LT_GT] = ACTIONS(2580), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2580), - [aux_sym_binary_expression_token1] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2580), - [anon_sym_GT] = ACTIONS(2578), - [aux_sym_binary_expression_token2] = ACTIONS(2578), - [aux_sym_binary_expression_token3] = ACTIONS(2578), - [aux_sym_binary_expression_token4] = ACTIONS(2580), - [aux_sym_binary_expression_token5] = ACTIONS(2580), - [aux_sym_binary_expression_token6] = ACTIONS(2580), - [anon_sym_QMARK_QMARK] = ACTIONS(2580), - [anon_sym_BANG] = ACTIONS(2578), - [anon_sym_TILDE] = ACTIONS(2580), - [aux_sym_unary_operator_token1] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2578), - [aux_sym_number_token2] = ACTIONS(2578), - [anon_sym_This] = ACTIONS(2578), - [anon_sym_this] = ACTIONS(2578), - [anon_sym_THIS] = ACTIONS(2578), - [anon_sym_Super] = ACTIONS(2578), - [anon_sym_super] = ACTIONS(2578), - [anon_sym_SUPER] = ACTIONS(2578), - [anon_sym_True] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2578), - [anon_sym_TRUE] = ACTIONS(2578), - [anon_sym_False] = ACTIONS(2578), - [anon_sym_false] = ACTIONS(2578), - [anon_sym_FALSE] = ACTIONS(2578), - [anon_sym_Null] = ACTIONS(2578), - [anon_sym_null] = ACTIONS(2578), - [anon_sym_NULL] = ACTIONS(2578), - [anon_sym_Undefined] = ACTIONS(2578), - [anon_sym_undefined] = ACTIONS(2578), - [anon_sym_UNDEFINED] = ACTIONS(2578), - [anon_sym_get] = ACTIONS(2578), - [anon_sym_set] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(2578), - [sym_hash_empty] = ACTIONS(2580), - [anon_sym_export] = ACTIONS(2578), - [anon_sym_QueryExecute] = ACTIONS(2578), - [anon_sym_queryexecute] = ACTIONS(2578), - [anon_sym_QUERYEXECUTE] = ACTIONS(2578), - [anon_sym_queryExecute] = ACTIONS(2578), - [anon_sym_BQUOTE] = ACTIONS(2580), - [anon_sym_Abstract] = ACTIONS(2578), - [anon_sym_abstract] = ACTIONS(2578), - [anon_sym_ABSTRACT] = ACTIONS(2578), - [anon_sym_Component] = ACTIONS(2578), - [anon_sym_component] = ACTIONS(2578), - [anon_sym_COMPONENT] = ACTIONS(2578), - [anon_sym_Debugger] = ACTIONS(2578), - [anon_sym_debugger] = ACTIONS(2578), - [anon_sym_DEBUGGER] = ACTIONS(2578), - [anon_sym_Final] = ACTIONS(2578), - [anon_sym_final] = ACTIONS(2578), - [anon_sym_FINAL] = ACTIONS(2578), - [anon_sym_Function] = ACTIONS(2578), - [anon_sym_function] = ACTIONS(2578), - [anon_sym_FUNCTION] = ACTIONS(2578), - [anon_sym_In] = ACTIONS(2578), - [anon_sym_in] = ACTIONS(2578), - [anon_sym_IN] = ACTIONS(2578), - [anon_sym_Include] = ACTIONS(2578), - [anon_sym_include] = ACTIONS(2578), - [anon_sym_INCLUDE] = ACTIONS(2578), - [anon_sym_InstanceOf] = ACTIONS(2578), - [anon_sym_instanceof] = ACTIONS(2578), - [anon_sym_INSTANCEOF] = ACTIONS(2578), - [anon_sym_instanceOf] = ACTIONS(2578), - [anon_sym_New] = ACTIONS(2578), - [anon_sym_new] = ACTIONS(2578), - [anon_sym_NEW] = ACTIONS(2578), - [anon_sym_Package] = ACTIONS(2578), - [anon_sym_package] = ACTIONS(2578), - [anon_sym_PACKAGE] = ACTIONS(2578), - [anon_sym_Private] = ACTIONS(2578), - [anon_sym_private] = ACTIONS(2578), - [anon_sym_PRIVATE] = ACTIONS(2578), - [anon_sym_Public] = ACTIONS(2578), - [anon_sym_public] = ACTIONS(2578), - [anon_sym_PUBLIC] = ACTIONS(2578), - [anon_sym_Remote] = ACTIONS(2578), - [anon_sym_remote] = ACTIONS(2578), - [anon_sym_REMOTE] = ACTIONS(2578), - [anon_sym_Static] = ACTIONS(2578), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_STATIC] = ACTIONS(2578), - [sym__ternary_qmark] = ACTIONS(2580), - [sym__elvis_operator] = ACTIONS(2580), - [sym_logical_or] = ACTIONS(2580), - [sym__java_block_open] = ACTIONS(2580), - [sym__static_type_prefix] = ACTIONS(2580), - }, - [STATE(732)] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_Query] = ACTIONS(2336), - [anon_sym_query] = ACTIONS(2336), - [anon_sym_QUERY] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2336), - [sym_optional_chain] = ACTIONS(2338), - [sym_static_chain] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_BSLASH] = ACTIONS(2336), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2336), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_LT_GT] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2336), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [aux_sym_binary_expression_token1] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [aux_sym_binary_expression_token2] = ACTIONS(2336), - [aux_sym_binary_expression_token3] = ACTIONS(2336), - [aux_sym_binary_expression_token4] = ACTIONS(2338), - [aux_sym_binary_expression_token5] = ACTIONS(2338), - [aux_sym_binary_expression_token6] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2338), - [aux_sym_unary_operator_token1] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2336), - [aux_sym_number_token2] = ACTIONS(2336), - [anon_sym_This] = ACTIONS(2336), - [anon_sym_this] = ACTIONS(2336), - [anon_sym_THIS] = ACTIONS(2336), - [anon_sym_Super] = ACTIONS(2336), - [anon_sym_super] = ACTIONS(2336), - [anon_sym_SUPER] = ACTIONS(2336), - [anon_sym_True] = ACTIONS(2336), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_TRUE] = ACTIONS(2336), - [anon_sym_False] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [anon_sym_FALSE] = ACTIONS(2336), - [anon_sym_Null] = ACTIONS(2336), - [anon_sym_null] = ACTIONS(2336), - [anon_sym_NULL] = ACTIONS(2336), - [anon_sym_Undefined] = ACTIONS(2336), - [anon_sym_undefined] = ACTIONS(2336), - [anon_sym_UNDEFINED] = ACTIONS(2336), - [anon_sym_get] = ACTIONS(2336), - [anon_sym_set] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2336), - [sym_hash_empty] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_QueryExecute] = ACTIONS(2336), - [anon_sym_queryexecute] = ACTIONS(2336), - [anon_sym_QUERYEXECUTE] = ACTIONS(2336), - [anon_sym_queryExecute] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_Abstract] = ACTIONS(2336), - [anon_sym_abstract] = ACTIONS(2336), - [anon_sym_ABSTRACT] = ACTIONS(2336), - [anon_sym_Component] = ACTIONS(2336), - [anon_sym_component] = ACTIONS(2336), - [anon_sym_COMPONENT] = ACTIONS(2336), - [anon_sym_Debugger] = ACTIONS(2336), - [anon_sym_debugger] = ACTIONS(2336), - [anon_sym_DEBUGGER] = ACTIONS(2336), - [anon_sym_Final] = ACTIONS(2336), - [anon_sym_final] = ACTIONS(2336), - [anon_sym_FINAL] = ACTIONS(2336), - [anon_sym_Function] = ACTIONS(2336), - [anon_sym_function] = ACTIONS(2336), - [anon_sym_FUNCTION] = ACTIONS(2336), - [anon_sym_In] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_IN] = ACTIONS(2336), - [anon_sym_Include] = ACTIONS(2336), - [anon_sym_include] = ACTIONS(2336), - [anon_sym_INCLUDE] = ACTIONS(2336), - [anon_sym_InstanceOf] = ACTIONS(2336), - [anon_sym_instanceof] = ACTIONS(2336), - [anon_sym_INSTANCEOF] = ACTIONS(2336), - [anon_sym_instanceOf] = ACTIONS(2336), - [anon_sym_New] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_NEW] = ACTIONS(2336), - [anon_sym_Package] = ACTIONS(2336), - [anon_sym_package] = ACTIONS(2336), - [anon_sym_PACKAGE] = ACTIONS(2336), - [anon_sym_Private] = ACTIONS(2336), - [anon_sym_private] = ACTIONS(2336), - [anon_sym_PRIVATE] = ACTIONS(2336), - [anon_sym_Public] = ACTIONS(2336), - [anon_sym_public] = ACTIONS(2336), - [anon_sym_PUBLIC] = ACTIONS(2336), - [anon_sym_Remote] = ACTIONS(2336), - [anon_sym_remote] = ACTIONS(2336), - [anon_sym_REMOTE] = ACTIONS(2336), - [anon_sym_Static] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_STATIC] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2338), - [sym__elvis_operator] = ACTIONS(2338), - [sym_logical_or] = ACTIONS(2338), - [sym__java_block_open] = ACTIONS(2338), - [sym__static_type_prefix] = ACTIONS(2338), - }, - [STATE(733)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(734)] = { - [sym_identifier] = ACTIONS(2478), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_Query] = ACTIONS(2478), - [anon_sym_query] = ACTIONS(2478), - [anon_sym_QUERY] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2478), - [sym_optional_chain] = ACTIONS(2480), - [sym_static_chain] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_BSLASH] = ACTIONS(2478), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_LT_GT] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [aux_sym_binary_expression_token1] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2478), - [aux_sym_binary_expression_token2] = ACTIONS(2478), - [aux_sym_binary_expression_token3] = ACTIONS(2478), - [aux_sym_binary_expression_token4] = ACTIONS(2480), - [aux_sym_binary_expression_token5] = ACTIONS(2480), - [aux_sym_binary_expression_token6] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2480), - [aux_sym_unary_operator_token1] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2478), - [aux_sym_number_token2] = ACTIONS(2478), - [anon_sym_This] = ACTIONS(2478), - [anon_sym_this] = ACTIONS(2478), - [anon_sym_THIS] = ACTIONS(2478), - [anon_sym_Super] = ACTIONS(2478), - [anon_sym_super] = ACTIONS(2478), - [anon_sym_SUPER] = ACTIONS(2478), - [anon_sym_True] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2478), - [anon_sym_TRUE] = ACTIONS(2478), - [anon_sym_False] = ACTIONS(2478), - [anon_sym_false] = ACTIONS(2478), - [anon_sym_FALSE] = ACTIONS(2478), - [anon_sym_Null] = ACTIONS(2478), - [anon_sym_null] = ACTIONS(2478), - [anon_sym_NULL] = ACTIONS(2478), - [anon_sym_Undefined] = ACTIONS(2478), - [anon_sym_undefined] = ACTIONS(2478), - [anon_sym_UNDEFINED] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_POUND] = ACTIONS(2478), - [sym_hash_empty] = ACTIONS(2480), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_QueryExecute] = ACTIONS(2478), - [anon_sym_queryexecute] = ACTIONS(2478), - [anon_sym_QUERYEXECUTE] = ACTIONS(2478), - [anon_sym_queryExecute] = ACTIONS(2478), - [anon_sym_BQUOTE] = ACTIONS(2480), - [anon_sym_Abstract] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_ABSTRACT] = ACTIONS(2478), - [anon_sym_Component] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_COMPONENT] = ACTIONS(2478), - [anon_sym_Debugger] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_DEBUGGER] = ACTIONS(2478), - [anon_sym_Final] = ACTIONS(2478), - [anon_sym_final] = ACTIONS(2478), - [anon_sym_FINAL] = ACTIONS(2478), - [anon_sym_Function] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_FUNCTION] = ACTIONS(2478), - [anon_sym_In] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_IN] = ACTIONS(2478), - [anon_sym_Include] = ACTIONS(2478), - [anon_sym_include] = ACTIONS(2478), - [anon_sym_INCLUDE] = ACTIONS(2478), - [anon_sym_InstanceOf] = ACTIONS(2478), - [anon_sym_instanceof] = ACTIONS(2478), - [anon_sym_INSTANCEOF] = ACTIONS(2478), - [anon_sym_instanceOf] = ACTIONS(2478), - [anon_sym_New] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_NEW] = ACTIONS(2478), - [anon_sym_Package] = ACTIONS(2478), - [anon_sym_package] = ACTIONS(2478), - [anon_sym_PACKAGE] = ACTIONS(2478), - [anon_sym_Private] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_PRIVATE] = ACTIONS(2478), - [anon_sym_Public] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_PUBLIC] = ACTIONS(2478), - [anon_sym_Remote] = ACTIONS(2478), - [anon_sym_remote] = ACTIONS(2478), - [anon_sym_REMOTE] = ACTIONS(2478), - [anon_sym_Static] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_STATIC] = ACTIONS(2478), - [sym__ternary_qmark] = ACTIONS(2480), - [sym__elvis_operator] = ACTIONS(2480), - [sym_logical_or] = ACTIONS(2480), - [sym__java_block_open] = ACTIONS(2480), - [sym__static_type_prefix] = ACTIONS(2480), - }, - [STATE(735)] = { - [sym_identifier] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2516), - [anon_sym_Query] = ACTIONS(2514), - [anon_sym_query] = ACTIONS(2514), - [anon_sym_QUERY] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2514), - [sym_optional_chain] = ACTIONS(2516), - [sym_static_chain] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_GT_GT_GT] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_CARET] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2516), - [anon_sym_BSLASH] = ACTIONS(2514), - [anon_sym_STAR_STAR] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2516), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2516), - [anon_sym_LT_GT] = ACTIONS(2516), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2516), - [aux_sym_binary_expression_token1] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2516), - [anon_sym_GT] = ACTIONS(2514), - [aux_sym_binary_expression_token2] = ACTIONS(2514), - [aux_sym_binary_expression_token3] = ACTIONS(2514), - [aux_sym_binary_expression_token4] = ACTIONS(2516), - [aux_sym_binary_expression_token5] = ACTIONS(2516), - [aux_sym_binary_expression_token6] = ACTIONS(2516), - [anon_sym_QMARK_QMARK] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_TILDE] = ACTIONS(2516), - [aux_sym_unary_operator_token1] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2516), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2514), - [aux_sym_number_token2] = ACTIONS(2514), - [anon_sym_This] = ACTIONS(2514), - [anon_sym_this] = ACTIONS(2514), - [anon_sym_THIS] = ACTIONS(2514), - [anon_sym_Super] = ACTIONS(2514), - [anon_sym_super] = ACTIONS(2514), - [anon_sym_SUPER] = ACTIONS(2514), - [anon_sym_True] = ACTIONS(2514), - [anon_sym_true] = ACTIONS(2514), - [anon_sym_TRUE] = ACTIONS(2514), - [anon_sym_False] = ACTIONS(2514), - [anon_sym_false] = ACTIONS(2514), - [anon_sym_FALSE] = ACTIONS(2514), - [anon_sym_Null] = ACTIONS(2514), - [anon_sym_null] = ACTIONS(2514), - [anon_sym_NULL] = ACTIONS(2514), - [anon_sym_Undefined] = ACTIONS(2514), - [anon_sym_undefined] = ACTIONS(2514), - [anon_sym_UNDEFINED] = ACTIONS(2514), - [anon_sym_get] = ACTIONS(2514), - [anon_sym_set] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(2514), - [sym_hash_empty] = ACTIONS(2516), - [anon_sym_export] = ACTIONS(2514), - [anon_sym_QueryExecute] = ACTIONS(2514), - [anon_sym_queryexecute] = ACTIONS(2514), - [anon_sym_QUERYEXECUTE] = ACTIONS(2514), - [anon_sym_queryExecute] = ACTIONS(2514), - [anon_sym_BQUOTE] = ACTIONS(2516), - [anon_sym_Abstract] = ACTIONS(2514), - [anon_sym_abstract] = ACTIONS(2514), - [anon_sym_ABSTRACT] = ACTIONS(2514), - [anon_sym_Component] = ACTIONS(2514), - [anon_sym_component] = ACTIONS(2514), - [anon_sym_COMPONENT] = ACTIONS(2514), - [anon_sym_Debugger] = ACTIONS(2514), - [anon_sym_debugger] = ACTIONS(2514), - [anon_sym_DEBUGGER] = ACTIONS(2514), - [anon_sym_Final] = ACTIONS(2514), - [anon_sym_final] = ACTIONS(2514), - [anon_sym_FINAL] = ACTIONS(2514), - [anon_sym_Function] = ACTIONS(2514), - [anon_sym_function] = ACTIONS(2514), - [anon_sym_FUNCTION] = ACTIONS(2514), - [anon_sym_In] = ACTIONS(2514), - [anon_sym_in] = ACTIONS(2514), - [anon_sym_IN] = ACTIONS(2514), - [anon_sym_Include] = ACTIONS(2514), - [anon_sym_include] = ACTIONS(2514), - [anon_sym_INCLUDE] = ACTIONS(2514), - [anon_sym_InstanceOf] = ACTIONS(2514), - [anon_sym_instanceof] = ACTIONS(2514), - [anon_sym_INSTANCEOF] = ACTIONS(2514), - [anon_sym_instanceOf] = ACTIONS(2514), - [anon_sym_New] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_NEW] = ACTIONS(2514), - [anon_sym_Package] = ACTIONS(2514), - [anon_sym_package] = ACTIONS(2514), - [anon_sym_PACKAGE] = ACTIONS(2514), - [anon_sym_Private] = ACTIONS(2514), - [anon_sym_private] = ACTIONS(2514), - [anon_sym_PRIVATE] = ACTIONS(2514), - [anon_sym_Public] = ACTIONS(2514), - [anon_sym_public] = ACTIONS(2514), - [anon_sym_PUBLIC] = ACTIONS(2514), - [anon_sym_Remote] = ACTIONS(2514), - [anon_sym_remote] = ACTIONS(2514), - [anon_sym_REMOTE] = ACTIONS(2514), - [anon_sym_Static] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_STATIC] = ACTIONS(2514), - [sym__ternary_qmark] = ACTIONS(2516), - [sym__elvis_operator] = ACTIONS(2516), - [sym_logical_or] = ACTIONS(2516), - [sym__java_block_open] = ACTIONS(2516), - [sym__static_type_prefix] = ACTIONS(2516), - }, - [STATE(736)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_Query] = ACTIONS(2418), - [anon_sym_query] = ACTIONS(2418), - [anon_sym_QUERY] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2418), - [sym_optional_chain] = ACTIONS(2420), - [sym_static_chain] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2420), - [anon_sym_BSLASH] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), - [anon_sym_LT_GT] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), - [aux_sym_binary_expression_token1] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_GT] = ACTIONS(2418), - [aux_sym_binary_expression_token2] = ACTIONS(2418), - [aux_sym_binary_expression_token3] = ACTIONS(2418), - [aux_sym_binary_expression_token4] = ACTIONS(2420), - [aux_sym_binary_expression_token5] = ACTIONS(2420), - [aux_sym_binary_expression_token6] = ACTIONS(2420), - [anon_sym_QMARK_QMARK] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2420), - [aux_sym_unary_operator_token1] = ACTIONS(2418), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DQUOTE] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2418), - [aux_sym_number_token2] = ACTIONS(2418), - [anon_sym_This] = ACTIONS(2418), - [anon_sym_this] = ACTIONS(2418), - [anon_sym_THIS] = ACTIONS(2418), - [anon_sym_Super] = ACTIONS(2418), - [anon_sym_super] = ACTIONS(2418), - [anon_sym_SUPER] = ACTIONS(2418), - [anon_sym_True] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_TRUE] = ACTIONS(2418), - [anon_sym_False] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_FALSE] = ACTIONS(2418), - [anon_sym_Null] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2418), - [anon_sym_Undefined] = ACTIONS(2418), - [anon_sym_undefined] = ACTIONS(2418), - [anon_sym_UNDEFINED] = ACTIONS(2418), - [anon_sym_get] = ACTIONS(2418), - [anon_sym_set] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2418), - [sym_hash_empty] = ACTIONS(2420), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_QueryExecute] = ACTIONS(2418), - [anon_sym_queryexecute] = ACTIONS(2418), - [anon_sym_QUERYEXECUTE] = ACTIONS(2418), - [anon_sym_queryExecute] = ACTIONS(2418), - [anon_sym_BQUOTE] = ACTIONS(2420), - [anon_sym_Abstract] = ACTIONS(2418), - [anon_sym_abstract] = ACTIONS(2418), - [anon_sym_ABSTRACT] = ACTIONS(2418), - [anon_sym_Component] = ACTIONS(2418), - [anon_sym_component] = ACTIONS(2418), - [anon_sym_COMPONENT] = ACTIONS(2418), - [anon_sym_Debugger] = ACTIONS(2418), - [anon_sym_debugger] = ACTIONS(2418), - [anon_sym_DEBUGGER] = ACTIONS(2418), - [anon_sym_Final] = ACTIONS(2418), - [anon_sym_final] = ACTIONS(2418), - [anon_sym_FINAL] = ACTIONS(2418), - [anon_sym_Function] = ACTIONS(2418), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_FUNCTION] = ACTIONS(2418), - [anon_sym_In] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_IN] = ACTIONS(2418), - [anon_sym_Include] = ACTIONS(2418), - [anon_sym_include] = ACTIONS(2418), - [anon_sym_INCLUDE] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_INSTANCEOF] = ACTIONS(2418), - [anon_sym_instanceOf] = ACTIONS(2418), - [anon_sym_New] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2418), - [anon_sym_NEW] = ACTIONS(2418), - [anon_sym_Package] = ACTIONS(2418), - [anon_sym_package] = ACTIONS(2418), - [anon_sym_PACKAGE] = ACTIONS(2418), - [anon_sym_Private] = ACTIONS(2418), - [anon_sym_private] = ACTIONS(2418), - [anon_sym_PRIVATE] = ACTIONS(2418), - [anon_sym_Public] = ACTIONS(2418), - [anon_sym_public] = ACTIONS(2418), - [anon_sym_PUBLIC] = ACTIONS(2418), - [anon_sym_Remote] = ACTIONS(2418), - [anon_sym_remote] = ACTIONS(2418), - [anon_sym_REMOTE] = ACTIONS(2418), - [anon_sym_Static] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_STATIC] = ACTIONS(2418), - [sym__ternary_qmark] = ACTIONS(2420), - [sym__elvis_operator] = ACTIONS(2420), - [sym_logical_or] = ACTIONS(2420), - [sym__java_block_open] = ACTIONS(2420), - [sym__static_type_prefix] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(737)] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_DOT] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_Query] = ACTIONS(2518), - [anon_sym_query] = ACTIONS(2518), - [anon_sym_QUERY] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2518), - [sym_optional_chain] = ACTIONS(2520), - [sym_static_chain] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_GT_GT_GT] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_BSLASH] = ACTIONS(2518), - [anon_sym_STAR_STAR] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2520), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2520), - [anon_sym_LT_GT] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2520), - [aux_sym_binary_expression_token1] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [aux_sym_binary_expression_token2] = ACTIONS(2518), - [aux_sym_binary_expression_token3] = ACTIONS(2518), - [aux_sym_binary_expression_token4] = ACTIONS(2520), - [aux_sym_binary_expression_token5] = ACTIONS(2520), - [aux_sym_binary_expression_token6] = ACTIONS(2520), - [anon_sym_QMARK_QMARK] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_unary_operator_token1] = ACTIONS(2518), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2518), - [aux_sym_number_token2] = ACTIONS(2518), - [anon_sym_This] = ACTIONS(2518), - [anon_sym_this] = ACTIONS(2518), - [anon_sym_THIS] = ACTIONS(2518), - [anon_sym_Super] = ACTIONS(2518), - [anon_sym_super] = ACTIONS(2518), - [anon_sym_SUPER] = ACTIONS(2518), - [anon_sym_True] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2518), - [anon_sym_TRUE] = ACTIONS(2518), - [anon_sym_False] = ACTIONS(2518), - [anon_sym_false] = ACTIONS(2518), - [anon_sym_FALSE] = ACTIONS(2518), - [anon_sym_Null] = ACTIONS(2518), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_NULL] = ACTIONS(2518), - [anon_sym_Undefined] = ACTIONS(2518), - [anon_sym_undefined] = ACTIONS(2518), - [anon_sym_UNDEFINED] = ACTIONS(2518), - [anon_sym_get] = ACTIONS(2518), - [anon_sym_set] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [sym_hash_empty] = ACTIONS(2520), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_QueryExecute] = ACTIONS(2518), - [anon_sym_queryexecute] = ACTIONS(2518), - [anon_sym_QUERYEXECUTE] = ACTIONS(2518), - [anon_sym_queryExecute] = ACTIONS(2518), - [anon_sym_BQUOTE] = ACTIONS(2520), - [anon_sym_Abstract] = ACTIONS(2518), - [anon_sym_abstract] = ACTIONS(2518), - [anon_sym_ABSTRACT] = ACTIONS(2518), - [anon_sym_Component] = ACTIONS(2518), - [anon_sym_component] = ACTIONS(2518), - [anon_sym_COMPONENT] = ACTIONS(2518), - [anon_sym_Debugger] = ACTIONS(2518), - [anon_sym_debugger] = ACTIONS(2518), - [anon_sym_DEBUGGER] = ACTIONS(2518), - [anon_sym_Final] = ACTIONS(2518), - [anon_sym_final] = ACTIONS(2518), - [anon_sym_FINAL] = ACTIONS(2518), - [anon_sym_Function] = ACTIONS(2518), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_FUNCTION] = ACTIONS(2518), - [anon_sym_In] = ACTIONS(2518), - [anon_sym_in] = ACTIONS(2518), - [anon_sym_IN] = ACTIONS(2518), - [anon_sym_Include] = ACTIONS(2518), - [anon_sym_include] = ACTIONS(2518), - [anon_sym_INCLUDE] = ACTIONS(2518), - [anon_sym_InstanceOf] = ACTIONS(2518), - [anon_sym_instanceof] = ACTIONS(2518), - [anon_sym_INSTANCEOF] = ACTIONS(2518), - [anon_sym_instanceOf] = ACTIONS(2518), - [anon_sym_New] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_NEW] = ACTIONS(2518), - [anon_sym_Package] = ACTIONS(2518), - [anon_sym_package] = ACTIONS(2518), - [anon_sym_PACKAGE] = ACTIONS(2518), - [anon_sym_Private] = ACTIONS(2518), - [anon_sym_private] = ACTIONS(2518), - [anon_sym_PRIVATE] = ACTIONS(2518), - [anon_sym_Public] = ACTIONS(2518), - [anon_sym_public] = ACTIONS(2518), - [anon_sym_PUBLIC] = ACTIONS(2518), - [anon_sym_Remote] = ACTIONS(2518), - [anon_sym_remote] = ACTIONS(2518), - [anon_sym_REMOTE] = ACTIONS(2518), - [anon_sym_Static] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_STATIC] = ACTIONS(2518), - [sym__ternary_qmark] = ACTIONS(2520), - [sym__elvis_operator] = ACTIONS(2520), - [sym_logical_or] = ACTIONS(2520), - [sym__java_block_open] = ACTIONS(2520), - [sym__static_type_prefix] = ACTIONS(2520), + [STATE(742)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(738)] = { + [STATE(743)] = { [sym_identifier] = ACTIONS(2482), - [anon_sym_DOT] = ACTIONS(2484), + [anon_sym_DOT] = ACTIONS(2992), [anon_sym_STAR] = ACTIONS(2482), [anon_sym_LBRACE] = ACTIONS(2484), [anon_sym_LPAREN] = ACTIONS(2484), [anon_sym_let] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2994), [anon_sym_Query] = ACTIONS(2482), [anon_sym_query] = ACTIONS(2482), [anon_sym_QUERY] = ACTIONS(2482), @@ -156914,8 +157795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), - [sym_optional_chain] = ACTIONS(2484), - [sym_static_chain] = ACTIONS(2484), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), [anon_sym_AMP_AMP] = ACTIONS(2484), [anon_sym_PIPE_PIPE] = ACTIONS(2484), [anon_sym_GT_GT] = ACTIONS(2482), @@ -156929,7 +157810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(2482), [anon_sym_PERCENT] = ACTIONS(2484), [anon_sym_BSLASH] = ACTIONS(2482), - [anon_sym_STAR_STAR] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(3130), [anon_sym_LT] = ACTIONS(2482), [anon_sym_LT_EQ] = ACTIONS(2484), [anon_sym_EQ_EQ] = ACTIONS(2482), @@ -156949,8 +157830,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(2482), [anon_sym_TILDE] = ACTIONS(2484), [aux_sym_unary_operator_token1] = ACTIONS(2482), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), [anon_sym_DQUOTE] = ACTIONS(2484), [anon_sym_SQUOTE] = ACTIONS(2484), [sym_comment] = ACTIONS(129), @@ -157033,8817 +157914,9694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2484), [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(739)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2308), - [anon_sym_query] = ACTIONS(2308), - [anon_sym_QUERY] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2310), - [aux_sym_unary_operator_token1] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2308), - [aux_sym_number_token2] = ACTIONS(2308), - [anon_sym_This] = ACTIONS(2308), - [anon_sym_this] = ACTIONS(2308), - [anon_sym_THIS] = ACTIONS(2308), - [anon_sym_Super] = ACTIONS(2308), - [anon_sym_super] = ACTIONS(2308), - [anon_sym_SUPER] = ACTIONS(2308), - [anon_sym_True] = ACTIONS(2308), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_TRUE] = ACTIONS(2308), - [anon_sym_False] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [anon_sym_FALSE] = ACTIONS(2308), - [anon_sym_Null] = ACTIONS(2308), - [anon_sym_null] = ACTIONS(2308), - [anon_sym_NULL] = ACTIONS(2308), - [anon_sym_Undefined] = ACTIONS(2308), - [anon_sym_undefined] = ACTIONS(2308), - [anon_sym_UNDEFINED] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2308), - [sym_hash_empty] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_QueryExecute] = ACTIONS(2308), - [anon_sym_queryexecute] = ACTIONS(2308), - [anon_sym_QUERYEXECUTE] = ACTIONS(2308), - [anon_sym_queryExecute] = ACTIONS(2308), - [anon_sym_BQUOTE] = ACTIONS(2310), - [anon_sym_Abstract] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_ABSTRACT] = ACTIONS(2308), - [anon_sym_Component] = ACTIONS(2308), - [anon_sym_component] = ACTIONS(2308), - [anon_sym_COMPONENT] = ACTIONS(2308), - [anon_sym_Debugger] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_DEBUGGER] = ACTIONS(2308), - [anon_sym_Final] = ACTIONS(2308), - [anon_sym_final] = ACTIONS(2308), - [anon_sym_FINAL] = ACTIONS(2308), - [anon_sym_Function] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_FUNCTION] = ACTIONS(2308), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2308), - [anon_sym_include] = ACTIONS(2308), - [anon_sym_INCLUDE] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_NEW] = ACTIONS(2308), - [anon_sym_Package] = ACTIONS(2308), - [anon_sym_package] = ACTIONS(2308), - [anon_sym_PACKAGE] = ACTIONS(2308), - [anon_sym_Private] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_PRIVATE] = ACTIONS(2308), - [anon_sym_Public] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_PUBLIC] = ACTIONS(2308), - [anon_sym_Remote] = ACTIONS(2308), - [anon_sym_remote] = ACTIONS(2308), - [anon_sym_REMOTE] = ACTIONS(2308), - [anon_sym_Static] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_STATIC] = ACTIONS(2308), - [sym__ternary_qmark] = ACTIONS(3132), - [sym__elvis_operator] = ACTIONS(3134), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2310), - [sym__static_type_prefix] = ACTIONS(2310), - }, - [STATE(740)] = { - [sym_identifier] = ACTIONS(2542), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2544), - [anon_sym_Query] = ACTIONS(2542), - [anon_sym_query] = ACTIONS(2542), - [anon_sym_QUERY] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2542), - [sym_optional_chain] = ACTIONS(2544), - [sym_static_chain] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2544), - [anon_sym_BSLASH] = ACTIONS(2542), - [anon_sym_STAR_STAR] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2544), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2544), - [anon_sym_LT_GT] = ACTIONS(2544), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2544), - [aux_sym_binary_expression_token1] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2544), - [anon_sym_GT] = ACTIONS(2542), - [aux_sym_binary_expression_token2] = ACTIONS(2542), - [aux_sym_binary_expression_token3] = ACTIONS(2542), - [aux_sym_binary_expression_token4] = ACTIONS(2544), - [aux_sym_binary_expression_token5] = ACTIONS(2544), - [aux_sym_binary_expression_token6] = ACTIONS(2544), - [anon_sym_QMARK_QMARK] = ACTIONS(2544), - [anon_sym_BANG] = ACTIONS(2542), - [anon_sym_TILDE] = ACTIONS(2544), - [aux_sym_unary_operator_token1] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2542), - [aux_sym_number_token2] = ACTIONS(2542), - [anon_sym_This] = ACTIONS(2542), - [anon_sym_this] = ACTIONS(2542), - [anon_sym_THIS] = ACTIONS(2542), - [anon_sym_Super] = ACTIONS(2542), - [anon_sym_super] = ACTIONS(2542), - [anon_sym_SUPER] = ACTIONS(2542), - [anon_sym_True] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2542), - [anon_sym_TRUE] = ACTIONS(2542), - [anon_sym_False] = ACTIONS(2542), - [anon_sym_false] = ACTIONS(2542), - [anon_sym_FALSE] = ACTIONS(2542), - [anon_sym_Null] = ACTIONS(2542), - [anon_sym_null] = ACTIONS(2542), - [anon_sym_NULL] = ACTIONS(2542), - [anon_sym_Undefined] = ACTIONS(2542), - [anon_sym_undefined] = ACTIONS(2542), - [anon_sym_UNDEFINED] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [sym_hash_empty] = ACTIONS(2544), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_QueryExecute] = ACTIONS(2542), - [anon_sym_queryexecute] = ACTIONS(2542), - [anon_sym_QUERYEXECUTE] = ACTIONS(2542), - [anon_sym_queryExecute] = ACTIONS(2542), - [anon_sym_BQUOTE] = ACTIONS(2544), - [anon_sym_Abstract] = ACTIONS(2542), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_ABSTRACT] = ACTIONS(2542), - [anon_sym_Component] = ACTIONS(2542), - [anon_sym_component] = ACTIONS(2542), - [anon_sym_COMPONENT] = ACTIONS(2542), - [anon_sym_Debugger] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_DEBUGGER] = ACTIONS(2542), - [anon_sym_Final] = ACTIONS(2542), - [anon_sym_final] = ACTIONS(2542), - [anon_sym_FINAL] = ACTIONS(2542), - [anon_sym_Function] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_FUNCTION] = ACTIONS(2542), - [anon_sym_In] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_IN] = ACTIONS(2542), - [anon_sym_Include] = ACTIONS(2542), - [anon_sym_include] = ACTIONS(2542), - [anon_sym_INCLUDE] = ACTIONS(2542), - [anon_sym_InstanceOf] = ACTIONS(2542), - [anon_sym_instanceof] = ACTIONS(2542), - [anon_sym_INSTANCEOF] = ACTIONS(2542), - [anon_sym_instanceOf] = ACTIONS(2542), - [anon_sym_New] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_NEW] = ACTIONS(2542), - [anon_sym_Package] = ACTIONS(2542), - [anon_sym_package] = ACTIONS(2542), - [anon_sym_PACKAGE] = ACTIONS(2542), - [anon_sym_Private] = ACTIONS(2542), - [anon_sym_private] = ACTIONS(2542), - [anon_sym_PRIVATE] = ACTIONS(2542), - [anon_sym_Public] = ACTIONS(2542), - [anon_sym_public] = ACTIONS(2542), - [anon_sym_PUBLIC] = ACTIONS(2542), - [anon_sym_Remote] = ACTIONS(2542), - [anon_sym_remote] = ACTIONS(2542), - [anon_sym_REMOTE] = ACTIONS(2542), - [anon_sym_Static] = ACTIONS(2542), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_STATIC] = ACTIONS(2542), - [sym__ternary_qmark] = ACTIONS(2544), - [sym__elvis_operator] = ACTIONS(2544), - [sym_logical_or] = ACTIONS(2544), - [sym__java_block_open] = ACTIONS(2544), - [sym__static_type_prefix] = ACTIONS(2544), + [STATE(744)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2482), + [anon_sym_query] = ACTIONS(2482), + [anon_sym_QUERY] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2484), + [aux_sym_unary_operator_token1] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2484), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2482), + [aux_sym_number_token2] = ACTIONS(2482), + [anon_sym_This] = ACTIONS(2482), + [anon_sym_this] = ACTIONS(2482), + [anon_sym_THIS] = ACTIONS(2482), + [anon_sym_Super] = ACTIONS(2482), + [anon_sym_super] = ACTIONS(2482), + [anon_sym_SUPER] = ACTIONS(2482), + [anon_sym_True] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_TRUE] = ACTIONS(2482), + [anon_sym_False] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_FALSE] = ACTIONS(2482), + [anon_sym_Null] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [anon_sym_NULL] = ACTIONS(2482), + [anon_sym_Undefined] = ACTIONS(2482), + [anon_sym_undefined] = ACTIONS(2482), + [anon_sym_UNDEFINED] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [sym_hash_empty] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_QueryExecute] = ACTIONS(2482), + [anon_sym_queryexecute] = ACTIONS(2482), + [anon_sym_QUERYEXECUTE] = ACTIONS(2482), + [anon_sym_queryExecute] = ACTIONS(2482), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_Abstract] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_ABSTRACT] = ACTIONS(2482), + [anon_sym_Component] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_COMPONENT] = ACTIONS(2482), + [anon_sym_Debugger] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_DEBUGGER] = ACTIONS(2482), + [anon_sym_Final] = ACTIONS(2482), + [anon_sym_final] = ACTIONS(2482), + [anon_sym_FINAL] = ACTIONS(2482), + [anon_sym_Function] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_FUNCTION] = ACTIONS(2482), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2482), + [anon_sym_include] = ACTIONS(2482), + [anon_sym_INCLUDE] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_NEW] = ACTIONS(2482), + [anon_sym_Package] = ACTIONS(2482), + [anon_sym_package] = ACTIONS(2482), + [anon_sym_PACKAGE] = ACTIONS(2482), + [anon_sym_Private] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_PRIVATE] = ACTIONS(2482), + [anon_sym_Public] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_PUBLIC] = ACTIONS(2482), + [anon_sym_Remote] = ACTIONS(2482), + [anon_sym_remote] = ACTIONS(2482), + [anon_sym_REMOTE] = ACTIONS(2482), + [anon_sym_Static] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_STATIC] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(3114), + [sym__java_block_open] = ACTIONS(2484), + [sym__static_type_prefix] = ACTIONS(2484), }, - [STATE(741)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [STATE(745)] = { + [sym_identifier] = ACTIONS(2536), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_Query] = ACTIONS(2536), + [anon_sym_query] = ACTIONS(2536), + [anon_sym_QUERY] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2536), + [sym_optional_chain] = ACTIONS(2538), + [sym_static_chain] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_BSLASH] = ACTIONS(2536), + [anon_sym_STAR_STAR] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2538), + [anon_sym_LT_GT] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2538), + [aux_sym_binary_expression_token1] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [aux_sym_binary_expression_token2] = ACTIONS(2536), + [aux_sym_binary_expression_token3] = ACTIONS(2536), + [aux_sym_binary_expression_token4] = ACTIONS(2538), + [aux_sym_binary_expression_token5] = ACTIONS(2538), + [aux_sym_binary_expression_token6] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_TILDE] = ACTIONS(2538), + [aux_sym_unary_operator_token1] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2536), + [aux_sym_number_token2] = ACTIONS(2536), + [anon_sym_This] = ACTIONS(2536), + [anon_sym_this] = ACTIONS(2536), + [anon_sym_THIS] = ACTIONS(2536), + [anon_sym_Super] = ACTIONS(2536), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_SUPER] = ACTIONS(2536), + [anon_sym_True] = ACTIONS(2536), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_TRUE] = ACTIONS(2536), + [anon_sym_False] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [anon_sym_FALSE] = ACTIONS(2536), + [anon_sym_Null] = ACTIONS(2536), + [anon_sym_null] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_Undefined] = ACTIONS(2536), + [anon_sym_undefined] = ACTIONS(2536), + [anon_sym_UNDEFINED] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [sym_hash_empty] = ACTIONS(2538), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_QueryExecute] = ACTIONS(2536), + [anon_sym_queryexecute] = ACTIONS(2536), + [anon_sym_QUERYEXECUTE] = ACTIONS(2536), + [anon_sym_queryExecute] = ACTIONS(2536), + [anon_sym_BQUOTE] = ACTIONS(2538), + [anon_sym_Abstract] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_ABSTRACT] = ACTIONS(2536), + [anon_sym_Component] = ACTIONS(2536), + [anon_sym_component] = ACTIONS(2536), + [anon_sym_COMPONENT] = ACTIONS(2536), + [anon_sym_Debugger] = ACTIONS(2536), + [anon_sym_debugger] = ACTIONS(2536), + [anon_sym_DEBUGGER] = ACTIONS(2536), + [anon_sym_Final] = ACTIONS(2536), + [anon_sym_final] = ACTIONS(2536), + [anon_sym_FINAL] = ACTIONS(2536), + [anon_sym_Function] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_FUNCTION] = ACTIONS(2536), + [anon_sym_In] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_IN] = ACTIONS(2536), + [anon_sym_Include] = ACTIONS(2536), + [anon_sym_include] = ACTIONS(2536), + [anon_sym_INCLUDE] = ACTIONS(2536), + [anon_sym_InstanceOf] = ACTIONS(2536), + [anon_sym_instanceof] = ACTIONS(2536), + [anon_sym_INSTANCEOF] = ACTIONS(2536), + [anon_sym_instanceOf] = ACTIONS(2536), + [anon_sym_New] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_NEW] = ACTIONS(2536), + [anon_sym_Package] = ACTIONS(2536), + [anon_sym_package] = ACTIONS(2536), + [anon_sym_PACKAGE] = ACTIONS(2536), + [anon_sym_Private] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_PRIVATE] = ACTIONS(2536), + [anon_sym_Public] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_PUBLIC] = ACTIONS(2536), + [anon_sym_Remote] = ACTIONS(2536), + [anon_sym_remote] = ACTIONS(2536), + [anon_sym_REMOTE] = ACTIONS(2536), + [anon_sym_Static] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_STATIC] = ACTIONS(2536), + [sym__ternary_qmark] = ACTIONS(2538), + [sym__elvis_operator] = ACTIONS(2538), + [sym_logical_or] = ACTIONS(2538), + [sym__java_block_open] = ACTIONS(2538), + [sym__static_type_prefix] = ACTIONS(2538), }, - [STATE(742)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [STATE(746)] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2416), + [anon_sym_query] = ACTIONS(2416), + [anon_sym_QUERY] = ACTIONS(2416), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2418), + [aux_sym_unary_operator_token1] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2416), + [aux_sym_number_token2] = ACTIONS(2416), + [anon_sym_This] = ACTIONS(2416), + [anon_sym_this] = ACTIONS(2416), + [anon_sym_THIS] = ACTIONS(2416), + [anon_sym_Super] = ACTIONS(2416), + [anon_sym_super] = ACTIONS(2416), + [anon_sym_SUPER] = ACTIONS(2416), + [anon_sym_True] = ACTIONS(2416), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_TRUE] = ACTIONS(2416), + [anon_sym_False] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [anon_sym_FALSE] = ACTIONS(2416), + [anon_sym_Null] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2416), + [anon_sym_Undefined] = ACTIONS(2416), + [anon_sym_undefined] = ACTIONS(2416), + [anon_sym_UNDEFINED] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [sym_hash_empty] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_QueryExecute] = ACTIONS(2416), + [anon_sym_queryexecute] = ACTIONS(2416), + [anon_sym_QUERYEXECUTE] = ACTIONS(2416), + [anon_sym_queryExecute] = ACTIONS(2416), + [anon_sym_BQUOTE] = ACTIONS(2418), + [anon_sym_Abstract] = ACTIONS(2416), + [anon_sym_abstract] = ACTIONS(2416), + [anon_sym_ABSTRACT] = ACTIONS(2416), + [anon_sym_Component] = ACTIONS(2416), + [anon_sym_component] = ACTIONS(2416), + [anon_sym_COMPONENT] = ACTIONS(2416), + [anon_sym_Debugger] = ACTIONS(2416), + [anon_sym_debugger] = ACTIONS(2416), + [anon_sym_DEBUGGER] = ACTIONS(2416), + [anon_sym_Final] = ACTIONS(2416), + [anon_sym_final] = ACTIONS(2416), + [anon_sym_FINAL] = ACTIONS(2416), + [anon_sym_Function] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2416), + [anon_sym_FUNCTION] = ACTIONS(2416), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2416), + [anon_sym_include] = ACTIONS(2416), + [anon_sym_INCLUDE] = ACTIONS(2416), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_NEW] = ACTIONS(2416), + [anon_sym_Package] = ACTIONS(2416), + [anon_sym_package] = ACTIONS(2416), + [anon_sym_PACKAGE] = ACTIONS(2416), + [anon_sym_Private] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_PRIVATE] = ACTIONS(2416), + [anon_sym_Public] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_PUBLIC] = ACTIONS(2416), + [anon_sym_Remote] = ACTIONS(2416), + [anon_sym_remote] = ACTIONS(2416), + [anon_sym_REMOTE] = ACTIONS(2416), + [anon_sym_Static] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_STATIC] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(3140), + [sym__elvis_operator] = ACTIONS(3142), + [sym_logical_or] = ACTIONS(3114), + [sym__java_block_open] = ACTIONS(2418), + [sym__static_type_prefix] = ACTIONS(2418), }, - [STATE(743)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [STATE(747)] = { + [sym_identifier] = ACTIONS(2576), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2576), + [anon_sym_query] = ACTIONS(2576), + [anon_sym_QUERY] = ACTIONS(2576), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_TILDE] = ACTIONS(2578), + [aux_sym_unary_operator_token1] = ACTIONS(2576), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2576), + [aux_sym_number_token2] = ACTIONS(2576), + [anon_sym_This] = ACTIONS(2576), + [anon_sym_this] = ACTIONS(2576), + [anon_sym_THIS] = ACTIONS(2576), + [anon_sym_Super] = ACTIONS(2576), + [anon_sym_super] = ACTIONS(2576), + [anon_sym_SUPER] = ACTIONS(2576), + [anon_sym_True] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2576), + [anon_sym_TRUE] = ACTIONS(2576), + [anon_sym_False] = ACTIONS(2576), + [anon_sym_false] = ACTIONS(2576), + [anon_sym_FALSE] = ACTIONS(2576), + [anon_sym_Null] = ACTIONS(2576), + [anon_sym_null] = ACTIONS(2576), + [anon_sym_NULL] = ACTIONS(2576), + [anon_sym_Undefined] = ACTIONS(2576), + [anon_sym_undefined] = ACTIONS(2576), + [anon_sym_UNDEFINED] = ACTIONS(2576), + [anon_sym_get] = ACTIONS(2576), + [anon_sym_set] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [sym_hash_empty] = ACTIONS(2578), + [anon_sym_export] = ACTIONS(2576), + [anon_sym_QueryExecute] = ACTIONS(2576), + [anon_sym_queryexecute] = ACTIONS(2576), + [anon_sym_QUERYEXECUTE] = ACTIONS(2576), + [anon_sym_queryExecute] = ACTIONS(2576), + [anon_sym_BQUOTE] = ACTIONS(2578), + [anon_sym_Abstract] = ACTIONS(2576), + [anon_sym_abstract] = ACTIONS(2576), + [anon_sym_ABSTRACT] = ACTIONS(2576), + [anon_sym_Component] = ACTIONS(2576), + [anon_sym_component] = ACTIONS(2576), + [anon_sym_COMPONENT] = ACTIONS(2576), + [anon_sym_Debugger] = ACTIONS(2576), + [anon_sym_debugger] = ACTIONS(2576), + [anon_sym_DEBUGGER] = ACTIONS(2576), + [anon_sym_Final] = ACTIONS(2576), + [anon_sym_final] = ACTIONS(2576), + [anon_sym_FINAL] = ACTIONS(2576), + [anon_sym_Function] = ACTIONS(2576), + [anon_sym_function] = ACTIONS(2576), + [anon_sym_FUNCTION] = ACTIONS(2576), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2576), + [anon_sym_include] = ACTIONS(2576), + [anon_sym_INCLUDE] = ACTIONS(2576), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2576), + [anon_sym_new] = ACTIONS(2576), + [anon_sym_NEW] = ACTIONS(2576), + [anon_sym_Package] = ACTIONS(2576), + [anon_sym_package] = ACTIONS(2576), + [anon_sym_PACKAGE] = ACTIONS(2576), + [anon_sym_Private] = ACTIONS(2576), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_PRIVATE] = ACTIONS(2576), + [anon_sym_Public] = ACTIONS(2576), + [anon_sym_public] = ACTIONS(2576), + [anon_sym_PUBLIC] = ACTIONS(2576), + [anon_sym_Remote] = ACTIONS(2576), + [anon_sym_remote] = ACTIONS(2576), + [anon_sym_REMOTE] = ACTIONS(2576), + [anon_sym_Static] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_STATIC] = ACTIONS(2576), + [sym__ternary_qmark] = ACTIONS(3140), + [sym__elvis_operator] = ACTIONS(3142), + [sym_logical_or] = ACTIONS(3114), + [sym__java_block_open] = ACTIONS(2578), + [sym__static_type_prefix] = ACTIONS(2578), }, - [STATE(744)] = { - [sym_identifier] = ACTIONS(2340), - [anon_sym_DOT] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2340), + [STATE(748)] = { + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), [anon_sym_LBRACE] = ACTIONS(2342), [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_Query] = ACTIONS(2340), - [anon_sym_query] = ACTIONS(2340), - [anon_sym_QUERY] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2340), - [sym_optional_chain] = ACTIONS(2342), - [sym_static_chain] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_BSLASH] = ACTIONS(2340), - [anon_sym_STAR_STAR] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_GT] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [aux_sym_binary_expression_token1] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [aux_sym_binary_expression_token2] = ACTIONS(2340), - [aux_sym_binary_expression_token3] = ACTIONS(2340), - [aux_sym_binary_expression_token4] = ACTIONS(2342), - [aux_sym_binary_expression_token5] = ACTIONS(2342), - [aux_sym_binary_expression_token6] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2338), + [anon_sym_query] = ACTIONS(2338), + [anon_sym_QUERY] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(2338), [anon_sym_TILDE] = ACTIONS(2342), - [aux_sym_unary_operator_token1] = ACTIONS(2340), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), + [aux_sym_unary_operator_token1] = ACTIONS(2338), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), [anon_sym_DQUOTE] = ACTIONS(2342), [anon_sym_SQUOTE] = ACTIONS(2342), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2340), - [aux_sym_number_token2] = ACTIONS(2340), - [anon_sym_This] = ACTIONS(2340), - [anon_sym_this] = ACTIONS(2340), - [anon_sym_THIS] = ACTIONS(2340), - [anon_sym_Super] = ACTIONS(2340), - [anon_sym_super] = ACTIONS(2340), - [anon_sym_SUPER] = ACTIONS(2340), - [anon_sym_True] = ACTIONS(2340), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_TRUE] = ACTIONS(2340), - [anon_sym_False] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [anon_sym_FALSE] = ACTIONS(2340), - [anon_sym_Null] = ACTIONS(2340), - [anon_sym_null] = ACTIONS(2340), - [anon_sym_NULL] = ACTIONS(2340), - [anon_sym_Undefined] = ACTIONS(2340), - [anon_sym_undefined] = ACTIONS(2340), - [anon_sym_UNDEFINED] = ACTIONS(2340), - [anon_sym_get] = ACTIONS(2340), - [anon_sym_set] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2340), + [aux_sym_number_token1] = ACTIONS(2338), + [aux_sym_number_token2] = ACTIONS(2338), + [anon_sym_This] = ACTIONS(2338), + [anon_sym_this] = ACTIONS(2338), + [anon_sym_THIS] = ACTIONS(2338), + [anon_sym_Super] = ACTIONS(2338), + [anon_sym_super] = ACTIONS(2338), + [anon_sym_SUPER] = ACTIONS(2338), + [anon_sym_True] = ACTIONS(2338), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_TRUE] = ACTIONS(2338), + [anon_sym_False] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_FALSE] = ACTIONS(2338), + [anon_sym_Null] = ACTIONS(2338), + [anon_sym_null] = ACTIONS(2338), + [anon_sym_NULL] = ACTIONS(2338), + [anon_sym_Undefined] = ACTIONS(2338), + [anon_sym_undefined] = ACTIONS(2338), + [anon_sym_UNDEFINED] = ACTIONS(2338), + [anon_sym_get] = ACTIONS(2338), + [anon_sym_set] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(2338), [sym_hash_empty] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2340), - [anon_sym_QueryExecute] = ACTIONS(2340), - [anon_sym_queryexecute] = ACTIONS(2340), - [anon_sym_QUERYEXECUTE] = ACTIONS(2340), - [anon_sym_queryExecute] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_QueryExecute] = ACTIONS(2338), + [anon_sym_queryexecute] = ACTIONS(2338), + [anon_sym_QUERYEXECUTE] = ACTIONS(2338), + [anon_sym_queryExecute] = ACTIONS(2338), [anon_sym_BQUOTE] = ACTIONS(2342), - [anon_sym_Abstract] = ACTIONS(2340), - [anon_sym_abstract] = ACTIONS(2340), - [anon_sym_ABSTRACT] = ACTIONS(2340), - [anon_sym_Component] = ACTIONS(2340), - [anon_sym_component] = ACTIONS(2340), - [anon_sym_COMPONENT] = ACTIONS(2340), - [anon_sym_Debugger] = ACTIONS(2340), - [anon_sym_debugger] = ACTIONS(2340), - [anon_sym_DEBUGGER] = ACTIONS(2340), - [anon_sym_Final] = ACTIONS(2340), - [anon_sym_final] = ACTIONS(2340), - [anon_sym_FINAL] = ACTIONS(2340), - [anon_sym_Function] = ACTIONS(2340), - [anon_sym_function] = ACTIONS(2340), - [anon_sym_FUNCTION] = ACTIONS(2340), - [anon_sym_In] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_IN] = ACTIONS(2340), - [anon_sym_Include] = ACTIONS(2340), - [anon_sym_include] = ACTIONS(2340), - [anon_sym_INCLUDE] = ACTIONS(2340), - [anon_sym_InstanceOf] = ACTIONS(2340), - [anon_sym_instanceof] = ACTIONS(2340), - [anon_sym_INSTANCEOF] = ACTIONS(2340), - [anon_sym_instanceOf] = ACTIONS(2340), - [anon_sym_New] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(2340), - [anon_sym_NEW] = ACTIONS(2340), - [anon_sym_Package] = ACTIONS(2340), - [anon_sym_package] = ACTIONS(2340), - [anon_sym_PACKAGE] = ACTIONS(2340), - [anon_sym_Private] = ACTIONS(2340), - [anon_sym_private] = ACTIONS(2340), - [anon_sym_PRIVATE] = ACTIONS(2340), - [anon_sym_Public] = ACTIONS(2340), - [anon_sym_public] = ACTIONS(2340), - [anon_sym_PUBLIC] = ACTIONS(2340), - [anon_sym_Remote] = ACTIONS(2340), - [anon_sym_remote] = ACTIONS(2340), - [anon_sym_REMOTE] = ACTIONS(2340), - [anon_sym_Static] = ACTIONS(2340), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_STATIC] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2342), - [sym__elvis_operator] = ACTIONS(2342), - [sym_logical_or] = ACTIONS(2342), + [anon_sym_Abstract] = ACTIONS(2338), + [anon_sym_abstract] = ACTIONS(2338), + [anon_sym_ABSTRACT] = ACTIONS(2338), + [anon_sym_Component] = ACTIONS(2338), + [anon_sym_component] = ACTIONS(2338), + [anon_sym_COMPONENT] = ACTIONS(2338), + [anon_sym_Debugger] = ACTIONS(2338), + [anon_sym_debugger] = ACTIONS(2338), + [anon_sym_DEBUGGER] = ACTIONS(2338), + [anon_sym_Final] = ACTIONS(2338), + [anon_sym_final] = ACTIONS(2338), + [anon_sym_FINAL] = ACTIONS(2338), + [anon_sym_Function] = ACTIONS(2338), + [anon_sym_function] = ACTIONS(2338), + [anon_sym_FUNCTION] = ACTIONS(2338), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2338), + [anon_sym_include] = ACTIONS(2338), + [anon_sym_INCLUDE] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2338), + [anon_sym_new] = ACTIONS(2338), + [anon_sym_NEW] = ACTIONS(2338), + [anon_sym_Package] = ACTIONS(2338), + [anon_sym_package] = ACTIONS(2338), + [anon_sym_PACKAGE] = ACTIONS(2338), + [anon_sym_Private] = ACTIONS(2338), + [anon_sym_private] = ACTIONS(2338), + [anon_sym_PRIVATE] = ACTIONS(2338), + [anon_sym_Public] = ACTIONS(2338), + [anon_sym_public] = ACTIONS(2338), + [anon_sym_PUBLIC] = ACTIONS(2338), + [anon_sym_Remote] = ACTIONS(2338), + [anon_sym_remote] = ACTIONS(2338), + [anon_sym_REMOTE] = ACTIONS(2338), + [anon_sym_Static] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2338), + [anon_sym_STATIC] = ACTIONS(2338), + [sym__ternary_qmark] = ACTIONS(3140), + [sym__elvis_operator] = ACTIONS(3142), + [sym_logical_or] = ACTIONS(3114), [sym__java_block_open] = ACTIONS(2342), [sym__static_type_prefix] = ACTIONS(2342), }, - [STATE(745)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_Query] = ACTIONS(2238), - [anon_sym_query] = ACTIONS(2238), - [anon_sym_QUERY] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2240), - [aux_sym_unary_operator_token1] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2238), - [aux_sym_number_token2] = ACTIONS(2238), - [anon_sym_This] = ACTIONS(2238), - [anon_sym_this] = ACTIONS(2238), - [anon_sym_THIS] = ACTIONS(2238), - [anon_sym_Super] = ACTIONS(2238), - [anon_sym_super] = ACTIONS(2238), - [anon_sym_SUPER] = ACTIONS(2238), - [anon_sym_True] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_TRUE] = ACTIONS(2238), - [anon_sym_False] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_FALSE] = ACTIONS(2238), - [anon_sym_Null] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_NULL] = ACTIONS(2238), - [anon_sym_Undefined] = ACTIONS(2238), - [anon_sym_undefined] = ACTIONS(2238), - [anon_sym_UNDEFINED] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [sym_hash_empty] = ACTIONS(2240), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_QueryExecute] = ACTIONS(2238), - [anon_sym_queryexecute] = ACTIONS(2238), - [anon_sym_QUERYEXECUTE] = ACTIONS(2238), - [anon_sym_queryExecute] = ACTIONS(2238), - [anon_sym_BQUOTE] = ACTIONS(2240), - [anon_sym_Abstract] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_ABSTRACT] = ACTIONS(2238), - [anon_sym_Component] = ACTIONS(2238), - [anon_sym_component] = ACTIONS(2238), - [anon_sym_COMPONENT] = ACTIONS(2238), - [anon_sym_Debugger] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_DEBUGGER] = ACTIONS(2238), - [anon_sym_Final] = ACTIONS(2238), - [anon_sym_final] = ACTIONS(2238), - [anon_sym_FINAL] = ACTIONS(2238), - [anon_sym_Function] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_FUNCTION] = ACTIONS(2238), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_Include] = ACTIONS(2238), - [anon_sym_include] = ACTIONS(2238), - [anon_sym_INCLUDE] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [anon_sym_New] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_NEW] = ACTIONS(2238), - [anon_sym_Package] = ACTIONS(2238), - [anon_sym_package] = ACTIONS(2238), - [anon_sym_PACKAGE] = ACTIONS(2238), - [anon_sym_Private] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_PRIVATE] = ACTIONS(2238), - [anon_sym_Public] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_PUBLIC] = ACTIONS(2238), - [anon_sym_Remote] = ACTIONS(2238), - [anon_sym_remote] = ACTIONS(2238), - [anon_sym_REMOTE] = ACTIONS(2238), - [anon_sym_Static] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_STATIC] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym__java_block_open] = ACTIONS(2240), - [sym__static_type_prefix] = ACTIONS(2240), - }, - [STATE(746)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(747)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), - }, - [STATE(748)] = { - [sym_identifier] = ACTIONS(2422), - [anon_sym_DOT] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_Query] = ACTIONS(2422), - [anon_sym_query] = ACTIONS(2422), - [anon_sym_QUERY] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2422), - [sym_optional_chain] = ACTIONS(2424), - [sym_static_chain] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2422), - [anon_sym_GT_GT_GT] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_CARET] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2424), - [anon_sym_BSLASH] = ACTIONS(2422), - [anon_sym_STAR_STAR] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), - [anon_sym_LT_GT] = ACTIONS(2424), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), - [aux_sym_binary_expression_token1] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2422), - [aux_sym_binary_expression_token2] = ACTIONS(2422), - [aux_sym_binary_expression_token3] = ACTIONS(2422), - [aux_sym_binary_expression_token4] = ACTIONS(2424), - [aux_sym_binary_expression_token5] = ACTIONS(2424), - [aux_sym_binary_expression_token6] = ACTIONS(2424), - [anon_sym_QMARK_QMARK] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2422), - [anon_sym_TILDE] = ACTIONS(2424), - [aux_sym_unary_operator_token1] = ACTIONS(2422), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2422), - [aux_sym_number_token2] = ACTIONS(2422), - [anon_sym_This] = ACTIONS(2422), - [anon_sym_this] = ACTIONS(2422), - [anon_sym_THIS] = ACTIONS(2422), - [anon_sym_Super] = ACTIONS(2422), - [anon_sym_super] = ACTIONS(2422), - [anon_sym_SUPER] = ACTIONS(2422), - [anon_sym_True] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_TRUE] = ACTIONS(2422), - [anon_sym_False] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_FALSE] = ACTIONS(2422), - [anon_sym_Null] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2422), - [anon_sym_NULL] = ACTIONS(2422), - [anon_sym_Undefined] = ACTIONS(2422), - [anon_sym_undefined] = ACTIONS(2422), - [anon_sym_UNDEFINED] = ACTIONS(2422), - [anon_sym_get] = ACTIONS(2422), - [anon_sym_set] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(2422), - [sym_hash_empty] = ACTIONS(2424), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_QueryExecute] = ACTIONS(2422), - [anon_sym_queryexecute] = ACTIONS(2422), - [anon_sym_QUERYEXECUTE] = ACTIONS(2422), - [anon_sym_queryExecute] = ACTIONS(2422), - [anon_sym_BQUOTE] = ACTIONS(2424), - [anon_sym_Abstract] = ACTIONS(2422), - [anon_sym_abstract] = ACTIONS(2422), - [anon_sym_ABSTRACT] = ACTIONS(2422), - [anon_sym_Component] = ACTIONS(2422), - [anon_sym_component] = ACTIONS(2422), - [anon_sym_COMPONENT] = ACTIONS(2422), - [anon_sym_Debugger] = ACTIONS(2422), - [anon_sym_debugger] = ACTIONS(2422), - [anon_sym_DEBUGGER] = ACTIONS(2422), - [anon_sym_Final] = ACTIONS(2422), - [anon_sym_final] = ACTIONS(2422), - [anon_sym_FINAL] = ACTIONS(2422), - [anon_sym_Function] = ACTIONS(2422), - [anon_sym_function] = ACTIONS(2422), - [anon_sym_FUNCTION] = ACTIONS(2422), - [anon_sym_In] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_IN] = ACTIONS(2422), - [anon_sym_Include] = ACTIONS(2422), - [anon_sym_include] = ACTIONS(2422), - [anon_sym_INCLUDE] = ACTIONS(2422), - [anon_sym_InstanceOf] = ACTIONS(2422), - [anon_sym_instanceof] = ACTIONS(2422), - [anon_sym_INSTANCEOF] = ACTIONS(2422), - [anon_sym_instanceOf] = ACTIONS(2422), - [anon_sym_New] = ACTIONS(2422), - [anon_sym_new] = ACTIONS(2422), - [anon_sym_NEW] = ACTIONS(2422), - [anon_sym_Package] = ACTIONS(2422), - [anon_sym_package] = ACTIONS(2422), - [anon_sym_PACKAGE] = ACTIONS(2422), - [anon_sym_Private] = ACTIONS(2422), - [anon_sym_private] = ACTIONS(2422), - [anon_sym_PRIVATE] = ACTIONS(2422), - [anon_sym_Public] = ACTIONS(2422), - [anon_sym_public] = ACTIONS(2422), - [anon_sym_PUBLIC] = ACTIONS(2422), - [anon_sym_Remote] = ACTIONS(2422), - [anon_sym_remote] = ACTIONS(2422), - [anon_sym_REMOTE] = ACTIONS(2422), - [anon_sym_Static] = ACTIONS(2422), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_STATIC] = ACTIONS(2422), - [sym__ternary_qmark] = ACTIONS(2424), - [sym__elvis_operator] = ACTIONS(2424), - [sym_logical_or] = ACTIONS(2424), - [sym__java_block_open] = ACTIONS(2424), - [sym__static_type_prefix] = ACTIONS(2424), - }, [STATE(749)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_Query] = ACTIONS(2392), + [anon_sym_query] = ACTIONS(2392), + [anon_sym_QUERY] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2392), + [sym_optional_chain] = ACTIONS(2394), + [sym_static_chain] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_BSLASH] = ACTIONS(2392), + [anon_sym_STAR_STAR] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2394), + [aux_sym_binary_expression_token1] = ACTIONS(2394), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [aux_sym_binary_expression_token2] = ACTIONS(2392), + [aux_sym_binary_expression_token3] = ACTIONS(2392), + [aux_sym_binary_expression_token4] = ACTIONS(2394), + [aux_sym_binary_expression_token5] = ACTIONS(2394), + [aux_sym_binary_expression_token6] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2394), + [aux_sym_unary_operator_token1] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2394), + [anon_sym_SQUOTE] = ACTIONS(2394), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2392), + [aux_sym_number_token2] = ACTIONS(2392), + [anon_sym_This] = ACTIONS(2392), + [anon_sym_this] = ACTIONS(2392), + [anon_sym_THIS] = ACTIONS(2392), + [anon_sym_Super] = ACTIONS(2392), + [anon_sym_super] = ACTIONS(2392), + [anon_sym_SUPER] = ACTIONS(2392), + [anon_sym_True] = ACTIONS(2392), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_TRUE] = ACTIONS(2392), + [anon_sym_False] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [anon_sym_FALSE] = ACTIONS(2392), + [anon_sym_Null] = ACTIONS(2392), + [anon_sym_null] = ACTIONS(2392), + [anon_sym_NULL] = ACTIONS(2392), + [anon_sym_Undefined] = ACTIONS(2392), + [anon_sym_undefined] = ACTIONS(2392), + [anon_sym_UNDEFINED] = ACTIONS(2392), + [anon_sym_get] = ACTIONS(2392), + [anon_sym_set] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [sym_hash_empty] = ACTIONS(2394), + [anon_sym_export] = ACTIONS(2392), + [anon_sym_QueryExecute] = ACTIONS(2392), + [anon_sym_queryexecute] = ACTIONS(2392), + [anon_sym_QUERYEXECUTE] = ACTIONS(2392), + [anon_sym_queryExecute] = ACTIONS(2392), + [anon_sym_BQUOTE] = ACTIONS(2394), + [anon_sym_Abstract] = ACTIONS(2392), + [anon_sym_abstract] = ACTIONS(2392), + [anon_sym_ABSTRACT] = ACTIONS(2392), + [anon_sym_Component] = ACTIONS(2392), + [anon_sym_component] = ACTIONS(2392), + [anon_sym_COMPONENT] = ACTIONS(2392), + [anon_sym_Debugger] = ACTIONS(2392), + [anon_sym_debugger] = ACTIONS(2392), + [anon_sym_DEBUGGER] = ACTIONS(2392), + [anon_sym_Final] = ACTIONS(2392), + [anon_sym_final] = ACTIONS(2392), + [anon_sym_FINAL] = ACTIONS(2392), + [anon_sym_Function] = ACTIONS(2392), + [anon_sym_function] = ACTIONS(2392), + [anon_sym_FUNCTION] = ACTIONS(2392), + [anon_sym_In] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_IN] = ACTIONS(2392), + [anon_sym_Include] = ACTIONS(2392), + [anon_sym_include] = ACTIONS(2392), + [anon_sym_INCLUDE] = ACTIONS(2392), + [anon_sym_InstanceOf] = ACTIONS(2392), + [anon_sym_instanceof] = ACTIONS(2392), + [anon_sym_INSTANCEOF] = ACTIONS(2392), + [anon_sym_instanceOf] = ACTIONS(2392), + [anon_sym_New] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_NEW] = ACTIONS(2392), + [anon_sym_Package] = ACTIONS(2392), + [anon_sym_package] = ACTIONS(2392), + [anon_sym_PACKAGE] = ACTIONS(2392), + [anon_sym_Private] = ACTIONS(2392), + [anon_sym_private] = ACTIONS(2392), + [anon_sym_PRIVATE] = ACTIONS(2392), + [anon_sym_Public] = ACTIONS(2392), + [anon_sym_public] = ACTIONS(2392), + [anon_sym_PUBLIC] = ACTIONS(2392), + [anon_sym_Remote] = ACTIONS(2392), + [anon_sym_remote] = ACTIONS(2392), + [anon_sym_REMOTE] = ACTIONS(2392), + [anon_sym_Static] = ACTIONS(2392), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_STATIC] = ACTIONS(2392), + [sym__ternary_qmark] = ACTIONS(2394), + [sym__elvis_operator] = ACTIONS(2394), + [sym_logical_or] = ACTIONS(2394), + [sym__java_block_open] = ACTIONS(2394), + [sym__static_type_prefix] = ACTIONS(2394), }, [STATE(750)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_Query] = ACTIONS(2472), + [anon_sym_query] = ACTIONS(2472), + [anon_sym_QUERY] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2472), + [sym_optional_chain] = ACTIONS(2474), + [sym_static_chain] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_BSLASH] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), + [anon_sym_LT_GT] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), + [aux_sym_binary_expression_token1] = ACTIONS(2474), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [aux_sym_binary_expression_token2] = ACTIONS(2472), + [aux_sym_binary_expression_token3] = ACTIONS(2472), + [aux_sym_binary_expression_token4] = ACTIONS(2474), + [aux_sym_binary_expression_token5] = ACTIONS(2474), + [aux_sym_binary_expression_token6] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2474), + [aux_sym_unary_operator_token1] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2472), + [aux_sym_number_token2] = ACTIONS(2472), + [anon_sym_This] = ACTIONS(2472), + [anon_sym_this] = ACTIONS(2472), + [anon_sym_THIS] = ACTIONS(2472), + [anon_sym_Super] = ACTIONS(2472), + [anon_sym_super] = ACTIONS(2472), + [anon_sym_SUPER] = ACTIONS(2472), + [anon_sym_True] = ACTIONS(2472), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_TRUE] = ACTIONS(2472), + [anon_sym_False] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_FALSE] = ACTIONS(2472), + [anon_sym_Null] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2472), + [anon_sym_NULL] = ACTIONS(2472), + [anon_sym_Undefined] = ACTIONS(2472), + [anon_sym_undefined] = ACTIONS(2472), + [anon_sym_UNDEFINED] = ACTIONS(2472), + [anon_sym_get] = ACTIONS(2472), + [anon_sym_set] = ACTIONS(2472), + [anon_sym_POUND] = ACTIONS(2472), + [sym_hash_empty] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2472), + [anon_sym_QueryExecute] = ACTIONS(2472), + [anon_sym_queryexecute] = ACTIONS(2472), + [anon_sym_QUERYEXECUTE] = ACTIONS(2472), + [anon_sym_queryExecute] = ACTIONS(2472), + [anon_sym_BQUOTE] = ACTIONS(2474), + [anon_sym_Abstract] = ACTIONS(2472), + [anon_sym_abstract] = ACTIONS(2472), + [anon_sym_ABSTRACT] = ACTIONS(2472), + [anon_sym_Component] = ACTIONS(2472), + [anon_sym_component] = ACTIONS(2472), + [anon_sym_COMPONENT] = ACTIONS(2472), + [anon_sym_Debugger] = ACTIONS(2472), + [anon_sym_debugger] = ACTIONS(2472), + [anon_sym_DEBUGGER] = ACTIONS(2472), + [anon_sym_Final] = ACTIONS(2472), + [anon_sym_final] = ACTIONS(2472), + [anon_sym_FINAL] = ACTIONS(2472), + [anon_sym_Function] = ACTIONS(2472), + [anon_sym_function] = ACTIONS(2472), + [anon_sym_FUNCTION] = ACTIONS(2472), + [anon_sym_In] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_IN] = ACTIONS(2472), + [anon_sym_Include] = ACTIONS(2472), + [anon_sym_include] = ACTIONS(2472), + [anon_sym_INCLUDE] = ACTIONS(2472), + [anon_sym_InstanceOf] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_INSTANCEOF] = ACTIONS(2472), + [anon_sym_instanceOf] = ACTIONS(2472), + [anon_sym_New] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2472), + [anon_sym_NEW] = ACTIONS(2472), + [anon_sym_Package] = ACTIONS(2472), + [anon_sym_package] = ACTIONS(2472), + [anon_sym_PACKAGE] = ACTIONS(2472), + [anon_sym_Private] = ACTIONS(2472), + [anon_sym_private] = ACTIONS(2472), + [anon_sym_PRIVATE] = ACTIONS(2472), + [anon_sym_Public] = ACTIONS(2472), + [anon_sym_public] = ACTIONS(2472), + [anon_sym_PUBLIC] = ACTIONS(2472), + [anon_sym_Remote] = ACTIONS(2472), + [anon_sym_remote] = ACTIONS(2472), + [anon_sym_REMOTE] = ACTIONS(2472), + [anon_sym_Static] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2472), + [anon_sym_STATIC] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2474), + [sym__elvis_operator] = ACTIONS(2474), + [sym_logical_or] = ACTIONS(2474), + [sym__java_block_open] = ACTIONS(2474), + [sym__static_type_prefix] = ACTIONS(2474), }, [STATE(751)] = { - [sym_identifier] = ACTIONS(2316), - [anon_sym_DOT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_Query] = ACTIONS(2316), - [anon_sym_query] = ACTIONS(2316), - [anon_sym_QUERY] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2316), - [sym_optional_chain] = ACTIONS(2318), - [sym_static_chain] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_BSLASH] = ACTIONS(2316), - [anon_sym_STAR_STAR] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2316), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), - [anon_sym_LT_GT] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2316), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), - [aux_sym_binary_expression_token1] = ACTIONS(2318), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [aux_sym_binary_expression_token2] = ACTIONS(2316), - [aux_sym_binary_expression_token3] = ACTIONS(2316), - [aux_sym_binary_expression_token4] = ACTIONS(2318), - [aux_sym_binary_expression_token5] = ACTIONS(2318), - [aux_sym_binary_expression_token6] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_BANG] = ACTIONS(2316), - [anon_sym_TILDE] = ACTIONS(2318), - [aux_sym_unary_operator_token1] = ACTIONS(2316), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_DQUOTE] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2318), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2316), - [aux_sym_number_token2] = ACTIONS(2316), - [anon_sym_This] = ACTIONS(2316), - [anon_sym_this] = ACTIONS(2316), - [anon_sym_THIS] = ACTIONS(2316), - [anon_sym_Super] = ACTIONS(2316), - [anon_sym_super] = ACTIONS(2316), - [anon_sym_SUPER] = ACTIONS(2316), - [anon_sym_True] = ACTIONS(2316), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_TRUE] = ACTIONS(2316), - [anon_sym_False] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [anon_sym_FALSE] = ACTIONS(2316), - [anon_sym_Null] = ACTIONS(2316), - [anon_sym_null] = ACTIONS(2316), - [anon_sym_NULL] = ACTIONS(2316), - [anon_sym_Undefined] = ACTIONS(2316), - [anon_sym_undefined] = ACTIONS(2316), - [anon_sym_UNDEFINED] = ACTIONS(2316), - [anon_sym_get] = ACTIONS(2316), - [anon_sym_set] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2316), - [sym_hash_empty] = ACTIONS(2318), - [anon_sym_export] = ACTIONS(2316), - [anon_sym_QueryExecute] = ACTIONS(2316), - [anon_sym_queryexecute] = ACTIONS(2316), - [anon_sym_QUERYEXECUTE] = ACTIONS(2316), - [anon_sym_queryExecute] = ACTIONS(2316), - [anon_sym_BQUOTE] = ACTIONS(2318), - [anon_sym_Abstract] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2316), - [anon_sym_ABSTRACT] = ACTIONS(2316), - [anon_sym_Component] = ACTIONS(2316), - [anon_sym_component] = ACTIONS(2316), - [anon_sym_COMPONENT] = ACTIONS(2316), - [anon_sym_Debugger] = ACTIONS(2316), - [anon_sym_debugger] = ACTIONS(2316), - [anon_sym_DEBUGGER] = ACTIONS(2316), - [anon_sym_Final] = ACTIONS(2316), - [anon_sym_final] = ACTIONS(2316), - [anon_sym_FINAL] = ACTIONS(2316), - [anon_sym_Function] = ACTIONS(2316), - [anon_sym_function] = ACTIONS(2316), - [anon_sym_FUNCTION] = ACTIONS(2316), - [anon_sym_In] = ACTIONS(2316), - [anon_sym_in] = ACTIONS(2316), - [anon_sym_IN] = ACTIONS(2316), - [anon_sym_Include] = ACTIONS(2316), - [anon_sym_include] = ACTIONS(2316), - [anon_sym_INCLUDE] = ACTIONS(2316), - [anon_sym_InstanceOf] = ACTIONS(2316), - [anon_sym_instanceof] = ACTIONS(2316), - [anon_sym_INSTANCEOF] = ACTIONS(2316), - [anon_sym_instanceOf] = ACTIONS(2316), - [anon_sym_New] = ACTIONS(2316), - [anon_sym_new] = ACTIONS(2316), - [anon_sym_NEW] = ACTIONS(2316), - [anon_sym_Package] = ACTIONS(2316), - [anon_sym_package] = ACTIONS(2316), - [anon_sym_PACKAGE] = ACTIONS(2316), - [anon_sym_Private] = ACTIONS(2316), - [anon_sym_private] = ACTIONS(2316), - [anon_sym_PRIVATE] = ACTIONS(2316), - [anon_sym_Public] = ACTIONS(2316), - [anon_sym_public] = ACTIONS(2316), - [anon_sym_PUBLIC] = ACTIONS(2316), - [anon_sym_Remote] = ACTIONS(2316), - [anon_sym_remote] = ACTIONS(2316), - [anon_sym_REMOTE] = ACTIONS(2316), - [anon_sym_Static] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_STATIC] = ACTIONS(2316), - [sym__ternary_qmark] = ACTIONS(2318), - [sym__elvis_operator] = ACTIONS(2318), - [sym_logical_or] = ACTIONS(2318), - [sym__java_block_open] = ACTIONS(2318), - [sym__static_type_prefix] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2584), + [anon_sym_query] = ACTIONS(2584), + [anon_sym_QUERY] = ACTIONS(2584), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2586), + [aux_sym_unary_operator_token1] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2584), + [aux_sym_number_token2] = ACTIONS(2584), + [anon_sym_This] = ACTIONS(2584), + [anon_sym_this] = ACTIONS(2584), + [anon_sym_THIS] = ACTIONS(2584), + [anon_sym_Super] = ACTIONS(2584), + [anon_sym_super] = ACTIONS(2584), + [anon_sym_SUPER] = ACTIONS(2584), + [anon_sym_True] = ACTIONS(2584), + [anon_sym_true] = ACTIONS(2584), + [anon_sym_TRUE] = ACTIONS(2584), + [anon_sym_False] = ACTIONS(2584), + [anon_sym_false] = ACTIONS(2584), + [anon_sym_FALSE] = ACTIONS(2584), + [anon_sym_Null] = ACTIONS(2584), + [anon_sym_null] = ACTIONS(2584), + [anon_sym_NULL] = ACTIONS(2584), + [anon_sym_Undefined] = ACTIONS(2584), + [anon_sym_undefined] = ACTIONS(2584), + [anon_sym_UNDEFINED] = ACTIONS(2584), + [anon_sym_get] = ACTIONS(2584), + [anon_sym_set] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [sym_hash_empty] = ACTIONS(2586), + [anon_sym_export] = ACTIONS(2584), + [anon_sym_QueryExecute] = ACTIONS(2584), + [anon_sym_queryexecute] = ACTIONS(2584), + [anon_sym_QUERYEXECUTE] = ACTIONS(2584), + [anon_sym_queryExecute] = ACTIONS(2584), + [anon_sym_BQUOTE] = ACTIONS(2586), + [anon_sym_Abstract] = ACTIONS(2584), + [anon_sym_abstract] = ACTIONS(2584), + [anon_sym_ABSTRACT] = ACTIONS(2584), + [anon_sym_Component] = ACTIONS(2584), + [anon_sym_component] = ACTIONS(2584), + [anon_sym_COMPONENT] = ACTIONS(2584), + [anon_sym_Debugger] = ACTIONS(2584), + [anon_sym_debugger] = ACTIONS(2584), + [anon_sym_DEBUGGER] = ACTIONS(2584), + [anon_sym_Final] = ACTIONS(2584), + [anon_sym_final] = ACTIONS(2584), + [anon_sym_FINAL] = ACTIONS(2584), + [anon_sym_Function] = ACTIONS(2584), + [anon_sym_function] = ACTIONS(2584), + [anon_sym_FUNCTION] = ACTIONS(2584), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2584), + [anon_sym_include] = ACTIONS(2584), + [anon_sym_INCLUDE] = ACTIONS(2584), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2584), + [anon_sym_new] = ACTIONS(2584), + [anon_sym_NEW] = ACTIONS(2584), + [anon_sym_Package] = ACTIONS(2584), + [anon_sym_package] = ACTIONS(2584), + [anon_sym_PACKAGE] = ACTIONS(2584), + [anon_sym_Private] = ACTIONS(2584), + [anon_sym_private] = ACTIONS(2584), + [anon_sym_PRIVATE] = ACTIONS(2584), + [anon_sym_Public] = ACTIONS(2584), + [anon_sym_public] = ACTIONS(2584), + [anon_sym_PUBLIC] = ACTIONS(2584), + [anon_sym_Remote] = ACTIONS(2584), + [anon_sym_remote] = ACTIONS(2584), + [anon_sym_REMOTE] = ACTIONS(2584), + [anon_sym_Static] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_STATIC] = ACTIONS(2584), + [sym__ternary_qmark] = ACTIONS(3140), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(3114), + [sym__java_block_open] = ACTIONS(2586), + [sym__static_type_prefix] = ACTIONS(2586), }, [STATE(752)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_Query] = ACTIONS(2504), + [anon_sym_query] = ACTIONS(2504), + [anon_sym_QUERY] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2504), + [sym_optional_chain] = ACTIONS(2506), + [sym_static_chain] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_BSLASH] = ACTIONS(2504), + [anon_sym_STAR_STAR] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2504), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), + [anon_sym_LT_GT] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2504), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), + [aux_sym_binary_expression_token1] = ACTIONS(2506), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [aux_sym_binary_expression_token2] = ACTIONS(2504), + [aux_sym_binary_expression_token3] = ACTIONS(2504), + [aux_sym_binary_expression_token4] = ACTIONS(2506), + [aux_sym_binary_expression_token5] = ACTIONS(2506), + [aux_sym_binary_expression_token6] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2506), + [aux_sym_unary_operator_token1] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2506), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2504), + [aux_sym_number_token2] = ACTIONS(2504), + [anon_sym_This] = ACTIONS(2504), + [anon_sym_this] = ACTIONS(2504), + [anon_sym_THIS] = ACTIONS(2504), + [anon_sym_Super] = ACTIONS(2504), + [anon_sym_super] = ACTIONS(2504), + [anon_sym_SUPER] = ACTIONS(2504), + [anon_sym_True] = ACTIONS(2504), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_TRUE] = ACTIONS(2504), + [anon_sym_False] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [anon_sym_FALSE] = ACTIONS(2504), + [anon_sym_Null] = ACTIONS(2504), + [anon_sym_null] = ACTIONS(2504), + [anon_sym_NULL] = ACTIONS(2504), + [anon_sym_Undefined] = ACTIONS(2504), + [anon_sym_undefined] = ACTIONS(2504), + [anon_sym_UNDEFINED] = ACTIONS(2504), + [anon_sym_get] = ACTIONS(2504), + [anon_sym_set] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [sym_hash_empty] = ACTIONS(2506), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_QueryExecute] = ACTIONS(2504), + [anon_sym_queryexecute] = ACTIONS(2504), + [anon_sym_QUERYEXECUTE] = ACTIONS(2504), + [anon_sym_queryExecute] = ACTIONS(2504), + [anon_sym_BQUOTE] = ACTIONS(2506), + [anon_sym_Abstract] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_ABSTRACT] = ACTIONS(2504), + [anon_sym_Component] = ACTIONS(2504), + [anon_sym_component] = ACTIONS(2504), + [anon_sym_COMPONENT] = ACTIONS(2504), + [anon_sym_Debugger] = ACTIONS(2504), + [anon_sym_debugger] = ACTIONS(2504), + [anon_sym_DEBUGGER] = ACTIONS(2504), + [anon_sym_Final] = ACTIONS(2504), + [anon_sym_final] = ACTIONS(2504), + [anon_sym_FINAL] = ACTIONS(2504), + [anon_sym_Function] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_FUNCTION] = ACTIONS(2504), + [anon_sym_In] = ACTIONS(2504), + [anon_sym_in] = ACTIONS(2504), + [anon_sym_IN] = ACTIONS(2504), + [anon_sym_Include] = ACTIONS(2504), + [anon_sym_include] = ACTIONS(2504), + [anon_sym_INCLUDE] = ACTIONS(2504), + [anon_sym_InstanceOf] = ACTIONS(2504), + [anon_sym_instanceof] = ACTIONS(2504), + [anon_sym_INSTANCEOF] = ACTIONS(2504), + [anon_sym_instanceOf] = ACTIONS(2504), + [anon_sym_New] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_NEW] = ACTIONS(2504), + [anon_sym_Package] = ACTIONS(2504), + [anon_sym_package] = ACTIONS(2504), + [anon_sym_PACKAGE] = ACTIONS(2504), + [anon_sym_Private] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_PRIVATE] = ACTIONS(2504), + [anon_sym_Public] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_PUBLIC] = ACTIONS(2504), + [anon_sym_Remote] = ACTIONS(2504), + [anon_sym_remote] = ACTIONS(2504), + [anon_sym_REMOTE] = ACTIONS(2504), + [anon_sym_Static] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_STATIC] = ACTIONS(2504), + [sym__ternary_qmark] = ACTIONS(2506), + [sym__elvis_operator] = ACTIONS(2506), + [sym_logical_or] = ACTIONS(2506), + [sym__java_block_open] = ACTIONS(2506), + [sym__static_type_prefix] = ACTIONS(2506), }, [STATE(753)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2418), - [anon_sym_query] = ACTIONS(2418), - [anon_sym_QUERY] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2420), - [aux_sym_unary_operator_token1] = ACTIONS(2418), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2418), - [aux_sym_number_token2] = ACTIONS(2418), - [anon_sym_This] = ACTIONS(2418), - [anon_sym_this] = ACTIONS(2418), - [anon_sym_THIS] = ACTIONS(2418), - [anon_sym_Super] = ACTIONS(2418), - [anon_sym_super] = ACTIONS(2418), - [anon_sym_SUPER] = ACTIONS(2418), - [anon_sym_True] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_TRUE] = ACTIONS(2418), - [anon_sym_False] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_FALSE] = ACTIONS(2418), - [anon_sym_Null] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2418), - [anon_sym_Undefined] = ACTIONS(2418), - [anon_sym_undefined] = ACTIONS(2418), - [anon_sym_UNDEFINED] = ACTIONS(2418), - [anon_sym_get] = ACTIONS(2418), - [anon_sym_set] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2418), - [sym_hash_empty] = ACTIONS(2420), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_QueryExecute] = ACTIONS(2418), - [anon_sym_queryexecute] = ACTIONS(2418), - [anon_sym_QUERYEXECUTE] = ACTIONS(2418), - [anon_sym_queryExecute] = ACTIONS(2418), - [anon_sym_BQUOTE] = ACTIONS(2420), - [anon_sym_Abstract] = ACTIONS(2418), - [anon_sym_abstract] = ACTIONS(2418), - [anon_sym_ABSTRACT] = ACTIONS(2418), - [anon_sym_Component] = ACTIONS(2418), - [anon_sym_component] = ACTIONS(2418), - [anon_sym_COMPONENT] = ACTIONS(2418), - [anon_sym_Debugger] = ACTIONS(2418), - [anon_sym_debugger] = ACTIONS(2418), - [anon_sym_DEBUGGER] = ACTIONS(2418), - [anon_sym_Final] = ACTIONS(2418), - [anon_sym_final] = ACTIONS(2418), - [anon_sym_FINAL] = ACTIONS(2418), - [anon_sym_Function] = ACTIONS(2418), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_FUNCTION] = ACTIONS(2418), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2418), - [anon_sym_include] = ACTIONS(2418), - [anon_sym_INCLUDE] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2418), - [anon_sym_NEW] = ACTIONS(2418), - [anon_sym_Package] = ACTIONS(2418), - [anon_sym_package] = ACTIONS(2418), - [anon_sym_PACKAGE] = ACTIONS(2418), - [anon_sym_Private] = ACTIONS(2418), - [anon_sym_private] = ACTIONS(2418), - [anon_sym_PRIVATE] = ACTIONS(2418), - [anon_sym_Public] = ACTIONS(2418), - [anon_sym_public] = ACTIONS(2418), - [anon_sym_PUBLIC] = ACTIONS(2418), - [anon_sym_Remote] = ACTIONS(2418), - [anon_sym_remote] = ACTIONS(2418), - [anon_sym_REMOTE] = ACTIONS(2418), - [anon_sym_Static] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_STATIC] = ACTIONS(2418), - [sym__ternary_qmark] = ACTIONS(3132), - [sym__elvis_operator] = ACTIONS(3134), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2420), - [sym__static_type_prefix] = ACTIONS(2420), + [sym_identifier] = ACTIONS(2544), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2544), + [anon_sym_query] = ACTIONS(2544), + [anon_sym_QUERY] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2544), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_BSLASH] = ACTIONS(2544), + [anon_sym_STAR_STAR] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2544), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2546), + [anon_sym_LT_GT] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2544), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2546), + [aux_sym_binary_expression_token1] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [aux_sym_binary_expression_token2] = ACTIONS(2544), + [aux_sym_binary_expression_token3] = ACTIONS(2544), + [aux_sym_binary_expression_token4] = ACTIONS(2546), + [aux_sym_binary_expression_token5] = ACTIONS(2546), + [aux_sym_binary_expression_token6] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_TILDE] = ACTIONS(2546), + [aux_sym_unary_operator_token1] = ACTIONS(2544), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2544), + [aux_sym_number_token2] = ACTIONS(2544), + [anon_sym_This] = ACTIONS(2544), + [anon_sym_this] = ACTIONS(2544), + [anon_sym_THIS] = ACTIONS(2544), + [anon_sym_Super] = ACTIONS(2544), + [anon_sym_super] = ACTIONS(2544), + [anon_sym_SUPER] = ACTIONS(2544), + [anon_sym_True] = ACTIONS(2544), + [anon_sym_true] = ACTIONS(2544), + [anon_sym_TRUE] = ACTIONS(2544), + [anon_sym_False] = ACTIONS(2544), + [anon_sym_false] = ACTIONS(2544), + [anon_sym_FALSE] = ACTIONS(2544), + [anon_sym_Null] = ACTIONS(2544), + [anon_sym_null] = ACTIONS(2544), + [anon_sym_NULL] = ACTIONS(2544), + [anon_sym_Undefined] = ACTIONS(2544), + [anon_sym_undefined] = ACTIONS(2544), + [anon_sym_UNDEFINED] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [sym_hash_empty] = ACTIONS(2546), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_QueryExecute] = ACTIONS(2544), + [anon_sym_queryexecute] = ACTIONS(2544), + [anon_sym_QUERYEXECUTE] = ACTIONS(2544), + [anon_sym_queryExecute] = ACTIONS(2544), + [anon_sym_BQUOTE] = ACTIONS(2546), + [anon_sym_Abstract] = ACTIONS(2544), + [anon_sym_abstract] = ACTIONS(2544), + [anon_sym_ABSTRACT] = ACTIONS(2544), + [anon_sym_Component] = ACTIONS(2544), + [anon_sym_component] = ACTIONS(2544), + [anon_sym_COMPONENT] = ACTIONS(2544), + [anon_sym_Debugger] = ACTIONS(2544), + [anon_sym_debugger] = ACTIONS(2544), + [anon_sym_DEBUGGER] = ACTIONS(2544), + [anon_sym_Final] = ACTIONS(2544), + [anon_sym_final] = ACTIONS(2544), + [anon_sym_FINAL] = ACTIONS(2544), + [anon_sym_Function] = ACTIONS(2544), + [anon_sym_function] = ACTIONS(2544), + [anon_sym_FUNCTION] = ACTIONS(2544), + [anon_sym_In] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_IN] = ACTIONS(2544), + [anon_sym_Include] = ACTIONS(2544), + [anon_sym_include] = ACTIONS(2544), + [anon_sym_INCLUDE] = ACTIONS(2544), + [anon_sym_InstanceOf] = ACTIONS(2544), + [anon_sym_instanceof] = ACTIONS(2544), + [anon_sym_INSTANCEOF] = ACTIONS(2544), + [anon_sym_instanceOf] = ACTIONS(2544), + [anon_sym_New] = ACTIONS(2544), + [anon_sym_new] = ACTIONS(2544), + [anon_sym_NEW] = ACTIONS(2544), + [anon_sym_Package] = ACTIONS(2544), + [anon_sym_package] = ACTIONS(2544), + [anon_sym_PACKAGE] = ACTIONS(2544), + [anon_sym_Private] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_PRIVATE] = ACTIONS(2544), + [anon_sym_Public] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_PUBLIC] = ACTIONS(2544), + [anon_sym_Remote] = ACTIONS(2544), + [anon_sym_remote] = ACTIONS(2544), + [anon_sym_REMOTE] = ACTIONS(2544), + [anon_sym_Static] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_STATIC] = ACTIONS(2544), + [sym__ternary_qmark] = ACTIONS(2546), + [sym__elvis_operator] = ACTIONS(2546), + [sym_logical_or] = ACTIONS(2546), + [sym__java_block_open] = ACTIONS(2546), + [sym__static_type_prefix] = ACTIONS(2546), }, [STATE(754)] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2522), - [anon_sym_query] = ACTIONS(2522), - [anon_sym_QUERY] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2522), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2524), - [anon_sym_BSLASH] = ACTIONS(2522), - [anon_sym_STAR_STAR] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2524), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2524), - [anon_sym_LT_GT] = ACTIONS(2524), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2524), - [aux_sym_binary_expression_token1] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2522), - [aux_sym_binary_expression_token2] = ACTIONS(2522), - [aux_sym_binary_expression_token3] = ACTIONS(2522), - [aux_sym_binary_expression_token4] = ACTIONS(2524), - [aux_sym_binary_expression_token5] = ACTIONS(2524), - [aux_sym_binary_expression_token6] = ACTIONS(2524), - [anon_sym_QMARK_QMARK] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2524), - [aux_sym_unary_operator_token1] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2522), - [aux_sym_number_token2] = ACTIONS(2522), - [anon_sym_This] = ACTIONS(2522), - [anon_sym_this] = ACTIONS(2522), - [anon_sym_THIS] = ACTIONS(2522), - [anon_sym_Super] = ACTIONS(2522), - [anon_sym_super] = ACTIONS(2522), - [anon_sym_SUPER] = ACTIONS(2522), - [anon_sym_True] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2522), - [anon_sym_TRUE] = ACTIONS(2522), - [anon_sym_False] = ACTIONS(2522), - [anon_sym_false] = ACTIONS(2522), - [anon_sym_FALSE] = ACTIONS(2522), - [anon_sym_Null] = ACTIONS(2522), - [anon_sym_null] = ACTIONS(2522), - [anon_sym_NULL] = ACTIONS(2522), - [anon_sym_Undefined] = ACTIONS(2522), - [anon_sym_undefined] = ACTIONS(2522), - [anon_sym_UNDEFINED] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [sym_hash_empty] = ACTIONS(2524), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_QueryExecute] = ACTIONS(2522), - [anon_sym_queryexecute] = ACTIONS(2522), - [anon_sym_QUERYEXECUTE] = ACTIONS(2522), - [anon_sym_queryExecute] = ACTIONS(2522), - [anon_sym_BQUOTE] = ACTIONS(2524), - [anon_sym_Abstract] = ACTIONS(2522), - [anon_sym_abstract] = ACTIONS(2522), - [anon_sym_ABSTRACT] = ACTIONS(2522), - [anon_sym_Component] = ACTIONS(2522), - [anon_sym_component] = ACTIONS(2522), - [anon_sym_COMPONENT] = ACTIONS(2522), - [anon_sym_Debugger] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_DEBUGGER] = ACTIONS(2522), - [anon_sym_Final] = ACTIONS(2522), - [anon_sym_final] = ACTIONS(2522), - [anon_sym_FINAL] = ACTIONS(2522), - [anon_sym_Function] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_FUNCTION] = ACTIONS(2522), - [anon_sym_In] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_IN] = ACTIONS(2522), - [anon_sym_Include] = ACTIONS(2522), - [anon_sym_include] = ACTIONS(2522), - [anon_sym_INCLUDE] = ACTIONS(2522), - [anon_sym_InstanceOf] = ACTIONS(2522), - [anon_sym_instanceof] = ACTIONS(2522), - [anon_sym_INSTANCEOF] = ACTIONS(2522), - [anon_sym_instanceOf] = ACTIONS(2522), - [anon_sym_New] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_NEW] = ACTIONS(2522), - [anon_sym_Package] = ACTIONS(2522), - [anon_sym_package] = ACTIONS(2522), - [anon_sym_PACKAGE] = ACTIONS(2522), - [anon_sym_Private] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_PRIVATE] = ACTIONS(2522), - [anon_sym_Public] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_PUBLIC] = ACTIONS(2522), - [anon_sym_Remote] = ACTIONS(2522), - [anon_sym_remote] = ACTIONS(2522), - [anon_sym_REMOTE] = ACTIONS(2522), - [anon_sym_Static] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_STATIC] = ACTIONS(2522), - [sym__ternary_qmark] = ACTIONS(2524), - [sym__elvis_operator] = ACTIONS(2524), - [sym_logical_or] = ACTIONS(2524), - [sym__java_block_open] = ACTIONS(2524), - [sym__static_type_prefix] = ACTIONS(2524), + [sym_identifier] = ACTIONS(2548), + [anon_sym_DOT] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_Query] = ACTIONS(2548), + [anon_sym_query] = ACTIONS(2548), + [anon_sym_QUERY] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2548), + [sym_optional_chain] = ACTIONS(2550), + [sym_static_chain] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(2548), + [anon_sym_STAR_STAR] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2550), + [anon_sym_LT_GT] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2550), + [aux_sym_binary_expression_token1] = ACTIONS(2550), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [aux_sym_binary_expression_token2] = ACTIONS(2548), + [aux_sym_binary_expression_token3] = ACTIONS(2548), + [aux_sym_binary_expression_token4] = ACTIONS(2550), + [aux_sym_binary_expression_token5] = ACTIONS(2550), + [aux_sym_binary_expression_token6] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2550), + [aux_sym_unary_operator_token1] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2548), + [aux_sym_number_token2] = ACTIONS(2548), + [anon_sym_This] = ACTIONS(2548), + [anon_sym_this] = ACTIONS(2548), + [anon_sym_THIS] = ACTIONS(2548), + [anon_sym_Super] = ACTIONS(2548), + [anon_sym_super] = ACTIONS(2548), + [anon_sym_SUPER] = ACTIONS(2548), + [anon_sym_True] = ACTIONS(2548), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_TRUE] = ACTIONS(2548), + [anon_sym_False] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [anon_sym_FALSE] = ACTIONS(2548), + [anon_sym_Null] = ACTIONS(2548), + [anon_sym_null] = ACTIONS(2548), + [anon_sym_NULL] = ACTIONS(2548), + [anon_sym_Undefined] = ACTIONS(2548), + [anon_sym_undefined] = ACTIONS(2548), + [anon_sym_UNDEFINED] = ACTIONS(2548), + [anon_sym_get] = ACTIONS(2548), + [anon_sym_set] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [sym_hash_empty] = ACTIONS(2550), + [anon_sym_export] = ACTIONS(2548), + [anon_sym_QueryExecute] = ACTIONS(2548), + [anon_sym_queryexecute] = ACTIONS(2548), + [anon_sym_QUERYEXECUTE] = ACTIONS(2548), + [anon_sym_queryExecute] = ACTIONS(2548), + [anon_sym_BQUOTE] = ACTIONS(2550), + [anon_sym_Abstract] = ACTIONS(2548), + [anon_sym_abstract] = ACTIONS(2548), + [anon_sym_ABSTRACT] = ACTIONS(2548), + [anon_sym_Component] = ACTIONS(2548), + [anon_sym_component] = ACTIONS(2548), + [anon_sym_COMPONENT] = ACTIONS(2548), + [anon_sym_Debugger] = ACTIONS(2548), + [anon_sym_debugger] = ACTIONS(2548), + [anon_sym_DEBUGGER] = ACTIONS(2548), + [anon_sym_Final] = ACTIONS(2548), + [anon_sym_final] = ACTIONS(2548), + [anon_sym_FINAL] = ACTIONS(2548), + [anon_sym_Function] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(2548), + [anon_sym_FUNCTION] = ACTIONS(2548), + [anon_sym_In] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_IN] = ACTIONS(2548), + [anon_sym_Include] = ACTIONS(2548), + [anon_sym_include] = ACTIONS(2548), + [anon_sym_INCLUDE] = ACTIONS(2548), + [anon_sym_InstanceOf] = ACTIONS(2548), + [anon_sym_instanceof] = ACTIONS(2548), + [anon_sym_INSTANCEOF] = ACTIONS(2548), + [anon_sym_instanceOf] = ACTIONS(2548), + [anon_sym_New] = ACTIONS(2548), + [anon_sym_new] = ACTIONS(2548), + [anon_sym_NEW] = ACTIONS(2548), + [anon_sym_Package] = ACTIONS(2548), + [anon_sym_package] = ACTIONS(2548), + [anon_sym_PACKAGE] = ACTIONS(2548), + [anon_sym_Private] = ACTIONS(2548), + [anon_sym_private] = ACTIONS(2548), + [anon_sym_PRIVATE] = ACTIONS(2548), + [anon_sym_Public] = ACTIONS(2548), + [anon_sym_public] = ACTIONS(2548), + [anon_sym_PUBLIC] = ACTIONS(2548), + [anon_sym_Remote] = ACTIONS(2548), + [anon_sym_remote] = ACTIONS(2548), + [anon_sym_REMOTE] = ACTIONS(2548), + [anon_sym_Static] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_STATIC] = ACTIONS(2548), + [sym__ternary_qmark] = ACTIONS(2550), + [sym__elvis_operator] = ACTIONS(2550), + [sym_logical_or] = ACTIONS(2550), + [sym__java_block_open] = ACTIONS(2550), + [sym__static_type_prefix] = ACTIONS(2550), }, [STATE(755)] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2458), - [anon_sym_query] = ACTIONS(2458), - [anon_sym_QUERY] = ACTIONS(2458), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2460), - [aux_sym_unary_operator_token1] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2460), - [anon_sym_SQUOTE] = ACTIONS(2460), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2458), - [aux_sym_number_token2] = ACTIONS(2458), - [anon_sym_This] = ACTIONS(2458), - [anon_sym_this] = ACTIONS(2458), - [anon_sym_THIS] = ACTIONS(2458), - [anon_sym_Super] = ACTIONS(2458), - [anon_sym_super] = ACTIONS(2458), - [anon_sym_SUPER] = ACTIONS(2458), - [anon_sym_True] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(2458), - [anon_sym_TRUE] = ACTIONS(2458), - [anon_sym_False] = ACTIONS(2458), - [anon_sym_false] = ACTIONS(2458), - [anon_sym_FALSE] = ACTIONS(2458), - [anon_sym_Null] = ACTIONS(2458), - [anon_sym_null] = ACTIONS(2458), - [anon_sym_NULL] = ACTIONS(2458), - [anon_sym_Undefined] = ACTIONS(2458), - [anon_sym_undefined] = ACTIONS(2458), - [anon_sym_UNDEFINED] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(2458), - [sym_hash_empty] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_QueryExecute] = ACTIONS(2458), - [anon_sym_queryexecute] = ACTIONS(2458), - [anon_sym_QUERYEXECUTE] = ACTIONS(2458), - [anon_sym_queryExecute] = ACTIONS(2458), - [anon_sym_BQUOTE] = ACTIONS(2460), - [anon_sym_Abstract] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_ABSTRACT] = ACTIONS(2458), - [anon_sym_Component] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_COMPONENT] = ACTIONS(2458), - [anon_sym_Debugger] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_DEBUGGER] = ACTIONS(2458), - [anon_sym_Final] = ACTIONS(2458), - [anon_sym_final] = ACTIONS(2458), - [anon_sym_FINAL] = ACTIONS(2458), - [anon_sym_Function] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_FUNCTION] = ACTIONS(2458), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2458), - [anon_sym_include] = ACTIONS(2458), - [anon_sym_INCLUDE] = ACTIONS(2458), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2458), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_NEW] = ACTIONS(2458), - [anon_sym_Package] = ACTIONS(2458), - [anon_sym_package] = ACTIONS(2458), - [anon_sym_PACKAGE] = ACTIONS(2458), - [anon_sym_Private] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_PRIVATE] = ACTIONS(2458), - [anon_sym_Public] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_PUBLIC] = ACTIONS(2458), - [anon_sym_Remote] = ACTIONS(2458), - [anon_sym_remote] = ACTIONS(2458), - [anon_sym_REMOTE] = ACTIONS(2458), - [anon_sym_Static] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_STATIC] = ACTIONS(2458), - [sym__ternary_qmark] = ACTIONS(3132), - [sym__elvis_operator] = ACTIONS(3134), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2460), - [sym__static_type_prefix] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2552), + [anon_sym_DOT] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_let] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_Query] = ACTIONS(2552), + [anon_sym_query] = ACTIONS(2552), + [anon_sym_QUERY] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2552), + [sym_optional_chain] = ACTIONS(2554), + [sym_static_chain] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_BSLASH] = ACTIONS(2552), + [anon_sym_STAR_STAR] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2554), + [anon_sym_LT_GT] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2554), + [aux_sym_binary_expression_token1] = ACTIONS(2554), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [aux_sym_binary_expression_token2] = ACTIONS(2552), + [aux_sym_binary_expression_token3] = ACTIONS(2552), + [aux_sym_binary_expression_token4] = ACTIONS(2554), + [aux_sym_binary_expression_token5] = ACTIONS(2554), + [aux_sym_binary_expression_token6] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2552), + [anon_sym_TILDE] = ACTIONS(2554), + [aux_sym_unary_operator_token1] = ACTIONS(2552), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2552), + [aux_sym_number_token2] = ACTIONS(2552), + [anon_sym_This] = ACTIONS(2552), + [anon_sym_this] = ACTIONS(2552), + [anon_sym_THIS] = ACTIONS(2552), + [anon_sym_Super] = ACTIONS(2552), + [anon_sym_super] = ACTIONS(2552), + [anon_sym_SUPER] = ACTIONS(2552), + [anon_sym_True] = ACTIONS(2552), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_TRUE] = ACTIONS(2552), + [anon_sym_False] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_FALSE] = ACTIONS(2552), + [anon_sym_Null] = ACTIONS(2552), + [anon_sym_null] = ACTIONS(2552), + [anon_sym_NULL] = ACTIONS(2552), + [anon_sym_Undefined] = ACTIONS(2552), + [anon_sym_undefined] = ACTIONS(2552), + [anon_sym_UNDEFINED] = ACTIONS(2552), + [anon_sym_get] = ACTIONS(2552), + [anon_sym_set] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [sym_hash_empty] = ACTIONS(2554), + [anon_sym_export] = ACTIONS(2552), + [anon_sym_QueryExecute] = ACTIONS(2552), + [anon_sym_queryexecute] = ACTIONS(2552), + [anon_sym_QUERYEXECUTE] = ACTIONS(2552), + [anon_sym_queryExecute] = ACTIONS(2552), + [anon_sym_BQUOTE] = ACTIONS(2554), + [anon_sym_Abstract] = ACTIONS(2552), + [anon_sym_abstract] = ACTIONS(2552), + [anon_sym_ABSTRACT] = ACTIONS(2552), + [anon_sym_Component] = ACTIONS(2552), + [anon_sym_component] = ACTIONS(2552), + [anon_sym_COMPONENT] = ACTIONS(2552), + [anon_sym_Debugger] = ACTIONS(2552), + [anon_sym_debugger] = ACTIONS(2552), + [anon_sym_DEBUGGER] = ACTIONS(2552), + [anon_sym_Final] = ACTIONS(2552), + [anon_sym_final] = ACTIONS(2552), + [anon_sym_FINAL] = ACTIONS(2552), + [anon_sym_Function] = ACTIONS(2552), + [anon_sym_function] = ACTIONS(2552), + [anon_sym_FUNCTION] = ACTIONS(2552), + [anon_sym_In] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_IN] = ACTIONS(2552), + [anon_sym_Include] = ACTIONS(2552), + [anon_sym_include] = ACTIONS(2552), + [anon_sym_INCLUDE] = ACTIONS(2552), + [anon_sym_InstanceOf] = ACTIONS(2552), + [anon_sym_instanceof] = ACTIONS(2552), + [anon_sym_INSTANCEOF] = ACTIONS(2552), + [anon_sym_instanceOf] = ACTIONS(2552), + [anon_sym_New] = ACTIONS(2552), + [anon_sym_new] = ACTIONS(2552), + [anon_sym_NEW] = ACTIONS(2552), + [anon_sym_Package] = ACTIONS(2552), + [anon_sym_package] = ACTIONS(2552), + [anon_sym_PACKAGE] = ACTIONS(2552), + [anon_sym_Private] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_PRIVATE] = ACTIONS(2552), + [anon_sym_Public] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_PUBLIC] = ACTIONS(2552), + [anon_sym_Remote] = ACTIONS(2552), + [anon_sym_remote] = ACTIONS(2552), + [anon_sym_REMOTE] = ACTIONS(2552), + [anon_sym_Static] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_STATIC] = ACTIONS(2552), + [sym__ternary_qmark] = ACTIONS(2554), + [sym__elvis_operator] = ACTIONS(2554), + [sym_logical_or] = ACTIONS(2554), + [sym__java_block_open] = ACTIONS(2554), + [sym__static_type_prefix] = ACTIONS(2554), }, [STATE(756)] = { - [sym_identifier] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_Query] = ACTIONS(1652), - [anon_sym_query] = ACTIONS(1652), - [anon_sym_QUERY] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1652), - [anon_sym_TILDE] = ACTIONS(1650), - [aux_sym_unary_operator_token1] = ACTIONS(1652), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1652), - [aux_sym_number_token2] = ACTIONS(1652), - [anon_sym_This] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(1652), - [anon_sym_THIS] = ACTIONS(1652), - [anon_sym_Super] = ACTIONS(1652), - [anon_sym_super] = ACTIONS(1652), - [anon_sym_SUPER] = ACTIONS(1652), - [anon_sym_True] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_TRUE] = ACTIONS(1652), - [anon_sym_False] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_FALSE] = ACTIONS(1652), - [anon_sym_Null] = ACTIONS(1652), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_NULL] = ACTIONS(1652), - [anon_sym_Undefined] = ACTIONS(1652), - [anon_sym_undefined] = ACTIONS(1652), - [anon_sym_UNDEFINED] = ACTIONS(1652), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(1652), - [sym_hash_empty] = ACTIONS(1650), - [anon_sym_export] = ACTIONS(1652), - [anon_sym_QueryExecute] = ACTIONS(1652), - [anon_sym_queryexecute] = ACTIONS(1652), - [anon_sym_QUERYEXECUTE] = ACTIONS(1652), - [anon_sym_queryExecute] = ACTIONS(1652), - [anon_sym_BQUOTE] = ACTIONS(1650), - [anon_sym_Abstract] = ACTIONS(1652), - [anon_sym_abstract] = ACTIONS(1652), - [anon_sym_ABSTRACT] = ACTIONS(1652), - [anon_sym_Component] = ACTIONS(1652), - [anon_sym_component] = ACTIONS(1652), - [anon_sym_COMPONENT] = ACTIONS(1652), - [anon_sym_Debugger] = ACTIONS(1652), - [anon_sym_debugger] = ACTIONS(1652), - [anon_sym_DEBUGGER] = ACTIONS(1652), - [anon_sym_Final] = ACTIONS(1652), - [anon_sym_final] = ACTIONS(1652), - [anon_sym_FINAL] = ACTIONS(1652), - [anon_sym_Function] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(1652), - [anon_sym_FUNCTION] = ACTIONS(1652), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_Include] = ACTIONS(1652), - [anon_sym_include] = ACTIONS(1652), - [anon_sym_INCLUDE] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [anon_sym_New] = ACTIONS(1652), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_NEW] = ACTIONS(1652), - [anon_sym_Package] = ACTIONS(1652), - [anon_sym_package] = ACTIONS(1652), - [anon_sym_PACKAGE] = ACTIONS(1652), - [anon_sym_Private] = ACTIONS(1652), - [anon_sym_private] = ACTIONS(1652), - [anon_sym_PRIVATE] = ACTIONS(1652), - [anon_sym_Public] = ACTIONS(1652), - [anon_sym_public] = ACTIONS(1652), - [anon_sym_PUBLIC] = ACTIONS(1652), - [anon_sym_Remote] = ACTIONS(1652), - [anon_sym_remote] = ACTIONS(1652), - [anon_sym_REMOTE] = ACTIONS(1652), - [anon_sym_Static] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_STATIC] = ACTIONS(1652), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym__java_block_open] = ACTIONS(1650), - [sym__static_type_prefix] = ACTIONS(1650), + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_Query] = ACTIONS(2464), + [anon_sym_query] = ACTIONS(2464), + [anon_sym_QUERY] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2464), + [sym_optional_chain] = ACTIONS(2466), + [sym_static_chain] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_BSLASH] = ACTIONS(2464), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_LT_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [aux_sym_binary_expression_token1] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [aux_sym_binary_expression_token2] = ACTIONS(2464), + [aux_sym_binary_expression_token3] = ACTIONS(2464), + [aux_sym_binary_expression_token4] = ACTIONS(2466), + [aux_sym_binary_expression_token5] = ACTIONS(2466), + [aux_sym_binary_expression_token6] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2466), + [aux_sym_unary_operator_token1] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2464), + [aux_sym_number_token2] = ACTIONS(2464), + [anon_sym_This] = ACTIONS(2464), + [anon_sym_this] = ACTIONS(2464), + [anon_sym_THIS] = ACTIONS(2464), + [anon_sym_Super] = ACTIONS(2464), + [anon_sym_super] = ACTIONS(2464), + [anon_sym_SUPER] = ACTIONS(2464), + [anon_sym_True] = ACTIONS(2464), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_TRUE] = ACTIONS(2464), + [anon_sym_False] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_FALSE] = ACTIONS(2464), + [anon_sym_Null] = ACTIONS(2464), + [anon_sym_null] = ACTIONS(2464), + [anon_sym_NULL] = ACTIONS(2464), + [anon_sym_Undefined] = ACTIONS(2464), + [anon_sym_undefined] = ACTIONS(2464), + [anon_sym_UNDEFINED] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2464), + [sym_hash_empty] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_QueryExecute] = ACTIONS(2464), + [anon_sym_queryexecute] = ACTIONS(2464), + [anon_sym_QUERYEXECUTE] = ACTIONS(2464), + [anon_sym_queryExecute] = ACTIONS(2464), + [anon_sym_BQUOTE] = ACTIONS(2466), + [anon_sym_Abstract] = ACTIONS(2464), + [anon_sym_abstract] = ACTIONS(2464), + [anon_sym_ABSTRACT] = ACTIONS(2464), + [anon_sym_Component] = ACTIONS(2464), + [anon_sym_component] = ACTIONS(2464), + [anon_sym_COMPONENT] = ACTIONS(2464), + [anon_sym_Debugger] = ACTIONS(2464), + [anon_sym_debugger] = ACTIONS(2464), + [anon_sym_DEBUGGER] = ACTIONS(2464), + [anon_sym_Final] = ACTIONS(2464), + [anon_sym_final] = ACTIONS(2464), + [anon_sym_FINAL] = ACTIONS(2464), + [anon_sym_Function] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2464), + [anon_sym_FUNCTION] = ACTIONS(2464), + [anon_sym_In] = ACTIONS(2464), + [anon_sym_in] = ACTIONS(2464), + [anon_sym_IN] = ACTIONS(2464), + [anon_sym_Include] = ACTIONS(2464), + [anon_sym_include] = ACTIONS(2464), + [anon_sym_INCLUDE] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(2464), + [anon_sym_instanceof] = ACTIONS(2464), + [anon_sym_INSTANCEOF] = ACTIONS(2464), + [anon_sym_instanceOf] = ACTIONS(2464), + [anon_sym_New] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_NEW] = ACTIONS(2464), + [anon_sym_Package] = ACTIONS(2464), + [anon_sym_package] = ACTIONS(2464), + [anon_sym_PACKAGE] = ACTIONS(2464), + [anon_sym_Private] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_PRIVATE] = ACTIONS(2464), + [anon_sym_Public] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_PUBLIC] = ACTIONS(2464), + [anon_sym_Remote] = ACTIONS(2464), + [anon_sym_remote] = ACTIONS(2464), + [anon_sym_REMOTE] = ACTIONS(2464), + [anon_sym_Static] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_STATIC] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2466), + [sym__elvis_operator] = ACTIONS(2466), + [sym_logical_or] = ACTIONS(2466), + [sym__java_block_open] = ACTIONS(2466), + [sym__static_type_prefix] = ACTIONS(2466), }, [STATE(757)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2462), - [anon_sym_query] = ACTIONS(2462), - [anon_sym_QUERY] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_TILDE] = ACTIONS(2464), - [aux_sym_unary_operator_token1] = ACTIONS(2462), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2464), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2462), - [aux_sym_number_token2] = ACTIONS(2462), - [anon_sym_This] = ACTIONS(2462), - [anon_sym_this] = ACTIONS(2462), - [anon_sym_THIS] = ACTIONS(2462), - [anon_sym_Super] = ACTIONS(2462), - [anon_sym_super] = ACTIONS(2462), - [anon_sym_SUPER] = ACTIONS(2462), - [anon_sym_True] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2462), - [anon_sym_TRUE] = ACTIONS(2462), - [anon_sym_False] = ACTIONS(2462), - [anon_sym_false] = ACTIONS(2462), - [anon_sym_FALSE] = ACTIONS(2462), - [anon_sym_Null] = ACTIONS(2462), - [anon_sym_null] = ACTIONS(2462), - [anon_sym_NULL] = ACTIONS(2462), - [anon_sym_Undefined] = ACTIONS(2462), - [anon_sym_undefined] = ACTIONS(2462), - [anon_sym_UNDEFINED] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(2462), - [sym_hash_empty] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_QueryExecute] = ACTIONS(2462), - [anon_sym_queryexecute] = ACTIONS(2462), - [anon_sym_QUERYEXECUTE] = ACTIONS(2462), - [anon_sym_queryExecute] = ACTIONS(2462), - [anon_sym_BQUOTE] = ACTIONS(2464), - [anon_sym_Abstract] = ACTIONS(2462), - [anon_sym_abstract] = ACTIONS(2462), - [anon_sym_ABSTRACT] = ACTIONS(2462), - [anon_sym_Component] = ACTIONS(2462), - [anon_sym_component] = ACTIONS(2462), - [anon_sym_COMPONENT] = ACTIONS(2462), - [anon_sym_Debugger] = ACTIONS(2462), - [anon_sym_debugger] = ACTIONS(2462), - [anon_sym_DEBUGGER] = ACTIONS(2462), - [anon_sym_Final] = ACTIONS(2462), - [anon_sym_final] = ACTIONS(2462), - [anon_sym_FINAL] = ACTIONS(2462), - [anon_sym_Function] = ACTIONS(2462), - [anon_sym_function] = ACTIONS(2462), - [anon_sym_FUNCTION] = ACTIONS(2462), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2462), - [anon_sym_include] = ACTIONS(2462), - [anon_sym_INCLUDE] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_NEW] = ACTIONS(2462), - [anon_sym_Package] = ACTIONS(2462), - [anon_sym_package] = ACTIONS(2462), - [anon_sym_PACKAGE] = ACTIONS(2462), - [anon_sym_Private] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_PRIVATE] = ACTIONS(2462), - [anon_sym_Public] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_PUBLIC] = ACTIONS(2462), - [anon_sym_Remote] = ACTIONS(2462), - [anon_sym_remote] = ACTIONS(2462), - [anon_sym_REMOTE] = ACTIONS(2462), - [anon_sym_Static] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_STATIC] = ACTIONS(2462), - [sym__ternary_qmark] = ACTIONS(3132), - [sym__elvis_operator] = ACTIONS(3134), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2464), - [sym__static_type_prefix] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2560), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_Query] = ACTIONS(2560), + [anon_sym_query] = ACTIONS(2560), + [anon_sym_QUERY] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2560), + [sym_optional_chain] = ACTIONS(2562), + [sym_static_chain] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_BSLASH] = ACTIONS(2560), + [anon_sym_STAR_STAR] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2562), + [anon_sym_LT_GT] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2562), + [aux_sym_binary_expression_token1] = ACTIONS(2562), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [aux_sym_binary_expression_token2] = ACTIONS(2560), + [aux_sym_binary_expression_token3] = ACTIONS(2560), + [aux_sym_binary_expression_token4] = ACTIONS(2562), + [aux_sym_binary_expression_token5] = ACTIONS(2562), + [aux_sym_binary_expression_token6] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [aux_sym_unary_operator_token1] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2560), + [aux_sym_number_token2] = ACTIONS(2560), + [anon_sym_This] = ACTIONS(2560), + [anon_sym_this] = ACTIONS(2560), + [anon_sym_THIS] = ACTIONS(2560), + [anon_sym_Super] = ACTIONS(2560), + [anon_sym_super] = ACTIONS(2560), + [anon_sym_SUPER] = ACTIONS(2560), + [anon_sym_True] = ACTIONS(2560), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_TRUE] = ACTIONS(2560), + [anon_sym_False] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_FALSE] = ACTIONS(2560), + [anon_sym_Null] = ACTIONS(2560), + [anon_sym_null] = ACTIONS(2560), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_Undefined] = ACTIONS(2560), + [anon_sym_undefined] = ACTIONS(2560), + [anon_sym_UNDEFINED] = ACTIONS(2560), + [anon_sym_get] = ACTIONS(2560), + [anon_sym_set] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [sym_hash_empty] = ACTIONS(2562), + [anon_sym_export] = ACTIONS(2560), + [anon_sym_QueryExecute] = ACTIONS(2560), + [anon_sym_queryexecute] = ACTIONS(2560), + [anon_sym_QUERYEXECUTE] = ACTIONS(2560), + [anon_sym_queryExecute] = ACTIONS(2560), + [anon_sym_BQUOTE] = ACTIONS(2562), + [anon_sym_Abstract] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_ABSTRACT] = ACTIONS(2560), + [anon_sym_Component] = ACTIONS(2560), + [anon_sym_component] = ACTIONS(2560), + [anon_sym_COMPONENT] = ACTIONS(2560), + [anon_sym_Debugger] = ACTIONS(2560), + [anon_sym_debugger] = ACTIONS(2560), + [anon_sym_DEBUGGER] = ACTIONS(2560), + [anon_sym_Final] = ACTIONS(2560), + [anon_sym_final] = ACTIONS(2560), + [anon_sym_FINAL] = ACTIONS(2560), + [anon_sym_Function] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_FUNCTION] = ACTIONS(2560), + [anon_sym_In] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_IN] = ACTIONS(2560), + [anon_sym_Include] = ACTIONS(2560), + [anon_sym_include] = ACTIONS(2560), + [anon_sym_INCLUDE] = ACTIONS(2560), + [anon_sym_InstanceOf] = ACTIONS(2560), + [anon_sym_instanceof] = ACTIONS(2560), + [anon_sym_INSTANCEOF] = ACTIONS(2560), + [anon_sym_instanceOf] = ACTIONS(2560), + [anon_sym_New] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_NEW] = ACTIONS(2560), + [anon_sym_Package] = ACTIONS(2560), + [anon_sym_package] = ACTIONS(2560), + [anon_sym_PACKAGE] = ACTIONS(2560), + [anon_sym_Private] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_PRIVATE] = ACTIONS(2560), + [anon_sym_Public] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_PUBLIC] = ACTIONS(2560), + [anon_sym_Remote] = ACTIONS(2560), + [anon_sym_remote] = ACTIONS(2560), + [anon_sym_REMOTE] = ACTIONS(2560), + [anon_sym_Static] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_STATIC] = ACTIONS(2560), + [sym__ternary_qmark] = ACTIONS(2562), + [sym__elvis_operator] = ACTIONS(2562), + [sym_logical_or] = ACTIONS(2562), + [sym__java_block_open] = ACTIONS(2562), + [sym__static_type_prefix] = ACTIONS(2562), }, [STATE(758)] = { - [sym_identifier] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_Query] = ACTIONS(2550), - [anon_sym_query] = ACTIONS(2550), - [anon_sym_QUERY] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2550), - [sym_optional_chain] = ACTIONS(2552), - [sym_static_chain] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2550), - [anon_sym_GT_GT_GT] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_CARET] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_STAR_STAR] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_LT_EQ] = ACTIONS(2552), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2552), - [anon_sym_LT_GT] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2552), - [aux_sym_binary_expression_token1] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2550), - [aux_sym_binary_expression_token2] = ACTIONS(2550), - [aux_sym_binary_expression_token3] = ACTIONS(2550), - [aux_sym_binary_expression_token4] = ACTIONS(2552), - [aux_sym_binary_expression_token5] = ACTIONS(2552), - [aux_sym_binary_expression_token6] = ACTIONS(2552), - [anon_sym_QMARK_QMARK] = ACTIONS(2552), - [anon_sym_BANG] = ACTIONS(2550), - [anon_sym_TILDE] = ACTIONS(2552), - [aux_sym_unary_operator_token1] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [anon_sym_DQUOTE] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2552), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2550), - [aux_sym_number_token2] = ACTIONS(2550), - [anon_sym_This] = ACTIONS(2550), - [anon_sym_this] = ACTIONS(2550), - [anon_sym_THIS] = ACTIONS(2550), - [anon_sym_Super] = ACTIONS(2550), - [anon_sym_super] = ACTIONS(2550), - [anon_sym_SUPER] = ACTIONS(2550), - [anon_sym_True] = ACTIONS(2550), - [anon_sym_true] = ACTIONS(2550), - [anon_sym_TRUE] = ACTIONS(2550), - [anon_sym_False] = ACTIONS(2550), - [anon_sym_false] = ACTIONS(2550), - [anon_sym_FALSE] = ACTIONS(2550), - [anon_sym_Null] = ACTIONS(2550), - [anon_sym_null] = ACTIONS(2550), - [anon_sym_NULL] = ACTIONS(2550), - [anon_sym_Undefined] = ACTIONS(2550), - [anon_sym_undefined] = ACTIONS(2550), - [anon_sym_UNDEFINED] = ACTIONS(2550), - [anon_sym_get] = ACTIONS(2550), - [anon_sym_set] = ACTIONS(2550), - [anon_sym_POUND] = ACTIONS(2550), - [sym_hash_empty] = ACTIONS(2552), - [anon_sym_export] = ACTIONS(2550), - [anon_sym_QueryExecute] = ACTIONS(2550), - [anon_sym_queryexecute] = ACTIONS(2550), - [anon_sym_QUERYEXECUTE] = ACTIONS(2550), - [anon_sym_queryExecute] = ACTIONS(2550), - [anon_sym_BQUOTE] = ACTIONS(2552), - [anon_sym_Abstract] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2550), - [anon_sym_ABSTRACT] = ACTIONS(2550), - [anon_sym_Component] = ACTIONS(2550), - [anon_sym_component] = ACTIONS(2550), - [anon_sym_COMPONENT] = ACTIONS(2550), - [anon_sym_Debugger] = ACTIONS(2550), - [anon_sym_debugger] = ACTIONS(2550), - [anon_sym_DEBUGGER] = ACTIONS(2550), - [anon_sym_Final] = ACTIONS(2550), - [anon_sym_final] = ACTIONS(2550), - [anon_sym_FINAL] = ACTIONS(2550), - [anon_sym_Function] = ACTIONS(2550), - [anon_sym_function] = ACTIONS(2550), - [anon_sym_FUNCTION] = ACTIONS(2550), - [anon_sym_In] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_IN] = ACTIONS(2550), - [anon_sym_Include] = ACTIONS(2550), - [anon_sym_include] = ACTIONS(2550), - [anon_sym_INCLUDE] = ACTIONS(2550), - [anon_sym_InstanceOf] = ACTIONS(2550), - [anon_sym_instanceof] = ACTIONS(2550), - [anon_sym_INSTANCEOF] = ACTIONS(2550), - [anon_sym_instanceOf] = ACTIONS(2550), - [anon_sym_New] = ACTIONS(2550), - [anon_sym_new] = ACTIONS(2550), - [anon_sym_NEW] = ACTIONS(2550), - [anon_sym_Package] = ACTIONS(2550), - [anon_sym_package] = ACTIONS(2550), - [anon_sym_PACKAGE] = ACTIONS(2550), - [anon_sym_Private] = ACTIONS(2550), - [anon_sym_private] = ACTIONS(2550), - [anon_sym_PRIVATE] = ACTIONS(2550), - [anon_sym_Public] = ACTIONS(2550), - [anon_sym_public] = ACTIONS(2550), - [anon_sym_PUBLIC] = ACTIONS(2550), - [anon_sym_Remote] = ACTIONS(2550), - [anon_sym_remote] = ACTIONS(2550), - [anon_sym_REMOTE] = ACTIONS(2550), - [anon_sym_Static] = ACTIONS(2550), - [anon_sym_static] = ACTIONS(2550), - [anon_sym_STATIC] = ACTIONS(2550), - [sym__ternary_qmark] = ACTIONS(2552), - [sym__elvis_operator] = ACTIONS(2552), - [sym_logical_or] = ACTIONS(2552), - [sym__java_block_open] = ACTIONS(2552), - [sym__static_type_prefix] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_Query] = ACTIONS(2568), + [anon_sym_query] = ACTIONS(2568), + [anon_sym_QUERY] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2568), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [aux_sym_unary_operator_token1] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2568), + [aux_sym_number_token2] = ACTIONS(2568), + [anon_sym_This] = ACTIONS(2568), + [anon_sym_this] = ACTIONS(2568), + [anon_sym_THIS] = ACTIONS(2568), + [anon_sym_Super] = ACTIONS(2568), + [anon_sym_super] = ACTIONS(2568), + [anon_sym_SUPER] = ACTIONS(2568), + [anon_sym_True] = ACTIONS(2568), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_TRUE] = ACTIONS(2568), + [anon_sym_False] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [anon_sym_FALSE] = ACTIONS(2568), + [anon_sym_Null] = ACTIONS(2568), + [anon_sym_null] = ACTIONS(2568), + [anon_sym_NULL] = ACTIONS(2568), + [anon_sym_Undefined] = ACTIONS(2568), + [anon_sym_undefined] = ACTIONS(2568), + [anon_sym_UNDEFINED] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [sym_hash_empty] = ACTIONS(2570), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_QueryExecute] = ACTIONS(2568), + [anon_sym_queryexecute] = ACTIONS(2568), + [anon_sym_QUERYEXECUTE] = ACTIONS(2568), + [anon_sym_queryExecute] = ACTIONS(2568), + [anon_sym_BQUOTE] = ACTIONS(2570), + [anon_sym_Abstract] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_ABSTRACT] = ACTIONS(2568), + [anon_sym_Component] = ACTIONS(2568), + [anon_sym_component] = ACTIONS(2568), + [anon_sym_COMPONENT] = ACTIONS(2568), + [anon_sym_Debugger] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_DEBUGGER] = ACTIONS(2568), + [anon_sym_Final] = ACTIONS(2568), + [anon_sym_final] = ACTIONS(2568), + [anon_sym_FINAL] = ACTIONS(2568), + [anon_sym_Function] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_FUNCTION] = ACTIONS(2568), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_Include] = ACTIONS(2568), + [anon_sym_include] = ACTIONS(2568), + [anon_sym_INCLUDE] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2568), + [anon_sym_instanceof] = ACTIONS(2568), + [anon_sym_INSTANCEOF] = ACTIONS(2568), + [anon_sym_instanceOf] = ACTIONS(2568), + [anon_sym_New] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_NEW] = ACTIONS(2568), + [anon_sym_Package] = ACTIONS(2568), + [anon_sym_package] = ACTIONS(2568), + [anon_sym_PACKAGE] = ACTIONS(2568), + [anon_sym_Private] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_PRIVATE] = ACTIONS(2568), + [anon_sym_Public] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_PUBLIC] = ACTIONS(2568), + [anon_sym_Remote] = ACTIONS(2568), + [anon_sym_remote] = ACTIONS(2568), + [anon_sym_REMOTE] = ACTIONS(2568), + [anon_sym_Static] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_STATIC] = ACTIONS(2568), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), + [sym__java_block_open] = ACTIONS(2570), + [sym__static_type_prefix] = ACTIONS(2570), }, [STATE(759)] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_Query] = ACTIONS(2344), - [anon_sym_query] = ACTIONS(2344), - [anon_sym_QUERY] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2347), - [aux_sym_unary_operator_token1] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2344), - [aux_sym_number_token2] = ACTIONS(2344), - [anon_sym_This] = ACTIONS(2344), - [anon_sym_this] = ACTIONS(2344), - [anon_sym_THIS] = ACTIONS(2344), - [anon_sym_Super] = ACTIONS(2344), - [anon_sym_super] = ACTIONS(2344), - [anon_sym_SUPER] = ACTIONS(2344), - [anon_sym_True] = ACTIONS(2344), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_TRUE] = ACTIONS(2344), - [anon_sym_False] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_FALSE] = ACTIONS(2344), - [anon_sym_Null] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [anon_sym_NULL] = ACTIONS(2344), - [anon_sym_Undefined] = ACTIONS(2344), - [anon_sym_undefined] = ACTIONS(2344), - [anon_sym_UNDEFINED] = ACTIONS(2344), - [anon_sym_get] = ACTIONS(2344), - [anon_sym_set] = ACTIONS(2344), - [anon_sym_POUND] = ACTIONS(2344), - [sym_hash_empty] = ACTIONS(2347), - [anon_sym_export] = ACTIONS(2344), - [anon_sym_QueryExecute] = ACTIONS(2344), - [anon_sym_queryexecute] = ACTIONS(2344), - [anon_sym_QUERYEXECUTE] = ACTIONS(2344), - [anon_sym_queryExecute] = ACTIONS(2344), - [anon_sym_BQUOTE] = ACTIONS(2347), - [anon_sym_Abstract] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2344), - [anon_sym_ABSTRACT] = ACTIONS(2344), - [anon_sym_Component] = ACTIONS(2344), - [anon_sym_component] = ACTIONS(2344), - [anon_sym_COMPONENT] = ACTIONS(2344), - [anon_sym_Debugger] = ACTIONS(2344), - [anon_sym_debugger] = ACTIONS(2344), - [anon_sym_DEBUGGER] = ACTIONS(2344), - [anon_sym_Final] = ACTIONS(2344), - [anon_sym_final] = ACTIONS(2344), - [anon_sym_FINAL] = ACTIONS(2344), - [anon_sym_Function] = ACTIONS(2344), - [anon_sym_function] = ACTIONS(2344), - [anon_sym_FUNCTION] = ACTIONS(2344), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_Include] = ACTIONS(2344), - [anon_sym_include] = ACTIONS(2344), - [anon_sym_INCLUDE] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [anon_sym_New] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_NEW] = ACTIONS(2344), - [anon_sym_Package] = ACTIONS(2344), - [anon_sym_package] = ACTIONS(2344), - [anon_sym_PACKAGE] = ACTIONS(2344), - [anon_sym_Private] = ACTIONS(2344), - [anon_sym_private] = ACTIONS(2344), - [anon_sym_PRIVATE] = ACTIONS(2344), - [anon_sym_Public] = ACTIONS(2344), - [anon_sym_public] = ACTIONS(2344), - [anon_sym_PUBLIC] = ACTIONS(2344), - [anon_sym_Remote] = ACTIONS(2344), - [anon_sym_remote] = ACTIONS(2344), - [anon_sym_REMOTE] = ACTIONS(2344), - [anon_sym_Static] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_STATIC] = ACTIONS(2344), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym__java_block_open] = ACTIONS(2347), - [sym__static_type_prefix] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2440), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_Query] = ACTIONS(2440), + [anon_sym_query] = ACTIONS(2440), + [anon_sym_QUERY] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2443), + [aux_sym_unary_operator_token1] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2440), + [aux_sym_number_token2] = ACTIONS(2440), + [anon_sym_This] = ACTIONS(2440), + [anon_sym_this] = ACTIONS(2440), + [anon_sym_THIS] = ACTIONS(2440), + [anon_sym_Super] = ACTIONS(2440), + [anon_sym_super] = ACTIONS(2440), + [anon_sym_SUPER] = ACTIONS(2440), + [anon_sym_True] = ACTIONS(2440), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_TRUE] = ACTIONS(2440), + [anon_sym_False] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [anon_sym_FALSE] = ACTIONS(2440), + [anon_sym_Null] = ACTIONS(2440), + [anon_sym_null] = ACTIONS(2440), + [anon_sym_NULL] = ACTIONS(2440), + [anon_sym_Undefined] = ACTIONS(2440), + [anon_sym_undefined] = ACTIONS(2440), + [anon_sym_UNDEFINED] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_POUND] = ACTIONS(2440), + [sym_hash_empty] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_QueryExecute] = ACTIONS(2440), + [anon_sym_queryexecute] = ACTIONS(2440), + [anon_sym_QUERYEXECUTE] = ACTIONS(2440), + [anon_sym_queryExecute] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(2443), + [anon_sym_Abstract] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_ABSTRACT] = ACTIONS(2440), + [anon_sym_Component] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_COMPONENT] = ACTIONS(2440), + [anon_sym_Debugger] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_DEBUGGER] = ACTIONS(2440), + [anon_sym_Final] = ACTIONS(2440), + [anon_sym_final] = ACTIONS(2440), + [anon_sym_FINAL] = ACTIONS(2440), + [anon_sym_Function] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_FUNCTION] = ACTIONS(2440), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_Include] = ACTIONS(2440), + [anon_sym_include] = ACTIONS(2440), + [anon_sym_INCLUDE] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [anon_sym_New] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_NEW] = ACTIONS(2440), + [anon_sym_Package] = ACTIONS(2440), + [anon_sym_package] = ACTIONS(2440), + [anon_sym_PACKAGE] = ACTIONS(2440), + [anon_sym_Private] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_PRIVATE] = ACTIONS(2440), + [anon_sym_Public] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_PUBLIC] = ACTIONS(2440), + [anon_sym_Remote] = ACTIONS(2440), + [anon_sym_remote] = ACTIONS(2440), + [anon_sym_REMOTE] = ACTIONS(2440), + [anon_sym_Static] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_STATIC] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym__java_block_open] = ACTIONS(2443), + [sym__static_type_prefix] = ACTIONS(2443), }, [STATE(760)] = { - [sym_identifier] = ACTIONS(2562), - [anon_sym_DOT] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_Query] = ACTIONS(2562), - [anon_sym_query] = ACTIONS(2562), - [anon_sym_QUERY] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2562), - [sym_optional_chain] = ACTIONS(2564), - [sym_static_chain] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_GT_GT_GT] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2564), - [anon_sym_BSLASH] = ACTIONS(2562), - [anon_sym_STAR_STAR] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2564), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2564), - [anon_sym_LT_GT] = ACTIONS(2564), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2564), - [aux_sym_binary_expression_token1] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2562), - [aux_sym_binary_expression_token2] = ACTIONS(2562), - [aux_sym_binary_expression_token3] = ACTIONS(2562), - [aux_sym_binary_expression_token4] = ACTIONS(2564), - [aux_sym_binary_expression_token5] = ACTIONS(2564), - [aux_sym_binary_expression_token6] = ACTIONS(2564), - [anon_sym_QMARK_QMARK] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2562), - [anon_sym_TILDE] = ACTIONS(2564), - [aux_sym_unary_operator_token1] = ACTIONS(2562), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2562), - [aux_sym_number_token2] = ACTIONS(2562), - [anon_sym_This] = ACTIONS(2562), - [anon_sym_this] = ACTIONS(2562), - [anon_sym_THIS] = ACTIONS(2562), - [anon_sym_Super] = ACTIONS(2562), - [anon_sym_super] = ACTIONS(2562), - [anon_sym_SUPER] = ACTIONS(2562), - [anon_sym_True] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2562), - [anon_sym_TRUE] = ACTIONS(2562), - [anon_sym_False] = ACTIONS(2562), - [anon_sym_false] = ACTIONS(2562), - [anon_sym_FALSE] = ACTIONS(2562), - [anon_sym_Null] = ACTIONS(2562), - [anon_sym_null] = ACTIONS(2562), - [anon_sym_NULL] = ACTIONS(2562), - [anon_sym_Undefined] = ACTIONS(2562), - [anon_sym_undefined] = ACTIONS(2562), - [anon_sym_UNDEFINED] = ACTIONS(2562), - [anon_sym_get] = ACTIONS(2562), - [anon_sym_set] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(2562), - [sym_hash_empty] = ACTIONS(2564), - [anon_sym_export] = ACTIONS(2562), - [anon_sym_QueryExecute] = ACTIONS(2562), - [anon_sym_queryexecute] = ACTIONS(2562), - [anon_sym_QUERYEXECUTE] = ACTIONS(2562), - [anon_sym_queryExecute] = ACTIONS(2562), - [anon_sym_BQUOTE] = ACTIONS(2564), - [anon_sym_Abstract] = ACTIONS(2562), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_ABSTRACT] = ACTIONS(2562), - [anon_sym_Component] = ACTIONS(2562), - [anon_sym_component] = ACTIONS(2562), - [anon_sym_COMPONENT] = ACTIONS(2562), - [anon_sym_Debugger] = ACTIONS(2562), - [anon_sym_debugger] = ACTIONS(2562), - [anon_sym_DEBUGGER] = ACTIONS(2562), - [anon_sym_Final] = ACTIONS(2562), - [anon_sym_final] = ACTIONS(2562), - [anon_sym_FINAL] = ACTIONS(2562), - [anon_sym_Function] = ACTIONS(2562), - [anon_sym_function] = ACTIONS(2562), - [anon_sym_FUNCTION] = ACTIONS(2562), - [anon_sym_In] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2562), - [anon_sym_IN] = ACTIONS(2562), - [anon_sym_Include] = ACTIONS(2562), - [anon_sym_include] = ACTIONS(2562), - [anon_sym_INCLUDE] = ACTIONS(2562), - [anon_sym_InstanceOf] = ACTIONS(2562), - [anon_sym_instanceof] = ACTIONS(2562), - [anon_sym_INSTANCEOF] = ACTIONS(2562), - [anon_sym_instanceOf] = ACTIONS(2562), - [anon_sym_New] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_NEW] = ACTIONS(2562), - [anon_sym_Package] = ACTIONS(2562), - [anon_sym_package] = ACTIONS(2562), - [anon_sym_PACKAGE] = ACTIONS(2562), - [anon_sym_Private] = ACTIONS(2562), - [anon_sym_private] = ACTIONS(2562), - [anon_sym_PRIVATE] = ACTIONS(2562), - [anon_sym_Public] = ACTIONS(2562), - [anon_sym_public] = ACTIONS(2562), - [anon_sym_PUBLIC] = ACTIONS(2562), - [anon_sym_Remote] = ACTIONS(2562), - [anon_sym_remote] = ACTIONS(2562), - [anon_sym_REMOTE] = ACTIONS(2562), - [anon_sym_Static] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_STATIC] = ACTIONS(2562), - [sym__ternary_qmark] = ACTIONS(2564), - [sym__elvis_operator] = ACTIONS(2564), - [sym_logical_or] = ACTIONS(2564), - [sym__java_block_open] = ACTIONS(2564), - [sym__static_type_prefix] = ACTIONS(2564), + [sym_identifier] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_Query] = ACTIONS(2446), + [anon_sym_query] = ACTIONS(2446), + [anon_sym_QUERY] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2449), + [aux_sym_unary_operator_token1] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [anon_sym_SQUOTE] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2446), + [aux_sym_number_token2] = ACTIONS(2446), + [anon_sym_This] = ACTIONS(2446), + [anon_sym_this] = ACTIONS(2446), + [anon_sym_THIS] = ACTIONS(2446), + [anon_sym_Super] = ACTIONS(2446), + [anon_sym_super] = ACTIONS(2446), + [anon_sym_SUPER] = ACTIONS(2446), + [anon_sym_True] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2446), + [anon_sym_TRUE] = ACTIONS(2446), + [anon_sym_False] = ACTIONS(2446), + [anon_sym_false] = ACTIONS(2446), + [anon_sym_FALSE] = ACTIONS(2446), + [anon_sym_Null] = ACTIONS(2446), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_NULL] = ACTIONS(2446), + [anon_sym_Undefined] = ACTIONS(2446), + [anon_sym_undefined] = ACTIONS(2446), + [anon_sym_UNDEFINED] = ACTIONS(2446), + [anon_sym_get] = ACTIONS(2446), + [anon_sym_set] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [sym_hash_empty] = ACTIONS(2449), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_QueryExecute] = ACTIONS(2446), + [anon_sym_queryexecute] = ACTIONS(2446), + [anon_sym_QUERYEXECUTE] = ACTIONS(2446), + [anon_sym_queryExecute] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2449), + [anon_sym_Abstract] = ACTIONS(2446), + [anon_sym_abstract] = ACTIONS(2446), + [anon_sym_ABSTRACT] = ACTIONS(2446), + [anon_sym_Component] = ACTIONS(2446), + [anon_sym_component] = ACTIONS(2446), + [anon_sym_COMPONENT] = ACTIONS(2446), + [anon_sym_Debugger] = ACTIONS(2446), + [anon_sym_debugger] = ACTIONS(2446), + [anon_sym_DEBUGGER] = ACTIONS(2446), + [anon_sym_Final] = ACTIONS(2446), + [anon_sym_final] = ACTIONS(2446), + [anon_sym_FINAL] = ACTIONS(2446), + [anon_sym_Function] = ACTIONS(2446), + [anon_sym_function] = ACTIONS(2446), + [anon_sym_FUNCTION] = ACTIONS(2446), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_Include] = ACTIONS(2446), + [anon_sym_include] = ACTIONS(2446), + [anon_sym_INCLUDE] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [anon_sym_New] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2446), + [anon_sym_NEW] = ACTIONS(2446), + [anon_sym_Package] = ACTIONS(2446), + [anon_sym_package] = ACTIONS(2446), + [anon_sym_PACKAGE] = ACTIONS(2446), + [anon_sym_Private] = ACTIONS(2446), + [anon_sym_private] = ACTIONS(2446), + [anon_sym_PRIVATE] = ACTIONS(2446), + [anon_sym_Public] = ACTIONS(2446), + [anon_sym_public] = ACTIONS(2446), + [anon_sym_PUBLIC] = ACTIONS(2446), + [anon_sym_Remote] = ACTIONS(2446), + [anon_sym_remote] = ACTIONS(2446), + [anon_sym_REMOTE] = ACTIONS(2446), + [anon_sym_Static] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_STATIC] = ACTIONS(2446), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym__java_block_open] = ACTIONS(2449), + [sym__static_type_prefix] = ACTIONS(2449), }, [STATE(761)] = { - [sym_identifier] = ACTIONS(2574), - [anon_sym_DOT] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_Query] = ACTIONS(2574), - [anon_sym_query] = ACTIONS(2574), - [anon_sym_QUERY] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2574), - [sym_optional_chain] = ACTIONS(2576), - [sym_static_chain] = ACTIONS(2576), - [anon_sym_AMP_AMP] = ACTIONS(2576), - [anon_sym_PIPE_PIPE] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2574), - [anon_sym_GT_GT_GT] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_CARET] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2576), - [anon_sym_BSLASH] = ACTIONS(2574), - [anon_sym_STAR_STAR] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2576), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2576), - [anon_sym_LT_GT] = ACTIONS(2576), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2576), - [aux_sym_binary_expression_token1] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2576), - [anon_sym_GT] = ACTIONS(2574), - [aux_sym_binary_expression_token2] = ACTIONS(2574), - [aux_sym_binary_expression_token3] = ACTIONS(2574), - [aux_sym_binary_expression_token4] = ACTIONS(2576), - [aux_sym_binary_expression_token5] = ACTIONS(2576), - [aux_sym_binary_expression_token6] = ACTIONS(2576), - [anon_sym_QMARK_QMARK] = ACTIONS(2576), - [anon_sym_BANG] = ACTIONS(2574), - [anon_sym_TILDE] = ACTIONS(2576), - [aux_sym_unary_operator_token1] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2576), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2574), - [aux_sym_number_token2] = ACTIONS(2574), - [anon_sym_This] = ACTIONS(2574), - [anon_sym_this] = ACTIONS(2574), - [anon_sym_THIS] = ACTIONS(2574), - [anon_sym_Super] = ACTIONS(2574), - [anon_sym_super] = ACTIONS(2574), - [anon_sym_SUPER] = ACTIONS(2574), - [anon_sym_True] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2574), - [anon_sym_TRUE] = ACTIONS(2574), - [anon_sym_False] = ACTIONS(2574), - [anon_sym_false] = ACTIONS(2574), - [anon_sym_FALSE] = ACTIONS(2574), - [anon_sym_Null] = ACTIONS(2574), - [anon_sym_null] = ACTIONS(2574), - [anon_sym_NULL] = ACTIONS(2574), - [anon_sym_Undefined] = ACTIONS(2574), - [anon_sym_undefined] = ACTIONS(2574), - [anon_sym_UNDEFINED] = ACTIONS(2574), - [anon_sym_get] = ACTIONS(2574), - [anon_sym_set] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(2574), - [sym_hash_empty] = ACTIONS(2576), - [anon_sym_export] = ACTIONS(2574), - [anon_sym_QueryExecute] = ACTIONS(2574), - [anon_sym_queryexecute] = ACTIONS(2574), - [anon_sym_QUERYEXECUTE] = ACTIONS(2574), - [anon_sym_queryExecute] = ACTIONS(2574), - [anon_sym_BQUOTE] = ACTIONS(2576), - [anon_sym_Abstract] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2574), - [anon_sym_ABSTRACT] = ACTIONS(2574), - [anon_sym_Component] = ACTIONS(2574), - [anon_sym_component] = ACTIONS(2574), - [anon_sym_COMPONENT] = ACTIONS(2574), - [anon_sym_Debugger] = ACTIONS(2574), - [anon_sym_debugger] = ACTIONS(2574), - [anon_sym_DEBUGGER] = ACTIONS(2574), - [anon_sym_Final] = ACTIONS(2574), - [anon_sym_final] = ACTIONS(2574), - [anon_sym_FINAL] = ACTIONS(2574), - [anon_sym_Function] = ACTIONS(2574), - [anon_sym_function] = ACTIONS(2574), - [anon_sym_FUNCTION] = ACTIONS(2574), - [anon_sym_In] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [anon_sym_IN] = ACTIONS(2574), - [anon_sym_Include] = ACTIONS(2574), - [anon_sym_include] = ACTIONS(2574), - [anon_sym_INCLUDE] = ACTIONS(2574), - [anon_sym_InstanceOf] = ACTIONS(2574), - [anon_sym_instanceof] = ACTIONS(2574), - [anon_sym_INSTANCEOF] = ACTIONS(2574), - [anon_sym_instanceOf] = ACTIONS(2574), - [anon_sym_New] = ACTIONS(2574), - [anon_sym_new] = ACTIONS(2574), - [anon_sym_NEW] = ACTIONS(2574), - [anon_sym_Package] = ACTIONS(2574), - [anon_sym_package] = ACTIONS(2574), - [anon_sym_PACKAGE] = ACTIONS(2574), - [anon_sym_Private] = ACTIONS(2574), - [anon_sym_private] = ACTIONS(2574), - [anon_sym_PRIVATE] = ACTIONS(2574), - [anon_sym_Public] = ACTIONS(2574), - [anon_sym_public] = ACTIONS(2574), - [anon_sym_PUBLIC] = ACTIONS(2574), - [anon_sym_Remote] = ACTIONS(2574), - [anon_sym_remote] = ACTIONS(2574), - [anon_sym_REMOTE] = ACTIONS(2574), - [anon_sym_Static] = ACTIONS(2574), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_STATIC] = ACTIONS(2574), - [sym__ternary_qmark] = ACTIONS(2576), - [sym__elvis_operator] = ACTIONS(2576), - [sym_logical_or] = ACTIONS(2576), - [sym__java_block_open] = ACTIONS(2576), - [sym__static_type_prefix] = ACTIONS(2576), + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_Query] = ACTIONS(1090), + [anon_sym_query] = ACTIONS(1090), + [anon_sym_QUERY] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1087), + [aux_sym_unary_operator_token1] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1090), + [aux_sym_number_token2] = ACTIONS(1090), + [anon_sym_This] = ACTIONS(1090), + [anon_sym_this] = ACTIONS(1090), + [anon_sym_THIS] = ACTIONS(1090), + [anon_sym_Super] = ACTIONS(1090), + [anon_sym_super] = ACTIONS(1090), + [anon_sym_SUPER] = ACTIONS(1090), + [anon_sym_True] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_TRUE] = ACTIONS(1090), + [anon_sym_False] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_FALSE] = ACTIONS(1090), + [anon_sym_Null] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [anon_sym_NULL] = ACTIONS(1090), + [anon_sym_Undefined] = ACTIONS(1090), + [anon_sym_undefined] = ACTIONS(1090), + [anon_sym_UNDEFINED] = ACTIONS(1090), + [anon_sym_get] = ACTIONS(1090), + [anon_sym_set] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(1090), + [sym_hash_empty] = ACTIONS(1087), + [anon_sym_export] = ACTIONS(1090), + [anon_sym_QueryExecute] = ACTIONS(1090), + [anon_sym_queryexecute] = ACTIONS(1090), + [anon_sym_QUERYEXECUTE] = ACTIONS(1090), + [anon_sym_queryExecute] = ACTIONS(1090), + [anon_sym_BQUOTE] = ACTIONS(1087), + [anon_sym_Abstract] = ACTIONS(1090), + [anon_sym_abstract] = ACTIONS(1090), + [anon_sym_ABSTRACT] = ACTIONS(1090), + [anon_sym_Component] = ACTIONS(1090), + [anon_sym_component] = ACTIONS(1090), + [anon_sym_COMPONENT] = ACTIONS(1090), + [anon_sym_Debugger] = ACTIONS(1090), + [anon_sym_debugger] = ACTIONS(1090), + [anon_sym_DEBUGGER] = ACTIONS(1090), + [anon_sym_Final] = ACTIONS(1090), + [anon_sym_final] = ACTIONS(1090), + [anon_sym_FINAL] = ACTIONS(1090), + [anon_sym_Function] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_FUNCTION] = ACTIONS(1090), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(1090), + [anon_sym_include] = ACTIONS(1090), + [anon_sym_INCLUDE] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_New] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_NEW] = ACTIONS(1090), + [anon_sym_Package] = ACTIONS(1090), + [anon_sym_package] = ACTIONS(1090), + [anon_sym_PACKAGE] = ACTIONS(1090), + [anon_sym_Private] = ACTIONS(1090), + [anon_sym_private] = ACTIONS(1090), + [anon_sym_PRIVATE] = ACTIONS(1090), + [anon_sym_Public] = ACTIONS(1090), + [anon_sym_public] = ACTIONS(1090), + [anon_sym_PUBLIC] = ACTIONS(1090), + [anon_sym_Remote] = ACTIONS(1090), + [anon_sym_remote] = ACTIONS(1090), + [anon_sym_REMOTE] = ACTIONS(1090), + [anon_sym_Static] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_STATIC] = ACTIONS(1090), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym__java_block_open] = ACTIONS(1087), + [sym__static_type_prefix] = ACTIONS(1087), }, [STATE(762)] = { - [sym_identifier] = ACTIONS(2558), - [anon_sym_DOT] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_Query] = ACTIONS(2558), - [anon_sym_query] = ACTIONS(2558), - [anon_sym_QUERY] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2558), - [sym_optional_chain] = ACTIONS(2560), - [sym_static_chain] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_GT_GT_GT] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2560), - [anon_sym_BSLASH] = ACTIONS(2558), - [anon_sym_STAR_STAR] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2560), - [anon_sym_LT_GT] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2560), - [aux_sym_binary_expression_token1] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2558), - [aux_sym_binary_expression_token2] = ACTIONS(2558), - [aux_sym_binary_expression_token3] = ACTIONS(2558), - [aux_sym_binary_expression_token4] = ACTIONS(2560), - [aux_sym_binary_expression_token5] = ACTIONS(2560), - [aux_sym_binary_expression_token6] = ACTIONS(2560), - [anon_sym_QMARK_QMARK] = ACTIONS(2560), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2560), - [aux_sym_unary_operator_token1] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2558), - [aux_sym_number_token2] = ACTIONS(2558), - [anon_sym_This] = ACTIONS(2558), - [anon_sym_this] = ACTIONS(2558), - [anon_sym_THIS] = ACTIONS(2558), - [anon_sym_Super] = ACTIONS(2558), - [anon_sym_super] = ACTIONS(2558), - [anon_sym_SUPER] = ACTIONS(2558), - [anon_sym_True] = ACTIONS(2558), - [anon_sym_true] = ACTIONS(2558), - [anon_sym_TRUE] = ACTIONS(2558), - [anon_sym_False] = ACTIONS(2558), - [anon_sym_false] = ACTIONS(2558), - [anon_sym_FALSE] = ACTIONS(2558), - [anon_sym_Null] = ACTIONS(2558), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_NULL] = ACTIONS(2558), - [anon_sym_Undefined] = ACTIONS(2558), - [anon_sym_undefined] = ACTIONS(2558), - [anon_sym_UNDEFINED] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_POUND] = ACTIONS(2558), - [sym_hash_empty] = ACTIONS(2560), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_QueryExecute] = ACTIONS(2558), - [anon_sym_queryexecute] = ACTIONS(2558), - [anon_sym_QUERYEXECUTE] = ACTIONS(2558), - [anon_sym_queryExecute] = ACTIONS(2558), - [anon_sym_BQUOTE] = ACTIONS(2560), - [anon_sym_Abstract] = ACTIONS(2558), - [anon_sym_abstract] = ACTIONS(2558), - [anon_sym_ABSTRACT] = ACTIONS(2558), - [anon_sym_Component] = ACTIONS(2558), - [anon_sym_component] = ACTIONS(2558), - [anon_sym_COMPONENT] = ACTIONS(2558), - [anon_sym_Debugger] = ACTIONS(2558), - [anon_sym_debugger] = ACTIONS(2558), - [anon_sym_DEBUGGER] = ACTIONS(2558), - [anon_sym_Final] = ACTIONS(2558), - [anon_sym_final] = ACTIONS(2558), - [anon_sym_FINAL] = ACTIONS(2558), - [anon_sym_Function] = ACTIONS(2558), - [anon_sym_function] = ACTIONS(2558), - [anon_sym_FUNCTION] = ACTIONS(2558), - [anon_sym_In] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_IN] = ACTIONS(2558), - [anon_sym_Include] = ACTIONS(2558), - [anon_sym_include] = ACTIONS(2558), - [anon_sym_INCLUDE] = ACTIONS(2558), - [anon_sym_InstanceOf] = ACTIONS(2558), - [anon_sym_instanceof] = ACTIONS(2558), - [anon_sym_INSTANCEOF] = ACTIONS(2558), - [anon_sym_instanceOf] = ACTIONS(2558), - [anon_sym_New] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_NEW] = ACTIONS(2558), - [anon_sym_Package] = ACTIONS(2558), - [anon_sym_package] = ACTIONS(2558), - [anon_sym_PACKAGE] = ACTIONS(2558), - [anon_sym_Private] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_PRIVATE] = ACTIONS(2558), - [anon_sym_Public] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_PUBLIC] = ACTIONS(2558), - [anon_sym_Remote] = ACTIONS(2558), - [anon_sym_remote] = ACTIONS(2558), - [anon_sym_REMOTE] = ACTIONS(2558), - [anon_sym_Static] = ACTIONS(2558), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_STATIC] = ACTIONS(2558), - [sym__ternary_qmark] = ACTIONS(2560), - [sym__elvis_operator] = ACTIONS(2560), - [sym_logical_or] = ACTIONS(2560), - [sym__java_block_open] = ACTIONS(2560), - [sym__static_type_prefix] = ACTIONS(2560), + [sym_identifier] = ACTIONS(2508), + [anon_sym_DOT] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_Query] = ACTIONS(2508), + [anon_sym_query] = ACTIONS(2508), + [anon_sym_QUERY] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2508), + [sym_optional_chain] = ACTIONS(2510), + [sym_static_chain] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_BSLASH] = ACTIONS(2508), + [anon_sym_STAR_STAR] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), + [anon_sym_LT_GT] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), + [aux_sym_binary_expression_token1] = ACTIONS(2510), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [aux_sym_binary_expression_token2] = ACTIONS(2508), + [aux_sym_binary_expression_token3] = ACTIONS(2508), + [aux_sym_binary_expression_token4] = ACTIONS(2510), + [aux_sym_binary_expression_token5] = ACTIONS(2510), + [aux_sym_binary_expression_token6] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_TILDE] = ACTIONS(2510), + [aux_sym_unary_operator_token1] = ACTIONS(2508), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2508), + [aux_sym_number_token2] = ACTIONS(2508), + [anon_sym_This] = ACTIONS(2508), + [anon_sym_this] = ACTIONS(2508), + [anon_sym_THIS] = ACTIONS(2508), + [anon_sym_Super] = ACTIONS(2508), + [anon_sym_super] = ACTIONS(2508), + [anon_sym_SUPER] = ACTIONS(2508), + [anon_sym_True] = ACTIONS(2508), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_TRUE] = ACTIONS(2508), + [anon_sym_False] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [anon_sym_FALSE] = ACTIONS(2508), + [anon_sym_Null] = ACTIONS(2508), + [anon_sym_null] = ACTIONS(2508), + [anon_sym_NULL] = ACTIONS(2508), + [anon_sym_Undefined] = ACTIONS(2508), + [anon_sym_undefined] = ACTIONS(2508), + [anon_sym_UNDEFINED] = ACTIONS(2508), + [anon_sym_get] = ACTIONS(2508), + [anon_sym_set] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [sym_hash_empty] = ACTIONS(2510), + [anon_sym_export] = ACTIONS(2508), + [anon_sym_QueryExecute] = ACTIONS(2508), + [anon_sym_queryexecute] = ACTIONS(2508), + [anon_sym_QUERYEXECUTE] = ACTIONS(2508), + [anon_sym_queryExecute] = ACTIONS(2508), + [anon_sym_BQUOTE] = ACTIONS(2510), + [anon_sym_Abstract] = ACTIONS(2508), + [anon_sym_abstract] = ACTIONS(2508), + [anon_sym_ABSTRACT] = ACTIONS(2508), + [anon_sym_Component] = ACTIONS(2508), + [anon_sym_component] = ACTIONS(2508), + [anon_sym_COMPONENT] = ACTIONS(2508), + [anon_sym_Debugger] = ACTIONS(2508), + [anon_sym_debugger] = ACTIONS(2508), + [anon_sym_DEBUGGER] = ACTIONS(2508), + [anon_sym_Final] = ACTIONS(2508), + [anon_sym_final] = ACTIONS(2508), + [anon_sym_FINAL] = ACTIONS(2508), + [anon_sym_Function] = ACTIONS(2508), + [anon_sym_function] = ACTIONS(2508), + [anon_sym_FUNCTION] = ACTIONS(2508), + [anon_sym_In] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_IN] = ACTIONS(2508), + [anon_sym_Include] = ACTIONS(2508), + [anon_sym_include] = ACTIONS(2508), + [anon_sym_INCLUDE] = ACTIONS(2508), + [anon_sym_InstanceOf] = ACTIONS(2508), + [anon_sym_instanceof] = ACTIONS(2508), + [anon_sym_INSTANCEOF] = ACTIONS(2508), + [anon_sym_instanceOf] = ACTIONS(2508), + [anon_sym_New] = ACTIONS(2508), + [anon_sym_new] = ACTIONS(2508), + [anon_sym_NEW] = ACTIONS(2508), + [anon_sym_Package] = ACTIONS(2508), + [anon_sym_package] = ACTIONS(2508), + [anon_sym_PACKAGE] = ACTIONS(2508), + [anon_sym_Private] = ACTIONS(2508), + [anon_sym_private] = ACTIONS(2508), + [anon_sym_PRIVATE] = ACTIONS(2508), + [anon_sym_Public] = ACTIONS(2508), + [anon_sym_public] = ACTIONS(2508), + [anon_sym_PUBLIC] = ACTIONS(2508), + [anon_sym_Remote] = ACTIONS(2508), + [anon_sym_remote] = ACTIONS(2508), + [anon_sym_REMOTE] = ACTIONS(2508), + [anon_sym_Static] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_STATIC] = ACTIONS(2508), + [sym__ternary_qmark] = ACTIONS(2510), + [sym__elvis_operator] = ACTIONS(2510), + [sym_logical_or] = ACTIONS(2510), + [sym__java_block_open] = ACTIONS(2510), + [sym__static_type_prefix] = ACTIONS(2510), }, [STATE(763)] = { - [sym_identifier] = ACTIONS(2526), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_Query] = ACTIONS(2526), - [anon_sym_query] = ACTIONS(2526), - [anon_sym_QUERY] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2526), - [sym_optional_chain] = ACTIONS(2528), - [sym_static_chain] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_GT_GT_GT] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_BSLASH] = ACTIONS(2526), - [anon_sym_STAR_STAR] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2528), - [anon_sym_LT_GT] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2528), - [aux_sym_binary_expression_token1] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [aux_sym_binary_expression_token2] = ACTIONS(2526), - [aux_sym_binary_expression_token3] = ACTIONS(2526), - [aux_sym_binary_expression_token4] = ACTIONS(2528), - [aux_sym_binary_expression_token5] = ACTIONS(2528), - [aux_sym_binary_expression_token6] = ACTIONS(2528), - [anon_sym_QMARK_QMARK] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2528), - [aux_sym_unary_operator_token1] = ACTIONS(2526), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2526), - [aux_sym_number_token2] = ACTIONS(2526), - [anon_sym_This] = ACTIONS(2526), - [anon_sym_this] = ACTIONS(2526), - [anon_sym_THIS] = ACTIONS(2526), - [anon_sym_Super] = ACTIONS(2526), - [anon_sym_super] = ACTIONS(2526), - [anon_sym_SUPER] = ACTIONS(2526), - [anon_sym_True] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2526), - [anon_sym_TRUE] = ACTIONS(2526), - [anon_sym_False] = ACTIONS(2526), - [anon_sym_false] = ACTIONS(2526), - [anon_sym_FALSE] = ACTIONS(2526), - [anon_sym_Null] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2526), - [anon_sym_NULL] = ACTIONS(2526), - [anon_sym_Undefined] = ACTIONS(2526), - [anon_sym_undefined] = ACTIONS(2526), - [anon_sym_UNDEFINED] = ACTIONS(2526), - [anon_sym_get] = ACTIONS(2526), - [anon_sym_set] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(2526), - [sym_hash_empty] = ACTIONS(2528), - [anon_sym_export] = ACTIONS(2526), - [anon_sym_QueryExecute] = ACTIONS(2526), - [anon_sym_queryexecute] = ACTIONS(2526), - [anon_sym_QUERYEXECUTE] = ACTIONS(2526), - [anon_sym_queryExecute] = ACTIONS(2526), - [anon_sym_BQUOTE] = ACTIONS(2528), - [anon_sym_Abstract] = ACTIONS(2526), - [anon_sym_abstract] = ACTIONS(2526), - [anon_sym_ABSTRACT] = ACTIONS(2526), - [anon_sym_Component] = ACTIONS(2526), - [anon_sym_component] = ACTIONS(2526), - [anon_sym_COMPONENT] = ACTIONS(2526), - [anon_sym_Debugger] = ACTIONS(2526), - [anon_sym_debugger] = ACTIONS(2526), - [anon_sym_DEBUGGER] = ACTIONS(2526), - [anon_sym_Final] = ACTIONS(2526), - [anon_sym_final] = ACTIONS(2526), - [anon_sym_FINAL] = ACTIONS(2526), - [anon_sym_Function] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2526), - [anon_sym_FUNCTION] = ACTIONS(2526), - [anon_sym_In] = ACTIONS(2526), - [anon_sym_in] = ACTIONS(2526), - [anon_sym_IN] = ACTIONS(2526), - [anon_sym_Include] = ACTIONS(2526), - [anon_sym_include] = ACTIONS(2526), - [anon_sym_INCLUDE] = ACTIONS(2526), - [anon_sym_InstanceOf] = ACTIONS(2526), - [anon_sym_instanceof] = ACTIONS(2526), - [anon_sym_INSTANCEOF] = ACTIONS(2526), - [anon_sym_instanceOf] = ACTIONS(2526), - [anon_sym_New] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_NEW] = ACTIONS(2526), - [anon_sym_Package] = ACTIONS(2526), - [anon_sym_package] = ACTIONS(2526), - [anon_sym_PACKAGE] = ACTIONS(2526), - [anon_sym_Private] = ACTIONS(2526), - [anon_sym_private] = ACTIONS(2526), - [anon_sym_PRIVATE] = ACTIONS(2526), - [anon_sym_Public] = ACTIONS(2526), - [anon_sym_public] = ACTIONS(2526), - [anon_sym_PUBLIC] = ACTIONS(2526), - [anon_sym_Remote] = ACTIONS(2526), - [anon_sym_remote] = ACTIONS(2526), - [anon_sym_REMOTE] = ACTIONS(2526), - [anon_sym_Static] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_STATIC] = ACTIONS(2526), - [sym__ternary_qmark] = ACTIONS(2528), - [sym__elvis_operator] = ACTIONS(2528), - [sym_logical_or] = ACTIONS(2528), - [sym__java_block_open] = ACTIONS(2528), - [sym__static_type_prefix] = ACTIONS(2528), + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_Query] = ACTIONS(2468), + [anon_sym_query] = ACTIONS(2468), + [anon_sym_QUERY] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2468), + [sym_optional_chain] = ACTIONS(2470), + [sym_static_chain] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_BSLASH] = ACTIONS(2468), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_LT_GT] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [aux_sym_binary_expression_token1] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [aux_sym_binary_expression_token2] = ACTIONS(2468), + [aux_sym_binary_expression_token3] = ACTIONS(2468), + [aux_sym_binary_expression_token4] = ACTIONS(2470), + [aux_sym_binary_expression_token5] = ACTIONS(2470), + [aux_sym_binary_expression_token6] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_TILDE] = ACTIONS(2470), + [aux_sym_unary_operator_token1] = ACTIONS(2468), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2468), + [aux_sym_number_token2] = ACTIONS(2468), + [anon_sym_This] = ACTIONS(2468), + [anon_sym_this] = ACTIONS(2468), + [anon_sym_THIS] = ACTIONS(2468), + [anon_sym_Super] = ACTIONS(2468), + [anon_sym_super] = ACTIONS(2468), + [anon_sym_SUPER] = ACTIONS(2468), + [anon_sym_True] = ACTIONS(2468), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_TRUE] = ACTIONS(2468), + [anon_sym_False] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_FALSE] = ACTIONS(2468), + [anon_sym_Null] = ACTIONS(2468), + [anon_sym_null] = ACTIONS(2468), + [anon_sym_NULL] = ACTIONS(2468), + [anon_sym_Undefined] = ACTIONS(2468), + [anon_sym_undefined] = ACTIONS(2468), + [anon_sym_UNDEFINED] = ACTIONS(2468), + [anon_sym_get] = ACTIONS(2468), + [anon_sym_set] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(2468), + [sym_hash_empty] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_QueryExecute] = ACTIONS(2468), + [anon_sym_queryexecute] = ACTIONS(2468), + [anon_sym_QUERYEXECUTE] = ACTIONS(2468), + [anon_sym_queryExecute] = ACTIONS(2468), + [anon_sym_BQUOTE] = ACTIONS(2470), + [anon_sym_Abstract] = ACTIONS(2468), + [anon_sym_abstract] = ACTIONS(2468), + [anon_sym_ABSTRACT] = ACTIONS(2468), + [anon_sym_Component] = ACTIONS(2468), + [anon_sym_component] = ACTIONS(2468), + [anon_sym_COMPONENT] = ACTIONS(2468), + [anon_sym_Debugger] = ACTIONS(2468), + [anon_sym_debugger] = ACTIONS(2468), + [anon_sym_DEBUGGER] = ACTIONS(2468), + [anon_sym_Final] = ACTIONS(2468), + [anon_sym_final] = ACTIONS(2468), + [anon_sym_FINAL] = ACTIONS(2468), + [anon_sym_Function] = ACTIONS(2468), + [anon_sym_function] = ACTIONS(2468), + [anon_sym_FUNCTION] = ACTIONS(2468), + [anon_sym_In] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2468), + [anon_sym_IN] = ACTIONS(2468), + [anon_sym_Include] = ACTIONS(2468), + [anon_sym_include] = ACTIONS(2468), + [anon_sym_INCLUDE] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(2468), + [anon_sym_instanceof] = ACTIONS(2468), + [anon_sym_INSTANCEOF] = ACTIONS(2468), + [anon_sym_instanceOf] = ACTIONS(2468), + [anon_sym_New] = ACTIONS(2468), + [anon_sym_new] = ACTIONS(2468), + [anon_sym_NEW] = ACTIONS(2468), + [anon_sym_Package] = ACTIONS(2468), + [anon_sym_package] = ACTIONS(2468), + [anon_sym_PACKAGE] = ACTIONS(2468), + [anon_sym_Private] = ACTIONS(2468), + [anon_sym_private] = ACTIONS(2468), + [anon_sym_PRIVATE] = ACTIONS(2468), + [anon_sym_Public] = ACTIONS(2468), + [anon_sym_public] = ACTIONS(2468), + [anon_sym_PUBLIC] = ACTIONS(2468), + [anon_sym_Remote] = ACTIONS(2468), + [anon_sym_remote] = ACTIONS(2468), + [anon_sym_REMOTE] = ACTIONS(2468), + [anon_sym_Static] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_STATIC] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2470), + [sym__elvis_operator] = ACTIONS(2470), + [sym_logical_or] = ACTIONS(2470), + [sym__java_block_open] = ACTIONS(2470), + [sym__static_type_prefix] = ACTIONS(2470), }, [STATE(764)] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_Query] = ACTIONS(2502), - [anon_sym_query] = ACTIONS(2502), - [anon_sym_QUERY] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2502), - [sym_optional_chain] = ACTIONS(2504), - [sym_static_chain] = ACTIONS(2504), - [anon_sym_AMP_AMP] = ACTIONS(2504), - [anon_sym_PIPE_PIPE] = ACTIONS(2504), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_GT_GT_GT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_BSLASH] = ACTIONS(2502), - [anon_sym_STAR_STAR] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_LT_EQ] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2504), - [anon_sym_LT_GT] = ACTIONS(2504), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2504), - [aux_sym_binary_expression_token1] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2504), - [anon_sym_GT] = ACTIONS(2502), - [aux_sym_binary_expression_token2] = ACTIONS(2502), - [aux_sym_binary_expression_token3] = ACTIONS(2502), - [aux_sym_binary_expression_token4] = ACTIONS(2504), - [aux_sym_binary_expression_token5] = ACTIONS(2504), - [aux_sym_binary_expression_token6] = ACTIONS(2504), - [anon_sym_QMARK_QMARK] = ACTIONS(2504), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2504), - [aux_sym_unary_operator_token1] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2504), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2502), - [aux_sym_number_token2] = ACTIONS(2502), - [anon_sym_This] = ACTIONS(2502), - [anon_sym_this] = ACTIONS(2502), - [anon_sym_THIS] = ACTIONS(2502), - [anon_sym_Super] = ACTIONS(2502), - [anon_sym_super] = ACTIONS(2502), - [anon_sym_SUPER] = ACTIONS(2502), - [anon_sym_True] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_TRUE] = ACTIONS(2502), - [anon_sym_False] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [anon_sym_FALSE] = ACTIONS(2502), - [anon_sym_Null] = ACTIONS(2502), - [anon_sym_null] = ACTIONS(2502), - [anon_sym_NULL] = ACTIONS(2502), - [anon_sym_Undefined] = ACTIONS(2502), - [anon_sym_undefined] = ACTIONS(2502), - [anon_sym_UNDEFINED] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(2502), - [anon_sym_set] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(2502), - [sym_hash_empty] = ACTIONS(2504), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_QueryExecute] = ACTIONS(2502), - [anon_sym_queryexecute] = ACTIONS(2502), - [anon_sym_QUERYEXECUTE] = ACTIONS(2502), - [anon_sym_queryExecute] = ACTIONS(2502), - [anon_sym_BQUOTE] = ACTIONS(2504), - [anon_sym_Abstract] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2502), - [anon_sym_ABSTRACT] = ACTIONS(2502), - [anon_sym_Component] = ACTIONS(2502), - [anon_sym_component] = ACTIONS(2502), - [anon_sym_COMPONENT] = ACTIONS(2502), - [anon_sym_Debugger] = ACTIONS(2502), - [anon_sym_debugger] = ACTIONS(2502), - [anon_sym_DEBUGGER] = ACTIONS(2502), - [anon_sym_Final] = ACTIONS(2502), - [anon_sym_final] = ACTIONS(2502), - [anon_sym_FINAL] = ACTIONS(2502), - [anon_sym_Function] = ACTIONS(2502), - [anon_sym_function] = ACTIONS(2502), - [anon_sym_FUNCTION] = ACTIONS(2502), - [anon_sym_In] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_IN] = ACTIONS(2502), - [anon_sym_Include] = ACTIONS(2502), - [anon_sym_include] = ACTIONS(2502), - [anon_sym_INCLUDE] = ACTIONS(2502), - [anon_sym_InstanceOf] = ACTIONS(2502), - [anon_sym_instanceof] = ACTIONS(2502), - [anon_sym_INSTANCEOF] = ACTIONS(2502), - [anon_sym_instanceOf] = ACTIONS(2502), - [anon_sym_New] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_NEW] = ACTIONS(2502), - [anon_sym_Package] = ACTIONS(2502), - [anon_sym_package] = ACTIONS(2502), - [anon_sym_PACKAGE] = ACTIONS(2502), - [anon_sym_Private] = ACTIONS(2502), - [anon_sym_private] = ACTIONS(2502), - [anon_sym_PRIVATE] = ACTIONS(2502), - [anon_sym_Public] = ACTIONS(2502), - [anon_sym_public] = ACTIONS(2502), - [anon_sym_PUBLIC] = ACTIONS(2502), - [anon_sym_Remote] = ACTIONS(2502), - [anon_sym_remote] = ACTIONS(2502), - [anon_sym_REMOTE] = ACTIONS(2502), - [anon_sym_Static] = ACTIONS(2502), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_STATIC] = ACTIONS(2502), - [sym__ternary_qmark] = ACTIONS(2504), - [sym__elvis_operator] = ACTIONS(2504), - [sym_logical_or] = ACTIONS(2504), - [sym__java_block_open] = ACTIONS(2504), - [sym__static_type_prefix] = ACTIONS(2504), + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2464), + [anon_sym_query] = ACTIONS(2464), + [anon_sym_QUERY] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2466), + [aux_sym_unary_operator_token1] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2464), + [aux_sym_number_token2] = ACTIONS(2464), + [anon_sym_This] = ACTIONS(2464), + [anon_sym_this] = ACTIONS(2464), + [anon_sym_THIS] = ACTIONS(2464), + [anon_sym_Super] = ACTIONS(2464), + [anon_sym_super] = ACTIONS(2464), + [anon_sym_SUPER] = ACTIONS(2464), + [anon_sym_True] = ACTIONS(2464), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_TRUE] = ACTIONS(2464), + [anon_sym_False] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_FALSE] = ACTIONS(2464), + [anon_sym_Null] = ACTIONS(2464), + [anon_sym_null] = ACTIONS(2464), + [anon_sym_NULL] = ACTIONS(2464), + [anon_sym_Undefined] = ACTIONS(2464), + [anon_sym_undefined] = ACTIONS(2464), + [anon_sym_UNDEFINED] = ACTIONS(2464), + [anon_sym_get] = ACTIONS(2464), + [anon_sym_set] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2464), + [sym_hash_empty] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_QueryExecute] = ACTIONS(2464), + [anon_sym_queryexecute] = ACTIONS(2464), + [anon_sym_QUERYEXECUTE] = ACTIONS(2464), + [anon_sym_queryExecute] = ACTIONS(2464), + [anon_sym_BQUOTE] = ACTIONS(2466), + [anon_sym_Abstract] = ACTIONS(2464), + [anon_sym_abstract] = ACTIONS(2464), + [anon_sym_ABSTRACT] = ACTIONS(2464), + [anon_sym_Component] = ACTIONS(2464), + [anon_sym_component] = ACTIONS(2464), + [anon_sym_COMPONENT] = ACTIONS(2464), + [anon_sym_Debugger] = ACTIONS(2464), + [anon_sym_debugger] = ACTIONS(2464), + [anon_sym_DEBUGGER] = ACTIONS(2464), + [anon_sym_Final] = ACTIONS(2464), + [anon_sym_final] = ACTIONS(2464), + [anon_sym_FINAL] = ACTIONS(2464), + [anon_sym_Function] = ACTIONS(2464), + [anon_sym_function] = ACTIONS(2464), + [anon_sym_FUNCTION] = ACTIONS(2464), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2464), + [anon_sym_include] = ACTIONS(2464), + [anon_sym_INCLUDE] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2464), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_NEW] = ACTIONS(2464), + [anon_sym_Package] = ACTIONS(2464), + [anon_sym_package] = ACTIONS(2464), + [anon_sym_PACKAGE] = ACTIONS(2464), + [anon_sym_Private] = ACTIONS(2464), + [anon_sym_private] = ACTIONS(2464), + [anon_sym_PRIVATE] = ACTIONS(2464), + [anon_sym_Public] = ACTIONS(2464), + [anon_sym_public] = ACTIONS(2464), + [anon_sym_PUBLIC] = ACTIONS(2464), + [anon_sym_Remote] = ACTIONS(2464), + [anon_sym_remote] = ACTIONS(2464), + [anon_sym_REMOTE] = ACTIONS(2464), + [anon_sym_Static] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_STATIC] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(3140), + [sym__elvis_operator] = ACTIONS(3142), + [sym_logical_or] = ACTIONS(3114), + [sym__java_block_open] = ACTIONS(2466), + [sym__static_type_prefix] = ACTIONS(2466), }, [STATE(765)] = { - [sym_identifier] = ACTIONS(2554), - [anon_sym_DOT] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_Query] = ACTIONS(2554), - [anon_sym_query] = ACTIONS(2554), - [anon_sym_QUERY] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2554), - [sym_optional_chain] = ACTIONS(2556), - [sym_static_chain] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2554), - [anon_sym_GT_GT_GT] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2556), - [anon_sym_BSLASH] = ACTIONS(2554), - [anon_sym_STAR_STAR] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2556), - [anon_sym_LT_GT] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2556), - [aux_sym_binary_expression_token1] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2554), - [aux_sym_binary_expression_token2] = ACTIONS(2554), - [aux_sym_binary_expression_token3] = ACTIONS(2554), - [aux_sym_binary_expression_token4] = ACTIONS(2556), - [aux_sym_binary_expression_token5] = ACTIONS(2556), - [aux_sym_binary_expression_token6] = ACTIONS(2556), - [anon_sym_QMARK_QMARK] = ACTIONS(2556), - [anon_sym_BANG] = ACTIONS(2554), - [anon_sym_TILDE] = ACTIONS(2556), - [aux_sym_unary_operator_token1] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2556), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2554), - [aux_sym_number_token2] = ACTIONS(2554), - [anon_sym_This] = ACTIONS(2554), - [anon_sym_this] = ACTIONS(2554), - [anon_sym_THIS] = ACTIONS(2554), - [anon_sym_Super] = ACTIONS(2554), - [anon_sym_super] = ACTIONS(2554), - [anon_sym_SUPER] = ACTIONS(2554), - [anon_sym_True] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2554), - [anon_sym_TRUE] = ACTIONS(2554), - [anon_sym_False] = ACTIONS(2554), - [anon_sym_false] = ACTIONS(2554), - [anon_sym_FALSE] = ACTIONS(2554), - [anon_sym_Null] = ACTIONS(2554), - [anon_sym_null] = ACTIONS(2554), - [anon_sym_NULL] = ACTIONS(2554), - [anon_sym_Undefined] = ACTIONS(2554), - [anon_sym_undefined] = ACTIONS(2554), - [anon_sym_UNDEFINED] = ACTIONS(2554), - [anon_sym_get] = ACTIONS(2554), - [anon_sym_set] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(2554), - [sym_hash_empty] = ACTIONS(2556), - [anon_sym_export] = ACTIONS(2554), - [anon_sym_QueryExecute] = ACTIONS(2554), - [anon_sym_queryexecute] = ACTIONS(2554), - [anon_sym_QUERYEXECUTE] = ACTIONS(2554), - [anon_sym_queryExecute] = ACTIONS(2554), - [anon_sym_BQUOTE] = ACTIONS(2556), - [anon_sym_Abstract] = ACTIONS(2554), - [anon_sym_abstract] = ACTIONS(2554), - [anon_sym_ABSTRACT] = ACTIONS(2554), - [anon_sym_Component] = ACTIONS(2554), - [anon_sym_component] = ACTIONS(2554), - [anon_sym_COMPONENT] = ACTIONS(2554), - [anon_sym_Debugger] = ACTIONS(2554), - [anon_sym_debugger] = ACTIONS(2554), - [anon_sym_DEBUGGER] = ACTIONS(2554), - [anon_sym_Final] = ACTIONS(2554), - [anon_sym_final] = ACTIONS(2554), - [anon_sym_FINAL] = ACTIONS(2554), - [anon_sym_Function] = ACTIONS(2554), - [anon_sym_function] = ACTIONS(2554), - [anon_sym_FUNCTION] = ACTIONS(2554), - [anon_sym_In] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [anon_sym_IN] = ACTIONS(2554), - [anon_sym_Include] = ACTIONS(2554), - [anon_sym_include] = ACTIONS(2554), - [anon_sym_INCLUDE] = ACTIONS(2554), - [anon_sym_InstanceOf] = ACTIONS(2554), - [anon_sym_instanceof] = ACTIONS(2554), - [anon_sym_INSTANCEOF] = ACTIONS(2554), - [anon_sym_instanceOf] = ACTIONS(2554), - [anon_sym_New] = ACTIONS(2554), - [anon_sym_new] = ACTIONS(2554), - [anon_sym_NEW] = ACTIONS(2554), - [anon_sym_Package] = ACTIONS(2554), - [anon_sym_package] = ACTIONS(2554), - [anon_sym_PACKAGE] = ACTIONS(2554), - [anon_sym_Private] = ACTIONS(2554), - [anon_sym_private] = ACTIONS(2554), - [anon_sym_PRIVATE] = ACTIONS(2554), - [anon_sym_Public] = ACTIONS(2554), - [anon_sym_public] = ACTIONS(2554), - [anon_sym_PUBLIC] = ACTIONS(2554), - [anon_sym_Remote] = ACTIONS(2554), - [anon_sym_remote] = ACTIONS(2554), - [anon_sym_REMOTE] = ACTIONS(2554), - [anon_sym_Static] = ACTIONS(2554), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_STATIC] = ACTIONS(2554), - [sym__ternary_qmark] = ACTIONS(2556), - [sym__elvis_operator] = ACTIONS(2556), - [sym_logical_or] = ACTIONS(2556), - [sym__java_block_open] = ACTIONS(2556), - [sym__static_type_prefix] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2580), + [anon_sym_DOT] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_Query] = ACTIONS(2580), + [anon_sym_query] = ACTIONS(2580), + [anon_sym_QUERY] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2580), + [sym_optional_chain] = ACTIONS(2582), + [sym_static_chain] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_BSLASH] = ACTIONS(2580), + [anon_sym_STAR_STAR] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2582), + [anon_sym_LT_GT] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2582), + [aux_sym_binary_expression_token1] = ACTIONS(2582), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [aux_sym_binary_expression_token2] = ACTIONS(2580), + [aux_sym_binary_expression_token3] = ACTIONS(2580), + [aux_sym_binary_expression_token4] = ACTIONS(2582), + [aux_sym_binary_expression_token5] = ACTIONS(2582), + [aux_sym_binary_expression_token6] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_TILDE] = ACTIONS(2582), + [aux_sym_unary_operator_token1] = ACTIONS(2580), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2582), + [anon_sym_SQUOTE] = ACTIONS(2582), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2580), + [aux_sym_number_token2] = ACTIONS(2580), + [anon_sym_This] = ACTIONS(2580), + [anon_sym_this] = ACTIONS(2580), + [anon_sym_THIS] = ACTIONS(2580), + [anon_sym_Super] = ACTIONS(2580), + [anon_sym_super] = ACTIONS(2580), + [anon_sym_SUPER] = ACTIONS(2580), + [anon_sym_True] = ACTIONS(2580), + [anon_sym_true] = ACTIONS(2580), + [anon_sym_TRUE] = ACTIONS(2580), + [anon_sym_False] = ACTIONS(2580), + [anon_sym_false] = ACTIONS(2580), + [anon_sym_FALSE] = ACTIONS(2580), + [anon_sym_Null] = ACTIONS(2580), + [anon_sym_null] = ACTIONS(2580), + [anon_sym_NULL] = ACTIONS(2580), + [anon_sym_Undefined] = ACTIONS(2580), + [anon_sym_undefined] = ACTIONS(2580), + [anon_sym_UNDEFINED] = ACTIONS(2580), + [anon_sym_get] = ACTIONS(2580), + [anon_sym_set] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(2580), + [sym_hash_empty] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(2580), + [anon_sym_QueryExecute] = ACTIONS(2580), + [anon_sym_queryexecute] = ACTIONS(2580), + [anon_sym_QUERYEXECUTE] = ACTIONS(2580), + [anon_sym_queryExecute] = ACTIONS(2580), + [anon_sym_BQUOTE] = ACTIONS(2582), + [anon_sym_Abstract] = ACTIONS(2580), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_ABSTRACT] = ACTIONS(2580), + [anon_sym_Component] = ACTIONS(2580), + [anon_sym_component] = ACTIONS(2580), + [anon_sym_COMPONENT] = ACTIONS(2580), + [anon_sym_Debugger] = ACTIONS(2580), + [anon_sym_debugger] = ACTIONS(2580), + [anon_sym_DEBUGGER] = ACTIONS(2580), + [anon_sym_Final] = ACTIONS(2580), + [anon_sym_final] = ACTIONS(2580), + [anon_sym_FINAL] = ACTIONS(2580), + [anon_sym_Function] = ACTIONS(2580), + [anon_sym_function] = ACTIONS(2580), + [anon_sym_FUNCTION] = ACTIONS(2580), + [anon_sym_In] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2580), + [anon_sym_IN] = ACTIONS(2580), + [anon_sym_Include] = ACTIONS(2580), + [anon_sym_include] = ACTIONS(2580), + [anon_sym_INCLUDE] = ACTIONS(2580), + [anon_sym_InstanceOf] = ACTIONS(2580), + [anon_sym_instanceof] = ACTIONS(2580), + [anon_sym_INSTANCEOF] = ACTIONS(2580), + [anon_sym_instanceOf] = ACTIONS(2580), + [anon_sym_New] = ACTIONS(2580), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_NEW] = ACTIONS(2580), + [anon_sym_Package] = ACTIONS(2580), + [anon_sym_package] = ACTIONS(2580), + [anon_sym_PACKAGE] = ACTIONS(2580), + [anon_sym_Private] = ACTIONS(2580), + [anon_sym_private] = ACTIONS(2580), + [anon_sym_PRIVATE] = ACTIONS(2580), + [anon_sym_Public] = ACTIONS(2580), + [anon_sym_public] = ACTIONS(2580), + [anon_sym_PUBLIC] = ACTIONS(2580), + [anon_sym_Remote] = ACTIONS(2580), + [anon_sym_remote] = ACTIONS(2580), + [anon_sym_REMOTE] = ACTIONS(2580), + [anon_sym_Static] = ACTIONS(2580), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_STATIC] = ACTIONS(2580), + [sym__ternary_qmark] = ACTIONS(2582), + [sym__elvis_operator] = ACTIONS(2582), + [sym_logical_or] = ACTIONS(2582), + [sym__java_block_open] = ACTIONS(2582), + [sym__static_type_prefix] = ACTIONS(2582), }, [STATE(766)] = { - [sym_identifier] = ACTIONS(2530), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_Query] = ACTIONS(2530), - [anon_sym_query] = ACTIONS(2530), - [anon_sym_QUERY] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2530), - [sym_optional_chain] = ACTIONS(2532), - [sym_static_chain] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_BSLASH] = ACTIONS(2530), - [anon_sym_STAR_STAR] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2532), - [anon_sym_LT_GT] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2532), - [aux_sym_binary_expression_token1] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2530), - [aux_sym_binary_expression_token2] = ACTIONS(2530), - [aux_sym_binary_expression_token3] = ACTIONS(2530), - [aux_sym_binary_expression_token4] = ACTIONS(2532), - [aux_sym_binary_expression_token5] = ACTIONS(2532), - [aux_sym_binary_expression_token6] = ACTIONS(2532), - [anon_sym_QMARK_QMARK] = ACTIONS(2532), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_TILDE] = ACTIONS(2532), - [aux_sym_unary_operator_token1] = ACTIONS(2530), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(2532), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2530), - [aux_sym_number_token2] = ACTIONS(2530), - [anon_sym_This] = ACTIONS(2530), - [anon_sym_this] = ACTIONS(2530), - [anon_sym_THIS] = ACTIONS(2530), - [anon_sym_Super] = ACTIONS(2530), - [anon_sym_super] = ACTIONS(2530), - [anon_sym_SUPER] = ACTIONS(2530), - [anon_sym_True] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2530), - [anon_sym_TRUE] = ACTIONS(2530), - [anon_sym_False] = ACTIONS(2530), - [anon_sym_false] = ACTIONS(2530), - [anon_sym_FALSE] = ACTIONS(2530), - [anon_sym_Null] = ACTIONS(2530), - [anon_sym_null] = ACTIONS(2530), - [anon_sym_NULL] = ACTIONS(2530), - [anon_sym_Undefined] = ACTIONS(2530), - [anon_sym_undefined] = ACTIONS(2530), - [anon_sym_UNDEFINED] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [sym_hash_empty] = ACTIONS(2532), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_QueryExecute] = ACTIONS(2530), - [anon_sym_queryexecute] = ACTIONS(2530), - [anon_sym_QUERYEXECUTE] = ACTIONS(2530), - [anon_sym_queryExecute] = ACTIONS(2530), - [anon_sym_BQUOTE] = ACTIONS(2532), - [anon_sym_Abstract] = ACTIONS(2530), - [anon_sym_abstract] = ACTIONS(2530), - [anon_sym_ABSTRACT] = ACTIONS(2530), - [anon_sym_Component] = ACTIONS(2530), - [anon_sym_component] = ACTIONS(2530), - [anon_sym_COMPONENT] = ACTIONS(2530), - [anon_sym_Debugger] = ACTIONS(2530), - [anon_sym_debugger] = ACTIONS(2530), - [anon_sym_DEBUGGER] = ACTIONS(2530), - [anon_sym_Final] = ACTIONS(2530), - [anon_sym_final] = ACTIONS(2530), - [anon_sym_FINAL] = ACTIONS(2530), - [anon_sym_Function] = ACTIONS(2530), - [anon_sym_function] = ACTIONS(2530), - [anon_sym_FUNCTION] = ACTIONS(2530), - [anon_sym_In] = ACTIONS(2530), - [anon_sym_in] = ACTIONS(2530), - [anon_sym_IN] = ACTIONS(2530), - [anon_sym_Include] = ACTIONS(2530), - [anon_sym_include] = ACTIONS(2530), - [anon_sym_INCLUDE] = ACTIONS(2530), - [anon_sym_InstanceOf] = ACTIONS(2530), - [anon_sym_instanceof] = ACTIONS(2530), - [anon_sym_INSTANCEOF] = ACTIONS(2530), - [anon_sym_instanceOf] = ACTIONS(2530), - [anon_sym_New] = ACTIONS(2530), - [anon_sym_new] = ACTIONS(2530), - [anon_sym_NEW] = ACTIONS(2530), - [anon_sym_Package] = ACTIONS(2530), - [anon_sym_package] = ACTIONS(2530), - [anon_sym_PACKAGE] = ACTIONS(2530), - [anon_sym_Private] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_PRIVATE] = ACTIONS(2530), - [anon_sym_Public] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_PUBLIC] = ACTIONS(2530), - [anon_sym_Remote] = ACTIONS(2530), - [anon_sym_remote] = ACTIONS(2530), - [anon_sym_REMOTE] = ACTIONS(2530), - [anon_sym_Static] = ACTIONS(2530), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_STATIC] = ACTIONS(2530), - [sym__ternary_qmark] = ACTIONS(2532), - [sym__elvis_operator] = ACTIONS(2532), - [sym_logical_or] = ACTIONS(2532), - [sym__java_block_open] = ACTIONS(2532), - [sym__static_type_prefix] = ACTIONS(2532), + [sym_identifier] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_Query] = ACTIONS(2488), + [anon_sym_query] = ACTIONS(2488), + [anon_sym_QUERY] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2488), + [sym_optional_chain] = ACTIONS(2490), + [sym_static_chain] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_BSLASH] = ACTIONS(2488), + [anon_sym_STAR_STAR] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2490), + [anon_sym_LT_GT] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2490), + [aux_sym_binary_expression_token1] = ACTIONS(2490), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [aux_sym_binary_expression_token2] = ACTIONS(2488), + [aux_sym_binary_expression_token3] = ACTIONS(2488), + [aux_sym_binary_expression_token4] = ACTIONS(2490), + [aux_sym_binary_expression_token5] = ACTIONS(2490), + [aux_sym_binary_expression_token6] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_TILDE] = ACTIONS(2490), + [aux_sym_unary_operator_token1] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2490), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2488), + [aux_sym_number_token2] = ACTIONS(2488), + [anon_sym_This] = ACTIONS(2488), + [anon_sym_this] = ACTIONS(2488), + [anon_sym_THIS] = ACTIONS(2488), + [anon_sym_Super] = ACTIONS(2488), + [anon_sym_super] = ACTIONS(2488), + [anon_sym_SUPER] = ACTIONS(2488), + [anon_sym_True] = ACTIONS(2488), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_TRUE] = ACTIONS(2488), + [anon_sym_False] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [anon_sym_FALSE] = ACTIONS(2488), + [anon_sym_Null] = ACTIONS(2488), + [anon_sym_null] = ACTIONS(2488), + [anon_sym_NULL] = ACTIONS(2488), + [anon_sym_Undefined] = ACTIONS(2488), + [anon_sym_undefined] = ACTIONS(2488), + [anon_sym_UNDEFINED] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(2488), + [sym_hash_empty] = ACTIONS(2490), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_QueryExecute] = ACTIONS(2488), + [anon_sym_queryexecute] = ACTIONS(2488), + [anon_sym_QUERYEXECUTE] = ACTIONS(2488), + [anon_sym_queryExecute] = ACTIONS(2488), + [anon_sym_BQUOTE] = ACTIONS(2490), + [anon_sym_Abstract] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_ABSTRACT] = ACTIONS(2488), + [anon_sym_Component] = ACTIONS(2488), + [anon_sym_component] = ACTIONS(2488), + [anon_sym_COMPONENT] = ACTIONS(2488), + [anon_sym_Debugger] = ACTIONS(2488), + [anon_sym_debugger] = ACTIONS(2488), + [anon_sym_DEBUGGER] = ACTIONS(2488), + [anon_sym_Final] = ACTIONS(2488), + [anon_sym_final] = ACTIONS(2488), + [anon_sym_FINAL] = ACTIONS(2488), + [anon_sym_Function] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_FUNCTION] = ACTIONS(2488), + [anon_sym_In] = ACTIONS(2488), + [anon_sym_in] = ACTIONS(2488), + [anon_sym_IN] = ACTIONS(2488), + [anon_sym_Include] = ACTIONS(2488), + [anon_sym_include] = ACTIONS(2488), + [anon_sym_INCLUDE] = ACTIONS(2488), + [anon_sym_InstanceOf] = ACTIONS(2488), + [anon_sym_instanceof] = ACTIONS(2488), + [anon_sym_INSTANCEOF] = ACTIONS(2488), + [anon_sym_instanceOf] = ACTIONS(2488), + [anon_sym_New] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_NEW] = ACTIONS(2488), + [anon_sym_Package] = ACTIONS(2488), + [anon_sym_package] = ACTIONS(2488), + [anon_sym_PACKAGE] = ACTIONS(2488), + [anon_sym_Private] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_PRIVATE] = ACTIONS(2488), + [anon_sym_Public] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_PUBLIC] = ACTIONS(2488), + [anon_sym_Remote] = ACTIONS(2488), + [anon_sym_remote] = ACTIONS(2488), + [anon_sym_REMOTE] = ACTIONS(2488), + [anon_sym_Static] = ACTIONS(2488), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_STATIC] = ACTIONS(2488), + [sym__ternary_qmark] = ACTIONS(2490), + [sym__elvis_operator] = ACTIONS(2490), + [sym_logical_or] = ACTIONS(2490), + [sym__java_block_open] = ACTIONS(2490), + [sym__static_type_prefix] = ACTIONS(2490), }, [STATE(767)] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_Query] = ACTIONS(2350), - [anon_sym_query] = ACTIONS(2350), - [anon_sym_QUERY] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2353), - [aux_sym_unary_operator_token1] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2350), - [aux_sym_number_token2] = ACTIONS(2350), - [anon_sym_This] = ACTIONS(2350), - [anon_sym_this] = ACTIONS(2350), - [anon_sym_THIS] = ACTIONS(2350), - [anon_sym_Super] = ACTIONS(2350), - [anon_sym_super] = ACTIONS(2350), - [anon_sym_SUPER] = ACTIONS(2350), - [anon_sym_True] = ACTIONS(2350), - [anon_sym_true] = ACTIONS(2350), - [anon_sym_TRUE] = ACTIONS(2350), - [anon_sym_False] = ACTIONS(2350), - [anon_sym_false] = ACTIONS(2350), - [anon_sym_FALSE] = ACTIONS(2350), - [anon_sym_Null] = ACTIONS(2350), - [anon_sym_null] = ACTIONS(2350), - [anon_sym_NULL] = ACTIONS(2350), - [anon_sym_Undefined] = ACTIONS(2350), - [anon_sym_undefined] = ACTIONS(2350), - [anon_sym_UNDEFINED] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(2350), - [sym_hash_empty] = ACTIONS(2353), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_QueryExecute] = ACTIONS(2350), - [anon_sym_queryexecute] = ACTIONS(2350), - [anon_sym_QUERYEXECUTE] = ACTIONS(2350), - [anon_sym_queryExecute] = ACTIONS(2350), - [anon_sym_BQUOTE] = ACTIONS(2353), - [anon_sym_Abstract] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_ABSTRACT] = ACTIONS(2350), - [anon_sym_Component] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_COMPONENT] = ACTIONS(2350), - [anon_sym_Debugger] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_DEBUGGER] = ACTIONS(2350), - [anon_sym_Final] = ACTIONS(2350), - [anon_sym_final] = ACTIONS(2350), - [anon_sym_FINAL] = ACTIONS(2350), - [anon_sym_Function] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_FUNCTION] = ACTIONS(2350), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_Include] = ACTIONS(2350), - [anon_sym_include] = ACTIONS(2350), - [anon_sym_INCLUDE] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [anon_sym_New] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_NEW] = ACTIONS(2350), - [anon_sym_Package] = ACTIONS(2350), - [anon_sym_package] = ACTIONS(2350), - [anon_sym_PACKAGE] = ACTIONS(2350), - [anon_sym_Private] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_PRIVATE] = ACTIONS(2350), - [anon_sym_Public] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_PUBLIC] = ACTIONS(2350), - [anon_sym_Remote] = ACTIONS(2350), - [anon_sym_remote] = ACTIONS(2350), - [anon_sym_REMOTE] = ACTIONS(2350), - [anon_sym_Static] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_STATIC] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym__java_block_open] = ACTIONS(2353), - [sym__static_type_prefix] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2492), + [anon_sym_DOT] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_Query] = ACTIONS(2492), + [anon_sym_query] = ACTIONS(2492), + [anon_sym_QUERY] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2492), + [sym_optional_chain] = ACTIONS(2494), + [sym_static_chain] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_BSLASH] = ACTIONS(2492), + [anon_sym_STAR_STAR] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2494), + [anon_sym_LT_GT] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2494), + [aux_sym_binary_expression_token1] = ACTIONS(2494), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [aux_sym_binary_expression_token2] = ACTIONS(2492), + [aux_sym_binary_expression_token3] = ACTIONS(2492), + [aux_sym_binary_expression_token4] = ACTIONS(2494), + [aux_sym_binary_expression_token5] = ACTIONS(2494), + [aux_sym_binary_expression_token6] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2494), + [aux_sym_unary_operator_token1] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2494), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2492), + [aux_sym_number_token2] = ACTIONS(2492), + [anon_sym_This] = ACTIONS(2492), + [anon_sym_this] = ACTIONS(2492), + [anon_sym_THIS] = ACTIONS(2492), + [anon_sym_Super] = ACTIONS(2492), + [anon_sym_super] = ACTIONS(2492), + [anon_sym_SUPER] = ACTIONS(2492), + [anon_sym_True] = ACTIONS(2492), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_TRUE] = ACTIONS(2492), + [anon_sym_False] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [anon_sym_FALSE] = ACTIONS(2492), + [anon_sym_Null] = ACTIONS(2492), + [anon_sym_null] = ACTIONS(2492), + [anon_sym_NULL] = ACTIONS(2492), + [anon_sym_Undefined] = ACTIONS(2492), + [anon_sym_undefined] = ACTIONS(2492), + [anon_sym_UNDEFINED] = ACTIONS(2492), + [anon_sym_get] = ACTIONS(2492), + [anon_sym_set] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(2492), + [sym_hash_empty] = ACTIONS(2494), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_QueryExecute] = ACTIONS(2492), + [anon_sym_queryexecute] = ACTIONS(2492), + [anon_sym_QUERYEXECUTE] = ACTIONS(2492), + [anon_sym_queryExecute] = ACTIONS(2492), + [anon_sym_BQUOTE] = ACTIONS(2494), + [anon_sym_Abstract] = ACTIONS(2492), + [anon_sym_abstract] = ACTIONS(2492), + [anon_sym_ABSTRACT] = ACTIONS(2492), + [anon_sym_Component] = ACTIONS(2492), + [anon_sym_component] = ACTIONS(2492), + [anon_sym_COMPONENT] = ACTIONS(2492), + [anon_sym_Debugger] = ACTIONS(2492), + [anon_sym_debugger] = ACTIONS(2492), + [anon_sym_DEBUGGER] = ACTIONS(2492), + [anon_sym_Final] = ACTIONS(2492), + [anon_sym_final] = ACTIONS(2492), + [anon_sym_FINAL] = ACTIONS(2492), + [anon_sym_Function] = ACTIONS(2492), + [anon_sym_function] = ACTIONS(2492), + [anon_sym_FUNCTION] = ACTIONS(2492), + [anon_sym_In] = ACTIONS(2492), + [anon_sym_in] = ACTIONS(2492), + [anon_sym_IN] = ACTIONS(2492), + [anon_sym_Include] = ACTIONS(2492), + [anon_sym_include] = ACTIONS(2492), + [anon_sym_INCLUDE] = ACTIONS(2492), + [anon_sym_InstanceOf] = ACTIONS(2492), + [anon_sym_instanceof] = ACTIONS(2492), + [anon_sym_INSTANCEOF] = ACTIONS(2492), + [anon_sym_instanceOf] = ACTIONS(2492), + [anon_sym_New] = ACTIONS(2492), + [anon_sym_new] = ACTIONS(2492), + [anon_sym_NEW] = ACTIONS(2492), + [anon_sym_Package] = ACTIONS(2492), + [anon_sym_package] = ACTIONS(2492), + [anon_sym_PACKAGE] = ACTIONS(2492), + [anon_sym_Private] = ACTIONS(2492), + [anon_sym_private] = ACTIONS(2492), + [anon_sym_PRIVATE] = ACTIONS(2492), + [anon_sym_Public] = ACTIONS(2492), + [anon_sym_public] = ACTIONS(2492), + [anon_sym_PUBLIC] = ACTIONS(2492), + [anon_sym_Remote] = ACTIONS(2492), + [anon_sym_remote] = ACTIONS(2492), + [anon_sym_REMOTE] = ACTIONS(2492), + [anon_sym_Static] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_STATIC] = ACTIONS(2492), + [sym__ternary_qmark] = ACTIONS(2494), + [sym__elvis_operator] = ACTIONS(2494), + [sym_logical_or] = ACTIONS(2494), + [sym__java_block_open] = ACTIONS(2494), + [sym__static_type_prefix] = ACTIONS(2494), }, [STATE(768)] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_Query] = ACTIONS(1088), - [anon_sym_query] = ACTIONS(1088), - [anon_sym_QUERY] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1085), - [aux_sym_unary_operator_token1] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1088), - [aux_sym_number_token2] = ACTIONS(1088), - [anon_sym_This] = ACTIONS(1088), - [anon_sym_this] = ACTIONS(1088), - [anon_sym_THIS] = ACTIONS(1088), - [anon_sym_Super] = ACTIONS(1088), - [anon_sym_super] = ACTIONS(1088), - [anon_sym_SUPER] = ACTIONS(1088), - [anon_sym_True] = ACTIONS(1088), - [anon_sym_true] = ACTIONS(1088), - [anon_sym_TRUE] = ACTIONS(1088), - [anon_sym_False] = ACTIONS(1088), - [anon_sym_false] = ACTIONS(1088), - [anon_sym_FALSE] = ACTIONS(1088), - [anon_sym_Null] = ACTIONS(1088), - [anon_sym_null] = ACTIONS(1088), - [anon_sym_NULL] = ACTIONS(1088), - [anon_sym_Undefined] = ACTIONS(1088), - [anon_sym_undefined] = ACTIONS(1088), - [anon_sym_UNDEFINED] = ACTIONS(1088), - [anon_sym_get] = ACTIONS(1088), - [anon_sym_set] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1088), - [sym_hash_empty] = ACTIONS(1085), - [anon_sym_export] = ACTIONS(1088), - [anon_sym_QueryExecute] = ACTIONS(1088), - [anon_sym_queryexecute] = ACTIONS(1088), - [anon_sym_QUERYEXECUTE] = ACTIONS(1088), - [anon_sym_queryExecute] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1085), - [anon_sym_Abstract] = ACTIONS(1088), - [anon_sym_abstract] = ACTIONS(1088), - [anon_sym_ABSTRACT] = ACTIONS(1088), - [anon_sym_Component] = ACTIONS(1088), - [anon_sym_component] = ACTIONS(1088), - [anon_sym_COMPONENT] = ACTIONS(1088), - [anon_sym_Debugger] = ACTIONS(1088), - [anon_sym_debugger] = ACTIONS(1088), - [anon_sym_DEBUGGER] = ACTIONS(1088), - [anon_sym_Final] = ACTIONS(1088), - [anon_sym_final] = ACTIONS(1088), - [anon_sym_FINAL] = ACTIONS(1088), - [anon_sym_Function] = ACTIONS(1088), - [anon_sym_function] = ACTIONS(1088), - [anon_sym_FUNCTION] = ACTIONS(1088), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(1088), - [anon_sym_include] = ACTIONS(1088), - [anon_sym_INCLUDE] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_New] = ACTIONS(1088), - [anon_sym_new] = ACTIONS(1088), - [anon_sym_NEW] = ACTIONS(1088), - [anon_sym_Package] = ACTIONS(1088), - [anon_sym_package] = ACTIONS(1088), - [anon_sym_PACKAGE] = ACTIONS(1088), - [anon_sym_Private] = ACTIONS(1088), - [anon_sym_private] = ACTIONS(1088), - [anon_sym_PRIVATE] = ACTIONS(1088), - [anon_sym_Public] = ACTIONS(1088), - [anon_sym_public] = ACTIONS(1088), - [anon_sym_PUBLIC] = ACTIONS(1088), - [anon_sym_Remote] = ACTIONS(1088), - [anon_sym_remote] = ACTIONS(1088), - [anon_sym_REMOTE] = ACTIONS(1088), - [anon_sym_Static] = ACTIONS(1088), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_STATIC] = ACTIONS(1088), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym__java_block_open] = ACTIONS(1085), - [sym__static_type_prefix] = ACTIONS(1085), + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1590), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, [STATE(769)] = { - [sym_identifier] = ACTIONS(2486), - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_Query] = ACTIONS(2486), - [anon_sym_query] = ACTIONS(2486), - [anon_sym_QUERY] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2486), - [sym_optional_chain] = ACTIONS(2488), - [sym_static_chain] = ACTIONS(2488), - [anon_sym_AMP_AMP] = ACTIONS(2488), - [anon_sym_PIPE_PIPE] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2486), - [anon_sym_GT_GT_GT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_BSLASH] = ACTIONS(2486), - [anon_sym_STAR_STAR] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2488), - [anon_sym_LT_GT] = ACTIONS(2488), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2488), - [aux_sym_binary_expression_token1] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2486), - [aux_sym_binary_expression_token2] = ACTIONS(2486), - [aux_sym_binary_expression_token3] = ACTIONS(2486), - [aux_sym_binary_expression_token4] = ACTIONS(2488), - [aux_sym_binary_expression_token5] = ACTIONS(2488), - [aux_sym_binary_expression_token6] = ACTIONS(2488), - [anon_sym_QMARK_QMARK] = ACTIONS(2488), - [anon_sym_BANG] = ACTIONS(2486), - [anon_sym_TILDE] = ACTIONS(2488), - [aux_sym_unary_operator_token1] = ACTIONS(2486), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2488), - [anon_sym_DQUOTE] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2488), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2486), - [aux_sym_number_token2] = ACTIONS(2486), - [anon_sym_This] = ACTIONS(2486), - [anon_sym_this] = ACTIONS(2486), - [anon_sym_THIS] = ACTIONS(2486), - [anon_sym_Super] = ACTIONS(2486), - [anon_sym_super] = ACTIONS(2486), - [anon_sym_SUPER] = ACTIONS(2486), - [anon_sym_True] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2486), - [anon_sym_TRUE] = ACTIONS(2486), - [anon_sym_False] = ACTIONS(2486), - [anon_sym_false] = ACTIONS(2486), - [anon_sym_FALSE] = ACTIONS(2486), - [anon_sym_Null] = ACTIONS(2486), - [anon_sym_null] = ACTIONS(2486), - [anon_sym_NULL] = ACTIONS(2486), - [anon_sym_Undefined] = ACTIONS(2486), - [anon_sym_undefined] = ACTIONS(2486), - [anon_sym_UNDEFINED] = ACTIONS(2486), - [anon_sym_get] = ACTIONS(2486), - [anon_sym_set] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(2486), - [sym_hash_empty] = ACTIONS(2488), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_QueryExecute] = ACTIONS(2486), - [anon_sym_queryexecute] = ACTIONS(2486), - [anon_sym_QUERYEXECUTE] = ACTIONS(2486), - [anon_sym_queryExecute] = ACTIONS(2486), - [anon_sym_BQUOTE] = ACTIONS(2488), - [anon_sym_Abstract] = ACTIONS(2486), - [anon_sym_abstract] = ACTIONS(2486), - [anon_sym_ABSTRACT] = ACTIONS(2486), - [anon_sym_Component] = ACTIONS(2486), - [anon_sym_component] = ACTIONS(2486), - [anon_sym_COMPONENT] = ACTIONS(2486), - [anon_sym_Debugger] = ACTIONS(2486), - [anon_sym_debugger] = ACTIONS(2486), - [anon_sym_DEBUGGER] = ACTIONS(2486), - [anon_sym_Final] = ACTIONS(2486), - [anon_sym_final] = ACTIONS(2486), - [anon_sym_FINAL] = ACTIONS(2486), - [anon_sym_Function] = ACTIONS(2486), - [anon_sym_function] = ACTIONS(2486), - [anon_sym_FUNCTION] = ACTIONS(2486), - [anon_sym_In] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_IN] = ACTIONS(2486), - [anon_sym_Include] = ACTIONS(2486), - [anon_sym_include] = ACTIONS(2486), - [anon_sym_INCLUDE] = ACTIONS(2486), - [anon_sym_InstanceOf] = ACTIONS(2486), - [anon_sym_instanceof] = ACTIONS(2486), - [anon_sym_INSTANCEOF] = ACTIONS(2486), - [anon_sym_instanceOf] = ACTIONS(2486), - [anon_sym_New] = ACTIONS(2486), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_NEW] = ACTIONS(2486), - [anon_sym_Package] = ACTIONS(2486), - [anon_sym_package] = ACTIONS(2486), - [anon_sym_PACKAGE] = ACTIONS(2486), - [anon_sym_Private] = ACTIONS(2486), - [anon_sym_private] = ACTIONS(2486), - [anon_sym_PRIVATE] = ACTIONS(2486), - [anon_sym_Public] = ACTIONS(2486), - [anon_sym_public] = ACTIONS(2486), - [anon_sym_PUBLIC] = ACTIONS(2486), - [anon_sym_Remote] = ACTIONS(2486), - [anon_sym_remote] = ACTIONS(2486), - [anon_sym_REMOTE] = ACTIONS(2486), - [anon_sym_Static] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_STATIC] = ACTIONS(2486), - [sym__ternary_qmark] = ACTIONS(2488), - [sym__elvis_operator] = ACTIONS(2488), - [sym_logical_or] = ACTIONS(2488), - [sym__java_block_open] = ACTIONS(2488), - [sym__static_type_prefix] = ACTIONS(2488), + [sym_identifier] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_Query] = ACTIONS(2564), + [anon_sym_query] = ACTIONS(2564), + [anon_sym_QUERY] = ACTIONS(2564), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2564), + [anon_sym_TILDE] = ACTIONS(2566), + [aux_sym_unary_operator_token1] = ACTIONS(2564), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2564), + [aux_sym_number_token2] = ACTIONS(2564), + [anon_sym_This] = ACTIONS(2564), + [anon_sym_this] = ACTIONS(2564), + [anon_sym_THIS] = ACTIONS(2564), + [anon_sym_Super] = ACTIONS(2564), + [anon_sym_super] = ACTIONS(2564), + [anon_sym_SUPER] = ACTIONS(2564), + [anon_sym_True] = ACTIONS(2564), + [anon_sym_true] = ACTIONS(2564), + [anon_sym_TRUE] = ACTIONS(2564), + [anon_sym_False] = ACTIONS(2564), + [anon_sym_false] = ACTIONS(2564), + [anon_sym_FALSE] = ACTIONS(2564), + [anon_sym_Null] = ACTIONS(2564), + [anon_sym_null] = ACTIONS(2564), + [anon_sym_NULL] = ACTIONS(2564), + [anon_sym_Undefined] = ACTIONS(2564), + [anon_sym_undefined] = ACTIONS(2564), + [anon_sym_UNDEFINED] = ACTIONS(2564), + [anon_sym_get] = ACTIONS(2564), + [anon_sym_set] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [sym_hash_empty] = ACTIONS(2566), + [anon_sym_export] = ACTIONS(2564), + [anon_sym_QueryExecute] = ACTIONS(2564), + [anon_sym_queryexecute] = ACTIONS(2564), + [anon_sym_QUERYEXECUTE] = ACTIONS(2564), + [anon_sym_queryExecute] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2566), + [anon_sym_Abstract] = ACTIONS(2564), + [anon_sym_abstract] = ACTIONS(2564), + [anon_sym_ABSTRACT] = ACTIONS(2564), + [anon_sym_Component] = ACTIONS(2564), + [anon_sym_component] = ACTIONS(2564), + [anon_sym_COMPONENT] = ACTIONS(2564), + [anon_sym_Debugger] = ACTIONS(2564), + [anon_sym_debugger] = ACTIONS(2564), + [anon_sym_DEBUGGER] = ACTIONS(2564), + [anon_sym_Final] = ACTIONS(2564), + [anon_sym_final] = ACTIONS(2564), + [anon_sym_FINAL] = ACTIONS(2564), + [anon_sym_Function] = ACTIONS(2564), + [anon_sym_function] = ACTIONS(2564), + [anon_sym_FUNCTION] = ACTIONS(2564), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_Include] = ACTIONS(2564), + [anon_sym_include] = ACTIONS(2564), + [anon_sym_INCLUDE] = ACTIONS(2564), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [anon_sym_New] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(2564), + [anon_sym_NEW] = ACTIONS(2564), + [anon_sym_Package] = ACTIONS(2564), + [anon_sym_package] = ACTIONS(2564), + [anon_sym_PACKAGE] = ACTIONS(2564), + [anon_sym_Private] = ACTIONS(2564), + [anon_sym_private] = ACTIONS(2564), + [anon_sym_PRIVATE] = ACTIONS(2564), + [anon_sym_Public] = ACTIONS(2564), + [anon_sym_public] = ACTIONS(2564), + [anon_sym_PUBLIC] = ACTIONS(2564), + [anon_sym_Remote] = ACTIONS(2564), + [anon_sym_remote] = ACTIONS(2564), + [anon_sym_REMOTE] = ACTIONS(2564), + [anon_sym_Static] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_STATIC] = ACTIONS(2564), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym__java_block_open] = ACTIONS(2566), + [sym__static_type_prefix] = ACTIONS(2566), }, [STATE(770)] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2466), - [anon_sym_query] = ACTIONS(2466), - [anon_sym_QUERY] = ACTIONS(2466), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [aux_sym_unary_operator_token1] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2466), - [aux_sym_number_token2] = ACTIONS(2466), - [anon_sym_This] = ACTIONS(2466), - [anon_sym_this] = ACTIONS(2466), - [anon_sym_THIS] = ACTIONS(2466), - [anon_sym_Super] = ACTIONS(2466), - [anon_sym_super] = ACTIONS(2466), - [anon_sym_SUPER] = ACTIONS(2466), - [anon_sym_True] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(2466), - [anon_sym_TRUE] = ACTIONS(2466), - [anon_sym_False] = ACTIONS(2466), - [anon_sym_false] = ACTIONS(2466), - [anon_sym_FALSE] = ACTIONS(2466), - [anon_sym_Null] = ACTIONS(2466), - [anon_sym_null] = ACTIONS(2466), - [anon_sym_NULL] = ACTIONS(2466), - [anon_sym_Undefined] = ACTIONS(2466), - [anon_sym_undefined] = ACTIONS(2466), - [anon_sym_UNDEFINED] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(2466), - [sym_hash_empty] = ACTIONS(2468), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_QueryExecute] = ACTIONS(2466), - [anon_sym_queryexecute] = ACTIONS(2466), - [anon_sym_QUERYEXECUTE] = ACTIONS(2466), - [anon_sym_queryExecute] = ACTIONS(2466), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_Abstract] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_ABSTRACT] = ACTIONS(2466), - [anon_sym_Component] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_COMPONENT] = ACTIONS(2466), - [anon_sym_Debugger] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_DEBUGGER] = ACTIONS(2466), - [anon_sym_Final] = ACTIONS(2466), - [anon_sym_final] = ACTIONS(2466), - [anon_sym_FINAL] = ACTIONS(2466), - [anon_sym_Function] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_FUNCTION] = ACTIONS(2466), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2466), - [anon_sym_include] = ACTIONS(2466), - [anon_sym_INCLUDE] = ACTIONS(2466), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_NEW] = ACTIONS(2466), - [anon_sym_Package] = ACTIONS(2466), - [anon_sym_package] = ACTIONS(2466), - [anon_sym_PACKAGE] = ACTIONS(2466), - [anon_sym_Private] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_PRIVATE] = ACTIONS(2466), - [anon_sym_Public] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_PUBLIC] = ACTIONS(2466), - [anon_sym_Remote] = ACTIONS(2466), - [anon_sym_remote] = ACTIONS(2466), - [anon_sym_REMOTE] = ACTIONS(2466), - [anon_sym_Static] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_STATIC] = ACTIONS(2466), - [sym__ternary_qmark] = ACTIONS(3132), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2468), - [sym__static_type_prefix] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_Query] = ACTIONS(2556), + [anon_sym_query] = ACTIONS(2556), + [anon_sym_QUERY] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_TILDE] = ACTIONS(2558), + [aux_sym_unary_operator_token1] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2556), + [aux_sym_number_token2] = ACTIONS(2556), + [anon_sym_This] = ACTIONS(2556), + [anon_sym_this] = ACTIONS(2556), + [anon_sym_THIS] = ACTIONS(2556), + [anon_sym_Super] = ACTIONS(2556), + [anon_sym_super] = ACTIONS(2556), + [anon_sym_SUPER] = ACTIONS(2556), + [anon_sym_True] = ACTIONS(2556), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_TRUE] = ACTIONS(2556), + [anon_sym_False] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_FALSE] = ACTIONS(2556), + [anon_sym_Null] = ACTIONS(2556), + [anon_sym_null] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_Undefined] = ACTIONS(2556), + [anon_sym_undefined] = ACTIONS(2556), + [anon_sym_UNDEFINED] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [sym_hash_empty] = ACTIONS(2558), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_QueryExecute] = ACTIONS(2556), + [anon_sym_queryexecute] = ACTIONS(2556), + [anon_sym_QUERYEXECUTE] = ACTIONS(2556), + [anon_sym_queryExecute] = ACTIONS(2556), + [anon_sym_BQUOTE] = ACTIONS(2558), + [anon_sym_Abstract] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_ABSTRACT] = ACTIONS(2556), + [anon_sym_Component] = ACTIONS(2556), + [anon_sym_component] = ACTIONS(2556), + [anon_sym_COMPONENT] = ACTIONS(2556), + [anon_sym_Debugger] = ACTIONS(2556), + [anon_sym_debugger] = ACTIONS(2556), + [anon_sym_DEBUGGER] = ACTIONS(2556), + [anon_sym_Final] = ACTIONS(2556), + [anon_sym_final] = ACTIONS(2556), + [anon_sym_FINAL] = ACTIONS(2556), + [anon_sym_Function] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_FUNCTION] = ACTIONS(2556), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_Include] = ACTIONS(2556), + [anon_sym_include] = ACTIONS(2556), + [anon_sym_INCLUDE] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [anon_sym_New] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_NEW] = ACTIONS(2556), + [anon_sym_Package] = ACTIONS(2556), + [anon_sym_package] = ACTIONS(2556), + [anon_sym_PACKAGE] = ACTIONS(2556), + [anon_sym_Private] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_PRIVATE] = ACTIONS(2556), + [anon_sym_Public] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_PUBLIC] = ACTIONS(2556), + [anon_sym_Remote] = ACTIONS(2556), + [anon_sym_remote] = ACTIONS(2556), + [anon_sym_REMOTE] = ACTIONS(2556), + [anon_sym_Static] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_STATIC] = ACTIONS(2556), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym__java_block_open] = ACTIONS(2558), + [sym__static_type_prefix] = ACTIONS(2558), }, [STATE(771)] = { - [sym_identifier] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_Query] = ACTIONS(2332), - [anon_sym_query] = ACTIONS(2332), - [anon_sym_QUERY] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), - [sym_optional_chain] = ACTIONS(2334), - [sym_static_chain] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_BSLASH] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), - [anon_sym_LT_GT] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), - [aux_sym_binary_expression_token1] = ACTIONS(2334), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [aux_sym_binary_expression_token2] = ACTIONS(2332), - [aux_sym_binary_expression_token3] = ACTIONS(2332), - [aux_sym_binary_expression_token4] = ACTIONS(2334), - [aux_sym_binary_expression_token5] = ACTIONS(2334), - [aux_sym_binary_expression_token6] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2334), - [aux_sym_unary_operator_token1] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), - [anon_sym_DQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2334), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2332), - [aux_sym_number_token2] = ACTIONS(2332), - [anon_sym_This] = ACTIONS(2332), - [anon_sym_this] = ACTIONS(2332), - [anon_sym_THIS] = ACTIONS(2332), - [anon_sym_Super] = ACTIONS(2332), - [anon_sym_super] = ACTIONS(2332), - [anon_sym_SUPER] = ACTIONS(2332), - [anon_sym_True] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_TRUE] = ACTIONS(2332), - [anon_sym_False] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_FALSE] = ACTIONS(2332), - [anon_sym_Null] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [anon_sym_NULL] = ACTIONS(2332), - [anon_sym_Undefined] = ACTIONS(2332), - [anon_sym_undefined] = ACTIONS(2332), - [anon_sym_UNDEFINED] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_POUND] = ACTIONS(2332), - [sym_hash_empty] = ACTIONS(2334), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_QueryExecute] = ACTIONS(2332), - [anon_sym_queryexecute] = ACTIONS(2332), - [anon_sym_QUERYEXECUTE] = ACTIONS(2332), - [anon_sym_queryExecute] = ACTIONS(2332), - [anon_sym_BQUOTE] = ACTIONS(2334), - [anon_sym_Abstract] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_ABSTRACT] = ACTIONS(2332), - [anon_sym_Component] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_COMPONENT] = ACTIONS(2332), - [anon_sym_Debugger] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_DEBUGGER] = ACTIONS(2332), - [anon_sym_Final] = ACTIONS(2332), - [anon_sym_final] = ACTIONS(2332), - [anon_sym_FINAL] = ACTIONS(2332), - [anon_sym_Function] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_FUNCTION] = ACTIONS(2332), - [anon_sym_In] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_IN] = ACTIONS(2332), - [anon_sym_Include] = ACTIONS(2332), - [anon_sym_include] = ACTIONS(2332), - [anon_sym_INCLUDE] = ACTIONS(2332), - [anon_sym_InstanceOf] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_INSTANCEOF] = ACTIONS(2332), - [anon_sym_instanceOf] = ACTIONS(2332), - [anon_sym_New] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_NEW] = ACTIONS(2332), - [anon_sym_Package] = ACTIONS(2332), - [anon_sym_package] = ACTIONS(2332), - [anon_sym_PACKAGE] = ACTIONS(2332), - [anon_sym_Private] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_PRIVATE] = ACTIONS(2332), - [anon_sym_Public] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_PUBLIC] = ACTIONS(2332), - [anon_sym_Remote] = ACTIONS(2332), - [anon_sym_remote] = ACTIONS(2332), - [anon_sym_REMOTE] = ACTIONS(2332), - [anon_sym_Static] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_STATIC] = ACTIONS(2332), - [sym__ternary_qmark] = ACTIONS(2334), - [sym__elvis_operator] = ACTIONS(2334), - [sym_logical_or] = ACTIONS(2334), - [sym__java_block_open] = ACTIONS(2334), - [sym__static_type_prefix] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_Query] = ACTIONS(2528), + [anon_sym_query] = ACTIONS(2528), + [anon_sym_QUERY] = ACTIONS(2528), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2530), + [aux_sym_unary_operator_token1] = ACTIONS(2528), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2528), + [aux_sym_number_token2] = ACTIONS(2528), + [anon_sym_This] = ACTIONS(2528), + [anon_sym_this] = ACTIONS(2528), + [anon_sym_THIS] = ACTIONS(2528), + [anon_sym_Super] = ACTIONS(2528), + [anon_sym_super] = ACTIONS(2528), + [anon_sym_SUPER] = ACTIONS(2528), + [anon_sym_True] = ACTIONS(2528), + [anon_sym_true] = ACTIONS(2528), + [anon_sym_TRUE] = ACTIONS(2528), + [anon_sym_False] = ACTIONS(2528), + [anon_sym_false] = ACTIONS(2528), + [anon_sym_FALSE] = ACTIONS(2528), + [anon_sym_Null] = ACTIONS(2528), + [anon_sym_null] = ACTIONS(2528), + [anon_sym_NULL] = ACTIONS(2528), + [anon_sym_Undefined] = ACTIONS(2528), + [anon_sym_undefined] = ACTIONS(2528), + [anon_sym_UNDEFINED] = ACTIONS(2528), + [anon_sym_get] = ACTIONS(2528), + [anon_sym_set] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [sym_hash_empty] = ACTIONS(2530), + [anon_sym_export] = ACTIONS(2528), + [anon_sym_QueryExecute] = ACTIONS(2528), + [anon_sym_queryexecute] = ACTIONS(2528), + [anon_sym_QUERYEXECUTE] = ACTIONS(2528), + [anon_sym_queryExecute] = ACTIONS(2528), + [anon_sym_BQUOTE] = ACTIONS(2530), + [anon_sym_Abstract] = ACTIONS(2528), + [anon_sym_abstract] = ACTIONS(2528), + [anon_sym_ABSTRACT] = ACTIONS(2528), + [anon_sym_Component] = ACTIONS(2528), + [anon_sym_component] = ACTIONS(2528), + [anon_sym_COMPONENT] = ACTIONS(2528), + [anon_sym_Debugger] = ACTIONS(2528), + [anon_sym_debugger] = ACTIONS(2528), + [anon_sym_DEBUGGER] = ACTIONS(2528), + [anon_sym_Final] = ACTIONS(2528), + [anon_sym_final] = ACTIONS(2528), + [anon_sym_FINAL] = ACTIONS(2528), + [anon_sym_Function] = ACTIONS(2528), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_FUNCTION] = ACTIONS(2528), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_Include] = ACTIONS(2528), + [anon_sym_include] = ACTIONS(2528), + [anon_sym_INCLUDE] = ACTIONS(2528), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [anon_sym_New] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_NEW] = ACTIONS(2528), + [anon_sym_Package] = ACTIONS(2528), + [anon_sym_package] = ACTIONS(2528), + [anon_sym_PACKAGE] = ACTIONS(2528), + [anon_sym_Private] = ACTIONS(2528), + [anon_sym_private] = ACTIONS(2528), + [anon_sym_PRIVATE] = ACTIONS(2528), + [anon_sym_Public] = ACTIONS(2528), + [anon_sym_public] = ACTIONS(2528), + [anon_sym_PUBLIC] = ACTIONS(2528), + [anon_sym_Remote] = ACTIONS(2528), + [anon_sym_remote] = ACTIONS(2528), + [anon_sym_REMOTE] = ACTIONS(2528), + [anon_sym_Static] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_STATIC] = ACTIONS(2528), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym__java_block_open] = ACTIONS(2530), + [sym__static_type_prefix] = ACTIONS(2530), }, [STATE(772)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1686), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [sym_identifier] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2408), + [anon_sym_query] = ACTIONS(2408), + [anon_sym_QUERY] = ACTIONS(2408), + [aux_sym__operator_shaped_name_token1] = ACTIONS(3100), + [aux_sym__operator_shaped_name_token2] = ACTIONS(3102), + [aux_sym__operator_shaped_name_token3] = ACTIONS(3104), + [aux_sym__operator_shaped_name_token4] = ACTIONS(3098), + [aux_sym__operator_shaped_name_token5] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token6] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token7] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token8] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token9] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token10] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token11] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token12] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token13] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token14] = ACTIONS(3108), + [aux_sym__operator_shaped_name_token15] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token16] = ACTIONS(3106), + [aux_sym__operator_shaped_name_token17] = ACTIONS(3106), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_BSLASH] = ACTIONS(3098), + [anon_sym_STAR_STAR] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3134), + [anon_sym_LT_GT] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3134), + [aux_sym_binary_expression_token1] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3106), + [aux_sym_binary_expression_token2] = ACTIONS(3106), + [aux_sym_binary_expression_token3] = ACTIONS(3106), + [aux_sym_binary_expression_token4] = ACTIONS(3132), + [aux_sym_binary_expression_token5] = ACTIONS(3132), + [aux_sym_binary_expression_token6] = ACTIONS(3134), + [anon_sym_QMARK_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(2408), + [anon_sym_TILDE] = ACTIONS(2410), + [aux_sym_unary_operator_token1] = ACTIONS(2408), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2408), + [aux_sym_number_token2] = ACTIONS(2408), + [anon_sym_This] = ACTIONS(2408), + [anon_sym_this] = ACTIONS(2408), + [anon_sym_THIS] = ACTIONS(2408), + [anon_sym_Super] = ACTIONS(2408), + [anon_sym_super] = ACTIONS(2408), + [anon_sym_SUPER] = ACTIONS(2408), + [anon_sym_True] = ACTIONS(2408), + [anon_sym_true] = ACTIONS(2408), + [anon_sym_TRUE] = ACTIONS(2408), + [anon_sym_False] = ACTIONS(2408), + [anon_sym_false] = ACTIONS(2408), + [anon_sym_FALSE] = ACTIONS(2408), + [anon_sym_Null] = ACTIONS(2408), + [anon_sym_null] = ACTIONS(2408), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_Undefined] = ACTIONS(2408), + [anon_sym_undefined] = ACTIONS(2408), + [anon_sym_UNDEFINED] = ACTIONS(2408), + [anon_sym_get] = ACTIONS(2408), + [anon_sym_set] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [sym_hash_empty] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2408), + [anon_sym_QueryExecute] = ACTIONS(2408), + [anon_sym_queryexecute] = ACTIONS(2408), + [anon_sym_QUERYEXECUTE] = ACTIONS(2408), + [anon_sym_queryExecute] = ACTIONS(2408), + [anon_sym_BQUOTE] = ACTIONS(2410), + [anon_sym_Abstract] = ACTIONS(2408), + [anon_sym_abstract] = ACTIONS(2408), + [anon_sym_ABSTRACT] = ACTIONS(2408), + [anon_sym_Component] = ACTIONS(2408), + [anon_sym_component] = ACTIONS(2408), + [anon_sym_COMPONENT] = ACTIONS(2408), + [anon_sym_Debugger] = ACTIONS(2408), + [anon_sym_debugger] = ACTIONS(2408), + [anon_sym_DEBUGGER] = ACTIONS(2408), + [anon_sym_Final] = ACTIONS(2408), + [anon_sym_final] = ACTIONS(2408), + [anon_sym_FINAL] = ACTIONS(2408), + [anon_sym_Function] = ACTIONS(2408), + [anon_sym_function] = ACTIONS(2408), + [anon_sym_FUNCTION] = ACTIONS(2408), + [anon_sym_In] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_IN] = ACTIONS(3106), + [anon_sym_Include] = ACTIONS(2408), + [anon_sym_include] = ACTIONS(2408), + [anon_sym_INCLUDE] = ACTIONS(2408), + [anon_sym_InstanceOf] = ACTIONS(3106), + [anon_sym_instanceof] = ACTIONS(3106), + [anon_sym_INSTANCEOF] = ACTIONS(3106), + [anon_sym_instanceOf] = ACTIONS(3106), + [anon_sym_New] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_NEW] = ACTIONS(2408), + [anon_sym_Package] = ACTIONS(2408), + [anon_sym_package] = ACTIONS(2408), + [anon_sym_PACKAGE] = ACTIONS(2408), + [anon_sym_Private] = ACTIONS(2408), + [anon_sym_private] = ACTIONS(2408), + [anon_sym_PRIVATE] = ACTIONS(2408), + [anon_sym_Public] = ACTIONS(2408), + [anon_sym_public] = ACTIONS(2408), + [anon_sym_PUBLIC] = ACTIONS(2408), + [anon_sym_Remote] = ACTIONS(2408), + [anon_sym_remote] = ACTIONS(2408), + [anon_sym_REMOTE] = ACTIONS(2408), + [anon_sym_Static] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_STATIC] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(3140), + [sym__elvis_operator] = ACTIONS(3142), + [sym_logical_or] = ACTIONS(3114), + [sym__java_block_open] = ACTIONS(2410), + [sym__static_type_prefix] = ACTIONS(2410), }, [STATE(773)] = { - [sym_identifier] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1672), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_INSTANCEOF] = ACTIONS(1672), - [anon_sym_instanceOf] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_let] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_Query] = ACTIONS(507), + [anon_sym_query] = ACTIONS(507), + [anon_sym_QUERY] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(509), + [aux_sym_unary_operator_token1] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_SQUOTE] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(507), + [aux_sym_number_token2] = ACTIONS(507), + [anon_sym_This] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), + [anon_sym_THIS] = ACTIONS(507), + [anon_sym_Super] = ACTIONS(507), + [anon_sym_super] = ACTIONS(507), + [anon_sym_SUPER] = ACTIONS(507), + [anon_sym_True] = ACTIONS(507), + [anon_sym_true] = ACTIONS(507), + [anon_sym_TRUE] = ACTIONS(507), + [anon_sym_False] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_FALSE] = ACTIONS(507), + [anon_sym_Null] = ACTIONS(507), + [anon_sym_null] = ACTIONS(507), + [anon_sym_NULL] = ACTIONS(507), + [anon_sym_Undefined] = ACTIONS(507), + [anon_sym_undefined] = ACTIONS(507), + [anon_sym_UNDEFINED] = ACTIONS(507), + [anon_sym_get] = ACTIONS(507), + [anon_sym_set] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [sym_hash_empty] = ACTIONS(509), + [anon_sym_export] = ACTIONS(507), + [anon_sym_QueryExecute] = ACTIONS(507), + [anon_sym_queryexecute] = ACTIONS(507), + [anon_sym_QUERYEXECUTE] = ACTIONS(507), + [anon_sym_queryExecute] = ACTIONS(507), + [anon_sym_BQUOTE] = ACTIONS(509), + [anon_sym_Abstract] = ACTIONS(507), + [anon_sym_abstract] = ACTIONS(507), + [anon_sym_ABSTRACT] = ACTIONS(507), + [anon_sym_Component] = ACTIONS(507), + [anon_sym_component] = ACTIONS(507), + [anon_sym_COMPONENT] = ACTIONS(507), + [anon_sym_Debugger] = ACTIONS(507), + [anon_sym_debugger] = ACTIONS(507), + [anon_sym_DEBUGGER] = ACTIONS(507), + [anon_sym_Final] = ACTIONS(507), + [anon_sym_final] = ACTIONS(507), + [anon_sym_FINAL] = ACTIONS(507), + [anon_sym_Function] = ACTIONS(507), + [anon_sym_function] = ACTIONS(507), + [anon_sym_FUNCTION] = ACTIONS(507), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_Include] = ACTIONS(507), + [anon_sym_include] = ACTIONS(507), + [anon_sym_INCLUDE] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_New] = ACTIONS(507), + [anon_sym_new] = ACTIONS(507), + [anon_sym_NEW] = ACTIONS(507), + [anon_sym_Package] = ACTIONS(507), + [anon_sym_package] = ACTIONS(507), + [anon_sym_PACKAGE] = ACTIONS(507), + [anon_sym_Private] = ACTIONS(507), + [anon_sym_private] = ACTIONS(507), + [anon_sym_PRIVATE] = ACTIONS(507), + [anon_sym_Public] = ACTIONS(507), + [anon_sym_public] = ACTIONS(507), + [anon_sym_PUBLIC] = ACTIONS(507), + [anon_sym_Remote] = ACTIONS(507), + [anon_sym_remote] = ACTIONS(507), + [anon_sym_REMOTE] = ACTIONS(507), + [anon_sym_Static] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_STATIC] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__java_block_open] = ACTIONS(509), + [sym__static_type_prefix] = ACTIONS(509), }, [STATE(774)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_Query] = ACTIONS(2308), - [anon_sym_query] = ACTIONS(2308), - [anon_sym_QUERY] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2308), - [sym_optional_chain] = ACTIONS(2310), - [sym_static_chain] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_BSLASH] = ACTIONS(2308), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_LT_GT] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [aux_sym_binary_expression_token1] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [aux_sym_binary_expression_token2] = ACTIONS(2308), - [aux_sym_binary_expression_token3] = ACTIONS(2308), - [aux_sym_binary_expression_token4] = ACTIONS(2310), - [aux_sym_binary_expression_token5] = ACTIONS(2310), - [aux_sym_binary_expression_token6] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2310), - [aux_sym_unary_operator_token1] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2308), - [aux_sym_number_token2] = ACTIONS(2308), - [anon_sym_This] = ACTIONS(2308), - [anon_sym_this] = ACTIONS(2308), - [anon_sym_THIS] = ACTIONS(2308), - [anon_sym_Super] = ACTIONS(2308), - [anon_sym_super] = ACTIONS(2308), - [anon_sym_SUPER] = ACTIONS(2308), - [anon_sym_True] = ACTIONS(2308), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_TRUE] = ACTIONS(2308), - [anon_sym_False] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [anon_sym_FALSE] = ACTIONS(2308), - [anon_sym_Null] = ACTIONS(2308), - [anon_sym_null] = ACTIONS(2308), - [anon_sym_NULL] = ACTIONS(2308), - [anon_sym_Undefined] = ACTIONS(2308), - [anon_sym_undefined] = ACTIONS(2308), - [anon_sym_UNDEFINED] = ACTIONS(2308), - [anon_sym_get] = ACTIONS(2308), - [anon_sym_set] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2308), - [sym_hash_empty] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2308), - [anon_sym_QueryExecute] = ACTIONS(2308), - [anon_sym_queryexecute] = ACTIONS(2308), - [anon_sym_QUERYEXECUTE] = ACTIONS(2308), - [anon_sym_queryExecute] = ACTIONS(2308), - [anon_sym_BQUOTE] = ACTIONS(2310), - [anon_sym_Abstract] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_ABSTRACT] = ACTIONS(2308), - [anon_sym_Component] = ACTIONS(2308), - [anon_sym_component] = ACTIONS(2308), - [anon_sym_COMPONENT] = ACTIONS(2308), - [anon_sym_Debugger] = ACTIONS(2308), - [anon_sym_debugger] = ACTIONS(2308), - [anon_sym_DEBUGGER] = ACTIONS(2308), - [anon_sym_Final] = ACTIONS(2308), - [anon_sym_final] = ACTIONS(2308), - [anon_sym_FINAL] = ACTIONS(2308), - [anon_sym_Function] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_FUNCTION] = ACTIONS(2308), - [anon_sym_In] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2308), - [anon_sym_IN] = ACTIONS(2308), - [anon_sym_Include] = ACTIONS(2308), - [anon_sym_include] = ACTIONS(2308), - [anon_sym_INCLUDE] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(2308), - [anon_sym_instanceof] = ACTIONS(2308), - [anon_sym_INSTANCEOF] = ACTIONS(2308), - [anon_sym_instanceOf] = ACTIONS(2308), - [anon_sym_New] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_NEW] = ACTIONS(2308), - [anon_sym_Package] = ACTIONS(2308), - [anon_sym_package] = ACTIONS(2308), - [anon_sym_PACKAGE] = ACTIONS(2308), - [anon_sym_Private] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_PRIVATE] = ACTIONS(2308), - [anon_sym_Public] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_PUBLIC] = ACTIONS(2308), - [anon_sym_Remote] = ACTIONS(2308), - [anon_sym_remote] = ACTIONS(2308), - [anon_sym_REMOTE] = ACTIONS(2308), - [anon_sym_Static] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_STATIC] = ACTIONS(2308), - [sym__ternary_qmark] = ACTIONS(2310), - [sym__elvis_operator] = ACTIONS(2310), - [sym_logical_or] = ACTIONS(2310), - [sym__java_block_open] = ACTIONS(2310), - [sym__static_type_prefix] = ACTIONS(2310), + [sym_identifier] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_Query] = ACTIONS(3144), + [anon_sym_query] = ACTIONS(3144), + [anon_sym_QUERY] = ACTIONS(3144), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3146), + [aux_sym_unary_operator_token1] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3144), + [aux_sym_number_token2] = ACTIONS(3144), + [anon_sym_This] = ACTIONS(3144), + [anon_sym_this] = ACTIONS(3144), + [anon_sym_THIS] = ACTIONS(3144), + [anon_sym_Super] = ACTIONS(3144), + [anon_sym_super] = ACTIONS(3144), + [anon_sym_SUPER] = ACTIONS(3144), + [anon_sym_True] = ACTIONS(3144), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_TRUE] = ACTIONS(3144), + [anon_sym_False] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_FALSE] = ACTIONS(3144), + [anon_sym_Null] = ACTIONS(3144), + [anon_sym_null] = ACTIONS(3144), + [anon_sym_NULL] = ACTIONS(3144), + [anon_sym_Undefined] = ACTIONS(3144), + [anon_sym_undefined] = ACTIONS(3144), + [anon_sym_UNDEFINED] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(3144), + [anon_sym_set] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(3144), + [sym_hash_empty] = ACTIONS(3146), + [anon_sym_export] = ACTIONS(3144), + [anon_sym_QueryExecute] = ACTIONS(3144), + [anon_sym_queryexecute] = ACTIONS(3144), + [anon_sym_QUERYEXECUTE] = ACTIONS(3144), + [anon_sym_queryExecute] = ACTIONS(3144), + [anon_sym_BQUOTE] = ACTIONS(3146), + [anon_sym_Abstract] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_ABSTRACT] = ACTIONS(3144), + [anon_sym_Component] = ACTIONS(3144), + [anon_sym_component] = ACTIONS(3144), + [anon_sym_COMPONENT] = ACTIONS(3144), + [anon_sym_Debugger] = ACTIONS(3144), + [anon_sym_debugger] = ACTIONS(3144), + [anon_sym_DEBUGGER] = ACTIONS(3144), + [anon_sym_Final] = ACTIONS(3144), + [anon_sym_final] = ACTIONS(3144), + [anon_sym_FINAL] = ACTIONS(3144), + [anon_sym_Function] = ACTIONS(3144), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_FUNCTION] = ACTIONS(3144), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(3144), + [anon_sym_include] = ACTIONS(3144), + [anon_sym_INCLUDE] = ACTIONS(3144), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(3144), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_NEW] = ACTIONS(3144), + [anon_sym_Package] = ACTIONS(3144), + [anon_sym_package] = ACTIONS(3144), + [anon_sym_PACKAGE] = ACTIONS(3144), + [anon_sym_Private] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_PRIVATE] = ACTIONS(3144), + [anon_sym_Public] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_PUBLIC] = ACTIONS(3144), + [anon_sym_Remote] = ACTIONS(3144), + [anon_sym_remote] = ACTIONS(3144), + [anon_sym_REMOTE] = ACTIONS(3144), + [anon_sym_Static] = ACTIONS(3144), + [anon_sym_static] = ACTIONS(3144), + [anon_sym_STATIC] = ACTIONS(3144), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(3146), + [sym__static_type_prefix] = ACTIONS(3146), }, [STATE(775)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2430), - [anon_sym_query] = ACTIONS(2430), - [anon_sym_QUERY] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [aux_sym_unary_operator_token1] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2430), - [aux_sym_number_token2] = ACTIONS(2430), - [anon_sym_This] = ACTIONS(2430), - [anon_sym_this] = ACTIONS(2430), - [anon_sym_THIS] = ACTIONS(2430), - [anon_sym_Super] = ACTIONS(2430), - [anon_sym_super] = ACTIONS(2430), - [anon_sym_SUPER] = ACTIONS(2430), - [anon_sym_True] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_TRUE] = ACTIONS(2430), - [anon_sym_False] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_FALSE] = ACTIONS(2430), - [anon_sym_Null] = ACTIONS(2430), - [anon_sym_null] = ACTIONS(2430), - [anon_sym_NULL] = ACTIONS(2430), - [anon_sym_Undefined] = ACTIONS(2430), - [anon_sym_undefined] = ACTIONS(2430), - [anon_sym_UNDEFINED] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [sym_hash_empty] = ACTIONS(2432), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_QueryExecute] = ACTIONS(2430), - [anon_sym_queryexecute] = ACTIONS(2430), - [anon_sym_QUERYEXECUTE] = ACTIONS(2430), - [anon_sym_queryExecute] = ACTIONS(2430), - [anon_sym_BQUOTE] = ACTIONS(2432), - [anon_sym_Abstract] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_ABSTRACT] = ACTIONS(2430), - [anon_sym_Component] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_COMPONENT] = ACTIONS(2430), - [anon_sym_Debugger] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_DEBUGGER] = ACTIONS(2430), - [anon_sym_Final] = ACTIONS(2430), - [anon_sym_final] = ACTIONS(2430), - [anon_sym_FINAL] = ACTIONS(2430), - [anon_sym_Function] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_FUNCTION] = ACTIONS(2430), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2430), - [anon_sym_include] = ACTIONS(2430), - [anon_sym_INCLUDE] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_NEW] = ACTIONS(2430), - [anon_sym_Package] = ACTIONS(2430), - [anon_sym_package] = ACTIONS(2430), - [anon_sym_PACKAGE] = ACTIONS(2430), - [anon_sym_Private] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_PRIVATE] = ACTIONS(2430), - [anon_sym_Public] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_PUBLIC] = ACTIONS(2430), - [anon_sym_Remote] = ACTIONS(2430), - [anon_sym_remote] = ACTIONS(2430), - [anon_sym_REMOTE] = ACTIONS(2430), - [anon_sym_Static] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_STATIC] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__java_block_open] = ACTIONS(2432), - [sym__static_type_prefix] = ACTIONS(2432), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_Query] = ACTIONS(1718), + [anon_sym_query] = ACTIONS(1718), + [anon_sym_QUERY] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [aux_sym_unary_operator_token1] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1718), + [aux_sym_number_token2] = ACTIONS(1718), + [anon_sym_This] = ACTIONS(1718), + [anon_sym_this] = ACTIONS(1718), + [anon_sym_THIS] = ACTIONS(1718), + [anon_sym_Super] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(1718), + [anon_sym_SUPER] = ACTIONS(1718), + [anon_sym_True] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_TRUE] = ACTIONS(1718), + [anon_sym_False] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [anon_sym_FALSE] = ACTIONS(1718), + [anon_sym_Null] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), + [anon_sym_NULL] = ACTIONS(1718), + [anon_sym_Undefined] = ACTIONS(1718), + [anon_sym_undefined] = ACTIONS(1718), + [anon_sym_UNDEFINED] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [sym_hash_empty] = ACTIONS(1716), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_QueryExecute] = ACTIONS(1718), + [anon_sym_queryexecute] = ACTIONS(1718), + [anon_sym_QUERYEXECUTE] = ACTIONS(1718), + [anon_sym_queryExecute] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_Abstract] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_ABSTRACT] = ACTIONS(1718), + [anon_sym_Component] = ACTIONS(1718), + [anon_sym_component] = ACTIONS(1718), + [anon_sym_COMPONENT] = ACTIONS(1718), + [anon_sym_Debugger] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_DEBUGGER] = ACTIONS(1718), + [anon_sym_Final] = ACTIONS(1718), + [anon_sym_final] = ACTIONS(1718), + [anon_sym_FINAL] = ACTIONS(1718), + [anon_sym_Function] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_FUNCTION] = ACTIONS(1718), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_Include] = ACTIONS(1718), + [anon_sym_include] = ACTIONS(1718), + [anon_sym_INCLUDE] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [anon_sym_New] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_NEW] = ACTIONS(1718), + [anon_sym_Package] = ACTIONS(1718), + [anon_sym_package] = ACTIONS(1718), + [anon_sym_PACKAGE] = ACTIONS(1718), + [anon_sym_Private] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_PRIVATE] = ACTIONS(1718), + [anon_sym_Public] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_PUBLIC] = ACTIONS(1718), + [anon_sym_Remote] = ACTIONS(1718), + [anon_sym_remote] = ACTIONS(1718), + [anon_sym_REMOTE] = ACTIONS(1718), + [anon_sym_Static] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_STATIC] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__java_block_open] = ACTIONS(1716), + [sym__static_type_prefix] = ACTIONS(1716), }, [STATE(776)] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2474), - [anon_sym_query] = ACTIONS(2474), - [anon_sym_QUERY] = ACTIONS(2474), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2476), - [aux_sym_unary_operator_token1] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2476), - [anon_sym_SQUOTE] = ACTIONS(2476), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2474), - [aux_sym_number_token2] = ACTIONS(2474), - [anon_sym_This] = ACTIONS(2474), - [anon_sym_this] = ACTIONS(2474), - [anon_sym_THIS] = ACTIONS(2474), - [anon_sym_Super] = ACTIONS(2474), - [anon_sym_super] = ACTIONS(2474), - [anon_sym_SUPER] = ACTIONS(2474), - [anon_sym_True] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2474), - [anon_sym_TRUE] = ACTIONS(2474), - [anon_sym_False] = ACTIONS(2474), - [anon_sym_false] = ACTIONS(2474), - [anon_sym_FALSE] = ACTIONS(2474), - [anon_sym_Null] = ACTIONS(2474), - [anon_sym_null] = ACTIONS(2474), - [anon_sym_NULL] = ACTIONS(2474), - [anon_sym_Undefined] = ACTIONS(2474), - [anon_sym_undefined] = ACTIONS(2474), - [anon_sym_UNDEFINED] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_POUND] = ACTIONS(2474), - [sym_hash_empty] = ACTIONS(2476), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_QueryExecute] = ACTIONS(2474), - [anon_sym_queryexecute] = ACTIONS(2474), - [anon_sym_QUERYEXECUTE] = ACTIONS(2474), - [anon_sym_queryExecute] = ACTIONS(2474), - [anon_sym_BQUOTE] = ACTIONS(2476), - [anon_sym_Abstract] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_ABSTRACT] = ACTIONS(2474), - [anon_sym_Component] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_COMPONENT] = ACTIONS(2474), - [anon_sym_Debugger] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_DEBUGGER] = ACTIONS(2474), - [anon_sym_Final] = ACTIONS(2474), - [anon_sym_final] = ACTIONS(2474), - [anon_sym_FINAL] = ACTIONS(2474), - [anon_sym_Function] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_FUNCTION] = ACTIONS(2474), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2474), - [anon_sym_include] = ACTIONS(2474), - [anon_sym_INCLUDE] = ACTIONS(2474), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_NEW] = ACTIONS(2474), - [anon_sym_Package] = ACTIONS(2474), - [anon_sym_package] = ACTIONS(2474), - [anon_sym_PACKAGE] = ACTIONS(2474), - [anon_sym_Private] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_PRIVATE] = ACTIONS(2474), - [anon_sym_Public] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_PUBLIC] = ACTIONS(2474), - [anon_sym_Remote] = ACTIONS(2474), - [anon_sym_remote] = ACTIONS(2474), - [anon_sym_REMOTE] = ACTIONS(2474), - [anon_sym_Static] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_STATIC] = ACTIONS(2474), - [sym__ternary_qmark] = ACTIONS(3132), - [sym__elvis_operator] = ACTIONS(3134), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2476), - [sym__static_type_prefix] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_Query] = ACTIONS(2338), + [anon_sym_query] = ACTIONS(2338), + [anon_sym_QUERY] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2338), + [sym_optional_chain] = ACTIONS(2342), + [sym_static_chain] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2338), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_BSLASH] = ACTIONS(2338), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_LT_GT] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [aux_sym_binary_expression_token1] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2338), + [aux_sym_binary_expression_token2] = ACTIONS(2338), + [aux_sym_binary_expression_token3] = ACTIONS(2338), + [aux_sym_binary_expression_token4] = ACTIONS(2342), + [aux_sym_binary_expression_token5] = ACTIONS(2342), + [aux_sym_binary_expression_token6] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_TILDE] = ACTIONS(2342), + [aux_sym_unary_operator_token1] = ACTIONS(2338), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2342), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2338), + [aux_sym_number_token2] = ACTIONS(2338), + [anon_sym_This] = ACTIONS(2338), + [anon_sym_this] = ACTIONS(2338), + [anon_sym_THIS] = ACTIONS(2338), + [anon_sym_Super] = ACTIONS(2338), + [anon_sym_super] = ACTIONS(2338), + [anon_sym_SUPER] = ACTIONS(2338), + [anon_sym_True] = ACTIONS(2338), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_TRUE] = ACTIONS(2338), + [anon_sym_False] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_FALSE] = ACTIONS(2338), + [anon_sym_Null] = ACTIONS(2338), + [anon_sym_null] = ACTIONS(2338), + [anon_sym_NULL] = ACTIONS(2338), + [anon_sym_Undefined] = ACTIONS(2338), + [anon_sym_undefined] = ACTIONS(2338), + [anon_sym_UNDEFINED] = ACTIONS(2338), + [anon_sym_get] = ACTIONS(2338), + [anon_sym_set] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(2338), + [sym_hash_empty] = ACTIONS(2342), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_QueryExecute] = ACTIONS(2338), + [anon_sym_queryexecute] = ACTIONS(2338), + [anon_sym_QUERYEXECUTE] = ACTIONS(2338), + [anon_sym_queryExecute] = ACTIONS(2338), + [anon_sym_BQUOTE] = ACTIONS(2342), + [anon_sym_Abstract] = ACTIONS(2338), + [anon_sym_abstract] = ACTIONS(2338), + [anon_sym_ABSTRACT] = ACTIONS(2338), + [anon_sym_Component] = ACTIONS(2338), + [anon_sym_component] = ACTIONS(2338), + [anon_sym_COMPONENT] = ACTIONS(2338), + [anon_sym_Debugger] = ACTIONS(2338), + [anon_sym_debugger] = ACTIONS(2338), + [anon_sym_DEBUGGER] = ACTIONS(2338), + [anon_sym_Final] = ACTIONS(2338), + [anon_sym_final] = ACTIONS(2338), + [anon_sym_FINAL] = ACTIONS(2338), + [anon_sym_Function] = ACTIONS(2338), + [anon_sym_function] = ACTIONS(2338), + [anon_sym_FUNCTION] = ACTIONS(2338), + [anon_sym_In] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_IN] = ACTIONS(2338), + [anon_sym_Include] = ACTIONS(2338), + [anon_sym_include] = ACTIONS(2338), + [anon_sym_INCLUDE] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(2338), + [anon_sym_instanceof] = ACTIONS(2338), + [anon_sym_INSTANCEOF] = ACTIONS(2338), + [anon_sym_instanceOf] = ACTIONS(2338), + [anon_sym_New] = ACTIONS(2338), + [anon_sym_new] = ACTIONS(2338), + [anon_sym_NEW] = ACTIONS(2338), + [anon_sym_Package] = ACTIONS(2338), + [anon_sym_package] = ACTIONS(2338), + [anon_sym_PACKAGE] = ACTIONS(2338), + [anon_sym_Private] = ACTIONS(2338), + [anon_sym_private] = ACTIONS(2338), + [anon_sym_PRIVATE] = ACTIONS(2338), + [anon_sym_Public] = ACTIONS(2338), + [anon_sym_public] = ACTIONS(2338), + [anon_sym_PUBLIC] = ACTIONS(2338), + [anon_sym_Remote] = ACTIONS(2338), + [anon_sym_remote] = ACTIONS(2338), + [anon_sym_REMOTE] = ACTIONS(2338), + [anon_sym_Static] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2338), + [anon_sym_STATIC] = ACTIONS(2338), + [sym__ternary_qmark] = ACTIONS(2342), + [sym__elvis_operator] = ACTIONS(2342), + [sym_logical_or] = ACTIONS(2342), + [sym__java_block_open] = ACTIONS(2342), + [sym__static_type_prefix] = ACTIONS(2342), }, [STATE(777)] = { - [sym_identifier] = ACTIONS(2320), - [anon_sym_DOT] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_Query] = ACTIONS(2320), - [anon_sym_query] = ACTIONS(2320), - [anon_sym_QUERY] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2320), - [sym_optional_chain] = ACTIONS(2322), - [sym_static_chain] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_BSLASH] = ACTIONS(2320), - [anon_sym_STAR_STAR] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_LT_GT] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2322), - [aux_sym_binary_expression_token1] = ACTIONS(2322), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [aux_sym_binary_expression_token2] = ACTIONS(2320), - [aux_sym_binary_expression_token3] = ACTIONS(2320), - [aux_sym_binary_expression_token4] = ACTIONS(2322), - [aux_sym_binary_expression_token5] = ACTIONS(2322), - [aux_sym_binary_expression_token6] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2322), - [aux_sym_unary_operator_token1] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_DQUOTE] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2322), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2320), - [aux_sym_number_token2] = ACTIONS(2320), - [anon_sym_This] = ACTIONS(2320), - [anon_sym_this] = ACTIONS(2320), - [anon_sym_THIS] = ACTIONS(2320), - [anon_sym_Super] = ACTIONS(2320), - [anon_sym_super] = ACTIONS(2320), - [anon_sym_SUPER] = ACTIONS(2320), - [anon_sym_True] = ACTIONS(2320), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_TRUE] = ACTIONS(2320), - [anon_sym_False] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [anon_sym_FALSE] = ACTIONS(2320), - [anon_sym_Null] = ACTIONS(2320), - [anon_sym_null] = ACTIONS(2320), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_Undefined] = ACTIONS(2320), - [anon_sym_undefined] = ACTIONS(2320), - [anon_sym_UNDEFINED] = ACTIONS(2320), - [anon_sym_get] = ACTIONS(2320), - [anon_sym_set] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(2320), - [sym_hash_empty] = ACTIONS(2322), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_QueryExecute] = ACTIONS(2320), - [anon_sym_queryexecute] = ACTIONS(2320), - [anon_sym_QUERYEXECUTE] = ACTIONS(2320), - [anon_sym_queryExecute] = ACTIONS(2320), - [anon_sym_BQUOTE] = ACTIONS(2322), - [anon_sym_Abstract] = ACTIONS(2320), - [anon_sym_abstract] = ACTIONS(2320), - [anon_sym_ABSTRACT] = ACTIONS(2320), - [anon_sym_Component] = ACTIONS(2320), - [anon_sym_component] = ACTIONS(2320), - [anon_sym_COMPONENT] = ACTIONS(2320), - [anon_sym_Debugger] = ACTIONS(2320), - [anon_sym_debugger] = ACTIONS(2320), - [anon_sym_DEBUGGER] = ACTIONS(2320), - [anon_sym_Final] = ACTIONS(2320), - [anon_sym_final] = ACTIONS(2320), - [anon_sym_FINAL] = ACTIONS(2320), - [anon_sym_Function] = ACTIONS(2320), - [anon_sym_function] = ACTIONS(2320), - [anon_sym_FUNCTION] = ACTIONS(2320), - [anon_sym_In] = ACTIONS(2320), - [anon_sym_in] = ACTIONS(2320), - [anon_sym_IN] = ACTIONS(2320), - [anon_sym_Include] = ACTIONS(2320), - [anon_sym_include] = ACTIONS(2320), - [anon_sym_INCLUDE] = ACTIONS(2320), - [anon_sym_InstanceOf] = ACTIONS(2320), - [anon_sym_instanceof] = ACTIONS(2320), - [anon_sym_INSTANCEOF] = ACTIONS(2320), - [anon_sym_instanceOf] = ACTIONS(2320), - [anon_sym_New] = ACTIONS(2320), - [anon_sym_new] = ACTIONS(2320), - [anon_sym_NEW] = ACTIONS(2320), - [anon_sym_Package] = ACTIONS(2320), - [anon_sym_package] = ACTIONS(2320), - [anon_sym_PACKAGE] = ACTIONS(2320), - [anon_sym_Private] = ACTIONS(2320), - [anon_sym_private] = ACTIONS(2320), - [anon_sym_PRIVATE] = ACTIONS(2320), - [anon_sym_Public] = ACTIONS(2320), - [anon_sym_public] = ACTIONS(2320), - [anon_sym_PUBLIC] = ACTIONS(2320), - [anon_sym_Remote] = ACTIONS(2320), - [anon_sym_remote] = ACTIONS(2320), - [anon_sym_REMOTE] = ACTIONS(2320), - [anon_sym_Static] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_STATIC] = ACTIONS(2320), - [sym__ternary_qmark] = ACTIONS(2322), - [sym__elvis_operator] = ACTIONS(2322), - [sym_logical_or] = ACTIONS(2322), - [sym__java_block_open] = ACTIONS(2322), - [sym__static_type_prefix] = ACTIONS(2322), + [sym_identifier] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_Query] = ACTIONS(2436), + [anon_sym_query] = ACTIONS(2436), + [anon_sym_QUERY] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2436), + [sym_optional_chain] = ACTIONS(2438), + [sym_static_chain] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_BSLASH] = ACTIONS(2436), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2436), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_LT_GT] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2436), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [aux_sym_binary_expression_token1] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [aux_sym_binary_expression_token2] = ACTIONS(2436), + [aux_sym_binary_expression_token3] = ACTIONS(2436), + [aux_sym_binary_expression_token4] = ACTIONS(2438), + [aux_sym_binary_expression_token5] = ACTIONS(2438), + [aux_sym_binary_expression_token6] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2436), + [anon_sym_TILDE] = ACTIONS(2438), + [aux_sym_unary_operator_token1] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2436), + [aux_sym_number_token2] = ACTIONS(2436), + [anon_sym_This] = ACTIONS(2436), + [anon_sym_this] = ACTIONS(2436), + [anon_sym_THIS] = ACTIONS(2436), + [anon_sym_Super] = ACTIONS(2436), + [anon_sym_super] = ACTIONS(2436), + [anon_sym_SUPER] = ACTIONS(2436), + [anon_sym_True] = ACTIONS(2436), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_TRUE] = ACTIONS(2436), + [anon_sym_False] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [anon_sym_FALSE] = ACTIONS(2436), + [anon_sym_Null] = ACTIONS(2436), + [anon_sym_null] = ACTIONS(2436), + [anon_sym_NULL] = ACTIONS(2436), + [anon_sym_Undefined] = ACTIONS(2436), + [anon_sym_undefined] = ACTIONS(2436), + [anon_sym_UNDEFINED] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [sym_hash_empty] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_QueryExecute] = ACTIONS(2436), + [anon_sym_queryexecute] = ACTIONS(2436), + [anon_sym_QUERYEXECUTE] = ACTIONS(2436), + [anon_sym_queryExecute] = ACTIONS(2436), + [anon_sym_BQUOTE] = ACTIONS(2438), + [anon_sym_Abstract] = ACTIONS(2436), + [anon_sym_abstract] = ACTIONS(2436), + [anon_sym_ABSTRACT] = ACTIONS(2436), + [anon_sym_Component] = ACTIONS(2436), + [anon_sym_component] = ACTIONS(2436), + [anon_sym_COMPONENT] = ACTIONS(2436), + [anon_sym_Debugger] = ACTIONS(2436), + [anon_sym_debugger] = ACTIONS(2436), + [anon_sym_DEBUGGER] = ACTIONS(2436), + [anon_sym_Final] = ACTIONS(2436), + [anon_sym_final] = ACTIONS(2436), + [anon_sym_FINAL] = ACTIONS(2436), + [anon_sym_Function] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2436), + [anon_sym_FUNCTION] = ACTIONS(2436), + [anon_sym_In] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_IN] = ACTIONS(2436), + [anon_sym_Include] = ACTIONS(2436), + [anon_sym_include] = ACTIONS(2436), + [anon_sym_INCLUDE] = ACTIONS(2436), + [anon_sym_InstanceOf] = ACTIONS(2436), + [anon_sym_instanceof] = ACTIONS(2436), + [anon_sym_INSTANCEOF] = ACTIONS(2436), + [anon_sym_instanceOf] = ACTIONS(2436), + [anon_sym_New] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_NEW] = ACTIONS(2436), + [anon_sym_Package] = ACTIONS(2436), + [anon_sym_package] = ACTIONS(2436), + [anon_sym_PACKAGE] = ACTIONS(2436), + [anon_sym_Private] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_PRIVATE] = ACTIONS(2436), + [anon_sym_Public] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_PUBLIC] = ACTIONS(2436), + [anon_sym_Remote] = ACTIONS(2436), + [anon_sym_remote] = ACTIONS(2436), + [anon_sym_REMOTE] = ACTIONS(2436), + [anon_sym_Static] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_STATIC] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(2438), + [sym__elvis_operator] = ACTIONS(2438), + [sym_logical_or] = ACTIONS(2438), + [sym__java_block_open] = ACTIONS(2438), + [sym__static_type_prefix] = ACTIONS(2438), }, [STATE(778)] = { - [sym_identifier] = ACTIONS(2324), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_Query] = ACTIONS(2324), - [anon_sym_query] = ACTIONS(2324), - [anon_sym_QUERY] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), - [sym_optional_chain] = ACTIONS(2326), - [sym_static_chain] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_GT_GT_GT] = ACTIONS(2326), - [anon_sym_LT_LT] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_SLASH] = ACTIONS(2324), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_BSLASH] = ACTIONS(2324), - [anon_sym_STAR_STAR] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2326), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), - [anon_sym_LT_GT] = ACTIONS(2326), - [anon_sym_BANG_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), - [aux_sym_binary_expression_token1] = ACTIONS(2326), - [anon_sym_GT_EQ] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2324), - [aux_sym_binary_expression_token2] = ACTIONS(2324), - [aux_sym_binary_expression_token3] = ACTIONS(2324), - [aux_sym_binary_expression_token4] = ACTIONS(2326), - [aux_sym_binary_expression_token5] = ACTIONS(2326), - [aux_sym_binary_expression_token6] = ACTIONS(2326), - [anon_sym_QMARK_QMARK] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2324), - [anon_sym_TILDE] = ACTIONS(2326), - [aux_sym_unary_operator_token1] = ACTIONS(2324), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(2326), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2324), - [aux_sym_number_token2] = ACTIONS(2324), - [anon_sym_This] = ACTIONS(2324), - [anon_sym_this] = ACTIONS(2324), - [anon_sym_THIS] = ACTIONS(2324), - [anon_sym_Super] = ACTIONS(2324), - [anon_sym_super] = ACTIONS(2324), - [anon_sym_SUPER] = ACTIONS(2324), - [anon_sym_True] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2324), - [anon_sym_TRUE] = ACTIONS(2324), - [anon_sym_False] = ACTIONS(2324), - [anon_sym_false] = ACTIONS(2324), - [anon_sym_FALSE] = ACTIONS(2324), - [anon_sym_Null] = ACTIONS(2324), - [anon_sym_null] = ACTIONS(2324), - [anon_sym_NULL] = ACTIONS(2324), - [anon_sym_Undefined] = ACTIONS(2324), - [anon_sym_undefined] = ACTIONS(2324), - [anon_sym_UNDEFINED] = ACTIONS(2324), - [anon_sym_get] = ACTIONS(2324), - [anon_sym_set] = ACTIONS(2324), - [anon_sym_POUND] = ACTIONS(2324), - [sym_hash_empty] = ACTIONS(2326), - [anon_sym_export] = ACTIONS(2324), - [anon_sym_QueryExecute] = ACTIONS(2324), - [anon_sym_queryexecute] = ACTIONS(2324), - [anon_sym_QUERYEXECUTE] = ACTIONS(2324), - [anon_sym_queryExecute] = ACTIONS(2324), - [anon_sym_BQUOTE] = ACTIONS(2326), - [anon_sym_Abstract] = ACTIONS(2324), - [anon_sym_abstract] = ACTIONS(2324), - [anon_sym_ABSTRACT] = ACTIONS(2324), - [anon_sym_Component] = ACTIONS(2324), - [anon_sym_component] = ACTIONS(2324), - [anon_sym_COMPONENT] = ACTIONS(2324), - [anon_sym_Debugger] = ACTIONS(2324), - [anon_sym_debugger] = ACTIONS(2324), - [anon_sym_DEBUGGER] = ACTIONS(2324), - [anon_sym_Final] = ACTIONS(2324), - [anon_sym_final] = ACTIONS(2324), - [anon_sym_FINAL] = ACTIONS(2324), - [anon_sym_Function] = ACTIONS(2324), - [anon_sym_function] = ACTIONS(2324), - [anon_sym_FUNCTION] = ACTIONS(2324), - [anon_sym_In] = ACTIONS(2324), - [anon_sym_in] = ACTIONS(2324), - [anon_sym_IN] = ACTIONS(2324), - [anon_sym_Include] = ACTIONS(2324), - [anon_sym_include] = ACTIONS(2324), - [anon_sym_INCLUDE] = ACTIONS(2324), - [anon_sym_InstanceOf] = ACTIONS(2324), - [anon_sym_instanceof] = ACTIONS(2324), - [anon_sym_INSTANCEOF] = ACTIONS(2324), - [anon_sym_instanceOf] = ACTIONS(2324), - [anon_sym_New] = ACTIONS(2324), - [anon_sym_new] = ACTIONS(2324), - [anon_sym_NEW] = ACTIONS(2324), - [anon_sym_Package] = ACTIONS(2324), - [anon_sym_package] = ACTIONS(2324), - [anon_sym_PACKAGE] = ACTIONS(2324), - [anon_sym_Private] = ACTIONS(2324), - [anon_sym_private] = ACTIONS(2324), - [anon_sym_PRIVATE] = ACTIONS(2324), - [anon_sym_Public] = ACTIONS(2324), - [anon_sym_public] = ACTIONS(2324), - [anon_sym_PUBLIC] = ACTIONS(2324), - [anon_sym_Remote] = ACTIONS(2324), - [anon_sym_remote] = ACTIONS(2324), - [anon_sym_REMOTE] = ACTIONS(2324), - [anon_sym_Static] = ACTIONS(2324), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_STATIC] = ACTIONS(2324), - [sym__ternary_qmark] = ACTIONS(2326), - [sym__elvis_operator] = ACTIONS(2326), - [sym_logical_or] = ACTIONS(2326), - [sym__java_block_open] = ACTIONS(2326), - [sym__static_type_prefix] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_Query] = ACTIONS(2456), + [anon_sym_query] = ACTIONS(2456), + [anon_sym_QUERY] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2456), + [sym_optional_chain] = ACTIONS(2458), + [sym_static_chain] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_BSLASH] = ACTIONS(2456), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2456), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_LT_GT] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2456), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [aux_sym_binary_expression_token1] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [aux_sym_binary_expression_token2] = ACTIONS(2456), + [aux_sym_binary_expression_token3] = ACTIONS(2456), + [aux_sym_binary_expression_token4] = ACTIONS(2458), + [aux_sym_binary_expression_token5] = ACTIONS(2458), + [aux_sym_binary_expression_token6] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2458), + [aux_sym_unary_operator_token1] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2456), + [aux_sym_number_token2] = ACTIONS(2456), + [anon_sym_This] = ACTIONS(2456), + [anon_sym_this] = ACTIONS(2456), + [anon_sym_THIS] = ACTIONS(2456), + [anon_sym_Super] = ACTIONS(2456), + [anon_sym_super] = ACTIONS(2456), + [anon_sym_SUPER] = ACTIONS(2456), + [anon_sym_True] = ACTIONS(2456), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_TRUE] = ACTIONS(2456), + [anon_sym_False] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [anon_sym_FALSE] = ACTIONS(2456), + [anon_sym_Null] = ACTIONS(2456), + [anon_sym_null] = ACTIONS(2456), + [anon_sym_NULL] = ACTIONS(2456), + [anon_sym_Undefined] = ACTIONS(2456), + [anon_sym_undefined] = ACTIONS(2456), + [anon_sym_UNDEFINED] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(2456), + [sym_hash_empty] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_QueryExecute] = ACTIONS(2456), + [anon_sym_queryexecute] = ACTIONS(2456), + [anon_sym_QUERYEXECUTE] = ACTIONS(2456), + [anon_sym_queryExecute] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_Abstract] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_ABSTRACT] = ACTIONS(2456), + [anon_sym_Component] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_COMPONENT] = ACTIONS(2456), + [anon_sym_Debugger] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_DEBUGGER] = ACTIONS(2456), + [anon_sym_Final] = ACTIONS(2456), + [anon_sym_final] = ACTIONS(2456), + [anon_sym_FINAL] = ACTIONS(2456), + [anon_sym_Function] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_FUNCTION] = ACTIONS(2456), + [anon_sym_In] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2456), + [anon_sym_IN] = ACTIONS(2456), + [anon_sym_Include] = ACTIONS(2456), + [anon_sym_include] = ACTIONS(2456), + [anon_sym_INCLUDE] = ACTIONS(2456), + [anon_sym_InstanceOf] = ACTIONS(2456), + [anon_sym_instanceof] = ACTIONS(2456), + [anon_sym_INSTANCEOF] = ACTIONS(2456), + [anon_sym_instanceOf] = ACTIONS(2456), + [anon_sym_New] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_NEW] = ACTIONS(2456), + [anon_sym_Package] = ACTIONS(2456), + [anon_sym_package] = ACTIONS(2456), + [anon_sym_PACKAGE] = ACTIONS(2456), + [anon_sym_Private] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_PRIVATE] = ACTIONS(2456), + [anon_sym_Public] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_PUBLIC] = ACTIONS(2456), + [anon_sym_Remote] = ACTIONS(2456), + [anon_sym_remote] = ACTIONS(2456), + [anon_sym_REMOTE] = ACTIONS(2456), + [anon_sym_Static] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_STATIC] = ACTIONS(2456), + [sym__ternary_qmark] = ACTIONS(2458), + [sym__elvis_operator] = ACTIONS(2458), + [sym_logical_or] = ACTIONS(2458), + [sym__java_block_open] = ACTIONS(2458), + [sym__static_type_prefix] = ACTIONS(2458), }, [STATE(779)] = { - [sym_identifier] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_Query] = ACTIONS(2328), - [anon_sym_query] = ACTIONS(2328), - [anon_sym_QUERY] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2328), - [sym_optional_chain] = ACTIONS(2330), - [sym_static_chain] = ACTIONS(2330), - [anon_sym_AMP_AMP] = ACTIONS(2330), - [anon_sym_PIPE_PIPE] = ACTIONS(2330), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2330), - [anon_sym_LT_LT] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2330), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2330), - [anon_sym_BSLASH] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2330), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2330), - [anon_sym_LT_GT] = ACTIONS(2330), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2330), - [aux_sym_binary_expression_token1] = ACTIONS(2330), - [anon_sym_GT_EQ] = ACTIONS(2330), - [anon_sym_GT] = ACTIONS(2328), - [aux_sym_binary_expression_token2] = ACTIONS(2328), - [aux_sym_binary_expression_token3] = ACTIONS(2328), - [aux_sym_binary_expression_token4] = ACTIONS(2330), - [aux_sym_binary_expression_token5] = ACTIONS(2330), - [aux_sym_binary_expression_token6] = ACTIONS(2330), - [anon_sym_QMARK_QMARK] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2330), - [aux_sym_unary_operator_token1] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2328), - [aux_sym_number_token2] = ACTIONS(2328), - [anon_sym_This] = ACTIONS(2328), - [anon_sym_this] = ACTIONS(2328), - [anon_sym_THIS] = ACTIONS(2328), - [anon_sym_Super] = ACTIONS(2328), - [anon_sym_super] = ACTIONS(2328), - [anon_sym_SUPER] = ACTIONS(2328), - [anon_sym_True] = ACTIONS(2328), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_TRUE] = ACTIONS(2328), - [anon_sym_False] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [anon_sym_FALSE] = ACTIONS(2328), - [anon_sym_Null] = ACTIONS(2328), - [anon_sym_null] = ACTIONS(2328), - [anon_sym_NULL] = ACTIONS(2328), - [anon_sym_Undefined] = ACTIONS(2328), - [anon_sym_undefined] = ACTIONS(2328), - [anon_sym_UNDEFINED] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(2328), - [sym_hash_empty] = ACTIONS(2330), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_QueryExecute] = ACTIONS(2328), - [anon_sym_queryexecute] = ACTIONS(2328), - [anon_sym_QUERYEXECUTE] = ACTIONS(2328), - [anon_sym_queryExecute] = ACTIONS(2328), - [anon_sym_BQUOTE] = ACTIONS(2330), - [anon_sym_Abstract] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_ABSTRACT] = ACTIONS(2328), - [anon_sym_Component] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_COMPONENT] = ACTIONS(2328), - [anon_sym_Debugger] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_DEBUGGER] = ACTIONS(2328), - [anon_sym_Final] = ACTIONS(2328), - [anon_sym_final] = ACTIONS(2328), - [anon_sym_FINAL] = ACTIONS(2328), - [anon_sym_Function] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_FUNCTION] = ACTIONS(2328), - [anon_sym_In] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_IN] = ACTIONS(2328), - [anon_sym_Include] = ACTIONS(2328), - [anon_sym_include] = ACTIONS(2328), - [anon_sym_INCLUDE] = ACTIONS(2328), - [anon_sym_InstanceOf] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_INSTANCEOF] = ACTIONS(2328), - [anon_sym_instanceOf] = ACTIONS(2328), - [anon_sym_New] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_NEW] = ACTIONS(2328), - [anon_sym_Package] = ACTIONS(2328), - [anon_sym_package] = ACTIONS(2328), - [anon_sym_PACKAGE] = ACTIONS(2328), - [anon_sym_Private] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_PRIVATE] = ACTIONS(2328), - [anon_sym_Public] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_PUBLIC] = ACTIONS(2328), - [anon_sym_Remote] = ACTIONS(2328), - [anon_sym_remote] = ACTIONS(2328), - [anon_sym_REMOTE] = ACTIONS(2328), - [anon_sym_Static] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_STATIC] = ACTIONS(2328), - [sym__ternary_qmark] = ACTIONS(2330), - [sym__elvis_operator] = ACTIONS(2330), - [sym_logical_or] = ACTIONS(2330), - [sym__java_block_open] = ACTIONS(2330), - [sym__static_type_prefix] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_Query] = ACTIONS(2532), + [anon_sym_query] = ACTIONS(2532), + [anon_sym_QUERY] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2532), + [sym_optional_chain] = ACTIONS(2534), + [sym_static_chain] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_BSLASH] = ACTIONS(2532), + [anon_sym_STAR_STAR] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2534), + [anon_sym_LT_GT] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2534), + [aux_sym_binary_expression_token1] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [aux_sym_binary_expression_token2] = ACTIONS(2532), + [aux_sym_binary_expression_token3] = ACTIONS(2532), + [aux_sym_binary_expression_token4] = ACTIONS(2534), + [aux_sym_binary_expression_token5] = ACTIONS(2534), + [aux_sym_binary_expression_token6] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2534), + [aux_sym_unary_operator_token1] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2532), + [aux_sym_number_token2] = ACTIONS(2532), + [anon_sym_This] = ACTIONS(2532), + [anon_sym_this] = ACTIONS(2532), + [anon_sym_THIS] = ACTIONS(2532), + [anon_sym_Super] = ACTIONS(2532), + [anon_sym_super] = ACTIONS(2532), + [anon_sym_SUPER] = ACTIONS(2532), + [anon_sym_True] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_TRUE] = ACTIONS(2532), + [anon_sym_False] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [anon_sym_FALSE] = ACTIONS(2532), + [anon_sym_Null] = ACTIONS(2532), + [anon_sym_null] = ACTIONS(2532), + [anon_sym_NULL] = ACTIONS(2532), + [anon_sym_Undefined] = ACTIONS(2532), + [anon_sym_undefined] = ACTIONS(2532), + [anon_sym_UNDEFINED] = ACTIONS(2532), + [anon_sym_get] = ACTIONS(2532), + [anon_sym_set] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [sym_hash_empty] = ACTIONS(2534), + [anon_sym_export] = ACTIONS(2532), + [anon_sym_QueryExecute] = ACTIONS(2532), + [anon_sym_queryexecute] = ACTIONS(2532), + [anon_sym_QUERYEXECUTE] = ACTIONS(2532), + [anon_sym_queryExecute] = ACTIONS(2532), + [anon_sym_BQUOTE] = ACTIONS(2534), + [anon_sym_Abstract] = ACTIONS(2532), + [anon_sym_abstract] = ACTIONS(2532), + [anon_sym_ABSTRACT] = ACTIONS(2532), + [anon_sym_Component] = ACTIONS(2532), + [anon_sym_component] = ACTIONS(2532), + [anon_sym_COMPONENT] = ACTIONS(2532), + [anon_sym_Debugger] = ACTIONS(2532), + [anon_sym_debugger] = ACTIONS(2532), + [anon_sym_DEBUGGER] = ACTIONS(2532), + [anon_sym_Final] = ACTIONS(2532), + [anon_sym_final] = ACTIONS(2532), + [anon_sym_FINAL] = ACTIONS(2532), + [anon_sym_Function] = ACTIONS(2532), + [anon_sym_function] = ACTIONS(2532), + [anon_sym_FUNCTION] = ACTIONS(2532), + [anon_sym_In] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_IN] = ACTIONS(2532), + [anon_sym_Include] = ACTIONS(2532), + [anon_sym_include] = ACTIONS(2532), + [anon_sym_INCLUDE] = ACTIONS(2532), + [anon_sym_InstanceOf] = ACTIONS(2532), + [anon_sym_instanceof] = ACTIONS(2532), + [anon_sym_INSTANCEOF] = ACTIONS(2532), + [anon_sym_instanceOf] = ACTIONS(2532), + [anon_sym_New] = ACTIONS(2532), + [anon_sym_new] = ACTIONS(2532), + [anon_sym_NEW] = ACTIONS(2532), + [anon_sym_Package] = ACTIONS(2532), + [anon_sym_package] = ACTIONS(2532), + [anon_sym_PACKAGE] = ACTIONS(2532), + [anon_sym_Private] = ACTIONS(2532), + [anon_sym_private] = ACTIONS(2532), + [anon_sym_PRIVATE] = ACTIONS(2532), + [anon_sym_Public] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), + [anon_sym_PUBLIC] = ACTIONS(2532), + [anon_sym_Remote] = ACTIONS(2532), + [anon_sym_remote] = ACTIONS(2532), + [anon_sym_REMOTE] = ACTIONS(2532), + [anon_sym_Static] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_STATIC] = ACTIONS(2532), + [sym__ternary_qmark] = ACTIONS(2534), + [sym__elvis_operator] = ACTIONS(2534), + [sym_logical_or] = ACTIONS(2534), + [sym__java_block_open] = ACTIONS(2534), + [sym__static_type_prefix] = ACTIONS(2534), }, [STATE(780)] = { - [sym_identifier] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_Query] = ACTIONS(2490), - [anon_sym_query] = ACTIONS(2490), - [anon_sym_QUERY] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2490), - [sym_optional_chain] = ACTIONS(2492), - [sym_static_chain] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_GT_GT_GT] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_BSLASH] = ACTIONS(2490), - [anon_sym_STAR_STAR] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2492), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2492), - [anon_sym_LT_GT] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2492), - [aux_sym_binary_expression_token1] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2490), - [aux_sym_binary_expression_token2] = ACTIONS(2490), - [aux_sym_binary_expression_token3] = ACTIONS(2490), - [aux_sym_binary_expression_token4] = ACTIONS(2492), - [aux_sym_binary_expression_token5] = ACTIONS(2492), - [aux_sym_binary_expression_token6] = ACTIONS(2492), - [anon_sym_QMARK_QMARK] = ACTIONS(2492), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2492), - [aux_sym_unary_operator_token1] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2492), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2490), - [aux_sym_number_token2] = ACTIONS(2490), - [anon_sym_This] = ACTIONS(2490), - [anon_sym_this] = ACTIONS(2490), - [anon_sym_THIS] = ACTIONS(2490), - [anon_sym_Super] = ACTIONS(2490), - [anon_sym_super] = ACTIONS(2490), - [anon_sym_SUPER] = ACTIONS(2490), - [anon_sym_True] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2490), - [anon_sym_TRUE] = ACTIONS(2490), - [anon_sym_False] = ACTIONS(2490), - [anon_sym_false] = ACTIONS(2490), - [anon_sym_FALSE] = ACTIONS(2490), - [anon_sym_Null] = ACTIONS(2490), - [anon_sym_null] = ACTIONS(2490), - [anon_sym_NULL] = ACTIONS(2490), - [anon_sym_Undefined] = ACTIONS(2490), - [anon_sym_undefined] = ACTIONS(2490), - [anon_sym_UNDEFINED] = ACTIONS(2490), - [anon_sym_get] = ACTIONS(2490), - [anon_sym_set] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(2490), - [sym_hash_empty] = ACTIONS(2492), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_QueryExecute] = ACTIONS(2490), - [anon_sym_queryexecute] = ACTIONS(2490), - [anon_sym_QUERYEXECUTE] = ACTIONS(2490), - [anon_sym_queryExecute] = ACTIONS(2490), - [anon_sym_BQUOTE] = ACTIONS(2492), - [anon_sym_Abstract] = ACTIONS(2490), - [anon_sym_abstract] = ACTIONS(2490), - [anon_sym_ABSTRACT] = ACTIONS(2490), - [anon_sym_Component] = ACTIONS(2490), - [anon_sym_component] = ACTIONS(2490), - [anon_sym_COMPONENT] = ACTIONS(2490), - [anon_sym_Debugger] = ACTIONS(2490), - [anon_sym_debugger] = ACTIONS(2490), - [anon_sym_DEBUGGER] = ACTIONS(2490), - [anon_sym_Final] = ACTIONS(2490), - [anon_sym_final] = ACTIONS(2490), - [anon_sym_FINAL] = ACTIONS(2490), - [anon_sym_Function] = ACTIONS(2490), - [anon_sym_function] = ACTIONS(2490), - [anon_sym_FUNCTION] = ACTIONS(2490), - [anon_sym_In] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_IN] = ACTIONS(2490), - [anon_sym_Include] = ACTIONS(2490), - [anon_sym_include] = ACTIONS(2490), - [anon_sym_INCLUDE] = ACTIONS(2490), - [anon_sym_InstanceOf] = ACTIONS(2490), - [anon_sym_instanceof] = ACTIONS(2490), - [anon_sym_INSTANCEOF] = ACTIONS(2490), - [anon_sym_instanceOf] = ACTIONS(2490), - [anon_sym_New] = ACTIONS(2490), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_NEW] = ACTIONS(2490), - [anon_sym_Package] = ACTIONS(2490), - [anon_sym_package] = ACTIONS(2490), - [anon_sym_PACKAGE] = ACTIONS(2490), - [anon_sym_Private] = ACTIONS(2490), - [anon_sym_private] = ACTIONS(2490), - [anon_sym_PRIVATE] = ACTIONS(2490), - [anon_sym_Public] = ACTIONS(2490), - [anon_sym_public] = ACTIONS(2490), - [anon_sym_PUBLIC] = ACTIONS(2490), - [anon_sym_Remote] = ACTIONS(2490), - [anon_sym_remote] = ACTIONS(2490), - [anon_sym_REMOTE] = ACTIONS(2490), - [anon_sym_Static] = ACTIONS(2490), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_STATIC] = ACTIONS(2490), - [sym__ternary_qmark] = ACTIONS(2492), - [sym__elvis_operator] = ACTIONS(2492), - [sym_logical_or] = ACTIONS(2492), - [sym__java_block_open] = ACTIONS(2492), - [sym__static_type_prefix] = ACTIONS(2492), + [sym_identifier] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_Query] = ACTIONS(2412), + [anon_sym_query] = ACTIONS(2412), + [anon_sym_QUERY] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2412), + [sym_optional_chain] = ACTIONS(2414), + [sym_static_chain] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_BSLASH] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_LT_GT] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [aux_sym_binary_expression_token1] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [aux_sym_binary_expression_token2] = ACTIONS(2412), + [aux_sym_binary_expression_token3] = ACTIONS(2412), + [aux_sym_binary_expression_token4] = ACTIONS(2414), + [aux_sym_binary_expression_token5] = ACTIONS(2414), + [aux_sym_binary_expression_token6] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2414), + [aux_sym_unary_operator_token1] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2412), + [aux_sym_number_token2] = ACTIONS(2412), + [anon_sym_This] = ACTIONS(2412), + [anon_sym_this] = ACTIONS(2412), + [anon_sym_THIS] = ACTIONS(2412), + [anon_sym_Super] = ACTIONS(2412), + [anon_sym_super] = ACTIONS(2412), + [anon_sym_SUPER] = ACTIONS(2412), + [anon_sym_True] = ACTIONS(2412), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_TRUE] = ACTIONS(2412), + [anon_sym_False] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [anon_sym_FALSE] = ACTIONS(2412), + [anon_sym_Null] = ACTIONS(2412), + [anon_sym_null] = ACTIONS(2412), + [anon_sym_NULL] = ACTIONS(2412), + [anon_sym_Undefined] = ACTIONS(2412), + [anon_sym_undefined] = ACTIONS(2412), + [anon_sym_UNDEFINED] = ACTIONS(2412), + [anon_sym_get] = ACTIONS(2412), + [anon_sym_set] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [sym_hash_empty] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_QueryExecute] = ACTIONS(2412), + [anon_sym_queryexecute] = ACTIONS(2412), + [anon_sym_QUERYEXECUTE] = ACTIONS(2412), + [anon_sym_queryExecute] = ACTIONS(2412), + [anon_sym_BQUOTE] = ACTIONS(2414), + [anon_sym_Abstract] = ACTIONS(2412), + [anon_sym_abstract] = ACTIONS(2412), + [anon_sym_ABSTRACT] = ACTIONS(2412), + [anon_sym_Component] = ACTIONS(2412), + [anon_sym_component] = ACTIONS(2412), + [anon_sym_COMPONENT] = ACTIONS(2412), + [anon_sym_Debugger] = ACTIONS(2412), + [anon_sym_debugger] = ACTIONS(2412), + [anon_sym_DEBUGGER] = ACTIONS(2412), + [anon_sym_Final] = ACTIONS(2412), + [anon_sym_final] = ACTIONS(2412), + [anon_sym_FINAL] = ACTIONS(2412), + [anon_sym_Function] = ACTIONS(2412), + [anon_sym_function] = ACTIONS(2412), + [anon_sym_FUNCTION] = ACTIONS(2412), + [anon_sym_In] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_IN] = ACTIONS(2412), + [anon_sym_Include] = ACTIONS(2412), + [anon_sym_include] = ACTIONS(2412), + [anon_sym_INCLUDE] = ACTIONS(2412), + [anon_sym_InstanceOf] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_INSTANCEOF] = ACTIONS(2412), + [anon_sym_instanceOf] = ACTIONS(2412), + [anon_sym_New] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_NEW] = ACTIONS(2412), + [anon_sym_Package] = ACTIONS(2412), + [anon_sym_package] = ACTIONS(2412), + [anon_sym_PACKAGE] = ACTIONS(2412), + [anon_sym_Private] = ACTIONS(2412), + [anon_sym_private] = ACTIONS(2412), + [anon_sym_PRIVATE] = ACTIONS(2412), + [anon_sym_Public] = ACTIONS(2412), + [anon_sym_public] = ACTIONS(2412), + [anon_sym_PUBLIC] = ACTIONS(2412), + [anon_sym_Remote] = ACTIONS(2412), + [anon_sym_remote] = ACTIONS(2412), + [anon_sym_REMOTE] = ACTIONS(2412), + [anon_sym_Static] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_STATIC] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2414), + [sym__elvis_operator] = ACTIONS(2414), + [sym_logical_or] = ACTIONS(2414), + [sym__java_block_open] = ACTIONS(2414), + [sym__static_type_prefix] = ACTIONS(2414), }, [STATE(781)] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_Query] = ACTIONS(2494), - [anon_sym_query] = ACTIONS(2494), - [anon_sym_QUERY] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2494), - [sym_optional_chain] = ACTIONS(2496), - [sym_static_chain] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_GT_GT_GT] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_BSLASH] = ACTIONS(2494), - [anon_sym_STAR_STAR] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2496), - [anon_sym_LT_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2496), - [aux_sym_binary_expression_token1] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [aux_sym_binary_expression_token2] = ACTIONS(2494), - [aux_sym_binary_expression_token3] = ACTIONS(2494), - [aux_sym_binary_expression_token4] = ACTIONS(2496), - [aux_sym_binary_expression_token5] = ACTIONS(2496), - [aux_sym_binary_expression_token6] = ACTIONS(2496), - [anon_sym_QMARK_QMARK] = ACTIONS(2496), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2496), - [aux_sym_unary_operator_token1] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2496), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2494), - [aux_sym_number_token2] = ACTIONS(2494), - [anon_sym_This] = ACTIONS(2494), - [anon_sym_this] = ACTIONS(2494), - [anon_sym_THIS] = ACTIONS(2494), - [anon_sym_Super] = ACTIONS(2494), - [anon_sym_super] = ACTIONS(2494), - [anon_sym_SUPER] = ACTIONS(2494), - [anon_sym_True] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2494), - [anon_sym_TRUE] = ACTIONS(2494), - [anon_sym_False] = ACTIONS(2494), - [anon_sym_false] = ACTIONS(2494), - [anon_sym_FALSE] = ACTIONS(2494), - [anon_sym_Null] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2494), - [anon_sym_NULL] = ACTIONS(2494), - [anon_sym_Undefined] = ACTIONS(2494), - [anon_sym_undefined] = ACTIONS(2494), - [anon_sym_UNDEFINED] = ACTIONS(2494), - [anon_sym_get] = ACTIONS(2494), - [anon_sym_set] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(2494), - [sym_hash_empty] = ACTIONS(2496), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_QueryExecute] = ACTIONS(2494), - [anon_sym_queryexecute] = ACTIONS(2494), - [anon_sym_QUERYEXECUTE] = ACTIONS(2494), - [anon_sym_queryExecute] = ACTIONS(2494), - [anon_sym_BQUOTE] = ACTIONS(2496), - [anon_sym_Abstract] = ACTIONS(2494), - [anon_sym_abstract] = ACTIONS(2494), - [anon_sym_ABSTRACT] = ACTIONS(2494), - [anon_sym_Component] = ACTIONS(2494), - [anon_sym_component] = ACTIONS(2494), - [anon_sym_COMPONENT] = ACTIONS(2494), - [anon_sym_Debugger] = ACTIONS(2494), - [anon_sym_debugger] = ACTIONS(2494), - [anon_sym_DEBUGGER] = ACTIONS(2494), - [anon_sym_Final] = ACTIONS(2494), - [anon_sym_final] = ACTIONS(2494), - [anon_sym_FINAL] = ACTIONS(2494), - [anon_sym_Function] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2494), - [anon_sym_FUNCTION] = ACTIONS(2494), - [anon_sym_In] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_IN] = ACTIONS(2494), - [anon_sym_Include] = ACTIONS(2494), - [anon_sym_include] = ACTIONS(2494), - [anon_sym_INCLUDE] = ACTIONS(2494), - [anon_sym_InstanceOf] = ACTIONS(2494), - [anon_sym_instanceof] = ACTIONS(2494), - [anon_sym_INSTANCEOF] = ACTIONS(2494), - [anon_sym_instanceOf] = ACTIONS(2494), - [anon_sym_New] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_NEW] = ACTIONS(2494), - [anon_sym_Package] = ACTIONS(2494), - [anon_sym_package] = ACTIONS(2494), - [anon_sym_PACKAGE] = ACTIONS(2494), - [anon_sym_Private] = ACTIONS(2494), - [anon_sym_private] = ACTIONS(2494), - [anon_sym_PRIVATE] = ACTIONS(2494), - [anon_sym_Public] = ACTIONS(2494), - [anon_sym_public] = ACTIONS(2494), - [anon_sym_PUBLIC] = ACTIONS(2494), - [anon_sym_Remote] = ACTIONS(2494), - [anon_sym_remote] = ACTIONS(2494), - [anon_sym_REMOTE] = ACTIONS(2494), - [anon_sym_Static] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_STATIC] = ACTIONS(2494), - [sym__ternary_qmark] = ACTIONS(2496), - [sym__elvis_operator] = ACTIONS(2496), - [sym_logical_or] = ACTIONS(2496), - [sym__java_block_open] = ACTIONS(2496), - [sym__static_type_prefix] = ACTIONS(2496), + [sym_identifier] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_Query] = ACTIONS(2540), + [anon_sym_query] = ACTIONS(2540), + [anon_sym_QUERY] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2540), + [sym_optional_chain] = ACTIONS(2542), + [sym_static_chain] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_BSLASH] = ACTIONS(2540), + [anon_sym_STAR_STAR] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2540), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2542), + [anon_sym_LT_GT] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2540), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2542), + [aux_sym_binary_expression_token1] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [aux_sym_binary_expression_token2] = ACTIONS(2540), + [aux_sym_binary_expression_token3] = ACTIONS(2540), + [aux_sym_binary_expression_token4] = ACTIONS(2542), + [aux_sym_binary_expression_token5] = ACTIONS(2542), + [aux_sym_binary_expression_token6] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2542), + [aux_sym_unary_operator_token1] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2540), + [aux_sym_number_token2] = ACTIONS(2540), + [anon_sym_This] = ACTIONS(2540), + [anon_sym_this] = ACTIONS(2540), + [anon_sym_THIS] = ACTIONS(2540), + [anon_sym_Super] = ACTIONS(2540), + [anon_sym_super] = ACTIONS(2540), + [anon_sym_SUPER] = ACTIONS(2540), + [anon_sym_True] = ACTIONS(2540), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_TRUE] = ACTIONS(2540), + [anon_sym_False] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [anon_sym_FALSE] = ACTIONS(2540), + [anon_sym_Null] = ACTIONS(2540), + [anon_sym_null] = ACTIONS(2540), + [anon_sym_NULL] = ACTIONS(2540), + [anon_sym_Undefined] = ACTIONS(2540), + [anon_sym_undefined] = ACTIONS(2540), + [anon_sym_UNDEFINED] = ACTIONS(2540), + [anon_sym_get] = ACTIONS(2540), + [anon_sym_set] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [sym_hash_empty] = ACTIONS(2542), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_QueryExecute] = ACTIONS(2540), + [anon_sym_queryexecute] = ACTIONS(2540), + [anon_sym_QUERYEXECUTE] = ACTIONS(2540), + [anon_sym_queryExecute] = ACTIONS(2540), + [anon_sym_BQUOTE] = ACTIONS(2542), + [anon_sym_Abstract] = ACTIONS(2540), + [anon_sym_abstract] = ACTIONS(2540), + [anon_sym_ABSTRACT] = ACTIONS(2540), + [anon_sym_Component] = ACTIONS(2540), + [anon_sym_component] = ACTIONS(2540), + [anon_sym_COMPONENT] = ACTIONS(2540), + [anon_sym_Debugger] = ACTIONS(2540), + [anon_sym_debugger] = ACTIONS(2540), + [anon_sym_DEBUGGER] = ACTIONS(2540), + [anon_sym_Final] = ACTIONS(2540), + [anon_sym_final] = ACTIONS(2540), + [anon_sym_FINAL] = ACTIONS(2540), + [anon_sym_Function] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_FUNCTION] = ACTIONS(2540), + [anon_sym_In] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_IN] = ACTIONS(2540), + [anon_sym_Include] = ACTIONS(2540), + [anon_sym_include] = ACTIONS(2540), + [anon_sym_INCLUDE] = ACTIONS(2540), + [anon_sym_InstanceOf] = ACTIONS(2540), + [anon_sym_instanceof] = ACTIONS(2540), + [anon_sym_INSTANCEOF] = ACTIONS(2540), + [anon_sym_instanceOf] = ACTIONS(2540), + [anon_sym_New] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2540), + [anon_sym_NEW] = ACTIONS(2540), + [anon_sym_Package] = ACTIONS(2540), + [anon_sym_package] = ACTIONS(2540), + [anon_sym_PACKAGE] = ACTIONS(2540), + [anon_sym_Private] = ACTIONS(2540), + [anon_sym_private] = ACTIONS(2540), + [anon_sym_PRIVATE] = ACTIONS(2540), + [anon_sym_Public] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2540), + [anon_sym_PUBLIC] = ACTIONS(2540), + [anon_sym_Remote] = ACTIONS(2540), + [anon_sym_remote] = ACTIONS(2540), + [anon_sym_REMOTE] = ACTIONS(2540), + [anon_sym_Static] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_STATIC] = ACTIONS(2540), + [sym__ternary_qmark] = ACTIONS(2542), + [sym__elvis_operator] = ACTIONS(2542), + [sym_logical_or] = ACTIONS(2542), + [sym__java_block_open] = ACTIONS(2542), + [sym__static_type_prefix] = ACTIONS(2542), }, [STATE(782)] = { - [sym_identifier] = ACTIONS(2534), - [anon_sym_DOT] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_let] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_Query] = ACTIONS(2534), - [anon_sym_query] = ACTIONS(2534), - [anon_sym_QUERY] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2534), - [sym_optional_chain] = ACTIONS(2536), - [sym_static_chain] = ACTIONS(2536), - [anon_sym_AMP_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2534), - [anon_sym_GT_GT_GT] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_BSLASH] = ACTIONS(2534), - [anon_sym_STAR_STAR] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_LT_EQ] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2536), - [anon_sym_LT_GT] = ACTIONS(2536), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2536), - [aux_sym_binary_expression_token1] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2534), - [aux_sym_binary_expression_token2] = ACTIONS(2534), - [aux_sym_binary_expression_token3] = ACTIONS(2534), - [aux_sym_binary_expression_token4] = ACTIONS(2536), - [aux_sym_binary_expression_token5] = ACTIONS(2536), - [aux_sym_binary_expression_token6] = ACTIONS(2536), - [anon_sym_QMARK_QMARK] = ACTIONS(2536), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_TILDE] = ACTIONS(2536), - [aux_sym_unary_operator_token1] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [anon_sym_DQUOTE] = ACTIONS(2536), - [anon_sym_SQUOTE] = ACTIONS(2536), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2534), - [aux_sym_number_token2] = ACTIONS(2534), - [anon_sym_This] = ACTIONS(2534), - [anon_sym_this] = ACTIONS(2534), - [anon_sym_THIS] = ACTIONS(2534), - [anon_sym_Super] = ACTIONS(2534), - [anon_sym_super] = ACTIONS(2534), - [anon_sym_SUPER] = ACTIONS(2534), - [anon_sym_True] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2534), - [anon_sym_TRUE] = ACTIONS(2534), - [anon_sym_False] = ACTIONS(2534), - [anon_sym_false] = ACTIONS(2534), - [anon_sym_FALSE] = ACTIONS(2534), - [anon_sym_Null] = ACTIONS(2534), - [anon_sym_null] = ACTIONS(2534), - [anon_sym_NULL] = ACTIONS(2534), - [anon_sym_Undefined] = ACTIONS(2534), - [anon_sym_undefined] = ACTIONS(2534), - [anon_sym_UNDEFINED] = ACTIONS(2534), - [anon_sym_get] = ACTIONS(2534), - [anon_sym_set] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(2534), - [sym_hash_empty] = ACTIONS(2536), - [anon_sym_export] = ACTIONS(2534), - [anon_sym_QueryExecute] = ACTIONS(2534), - [anon_sym_queryexecute] = ACTIONS(2534), - [anon_sym_QUERYEXECUTE] = ACTIONS(2534), - [anon_sym_queryExecute] = ACTIONS(2534), - [anon_sym_BQUOTE] = ACTIONS(2536), - [anon_sym_Abstract] = ACTIONS(2534), - [anon_sym_abstract] = ACTIONS(2534), - [anon_sym_ABSTRACT] = ACTIONS(2534), - [anon_sym_Component] = ACTIONS(2534), - [anon_sym_component] = ACTIONS(2534), - [anon_sym_COMPONENT] = ACTIONS(2534), - [anon_sym_Debugger] = ACTIONS(2534), - [anon_sym_debugger] = ACTIONS(2534), - [anon_sym_DEBUGGER] = ACTIONS(2534), - [anon_sym_Final] = ACTIONS(2534), - [anon_sym_final] = ACTIONS(2534), - [anon_sym_FINAL] = ACTIONS(2534), - [anon_sym_Function] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(2534), - [anon_sym_FUNCTION] = ACTIONS(2534), - [anon_sym_In] = ACTIONS(2534), - [anon_sym_in] = ACTIONS(2534), - [anon_sym_IN] = ACTIONS(2534), - [anon_sym_Include] = ACTIONS(2534), - [anon_sym_include] = ACTIONS(2534), - [anon_sym_INCLUDE] = ACTIONS(2534), - [anon_sym_InstanceOf] = ACTIONS(2534), - [anon_sym_instanceof] = ACTIONS(2534), - [anon_sym_INSTANCEOF] = ACTIONS(2534), - [anon_sym_instanceOf] = ACTIONS(2534), - [anon_sym_New] = ACTIONS(2534), - [anon_sym_new] = ACTIONS(2534), - [anon_sym_NEW] = ACTIONS(2534), - [anon_sym_Package] = ACTIONS(2534), - [anon_sym_package] = ACTIONS(2534), - [anon_sym_PACKAGE] = ACTIONS(2534), - [anon_sym_Private] = ACTIONS(2534), - [anon_sym_private] = ACTIONS(2534), - [anon_sym_PRIVATE] = ACTIONS(2534), - [anon_sym_Public] = ACTIONS(2534), - [anon_sym_public] = ACTIONS(2534), - [anon_sym_PUBLIC] = ACTIONS(2534), - [anon_sym_Remote] = ACTIONS(2534), - [anon_sym_remote] = ACTIONS(2534), - [anon_sym_REMOTE] = ACTIONS(2534), - [anon_sym_Static] = ACTIONS(2534), - [anon_sym_static] = ACTIONS(2534), - [anon_sym_STATIC] = ACTIONS(2534), - [sym__ternary_qmark] = ACTIONS(2536), - [sym__elvis_operator] = ACTIONS(2536), - [sym_logical_or] = ACTIONS(2536), - [sym__java_block_open] = ACTIONS(2536), - [sym__static_type_prefix] = ACTIONS(2536), + [sym_identifier] = ACTIONS(2512), + [anon_sym_DOT] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_Query] = ACTIONS(2512), + [anon_sym_query] = ACTIONS(2512), + [anon_sym_QUERY] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2512), + [sym_optional_chain] = ACTIONS(2514), + [sym_static_chain] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_BSLASH] = ACTIONS(2512), + [anon_sym_STAR_STAR] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2512), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2514), + [anon_sym_LT_GT] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2512), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2514), + [aux_sym_binary_expression_token1] = ACTIONS(2514), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [aux_sym_binary_expression_token2] = ACTIONS(2512), + [aux_sym_binary_expression_token3] = ACTIONS(2512), + [aux_sym_binary_expression_token4] = ACTIONS(2514), + [aux_sym_binary_expression_token5] = ACTIONS(2514), + [aux_sym_binary_expression_token6] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_TILDE] = ACTIONS(2514), + [aux_sym_unary_operator_token1] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2512), + [aux_sym_number_token2] = ACTIONS(2512), + [anon_sym_This] = ACTIONS(2512), + [anon_sym_this] = ACTIONS(2512), + [anon_sym_THIS] = ACTIONS(2512), + [anon_sym_Super] = ACTIONS(2512), + [anon_sym_super] = ACTIONS(2512), + [anon_sym_SUPER] = ACTIONS(2512), + [anon_sym_True] = ACTIONS(2512), + [anon_sym_true] = ACTIONS(2512), + [anon_sym_TRUE] = ACTIONS(2512), + [anon_sym_False] = ACTIONS(2512), + [anon_sym_false] = ACTIONS(2512), + [anon_sym_FALSE] = ACTIONS(2512), + [anon_sym_Null] = ACTIONS(2512), + [anon_sym_null] = ACTIONS(2512), + [anon_sym_NULL] = ACTIONS(2512), + [anon_sym_Undefined] = ACTIONS(2512), + [anon_sym_undefined] = ACTIONS(2512), + [anon_sym_UNDEFINED] = ACTIONS(2512), + [anon_sym_get] = ACTIONS(2512), + [anon_sym_set] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [sym_hash_empty] = ACTIONS(2514), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_QueryExecute] = ACTIONS(2512), + [anon_sym_queryexecute] = ACTIONS(2512), + [anon_sym_QUERYEXECUTE] = ACTIONS(2512), + [anon_sym_queryExecute] = ACTIONS(2512), + [anon_sym_BQUOTE] = ACTIONS(2514), + [anon_sym_Abstract] = ACTIONS(2512), + [anon_sym_abstract] = ACTIONS(2512), + [anon_sym_ABSTRACT] = ACTIONS(2512), + [anon_sym_Component] = ACTIONS(2512), + [anon_sym_component] = ACTIONS(2512), + [anon_sym_COMPONENT] = ACTIONS(2512), + [anon_sym_Debugger] = ACTIONS(2512), + [anon_sym_debugger] = ACTIONS(2512), + [anon_sym_DEBUGGER] = ACTIONS(2512), + [anon_sym_Final] = ACTIONS(2512), + [anon_sym_final] = ACTIONS(2512), + [anon_sym_FINAL] = ACTIONS(2512), + [anon_sym_Function] = ACTIONS(2512), + [anon_sym_function] = ACTIONS(2512), + [anon_sym_FUNCTION] = ACTIONS(2512), + [anon_sym_In] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_IN] = ACTIONS(2512), + [anon_sym_Include] = ACTIONS(2512), + [anon_sym_include] = ACTIONS(2512), + [anon_sym_INCLUDE] = ACTIONS(2512), + [anon_sym_InstanceOf] = ACTIONS(2512), + [anon_sym_instanceof] = ACTIONS(2512), + [anon_sym_INSTANCEOF] = ACTIONS(2512), + [anon_sym_instanceOf] = ACTIONS(2512), + [anon_sym_New] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_NEW] = ACTIONS(2512), + [anon_sym_Package] = ACTIONS(2512), + [anon_sym_package] = ACTIONS(2512), + [anon_sym_PACKAGE] = ACTIONS(2512), + [anon_sym_Private] = ACTIONS(2512), + [anon_sym_private] = ACTIONS(2512), + [anon_sym_PRIVATE] = ACTIONS(2512), + [anon_sym_Public] = ACTIONS(2512), + [anon_sym_public] = ACTIONS(2512), + [anon_sym_PUBLIC] = ACTIONS(2512), + [anon_sym_Remote] = ACTIONS(2512), + [anon_sym_remote] = ACTIONS(2512), + [anon_sym_REMOTE] = ACTIONS(2512), + [anon_sym_Static] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_STATIC] = ACTIONS(2512), + [sym__ternary_qmark] = ACTIONS(2514), + [sym__elvis_operator] = ACTIONS(2514), + [sym_logical_or] = ACTIONS(2514), + [sym__java_block_open] = ACTIONS(2514), + [sym__static_type_prefix] = ACTIONS(2514), }, [STATE(783)] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_Query] = ACTIONS(2426), - [anon_sym_query] = ACTIONS(2426), - [anon_sym_QUERY] = ACTIONS(2426), - [aux_sym__operator_shaped_name_token1] = ACTIONS(3092), - [aux_sym__operator_shaped_name_token2] = ACTIONS(3094), - [aux_sym__operator_shaped_name_token3] = ACTIONS(3096), - [aux_sym__operator_shaped_name_token4] = ACTIONS(3090), - [aux_sym__operator_shaped_name_token5] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token6] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token7] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token8] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token9] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token10] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token11] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token12] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token13] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token14] = ACTIONS(3100), - [aux_sym__operator_shaped_name_token15] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token16] = ACTIONS(3098), - [aux_sym__operator_shaped_name_token17] = ACTIONS(3098), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3108), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3120), - [anon_sym_BSLASH] = ACTIONS(3090), - [anon_sym_STAR_STAR] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3124), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3126), - [anon_sym_LT_GT] = ACTIONS(3126), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3126), - [aux_sym_binary_expression_token1] = ACTIONS(3126), - [anon_sym_GT_EQ] = ACTIONS(3124), - [anon_sym_GT] = ACTIONS(3098), - [aux_sym_binary_expression_token2] = ACTIONS(3098), - [aux_sym_binary_expression_token3] = ACTIONS(3098), - [aux_sym_binary_expression_token4] = ACTIONS(3124), - [aux_sym_binary_expression_token5] = ACTIONS(3124), - [aux_sym_binary_expression_token6] = ACTIONS(3126), - [anon_sym_QMARK_QMARK] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_TILDE] = ACTIONS(2428), - [aux_sym_unary_operator_token1] = ACTIONS(2426), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2428), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2426), - [aux_sym_number_token2] = ACTIONS(2426), - [anon_sym_This] = ACTIONS(2426), - [anon_sym_this] = ACTIONS(2426), - [anon_sym_THIS] = ACTIONS(2426), - [anon_sym_Super] = ACTIONS(2426), - [anon_sym_super] = ACTIONS(2426), - [anon_sym_SUPER] = ACTIONS(2426), - [anon_sym_True] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_TRUE] = ACTIONS(2426), - [anon_sym_False] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_FALSE] = ACTIONS(2426), - [anon_sym_Null] = ACTIONS(2426), - [anon_sym_null] = ACTIONS(2426), - [anon_sym_NULL] = ACTIONS(2426), - [anon_sym_Undefined] = ACTIONS(2426), - [anon_sym_undefined] = ACTIONS(2426), - [anon_sym_UNDEFINED] = ACTIONS(2426), - [anon_sym_get] = ACTIONS(2426), - [anon_sym_set] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [sym_hash_empty] = ACTIONS(2428), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_QueryExecute] = ACTIONS(2426), - [anon_sym_queryexecute] = ACTIONS(2426), - [anon_sym_QUERYEXECUTE] = ACTIONS(2426), - [anon_sym_queryExecute] = ACTIONS(2426), - [anon_sym_BQUOTE] = ACTIONS(2428), - [anon_sym_Abstract] = ACTIONS(2426), - [anon_sym_abstract] = ACTIONS(2426), - [anon_sym_ABSTRACT] = ACTIONS(2426), - [anon_sym_Component] = ACTIONS(2426), - [anon_sym_component] = ACTIONS(2426), - [anon_sym_COMPONENT] = ACTIONS(2426), - [anon_sym_Debugger] = ACTIONS(2426), - [anon_sym_debugger] = ACTIONS(2426), - [anon_sym_DEBUGGER] = ACTIONS(2426), - [anon_sym_Final] = ACTIONS(2426), - [anon_sym_final] = ACTIONS(2426), - [anon_sym_FINAL] = ACTIONS(2426), - [anon_sym_Function] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_FUNCTION] = ACTIONS(2426), - [anon_sym_In] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_IN] = ACTIONS(3098), - [anon_sym_Include] = ACTIONS(2426), - [anon_sym_include] = ACTIONS(2426), - [anon_sym_INCLUDE] = ACTIONS(2426), - [anon_sym_InstanceOf] = ACTIONS(3098), - [anon_sym_instanceof] = ACTIONS(3098), - [anon_sym_INSTANCEOF] = ACTIONS(3098), - [anon_sym_instanceOf] = ACTIONS(3098), - [anon_sym_New] = ACTIONS(2426), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_NEW] = ACTIONS(2426), - [anon_sym_Package] = ACTIONS(2426), - [anon_sym_package] = ACTIONS(2426), - [anon_sym_PACKAGE] = ACTIONS(2426), - [anon_sym_Private] = ACTIONS(2426), - [anon_sym_private] = ACTIONS(2426), - [anon_sym_PRIVATE] = ACTIONS(2426), - [anon_sym_Public] = ACTIONS(2426), - [anon_sym_public] = ACTIONS(2426), - [anon_sym_PUBLIC] = ACTIONS(2426), - [anon_sym_Remote] = ACTIONS(2426), - [anon_sym_remote] = ACTIONS(2426), - [anon_sym_REMOTE] = ACTIONS(2426), - [anon_sym_Static] = ACTIONS(2426), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_STATIC] = ACTIONS(2426), - [sym__ternary_qmark] = ACTIONS(3132), - [sym__elvis_operator] = ACTIONS(3134), - [sym_logical_or] = ACTIONS(3106), - [sym__java_block_open] = ACTIONS(2428), - [sym__static_type_prefix] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2516), + [anon_sym_DOT] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_Query] = ACTIONS(2516), + [anon_sym_query] = ACTIONS(2516), + [anon_sym_QUERY] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2516), + [sym_optional_chain] = ACTIONS(2518), + [sym_static_chain] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_BSLASH] = ACTIONS(2516), + [anon_sym_STAR_STAR] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2518), + [anon_sym_LT_GT] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2518), + [aux_sym_binary_expression_token1] = ACTIONS(2518), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [aux_sym_binary_expression_token2] = ACTIONS(2516), + [aux_sym_binary_expression_token3] = ACTIONS(2516), + [aux_sym_binary_expression_token4] = ACTIONS(2518), + [aux_sym_binary_expression_token5] = ACTIONS(2518), + [aux_sym_binary_expression_token6] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_TILDE] = ACTIONS(2518), + [aux_sym_unary_operator_token1] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2516), + [aux_sym_number_token2] = ACTIONS(2516), + [anon_sym_This] = ACTIONS(2516), + [anon_sym_this] = ACTIONS(2516), + [anon_sym_THIS] = ACTIONS(2516), + [anon_sym_Super] = ACTIONS(2516), + [anon_sym_super] = ACTIONS(2516), + [anon_sym_SUPER] = ACTIONS(2516), + [anon_sym_True] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2516), + [anon_sym_TRUE] = ACTIONS(2516), + [anon_sym_False] = ACTIONS(2516), + [anon_sym_false] = ACTIONS(2516), + [anon_sym_FALSE] = ACTIONS(2516), + [anon_sym_Null] = ACTIONS(2516), + [anon_sym_null] = ACTIONS(2516), + [anon_sym_NULL] = ACTIONS(2516), + [anon_sym_Undefined] = ACTIONS(2516), + [anon_sym_undefined] = ACTIONS(2516), + [anon_sym_UNDEFINED] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [sym_hash_empty] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_QueryExecute] = ACTIONS(2516), + [anon_sym_queryexecute] = ACTIONS(2516), + [anon_sym_QUERYEXECUTE] = ACTIONS(2516), + [anon_sym_queryExecute] = ACTIONS(2516), + [anon_sym_BQUOTE] = ACTIONS(2518), + [anon_sym_Abstract] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_ABSTRACT] = ACTIONS(2516), + [anon_sym_Component] = ACTIONS(2516), + [anon_sym_component] = ACTIONS(2516), + [anon_sym_COMPONENT] = ACTIONS(2516), + [anon_sym_Debugger] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_DEBUGGER] = ACTIONS(2516), + [anon_sym_Final] = ACTIONS(2516), + [anon_sym_final] = ACTIONS(2516), + [anon_sym_FINAL] = ACTIONS(2516), + [anon_sym_Function] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_FUNCTION] = ACTIONS(2516), + [anon_sym_In] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_IN] = ACTIONS(2516), + [anon_sym_Include] = ACTIONS(2516), + [anon_sym_include] = ACTIONS(2516), + [anon_sym_INCLUDE] = ACTIONS(2516), + [anon_sym_InstanceOf] = ACTIONS(2516), + [anon_sym_instanceof] = ACTIONS(2516), + [anon_sym_INSTANCEOF] = ACTIONS(2516), + [anon_sym_instanceOf] = ACTIONS(2516), + [anon_sym_New] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_NEW] = ACTIONS(2516), + [anon_sym_Package] = ACTIONS(2516), + [anon_sym_package] = ACTIONS(2516), + [anon_sym_PACKAGE] = ACTIONS(2516), + [anon_sym_Private] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_PRIVATE] = ACTIONS(2516), + [anon_sym_Public] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_PUBLIC] = ACTIONS(2516), + [anon_sym_Remote] = ACTIONS(2516), + [anon_sym_remote] = ACTIONS(2516), + [anon_sym_REMOTE] = ACTIONS(2516), + [anon_sym_Static] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_STATIC] = ACTIONS(2516), + [sym__ternary_qmark] = ACTIONS(2518), + [sym__elvis_operator] = ACTIONS(2518), + [sym_logical_or] = ACTIONS(2518), + [sym__java_block_open] = ACTIONS(2518), + [sym__static_type_prefix] = ACTIONS(2518), }, [STATE(784)] = { - [sym_identifier] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_Query] = ACTIONS(2438), - [anon_sym_query] = ACTIONS(2438), - [anon_sym_QUERY] = ACTIONS(2438), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2440), - [aux_sym_unary_operator_token1] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(2440), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2438), - [aux_sym_number_token2] = ACTIONS(2438), - [anon_sym_This] = ACTIONS(2438), - [anon_sym_this] = ACTIONS(2438), - [anon_sym_THIS] = ACTIONS(2438), - [anon_sym_Super] = ACTIONS(2438), - [anon_sym_super] = ACTIONS(2438), - [anon_sym_SUPER] = ACTIONS(2438), - [anon_sym_True] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(2438), - [anon_sym_TRUE] = ACTIONS(2438), - [anon_sym_False] = ACTIONS(2438), - [anon_sym_false] = ACTIONS(2438), - [anon_sym_FALSE] = ACTIONS(2438), - [anon_sym_Null] = ACTIONS(2438), - [anon_sym_null] = ACTIONS(2438), - [anon_sym_NULL] = ACTIONS(2438), - [anon_sym_Undefined] = ACTIONS(2438), - [anon_sym_undefined] = ACTIONS(2438), - [anon_sym_UNDEFINED] = ACTIONS(2438), - [anon_sym_get] = ACTIONS(2438), - [anon_sym_set] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(2438), - [sym_hash_empty] = ACTIONS(2440), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_QueryExecute] = ACTIONS(2438), - [anon_sym_queryexecute] = ACTIONS(2438), - [anon_sym_QUERYEXECUTE] = ACTIONS(2438), - [anon_sym_queryExecute] = ACTIONS(2438), - [anon_sym_BQUOTE] = ACTIONS(2440), - [anon_sym_Abstract] = ACTIONS(2438), - [anon_sym_abstract] = ACTIONS(2438), - [anon_sym_ABSTRACT] = ACTIONS(2438), - [anon_sym_Component] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_COMPONENT] = ACTIONS(2438), - [anon_sym_Debugger] = ACTIONS(2438), - [anon_sym_debugger] = ACTIONS(2438), - [anon_sym_DEBUGGER] = ACTIONS(2438), - [anon_sym_Final] = ACTIONS(2438), - [anon_sym_final] = ACTIONS(2438), - [anon_sym_FINAL] = ACTIONS(2438), - [anon_sym_Function] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_FUNCTION] = ACTIONS(2438), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_Include] = ACTIONS(2438), - [anon_sym_include] = ACTIONS(2438), - [anon_sym_INCLUDE] = ACTIONS(2438), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [anon_sym_New] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_NEW] = ACTIONS(2438), - [anon_sym_Package] = ACTIONS(2438), - [anon_sym_package] = ACTIONS(2438), - [anon_sym_PACKAGE] = ACTIONS(2438), - [anon_sym_Private] = ACTIONS(2438), - [anon_sym_private] = ACTIONS(2438), - [anon_sym_PRIVATE] = ACTIONS(2438), - [anon_sym_Public] = ACTIONS(2438), - [anon_sym_public] = ACTIONS(2438), - [anon_sym_PUBLIC] = ACTIONS(2438), - [anon_sym_Remote] = ACTIONS(2438), - [anon_sym_remote] = ACTIONS(2438), - [anon_sym_REMOTE] = ACTIONS(2438), - [anon_sym_Static] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_STATIC] = ACTIONS(2438), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym__java_block_open] = ACTIONS(2440), - [sym__static_type_prefix] = ACTIONS(2440), + [sym_identifier] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_Query] = ACTIONS(1688), + [anon_sym_query] = ACTIONS(1688), + [anon_sym_QUERY] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1686), + [aux_sym_unary_operator_token1] = ACTIONS(1688), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1688), + [aux_sym_number_token2] = ACTIONS(1688), + [anon_sym_This] = ACTIONS(1688), + [anon_sym_this] = ACTIONS(1688), + [anon_sym_THIS] = ACTIONS(1688), + [anon_sym_Super] = ACTIONS(1688), + [anon_sym_super] = ACTIONS(1688), + [anon_sym_SUPER] = ACTIONS(1688), + [anon_sym_True] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_TRUE] = ACTIONS(1688), + [anon_sym_False] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_FALSE] = ACTIONS(1688), + [anon_sym_Null] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_NULL] = ACTIONS(1688), + [anon_sym_Undefined] = ACTIONS(1688), + [anon_sym_undefined] = ACTIONS(1688), + [anon_sym_UNDEFINED] = ACTIONS(1688), + [anon_sym_get] = ACTIONS(1688), + [anon_sym_set] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(1688), + [sym_hash_empty] = ACTIONS(1686), + [anon_sym_export] = ACTIONS(1688), + [anon_sym_QueryExecute] = ACTIONS(1688), + [anon_sym_queryexecute] = ACTIONS(1688), + [anon_sym_QUERYEXECUTE] = ACTIONS(1688), + [anon_sym_queryExecute] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1686), + [anon_sym_Abstract] = ACTIONS(1688), + [anon_sym_abstract] = ACTIONS(1688), + [anon_sym_ABSTRACT] = ACTIONS(1688), + [anon_sym_Component] = ACTIONS(1688), + [anon_sym_component] = ACTIONS(1688), + [anon_sym_COMPONENT] = ACTIONS(1688), + [anon_sym_Debugger] = ACTIONS(1688), + [anon_sym_debugger] = ACTIONS(1688), + [anon_sym_DEBUGGER] = ACTIONS(1688), + [anon_sym_Final] = ACTIONS(1688), + [anon_sym_final] = ACTIONS(1688), + [anon_sym_FINAL] = ACTIONS(1688), + [anon_sym_Function] = ACTIONS(1688), + [anon_sym_function] = ACTIONS(1688), + [anon_sym_FUNCTION] = ACTIONS(1688), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_Include] = ACTIONS(1688), + [anon_sym_include] = ACTIONS(1688), + [anon_sym_INCLUDE] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [anon_sym_New] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1688), + [anon_sym_NEW] = ACTIONS(1688), + [anon_sym_Package] = ACTIONS(1688), + [anon_sym_package] = ACTIONS(1688), + [anon_sym_PACKAGE] = ACTIONS(1688), + [anon_sym_Private] = ACTIONS(1688), + [anon_sym_private] = ACTIONS(1688), + [anon_sym_PRIVATE] = ACTIONS(1688), + [anon_sym_Public] = ACTIONS(1688), + [anon_sym_public] = ACTIONS(1688), + [anon_sym_PUBLIC] = ACTIONS(1688), + [anon_sym_Remote] = ACTIONS(1688), + [anon_sym_remote] = ACTIONS(1688), + [anon_sym_REMOTE] = ACTIONS(1688), + [anon_sym_Static] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_STATIC] = ACTIONS(1688), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym__java_block_open] = ACTIONS(1686), + [sym__static_type_prefix] = ACTIONS(1686), }, [STATE(785)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_Query] = ACTIONS(2442), - [anon_sym_query] = ACTIONS(2442), - [anon_sym_QUERY] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2444), - [aux_sym_unary_operator_token1] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2442), - [aux_sym_number_token2] = ACTIONS(2442), - [anon_sym_This] = ACTIONS(2442), - [anon_sym_this] = ACTIONS(2442), - [anon_sym_THIS] = ACTIONS(2442), - [anon_sym_Super] = ACTIONS(2442), - [anon_sym_super] = ACTIONS(2442), - [anon_sym_SUPER] = ACTIONS(2442), - [anon_sym_True] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_TRUE] = ACTIONS(2442), - [anon_sym_False] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_FALSE] = ACTIONS(2442), - [anon_sym_Null] = ACTIONS(2442), - [anon_sym_null] = ACTIONS(2442), - [anon_sym_NULL] = ACTIONS(2442), - [anon_sym_Undefined] = ACTIONS(2442), - [anon_sym_undefined] = ACTIONS(2442), - [anon_sym_UNDEFINED] = ACTIONS(2442), - [anon_sym_get] = ACTIONS(2442), - [anon_sym_set] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(2442), - [sym_hash_empty] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_QueryExecute] = ACTIONS(2442), - [anon_sym_queryexecute] = ACTIONS(2442), - [anon_sym_QUERYEXECUTE] = ACTIONS(2442), - [anon_sym_queryExecute] = ACTIONS(2442), - [anon_sym_BQUOTE] = ACTIONS(2444), - [anon_sym_Abstract] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_ABSTRACT] = ACTIONS(2442), - [anon_sym_Component] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_COMPONENT] = ACTIONS(2442), - [anon_sym_Debugger] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_DEBUGGER] = ACTIONS(2442), - [anon_sym_Final] = ACTIONS(2442), - [anon_sym_final] = ACTIONS(2442), - [anon_sym_FINAL] = ACTIONS(2442), - [anon_sym_Function] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_FUNCTION] = ACTIONS(2442), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_Include] = ACTIONS(2442), - [anon_sym_include] = ACTIONS(2442), - [anon_sym_INCLUDE] = ACTIONS(2442), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [anon_sym_New] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_NEW] = ACTIONS(2442), - [anon_sym_Package] = ACTIONS(2442), - [anon_sym_package] = ACTIONS(2442), - [anon_sym_PACKAGE] = ACTIONS(2442), - [anon_sym_Private] = ACTIONS(2442), - [anon_sym_private] = ACTIONS(2442), - [anon_sym_PRIVATE] = ACTIONS(2442), - [anon_sym_Public] = ACTIONS(2442), - [anon_sym_public] = ACTIONS(2442), - [anon_sym_PUBLIC] = ACTIONS(2442), - [anon_sym_Remote] = ACTIONS(2442), - [anon_sym_remote] = ACTIONS(2442), - [anon_sym_REMOTE] = ACTIONS(2442), - [anon_sym_Static] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_STATIC] = ACTIONS(2442), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym__java_block_open] = ACTIONS(2444), - [sym__static_type_prefix] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_Query] = ACTIONS(2388), + [anon_sym_query] = ACTIONS(2388), + [anon_sym_QUERY] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2388), + [sym_optional_chain] = ACTIONS(2390), + [sym_static_chain] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_BSLASH] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_LT_GT] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [aux_sym_binary_expression_token1] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2388), + [aux_sym_binary_expression_token2] = ACTIONS(2388), + [aux_sym_binary_expression_token3] = ACTIONS(2388), + [aux_sym_binary_expression_token4] = ACTIONS(2390), + [aux_sym_binary_expression_token5] = ACTIONS(2390), + [aux_sym_binary_expression_token6] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2390), + [aux_sym_unary_operator_token1] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [anon_sym_SQUOTE] = ACTIONS(2390), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2388), + [aux_sym_number_token2] = ACTIONS(2388), + [anon_sym_This] = ACTIONS(2388), + [anon_sym_this] = ACTIONS(2388), + [anon_sym_THIS] = ACTIONS(2388), + [anon_sym_Super] = ACTIONS(2388), + [anon_sym_super] = ACTIONS(2388), + [anon_sym_SUPER] = ACTIONS(2388), + [anon_sym_True] = ACTIONS(2388), + [anon_sym_true] = ACTIONS(2388), + [anon_sym_TRUE] = ACTIONS(2388), + [anon_sym_False] = ACTIONS(2388), + [anon_sym_false] = ACTIONS(2388), + [anon_sym_FALSE] = ACTIONS(2388), + [anon_sym_Null] = ACTIONS(2388), + [anon_sym_null] = ACTIONS(2388), + [anon_sym_NULL] = ACTIONS(2388), + [anon_sym_Undefined] = ACTIONS(2388), + [anon_sym_undefined] = ACTIONS(2388), + [anon_sym_UNDEFINED] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(2388), + [sym_hash_empty] = ACTIONS(2390), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_QueryExecute] = ACTIONS(2388), + [anon_sym_queryexecute] = ACTIONS(2388), + [anon_sym_QUERYEXECUTE] = ACTIONS(2388), + [anon_sym_queryExecute] = ACTIONS(2388), + [anon_sym_BQUOTE] = ACTIONS(2390), + [anon_sym_Abstract] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_ABSTRACT] = ACTIONS(2388), + [anon_sym_Component] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_COMPONENT] = ACTIONS(2388), + [anon_sym_Debugger] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_DEBUGGER] = ACTIONS(2388), + [anon_sym_Final] = ACTIONS(2388), + [anon_sym_final] = ACTIONS(2388), + [anon_sym_FINAL] = ACTIONS(2388), + [anon_sym_Function] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_FUNCTION] = ACTIONS(2388), + [anon_sym_In] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_IN] = ACTIONS(2388), + [anon_sym_Include] = ACTIONS(2388), + [anon_sym_include] = ACTIONS(2388), + [anon_sym_INCLUDE] = ACTIONS(2388), + [anon_sym_InstanceOf] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_INSTANCEOF] = ACTIONS(2388), + [anon_sym_instanceOf] = ACTIONS(2388), + [anon_sym_New] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_NEW] = ACTIONS(2388), + [anon_sym_Package] = ACTIONS(2388), + [anon_sym_package] = ACTIONS(2388), + [anon_sym_PACKAGE] = ACTIONS(2388), + [anon_sym_Private] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_PRIVATE] = ACTIONS(2388), + [anon_sym_Public] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_PUBLIC] = ACTIONS(2388), + [anon_sym_Remote] = ACTIONS(2388), + [anon_sym_remote] = ACTIONS(2388), + [anon_sym_REMOTE] = ACTIONS(2388), + [anon_sym_Static] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_STATIC] = ACTIONS(2388), + [sym__ternary_qmark] = ACTIONS(2390), + [sym__elvis_operator] = ACTIONS(2390), + [sym_logical_or] = ACTIONS(2390), + [sym__java_block_open] = ACTIONS(2390), + [sym__static_type_prefix] = ACTIONS(2390), }, [STATE(786)] = { - [sym_identifier] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_Query] = ACTIONS(2434), - [anon_sym_query] = ACTIONS(2434), - [anon_sym_QUERY] = ACTIONS(2434), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2436), - [aux_sym_unary_operator_token1] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2436), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2434), - [aux_sym_number_token2] = ACTIONS(2434), - [anon_sym_This] = ACTIONS(2434), - [anon_sym_this] = ACTIONS(2434), - [anon_sym_THIS] = ACTIONS(2434), - [anon_sym_Super] = ACTIONS(2434), - [anon_sym_super] = ACTIONS(2434), - [anon_sym_SUPER] = ACTIONS(2434), - [anon_sym_True] = ACTIONS(2434), - [anon_sym_true] = ACTIONS(2434), - [anon_sym_TRUE] = ACTIONS(2434), - [anon_sym_False] = ACTIONS(2434), - [anon_sym_false] = ACTIONS(2434), - [anon_sym_FALSE] = ACTIONS(2434), - [anon_sym_Null] = ACTIONS(2434), - [anon_sym_null] = ACTIONS(2434), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_Undefined] = ACTIONS(2434), - [anon_sym_undefined] = ACTIONS(2434), - [anon_sym_UNDEFINED] = ACTIONS(2434), - [anon_sym_get] = ACTIONS(2434), - [anon_sym_set] = ACTIONS(2434), - [anon_sym_POUND] = ACTIONS(2434), - [sym_hash_empty] = ACTIONS(2436), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_QueryExecute] = ACTIONS(2434), - [anon_sym_queryexecute] = ACTIONS(2434), - [anon_sym_QUERYEXECUTE] = ACTIONS(2434), - [anon_sym_queryExecute] = ACTIONS(2434), - [anon_sym_BQUOTE] = ACTIONS(2436), - [anon_sym_Abstract] = ACTIONS(2434), - [anon_sym_abstract] = ACTIONS(2434), - [anon_sym_ABSTRACT] = ACTIONS(2434), - [anon_sym_Component] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_COMPONENT] = ACTIONS(2434), - [anon_sym_Debugger] = ACTIONS(2434), - [anon_sym_debugger] = ACTIONS(2434), - [anon_sym_DEBUGGER] = ACTIONS(2434), - [anon_sym_Final] = ACTIONS(2434), - [anon_sym_final] = ACTIONS(2434), - [anon_sym_FINAL] = ACTIONS(2434), - [anon_sym_Function] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_FUNCTION] = ACTIONS(2434), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_Include] = ACTIONS(2434), - [anon_sym_include] = ACTIONS(2434), - [anon_sym_INCLUDE] = ACTIONS(2434), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [anon_sym_New] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_NEW] = ACTIONS(2434), - [anon_sym_Package] = ACTIONS(2434), - [anon_sym_package] = ACTIONS(2434), - [anon_sym_PACKAGE] = ACTIONS(2434), - [anon_sym_Private] = ACTIONS(2434), - [anon_sym_private] = ACTIONS(2434), - [anon_sym_PRIVATE] = ACTIONS(2434), - [anon_sym_Public] = ACTIONS(2434), - [anon_sym_public] = ACTIONS(2434), - [anon_sym_PUBLIC] = ACTIONS(2434), - [anon_sym_Remote] = ACTIONS(2434), - [anon_sym_remote] = ACTIONS(2434), - [anon_sym_REMOTE] = ACTIONS(2434), - [anon_sym_Static] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_STATIC] = ACTIONS(2434), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym__java_block_open] = ACTIONS(2436), - [sym__static_type_prefix] = ACTIONS(2436), + [sym_identifier] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_Query] = ACTIONS(2420), + [anon_sym_query] = ACTIONS(2420), + [anon_sym_QUERY] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2420), + [sym_optional_chain] = ACTIONS(2422), + [sym_static_chain] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_BSLASH] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2422), + [anon_sym_LT_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2422), + [aux_sym_binary_expression_token1] = ACTIONS(2422), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [aux_sym_binary_expression_token2] = ACTIONS(2420), + [aux_sym_binary_expression_token3] = ACTIONS(2420), + [aux_sym_binary_expression_token4] = ACTIONS(2422), + [aux_sym_binary_expression_token5] = ACTIONS(2422), + [aux_sym_binary_expression_token6] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2422), + [aux_sym_unary_operator_token1] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2420), + [aux_sym_number_token2] = ACTIONS(2420), + [anon_sym_This] = ACTIONS(2420), + [anon_sym_this] = ACTIONS(2420), + [anon_sym_THIS] = ACTIONS(2420), + [anon_sym_Super] = ACTIONS(2420), + [anon_sym_super] = ACTIONS(2420), + [anon_sym_SUPER] = ACTIONS(2420), + [anon_sym_True] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_TRUE] = ACTIONS(2420), + [anon_sym_False] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [anon_sym_FALSE] = ACTIONS(2420), + [anon_sym_Null] = ACTIONS(2420), + [anon_sym_null] = ACTIONS(2420), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_Undefined] = ACTIONS(2420), + [anon_sym_undefined] = ACTIONS(2420), + [anon_sym_UNDEFINED] = ACTIONS(2420), + [anon_sym_get] = ACTIONS(2420), + [anon_sym_set] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [sym_hash_empty] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_QueryExecute] = ACTIONS(2420), + [anon_sym_queryexecute] = ACTIONS(2420), + [anon_sym_QUERYEXECUTE] = ACTIONS(2420), + [anon_sym_queryExecute] = ACTIONS(2420), + [anon_sym_BQUOTE] = ACTIONS(2422), + [anon_sym_Abstract] = ACTIONS(2420), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_ABSTRACT] = ACTIONS(2420), + [anon_sym_Component] = ACTIONS(2420), + [anon_sym_component] = ACTIONS(2420), + [anon_sym_COMPONENT] = ACTIONS(2420), + [anon_sym_Debugger] = ACTIONS(2420), + [anon_sym_debugger] = ACTIONS(2420), + [anon_sym_DEBUGGER] = ACTIONS(2420), + [anon_sym_Final] = ACTIONS(2420), + [anon_sym_final] = ACTIONS(2420), + [anon_sym_FINAL] = ACTIONS(2420), + [anon_sym_Function] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2420), + [anon_sym_FUNCTION] = ACTIONS(2420), + [anon_sym_In] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_IN] = ACTIONS(2420), + [anon_sym_Include] = ACTIONS(2420), + [anon_sym_include] = ACTIONS(2420), + [anon_sym_INCLUDE] = ACTIONS(2420), + [anon_sym_InstanceOf] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_INSTANCEOF] = ACTIONS(2420), + [anon_sym_instanceOf] = ACTIONS(2420), + [anon_sym_New] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_NEW] = ACTIONS(2420), + [anon_sym_Package] = ACTIONS(2420), + [anon_sym_package] = ACTIONS(2420), + [anon_sym_PACKAGE] = ACTIONS(2420), + [anon_sym_Private] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_PRIVATE] = ACTIONS(2420), + [anon_sym_Public] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_PUBLIC] = ACTIONS(2420), + [anon_sym_Remote] = ACTIONS(2420), + [anon_sym_remote] = ACTIONS(2420), + [anon_sym_REMOTE] = ACTIONS(2420), + [anon_sym_Static] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_STATIC] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2422), + [sym__elvis_operator] = ACTIONS(2422), + [sym_logical_or] = ACTIONS(2422), + [sym__java_block_open] = ACTIONS(2422), + [sym__static_type_prefix] = ACTIONS(2422), }, [STATE(787)] = { - [sym_identifier] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_let] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_Query] = ACTIONS(2538), - [anon_sym_query] = ACTIONS(2538), - [anon_sym_QUERY] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2538), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2540), - [aux_sym_unary_operator_token1] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2538), - [aux_sym_number_token2] = ACTIONS(2538), - [anon_sym_This] = ACTIONS(2538), - [anon_sym_this] = ACTIONS(2538), - [anon_sym_THIS] = ACTIONS(2538), - [anon_sym_Super] = ACTIONS(2538), - [anon_sym_super] = ACTIONS(2538), - [anon_sym_SUPER] = ACTIONS(2538), - [anon_sym_True] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2538), - [anon_sym_TRUE] = ACTIONS(2538), - [anon_sym_False] = ACTIONS(2538), - [anon_sym_false] = ACTIONS(2538), - [anon_sym_FALSE] = ACTIONS(2538), - [anon_sym_Null] = ACTIONS(2538), - [anon_sym_null] = ACTIONS(2538), - [anon_sym_NULL] = ACTIONS(2538), - [anon_sym_Undefined] = ACTIONS(2538), - [anon_sym_undefined] = ACTIONS(2538), - [anon_sym_UNDEFINED] = ACTIONS(2538), - [anon_sym_get] = ACTIONS(2538), - [anon_sym_set] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [sym_hash_empty] = ACTIONS(2540), - [anon_sym_export] = ACTIONS(2538), - [anon_sym_QueryExecute] = ACTIONS(2538), - [anon_sym_queryexecute] = ACTIONS(2538), - [anon_sym_QUERYEXECUTE] = ACTIONS(2538), - [anon_sym_queryExecute] = ACTIONS(2538), - [anon_sym_BQUOTE] = ACTIONS(2540), - [anon_sym_Abstract] = ACTIONS(2538), - [anon_sym_abstract] = ACTIONS(2538), - [anon_sym_ABSTRACT] = ACTIONS(2538), - [anon_sym_Component] = ACTIONS(2538), - [anon_sym_component] = ACTIONS(2538), - [anon_sym_COMPONENT] = ACTIONS(2538), - [anon_sym_Debugger] = ACTIONS(2538), - [anon_sym_debugger] = ACTIONS(2538), - [anon_sym_DEBUGGER] = ACTIONS(2538), - [anon_sym_Final] = ACTIONS(2538), - [anon_sym_final] = ACTIONS(2538), - [anon_sym_FINAL] = ACTIONS(2538), - [anon_sym_Function] = ACTIONS(2538), - [anon_sym_function] = ACTIONS(2538), - [anon_sym_FUNCTION] = ACTIONS(2538), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_Include] = ACTIONS(2538), - [anon_sym_include] = ACTIONS(2538), - [anon_sym_INCLUDE] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2538), - [anon_sym_instanceof] = ACTIONS(2538), - [anon_sym_INSTANCEOF] = ACTIONS(2538), - [anon_sym_instanceOf] = ACTIONS(2538), - [anon_sym_New] = ACTIONS(2538), - [anon_sym_new] = ACTIONS(2538), - [anon_sym_NEW] = ACTIONS(2538), - [anon_sym_Package] = ACTIONS(2538), - [anon_sym_package] = ACTIONS(2538), - [anon_sym_PACKAGE] = ACTIONS(2538), - [anon_sym_Private] = ACTIONS(2538), - [anon_sym_private] = ACTIONS(2538), - [anon_sym_PRIVATE] = ACTIONS(2538), - [anon_sym_Public] = ACTIONS(2538), - [anon_sym_public] = ACTIONS(2538), - [anon_sym_PUBLIC] = ACTIONS(2538), - [anon_sym_Remote] = ACTIONS(2538), - [anon_sym_remote] = ACTIONS(2538), - [anon_sym_REMOTE] = ACTIONS(2538), - [anon_sym_Static] = ACTIONS(2538), - [anon_sym_static] = ACTIONS(2538), - [anon_sym_STATIC] = ACTIONS(2538), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), - [sym__java_block_open] = ACTIONS(2540), - [sym__static_type_prefix] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2452), + [anon_sym_DOT] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_Query] = ACTIONS(2452), + [anon_sym_query] = ACTIONS(2452), + [anon_sym_QUERY] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2452), + [sym_optional_chain] = ACTIONS(2454), + [sym_static_chain] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_BSLASH] = ACTIONS(2452), + [anon_sym_STAR_STAR] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2454), + [anon_sym_LT_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2454), + [aux_sym_binary_expression_token1] = ACTIONS(2454), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [aux_sym_binary_expression_token2] = ACTIONS(2452), + [aux_sym_binary_expression_token3] = ACTIONS(2452), + [aux_sym_binary_expression_token4] = ACTIONS(2454), + [aux_sym_binary_expression_token5] = ACTIONS(2454), + [aux_sym_binary_expression_token6] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_TILDE] = ACTIONS(2454), + [aux_sym_unary_operator_token1] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2452), + [aux_sym_number_token2] = ACTIONS(2452), + [anon_sym_This] = ACTIONS(2452), + [anon_sym_this] = ACTIONS(2452), + [anon_sym_THIS] = ACTIONS(2452), + [anon_sym_Super] = ACTIONS(2452), + [anon_sym_super] = ACTIONS(2452), + [anon_sym_SUPER] = ACTIONS(2452), + [anon_sym_True] = ACTIONS(2452), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_TRUE] = ACTIONS(2452), + [anon_sym_False] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [anon_sym_FALSE] = ACTIONS(2452), + [anon_sym_Null] = ACTIONS(2452), + [anon_sym_null] = ACTIONS(2452), + [anon_sym_NULL] = ACTIONS(2452), + [anon_sym_Undefined] = ACTIONS(2452), + [anon_sym_undefined] = ACTIONS(2452), + [anon_sym_UNDEFINED] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(2452), + [sym_hash_empty] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_QueryExecute] = ACTIONS(2452), + [anon_sym_queryexecute] = ACTIONS(2452), + [anon_sym_QUERYEXECUTE] = ACTIONS(2452), + [anon_sym_queryExecute] = ACTIONS(2452), + [anon_sym_BQUOTE] = ACTIONS(2454), + [anon_sym_Abstract] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_ABSTRACT] = ACTIONS(2452), + [anon_sym_Component] = ACTIONS(2452), + [anon_sym_component] = ACTIONS(2452), + [anon_sym_COMPONENT] = ACTIONS(2452), + [anon_sym_Debugger] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_DEBUGGER] = ACTIONS(2452), + [anon_sym_Final] = ACTIONS(2452), + [anon_sym_final] = ACTIONS(2452), + [anon_sym_FINAL] = ACTIONS(2452), + [anon_sym_Function] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_FUNCTION] = ACTIONS(2452), + [anon_sym_In] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(2452), + [anon_sym_IN] = ACTIONS(2452), + [anon_sym_Include] = ACTIONS(2452), + [anon_sym_include] = ACTIONS(2452), + [anon_sym_INCLUDE] = ACTIONS(2452), + [anon_sym_InstanceOf] = ACTIONS(2452), + [anon_sym_instanceof] = ACTIONS(2452), + [anon_sym_INSTANCEOF] = ACTIONS(2452), + [anon_sym_instanceOf] = ACTIONS(2452), + [anon_sym_New] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_NEW] = ACTIONS(2452), + [anon_sym_Package] = ACTIONS(2452), + [anon_sym_package] = ACTIONS(2452), + [anon_sym_PACKAGE] = ACTIONS(2452), + [anon_sym_Private] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_PRIVATE] = ACTIONS(2452), + [anon_sym_Public] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_PUBLIC] = ACTIONS(2452), + [anon_sym_Remote] = ACTIONS(2452), + [anon_sym_remote] = ACTIONS(2452), + [anon_sym_REMOTE] = ACTIONS(2452), + [anon_sym_Static] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_STATIC] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2454), + [sym__elvis_operator] = ACTIONS(2454), + [sym_logical_or] = ACTIONS(2454), + [sym__java_block_open] = ACTIONS(2454), + [sym__static_type_prefix] = ACTIONS(2454), }, [STATE(788)] = { - [sym_identifier] = ACTIONS(2546), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_Query] = ACTIONS(2546), - [anon_sym_query] = ACTIONS(2546), - [anon_sym_QUERY] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2546), - [sym_optional_chain] = ACTIONS(2548), - [sym_static_chain] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_GT_GT] = ACTIONS(2546), - [anon_sym_GT_GT_GT] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_BSLASH] = ACTIONS(2546), - [anon_sym_STAR_STAR] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_LT_EQ] = ACTIONS(2548), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2548), - [anon_sym_LT_GT] = ACTIONS(2548), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2548), - [aux_sym_binary_expression_token1] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(2546), - [aux_sym_binary_expression_token2] = ACTIONS(2546), - [aux_sym_binary_expression_token3] = ACTIONS(2546), - [aux_sym_binary_expression_token4] = ACTIONS(2548), - [aux_sym_binary_expression_token5] = ACTIONS(2548), - [aux_sym_binary_expression_token6] = ACTIONS(2548), - [anon_sym_QMARK_QMARK] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2548), - [aux_sym_unary_operator_token1] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2546), - [aux_sym_number_token2] = ACTIONS(2546), - [anon_sym_This] = ACTIONS(2546), - [anon_sym_this] = ACTIONS(2546), - [anon_sym_THIS] = ACTIONS(2546), - [anon_sym_Super] = ACTIONS(2546), - [anon_sym_super] = ACTIONS(2546), - [anon_sym_SUPER] = ACTIONS(2546), - [anon_sym_True] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2546), - [anon_sym_TRUE] = ACTIONS(2546), - [anon_sym_False] = ACTIONS(2546), - [anon_sym_false] = ACTIONS(2546), - [anon_sym_FALSE] = ACTIONS(2546), - [anon_sym_Null] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2546), - [anon_sym_NULL] = ACTIONS(2546), - [anon_sym_Undefined] = ACTIONS(2546), - [anon_sym_undefined] = ACTIONS(2546), - [anon_sym_UNDEFINED] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_POUND] = ACTIONS(2546), - [sym_hash_empty] = ACTIONS(2548), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_QueryExecute] = ACTIONS(2546), - [anon_sym_queryexecute] = ACTIONS(2546), - [anon_sym_QUERYEXECUTE] = ACTIONS(2546), - [anon_sym_queryExecute] = ACTIONS(2546), - [anon_sym_BQUOTE] = ACTIONS(2548), - [anon_sym_Abstract] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_ABSTRACT] = ACTIONS(2546), - [anon_sym_Component] = ACTIONS(2546), - [anon_sym_component] = ACTIONS(2546), - [anon_sym_COMPONENT] = ACTIONS(2546), - [anon_sym_Debugger] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_DEBUGGER] = ACTIONS(2546), - [anon_sym_Final] = ACTIONS(2546), - [anon_sym_final] = ACTIONS(2546), - [anon_sym_FINAL] = ACTIONS(2546), - [anon_sym_Function] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_FUNCTION] = ACTIONS(2546), - [anon_sym_In] = ACTIONS(2546), - [anon_sym_in] = ACTIONS(2546), - [anon_sym_IN] = ACTIONS(2546), - [anon_sym_Include] = ACTIONS(2546), - [anon_sym_include] = ACTIONS(2546), - [anon_sym_INCLUDE] = ACTIONS(2546), - [anon_sym_InstanceOf] = ACTIONS(2546), - [anon_sym_instanceof] = ACTIONS(2546), - [anon_sym_INSTANCEOF] = ACTIONS(2546), - [anon_sym_instanceOf] = ACTIONS(2546), - [anon_sym_New] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_NEW] = ACTIONS(2546), - [anon_sym_Package] = ACTIONS(2546), - [anon_sym_package] = ACTIONS(2546), - [anon_sym_PACKAGE] = ACTIONS(2546), - [anon_sym_Private] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_PRIVATE] = ACTIONS(2546), - [anon_sym_Public] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_PUBLIC] = ACTIONS(2546), - [anon_sym_Remote] = ACTIONS(2546), - [anon_sym_remote] = ACTIONS(2546), - [anon_sym_REMOTE] = ACTIONS(2546), - [anon_sym_Static] = ACTIONS(2546), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_STATIC] = ACTIONS(2546), - [sym__ternary_qmark] = ACTIONS(2548), - [sym__elvis_operator] = ACTIONS(2548), - [sym_logical_or] = ACTIONS(2548), - [sym__java_block_open] = ACTIONS(2548), - [sym__static_type_prefix] = ACTIONS(2548), + [sym_identifier] = ACTIONS(2460), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_Query] = ACTIONS(2460), + [anon_sym_query] = ACTIONS(2460), + [anon_sym_QUERY] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2460), + [sym_optional_chain] = ACTIONS(2462), + [sym_static_chain] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_BSLASH] = ACTIONS(2460), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_LT_GT] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [aux_sym_binary_expression_token1] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [aux_sym_binary_expression_token2] = ACTIONS(2460), + [aux_sym_binary_expression_token3] = ACTIONS(2460), + [aux_sym_binary_expression_token4] = ACTIONS(2462), + [aux_sym_binary_expression_token5] = ACTIONS(2462), + [aux_sym_binary_expression_token6] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_TILDE] = ACTIONS(2462), + [aux_sym_unary_operator_token1] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2460), + [aux_sym_number_token2] = ACTIONS(2460), + [anon_sym_This] = ACTIONS(2460), + [anon_sym_this] = ACTIONS(2460), + [anon_sym_THIS] = ACTIONS(2460), + [anon_sym_Super] = ACTIONS(2460), + [anon_sym_super] = ACTIONS(2460), + [anon_sym_SUPER] = ACTIONS(2460), + [anon_sym_True] = ACTIONS(2460), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_TRUE] = ACTIONS(2460), + [anon_sym_False] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [anon_sym_FALSE] = ACTIONS(2460), + [anon_sym_Null] = ACTIONS(2460), + [anon_sym_null] = ACTIONS(2460), + [anon_sym_NULL] = ACTIONS(2460), + [anon_sym_Undefined] = ACTIONS(2460), + [anon_sym_undefined] = ACTIONS(2460), + [anon_sym_UNDEFINED] = ACTIONS(2460), + [anon_sym_get] = ACTIONS(2460), + [anon_sym_set] = ACTIONS(2460), + [anon_sym_POUND] = ACTIONS(2460), + [sym_hash_empty] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2460), + [anon_sym_QueryExecute] = ACTIONS(2460), + [anon_sym_queryexecute] = ACTIONS(2460), + [anon_sym_QUERYEXECUTE] = ACTIONS(2460), + [anon_sym_queryExecute] = ACTIONS(2460), + [anon_sym_BQUOTE] = ACTIONS(2462), + [anon_sym_Abstract] = ACTIONS(2460), + [anon_sym_abstract] = ACTIONS(2460), + [anon_sym_ABSTRACT] = ACTIONS(2460), + [anon_sym_Component] = ACTIONS(2460), + [anon_sym_component] = ACTIONS(2460), + [anon_sym_COMPONENT] = ACTIONS(2460), + [anon_sym_Debugger] = ACTIONS(2460), + [anon_sym_debugger] = ACTIONS(2460), + [anon_sym_DEBUGGER] = ACTIONS(2460), + [anon_sym_Final] = ACTIONS(2460), + [anon_sym_final] = ACTIONS(2460), + [anon_sym_FINAL] = ACTIONS(2460), + [anon_sym_Function] = ACTIONS(2460), + [anon_sym_function] = ACTIONS(2460), + [anon_sym_FUNCTION] = ACTIONS(2460), + [anon_sym_In] = ACTIONS(2460), + [anon_sym_in] = ACTIONS(2460), + [anon_sym_IN] = ACTIONS(2460), + [anon_sym_Include] = ACTIONS(2460), + [anon_sym_include] = ACTIONS(2460), + [anon_sym_INCLUDE] = ACTIONS(2460), + [anon_sym_InstanceOf] = ACTIONS(2460), + [anon_sym_instanceof] = ACTIONS(2460), + [anon_sym_INSTANCEOF] = ACTIONS(2460), + [anon_sym_instanceOf] = ACTIONS(2460), + [anon_sym_New] = ACTIONS(2460), + [anon_sym_new] = ACTIONS(2460), + [anon_sym_NEW] = ACTIONS(2460), + [anon_sym_Package] = ACTIONS(2460), + [anon_sym_package] = ACTIONS(2460), + [anon_sym_PACKAGE] = ACTIONS(2460), + [anon_sym_Private] = ACTIONS(2460), + [anon_sym_private] = ACTIONS(2460), + [anon_sym_PRIVATE] = ACTIONS(2460), + [anon_sym_Public] = ACTIONS(2460), + [anon_sym_public] = ACTIONS(2460), + [anon_sym_PUBLIC] = ACTIONS(2460), + [anon_sym_Remote] = ACTIONS(2460), + [anon_sym_remote] = ACTIONS(2460), + [anon_sym_REMOTE] = ACTIONS(2460), + [anon_sym_Static] = ACTIONS(2460), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_STATIC] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2462), + [sym__elvis_operator] = ACTIONS(2462), + [sym_logical_or] = ACTIONS(2462), + [sym__java_block_open] = ACTIONS(2462), + [sym__static_type_prefix] = ACTIONS(2462), }, [STATE(789)] = { - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_RBRACE] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2642), - [anon_sym_let] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_Query] = ACTIONS(2644), - [anon_sym_query] = ACTIONS(2644), - [anon_sym_QUERY] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_SLASH] = ACTIONS(2644), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2642), - [aux_sym_unary_operator_token1] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2642), - [anon_sym_DQUOTE] = ACTIONS(2642), - [anon_sym_SQUOTE] = ACTIONS(2642), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2644), - [aux_sym_number_token2] = ACTIONS(2642), - [anon_sym_This] = ACTIONS(2644), - [anon_sym_this] = ACTIONS(2644), - [anon_sym_THIS] = ACTIONS(2644), - [anon_sym_Super] = ACTIONS(2644), - [anon_sym_super] = ACTIONS(2644), - [anon_sym_SUPER] = ACTIONS(2644), - [anon_sym_True] = ACTIONS(2644), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_TRUE] = ACTIONS(2644), - [anon_sym_False] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_FALSE] = ACTIONS(2644), - [anon_sym_Null] = ACTIONS(2644), - [anon_sym_null] = ACTIONS(2644), - [anon_sym_NULL] = ACTIONS(2644), - [anon_sym_Undefined] = ACTIONS(2644), - [anon_sym_undefined] = ACTIONS(2644), - [anon_sym_UNDEFINED] = ACTIONS(2644), - [anon_sym_get] = ACTIONS(2644), - [anon_sym_set] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2644), - [sym_hash_empty] = ACTIONS(2642), - [anon_sym_export] = ACTIONS(2644), - [anon_sym_QueryExecute] = ACTIONS(2644), - [anon_sym_queryexecute] = ACTIONS(2644), - [anon_sym_QUERYEXECUTE] = ACTIONS(2644), - [anon_sym_queryExecute] = ACTIONS(2644), - [anon_sym_BQUOTE] = ACTIONS(2644), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2642), - [anon_sym_Abstract] = ACTIONS(2644), - [anon_sym_abstract] = ACTIONS(2644), - [anon_sym_ABSTRACT] = ACTIONS(2644), - [anon_sym_Break] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_BREAK] = ACTIONS(2644), - [anon_sym_Case] = ACTIONS(2644), - [anon_sym_case] = ACTIONS(2644), - [anon_sym_CASE] = ACTIONS(2644), - [anon_sym_Component] = ACTIONS(2644), - [anon_sym_component] = ACTIONS(2644), - [anon_sym_COMPONENT] = ACTIONS(2644), - [anon_sym_Continue] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_CONTINUE] = ACTIONS(2644), - [anon_sym_Debugger] = ACTIONS(2644), - [anon_sym_debugger] = ACTIONS(2644), - [anon_sym_DEBUGGER] = ACTIONS(2644), - [anon_sym_Default] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_DEFAULT] = ACTIONS(2644), - [anon_sym_Do] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_DO] = ACTIONS(2644), - [anon_sym_Final] = ACTIONS(2644), - [anon_sym_final] = ACTIONS(2644), - [anon_sym_FINAL] = ACTIONS(2644), - [anon_sym_For] = ACTIONS(2644), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_FOR] = ACTIONS(2644), - [anon_sym_Function] = ACTIONS(2644), - [anon_sym_function] = ACTIONS(2644), - [anon_sym_FUNCTION] = ACTIONS(2644), - [anon_sym_If] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_IF] = ACTIONS(2644), - [anon_sym_Import] = ACTIONS(2644), - [anon_sym_import] = ACTIONS(2644), - [anon_sym_IMPORT] = ACTIONS(2644), - [anon_sym_Include] = ACTIONS(2644), - [anon_sym_include] = ACTIONS(2644), - [anon_sym_INCLUDE] = ACTIONS(2644), - [anon_sym_Interface] = ACTIONS(2644), - [anon_sym_interface] = ACTIONS(2644), - [anon_sym_INTERFACE] = ACTIONS(2644), - [anon_sym_New] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_NEW] = ACTIONS(2644), - [anon_sym_Package] = ACTIONS(2644), - [anon_sym_package] = ACTIONS(2644), - [anon_sym_PACKAGE] = ACTIONS(2644), - [anon_sym_Private] = ACTIONS(2644), - [anon_sym_private] = ACTIONS(2644), - [anon_sym_PRIVATE] = ACTIONS(2644), - [anon_sym_Property] = ACTIONS(2644), - [anon_sym_property] = ACTIONS(2644), - [anon_sym_PROPERTY] = ACTIONS(2644), - [anon_sym_Public] = ACTIONS(2644), - [anon_sym_public] = ACTIONS(2644), - [anon_sym_PUBLIC] = ACTIONS(2644), - [anon_sym_Remote] = ACTIONS(2644), - [anon_sym_remote] = ACTIONS(2644), - [anon_sym_REMOTE] = ACTIONS(2644), - [anon_sym_Return] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_RETURN] = ACTIONS(2644), - [anon_sym_Static] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_STATIC] = ACTIONS(2644), - [anon_sym_Switch] = ACTIONS(2644), - [anon_sym_switch] = ACTIONS(2644), - [anon_sym_SWITCH] = ACTIONS(2644), - [anon_sym_Throw] = ACTIONS(2644), - [anon_sym_throw] = ACTIONS(2644), - [anon_sym_THROW] = ACTIONS(2644), - [anon_sym_Try] = ACTIONS(2644), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_TRY] = ACTIONS(2644), - [anon_sym_Var] = ACTIONS(2644), - [anon_sym_var] = ACTIONS(2644), - [anon_sym_VAR] = ACTIONS(2644), - [anon_sym_While] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_WHILE] = ACTIONS(2644), - [anon_sym_With] = ACTIONS(2644), - [anon_sym_with] = ACTIONS(2644), - [anon_sym_WITH] = ACTIONS(2644), - [sym__automatic_semicolon] = ACTIONS(3140), - [sym_cf_comment] = ACTIONS(2642), - [sym__java_block_open] = ACTIONS(2642), - [sym__static_type_prefix] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2496), + [anon_sym_DOT] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_Query] = ACTIONS(2496), + [anon_sym_query] = ACTIONS(2496), + [anon_sym_QUERY] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2496), + [sym_optional_chain] = ACTIONS(2498), + [sym_static_chain] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_BSLASH] = ACTIONS(2496), + [anon_sym_STAR_STAR] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), + [anon_sym_LT_GT] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), + [aux_sym_binary_expression_token1] = ACTIONS(2498), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [aux_sym_binary_expression_token2] = ACTIONS(2496), + [aux_sym_binary_expression_token3] = ACTIONS(2496), + [aux_sym_binary_expression_token4] = ACTIONS(2498), + [aux_sym_binary_expression_token5] = ACTIONS(2498), + [aux_sym_binary_expression_token6] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_TILDE] = ACTIONS(2498), + [aux_sym_unary_operator_token1] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2498), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2496), + [aux_sym_number_token2] = ACTIONS(2496), + [anon_sym_This] = ACTIONS(2496), + [anon_sym_this] = ACTIONS(2496), + [anon_sym_THIS] = ACTIONS(2496), + [anon_sym_Super] = ACTIONS(2496), + [anon_sym_super] = ACTIONS(2496), + [anon_sym_SUPER] = ACTIONS(2496), + [anon_sym_True] = ACTIONS(2496), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_TRUE] = ACTIONS(2496), + [anon_sym_False] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [anon_sym_FALSE] = ACTIONS(2496), + [anon_sym_Null] = ACTIONS(2496), + [anon_sym_null] = ACTIONS(2496), + [anon_sym_NULL] = ACTIONS(2496), + [anon_sym_Undefined] = ACTIONS(2496), + [anon_sym_undefined] = ACTIONS(2496), + [anon_sym_UNDEFINED] = ACTIONS(2496), + [anon_sym_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_POUND] = ACTIONS(2496), + [sym_hash_empty] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_QueryExecute] = ACTIONS(2496), + [anon_sym_queryexecute] = ACTIONS(2496), + [anon_sym_QUERYEXECUTE] = ACTIONS(2496), + [anon_sym_queryExecute] = ACTIONS(2496), + [anon_sym_BQUOTE] = ACTIONS(2498), + [anon_sym_Abstract] = ACTIONS(2496), + [anon_sym_abstract] = ACTIONS(2496), + [anon_sym_ABSTRACT] = ACTIONS(2496), + [anon_sym_Component] = ACTIONS(2496), + [anon_sym_component] = ACTIONS(2496), + [anon_sym_COMPONENT] = ACTIONS(2496), + [anon_sym_Debugger] = ACTIONS(2496), + [anon_sym_debugger] = ACTIONS(2496), + [anon_sym_DEBUGGER] = ACTIONS(2496), + [anon_sym_Final] = ACTIONS(2496), + [anon_sym_final] = ACTIONS(2496), + [anon_sym_FINAL] = ACTIONS(2496), + [anon_sym_Function] = ACTIONS(2496), + [anon_sym_function] = ACTIONS(2496), + [anon_sym_FUNCTION] = ACTIONS(2496), + [anon_sym_In] = ACTIONS(2496), + [anon_sym_in] = ACTIONS(2496), + [anon_sym_IN] = ACTIONS(2496), + [anon_sym_Include] = ACTIONS(2496), + [anon_sym_include] = ACTIONS(2496), + [anon_sym_INCLUDE] = ACTIONS(2496), + [anon_sym_InstanceOf] = ACTIONS(2496), + [anon_sym_instanceof] = ACTIONS(2496), + [anon_sym_INSTANCEOF] = ACTIONS(2496), + [anon_sym_instanceOf] = ACTIONS(2496), + [anon_sym_New] = ACTIONS(2496), + [anon_sym_new] = ACTIONS(2496), + [anon_sym_NEW] = ACTIONS(2496), + [anon_sym_Package] = ACTIONS(2496), + [anon_sym_package] = ACTIONS(2496), + [anon_sym_PACKAGE] = ACTIONS(2496), + [anon_sym_Private] = ACTIONS(2496), + [anon_sym_private] = ACTIONS(2496), + [anon_sym_PRIVATE] = ACTIONS(2496), + [anon_sym_Public] = ACTIONS(2496), + [anon_sym_public] = ACTIONS(2496), + [anon_sym_PUBLIC] = ACTIONS(2496), + [anon_sym_Remote] = ACTIONS(2496), + [anon_sym_remote] = ACTIONS(2496), + [anon_sym_REMOTE] = ACTIONS(2496), + [anon_sym_Static] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_STATIC] = ACTIONS(2496), + [sym__ternary_qmark] = ACTIONS(2498), + [sym__elvis_operator] = ACTIONS(2498), + [sym_logical_or] = ACTIONS(2498), + [sym__java_block_open] = ACTIONS(2498), + [sym__static_type_prefix] = ACTIONS(2498), }, [STATE(790)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(3142), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [sym_identifier] = ACTIONS(2500), + [anon_sym_DOT] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_Query] = ACTIONS(2500), + [anon_sym_query] = ACTIONS(2500), + [anon_sym_QUERY] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2500), + [sym_optional_chain] = ACTIONS(2502), + [sym_static_chain] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(2500), + [anon_sym_STAR_STAR] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2500), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), + [anon_sym_LT_GT] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2500), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), + [aux_sym_binary_expression_token1] = ACTIONS(2502), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [aux_sym_binary_expression_token2] = ACTIONS(2500), + [aux_sym_binary_expression_token3] = ACTIONS(2500), + [aux_sym_binary_expression_token4] = ACTIONS(2502), + [aux_sym_binary_expression_token5] = ACTIONS(2502), + [aux_sym_binary_expression_token6] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_TILDE] = ACTIONS(2502), + [aux_sym_unary_operator_token1] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2502), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2500), + [aux_sym_number_token2] = ACTIONS(2500), + [anon_sym_This] = ACTIONS(2500), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_THIS] = ACTIONS(2500), + [anon_sym_Super] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2500), + [anon_sym_SUPER] = ACTIONS(2500), + [anon_sym_True] = ACTIONS(2500), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_TRUE] = ACTIONS(2500), + [anon_sym_False] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_FALSE] = ACTIONS(2500), + [anon_sym_Null] = ACTIONS(2500), + [anon_sym_null] = ACTIONS(2500), + [anon_sym_NULL] = ACTIONS(2500), + [anon_sym_Undefined] = ACTIONS(2500), + [anon_sym_undefined] = ACTIONS(2500), + [anon_sym_UNDEFINED] = ACTIONS(2500), + [anon_sym_get] = ACTIONS(2500), + [anon_sym_set] = ACTIONS(2500), + [anon_sym_POUND] = ACTIONS(2500), + [sym_hash_empty] = ACTIONS(2502), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_QueryExecute] = ACTIONS(2500), + [anon_sym_queryexecute] = ACTIONS(2500), + [anon_sym_QUERYEXECUTE] = ACTIONS(2500), + [anon_sym_queryExecute] = ACTIONS(2500), + [anon_sym_BQUOTE] = ACTIONS(2502), + [anon_sym_Abstract] = ACTIONS(2500), + [anon_sym_abstract] = ACTIONS(2500), + [anon_sym_ABSTRACT] = ACTIONS(2500), + [anon_sym_Component] = ACTIONS(2500), + [anon_sym_component] = ACTIONS(2500), + [anon_sym_COMPONENT] = ACTIONS(2500), + [anon_sym_Debugger] = ACTIONS(2500), + [anon_sym_debugger] = ACTIONS(2500), + [anon_sym_DEBUGGER] = ACTIONS(2500), + [anon_sym_Final] = ACTIONS(2500), + [anon_sym_final] = ACTIONS(2500), + [anon_sym_FINAL] = ACTIONS(2500), + [anon_sym_Function] = ACTIONS(2500), + [anon_sym_function] = ACTIONS(2500), + [anon_sym_FUNCTION] = ACTIONS(2500), + [anon_sym_In] = ACTIONS(2500), + [anon_sym_in] = ACTIONS(2500), + [anon_sym_IN] = ACTIONS(2500), + [anon_sym_Include] = ACTIONS(2500), + [anon_sym_include] = ACTIONS(2500), + [anon_sym_INCLUDE] = ACTIONS(2500), + [anon_sym_InstanceOf] = ACTIONS(2500), + [anon_sym_instanceof] = ACTIONS(2500), + [anon_sym_INSTANCEOF] = ACTIONS(2500), + [anon_sym_instanceOf] = ACTIONS(2500), + [anon_sym_New] = ACTIONS(2500), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_NEW] = ACTIONS(2500), + [anon_sym_Package] = ACTIONS(2500), + [anon_sym_package] = ACTIONS(2500), + [anon_sym_PACKAGE] = ACTIONS(2500), + [anon_sym_Private] = ACTIONS(2500), + [anon_sym_private] = ACTIONS(2500), + [anon_sym_PRIVATE] = ACTIONS(2500), + [anon_sym_Public] = ACTIONS(2500), + [anon_sym_public] = ACTIONS(2500), + [anon_sym_PUBLIC] = ACTIONS(2500), + [anon_sym_Remote] = ACTIONS(2500), + [anon_sym_remote] = ACTIONS(2500), + [anon_sym_REMOTE] = ACTIONS(2500), + [anon_sym_Static] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_STATIC] = ACTIONS(2500), + [sym__ternary_qmark] = ACTIONS(2502), + [sym__elvis_operator] = ACTIONS(2502), + [sym_logical_or] = ACTIONS(2502), + [sym__java_block_open] = ACTIONS(2502), + [sym__static_type_prefix] = ACTIONS(2502), }, [STATE(791)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(1684), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [sym_identifier] = ACTIONS(2520), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_Query] = ACTIONS(2520), + [anon_sym_query] = ACTIONS(2520), + [anon_sym_QUERY] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2520), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_BSLASH] = ACTIONS(2520), + [anon_sym_STAR_STAR] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2520), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2522), + [anon_sym_LT_GT] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2520), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2522), + [aux_sym_binary_expression_token1] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [aux_sym_binary_expression_token2] = ACTIONS(2520), + [aux_sym_binary_expression_token3] = ACTIONS(2520), + [aux_sym_binary_expression_token4] = ACTIONS(2522), + [aux_sym_binary_expression_token5] = ACTIONS(2522), + [aux_sym_binary_expression_token6] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_TILDE] = ACTIONS(2522), + [aux_sym_unary_operator_token1] = ACTIONS(2520), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2520), + [aux_sym_number_token2] = ACTIONS(2520), + [anon_sym_This] = ACTIONS(2520), + [anon_sym_this] = ACTIONS(2520), + [anon_sym_THIS] = ACTIONS(2520), + [anon_sym_Super] = ACTIONS(2520), + [anon_sym_super] = ACTIONS(2520), + [anon_sym_SUPER] = ACTIONS(2520), + [anon_sym_True] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2520), + [anon_sym_TRUE] = ACTIONS(2520), + [anon_sym_False] = ACTIONS(2520), + [anon_sym_false] = ACTIONS(2520), + [anon_sym_FALSE] = ACTIONS(2520), + [anon_sym_Null] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2520), + [anon_sym_NULL] = ACTIONS(2520), + [anon_sym_Undefined] = ACTIONS(2520), + [anon_sym_undefined] = ACTIONS(2520), + [anon_sym_UNDEFINED] = ACTIONS(2520), + [anon_sym_get] = ACTIONS(2520), + [anon_sym_set] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [sym_hash_empty] = ACTIONS(2522), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_QueryExecute] = ACTIONS(2520), + [anon_sym_queryexecute] = ACTIONS(2520), + [anon_sym_QUERYEXECUTE] = ACTIONS(2520), + [anon_sym_queryExecute] = ACTIONS(2520), + [anon_sym_BQUOTE] = ACTIONS(2522), + [anon_sym_Abstract] = ACTIONS(2520), + [anon_sym_abstract] = ACTIONS(2520), + [anon_sym_ABSTRACT] = ACTIONS(2520), + [anon_sym_Component] = ACTIONS(2520), + [anon_sym_component] = ACTIONS(2520), + [anon_sym_COMPONENT] = ACTIONS(2520), + [anon_sym_Debugger] = ACTIONS(2520), + [anon_sym_debugger] = ACTIONS(2520), + [anon_sym_DEBUGGER] = ACTIONS(2520), + [anon_sym_Final] = ACTIONS(2520), + [anon_sym_final] = ACTIONS(2520), + [anon_sym_FINAL] = ACTIONS(2520), + [anon_sym_Function] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2520), + [anon_sym_FUNCTION] = ACTIONS(2520), + [anon_sym_In] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_IN] = ACTIONS(2520), + [anon_sym_Include] = ACTIONS(2520), + [anon_sym_include] = ACTIONS(2520), + [anon_sym_INCLUDE] = ACTIONS(2520), + [anon_sym_InstanceOf] = ACTIONS(2520), + [anon_sym_instanceof] = ACTIONS(2520), + [anon_sym_INSTANCEOF] = ACTIONS(2520), + [anon_sym_instanceOf] = ACTIONS(2520), + [anon_sym_New] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_NEW] = ACTIONS(2520), + [anon_sym_Package] = ACTIONS(2520), + [anon_sym_package] = ACTIONS(2520), + [anon_sym_PACKAGE] = ACTIONS(2520), + [anon_sym_Private] = ACTIONS(2520), + [anon_sym_private] = ACTIONS(2520), + [anon_sym_PRIVATE] = ACTIONS(2520), + [anon_sym_Public] = ACTIONS(2520), + [anon_sym_public] = ACTIONS(2520), + [anon_sym_PUBLIC] = ACTIONS(2520), + [anon_sym_Remote] = ACTIONS(2520), + [anon_sym_remote] = ACTIONS(2520), + [anon_sym_REMOTE] = ACTIONS(2520), + [anon_sym_Static] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_STATIC] = ACTIONS(2520), + [sym__ternary_qmark] = ACTIONS(2522), + [sym__elvis_operator] = ACTIONS(2522), + [sym_logical_or] = ACTIONS(2522), + [sym__java_block_open] = ACTIONS(2522), + [sym__static_type_prefix] = ACTIONS(2522), }, [STATE(792)] = { - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_let] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_Query] = ACTIONS(1083), - [anon_sym_query] = ACTIONS(1083), - [anon_sym_QUERY] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym_unary_operator_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1083), - [aux_sym_number_token2] = ACTIONS(1081), - [anon_sym_This] = ACTIONS(1083), - [anon_sym_this] = ACTIONS(1083), - [anon_sym_THIS] = ACTIONS(1083), - [anon_sym_Super] = ACTIONS(1083), - [anon_sym_super] = ACTIONS(1083), - [anon_sym_SUPER] = ACTIONS(1083), - [anon_sym_True] = ACTIONS(1083), - [anon_sym_true] = ACTIONS(1083), - [anon_sym_TRUE] = ACTIONS(1083), - [anon_sym_False] = ACTIONS(1083), - [anon_sym_false] = ACTIONS(1083), - [anon_sym_FALSE] = ACTIONS(1083), - [anon_sym_Null] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1083), - [anon_sym_NULL] = ACTIONS(1083), - [anon_sym_Undefined] = ACTIONS(1083), - [anon_sym_undefined] = ACTIONS(1083), - [anon_sym_UNDEFINED] = ACTIONS(1083), - [anon_sym_get] = ACTIONS(1083), - [anon_sym_set] = ACTIONS(1083), - [anon_sym_POUND] = ACTIONS(1083), - [sym_hash_empty] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1083), - [anon_sym_QueryExecute] = ACTIONS(1083), - [anon_sym_queryexecute] = ACTIONS(1083), - [anon_sym_QUERYEXECUTE] = ACTIONS(1083), - [anon_sym_queryExecute] = ACTIONS(1083), - [anon_sym_BQUOTE] = ACTIONS(1083), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1081), - [anon_sym_Abstract] = ACTIONS(1083), - [anon_sym_abstract] = ACTIONS(1083), - [anon_sym_ABSTRACT] = ACTIONS(1083), - [anon_sym_Break] = ACTIONS(1083), - [anon_sym_break] = ACTIONS(1083), - [anon_sym_BREAK] = ACTIONS(1083), - [anon_sym_Case] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1083), - [anon_sym_CASE] = ACTIONS(1083), - [anon_sym_Component] = ACTIONS(1083), - [anon_sym_component] = ACTIONS(1083), - [anon_sym_COMPONENT] = ACTIONS(1083), - [anon_sym_Continue] = ACTIONS(1083), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_CONTINUE] = ACTIONS(1083), - [anon_sym_Debugger] = ACTIONS(1083), - [anon_sym_debugger] = ACTIONS(1083), - [anon_sym_DEBUGGER] = ACTIONS(1083), - [anon_sym_Default] = ACTIONS(1083), - [anon_sym_default] = ACTIONS(1083), - [anon_sym_DEFAULT] = ACTIONS(1083), - [anon_sym_Do] = ACTIONS(1083), - [anon_sym_do] = ACTIONS(1083), - [anon_sym_DO] = ACTIONS(1083), - [anon_sym_Final] = ACTIONS(1083), - [anon_sym_final] = ACTIONS(1083), - [anon_sym_FINAL] = ACTIONS(1083), - [anon_sym_For] = ACTIONS(1083), - [anon_sym_for] = ACTIONS(1083), - [anon_sym_FOR] = ACTIONS(1083), - [anon_sym_Function] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(1083), - [anon_sym_FUNCTION] = ACTIONS(1083), - [anon_sym_If] = ACTIONS(1083), - [anon_sym_if] = ACTIONS(1083), - [anon_sym_IF] = ACTIONS(1083), - [anon_sym_Import] = ACTIONS(1083), - [anon_sym_import] = ACTIONS(1083), - [anon_sym_IMPORT] = ACTIONS(1083), - [anon_sym_Include] = ACTIONS(1083), - [anon_sym_include] = ACTIONS(1083), - [anon_sym_INCLUDE] = ACTIONS(1083), - [anon_sym_Interface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_INTERFACE] = ACTIONS(1083), - [anon_sym_New] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1083), - [anon_sym_NEW] = ACTIONS(1083), - [anon_sym_Package] = ACTIONS(1083), - [anon_sym_package] = ACTIONS(1083), - [anon_sym_PACKAGE] = ACTIONS(1083), - [anon_sym_Private] = ACTIONS(1083), - [anon_sym_private] = ACTIONS(1083), - [anon_sym_PRIVATE] = ACTIONS(1083), - [anon_sym_Property] = ACTIONS(1083), - [anon_sym_property] = ACTIONS(1083), - [anon_sym_PROPERTY] = ACTIONS(1083), - [anon_sym_Public] = ACTIONS(1083), - [anon_sym_public] = ACTIONS(1083), - [anon_sym_PUBLIC] = ACTIONS(1083), - [anon_sym_Remote] = ACTIONS(1083), - [anon_sym_remote] = ACTIONS(1083), - [anon_sym_REMOTE] = ACTIONS(1083), - [anon_sym_Return] = ACTIONS(1083), - [anon_sym_return] = ACTIONS(1083), - [anon_sym_RETURN] = ACTIONS(1083), - [anon_sym_Static] = ACTIONS(1083), - [anon_sym_static] = ACTIONS(1083), - [anon_sym_STATIC] = ACTIONS(1083), - [anon_sym_Switch] = ACTIONS(1083), - [anon_sym_switch] = ACTIONS(1083), - [anon_sym_SWITCH] = ACTIONS(1083), - [anon_sym_Throw] = ACTIONS(1083), - [anon_sym_throw] = ACTIONS(1083), - [anon_sym_THROW] = ACTIONS(1083), - [anon_sym_Try] = ACTIONS(1083), - [anon_sym_try] = ACTIONS(1083), - [anon_sym_TRY] = ACTIONS(1083), - [anon_sym_Var] = ACTIONS(1083), - [anon_sym_var] = ACTIONS(1083), - [anon_sym_VAR] = ACTIONS(1083), - [anon_sym_While] = ACTIONS(1083), - [anon_sym_while] = ACTIONS(1083), - [anon_sym_WHILE] = ACTIONS(1083), - [anon_sym_With] = ACTIONS(1083), - [anon_sym_with] = ACTIONS(1083), - [anon_sym_WITH] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(1710), - [sym_cf_comment] = ACTIONS(1081), - [sym__java_block_open] = ACTIONS(1081), - [sym__static_type_prefix] = ACTIONS(1081), + [sym_identifier] = ACTIONS(2524), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_Query] = ACTIONS(2524), + [anon_sym_query] = ACTIONS(2524), + [anon_sym_QUERY] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2524), + [sym_optional_chain] = ACTIONS(2526), + [sym_static_chain] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_BSLASH] = ACTIONS(2524), + [anon_sym_STAR_STAR] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2526), + [anon_sym_LT_GT] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2526), + [aux_sym_binary_expression_token1] = ACTIONS(2526), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [aux_sym_binary_expression_token2] = ACTIONS(2524), + [aux_sym_binary_expression_token3] = ACTIONS(2524), + [aux_sym_binary_expression_token4] = ACTIONS(2526), + [aux_sym_binary_expression_token5] = ACTIONS(2526), + [aux_sym_binary_expression_token6] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_TILDE] = ACTIONS(2526), + [aux_sym_unary_operator_token1] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2524), + [aux_sym_number_token2] = ACTIONS(2524), + [anon_sym_This] = ACTIONS(2524), + [anon_sym_this] = ACTIONS(2524), + [anon_sym_THIS] = ACTIONS(2524), + [anon_sym_Super] = ACTIONS(2524), + [anon_sym_super] = ACTIONS(2524), + [anon_sym_SUPER] = ACTIONS(2524), + [anon_sym_True] = ACTIONS(2524), + [anon_sym_true] = ACTIONS(2524), + [anon_sym_TRUE] = ACTIONS(2524), + [anon_sym_False] = ACTIONS(2524), + [anon_sym_false] = ACTIONS(2524), + [anon_sym_FALSE] = ACTIONS(2524), + [anon_sym_Null] = ACTIONS(2524), + [anon_sym_null] = ACTIONS(2524), + [anon_sym_NULL] = ACTIONS(2524), + [anon_sym_Undefined] = ACTIONS(2524), + [anon_sym_undefined] = ACTIONS(2524), + [anon_sym_UNDEFINED] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [sym_hash_empty] = ACTIONS(2526), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_QueryExecute] = ACTIONS(2524), + [anon_sym_queryexecute] = ACTIONS(2524), + [anon_sym_QUERYEXECUTE] = ACTIONS(2524), + [anon_sym_queryExecute] = ACTIONS(2524), + [anon_sym_BQUOTE] = ACTIONS(2526), + [anon_sym_Abstract] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_ABSTRACT] = ACTIONS(2524), + [anon_sym_Component] = ACTIONS(2524), + [anon_sym_component] = ACTIONS(2524), + [anon_sym_COMPONENT] = ACTIONS(2524), + [anon_sym_Debugger] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_DEBUGGER] = ACTIONS(2524), + [anon_sym_Final] = ACTIONS(2524), + [anon_sym_final] = ACTIONS(2524), + [anon_sym_FINAL] = ACTIONS(2524), + [anon_sym_Function] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_FUNCTION] = ACTIONS(2524), + [anon_sym_In] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_IN] = ACTIONS(2524), + [anon_sym_Include] = ACTIONS(2524), + [anon_sym_include] = ACTIONS(2524), + [anon_sym_INCLUDE] = ACTIONS(2524), + [anon_sym_InstanceOf] = ACTIONS(2524), + [anon_sym_instanceof] = ACTIONS(2524), + [anon_sym_INSTANCEOF] = ACTIONS(2524), + [anon_sym_instanceOf] = ACTIONS(2524), + [anon_sym_New] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_NEW] = ACTIONS(2524), + [anon_sym_Package] = ACTIONS(2524), + [anon_sym_package] = ACTIONS(2524), + [anon_sym_PACKAGE] = ACTIONS(2524), + [anon_sym_Private] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_PRIVATE] = ACTIONS(2524), + [anon_sym_Public] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_PUBLIC] = ACTIONS(2524), + [anon_sym_Remote] = ACTIONS(2524), + [anon_sym_remote] = ACTIONS(2524), + [anon_sym_REMOTE] = ACTIONS(2524), + [anon_sym_Static] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_STATIC] = ACTIONS(2524), + [sym__ternary_qmark] = ACTIONS(2526), + [sym__elvis_operator] = ACTIONS(2526), + [sym_logical_or] = ACTIONS(2526), + [sym__java_block_open] = ACTIONS(2526), + [sym__static_type_prefix] = ACTIONS(2526), }, [STATE(793)] = { - [ts_builtin_sym_end] = ACTIONS(2660), - [sym_identifier] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_Query] = ACTIONS(2662), - [anon_sym_query] = ACTIONS(2662), - [anon_sym_QUERY] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_SLASH] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2660), - [aux_sym_unary_operator_token1] = ACTIONS(2662), - [anon_sym_PLUS_PLUS] = ACTIONS(2660), - [anon_sym_DASH_DASH] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2662), - [aux_sym_number_token2] = ACTIONS(2660), - [anon_sym_This] = ACTIONS(2662), - [anon_sym_this] = ACTIONS(2662), - [anon_sym_THIS] = ACTIONS(2662), - [anon_sym_Super] = ACTIONS(2662), - [anon_sym_super] = ACTIONS(2662), - [anon_sym_SUPER] = ACTIONS(2662), - [anon_sym_True] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_TRUE] = ACTIONS(2662), - [anon_sym_False] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [anon_sym_FALSE] = ACTIONS(2662), - [anon_sym_Null] = ACTIONS(2662), - [anon_sym_null] = ACTIONS(2662), - [anon_sym_NULL] = ACTIONS(2662), - [anon_sym_Undefined] = ACTIONS(2662), - [anon_sym_undefined] = ACTIONS(2662), - [anon_sym_UNDEFINED] = ACTIONS(2662), - [anon_sym_get] = ACTIONS(2662), - [anon_sym_set] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [sym_hash_empty] = ACTIONS(2660), - [anon_sym_export] = ACTIONS(2662), - [anon_sym_QueryExecute] = ACTIONS(2662), - [anon_sym_queryexecute] = ACTIONS(2662), - [anon_sym_QUERYEXECUTE] = ACTIONS(2662), - [anon_sym_queryExecute] = ACTIONS(2662), - [anon_sym_BQUOTE] = ACTIONS(2662), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2660), - [anon_sym_Abstract] = ACTIONS(2662), - [anon_sym_abstract] = ACTIONS(2662), - [anon_sym_ABSTRACT] = ACTIONS(2662), - [anon_sym_Break] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_BREAK] = ACTIONS(2662), - [anon_sym_Case] = ACTIONS(2662), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_CASE] = ACTIONS(2662), - [anon_sym_Component] = ACTIONS(2662), - [anon_sym_component] = ACTIONS(2662), - [anon_sym_COMPONENT] = ACTIONS(2662), - [anon_sym_Continue] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_CONTINUE] = ACTIONS(2662), - [anon_sym_Debugger] = ACTIONS(2662), - [anon_sym_debugger] = ACTIONS(2662), - [anon_sym_DEBUGGER] = ACTIONS(2662), - [anon_sym_Default] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_DEFAULT] = ACTIONS(2662), - [anon_sym_Do] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_DO] = ACTIONS(2662), - [anon_sym_Final] = ACTIONS(2662), - [anon_sym_final] = ACTIONS(2662), - [anon_sym_FINAL] = ACTIONS(2662), - [anon_sym_For] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_FOR] = ACTIONS(2662), - [anon_sym_Function] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2662), - [anon_sym_FUNCTION] = ACTIONS(2662), - [anon_sym_If] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_IF] = ACTIONS(2662), - [anon_sym_Import] = ACTIONS(2662), - [anon_sym_import] = ACTIONS(2662), - [anon_sym_IMPORT] = ACTIONS(2662), - [anon_sym_Include] = ACTIONS(2662), - [anon_sym_include] = ACTIONS(2662), - [anon_sym_INCLUDE] = ACTIONS(2662), - [anon_sym_Interface] = ACTIONS(2662), - [anon_sym_interface] = ACTIONS(2662), - [anon_sym_INTERFACE] = ACTIONS(2662), - [anon_sym_New] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_NEW] = ACTIONS(2662), - [anon_sym_Package] = ACTIONS(2662), - [anon_sym_package] = ACTIONS(2662), - [anon_sym_PACKAGE] = ACTIONS(2662), - [anon_sym_Private] = ACTIONS(2662), - [anon_sym_private] = ACTIONS(2662), - [anon_sym_PRIVATE] = ACTIONS(2662), - [anon_sym_Property] = ACTIONS(2662), - [anon_sym_property] = ACTIONS(2662), - [anon_sym_PROPERTY] = ACTIONS(2662), - [anon_sym_Public] = ACTIONS(2662), - [anon_sym_public] = ACTIONS(2662), - [anon_sym_PUBLIC] = ACTIONS(2662), - [anon_sym_Remote] = ACTIONS(2662), - [anon_sym_remote] = ACTIONS(2662), - [anon_sym_REMOTE] = ACTIONS(2662), - [anon_sym_Return] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_RETURN] = ACTIONS(2662), - [anon_sym_Static] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_STATIC] = ACTIONS(2662), - [anon_sym_Switch] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_SWITCH] = ACTIONS(2662), - [anon_sym_Throw] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_THROW] = ACTIONS(2662), - [anon_sym_Try] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_TRY] = ACTIONS(2662), - [anon_sym_Var] = ACTIONS(2662), - [anon_sym_var] = ACTIONS(2662), - [anon_sym_VAR] = ACTIONS(2662), - [anon_sym_While] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_WHILE] = ACTIONS(2662), - [anon_sym_With] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2662), - [anon_sym_WITH] = ACTIONS(2662), - [sym__automatic_semicolon] = ACTIONS(3144), - [sym_cf_comment] = ACTIONS(2660), - [sym__java_block_open] = ACTIONS(2660), - [sym__static_type_prefix] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_Query] = ACTIONS(2556), + [anon_sym_query] = ACTIONS(2556), + [anon_sym_QUERY] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2556), + [sym_optional_chain] = ACTIONS(2558), + [sym_static_chain] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_BSLASH] = ACTIONS(2556), + [anon_sym_STAR_STAR] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2558), + [anon_sym_LT_GT] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2558), + [aux_sym_binary_expression_token1] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [aux_sym_binary_expression_token2] = ACTIONS(2556), + [aux_sym_binary_expression_token3] = ACTIONS(2556), + [aux_sym_binary_expression_token4] = ACTIONS(2558), + [aux_sym_binary_expression_token5] = ACTIONS(2558), + [aux_sym_binary_expression_token6] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_TILDE] = ACTIONS(2558), + [aux_sym_unary_operator_token1] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2556), + [aux_sym_number_token2] = ACTIONS(2556), + [anon_sym_This] = ACTIONS(2556), + [anon_sym_this] = ACTIONS(2556), + [anon_sym_THIS] = ACTIONS(2556), + [anon_sym_Super] = ACTIONS(2556), + [anon_sym_super] = ACTIONS(2556), + [anon_sym_SUPER] = ACTIONS(2556), + [anon_sym_True] = ACTIONS(2556), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_TRUE] = ACTIONS(2556), + [anon_sym_False] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_FALSE] = ACTIONS(2556), + [anon_sym_Null] = ACTIONS(2556), + [anon_sym_null] = ACTIONS(2556), + [anon_sym_NULL] = ACTIONS(2556), + [anon_sym_Undefined] = ACTIONS(2556), + [anon_sym_undefined] = ACTIONS(2556), + [anon_sym_UNDEFINED] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [sym_hash_empty] = ACTIONS(2558), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_QueryExecute] = ACTIONS(2556), + [anon_sym_queryexecute] = ACTIONS(2556), + [anon_sym_QUERYEXECUTE] = ACTIONS(2556), + [anon_sym_queryExecute] = ACTIONS(2556), + [anon_sym_BQUOTE] = ACTIONS(2558), + [anon_sym_Abstract] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_ABSTRACT] = ACTIONS(2556), + [anon_sym_Component] = ACTIONS(2556), + [anon_sym_component] = ACTIONS(2556), + [anon_sym_COMPONENT] = ACTIONS(2556), + [anon_sym_Debugger] = ACTIONS(2556), + [anon_sym_debugger] = ACTIONS(2556), + [anon_sym_DEBUGGER] = ACTIONS(2556), + [anon_sym_Final] = ACTIONS(2556), + [anon_sym_final] = ACTIONS(2556), + [anon_sym_FINAL] = ACTIONS(2556), + [anon_sym_Function] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_FUNCTION] = ACTIONS(2556), + [anon_sym_In] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_IN] = ACTIONS(2556), + [anon_sym_Include] = ACTIONS(2556), + [anon_sym_include] = ACTIONS(2556), + [anon_sym_INCLUDE] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2556), + [anon_sym_instanceof] = ACTIONS(2556), + [anon_sym_INSTANCEOF] = ACTIONS(2556), + [anon_sym_instanceOf] = ACTIONS(2556), + [anon_sym_New] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_NEW] = ACTIONS(2556), + [anon_sym_Package] = ACTIONS(2556), + [anon_sym_package] = ACTIONS(2556), + [anon_sym_PACKAGE] = ACTIONS(2556), + [anon_sym_Private] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_PRIVATE] = ACTIONS(2556), + [anon_sym_Public] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_PUBLIC] = ACTIONS(2556), + [anon_sym_Remote] = ACTIONS(2556), + [anon_sym_remote] = ACTIONS(2556), + [anon_sym_REMOTE] = ACTIONS(2556), + [anon_sym_Static] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_STATIC] = ACTIONS(2556), + [sym__ternary_qmark] = ACTIONS(2558), + [sym__elvis_operator] = ACTIONS(2558), + [sym_logical_or] = ACTIONS(2558), + [sym__java_block_open] = ACTIONS(2558), + [sym__static_type_prefix] = ACTIONS(2558), }, [STATE(794)] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_Query] = ACTIONS(2007), - [anon_sym_query] = ACTIONS(2007), - [anon_sym_QUERY] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [aux_sym_unary_operator_token1] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [anon_sym_SQUOTE] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2007), - [aux_sym_number_token2] = ACTIONS(2009), - [anon_sym_This] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(2007), - [anon_sym_THIS] = ACTIONS(2007), - [anon_sym_Super] = ACTIONS(2007), - [anon_sym_super] = ACTIONS(2007), - [anon_sym_SUPER] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [anon_sym_Undefined] = ACTIONS(2007), - [anon_sym_undefined] = ACTIONS(2007), - [anon_sym_UNDEFINED] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [sym_hash_empty] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_QueryExecute] = ACTIONS(2007), - [anon_sym_queryexecute] = ACTIONS(2007), - [anon_sym_QUERYEXECUTE] = ACTIONS(2007), - [anon_sym_queryExecute] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2009), - [anon_sym_Abstract] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_ABSTRACT] = ACTIONS(2007), - [anon_sym_Break] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_BREAK] = ACTIONS(2007), - [anon_sym_Case] = ACTIONS(2007), - [anon_sym_case] = ACTIONS(2007), - [anon_sym_CASE] = ACTIONS(2007), - [anon_sym_Component] = ACTIONS(2007), - [anon_sym_component] = ACTIONS(2007), - [anon_sym_COMPONENT] = ACTIONS(2007), - [anon_sym_Continue] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_CONTINUE] = ACTIONS(2007), - [anon_sym_Debugger] = ACTIONS(2007), - [anon_sym_debugger] = ACTIONS(2007), - [anon_sym_DEBUGGER] = ACTIONS(2007), - [anon_sym_Default] = ACTIONS(2007), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_DEFAULT] = ACTIONS(2007), - [anon_sym_Do] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_DO] = ACTIONS(2007), - [anon_sym_Final] = ACTIONS(2007), - [anon_sym_final] = ACTIONS(2007), - [anon_sym_FINAL] = ACTIONS(2007), - [anon_sym_For] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_FOR] = ACTIONS(2007), - [anon_sym_Function] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_FUNCTION] = ACTIONS(2007), - [anon_sym_If] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_IF] = ACTIONS(2007), - [anon_sym_Import] = ACTIONS(2007), - [anon_sym_import] = ACTIONS(2007), - [anon_sym_IMPORT] = ACTIONS(2007), - [anon_sym_Include] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_INCLUDE] = ACTIONS(2007), - [anon_sym_Interface] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_INTERFACE] = ACTIONS(2007), - [anon_sym_New] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_NEW] = ACTIONS(2007), - [anon_sym_Package] = ACTIONS(2007), - [anon_sym_package] = ACTIONS(2007), - [anon_sym_PACKAGE] = ACTIONS(2007), - [anon_sym_Private] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_PRIVATE] = ACTIONS(2007), - [anon_sym_Property] = ACTIONS(2007), - [anon_sym_property] = ACTIONS(2007), - [anon_sym_PROPERTY] = ACTIONS(2007), - [anon_sym_Public] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_PUBLIC] = ACTIONS(2007), - [anon_sym_Remote] = ACTIONS(2007), - [anon_sym_remote] = ACTIONS(2007), - [anon_sym_REMOTE] = ACTIONS(2007), - [anon_sym_Return] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_RETURN] = ACTIONS(2007), - [anon_sym_Static] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_STATIC] = ACTIONS(2007), - [anon_sym_Switch] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_SWITCH] = ACTIONS(2007), - [anon_sym_Throw] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_THROW] = ACTIONS(2007), - [anon_sym_Try] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_TRY] = ACTIONS(2007), - [anon_sym_Var] = ACTIONS(2007), - [anon_sym_var] = ACTIONS(2007), - [anon_sym_VAR] = ACTIONS(2007), - [anon_sym_While] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_WHILE] = ACTIONS(2007), - [anon_sym_With] = ACTIONS(2007), - [anon_sym_with] = ACTIONS(2007), - [anon_sym_WITH] = ACTIONS(2007), - [sym__automatic_semicolon] = ACTIONS(2009), - [sym_cf_comment] = ACTIONS(2009), - [sym__java_block_open] = ACTIONS(2009), - [sym__static_type_prefix] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_Query] = ACTIONS(2572), + [anon_sym_query] = ACTIONS(2572), + [anon_sym_QUERY] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2572), + [sym_optional_chain] = ACTIONS(2574), + [sym_static_chain] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_BSLASH] = ACTIONS(2572), + [anon_sym_STAR_STAR] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2574), + [anon_sym_LT_GT] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2574), + [aux_sym_binary_expression_token1] = ACTIONS(2574), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [aux_sym_binary_expression_token2] = ACTIONS(2572), + [aux_sym_binary_expression_token3] = ACTIONS(2572), + [aux_sym_binary_expression_token4] = ACTIONS(2574), + [aux_sym_binary_expression_token5] = ACTIONS(2574), + [aux_sym_binary_expression_token6] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_TILDE] = ACTIONS(2574), + [aux_sym_unary_operator_token1] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2572), + [aux_sym_number_token2] = ACTIONS(2572), + [anon_sym_This] = ACTIONS(2572), + [anon_sym_this] = ACTIONS(2572), + [anon_sym_THIS] = ACTIONS(2572), + [anon_sym_Super] = ACTIONS(2572), + [anon_sym_super] = ACTIONS(2572), + [anon_sym_SUPER] = ACTIONS(2572), + [anon_sym_True] = ACTIONS(2572), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_TRUE] = ACTIONS(2572), + [anon_sym_False] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [anon_sym_FALSE] = ACTIONS(2572), + [anon_sym_Null] = ACTIONS(2572), + [anon_sym_null] = ACTIONS(2572), + [anon_sym_NULL] = ACTIONS(2572), + [anon_sym_Undefined] = ACTIONS(2572), + [anon_sym_undefined] = ACTIONS(2572), + [anon_sym_UNDEFINED] = ACTIONS(2572), + [anon_sym_get] = ACTIONS(2572), + [anon_sym_set] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [sym_hash_empty] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2572), + [anon_sym_QueryExecute] = ACTIONS(2572), + [anon_sym_queryexecute] = ACTIONS(2572), + [anon_sym_QUERYEXECUTE] = ACTIONS(2572), + [anon_sym_queryExecute] = ACTIONS(2572), + [anon_sym_BQUOTE] = ACTIONS(2574), + [anon_sym_Abstract] = ACTIONS(2572), + [anon_sym_abstract] = ACTIONS(2572), + [anon_sym_ABSTRACT] = ACTIONS(2572), + [anon_sym_Component] = ACTIONS(2572), + [anon_sym_component] = ACTIONS(2572), + [anon_sym_COMPONENT] = ACTIONS(2572), + [anon_sym_Debugger] = ACTIONS(2572), + [anon_sym_debugger] = ACTIONS(2572), + [anon_sym_DEBUGGER] = ACTIONS(2572), + [anon_sym_Final] = ACTIONS(2572), + [anon_sym_final] = ACTIONS(2572), + [anon_sym_FINAL] = ACTIONS(2572), + [anon_sym_Function] = ACTIONS(2572), + [anon_sym_function] = ACTIONS(2572), + [anon_sym_FUNCTION] = ACTIONS(2572), + [anon_sym_In] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_IN] = ACTIONS(2572), + [anon_sym_Include] = ACTIONS(2572), + [anon_sym_include] = ACTIONS(2572), + [anon_sym_INCLUDE] = ACTIONS(2572), + [anon_sym_InstanceOf] = ACTIONS(2572), + [anon_sym_instanceof] = ACTIONS(2572), + [anon_sym_INSTANCEOF] = ACTIONS(2572), + [anon_sym_instanceOf] = ACTIONS(2572), + [anon_sym_New] = ACTIONS(2572), + [anon_sym_new] = ACTIONS(2572), + [anon_sym_NEW] = ACTIONS(2572), + [anon_sym_Package] = ACTIONS(2572), + [anon_sym_package] = ACTIONS(2572), + [anon_sym_PACKAGE] = ACTIONS(2572), + [anon_sym_Private] = ACTIONS(2572), + [anon_sym_private] = ACTIONS(2572), + [anon_sym_PRIVATE] = ACTIONS(2572), + [anon_sym_Public] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2572), + [anon_sym_PUBLIC] = ACTIONS(2572), + [anon_sym_Remote] = ACTIONS(2572), + [anon_sym_remote] = ACTIONS(2572), + [anon_sym_REMOTE] = ACTIONS(2572), + [anon_sym_Static] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_STATIC] = ACTIONS(2572), + [sym__ternary_qmark] = ACTIONS(2574), + [sym__elvis_operator] = ACTIONS(2574), + [sym_logical_or] = ACTIONS(2574), + [sym__java_block_open] = ACTIONS(2574), + [sym__static_type_prefix] = ACTIONS(2574), }, [STATE(795)] = { - [ts_builtin_sym_end] = ACTIONS(2630), - [sym_identifier] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_Query] = ACTIONS(2632), - [anon_sym_query] = ACTIONS(2632), - [anon_sym_QUERY] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_SLASH] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2630), - [aux_sym_unary_operator_token1] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2630), - [anon_sym_DQUOTE] = ACTIONS(2630), - [anon_sym_SQUOTE] = ACTIONS(2630), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2632), - [aux_sym_number_token2] = ACTIONS(2630), - [anon_sym_This] = ACTIONS(2632), - [anon_sym_this] = ACTIONS(2632), - [anon_sym_THIS] = ACTIONS(2632), - [anon_sym_Super] = ACTIONS(2632), - [anon_sym_super] = ACTIONS(2632), - [anon_sym_SUPER] = ACTIONS(2632), - [anon_sym_True] = ACTIONS(2632), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_TRUE] = ACTIONS(2632), - [anon_sym_False] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_FALSE] = ACTIONS(2632), - [anon_sym_Null] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2632), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_Undefined] = ACTIONS(2632), - [anon_sym_undefined] = ACTIONS(2632), - [anon_sym_UNDEFINED] = ACTIONS(2632), - [anon_sym_get] = ACTIONS(2632), - [anon_sym_set] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(2632), - [sym_hash_empty] = ACTIONS(2630), - [anon_sym_export] = ACTIONS(2632), - [anon_sym_QueryExecute] = ACTIONS(2632), - [anon_sym_queryexecute] = ACTIONS(2632), - [anon_sym_QUERYEXECUTE] = ACTIONS(2632), - [anon_sym_queryExecute] = ACTIONS(2632), - [anon_sym_BQUOTE] = ACTIONS(2632), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2630), - [anon_sym_Abstract] = ACTIONS(2632), - [anon_sym_abstract] = ACTIONS(2632), - [anon_sym_ABSTRACT] = ACTIONS(2632), - [anon_sym_Break] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_BREAK] = ACTIONS(2632), - [anon_sym_Case] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_CASE] = ACTIONS(2632), - [anon_sym_Component] = ACTIONS(2632), - [anon_sym_component] = ACTIONS(2632), - [anon_sym_COMPONENT] = ACTIONS(2632), - [anon_sym_Continue] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_CONTINUE] = ACTIONS(2632), - [anon_sym_Debugger] = ACTIONS(2632), - [anon_sym_debugger] = ACTIONS(2632), - [anon_sym_DEBUGGER] = ACTIONS(2632), - [anon_sym_Default] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_DEFAULT] = ACTIONS(2632), - [anon_sym_Do] = ACTIONS(2632), - [anon_sym_do] = ACTIONS(2632), - [anon_sym_DO] = ACTIONS(2632), - [anon_sym_Final] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_FINAL] = ACTIONS(2632), - [anon_sym_For] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_FOR] = ACTIONS(2632), - [anon_sym_Function] = ACTIONS(2632), - [anon_sym_function] = ACTIONS(2632), - [anon_sym_FUNCTION] = ACTIONS(2632), - [anon_sym_If] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_IF] = ACTIONS(2632), - [anon_sym_Import] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_IMPORT] = ACTIONS(2632), - [anon_sym_Include] = ACTIONS(2632), - [anon_sym_include] = ACTIONS(2632), - [anon_sym_INCLUDE] = ACTIONS(2632), - [anon_sym_Interface] = ACTIONS(2632), - [anon_sym_interface] = ACTIONS(2632), - [anon_sym_INTERFACE] = ACTIONS(2632), - [anon_sym_New] = ACTIONS(2632), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_NEW] = ACTIONS(2632), - [anon_sym_Package] = ACTIONS(2632), - [anon_sym_package] = ACTIONS(2632), - [anon_sym_PACKAGE] = ACTIONS(2632), - [anon_sym_Private] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_PRIVATE] = ACTIONS(2632), - [anon_sym_Property] = ACTIONS(2632), - [anon_sym_property] = ACTIONS(2632), - [anon_sym_PROPERTY] = ACTIONS(2632), - [anon_sym_Public] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_PUBLIC] = ACTIONS(2632), - [anon_sym_Remote] = ACTIONS(2632), - [anon_sym_remote] = ACTIONS(2632), - [anon_sym_REMOTE] = ACTIONS(2632), - [anon_sym_Return] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_RETURN] = ACTIONS(2632), - [anon_sym_Static] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_STATIC] = ACTIONS(2632), - [anon_sym_Switch] = ACTIONS(2632), - [anon_sym_switch] = ACTIONS(2632), - [anon_sym_SWITCH] = ACTIONS(2632), - [anon_sym_Throw] = ACTIONS(2632), - [anon_sym_throw] = ACTIONS(2632), - [anon_sym_THROW] = ACTIONS(2632), - [anon_sym_Try] = ACTIONS(2632), - [anon_sym_try] = ACTIONS(2632), - [anon_sym_TRY] = ACTIONS(2632), - [anon_sym_Var] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [anon_sym_VAR] = ACTIONS(2632), - [anon_sym_While] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_WHILE] = ACTIONS(2632), - [anon_sym_With] = ACTIONS(2632), - [anon_sym_with] = ACTIONS(2632), - [anon_sym_WITH] = ACTIONS(2632), - [sym__automatic_semicolon] = ACTIONS(3146), - [sym_cf_comment] = ACTIONS(2630), - [sym__java_block_open] = ACTIONS(2630), - [sym__static_type_prefix] = ACTIONS(2630), + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2630), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_Query] = ACTIONS(2630), + [anon_sym_query] = ACTIONS(2630), + [anon_sym_QUERY] = ACTIONS(2630), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_SLASH] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2628), + [aux_sym_unary_operator_token1] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2628), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2630), + [aux_sym_number_token2] = ACTIONS(2628), + [anon_sym_This] = ACTIONS(2630), + [anon_sym_this] = ACTIONS(2630), + [anon_sym_THIS] = ACTIONS(2630), + [anon_sym_Super] = ACTIONS(2630), + [anon_sym_super] = ACTIONS(2630), + [anon_sym_SUPER] = ACTIONS(2630), + [anon_sym_True] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2630), + [anon_sym_TRUE] = ACTIONS(2630), + [anon_sym_False] = ACTIONS(2630), + [anon_sym_false] = ACTIONS(2630), + [anon_sym_FALSE] = ACTIONS(2630), + [anon_sym_Null] = ACTIONS(2630), + [anon_sym_null] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2630), + [anon_sym_Undefined] = ACTIONS(2630), + [anon_sym_undefined] = ACTIONS(2630), + [anon_sym_UNDEFINED] = ACTIONS(2630), + [anon_sym_get] = ACTIONS(2630), + [anon_sym_set] = ACTIONS(2630), + [anon_sym_POUND] = ACTIONS(2630), + [sym_hash_empty] = ACTIONS(2628), + [anon_sym_export] = ACTIONS(2630), + [anon_sym_QueryExecute] = ACTIONS(2630), + [anon_sym_queryexecute] = ACTIONS(2630), + [anon_sym_QUERYEXECUTE] = ACTIONS(2630), + [anon_sym_queryExecute] = ACTIONS(2630), + [anon_sym_BQUOTE] = ACTIONS(2630), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2628), + [anon_sym_Abstract] = ACTIONS(2630), + [anon_sym_abstract] = ACTIONS(2630), + [anon_sym_ABSTRACT] = ACTIONS(2630), + [anon_sym_Break] = ACTIONS(2630), + [anon_sym_break] = ACTIONS(2630), + [anon_sym_BREAK] = ACTIONS(2630), + [anon_sym_Case] = ACTIONS(2630), + [anon_sym_case] = ACTIONS(2630), + [anon_sym_CASE] = ACTIONS(2630), + [anon_sym_Component] = ACTIONS(2630), + [anon_sym_component] = ACTIONS(2630), + [anon_sym_COMPONENT] = ACTIONS(2630), + [anon_sym_Continue] = ACTIONS(2630), + [anon_sym_continue] = ACTIONS(2630), + [anon_sym_CONTINUE] = ACTIONS(2630), + [anon_sym_Debugger] = ACTIONS(2630), + [anon_sym_debugger] = ACTIONS(2630), + [anon_sym_DEBUGGER] = ACTIONS(2630), + [anon_sym_Default] = ACTIONS(2630), + [anon_sym_default] = ACTIONS(2630), + [anon_sym_DEFAULT] = ACTIONS(2630), + [anon_sym_Do] = ACTIONS(2630), + [anon_sym_do] = ACTIONS(2630), + [anon_sym_DO] = ACTIONS(2630), + [anon_sym_Final] = ACTIONS(2630), + [anon_sym_final] = ACTIONS(2630), + [anon_sym_FINAL] = ACTIONS(2630), + [anon_sym_For] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2630), + [anon_sym_FOR] = ACTIONS(2630), + [anon_sym_Function] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2630), + [anon_sym_FUNCTION] = ACTIONS(2630), + [anon_sym_If] = ACTIONS(2630), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_IF] = ACTIONS(2630), + [anon_sym_Import] = ACTIONS(2630), + [anon_sym_import] = ACTIONS(2630), + [anon_sym_IMPORT] = ACTIONS(2630), + [anon_sym_Include] = ACTIONS(2630), + [anon_sym_include] = ACTIONS(2630), + [anon_sym_INCLUDE] = ACTIONS(2630), + [anon_sym_Interface] = ACTIONS(2630), + [anon_sym_interface] = ACTIONS(2630), + [anon_sym_INTERFACE] = ACTIONS(2630), + [anon_sym_New] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2630), + [anon_sym_NEW] = ACTIONS(2630), + [anon_sym_Package] = ACTIONS(2630), + [anon_sym_package] = ACTIONS(2630), + [anon_sym_PACKAGE] = ACTIONS(2630), + [anon_sym_Private] = ACTIONS(2630), + [anon_sym_private] = ACTIONS(2630), + [anon_sym_PRIVATE] = ACTIONS(2630), + [anon_sym_Property] = ACTIONS(2630), + [anon_sym_property] = ACTIONS(2630), + [anon_sym_PROPERTY] = ACTIONS(2630), + [anon_sym_Public] = ACTIONS(2630), + [anon_sym_public] = ACTIONS(2630), + [anon_sym_PUBLIC] = ACTIONS(2630), + [anon_sym_Remote] = ACTIONS(2630), + [anon_sym_remote] = ACTIONS(2630), + [anon_sym_REMOTE] = ACTIONS(2630), + [anon_sym_Return] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2630), + [anon_sym_RETURN] = ACTIONS(2630), + [anon_sym_Static] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(2630), + [anon_sym_STATIC] = ACTIONS(2630), + [anon_sym_Switch] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2630), + [anon_sym_SWITCH] = ACTIONS(2630), + [anon_sym_Throw] = ACTIONS(2630), + [anon_sym_throw] = ACTIONS(2630), + [anon_sym_THROW] = ACTIONS(2630), + [anon_sym_Try] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2630), + [anon_sym_TRY] = ACTIONS(2630), + [anon_sym_Var] = ACTIONS(2630), + [anon_sym_var] = ACTIONS(2630), + [anon_sym_VAR] = ACTIONS(2630), + [anon_sym_While] = ACTIONS(2630), + [anon_sym_while] = ACTIONS(2630), + [anon_sym_WHILE] = ACTIONS(2630), + [anon_sym_With] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2630), + [anon_sym_WITH] = ACTIONS(2630), + [sym__automatic_semicolon] = ACTIONS(3148), + [sym_cf_comment] = ACTIONS(2628), + [sym__java_block_open] = ACTIONS(2628), + [sym__static_type_prefix] = ACTIONS(2628), }, [STATE(796)] = { - [ts_builtin_sym_end] = ACTIONS(2672), - [sym_identifier] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2672), - [anon_sym_Query] = ACTIONS(2674), - [anon_sym_query] = ACTIONS(2674), - [anon_sym_QUERY] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [aux_sym_unary_operator_token1] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2674), - [aux_sym_number_token2] = ACTIONS(2672), - [anon_sym_This] = ACTIONS(2674), - [anon_sym_this] = ACTIONS(2674), - [anon_sym_THIS] = ACTIONS(2674), - [anon_sym_Super] = ACTIONS(2674), - [anon_sym_super] = ACTIONS(2674), - [anon_sym_SUPER] = ACTIONS(2674), - [anon_sym_True] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_TRUE] = ACTIONS(2674), - [anon_sym_False] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_FALSE] = ACTIONS(2674), - [anon_sym_Null] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2674), - [anon_sym_NULL] = ACTIONS(2674), - [anon_sym_Undefined] = ACTIONS(2674), - [anon_sym_undefined] = ACTIONS(2674), - [anon_sym_UNDEFINED] = ACTIONS(2674), - [anon_sym_get] = ACTIONS(2674), - [anon_sym_set] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2674), - [sym_hash_empty] = ACTIONS(2672), - [anon_sym_export] = ACTIONS(2674), - [anon_sym_QueryExecute] = ACTIONS(2674), - [anon_sym_queryexecute] = ACTIONS(2674), - [anon_sym_QUERYEXECUTE] = ACTIONS(2674), - [anon_sym_queryExecute] = ACTIONS(2674), - [anon_sym_BQUOTE] = ACTIONS(2674), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2672), - [anon_sym_Abstract] = ACTIONS(2674), - [anon_sym_abstract] = ACTIONS(2674), - [anon_sym_ABSTRACT] = ACTIONS(2674), - [anon_sym_Break] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_BREAK] = ACTIONS(2674), - [anon_sym_Case] = ACTIONS(2674), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_CASE] = ACTIONS(2674), - [anon_sym_Component] = ACTIONS(2674), - [anon_sym_component] = ACTIONS(2674), - [anon_sym_COMPONENT] = ACTIONS(2674), - [anon_sym_Continue] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_CONTINUE] = ACTIONS(2674), - [anon_sym_Debugger] = ACTIONS(2674), - [anon_sym_debugger] = ACTIONS(2674), - [anon_sym_DEBUGGER] = ACTIONS(2674), - [anon_sym_Default] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_DEFAULT] = ACTIONS(2674), - [anon_sym_Do] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_DO] = ACTIONS(2674), - [anon_sym_Final] = ACTIONS(2674), - [anon_sym_final] = ACTIONS(2674), - [anon_sym_FINAL] = ACTIONS(2674), - [anon_sym_For] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_FOR] = ACTIONS(2674), - [anon_sym_Function] = ACTIONS(2674), - [anon_sym_function] = ACTIONS(2674), - [anon_sym_FUNCTION] = ACTIONS(2674), - [anon_sym_If] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_IF] = ACTIONS(2674), - [anon_sym_Import] = ACTIONS(2674), - [anon_sym_import] = ACTIONS(2674), - [anon_sym_IMPORT] = ACTIONS(2674), - [anon_sym_Include] = ACTIONS(2674), - [anon_sym_include] = ACTIONS(2674), - [anon_sym_INCLUDE] = ACTIONS(2674), - [anon_sym_Interface] = ACTIONS(2674), - [anon_sym_interface] = ACTIONS(2674), - [anon_sym_INTERFACE] = ACTIONS(2674), - [anon_sym_New] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_NEW] = ACTIONS(2674), - [anon_sym_Package] = ACTIONS(2674), - [anon_sym_package] = ACTIONS(2674), - [anon_sym_PACKAGE] = ACTIONS(2674), - [anon_sym_Private] = ACTIONS(2674), - [anon_sym_private] = ACTIONS(2674), - [anon_sym_PRIVATE] = ACTIONS(2674), - [anon_sym_Property] = ACTIONS(2674), - [anon_sym_property] = ACTIONS(2674), - [anon_sym_PROPERTY] = ACTIONS(2674), - [anon_sym_Public] = ACTIONS(2674), - [anon_sym_public] = ACTIONS(2674), - [anon_sym_PUBLIC] = ACTIONS(2674), - [anon_sym_Remote] = ACTIONS(2674), - [anon_sym_remote] = ACTIONS(2674), - [anon_sym_REMOTE] = ACTIONS(2674), - [anon_sym_Return] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_RETURN] = ACTIONS(2674), - [anon_sym_Static] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_STATIC] = ACTIONS(2674), - [anon_sym_Switch] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_SWITCH] = ACTIONS(2674), - [anon_sym_Throw] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_THROW] = ACTIONS(2674), - [anon_sym_Try] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_TRY] = ACTIONS(2674), - [anon_sym_Var] = ACTIONS(2674), - [anon_sym_var] = ACTIONS(2674), - [anon_sym_VAR] = ACTIONS(2674), - [anon_sym_While] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_WHILE] = ACTIONS(2674), - [anon_sym_With] = ACTIONS(2674), - [anon_sym_with] = ACTIONS(2674), - [anon_sym_WITH] = ACTIONS(2674), - [sym__automatic_semicolon] = ACTIONS(3148), - [sym_cf_comment] = ACTIONS(2672), - [sym__java_block_open] = ACTIONS(2672), - [sym__static_type_prefix] = ACTIONS(2672), + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_LPAREN] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym_Query] = ACTIONS(2636), + [anon_sym_query] = ACTIONS(2636), + [anon_sym_QUERY] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_SLASH] = ACTIONS(2636), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [aux_sym_unary_operator_token1] = ACTIONS(2636), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2636), + [aux_sym_number_token2] = ACTIONS(2634), + [anon_sym_This] = ACTIONS(2636), + [anon_sym_this] = ACTIONS(2636), + [anon_sym_THIS] = ACTIONS(2636), + [anon_sym_Super] = ACTIONS(2636), + [anon_sym_super] = ACTIONS(2636), + [anon_sym_SUPER] = ACTIONS(2636), + [anon_sym_True] = ACTIONS(2636), + [anon_sym_true] = ACTIONS(2636), + [anon_sym_TRUE] = ACTIONS(2636), + [anon_sym_False] = ACTIONS(2636), + [anon_sym_false] = ACTIONS(2636), + [anon_sym_FALSE] = ACTIONS(2636), + [anon_sym_Null] = ACTIONS(2636), + [anon_sym_null] = ACTIONS(2636), + [anon_sym_NULL] = ACTIONS(2636), + [anon_sym_Undefined] = ACTIONS(2636), + [anon_sym_undefined] = ACTIONS(2636), + [anon_sym_UNDEFINED] = ACTIONS(2636), + [anon_sym_get] = ACTIONS(2636), + [anon_sym_set] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [sym_hash_empty] = ACTIONS(2634), + [anon_sym_export] = ACTIONS(2636), + [anon_sym_QueryExecute] = ACTIONS(2636), + [anon_sym_queryexecute] = ACTIONS(2636), + [anon_sym_QUERYEXECUTE] = ACTIONS(2636), + [anon_sym_queryExecute] = ACTIONS(2636), + [anon_sym_BQUOTE] = ACTIONS(2636), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2634), + [anon_sym_Abstract] = ACTIONS(2636), + [anon_sym_abstract] = ACTIONS(2636), + [anon_sym_ABSTRACT] = ACTIONS(2636), + [anon_sym_Break] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_BREAK] = ACTIONS(2636), + [anon_sym_Case] = ACTIONS(2636), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_CASE] = ACTIONS(2636), + [anon_sym_Component] = ACTIONS(2636), + [anon_sym_component] = ACTIONS(2636), + [anon_sym_COMPONENT] = ACTIONS(2636), + [anon_sym_Continue] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_CONTINUE] = ACTIONS(2636), + [anon_sym_Debugger] = ACTIONS(2636), + [anon_sym_debugger] = ACTIONS(2636), + [anon_sym_DEBUGGER] = ACTIONS(2636), + [anon_sym_Default] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_DEFAULT] = ACTIONS(2636), + [anon_sym_Do] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_DO] = ACTIONS(2636), + [anon_sym_Final] = ACTIONS(2636), + [anon_sym_final] = ACTIONS(2636), + [anon_sym_FINAL] = ACTIONS(2636), + [anon_sym_For] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_FOR] = ACTIONS(2636), + [anon_sym_Function] = ACTIONS(2636), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_FUNCTION] = ACTIONS(2636), + [anon_sym_If] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_IF] = ACTIONS(2636), + [anon_sym_Import] = ACTIONS(2636), + [anon_sym_import] = ACTIONS(2636), + [anon_sym_IMPORT] = ACTIONS(2636), + [anon_sym_Include] = ACTIONS(2636), + [anon_sym_include] = ACTIONS(2636), + [anon_sym_INCLUDE] = ACTIONS(2636), + [anon_sym_Interface] = ACTIONS(2636), + [anon_sym_interface] = ACTIONS(2636), + [anon_sym_INTERFACE] = ACTIONS(2636), + [anon_sym_New] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_NEW] = ACTIONS(2636), + [anon_sym_Package] = ACTIONS(2636), + [anon_sym_package] = ACTIONS(2636), + [anon_sym_PACKAGE] = ACTIONS(2636), + [anon_sym_Private] = ACTIONS(2636), + [anon_sym_private] = ACTIONS(2636), + [anon_sym_PRIVATE] = ACTIONS(2636), + [anon_sym_Property] = ACTIONS(2636), + [anon_sym_property] = ACTIONS(2636), + [anon_sym_PROPERTY] = ACTIONS(2636), + [anon_sym_Public] = ACTIONS(2636), + [anon_sym_public] = ACTIONS(2636), + [anon_sym_PUBLIC] = ACTIONS(2636), + [anon_sym_Remote] = ACTIONS(2636), + [anon_sym_remote] = ACTIONS(2636), + [anon_sym_REMOTE] = ACTIONS(2636), + [anon_sym_Return] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_RETURN] = ACTIONS(2636), + [anon_sym_Static] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_STATIC] = ACTIONS(2636), + [anon_sym_Switch] = ACTIONS(2636), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_SWITCH] = ACTIONS(2636), + [anon_sym_Throw] = ACTIONS(2636), + [anon_sym_throw] = ACTIONS(2636), + [anon_sym_THROW] = ACTIONS(2636), + [anon_sym_Try] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_TRY] = ACTIONS(2636), + [anon_sym_Var] = ACTIONS(2636), + [anon_sym_var] = ACTIONS(2636), + [anon_sym_VAR] = ACTIONS(2636), + [anon_sym_While] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_WHILE] = ACTIONS(2636), + [anon_sym_With] = ACTIONS(2636), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_WITH] = ACTIONS(2636), + [sym__automatic_semicolon] = ACTIONS(3150), + [sym_cf_comment] = ACTIONS(2634), + [sym__java_block_open] = ACTIONS(2634), + [sym__static_type_prefix] = ACTIONS(2634), }, [STATE(797)] = { - [ts_builtin_sym_end] = ACTIONS(2636), - [sym_identifier] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_Query] = ACTIONS(2638), - [anon_sym_query] = ACTIONS(2638), - [anon_sym_QUERY] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2636), - [aux_sym_unary_operator_token1] = ACTIONS(2638), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2638), - [aux_sym_number_token2] = ACTIONS(2636), - [anon_sym_This] = ACTIONS(2638), - [anon_sym_this] = ACTIONS(2638), - [anon_sym_THIS] = ACTIONS(2638), - [anon_sym_Super] = ACTIONS(2638), - [anon_sym_super] = ACTIONS(2638), - [anon_sym_SUPER] = ACTIONS(2638), - [anon_sym_True] = ACTIONS(2638), - [anon_sym_true] = ACTIONS(2638), - [anon_sym_TRUE] = ACTIONS(2638), - [anon_sym_False] = ACTIONS(2638), - [anon_sym_false] = ACTIONS(2638), - [anon_sym_FALSE] = ACTIONS(2638), - [anon_sym_Null] = ACTIONS(2638), - [anon_sym_null] = ACTIONS(2638), - [anon_sym_NULL] = ACTIONS(2638), - [anon_sym_Undefined] = ACTIONS(2638), - [anon_sym_undefined] = ACTIONS(2638), - [anon_sym_UNDEFINED] = ACTIONS(2638), - [anon_sym_get] = ACTIONS(2638), - [anon_sym_set] = ACTIONS(2638), - [anon_sym_POUND] = ACTIONS(2638), - [sym_hash_empty] = ACTIONS(2636), - [anon_sym_export] = ACTIONS(2638), - [anon_sym_QueryExecute] = ACTIONS(2638), - [anon_sym_queryexecute] = ACTIONS(2638), - [anon_sym_QUERYEXECUTE] = ACTIONS(2638), - [anon_sym_queryExecute] = ACTIONS(2638), - [anon_sym_BQUOTE] = ACTIONS(2638), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2636), - [anon_sym_Abstract] = ACTIONS(2638), - [anon_sym_abstract] = ACTIONS(2638), - [anon_sym_ABSTRACT] = ACTIONS(2638), - [anon_sym_Break] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_BREAK] = ACTIONS(2638), - [anon_sym_Case] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_CASE] = ACTIONS(2638), - [anon_sym_Component] = ACTIONS(2638), - [anon_sym_component] = ACTIONS(2638), - [anon_sym_COMPONENT] = ACTIONS(2638), - [anon_sym_Continue] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_CONTINUE] = ACTIONS(2638), - [anon_sym_Debugger] = ACTIONS(2638), - [anon_sym_debugger] = ACTIONS(2638), - [anon_sym_DEBUGGER] = ACTIONS(2638), - [anon_sym_Default] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_DEFAULT] = ACTIONS(2638), - [anon_sym_Do] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_DO] = ACTIONS(2638), - [anon_sym_Final] = ACTIONS(2638), - [anon_sym_final] = ACTIONS(2638), - [anon_sym_FINAL] = ACTIONS(2638), - [anon_sym_For] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_FOR] = ACTIONS(2638), - [anon_sym_Function] = ACTIONS(2638), - [anon_sym_function] = ACTIONS(2638), - [anon_sym_FUNCTION] = ACTIONS(2638), - [anon_sym_If] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_IF] = ACTIONS(2638), - [anon_sym_Import] = ACTIONS(2638), - [anon_sym_import] = ACTIONS(2638), - [anon_sym_IMPORT] = ACTIONS(2638), - [anon_sym_Include] = ACTIONS(2638), - [anon_sym_include] = ACTIONS(2638), - [anon_sym_INCLUDE] = ACTIONS(2638), - [anon_sym_Interface] = ACTIONS(2638), - [anon_sym_interface] = ACTIONS(2638), - [anon_sym_INTERFACE] = ACTIONS(2638), - [anon_sym_New] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_NEW] = ACTIONS(2638), - [anon_sym_Package] = ACTIONS(2638), - [anon_sym_package] = ACTIONS(2638), - [anon_sym_PACKAGE] = ACTIONS(2638), - [anon_sym_Private] = ACTIONS(2638), - [anon_sym_private] = ACTIONS(2638), - [anon_sym_PRIVATE] = ACTIONS(2638), - [anon_sym_Property] = ACTIONS(2638), - [anon_sym_property] = ACTIONS(2638), - [anon_sym_PROPERTY] = ACTIONS(2638), - [anon_sym_Public] = ACTIONS(2638), - [anon_sym_public] = ACTIONS(2638), - [anon_sym_PUBLIC] = ACTIONS(2638), - [anon_sym_Remote] = ACTIONS(2638), - [anon_sym_remote] = ACTIONS(2638), - [anon_sym_REMOTE] = ACTIONS(2638), - [anon_sym_Return] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_RETURN] = ACTIONS(2638), - [anon_sym_Static] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_STATIC] = ACTIONS(2638), - [anon_sym_Switch] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_SWITCH] = ACTIONS(2638), - [anon_sym_Throw] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_THROW] = ACTIONS(2638), - [anon_sym_Try] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_TRY] = ACTIONS(2638), - [anon_sym_Var] = ACTIONS(2638), - [anon_sym_var] = ACTIONS(2638), - [anon_sym_VAR] = ACTIONS(2638), - [anon_sym_While] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_WHILE] = ACTIONS(2638), - [anon_sym_With] = ACTIONS(2638), - [anon_sym_with] = ACTIONS(2638), - [anon_sym_WITH] = ACTIONS(2638), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_cf_comment] = ACTIONS(2636), - [sym__java_block_open] = ACTIONS(2636), - [sym__static_type_prefix] = ACTIONS(2636), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_let] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_Query] = ACTIONS(2616), + [anon_sym_query] = ACTIONS(2616), + [anon_sym_QUERY] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_TILDE] = ACTIONS(2614), + [aux_sym_unary_operator_token1] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_DQUOTE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2614), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2616), + [aux_sym_number_token2] = ACTIONS(2614), + [anon_sym_This] = ACTIONS(2616), + [anon_sym_this] = ACTIONS(2616), + [anon_sym_THIS] = ACTIONS(2616), + [anon_sym_Super] = ACTIONS(2616), + [anon_sym_super] = ACTIONS(2616), + [anon_sym_SUPER] = ACTIONS(2616), + [anon_sym_True] = ACTIONS(2616), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_TRUE] = ACTIONS(2616), + [anon_sym_False] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [anon_sym_FALSE] = ACTIONS(2616), + [anon_sym_Null] = ACTIONS(2616), + [anon_sym_null] = ACTIONS(2616), + [anon_sym_NULL] = ACTIONS(2616), + [anon_sym_Undefined] = ACTIONS(2616), + [anon_sym_undefined] = ACTIONS(2616), + [anon_sym_UNDEFINED] = ACTIONS(2616), + [anon_sym_get] = ACTIONS(2616), + [anon_sym_set] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [sym_hash_empty] = ACTIONS(2614), + [anon_sym_export] = ACTIONS(2616), + [anon_sym_QueryExecute] = ACTIONS(2616), + [anon_sym_queryexecute] = ACTIONS(2616), + [anon_sym_QUERYEXECUTE] = ACTIONS(2616), + [anon_sym_queryExecute] = ACTIONS(2616), + [anon_sym_BQUOTE] = ACTIONS(2616), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2614), + [anon_sym_Abstract] = ACTIONS(2616), + [anon_sym_abstract] = ACTIONS(2616), + [anon_sym_ABSTRACT] = ACTIONS(2616), + [anon_sym_Break] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_BREAK] = ACTIONS(2616), + [anon_sym_Case] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_CASE] = ACTIONS(2616), + [anon_sym_Component] = ACTIONS(2616), + [anon_sym_component] = ACTIONS(2616), + [anon_sym_COMPONENT] = ACTIONS(2616), + [anon_sym_Continue] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_CONTINUE] = ACTIONS(2616), + [anon_sym_Debugger] = ACTIONS(2616), + [anon_sym_debugger] = ACTIONS(2616), + [anon_sym_DEBUGGER] = ACTIONS(2616), + [anon_sym_Default] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_DEFAULT] = ACTIONS(2616), + [anon_sym_Do] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_DO] = ACTIONS(2616), + [anon_sym_Final] = ACTIONS(2616), + [anon_sym_final] = ACTIONS(2616), + [anon_sym_FINAL] = ACTIONS(2616), + [anon_sym_For] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_FOR] = ACTIONS(2616), + [anon_sym_Function] = ACTIONS(2616), + [anon_sym_function] = ACTIONS(2616), + [anon_sym_FUNCTION] = ACTIONS(2616), + [anon_sym_If] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_IF] = ACTIONS(2616), + [anon_sym_Import] = ACTIONS(2616), + [anon_sym_import] = ACTIONS(2616), + [anon_sym_IMPORT] = ACTIONS(2616), + [anon_sym_Include] = ACTIONS(2616), + [anon_sym_include] = ACTIONS(2616), + [anon_sym_INCLUDE] = ACTIONS(2616), + [anon_sym_Interface] = ACTIONS(2616), + [anon_sym_interface] = ACTIONS(2616), + [anon_sym_INTERFACE] = ACTIONS(2616), + [anon_sym_New] = ACTIONS(2616), + [anon_sym_new] = ACTIONS(2616), + [anon_sym_NEW] = ACTIONS(2616), + [anon_sym_Package] = ACTIONS(2616), + [anon_sym_package] = ACTIONS(2616), + [anon_sym_PACKAGE] = ACTIONS(2616), + [anon_sym_Private] = ACTIONS(2616), + [anon_sym_private] = ACTIONS(2616), + [anon_sym_PRIVATE] = ACTIONS(2616), + [anon_sym_Property] = ACTIONS(2616), + [anon_sym_property] = ACTIONS(2616), + [anon_sym_PROPERTY] = ACTIONS(2616), + [anon_sym_Public] = ACTIONS(2616), + [anon_sym_public] = ACTIONS(2616), + [anon_sym_PUBLIC] = ACTIONS(2616), + [anon_sym_Remote] = ACTIONS(2616), + [anon_sym_remote] = ACTIONS(2616), + [anon_sym_REMOTE] = ACTIONS(2616), + [anon_sym_Return] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_RETURN] = ACTIONS(2616), + [anon_sym_Static] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_STATIC] = ACTIONS(2616), + [anon_sym_Switch] = ACTIONS(2616), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_SWITCH] = ACTIONS(2616), + [anon_sym_Throw] = ACTIONS(2616), + [anon_sym_throw] = ACTIONS(2616), + [anon_sym_THROW] = ACTIONS(2616), + [anon_sym_Try] = ACTIONS(2616), + [anon_sym_try] = ACTIONS(2616), + [anon_sym_TRY] = ACTIONS(2616), + [anon_sym_Var] = ACTIONS(2616), + [anon_sym_var] = ACTIONS(2616), + [anon_sym_VAR] = ACTIONS(2616), + [anon_sym_While] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_WHILE] = ACTIONS(2616), + [anon_sym_With] = ACTIONS(2616), + [anon_sym_with] = ACTIONS(2616), + [anon_sym_WITH] = ACTIONS(2616), + [sym__automatic_semicolon] = ACTIONS(3152), + [sym_cf_comment] = ACTIONS(2614), + [sym__java_block_open] = ACTIONS(2614), + [sym__static_type_prefix] = ACTIONS(2614), }, [STATE(798)] = { - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_let] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_Query] = ACTIONS(2668), - [anon_sym_query] = ACTIONS(2668), - [anon_sym_QUERY] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [aux_sym_unary_operator_token1] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2668), - [aux_sym_number_token2] = ACTIONS(2666), - [anon_sym_This] = ACTIONS(2668), - [anon_sym_this] = ACTIONS(2668), - [anon_sym_THIS] = ACTIONS(2668), - [anon_sym_Super] = ACTIONS(2668), - [anon_sym_super] = ACTIONS(2668), - [anon_sym_SUPER] = ACTIONS(2668), - [anon_sym_True] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2668), - [anon_sym_TRUE] = ACTIONS(2668), - [anon_sym_False] = ACTIONS(2668), - [anon_sym_false] = ACTIONS(2668), - [anon_sym_FALSE] = ACTIONS(2668), - [anon_sym_Null] = ACTIONS(2668), - [anon_sym_null] = ACTIONS(2668), - [anon_sym_NULL] = ACTIONS(2668), - [anon_sym_Undefined] = ACTIONS(2668), - [anon_sym_undefined] = ACTIONS(2668), - [anon_sym_UNDEFINED] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(2668), - [sym_hash_empty] = ACTIONS(2666), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_QueryExecute] = ACTIONS(2668), - [anon_sym_queryexecute] = ACTIONS(2668), - [anon_sym_QUERYEXECUTE] = ACTIONS(2668), - [anon_sym_queryExecute] = ACTIONS(2668), - [anon_sym_BQUOTE] = ACTIONS(2668), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2666), - [anon_sym_Abstract] = ACTIONS(2668), - [anon_sym_abstract] = ACTIONS(2668), - [anon_sym_ABSTRACT] = ACTIONS(2668), - [anon_sym_Break] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_BREAK] = ACTIONS(2668), - [anon_sym_Case] = ACTIONS(2668), - [anon_sym_case] = ACTIONS(2668), - [anon_sym_CASE] = ACTIONS(2668), - [anon_sym_Component] = ACTIONS(2668), - [anon_sym_component] = ACTIONS(2668), - [anon_sym_COMPONENT] = ACTIONS(2668), - [anon_sym_Continue] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_CONTINUE] = ACTIONS(2668), - [anon_sym_Debugger] = ACTIONS(2668), - [anon_sym_debugger] = ACTIONS(2668), - [anon_sym_DEBUGGER] = ACTIONS(2668), - [anon_sym_Default] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_DEFAULT] = ACTIONS(2668), - [anon_sym_Do] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_DO] = ACTIONS(2668), - [anon_sym_Final] = ACTIONS(2668), - [anon_sym_final] = ACTIONS(2668), - [anon_sym_FINAL] = ACTIONS(2668), - [anon_sym_For] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_FOR] = ACTIONS(2668), - [anon_sym_Function] = ACTIONS(2668), - [anon_sym_function] = ACTIONS(2668), - [anon_sym_FUNCTION] = ACTIONS(2668), - [anon_sym_If] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_IF] = ACTIONS(2668), - [anon_sym_Import] = ACTIONS(2668), - [anon_sym_import] = ACTIONS(2668), - [anon_sym_IMPORT] = ACTIONS(2668), - [anon_sym_Include] = ACTIONS(2668), - [anon_sym_include] = ACTIONS(2668), - [anon_sym_INCLUDE] = ACTIONS(2668), - [anon_sym_Interface] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_INTERFACE] = ACTIONS(2668), - [anon_sym_New] = ACTIONS(2668), - [anon_sym_new] = ACTIONS(2668), - [anon_sym_NEW] = ACTIONS(2668), - [anon_sym_Package] = ACTIONS(2668), - [anon_sym_package] = ACTIONS(2668), - [anon_sym_PACKAGE] = ACTIONS(2668), - [anon_sym_Private] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_PRIVATE] = ACTIONS(2668), - [anon_sym_Property] = ACTIONS(2668), - [anon_sym_property] = ACTIONS(2668), - [anon_sym_PROPERTY] = ACTIONS(2668), - [anon_sym_Public] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_PUBLIC] = ACTIONS(2668), - [anon_sym_Remote] = ACTIONS(2668), - [anon_sym_remote] = ACTIONS(2668), - [anon_sym_REMOTE] = ACTIONS(2668), - [anon_sym_Return] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_RETURN] = ACTIONS(2668), - [anon_sym_Static] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_STATIC] = ACTIONS(2668), - [anon_sym_Switch] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_SWITCH] = ACTIONS(2668), - [anon_sym_Throw] = ACTIONS(2668), - [anon_sym_throw] = ACTIONS(2668), - [anon_sym_THROW] = ACTIONS(2668), - [anon_sym_Try] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2668), - [anon_sym_TRY] = ACTIONS(2668), - [anon_sym_Var] = ACTIONS(2668), - [anon_sym_var] = ACTIONS(2668), - [anon_sym_VAR] = ACTIONS(2668), - [anon_sym_While] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_WHILE] = ACTIONS(2668), - [anon_sym_With] = ACTIONS(2668), - [anon_sym_with] = ACTIONS(2668), - [anon_sym_WITH] = ACTIONS(2668), - [sym__automatic_semicolon] = ACTIONS(3152), - [sym_cf_comment] = ACTIONS(2666), - [sym__java_block_open] = ACTIONS(2666), - [sym__static_type_prefix] = ACTIONS(2666), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_Query] = ACTIONS(2694), + [anon_sym_query] = ACTIONS(2694), + [anon_sym_QUERY] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2692), + [aux_sym_unary_operator_token1] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2694), + [aux_sym_number_token2] = ACTIONS(2692), + [anon_sym_This] = ACTIONS(2694), + [anon_sym_this] = ACTIONS(2694), + [anon_sym_THIS] = ACTIONS(2694), + [anon_sym_Super] = ACTIONS(2694), + [anon_sym_super] = ACTIONS(2694), + [anon_sym_SUPER] = ACTIONS(2694), + [anon_sym_True] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2694), + [anon_sym_TRUE] = ACTIONS(2694), + [anon_sym_False] = ACTIONS(2694), + [anon_sym_false] = ACTIONS(2694), + [anon_sym_FALSE] = ACTIONS(2694), + [anon_sym_Null] = ACTIONS(2694), + [anon_sym_null] = ACTIONS(2694), + [anon_sym_NULL] = ACTIONS(2694), + [anon_sym_Undefined] = ACTIONS(2694), + [anon_sym_undefined] = ACTIONS(2694), + [anon_sym_UNDEFINED] = ACTIONS(2694), + [anon_sym_get] = ACTIONS(2694), + [anon_sym_set] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [sym_hash_empty] = ACTIONS(2692), + [anon_sym_export] = ACTIONS(2694), + [anon_sym_QueryExecute] = ACTIONS(2694), + [anon_sym_queryexecute] = ACTIONS(2694), + [anon_sym_QUERYEXECUTE] = ACTIONS(2694), + [anon_sym_queryExecute] = ACTIONS(2694), + [anon_sym_BQUOTE] = ACTIONS(2694), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2692), + [anon_sym_Abstract] = ACTIONS(2694), + [anon_sym_abstract] = ACTIONS(2694), + [anon_sym_ABSTRACT] = ACTIONS(2694), + [anon_sym_Break] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_BREAK] = ACTIONS(2694), + [anon_sym_Case] = ACTIONS(2694), + [anon_sym_case] = ACTIONS(2694), + [anon_sym_CASE] = ACTIONS(2694), + [anon_sym_Component] = ACTIONS(2694), + [anon_sym_component] = ACTIONS(2694), + [anon_sym_COMPONENT] = ACTIONS(2694), + [anon_sym_Continue] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_CONTINUE] = ACTIONS(2694), + [anon_sym_Debugger] = ACTIONS(2694), + [anon_sym_debugger] = ACTIONS(2694), + [anon_sym_DEBUGGER] = ACTIONS(2694), + [anon_sym_Default] = ACTIONS(2694), + [anon_sym_default] = ACTIONS(2694), + [anon_sym_DEFAULT] = ACTIONS(2694), + [anon_sym_Do] = ACTIONS(2694), + [anon_sym_do] = ACTIONS(2694), + [anon_sym_DO] = ACTIONS(2694), + [anon_sym_Final] = ACTIONS(2694), + [anon_sym_final] = ACTIONS(2694), + [anon_sym_FINAL] = ACTIONS(2694), + [anon_sym_For] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_FOR] = ACTIONS(2694), + [anon_sym_Function] = ACTIONS(2694), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_FUNCTION] = ACTIONS(2694), + [anon_sym_If] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_IF] = ACTIONS(2694), + [anon_sym_Import] = ACTIONS(2694), + [anon_sym_import] = ACTIONS(2694), + [anon_sym_IMPORT] = ACTIONS(2694), + [anon_sym_Include] = ACTIONS(2694), + [anon_sym_include] = ACTIONS(2694), + [anon_sym_INCLUDE] = ACTIONS(2694), + [anon_sym_Interface] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_INTERFACE] = ACTIONS(2694), + [anon_sym_New] = ACTIONS(2694), + [anon_sym_new] = ACTIONS(2694), + [anon_sym_NEW] = ACTIONS(2694), + [anon_sym_Package] = ACTIONS(2694), + [anon_sym_package] = ACTIONS(2694), + [anon_sym_PACKAGE] = ACTIONS(2694), + [anon_sym_Private] = ACTIONS(2694), + [anon_sym_private] = ACTIONS(2694), + [anon_sym_PRIVATE] = ACTIONS(2694), + [anon_sym_Property] = ACTIONS(2694), + [anon_sym_property] = ACTIONS(2694), + [anon_sym_PROPERTY] = ACTIONS(2694), + [anon_sym_Public] = ACTIONS(2694), + [anon_sym_public] = ACTIONS(2694), + [anon_sym_PUBLIC] = ACTIONS(2694), + [anon_sym_Remote] = ACTIONS(2694), + [anon_sym_remote] = ACTIONS(2694), + [anon_sym_REMOTE] = ACTIONS(2694), + [anon_sym_Return] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_RETURN] = ACTIONS(2694), + [anon_sym_Static] = ACTIONS(2694), + [anon_sym_static] = ACTIONS(2694), + [anon_sym_STATIC] = ACTIONS(2694), + [anon_sym_Switch] = ACTIONS(2694), + [anon_sym_switch] = ACTIONS(2694), + [anon_sym_SWITCH] = ACTIONS(2694), + [anon_sym_Throw] = ACTIONS(2694), + [anon_sym_throw] = ACTIONS(2694), + [anon_sym_THROW] = ACTIONS(2694), + [anon_sym_Try] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2694), + [anon_sym_TRY] = ACTIONS(2694), + [anon_sym_Var] = ACTIONS(2694), + [anon_sym_var] = ACTIONS(2694), + [anon_sym_VAR] = ACTIONS(2694), + [anon_sym_While] = ACTIONS(2694), + [anon_sym_while] = ACTIONS(2694), + [anon_sym_WHILE] = ACTIONS(2694), + [anon_sym_With] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2694), + [anon_sym_WITH] = ACTIONS(2694), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_cf_comment] = ACTIONS(2692), + [sym__java_block_open] = ACTIONS(2692), + [sym__static_type_prefix] = ACTIONS(2692), }, [STATE(799)] = { + [ts_builtin_sym_end] = ACTIONS(2640), + [sym_identifier] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_Query] = ACTIONS(2642), + [anon_sym_query] = ACTIONS(2642), + [anon_sym_QUERY] = ACTIONS(2642), + [anon_sym_PLUS] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2640), + [aux_sym_unary_operator_token1] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2640), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2642), + [aux_sym_number_token2] = ACTIONS(2640), + [anon_sym_This] = ACTIONS(2642), + [anon_sym_this] = ACTIONS(2642), + [anon_sym_THIS] = ACTIONS(2642), + [anon_sym_Super] = ACTIONS(2642), + [anon_sym_super] = ACTIONS(2642), + [anon_sym_SUPER] = ACTIONS(2642), + [anon_sym_True] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2642), + [anon_sym_TRUE] = ACTIONS(2642), + [anon_sym_False] = ACTIONS(2642), + [anon_sym_false] = ACTIONS(2642), + [anon_sym_FALSE] = ACTIONS(2642), + [anon_sym_Null] = ACTIONS(2642), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_NULL] = ACTIONS(2642), + [anon_sym_Undefined] = ACTIONS(2642), + [anon_sym_undefined] = ACTIONS(2642), + [anon_sym_UNDEFINED] = ACTIONS(2642), + [anon_sym_get] = ACTIONS(2642), + [anon_sym_set] = ACTIONS(2642), + [anon_sym_POUND] = ACTIONS(2642), + [sym_hash_empty] = ACTIONS(2640), + [anon_sym_export] = ACTIONS(2642), + [anon_sym_QueryExecute] = ACTIONS(2642), + [anon_sym_queryexecute] = ACTIONS(2642), + [anon_sym_QUERYEXECUTE] = ACTIONS(2642), + [anon_sym_queryExecute] = ACTIONS(2642), + [anon_sym_BQUOTE] = ACTIONS(2642), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2640), + [anon_sym_Abstract] = ACTIONS(2642), + [anon_sym_abstract] = ACTIONS(2642), + [anon_sym_ABSTRACT] = ACTIONS(2642), + [anon_sym_Break] = ACTIONS(2642), + [anon_sym_break] = ACTIONS(2642), + [anon_sym_BREAK] = ACTIONS(2642), + [anon_sym_Case] = ACTIONS(2642), + [anon_sym_case] = ACTIONS(2642), + [anon_sym_CASE] = ACTIONS(2642), + [anon_sym_Component] = ACTIONS(2642), + [anon_sym_component] = ACTIONS(2642), + [anon_sym_COMPONENT] = ACTIONS(2642), + [anon_sym_Continue] = ACTIONS(2642), + [anon_sym_continue] = ACTIONS(2642), + [anon_sym_CONTINUE] = ACTIONS(2642), + [anon_sym_Debugger] = ACTIONS(2642), + [anon_sym_debugger] = ACTIONS(2642), + [anon_sym_DEBUGGER] = ACTIONS(2642), + [anon_sym_Default] = ACTIONS(2642), + [anon_sym_default] = ACTIONS(2642), + [anon_sym_DEFAULT] = ACTIONS(2642), + [anon_sym_Do] = ACTIONS(2642), + [anon_sym_do] = ACTIONS(2642), + [anon_sym_DO] = ACTIONS(2642), + [anon_sym_Final] = ACTIONS(2642), + [anon_sym_final] = ACTIONS(2642), + [anon_sym_FINAL] = ACTIONS(2642), + [anon_sym_For] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2642), + [anon_sym_FOR] = ACTIONS(2642), + [anon_sym_Function] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2642), + [anon_sym_FUNCTION] = ACTIONS(2642), + [anon_sym_If] = ACTIONS(2642), + [anon_sym_if] = ACTIONS(2642), + [anon_sym_IF] = ACTIONS(2642), + [anon_sym_Import] = ACTIONS(2642), + [anon_sym_import] = ACTIONS(2642), + [anon_sym_IMPORT] = ACTIONS(2642), + [anon_sym_Include] = ACTIONS(2642), + [anon_sym_include] = ACTIONS(2642), + [anon_sym_INCLUDE] = ACTIONS(2642), + [anon_sym_Interface] = ACTIONS(2642), + [anon_sym_interface] = ACTIONS(2642), + [anon_sym_INTERFACE] = ACTIONS(2642), + [anon_sym_New] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_NEW] = ACTIONS(2642), + [anon_sym_Package] = ACTIONS(2642), + [anon_sym_package] = ACTIONS(2642), + [anon_sym_PACKAGE] = ACTIONS(2642), + [anon_sym_Private] = ACTIONS(2642), + [anon_sym_private] = ACTIONS(2642), + [anon_sym_PRIVATE] = ACTIONS(2642), + [anon_sym_Property] = ACTIONS(2642), + [anon_sym_property] = ACTIONS(2642), + [anon_sym_PROPERTY] = ACTIONS(2642), + [anon_sym_Public] = ACTIONS(2642), + [anon_sym_public] = ACTIONS(2642), + [anon_sym_PUBLIC] = ACTIONS(2642), + [anon_sym_Remote] = ACTIONS(2642), + [anon_sym_remote] = ACTIONS(2642), + [anon_sym_REMOTE] = ACTIONS(2642), + [anon_sym_Return] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2642), + [anon_sym_RETURN] = ACTIONS(2642), + [anon_sym_Static] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2642), + [anon_sym_STATIC] = ACTIONS(2642), + [anon_sym_Switch] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2642), + [anon_sym_SWITCH] = ACTIONS(2642), + [anon_sym_Throw] = ACTIONS(2642), + [anon_sym_throw] = ACTIONS(2642), + [anon_sym_THROW] = ACTIONS(2642), + [anon_sym_Try] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2642), + [anon_sym_TRY] = ACTIONS(2642), + [anon_sym_Var] = ACTIONS(2642), + [anon_sym_var] = ACTIONS(2642), + [anon_sym_VAR] = ACTIONS(2642), + [anon_sym_While] = ACTIONS(2642), + [anon_sym_while] = ACTIONS(2642), + [anon_sym_WHILE] = ACTIONS(2642), + [anon_sym_With] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2642), + [anon_sym_WITH] = ACTIONS(2642), + [sym__automatic_semicolon] = ACTIONS(3156), + [sym_cf_comment] = ACTIONS(2640), + [sym__java_block_open] = ACTIONS(2640), + [sym__static_type_prefix] = ACTIONS(2640), + }, + [STATE(800)] = { + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_Query] = ACTIONS(2604), + [anon_sym_query] = ACTIONS(2604), + [anon_sym_QUERY] = ACTIONS(2604), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [aux_sym_unary_operator_token1] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2602), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2604), + [aux_sym_number_token2] = ACTIONS(2602), + [anon_sym_This] = ACTIONS(2604), + [anon_sym_this] = ACTIONS(2604), + [anon_sym_THIS] = ACTIONS(2604), + [anon_sym_Super] = ACTIONS(2604), + [anon_sym_super] = ACTIONS(2604), + [anon_sym_SUPER] = ACTIONS(2604), + [anon_sym_True] = ACTIONS(2604), + [anon_sym_true] = ACTIONS(2604), + [anon_sym_TRUE] = ACTIONS(2604), + [anon_sym_False] = ACTIONS(2604), + [anon_sym_false] = ACTIONS(2604), + [anon_sym_FALSE] = ACTIONS(2604), + [anon_sym_Null] = ACTIONS(2604), + [anon_sym_null] = ACTIONS(2604), + [anon_sym_NULL] = ACTIONS(2604), + [anon_sym_Undefined] = ACTIONS(2604), + [anon_sym_undefined] = ACTIONS(2604), + [anon_sym_UNDEFINED] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(2604), + [sym_hash_empty] = ACTIONS(2602), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_QueryExecute] = ACTIONS(2604), + [anon_sym_queryexecute] = ACTIONS(2604), + [anon_sym_QUERYEXECUTE] = ACTIONS(2604), + [anon_sym_queryExecute] = ACTIONS(2604), + [anon_sym_BQUOTE] = ACTIONS(2604), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2602), + [anon_sym_Abstract] = ACTIONS(2604), + [anon_sym_abstract] = ACTIONS(2604), + [anon_sym_ABSTRACT] = ACTIONS(2604), + [anon_sym_Break] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_BREAK] = ACTIONS(2604), + [anon_sym_Case] = ACTIONS(2604), + [anon_sym_case] = ACTIONS(2604), + [anon_sym_CASE] = ACTIONS(2604), + [anon_sym_Component] = ACTIONS(2604), + [anon_sym_component] = ACTIONS(2604), + [anon_sym_COMPONENT] = ACTIONS(2604), + [anon_sym_Continue] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_CONTINUE] = ACTIONS(2604), + [anon_sym_Debugger] = ACTIONS(2604), + [anon_sym_debugger] = ACTIONS(2604), + [anon_sym_DEBUGGER] = ACTIONS(2604), + [anon_sym_Default] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_DEFAULT] = ACTIONS(2604), + [anon_sym_Do] = ACTIONS(2604), + [anon_sym_do] = ACTIONS(2604), + [anon_sym_DO] = ACTIONS(2604), + [anon_sym_Final] = ACTIONS(2604), + [anon_sym_final] = ACTIONS(2604), + [anon_sym_FINAL] = ACTIONS(2604), + [anon_sym_For] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_FOR] = ACTIONS(2604), + [anon_sym_Function] = ACTIONS(2604), + [anon_sym_function] = ACTIONS(2604), + [anon_sym_FUNCTION] = ACTIONS(2604), + [anon_sym_If] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_IF] = ACTIONS(2604), + [anon_sym_Import] = ACTIONS(2604), + [anon_sym_import] = ACTIONS(2604), + [anon_sym_IMPORT] = ACTIONS(2604), + [anon_sym_Include] = ACTIONS(2604), + [anon_sym_include] = ACTIONS(2604), + [anon_sym_INCLUDE] = ACTIONS(2604), + [anon_sym_Interface] = ACTIONS(2604), + [anon_sym_interface] = ACTIONS(2604), + [anon_sym_INTERFACE] = ACTIONS(2604), + [anon_sym_New] = ACTIONS(2604), + [anon_sym_new] = ACTIONS(2604), + [anon_sym_NEW] = ACTIONS(2604), + [anon_sym_Package] = ACTIONS(2604), + [anon_sym_package] = ACTIONS(2604), + [anon_sym_PACKAGE] = ACTIONS(2604), + [anon_sym_Private] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_PRIVATE] = ACTIONS(2604), + [anon_sym_Property] = ACTIONS(2604), + [anon_sym_property] = ACTIONS(2604), + [anon_sym_PROPERTY] = ACTIONS(2604), + [anon_sym_Public] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_PUBLIC] = ACTIONS(2604), + [anon_sym_Remote] = ACTIONS(2604), + [anon_sym_remote] = ACTIONS(2604), + [anon_sym_REMOTE] = ACTIONS(2604), + [anon_sym_Return] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_RETURN] = ACTIONS(2604), + [anon_sym_Static] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_STATIC] = ACTIONS(2604), + [anon_sym_Switch] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2604), + [anon_sym_SWITCH] = ACTIONS(2604), + [anon_sym_Throw] = ACTIONS(2604), + [anon_sym_throw] = ACTIONS(2604), + [anon_sym_THROW] = ACTIONS(2604), + [anon_sym_Try] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [anon_sym_TRY] = ACTIONS(2604), + [anon_sym_Var] = ACTIONS(2604), + [anon_sym_var] = ACTIONS(2604), + [anon_sym_VAR] = ACTIONS(2604), + [anon_sym_While] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_WHILE] = ACTIONS(2604), + [anon_sym_With] = ACTIONS(2604), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_WITH] = ACTIONS(2604), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_cf_comment] = ACTIONS(2602), + [sym__java_block_open] = ACTIONS(2602), + [sym__static_type_prefix] = ACTIONS(2602), + }, + [STATE(801)] = { + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_Query] = ACTIONS(2654), + [anon_sym_query] = ACTIONS(2654), + [anon_sym_QUERY] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_SLASH] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [aux_sym_unary_operator_token1] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2654), + [aux_sym_number_token2] = ACTIONS(2652), + [anon_sym_This] = ACTIONS(2654), + [anon_sym_this] = ACTIONS(2654), + [anon_sym_THIS] = ACTIONS(2654), + [anon_sym_Super] = ACTIONS(2654), + [anon_sym_super] = ACTIONS(2654), + [anon_sym_SUPER] = ACTIONS(2654), + [anon_sym_True] = ACTIONS(2654), + [anon_sym_true] = ACTIONS(2654), + [anon_sym_TRUE] = ACTIONS(2654), + [anon_sym_False] = ACTIONS(2654), + [anon_sym_false] = ACTIONS(2654), + [anon_sym_FALSE] = ACTIONS(2654), + [anon_sym_Null] = ACTIONS(2654), + [anon_sym_null] = ACTIONS(2654), + [anon_sym_NULL] = ACTIONS(2654), + [anon_sym_Undefined] = ACTIONS(2654), + [anon_sym_undefined] = ACTIONS(2654), + [anon_sym_UNDEFINED] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2654), + [anon_sym_set] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(2654), + [sym_hash_empty] = ACTIONS(2652), + [anon_sym_export] = ACTIONS(2654), + [anon_sym_QueryExecute] = ACTIONS(2654), + [anon_sym_queryexecute] = ACTIONS(2654), + [anon_sym_QUERYEXECUTE] = ACTIONS(2654), + [anon_sym_queryExecute] = ACTIONS(2654), + [anon_sym_BQUOTE] = ACTIONS(2654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2652), + [anon_sym_Abstract] = ACTIONS(2654), + [anon_sym_abstract] = ACTIONS(2654), + [anon_sym_ABSTRACT] = ACTIONS(2654), + [anon_sym_Break] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_BREAK] = ACTIONS(2654), + [anon_sym_Case] = ACTIONS(2654), + [anon_sym_case] = ACTIONS(2654), + [anon_sym_CASE] = ACTIONS(2654), + [anon_sym_Component] = ACTIONS(2654), + [anon_sym_component] = ACTIONS(2654), + [anon_sym_COMPONENT] = ACTIONS(2654), + [anon_sym_Continue] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_CONTINUE] = ACTIONS(2654), + [anon_sym_Debugger] = ACTIONS(2654), + [anon_sym_debugger] = ACTIONS(2654), + [anon_sym_DEBUGGER] = ACTIONS(2654), + [anon_sym_Default] = ACTIONS(2654), + [anon_sym_default] = ACTIONS(2654), + [anon_sym_DEFAULT] = ACTIONS(2654), + [anon_sym_Do] = ACTIONS(2654), + [anon_sym_do] = ACTIONS(2654), + [anon_sym_DO] = ACTIONS(2654), + [anon_sym_Final] = ACTIONS(2654), + [anon_sym_final] = ACTIONS(2654), + [anon_sym_FINAL] = ACTIONS(2654), + [anon_sym_For] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_FOR] = ACTIONS(2654), + [anon_sym_Function] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2654), + [anon_sym_FUNCTION] = ACTIONS(2654), + [anon_sym_If] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_IF] = ACTIONS(2654), + [anon_sym_Import] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2654), + [anon_sym_IMPORT] = ACTIONS(2654), + [anon_sym_Include] = ACTIONS(2654), + [anon_sym_include] = ACTIONS(2654), + [anon_sym_INCLUDE] = ACTIONS(2654), + [anon_sym_Interface] = ACTIONS(2654), + [anon_sym_interface] = ACTIONS(2654), + [anon_sym_INTERFACE] = ACTIONS(2654), + [anon_sym_New] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2654), + [anon_sym_NEW] = ACTIONS(2654), + [anon_sym_Package] = ACTIONS(2654), + [anon_sym_package] = ACTIONS(2654), + [anon_sym_PACKAGE] = ACTIONS(2654), + [anon_sym_Private] = ACTIONS(2654), + [anon_sym_private] = ACTIONS(2654), + [anon_sym_PRIVATE] = ACTIONS(2654), + [anon_sym_Property] = ACTIONS(2654), + [anon_sym_property] = ACTIONS(2654), + [anon_sym_PROPERTY] = ACTIONS(2654), + [anon_sym_Public] = ACTIONS(2654), + [anon_sym_public] = ACTIONS(2654), + [anon_sym_PUBLIC] = ACTIONS(2654), + [anon_sym_Remote] = ACTIONS(2654), + [anon_sym_remote] = ACTIONS(2654), + [anon_sym_REMOTE] = ACTIONS(2654), + [anon_sym_Return] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_RETURN] = ACTIONS(2654), + [anon_sym_Static] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_STATIC] = ACTIONS(2654), + [anon_sym_Switch] = ACTIONS(2654), + [anon_sym_switch] = ACTIONS(2654), + [anon_sym_SWITCH] = ACTIONS(2654), + [anon_sym_Throw] = ACTIONS(2654), + [anon_sym_throw] = ACTIONS(2654), + [anon_sym_THROW] = ACTIONS(2654), + [anon_sym_Try] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2654), + [anon_sym_TRY] = ACTIONS(2654), + [anon_sym_Var] = ACTIONS(2654), + [anon_sym_var] = ACTIONS(2654), + [anon_sym_VAR] = ACTIONS(2654), + [anon_sym_While] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_WHILE] = ACTIONS(2654), + [anon_sym_With] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2654), + [anon_sym_WITH] = ACTIONS(2654), + [sym__automatic_semicolon] = ACTIONS(3160), + [sym_cf_comment] = ACTIONS(2652), + [sym__java_block_open] = ACTIONS(2652), + [sym__static_type_prefix] = ACTIONS(2652), + }, + [STATE(802)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(803)] = { + [ts_builtin_sym_end] = ACTIONS(1083), + [sym_identifier] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_Query] = ACTIONS(1085), + [anon_sym_query] = ACTIONS(1085), + [anon_sym_QUERY] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1083), + [aux_sym_unary_operator_token1] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1085), + [aux_sym_number_token2] = ACTIONS(1083), + [anon_sym_This] = ACTIONS(1085), + [anon_sym_this] = ACTIONS(1085), + [anon_sym_THIS] = ACTIONS(1085), + [anon_sym_Super] = ACTIONS(1085), + [anon_sym_super] = ACTIONS(1085), + [anon_sym_SUPER] = ACTIONS(1085), + [anon_sym_True] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_TRUE] = ACTIONS(1085), + [anon_sym_False] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_FALSE] = ACTIONS(1085), + [anon_sym_Null] = ACTIONS(1085), + [anon_sym_null] = ACTIONS(1085), + [anon_sym_NULL] = ACTIONS(1085), + [anon_sym_Undefined] = ACTIONS(1085), + [anon_sym_undefined] = ACTIONS(1085), + [anon_sym_UNDEFINED] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(1085), + [sym_hash_empty] = ACTIONS(1083), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_QueryExecute] = ACTIONS(1085), + [anon_sym_queryexecute] = ACTIONS(1085), + [anon_sym_QUERYEXECUTE] = ACTIONS(1085), + [anon_sym_queryExecute] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1083), + [anon_sym_Abstract] = ACTIONS(1085), + [anon_sym_abstract] = ACTIONS(1085), + [anon_sym_ABSTRACT] = ACTIONS(1085), + [anon_sym_Break] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1085), + [anon_sym_BREAK] = ACTIONS(1085), + [anon_sym_Case] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1085), + [anon_sym_CASE] = ACTIONS(1085), + [anon_sym_Component] = ACTIONS(1085), + [anon_sym_component] = ACTIONS(1085), + [anon_sym_COMPONENT] = ACTIONS(1085), + [anon_sym_Continue] = ACTIONS(1085), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_CONTINUE] = ACTIONS(1085), + [anon_sym_Debugger] = ACTIONS(1085), + [anon_sym_debugger] = ACTIONS(1085), + [anon_sym_DEBUGGER] = ACTIONS(1085), + [anon_sym_Default] = ACTIONS(1085), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_DEFAULT] = ACTIONS(1085), + [anon_sym_Do] = ACTIONS(1085), + [anon_sym_do] = ACTIONS(1085), + [anon_sym_DO] = ACTIONS(1085), + [anon_sym_Final] = ACTIONS(1085), + [anon_sym_final] = ACTIONS(1085), + [anon_sym_FINAL] = ACTIONS(1085), + [anon_sym_For] = ACTIONS(1085), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_FOR] = ACTIONS(1085), + [anon_sym_Function] = ACTIONS(1085), + [anon_sym_function] = ACTIONS(1085), + [anon_sym_FUNCTION] = ACTIONS(1085), + [anon_sym_If] = ACTIONS(1085), + [anon_sym_if] = ACTIONS(1085), + [anon_sym_IF] = ACTIONS(1085), + [anon_sym_Import] = ACTIONS(1085), + [anon_sym_import] = ACTIONS(1085), + [anon_sym_IMPORT] = ACTIONS(1085), + [anon_sym_Include] = ACTIONS(1085), + [anon_sym_include] = ACTIONS(1085), + [anon_sym_INCLUDE] = ACTIONS(1085), + [anon_sym_Interface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1085), + [anon_sym_INTERFACE] = ACTIONS(1085), + [anon_sym_New] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1085), + [anon_sym_NEW] = ACTIONS(1085), + [anon_sym_Package] = ACTIONS(1085), + [anon_sym_package] = ACTIONS(1085), + [anon_sym_PACKAGE] = ACTIONS(1085), + [anon_sym_Private] = ACTIONS(1085), + [anon_sym_private] = ACTIONS(1085), + [anon_sym_PRIVATE] = ACTIONS(1085), + [anon_sym_Property] = ACTIONS(1085), + [anon_sym_property] = ACTIONS(1085), + [anon_sym_PROPERTY] = ACTIONS(1085), + [anon_sym_Public] = ACTIONS(1085), + [anon_sym_public] = ACTIONS(1085), + [anon_sym_PUBLIC] = ACTIONS(1085), + [anon_sym_Remote] = ACTIONS(1085), + [anon_sym_remote] = ACTIONS(1085), + [anon_sym_REMOTE] = ACTIONS(1085), + [anon_sym_Return] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_RETURN] = ACTIONS(1085), + [anon_sym_Static] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_STATIC] = ACTIONS(1085), + [anon_sym_Switch] = ACTIONS(1085), + [anon_sym_switch] = ACTIONS(1085), + [anon_sym_SWITCH] = ACTIONS(1085), + [anon_sym_Throw] = ACTIONS(1085), + [anon_sym_throw] = ACTIONS(1085), + [anon_sym_THROW] = ACTIONS(1085), + [anon_sym_Try] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1085), + [anon_sym_TRY] = ACTIONS(1085), + [anon_sym_Var] = ACTIONS(1085), + [anon_sym_var] = ACTIONS(1085), + [anon_sym_VAR] = ACTIONS(1085), + [anon_sym_While] = ACTIONS(1085), + [anon_sym_while] = ACTIONS(1085), + [anon_sym_WHILE] = ACTIONS(1085), + [anon_sym_With] = ACTIONS(1085), + [anon_sym_with] = ACTIONS(1085), + [anon_sym_WITH] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(1710), + [sym_cf_comment] = ACTIONS(1083), + [sym__java_block_open] = ACTIONS(1083), + [sym__static_type_prefix] = ACTIONS(1083), + }, + [STATE(804)] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1596), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Break] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_BREAK] = ACTIONS(1598), + [anon_sym_Case] = ACTIONS(1598), + [anon_sym_case] = ACTIONS(1598), + [anon_sym_CASE] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Continue] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_CONTINUE] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Default] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_DEFAULT] = ACTIONS(1598), + [anon_sym_Do] = ACTIONS(1598), + [anon_sym_do] = ACTIONS(1598), + [anon_sym_DO] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_For] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_FOR] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_If] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_IF] = ACTIONS(1598), + [anon_sym_Import] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_IMPORT] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_Interface] = ACTIONS(1598), + [anon_sym_interface] = ACTIONS(1598), + [anon_sym_INTERFACE] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Property] = ACTIONS(1598), + [anon_sym_property] = ACTIONS(1598), + [anon_sym_PROPERTY] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Return] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_RETURN] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [anon_sym_Switch] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1598), + [anon_sym_SWITCH] = ACTIONS(1598), + [anon_sym_Throw] = ACTIONS(1598), + [anon_sym_throw] = ACTIONS(1598), + [anon_sym_THROW] = ACTIONS(1598), + [anon_sym_Try] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_TRY] = ACTIONS(1598), + [anon_sym_Var] = ACTIONS(1598), + [anon_sym_var] = ACTIONS(1598), + [anon_sym_VAR] = ACTIONS(1598), + [anon_sym_While] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_WHILE] = ACTIONS(1598), + [anon_sym_With] = ACTIONS(1598), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_WITH] = ACTIONS(1598), + [sym__automatic_semicolon] = ACTIONS(1596), + [sym_cf_comment] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), + }, + [STATE(805)] = { + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_let] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_Query] = ACTIONS(2624), + [anon_sym_query] = ACTIONS(2624), + [anon_sym_QUERY] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_SLASH] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2622), + [aux_sym_unary_operator_token1] = ACTIONS(2624), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [anon_sym_DQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2624), + [aux_sym_number_token2] = ACTIONS(2622), + [anon_sym_This] = ACTIONS(2624), + [anon_sym_this] = ACTIONS(2624), + [anon_sym_THIS] = ACTIONS(2624), + [anon_sym_Super] = ACTIONS(2624), + [anon_sym_super] = ACTIONS(2624), + [anon_sym_SUPER] = ACTIONS(2624), + [anon_sym_True] = ACTIONS(2624), + [anon_sym_true] = ACTIONS(2624), + [anon_sym_TRUE] = ACTIONS(2624), + [anon_sym_False] = ACTIONS(2624), + [anon_sym_false] = ACTIONS(2624), + [anon_sym_FALSE] = ACTIONS(2624), + [anon_sym_Null] = ACTIONS(2624), + [anon_sym_null] = ACTIONS(2624), + [anon_sym_NULL] = ACTIONS(2624), + [anon_sym_Undefined] = ACTIONS(2624), + [anon_sym_undefined] = ACTIONS(2624), + [anon_sym_UNDEFINED] = ACTIONS(2624), + [anon_sym_get] = ACTIONS(2624), + [anon_sym_set] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(2624), + [sym_hash_empty] = ACTIONS(2622), + [anon_sym_export] = ACTIONS(2624), + [anon_sym_QueryExecute] = ACTIONS(2624), + [anon_sym_queryexecute] = ACTIONS(2624), + [anon_sym_QUERYEXECUTE] = ACTIONS(2624), + [anon_sym_queryExecute] = ACTIONS(2624), + [anon_sym_BQUOTE] = ACTIONS(2624), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2622), + [anon_sym_Abstract] = ACTIONS(2624), + [anon_sym_abstract] = ACTIONS(2624), + [anon_sym_ABSTRACT] = ACTIONS(2624), + [anon_sym_Break] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_BREAK] = ACTIONS(2624), + [anon_sym_Case] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_CASE] = ACTIONS(2624), + [anon_sym_Component] = ACTIONS(2624), + [anon_sym_component] = ACTIONS(2624), + [anon_sym_COMPONENT] = ACTIONS(2624), + [anon_sym_Continue] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_CONTINUE] = ACTIONS(2624), + [anon_sym_Debugger] = ACTIONS(2624), + [anon_sym_debugger] = ACTIONS(2624), + [anon_sym_DEBUGGER] = ACTIONS(2624), + [anon_sym_Default] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_DEFAULT] = ACTIONS(2624), + [anon_sym_Do] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_DO] = ACTIONS(2624), + [anon_sym_Final] = ACTIONS(2624), + [anon_sym_final] = ACTIONS(2624), + [anon_sym_FINAL] = ACTIONS(2624), + [anon_sym_For] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_FOR] = ACTIONS(2624), + [anon_sym_Function] = ACTIONS(2624), + [anon_sym_function] = ACTIONS(2624), + [anon_sym_FUNCTION] = ACTIONS(2624), + [anon_sym_If] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_IF] = ACTIONS(2624), + [anon_sym_Import] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2624), + [anon_sym_IMPORT] = ACTIONS(2624), + [anon_sym_Include] = ACTIONS(2624), + [anon_sym_include] = ACTIONS(2624), + [anon_sym_INCLUDE] = ACTIONS(2624), + [anon_sym_Interface] = ACTIONS(2624), + [anon_sym_interface] = ACTIONS(2624), + [anon_sym_INTERFACE] = ACTIONS(2624), + [anon_sym_New] = ACTIONS(2624), + [anon_sym_new] = ACTIONS(2624), + [anon_sym_NEW] = ACTIONS(2624), + [anon_sym_Package] = ACTIONS(2624), + [anon_sym_package] = ACTIONS(2624), + [anon_sym_PACKAGE] = ACTIONS(2624), + [anon_sym_Private] = ACTIONS(2624), + [anon_sym_private] = ACTIONS(2624), + [anon_sym_PRIVATE] = ACTIONS(2624), + [anon_sym_Property] = ACTIONS(2624), + [anon_sym_property] = ACTIONS(2624), + [anon_sym_PROPERTY] = ACTIONS(2624), + [anon_sym_Public] = ACTIONS(2624), + [anon_sym_public] = ACTIONS(2624), + [anon_sym_PUBLIC] = ACTIONS(2624), + [anon_sym_Remote] = ACTIONS(2624), + [anon_sym_remote] = ACTIONS(2624), + [anon_sym_REMOTE] = ACTIONS(2624), + [anon_sym_Return] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_RETURN] = ACTIONS(2624), + [anon_sym_Static] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_STATIC] = ACTIONS(2624), + [anon_sym_Switch] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_SWITCH] = ACTIONS(2624), + [anon_sym_Throw] = ACTIONS(2624), + [anon_sym_throw] = ACTIONS(2624), + [anon_sym_THROW] = ACTIONS(2624), + [anon_sym_Try] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [anon_sym_TRY] = ACTIONS(2624), + [anon_sym_Var] = ACTIONS(2624), + [anon_sym_var] = ACTIONS(2624), + [anon_sym_VAR] = ACTIONS(2624), + [anon_sym_While] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_WHILE] = ACTIONS(2624), + [anon_sym_With] = ACTIONS(2624), + [anon_sym_with] = ACTIONS(2624), + [anon_sym_WITH] = ACTIONS(2624), + [sym__automatic_semicolon] = ACTIONS(3164), + [sym_cf_comment] = ACTIONS(2622), + [sym__java_block_open] = ACTIONS(2622), + [sym__static_type_prefix] = ACTIONS(2622), + }, + [STATE(806)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(3166), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(807)] = { + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_let] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_Query] = ACTIONS(2666), + [anon_sym_query] = ACTIONS(2666), + [anon_sym_QUERY] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [aux_sym_unary_operator_token1] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2666), + [aux_sym_number_token2] = ACTIONS(2664), + [anon_sym_This] = ACTIONS(2666), + [anon_sym_this] = ACTIONS(2666), + [anon_sym_THIS] = ACTIONS(2666), + [anon_sym_Super] = ACTIONS(2666), + [anon_sym_super] = ACTIONS(2666), + [anon_sym_SUPER] = ACTIONS(2666), + [anon_sym_True] = ACTIONS(2666), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_TRUE] = ACTIONS(2666), + [anon_sym_False] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_FALSE] = ACTIONS(2666), + [anon_sym_Null] = ACTIONS(2666), + [anon_sym_null] = ACTIONS(2666), + [anon_sym_NULL] = ACTIONS(2666), + [anon_sym_Undefined] = ACTIONS(2666), + [anon_sym_undefined] = ACTIONS(2666), + [anon_sym_UNDEFINED] = ACTIONS(2666), + [anon_sym_get] = ACTIONS(2666), + [anon_sym_set] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(2666), + [sym_hash_empty] = ACTIONS(2664), + [anon_sym_export] = ACTIONS(2666), + [anon_sym_QueryExecute] = ACTIONS(2666), + [anon_sym_queryexecute] = ACTIONS(2666), + [anon_sym_QUERYEXECUTE] = ACTIONS(2666), + [anon_sym_queryExecute] = ACTIONS(2666), + [anon_sym_BQUOTE] = ACTIONS(2666), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2664), + [anon_sym_Abstract] = ACTIONS(2666), + [anon_sym_abstract] = ACTIONS(2666), + [anon_sym_ABSTRACT] = ACTIONS(2666), + [anon_sym_Break] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_BREAK] = ACTIONS(2666), + [anon_sym_Case] = ACTIONS(2666), + [anon_sym_case] = ACTIONS(2666), + [anon_sym_CASE] = ACTIONS(2666), + [anon_sym_Component] = ACTIONS(2666), + [anon_sym_component] = ACTIONS(2666), + [anon_sym_COMPONENT] = ACTIONS(2666), + [anon_sym_Continue] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_CONTINUE] = ACTIONS(2666), + [anon_sym_Debugger] = ACTIONS(2666), + [anon_sym_debugger] = ACTIONS(2666), + [anon_sym_DEBUGGER] = ACTIONS(2666), + [anon_sym_Default] = ACTIONS(2666), + [anon_sym_default] = ACTIONS(2666), + [anon_sym_DEFAULT] = ACTIONS(2666), + [anon_sym_Do] = ACTIONS(2666), + [anon_sym_do] = ACTIONS(2666), + [anon_sym_DO] = ACTIONS(2666), + [anon_sym_Final] = ACTIONS(2666), + [anon_sym_final] = ACTIONS(2666), + [anon_sym_FINAL] = ACTIONS(2666), + [anon_sym_For] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_FOR] = ACTIONS(2666), + [anon_sym_Function] = ACTIONS(2666), + [anon_sym_function] = ACTIONS(2666), + [anon_sym_FUNCTION] = ACTIONS(2666), + [anon_sym_If] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_IF] = ACTIONS(2666), + [anon_sym_Import] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_IMPORT] = ACTIONS(2666), + [anon_sym_Include] = ACTIONS(2666), + [anon_sym_include] = ACTIONS(2666), + [anon_sym_INCLUDE] = ACTIONS(2666), + [anon_sym_Interface] = ACTIONS(2666), + [anon_sym_interface] = ACTIONS(2666), + [anon_sym_INTERFACE] = ACTIONS(2666), + [anon_sym_New] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_NEW] = ACTIONS(2666), + [anon_sym_Package] = ACTIONS(2666), + [anon_sym_package] = ACTIONS(2666), + [anon_sym_PACKAGE] = ACTIONS(2666), + [anon_sym_Private] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_PRIVATE] = ACTIONS(2666), + [anon_sym_Property] = ACTIONS(2666), + [anon_sym_property] = ACTIONS(2666), + [anon_sym_PROPERTY] = ACTIONS(2666), + [anon_sym_Public] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_PUBLIC] = ACTIONS(2666), + [anon_sym_Remote] = ACTIONS(2666), + [anon_sym_remote] = ACTIONS(2666), + [anon_sym_REMOTE] = ACTIONS(2666), + [anon_sym_Return] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_RETURN] = ACTIONS(2666), + [anon_sym_Static] = ACTIONS(2666), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_STATIC] = ACTIONS(2666), + [anon_sym_Switch] = ACTIONS(2666), + [anon_sym_switch] = ACTIONS(2666), + [anon_sym_SWITCH] = ACTIONS(2666), + [anon_sym_Throw] = ACTIONS(2666), + [anon_sym_throw] = ACTIONS(2666), + [anon_sym_THROW] = ACTIONS(2666), + [anon_sym_Try] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_TRY] = ACTIONS(2666), + [anon_sym_Var] = ACTIONS(2666), + [anon_sym_var] = ACTIONS(2666), + [anon_sym_VAR] = ACTIONS(2666), + [anon_sym_While] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_WHILE] = ACTIONS(2666), + [anon_sym_With] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_WITH] = ACTIONS(2666), + [sym__automatic_semicolon] = ACTIONS(3168), + [sym_cf_comment] = ACTIONS(2664), + [sym__java_block_open] = ACTIONS(2664), + [sym__static_type_prefix] = ACTIONS(2664), + }, + [STATE(808)] = { + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_let] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_Query] = ACTIONS(2672), + [anon_sym_query] = ACTIONS(2672), + [anon_sym_QUERY] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_SLASH] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2670), + [anon_sym_TILDE] = ACTIONS(2670), + [aux_sym_unary_operator_token1] = ACTIONS(2672), + [anon_sym_PLUS_PLUS] = ACTIONS(2670), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_DQUOTE] = ACTIONS(2670), + [anon_sym_SQUOTE] = ACTIONS(2670), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2672), + [aux_sym_number_token2] = ACTIONS(2670), + [anon_sym_This] = ACTIONS(2672), + [anon_sym_this] = ACTIONS(2672), + [anon_sym_THIS] = ACTIONS(2672), + [anon_sym_Super] = ACTIONS(2672), + [anon_sym_super] = ACTIONS(2672), + [anon_sym_SUPER] = ACTIONS(2672), + [anon_sym_True] = ACTIONS(2672), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_TRUE] = ACTIONS(2672), + [anon_sym_False] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_FALSE] = ACTIONS(2672), + [anon_sym_Null] = ACTIONS(2672), + [anon_sym_null] = ACTIONS(2672), + [anon_sym_NULL] = ACTIONS(2672), + [anon_sym_Undefined] = ACTIONS(2672), + [anon_sym_undefined] = ACTIONS(2672), + [anon_sym_UNDEFINED] = ACTIONS(2672), + [anon_sym_get] = ACTIONS(2672), + [anon_sym_set] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [sym_hash_empty] = ACTIONS(2670), + [anon_sym_export] = ACTIONS(2672), + [anon_sym_QueryExecute] = ACTIONS(2672), + [anon_sym_queryexecute] = ACTIONS(2672), + [anon_sym_QUERYEXECUTE] = ACTIONS(2672), + [anon_sym_queryExecute] = ACTIONS(2672), + [anon_sym_BQUOTE] = ACTIONS(2672), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2670), + [anon_sym_Abstract] = ACTIONS(2672), + [anon_sym_abstract] = ACTIONS(2672), + [anon_sym_ABSTRACT] = ACTIONS(2672), + [anon_sym_Break] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_BREAK] = ACTIONS(2672), + [anon_sym_Case] = ACTIONS(2672), + [anon_sym_case] = ACTIONS(2672), + [anon_sym_CASE] = ACTIONS(2672), + [anon_sym_Component] = ACTIONS(2672), + [anon_sym_component] = ACTIONS(2672), + [anon_sym_COMPONENT] = ACTIONS(2672), + [anon_sym_Continue] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_CONTINUE] = ACTIONS(2672), + [anon_sym_Debugger] = ACTIONS(2672), + [anon_sym_debugger] = ACTIONS(2672), + [anon_sym_DEBUGGER] = ACTIONS(2672), + [anon_sym_Default] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_DEFAULT] = ACTIONS(2672), + [anon_sym_Do] = ACTIONS(2672), + [anon_sym_do] = ACTIONS(2672), + [anon_sym_DO] = ACTIONS(2672), + [anon_sym_Final] = ACTIONS(2672), + [anon_sym_final] = ACTIONS(2672), + [anon_sym_FINAL] = ACTIONS(2672), + [anon_sym_For] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_FOR] = ACTIONS(2672), + [anon_sym_Function] = ACTIONS(2672), + [anon_sym_function] = ACTIONS(2672), + [anon_sym_FUNCTION] = ACTIONS(2672), + [anon_sym_If] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_IF] = ACTIONS(2672), + [anon_sym_Import] = ACTIONS(2672), + [anon_sym_import] = ACTIONS(2672), + [anon_sym_IMPORT] = ACTIONS(2672), + [anon_sym_Include] = ACTIONS(2672), + [anon_sym_include] = ACTIONS(2672), + [anon_sym_INCLUDE] = ACTIONS(2672), + [anon_sym_Interface] = ACTIONS(2672), + [anon_sym_interface] = ACTIONS(2672), + [anon_sym_INTERFACE] = ACTIONS(2672), + [anon_sym_New] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2672), + [anon_sym_NEW] = ACTIONS(2672), + [anon_sym_Package] = ACTIONS(2672), + [anon_sym_package] = ACTIONS(2672), + [anon_sym_PACKAGE] = ACTIONS(2672), + [anon_sym_Private] = ACTIONS(2672), + [anon_sym_private] = ACTIONS(2672), + [anon_sym_PRIVATE] = ACTIONS(2672), + [anon_sym_Property] = ACTIONS(2672), + [anon_sym_property] = ACTIONS(2672), + [anon_sym_PROPERTY] = ACTIONS(2672), + [anon_sym_Public] = ACTIONS(2672), + [anon_sym_public] = ACTIONS(2672), + [anon_sym_PUBLIC] = ACTIONS(2672), + [anon_sym_Remote] = ACTIONS(2672), + [anon_sym_remote] = ACTIONS(2672), + [anon_sym_REMOTE] = ACTIONS(2672), + [anon_sym_Return] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_RETURN] = ACTIONS(2672), + [anon_sym_Static] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_STATIC] = ACTIONS(2672), + [anon_sym_Switch] = ACTIONS(2672), + [anon_sym_switch] = ACTIONS(2672), + [anon_sym_SWITCH] = ACTIONS(2672), + [anon_sym_Throw] = ACTIONS(2672), + [anon_sym_throw] = ACTIONS(2672), + [anon_sym_THROW] = ACTIONS(2672), + [anon_sym_Try] = ACTIONS(2672), + [anon_sym_try] = ACTIONS(2672), + [anon_sym_TRY] = ACTIONS(2672), + [anon_sym_Var] = ACTIONS(2672), + [anon_sym_var] = ACTIONS(2672), + [anon_sym_VAR] = ACTIONS(2672), + [anon_sym_While] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_WHILE] = ACTIONS(2672), + [anon_sym_With] = ACTIONS(2672), + [anon_sym_with] = ACTIONS(2672), + [anon_sym_WITH] = ACTIONS(2672), + [sym__automatic_semicolon] = ACTIONS(3170), + [sym_cf_comment] = ACTIONS(2670), + [sym__java_block_open] = ACTIONS(2670), + [sym__static_type_prefix] = ACTIONS(2670), + }, + [STATE(809)] = { + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_Query] = ACTIONS(2680), + [anon_sym_query] = ACTIONS(2680), + [anon_sym_QUERY] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [aux_sym_unary_operator_token1] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2680), + [aux_sym_number_token2] = ACTIONS(2678), + [anon_sym_This] = ACTIONS(2680), + [anon_sym_this] = ACTIONS(2680), + [anon_sym_THIS] = ACTIONS(2680), + [anon_sym_Super] = ACTIONS(2680), + [anon_sym_super] = ACTIONS(2680), + [anon_sym_SUPER] = ACTIONS(2680), + [anon_sym_True] = ACTIONS(2680), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_TRUE] = ACTIONS(2680), + [anon_sym_False] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [anon_sym_FALSE] = ACTIONS(2680), + [anon_sym_Null] = ACTIONS(2680), + [anon_sym_null] = ACTIONS(2680), + [anon_sym_NULL] = ACTIONS(2680), + [anon_sym_Undefined] = ACTIONS(2680), + [anon_sym_undefined] = ACTIONS(2680), + [anon_sym_UNDEFINED] = ACTIONS(2680), + [anon_sym_get] = ACTIONS(2680), + [anon_sym_set] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [sym_hash_empty] = ACTIONS(2678), + [anon_sym_export] = ACTIONS(2680), + [anon_sym_QueryExecute] = ACTIONS(2680), + [anon_sym_queryexecute] = ACTIONS(2680), + [anon_sym_QUERYEXECUTE] = ACTIONS(2680), + [anon_sym_queryExecute] = ACTIONS(2680), + [anon_sym_BQUOTE] = ACTIONS(2680), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2678), + [anon_sym_Abstract] = ACTIONS(2680), + [anon_sym_abstract] = ACTIONS(2680), + [anon_sym_ABSTRACT] = ACTIONS(2680), + [anon_sym_Break] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_BREAK] = ACTIONS(2680), + [anon_sym_Case] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_CASE] = ACTIONS(2680), + [anon_sym_Component] = ACTIONS(2680), + [anon_sym_component] = ACTIONS(2680), + [anon_sym_COMPONENT] = ACTIONS(2680), + [anon_sym_Continue] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_CONTINUE] = ACTIONS(2680), + [anon_sym_Debugger] = ACTIONS(2680), + [anon_sym_debugger] = ACTIONS(2680), + [anon_sym_DEBUGGER] = ACTIONS(2680), + [anon_sym_Default] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_DEFAULT] = ACTIONS(2680), + [anon_sym_Do] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_DO] = ACTIONS(2680), + [anon_sym_Final] = ACTIONS(2680), + [anon_sym_final] = ACTIONS(2680), + [anon_sym_FINAL] = ACTIONS(2680), + [anon_sym_For] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_FOR] = ACTIONS(2680), + [anon_sym_Function] = ACTIONS(2680), + [anon_sym_function] = ACTIONS(2680), + [anon_sym_FUNCTION] = ACTIONS(2680), + [anon_sym_If] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_IF] = ACTIONS(2680), + [anon_sym_Import] = ACTIONS(2680), + [anon_sym_import] = ACTIONS(2680), + [anon_sym_IMPORT] = ACTIONS(2680), + [anon_sym_Include] = ACTIONS(2680), + [anon_sym_include] = ACTIONS(2680), + [anon_sym_INCLUDE] = ACTIONS(2680), + [anon_sym_Interface] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_INTERFACE] = ACTIONS(2680), + [anon_sym_New] = ACTIONS(2680), + [anon_sym_new] = ACTIONS(2680), + [anon_sym_NEW] = ACTIONS(2680), + [anon_sym_Package] = ACTIONS(2680), + [anon_sym_package] = ACTIONS(2680), + [anon_sym_PACKAGE] = ACTIONS(2680), + [anon_sym_Private] = ACTIONS(2680), + [anon_sym_private] = ACTIONS(2680), + [anon_sym_PRIVATE] = ACTIONS(2680), + [anon_sym_Property] = ACTIONS(2680), + [anon_sym_property] = ACTIONS(2680), + [anon_sym_PROPERTY] = ACTIONS(2680), + [anon_sym_Public] = ACTIONS(2680), + [anon_sym_public] = ACTIONS(2680), + [anon_sym_PUBLIC] = ACTIONS(2680), + [anon_sym_Remote] = ACTIONS(2680), + [anon_sym_remote] = ACTIONS(2680), + [anon_sym_REMOTE] = ACTIONS(2680), + [anon_sym_Return] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_RETURN] = ACTIONS(2680), + [anon_sym_Static] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_STATIC] = ACTIONS(2680), + [anon_sym_Switch] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_SWITCH] = ACTIONS(2680), + [anon_sym_Throw] = ACTIONS(2680), + [anon_sym_throw] = ACTIONS(2680), + [anon_sym_THROW] = ACTIONS(2680), + [anon_sym_Try] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2680), + [anon_sym_TRY] = ACTIONS(2680), + [anon_sym_Var] = ACTIONS(2680), + [anon_sym_var] = ACTIONS(2680), + [anon_sym_VAR] = ACTIONS(2680), + [anon_sym_While] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_WHILE] = ACTIONS(2680), + [anon_sym_With] = ACTIONS(2680), + [anon_sym_with] = ACTIONS(2680), + [anon_sym_WITH] = ACTIONS(2680), + [sym__automatic_semicolon] = ACTIONS(3172), + [sym_cf_comment] = ACTIONS(2678), + [sym__java_block_open] = ACTIONS(2678), + [sym__static_type_prefix] = ACTIONS(2678), + }, + [STATE(810)] = { [ts_builtin_sym_end] = ACTIONS(2684), [sym_identifier] = ACTIONS(2686), [anon_sym_LBRACE] = ACTIONS(2684), @@ -165984,1472 +167742,3787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_With] = ACTIONS(2686), [anon_sym_with] = ACTIONS(2686), [anon_sym_WITH] = ACTIONS(2686), - [sym__automatic_semicolon] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3174), [sym_cf_comment] = ACTIONS(2684), [sym__java_block_open] = ACTIONS(2684), [sym__static_type_prefix] = ACTIONS(2684), }, - [STATE(800)] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_Query] = ACTIONS(1702), - [anon_sym_query] = ACTIONS(1702), - [anon_sym_QUERY] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_TILDE] = ACTIONS(1700), - [aux_sym_unary_operator_token1] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1702), - [aux_sym_number_token2] = ACTIONS(1700), - [anon_sym_This] = ACTIONS(1702), - [anon_sym_this] = ACTIONS(1702), - [anon_sym_THIS] = ACTIONS(1702), - [anon_sym_Super] = ACTIONS(1702), - [anon_sym_super] = ACTIONS(1702), - [anon_sym_SUPER] = ACTIONS(1702), - [anon_sym_True] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_TRUE] = ACTIONS(1702), - [anon_sym_False] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [anon_sym_FALSE] = ACTIONS(1702), - [anon_sym_Null] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1702), - [anon_sym_NULL] = ACTIONS(1702), - [anon_sym_Undefined] = ACTIONS(1702), - [anon_sym_undefined] = ACTIONS(1702), - [anon_sym_UNDEFINED] = ACTIONS(1702), - [anon_sym_get] = ACTIONS(1702), - [anon_sym_set] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [sym_hash_empty] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1702), - [anon_sym_QueryExecute] = ACTIONS(1702), - [anon_sym_queryexecute] = ACTIONS(1702), - [anon_sym_QUERYEXECUTE] = ACTIONS(1702), - [anon_sym_queryExecute] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1700), - [anon_sym_Abstract] = ACTIONS(1702), - [anon_sym_abstract] = ACTIONS(1702), - [anon_sym_ABSTRACT] = ACTIONS(1702), - [anon_sym_Break] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_BREAK] = ACTIONS(1702), - [anon_sym_Case] = ACTIONS(1702), - [anon_sym_case] = ACTIONS(1702), - [anon_sym_CASE] = ACTIONS(1702), - [anon_sym_Component] = ACTIONS(1702), - [anon_sym_component] = ACTIONS(1702), - [anon_sym_COMPONENT] = ACTIONS(1702), - [anon_sym_Continue] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_CONTINUE] = ACTIONS(1702), - [anon_sym_Debugger] = ACTIONS(1702), - [anon_sym_debugger] = ACTIONS(1702), - [anon_sym_DEBUGGER] = ACTIONS(1702), - [anon_sym_Default] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_DEFAULT] = ACTIONS(1702), - [anon_sym_Do] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_DO] = ACTIONS(1702), - [anon_sym_Final] = ACTIONS(1702), - [anon_sym_final] = ACTIONS(1702), - [anon_sym_FINAL] = ACTIONS(1702), - [anon_sym_For] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_FOR] = ACTIONS(1702), - [anon_sym_Function] = ACTIONS(1702), - [anon_sym_function] = ACTIONS(1702), - [anon_sym_FUNCTION] = ACTIONS(1702), - [anon_sym_If] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_IF] = ACTIONS(1702), - [anon_sym_Import] = ACTIONS(1702), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_IMPORT] = ACTIONS(1702), - [anon_sym_Include] = ACTIONS(1702), - [anon_sym_include] = ACTIONS(1702), - [anon_sym_INCLUDE] = ACTIONS(1702), - [anon_sym_Interface] = ACTIONS(1702), - [anon_sym_interface] = ACTIONS(1702), - [anon_sym_INTERFACE] = ACTIONS(1702), - [anon_sym_New] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_NEW] = ACTIONS(1702), - [anon_sym_Package] = ACTIONS(1702), - [anon_sym_package] = ACTIONS(1702), - [anon_sym_PACKAGE] = ACTIONS(1702), - [anon_sym_Private] = ACTIONS(1702), - [anon_sym_private] = ACTIONS(1702), - [anon_sym_PRIVATE] = ACTIONS(1702), - [anon_sym_Property] = ACTIONS(1702), - [anon_sym_property] = ACTIONS(1702), - [anon_sym_PROPERTY] = ACTIONS(1702), - [anon_sym_Public] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_PUBLIC] = ACTIONS(1702), - [anon_sym_Remote] = ACTIONS(1702), - [anon_sym_remote] = ACTIONS(1702), - [anon_sym_REMOTE] = ACTIONS(1702), - [anon_sym_Return] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_RETURN] = ACTIONS(1702), - [anon_sym_Static] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_STATIC] = ACTIONS(1702), - [anon_sym_Switch] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_SWITCH] = ACTIONS(1702), - [anon_sym_Throw] = ACTIONS(1702), - [anon_sym_throw] = ACTIONS(1702), - [anon_sym_THROW] = ACTIONS(1702), - [anon_sym_Try] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_TRY] = ACTIONS(1702), - [anon_sym_Var] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_VAR] = ACTIONS(1702), - [anon_sym_While] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_WHILE] = ACTIONS(1702), - [anon_sym_With] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_WITH] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(1716), - [sym_cf_comment] = ACTIONS(1700), - [sym__java_block_open] = ACTIONS(1700), - [sym__static_type_prefix] = ACTIONS(1700), + [STATE(811)] = { + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_Query] = ACTIONS(1957), + [anon_sym_query] = ACTIONS(1957), + [anon_sym_QUERY] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1959), + [aux_sym_unary_operator_token1] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1957), + [aux_sym_number_token2] = ACTIONS(1959), + [anon_sym_This] = ACTIONS(1957), + [anon_sym_this] = ACTIONS(1957), + [anon_sym_THIS] = ACTIONS(1957), + [anon_sym_Super] = ACTIONS(1957), + [anon_sym_super] = ACTIONS(1957), + [anon_sym_SUPER] = ACTIONS(1957), + [anon_sym_True] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_TRUE] = ACTIONS(1957), + [anon_sym_False] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_FALSE] = ACTIONS(1957), + [anon_sym_Null] = ACTIONS(1957), + [anon_sym_null] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_Undefined] = ACTIONS(1957), + [anon_sym_undefined] = ACTIONS(1957), + [anon_sym_UNDEFINED] = ACTIONS(1957), + [anon_sym_get] = ACTIONS(1957), + [anon_sym_set] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1957), + [sym_hash_empty] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_QueryExecute] = ACTIONS(1957), + [anon_sym_queryexecute] = ACTIONS(1957), + [anon_sym_QUERYEXECUTE] = ACTIONS(1957), + [anon_sym_queryExecute] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1957), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1959), + [anon_sym_Abstract] = ACTIONS(1957), + [anon_sym_abstract] = ACTIONS(1957), + [anon_sym_ABSTRACT] = ACTIONS(1957), + [anon_sym_Break] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_BREAK] = ACTIONS(1957), + [anon_sym_Case] = ACTIONS(1957), + [anon_sym_case] = ACTIONS(1957), + [anon_sym_CASE] = ACTIONS(1957), + [anon_sym_Component] = ACTIONS(1957), + [anon_sym_component] = ACTIONS(1957), + [anon_sym_COMPONENT] = ACTIONS(1957), + [anon_sym_Continue] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_CONTINUE] = ACTIONS(1957), + [anon_sym_Debugger] = ACTIONS(1957), + [anon_sym_debugger] = ACTIONS(1957), + [anon_sym_DEBUGGER] = ACTIONS(1957), + [anon_sym_Default] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_DEFAULT] = ACTIONS(1957), + [anon_sym_Do] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_DO] = ACTIONS(1957), + [anon_sym_Final] = ACTIONS(1957), + [anon_sym_final] = ACTIONS(1957), + [anon_sym_FINAL] = ACTIONS(1957), + [anon_sym_For] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_FOR] = ACTIONS(1957), + [anon_sym_Function] = ACTIONS(1957), + [anon_sym_function] = ACTIONS(1957), + [anon_sym_FUNCTION] = ACTIONS(1957), + [anon_sym_If] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_IF] = ACTIONS(1957), + [anon_sym_Import] = ACTIONS(1957), + [anon_sym_import] = ACTIONS(1957), + [anon_sym_IMPORT] = ACTIONS(1957), + [anon_sym_Include] = ACTIONS(1957), + [anon_sym_include] = ACTIONS(1957), + [anon_sym_INCLUDE] = ACTIONS(1957), + [anon_sym_Interface] = ACTIONS(1957), + [anon_sym_interface] = ACTIONS(1957), + [anon_sym_INTERFACE] = ACTIONS(1957), + [anon_sym_New] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_NEW] = ACTIONS(1957), + [anon_sym_Package] = ACTIONS(1957), + [anon_sym_package] = ACTIONS(1957), + [anon_sym_PACKAGE] = ACTIONS(1957), + [anon_sym_Private] = ACTIONS(1957), + [anon_sym_private] = ACTIONS(1957), + [anon_sym_PRIVATE] = ACTIONS(1957), + [anon_sym_Property] = ACTIONS(1957), + [anon_sym_property] = ACTIONS(1957), + [anon_sym_PROPERTY] = ACTIONS(1957), + [anon_sym_Public] = ACTIONS(1957), + [anon_sym_public] = ACTIONS(1957), + [anon_sym_PUBLIC] = ACTIONS(1957), + [anon_sym_Remote] = ACTIONS(1957), + [anon_sym_remote] = ACTIONS(1957), + [anon_sym_REMOTE] = ACTIONS(1957), + [anon_sym_Return] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_RETURN] = ACTIONS(1957), + [anon_sym_Static] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_STATIC] = ACTIONS(1957), + [anon_sym_Switch] = ACTIONS(1957), + [anon_sym_switch] = ACTIONS(1957), + [anon_sym_SWITCH] = ACTIONS(1957), + [anon_sym_Throw] = ACTIONS(1957), + [anon_sym_throw] = ACTIONS(1957), + [anon_sym_THROW] = ACTIONS(1957), + [anon_sym_Try] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_TRY] = ACTIONS(1957), + [anon_sym_Var] = ACTIONS(1957), + [anon_sym_var] = ACTIONS(1957), + [anon_sym_VAR] = ACTIONS(1957), + [anon_sym_While] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_WHILE] = ACTIONS(1957), + [anon_sym_With] = ACTIONS(1957), + [anon_sym_with] = ACTIONS(1957), + [anon_sym_WITH] = ACTIONS(1957), + [sym__automatic_semicolon] = ACTIONS(1959), + [sym_cf_comment] = ACTIONS(1959), + [sym__java_block_open] = ACTIONS(1959), + [sym__static_type_prefix] = ACTIONS(1959), + }, + [STATE(812)] = { + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_Query] = ACTIONS(2610), + [anon_sym_query] = ACTIONS(2610), + [anon_sym_QUERY] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_SLASH] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2608), + [anon_sym_TILDE] = ACTIONS(2608), + [aux_sym_unary_operator_token1] = ACTIONS(2610), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2608), + [anon_sym_SQUOTE] = ACTIONS(2608), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2610), + [aux_sym_number_token2] = ACTIONS(2608), + [anon_sym_This] = ACTIONS(2610), + [anon_sym_this] = ACTIONS(2610), + [anon_sym_THIS] = ACTIONS(2610), + [anon_sym_Super] = ACTIONS(2610), + [anon_sym_super] = ACTIONS(2610), + [anon_sym_SUPER] = ACTIONS(2610), + [anon_sym_True] = ACTIONS(2610), + [anon_sym_true] = ACTIONS(2610), + [anon_sym_TRUE] = ACTIONS(2610), + [anon_sym_False] = ACTIONS(2610), + [anon_sym_false] = ACTIONS(2610), + [anon_sym_FALSE] = ACTIONS(2610), + [anon_sym_Null] = ACTIONS(2610), + [anon_sym_null] = ACTIONS(2610), + [anon_sym_NULL] = ACTIONS(2610), + [anon_sym_Undefined] = ACTIONS(2610), + [anon_sym_undefined] = ACTIONS(2610), + [anon_sym_UNDEFINED] = ACTIONS(2610), + [anon_sym_get] = ACTIONS(2610), + [anon_sym_set] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(2610), + [sym_hash_empty] = ACTIONS(2608), + [anon_sym_export] = ACTIONS(2610), + [anon_sym_QueryExecute] = ACTIONS(2610), + [anon_sym_queryexecute] = ACTIONS(2610), + [anon_sym_QUERYEXECUTE] = ACTIONS(2610), + [anon_sym_queryExecute] = ACTIONS(2610), + [anon_sym_BQUOTE] = ACTIONS(2610), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2608), + [anon_sym_Abstract] = ACTIONS(2610), + [anon_sym_abstract] = ACTIONS(2610), + [anon_sym_ABSTRACT] = ACTIONS(2610), + [anon_sym_Break] = ACTIONS(2610), + [anon_sym_break] = ACTIONS(2610), + [anon_sym_BREAK] = ACTIONS(2610), + [anon_sym_Case] = ACTIONS(2610), + [anon_sym_case] = ACTIONS(2610), + [anon_sym_CASE] = ACTIONS(2610), + [anon_sym_Component] = ACTIONS(2610), + [anon_sym_component] = ACTIONS(2610), + [anon_sym_COMPONENT] = ACTIONS(2610), + [anon_sym_Continue] = ACTIONS(2610), + [anon_sym_continue] = ACTIONS(2610), + [anon_sym_CONTINUE] = ACTIONS(2610), + [anon_sym_Debugger] = ACTIONS(2610), + [anon_sym_debugger] = ACTIONS(2610), + [anon_sym_DEBUGGER] = ACTIONS(2610), + [anon_sym_Default] = ACTIONS(2610), + [anon_sym_default] = ACTIONS(2610), + [anon_sym_DEFAULT] = ACTIONS(2610), + [anon_sym_Do] = ACTIONS(2610), + [anon_sym_do] = ACTIONS(2610), + [anon_sym_DO] = ACTIONS(2610), + [anon_sym_Final] = ACTIONS(2610), + [anon_sym_final] = ACTIONS(2610), + [anon_sym_FINAL] = ACTIONS(2610), + [anon_sym_For] = ACTIONS(2610), + [anon_sym_for] = ACTIONS(2610), + [anon_sym_FOR] = ACTIONS(2610), + [anon_sym_Function] = ACTIONS(2610), + [anon_sym_function] = ACTIONS(2610), + [anon_sym_FUNCTION] = ACTIONS(2610), + [anon_sym_If] = ACTIONS(2610), + [anon_sym_if] = ACTIONS(2610), + [anon_sym_IF] = ACTIONS(2610), + [anon_sym_Import] = ACTIONS(2610), + [anon_sym_import] = ACTIONS(2610), + [anon_sym_IMPORT] = ACTIONS(2610), + [anon_sym_Include] = ACTIONS(2610), + [anon_sym_include] = ACTIONS(2610), + [anon_sym_INCLUDE] = ACTIONS(2610), + [anon_sym_Interface] = ACTIONS(2610), + [anon_sym_interface] = ACTIONS(2610), + [anon_sym_INTERFACE] = ACTIONS(2610), + [anon_sym_New] = ACTIONS(2610), + [anon_sym_new] = ACTIONS(2610), + [anon_sym_NEW] = ACTIONS(2610), + [anon_sym_Package] = ACTIONS(2610), + [anon_sym_package] = ACTIONS(2610), + [anon_sym_PACKAGE] = ACTIONS(2610), + [anon_sym_Private] = ACTIONS(2610), + [anon_sym_private] = ACTIONS(2610), + [anon_sym_PRIVATE] = ACTIONS(2610), + [anon_sym_Property] = ACTIONS(2610), + [anon_sym_property] = ACTIONS(2610), + [anon_sym_PROPERTY] = ACTIONS(2610), + [anon_sym_Public] = ACTIONS(2610), + [anon_sym_public] = ACTIONS(2610), + [anon_sym_PUBLIC] = ACTIONS(2610), + [anon_sym_Remote] = ACTIONS(2610), + [anon_sym_remote] = ACTIONS(2610), + [anon_sym_REMOTE] = ACTIONS(2610), + [anon_sym_Return] = ACTIONS(2610), + [anon_sym_return] = ACTIONS(2610), + [anon_sym_RETURN] = ACTIONS(2610), + [anon_sym_Static] = ACTIONS(2610), + [anon_sym_static] = ACTIONS(2610), + [anon_sym_STATIC] = ACTIONS(2610), + [anon_sym_Switch] = ACTIONS(2610), + [anon_sym_switch] = ACTIONS(2610), + [anon_sym_SWITCH] = ACTIONS(2610), + [anon_sym_Throw] = ACTIONS(2610), + [anon_sym_throw] = ACTIONS(2610), + [anon_sym_THROW] = ACTIONS(2610), + [anon_sym_Try] = ACTIONS(2610), + [anon_sym_try] = ACTIONS(2610), + [anon_sym_TRY] = ACTIONS(2610), + [anon_sym_Var] = ACTIONS(2610), + [anon_sym_var] = ACTIONS(2610), + [anon_sym_VAR] = ACTIONS(2610), + [anon_sym_While] = ACTIONS(2610), + [anon_sym_while] = ACTIONS(2610), + [anon_sym_WHILE] = ACTIONS(2610), + [anon_sym_With] = ACTIONS(2610), + [anon_sym_with] = ACTIONS(2610), + [anon_sym_WITH] = ACTIONS(2610), + [sym__automatic_semicolon] = ACTIONS(3176), + [sym_cf_comment] = ACTIONS(2608), + [sym__java_block_open] = ACTIONS(2608), + [sym__static_type_prefix] = ACTIONS(2608), + }, + [STATE(813)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(1588), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), + }, + [STATE(814)] = { + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_Query] = ACTIONS(2660), + [anon_sym_query] = ACTIONS(2660), + [anon_sym_QUERY] = ACTIONS(2660), + [anon_sym_PLUS] = ACTIONS(2660), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_SLASH] = ACTIONS(2660), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_TILDE] = ACTIONS(2658), + [aux_sym_unary_operator_token1] = ACTIONS(2660), + [anon_sym_PLUS_PLUS] = ACTIONS(2658), + [anon_sym_DASH_DASH] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2658), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2660), + [aux_sym_number_token2] = ACTIONS(2658), + [anon_sym_This] = ACTIONS(2660), + [anon_sym_this] = ACTIONS(2660), + [anon_sym_THIS] = ACTIONS(2660), + [anon_sym_Super] = ACTIONS(2660), + [anon_sym_super] = ACTIONS(2660), + [anon_sym_SUPER] = ACTIONS(2660), + [anon_sym_True] = ACTIONS(2660), + [anon_sym_true] = ACTIONS(2660), + [anon_sym_TRUE] = ACTIONS(2660), + [anon_sym_False] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [anon_sym_FALSE] = ACTIONS(2660), + [anon_sym_Null] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2660), + [anon_sym_NULL] = ACTIONS(2660), + [anon_sym_Undefined] = ACTIONS(2660), + [anon_sym_undefined] = ACTIONS(2660), + [anon_sym_UNDEFINED] = ACTIONS(2660), + [anon_sym_get] = ACTIONS(2660), + [anon_sym_set] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2660), + [sym_hash_empty] = ACTIONS(2658), + [anon_sym_export] = ACTIONS(2660), + [anon_sym_QueryExecute] = ACTIONS(2660), + [anon_sym_queryexecute] = ACTIONS(2660), + [anon_sym_QUERYEXECUTE] = ACTIONS(2660), + [anon_sym_queryExecute] = ACTIONS(2660), + [anon_sym_BQUOTE] = ACTIONS(2660), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2658), + [anon_sym_Abstract] = ACTIONS(2660), + [anon_sym_abstract] = ACTIONS(2660), + [anon_sym_ABSTRACT] = ACTIONS(2660), + [anon_sym_Break] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_BREAK] = ACTIONS(2660), + [anon_sym_Case] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(2660), + [anon_sym_CASE] = ACTIONS(2660), + [anon_sym_Component] = ACTIONS(2660), + [anon_sym_component] = ACTIONS(2660), + [anon_sym_COMPONENT] = ACTIONS(2660), + [anon_sym_Continue] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_CONTINUE] = ACTIONS(2660), + [anon_sym_Debugger] = ACTIONS(2660), + [anon_sym_debugger] = ACTIONS(2660), + [anon_sym_DEBUGGER] = ACTIONS(2660), + [anon_sym_Default] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2660), + [anon_sym_DEFAULT] = ACTIONS(2660), + [anon_sym_Do] = ACTIONS(2660), + [anon_sym_do] = ACTIONS(2660), + [anon_sym_DO] = ACTIONS(2660), + [anon_sym_Final] = ACTIONS(2660), + [anon_sym_final] = ACTIONS(2660), + [anon_sym_FINAL] = ACTIONS(2660), + [anon_sym_For] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_FOR] = ACTIONS(2660), + [anon_sym_Function] = ACTIONS(2660), + [anon_sym_function] = ACTIONS(2660), + [anon_sym_FUNCTION] = ACTIONS(2660), + [anon_sym_If] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_IF] = ACTIONS(2660), + [anon_sym_Import] = ACTIONS(2660), + [anon_sym_import] = ACTIONS(2660), + [anon_sym_IMPORT] = ACTIONS(2660), + [anon_sym_Include] = ACTIONS(2660), + [anon_sym_include] = ACTIONS(2660), + [anon_sym_INCLUDE] = ACTIONS(2660), + [anon_sym_Interface] = ACTIONS(2660), + [anon_sym_interface] = ACTIONS(2660), + [anon_sym_INTERFACE] = ACTIONS(2660), + [anon_sym_New] = ACTIONS(2660), + [anon_sym_new] = ACTIONS(2660), + [anon_sym_NEW] = ACTIONS(2660), + [anon_sym_Package] = ACTIONS(2660), + [anon_sym_package] = ACTIONS(2660), + [anon_sym_PACKAGE] = ACTIONS(2660), + [anon_sym_Private] = ACTIONS(2660), + [anon_sym_private] = ACTIONS(2660), + [anon_sym_PRIVATE] = ACTIONS(2660), + [anon_sym_Property] = ACTIONS(2660), + [anon_sym_property] = ACTIONS(2660), + [anon_sym_PROPERTY] = ACTIONS(2660), + [anon_sym_Public] = ACTIONS(2660), + [anon_sym_public] = ACTIONS(2660), + [anon_sym_PUBLIC] = ACTIONS(2660), + [anon_sym_Remote] = ACTIONS(2660), + [anon_sym_remote] = ACTIONS(2660), + [anon_sym_REMOTE] = ACTIONS(2660), + [anon_sym_Return] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_RETURN] = ACTIONS(2660), + [anon_sym_Static] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_STATIC] = ACTIONS(2660), + [anon_sym_Switch] = ACTIONS(2660), + [anon_sym_switch] = ACTIONS(2660), + [anon_sym_SWITCH] = ACTIONS(2660), + [anon_sym_Throw] = ACTIONS(2660), + [anon_sym_throw] = ACTIONS(2660), + [anon_sym_THROW] = ACTIONS(2660), + [anon_sym_Try] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [anon_sym_TRY] = ACTIONS(2660), + [anon_sym_Var] = ACTIONS(2660), + [anon_sym_var] = ACTIONS(2660), + [anon_sym_VAR] = ACTIONS(2660), + [anon_sym_While] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_WHILE] = ACTIONS(2660), + [anon_sym_With] = ACTIONS(2660), + [anon_sym_with] = ACTIONS(2660), + [anon_sym_WITH] = ACTIONS(2660), + [sym__automatic_semicolon] = ACTIONS(3178), + [sym_cf_comment] = ACTIONS(2658), + [sym__java_block_open] = ACTIONS(2658), + [sym__static_type_prefix] = ACTIONS(2658), + }, + [STATE(815)] = { + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_Query] = ACTIONS(1700), + [anon_sym_query] = ACTIONS(1700), + [anon_sym_QUERY] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_SLASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_TILDE] = ACTIONS(1698), + [aux_sym_unary_operator_token1] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1700), + [aux_sym_number_token2] = ACTIONS(1698), + [anon_sym_This] = ACTIONS(1700), + [anon_sym_this] = ACTIONS(1700), + [anon_sym_THIS] = ACTIONS(1700), + [anon_sym_Super] = ACTIONS(1700), + [anon_sym_super] = ACTIONS(1700), + [anon_sym_SUPER] = ACTIONS(1700), + [anon_sym_True] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1700), + [anon_sym_TRUE] = ACTIONS(1700), + [anon_sym_False] = ACTIONS(1700), + [anon_sym_false] = ACTIONS(1700), + [anon_sym_FALSE] = ACTIONS(1700), + [anon_sym_Null] = ACTIONS(1700), + [anon_sym_null] = ACTIONS(1700), + [anon_sym_NULL] = ACTIONS(1700), + [anon_sym_Undefined] = ACTIONS(1700), + [anon_sym_undefined] = ACTIONS(1700), + [anon_sym_UNDEFINED] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1700), + [anon_sym_set] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1700), + [sym_hash_empty] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1700), + [anon_sym_QueryExecute] = ACTIONS(1700), + [anon_sym_queryexecute] = ACTIONS(1700), + [anon_sym_QUERYEXECUTE] = ACTIONS(1700), + [anon_sym_queryExecute] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1698), + [anon_sym_Abstract] = ACTIONS(1700), + [anon_sym_abstract] = ACTIONS(1700), + [anon_sym_ABSTRACT] = ACTIONS(1700), + [anon_sym_Break] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_BREAK] = ACTIONS(1700), + [anon_sym_Case] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_CASE] = ACTIONS(1700), + [anon_sym_Component] = ACTIONS(1700), + [anon_sym_component] = ACTIONS(1700), + [anon_sym_COMPONENT] = ACTIONS(1700), + [anon_sym_Continue] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_CONTINUE] = ACTIONS(1700), + [anon_sym_Debugger] = ACTIONS(1700), + [anon_sym_debugger] = ACTIONS(1700), + [anon_sym_DEBUGGER] = ACTIONS(1700), + [anon_sym_Default] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_DEFAULT] = ACTIONS(1700), + [anon_sym_Do] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_DO] = ACTIONS(1700), + [anon_sym_Final] = ACTIONS(1700), + [anon_sym_final] = ACTIONS(1700), + [anon_sym_FINAL] = ACTIONS(1700), + [anon_sym_For] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_FOR] = ACTIONS(1700), + [anon_sym_Function] = ACTIONS(1700), + [anon_sym_function] = ACTIONS(1700), + [anon_sym_FUNCTION] = ACTIONS(1700), + [anon_sym_If] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_IF] = ACTIONS(1700), + [anon_sym_Import] = ACTIONS(1700), + [anon_sym_import] = ACTIONS(1700), + [anon_sym_IMPORT] = ACTIONS(1700), + [anon_sym_Include] = ACTIONS(1700), + [anon_sym_include] = ACTIONS(1700), + [anon_sym_INCLUDE] = ACTIONS(1700), + [anon_sym_Interface] = ACTIONS(1700), + [anon_sym_interface] = ACTIONS(1700), + [anon_sym_INTERFACE] = ACTIONS(1700), + [anon_sym_New] = ACTIONS(1700), + [anon_sym_new] = ACTIONS(1700), + [anon_sym_NEW] = ACTIONS(1700), + [anon_sym_Package] = ACTIONS(1700), + [anon_sym_package] = ACTIONS(1700), + [anon_sym_PACKAGE] = ACTIONS(1700), + [anon_sym_Private] = ACTIONS(1700), + [anon_sym_private] = ACTIONS(1700), + [anon_sym_PRIVATE] = ACTIONS(1700), + [anon_sym_Property] = ACTIONS(1700), + [anon_sym_property] = ACTIONS(1700), + [anon_sym_PROPERTY] = ACTIONS(1700), + [anon_sym_Public] = ACTIONS(1700), + [anon_sym_public] = ACTIONS(1700), + [anon_sym_PUBLIC] = ACTIONS(1700), + [anon_sym_Remote] = ACTIONS(1700), + [anon_sym_remote] = ACTIONS(1700), + [anon_sym_REMOTE] = ACTIONS(1700), + [anon_sym_Return] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_RETURN] = ACTIONS(1700), + [anon_sym_Static] = ACTIONS(1700), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_STATIC] = ACTIONS(1700), + [anon_sym_Switch] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_SWITCH] = ACTIONS(1700), + [anon_sym_Throw] = ACTIONS(1700), + [anon_sym_throw] = ACTIONS(1700), + [anon_sym_THROW] = ACTIONS(1700), + [anon_sym_Try] = ACTIONS(1700), + [anon_sym_try] = ACTIONS(1700), + [anon_sym_TRY] = ACTIONS(1700), + [anon_sym_Var] = ACTIONS(1700), + [anon_sym_var] = ACTIONS(1700), + [anon_sym_VAR] = ACTIONS(1700), + [anon_sym_While] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_WHILE] = ACTIONS(1700), + [anon_sym_With] = ACTIONS(1700), + [anon_sym_with] = ACTIONS(1700), + [anon_sym_WITH] = ACTIONS(1700), + [sym__automatic_semicolon] = ACTIONS(1714), + [sym_cf_comment] = ACTIONS(1698), + [sym__java_block_open] = ACTIONS(1698), + [sym__static_type_prefix] = ACTIONS(1698), + }, + [STATE(816)] = { + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_Query] = ACTIONS(2720), + [anon_sym_query] = ACTIONS(2720), + [anon_sym_QUERY] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_SLASH] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [aux_sym_unary_operator_token1] = ACTIONS(2720), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2718), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2720), + [aux_sym_number_token2] = ACTIONS(2718), + [anon_sym_This] = ACTIONS(2720), + [anon_sym_this] = ACTIONS(2720), + [anon_sym_THIS] = ACTIONS(2720), + [anon_sym_Super] = ACTIONS(2720), + [anon_sym_super] = ACTIONS(2720), + [anon_sym_SUPER] = ACTIONS(2720), + [anon_sym_True] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2720), + [anon_sym_TRUE] = ACTIONS(2720), + [anon_sym_False] = ACTIONS(2720), + [anon_sym_false] = ACTIONS(2720), + [anon_sym_FALSE] = ACTIONS(2720), + [anon_sym_Null] = ACTIONS(2720), + [anon_sym_null] = ACTIONS(2720), + [anon_sym_NULL] = ACTIONS(2720), + [anon_sym_Undefined] = ACTIONS(2720), + [anon_sym_undefined] = ACTIONS(2720), + [anon_sym_UNDEFINED] = ACTIONS(2720), + [anon_sym_get] = ACTIONS(2720), + [anon_sym_set] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [sym_hash_empty] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2720), + [anon_sym_QueryExecute] = ACTIONS(2720), + [anon_sym_queryexecute] = ACTIONS(2720), + [anon_sym_QUERYEXECUTE] = ACTIONS(2720), + [anon_sym_queryExecute] = ACTIONS(2720), + [anon_sym_BQUOTE] = ACTIONS(2720), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2718), + [anon_sym_Abstract] = ACTIONS(2720), + [anon_sym_abstract] = ACTIONS(2720), + [anon_sym_ABSTRACT] = ACTIONS(2720), + [anon_sym_Break] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_BREAK] = ACTIONS(2720), + [anon_sym_Case] = ACTIONS(2720), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_CASE] = ACTIONS(2720), + [anon_sym_Component] = ACTIONS(2720), + [anon_sym_component] = ACTIONS(2720), + [anon_sym_COMPONENT] = ACTIONS(2720), + [anon_sym_Continue] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_CONTINUE] = ACTIONS(2720), + [anon_sym_Debugger] = ACTIONS(2720), + [anon_sym_debugger] = ACTIONS(2720), + [anon_sym_DEBUGGER] = ACTIONS(2720), + [anon_sym_Default] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_DEFAULT] = ACTIONS(2720), + [anon_sym_Do] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_DO] = ACTIONS(2720), + [anon_sym_Final] = ACTIONS(2720), + [anon_sym_final] = ACTIONS(2720), + [anon_sym_FINAL] = ACTIONS(2720), + [anon_sym_For] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_FOR] = ACTIONS(2720), + [anon_sym_Function] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2720), + [anon_sym_FUNCTION] = ACTIONS(2720), + [anon_sym_If] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_IF] = ACTIONS(2720), + [anon_sym_Import] = ACTIONS(2720), + [anon_sym_import] = ACTIONS(2720), + [anon_sym_IMPORT] = ACTIONS(2720), + [anon_sym_Include] = ACTIONS(2720), + [anon_sym_include] = ACTIONS(2720), + [anon_sym_INCLUDE] = ACTIONS(2720), + [anon_sym_Interface] = ACTIONS(2720), + [anon_sym_interface] = ACTIONS(2720), + [anon_sym_INTERFACE] = ACTIONS(2720), + [anon_sym_New] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2720), + [anon_sym_NEW] = ACTIONS(2720), + [anon_sym_Package] = ACTIONS(2720), + [anon_sym_package] = ACTIONS(2720), + [anon_sym_PACKAGE] = ACTIONS(2720), + [anon_sym_Private] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_PRIVATE] = ACTIONS(2720), + [anon_sym_Property] = ACTIONS(2720), + [anon_sym_property] = ACTIONS(2720), + [anon_sym_PROPERTY] = ACTIONS(2720), + [anon_sym_Public] = ACTIONS(2720), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_PUBLIC] = ACTIONS(2720), + [anon_sym_Remote] = ACTIONS(2720), + [anon_sym_remote] = ACTIONS(2720), + [anon_sym_REMOTE] = ACTIONS(2720), + [anon_sym_Return] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_RETURN] = ACTIONS(2720), + [anon_sym_Static] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_STATIC] = ACTIONS(2720), + [anon_sym_Switch] = ACTIONS(2720), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_SWITCH] = ACTIONS(2720), + [anon_sym_Throw] = ACTIONS(2720), + [anon_sym_throw] = ACTIONS(2720), + [anon_sym_THROW] = ACTIONS(2720), + [anon_sym_Try] = ACTIONS(2720), + [anon_sym_try] = ACTIONS(2720), + [anon_sym_TRY] = ACTIONS(2720), + [anon_sym_Var] = ACTIONS(2720), + [anon_sym_var] = ACTIONS(2720), + [anon_sym_VAR] = ACTIONS(2720), + [anon_sym_While] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_WHILE] = ACTIONS(2720), + [anon_sym_With] = ACTIONS(2720), + [anon_sym_with] = ACTIONS(2720), + [anon_sym_WITH] = ACTIONS(2720), + [sym_cf_comment] = ACTIONS(2718), + [sym__java_block_open] = ACTIONS(2718), + [sym__static_type_prefix] = ACTIONS(2718), + }, + [STATE(817)] = { + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_Query] = ACTIONS(2724), + [anon_sym_query] = ACTIONS(2724), + [anon_sym_QUERY] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_TILDE] = ACTIONS(2722), + [aux_sym_unary_operator_token1] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_DQUOTE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2724), + [aux_sym_number_token2] = ACTIONS(2722), + [anon_sym_This] = ACTIONS(2724), + [anon_sym_this] = ACTIONS(2724), + [anon_sym_THIS] = ACTIONS(2724), + [anon_sym_Super] = ACTIONS(2724), + [anon_sym_super] = ACTIONS(2724), + [anon_sym_SUPER] = ACTIONS(2724), + [anon_sym_True] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_TRUE] = ACTIONS(2724), + [anon_sym_False] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [anon_sym_FALSE] = ACTIONS(2724), + [anon_sym_Null] = ACTIONS(2724), + [anon_sym_null] = ACTIONS(2724), + [anon_sym_NULL] = ACTIONS(2724), + [anon_sym_Undefined] = ACTIONS(2724), + [anon_sym_undefined] = ACTIONS(2724), + [anon_sym_UNDEFINED] = ACTIONS(2724), + [anon_sym_get] = ACTIONS(2724), + [anon_sym_set] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [sym_hash_empty] = ACTIONS(2722), + [anon_sym_export] = ACTIONS(2724), + [anon_sym_QueryExecute] = ACTIONS(2724), + [anon_sym_queryexecute] = ACTIONS(2724), + [anon_sym_QUERYEXECUTE] = ACTIONS(2724), + [anon_sym_queryExecute] = ACTIONS(2724), + [anon_sym_BQUOTE] = ACTIONS(2724), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2722), + [anon_sym_Abstract] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_ABSTRACT] = ACTIONS(2724), + [anon_sym_Break] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_BREAK] = ACTIONS(2724), + [anon_sym_Case] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_CASE] = ACTIONS(2724), + [anon_sym_Component] = ACTIONS(2724), + [anon_sym_component] = ACTIONS(2724), + [anon_sym_COMPONENT] = ACTIONS(2724), + [anon_sym_Continue] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_CONTINUE] = ACTIONS(2724), + [anon_sym_Debugger] = ACTIONS(2724), + [anon_sym_debugger] = ACTIONS(2724), + [anon_sym_DEBUGGER] = ACTIONS(2724), + [anon_sym_Default] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_DEFAULT] = ACTIONS(2724), + [anon_sym_Do] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_DO] = ACTIONS(2724), + [anon_sym_Final] = ACTIONS(2724), + [anon_sym_final] = ACTIONS(2724), + [anon_sym_FINAL] = ACTIONS(2724), + [anon_sym_For] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_FOR] = ACTIONS(2724), + [anon_sym_Function] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_FUNCTION] = ACTIONS(2724), + [anon_sym_If] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_IF] = ACTIONS(2724), + [anon_sym_Import] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_IMPORT] = ACTIONS(2724), + [anon_sym_Include] = ACTIONS(2724), + [anon_sym_include] = ACTIONS(2724), + [anon_sym_INCLUDE] = ACTIONS(2724), + [anon_sym_Interface] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_INTERFACE] = ACTIONS(2724), + [anon_sym_New] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_NEW] = ACTIONS(2724), + [anon_sym_Package] = ACTIONS(2724), + [anon_sym_package] = ACTIONS(2724), + [anon_sym_PACKAGE] = ACTIONS(2724), + [anon_sym_Private] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_PRIVATE] = ACTIONS(2724), + [anon_sym_Property] = ACTIONS(2724), + [anon_sym_property] = ACTIONS(2724), + [anon_sym_PROPERTY] = ACTIONS(2724), + [anon_sym_Public] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_PUBLIC] = ACTIONS(2724), + [anon_sym_Remote] = ACTIONS(2724), + [anon_sym_remote] = ACTIONS(2724), + [anon_sym_REMOTE] = ACTIONS(2724), + [anon_sym_Return] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_RETURN] = ACTIONS(2724), + [anon_sym_Static] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_STATIC] = ACTIONS(2724), + [anon_sym_Switch] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_SWITCH] = ACTIONS(2724), + [anon_sym_Throw] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_THROW] = ACTIONS(2724), + [anon_sym_Try] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_TRY] = ACTIONS(2724), + [anon_sym_Var] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [anon_sym_VAR] = ACTIONS(2724), + [anon_sym_While] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_WHILE] = ACTIONS(2724), + [anon_sym_With] = ACTIONS(2724), + [anon_sym_with] = ACTIONS(2724), + [anon_sym_WITH] = ACTIONS(2724), + [sym_cf_comment] = ACTIONS(2722), + [sym__java_block_open] = ACTIONS(2722), + [sym__static_type_prefix] = ACTIONS(2722), + }, + [STATE(818)] = { + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_Query] = ACTIONS(2956), + [anon_sym_query] = ACTIONS(2956), + [anon_sym_QUERY] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_unary_operator_token1] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2956), + [aux_sym_number_token2] = ACTIONS(2954), + [anon_sym_This] = ACTIONS(2956), + [anon_sym_this] = ACTIONS(2956), + [anon_sym_THIS] = ACTIONS(2956), + [anon_sym_Super] = ACTIONS(2956), + [anon_sym_super] = ACTIONS(2956), + [anon_sym_SUPER] = ACTIONS(2956), + [anon_sym_True] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2956), + [anon_sym_TRUE] = ACTIONS(2956), + [anon_sym_False] = ACTIONS(2956), + [anon_sym_false] = ACTIONS(2956), + [anon_sym_FALSE] = ACTIONS(2956), + [anon_sym_Null] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_Undefined] = ACTIONS(2956), + [anon_sym_undefined] = ACTIONS(2956), + [anon_sym_UNDEFINED] = ACTIONS(2956), + [anon_sym_get] = ACTIONS(2956), + [anon_sym_set] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [sym_hash_empty] = ACTIONS(2954), + [anon_sym_export] = ACTIONS(2956), + [anon_sym_QueryExecute] = ACTIONS(2956), + [anon_sym_queryexecute] = ACTIONS(2956), + [anon_sym_QUERYEXECUTE] = ACTIONS(2956), + [anon_sym_queryExecute] = ACTIONS(2956), + [anon_sym_BQUOTE] = ACTIONS(2956), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2954), + [anon_sym_Abstract] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2956), + [anon_sym_ABSTRACT] = ACTIONS(2956), + [anon_sym_Break] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_BREAK] = ACTIONS(2956), + [anon_sym_Case] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_CASE] = ACTIONS(2956), + [anon_sym_Component] = ACTIONS(2956), + [anon_sym_component] = ACTIONS(2956), + [anon_sym_COMPONENT] = ACTIONS(2956), + [anon_sym_Continue] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_CONTINUE] = ACTIONS(2956), + [anon_sym_Debugger] = ACTIONS(2956), + [anon_sym_debugger] = ACTIONS(2956), + [anon_sym_DEBUGGER] = ACTIONS(2956), + [anon_sym_Default] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_DEFAULT] = ACTIONS(2956), + [anon_sym_Do] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_DO] = ACTIONS(2956), + [anon_sym_Final] = ACTIONS(2956), + [anon_sym_final] = ACTIONS(2956), + [anon_sym_FINAL] = ACTIONS(2956), + [anon_sym_For] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_FOR] = ACTIONS(2956), + [anon_sym_Function] = ACTIONS(2956), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_FUNCTION] = ACTIONS(2956), + [anon_sym_If] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_IF] = ACTIONS(2956), + [anon_sym_Import] = ACTIONS(2956), + [anon_sym_import] = ACTIONS(2956), + [anon_sym_IMPORT] = ACTIONS(2956), + [anon_sym_Include] = ACTIONS(2956), + [anon_sym_include] = ACTIONS(2956), + [anon_sym_INCLUDE] = ACTIONS(2956), + [anon_sym_Interface] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_INTERFACE] = ACTIONS(2956), + [anon_sym_New] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_NEW] = ACTIONS(2956), + [anon_sym_Package] = ACTIONS(2956), + [anon_sym_package] = ACTIONS(2956), + [anon_sym_PACKAGE] = ACTIONS(2956), + [anon_sym_Private] = ACTIONS(2956), + [anon_sym_private] = ACTIONS(2956), + [anon_sym_PRIVATE] = ACTIONS(2956), + [anon_sym_Property] = ACTIONS(2956), + [anon_sym_property] = ACTIONS(2956), + [anon_sym_PROPERTY] = ACTIONS(2956), + [anon_sym_Public] = ACTIONS(2956), + [anon_sym_public] = ACTIONS(2956), + [anon_sym_PUBLIC] = ACTIONS(2956), + [anon_sym_Remote] = ACTIONS(2956), + [anon_sym_remote] = ACTIONS(2956), + [anon_sym_REMOTE] = ACTIONS(2956), + [anon_sym_Return] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_RETURN] = ACTIONS(2956), + [anon_sym_Static] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_STATIC] = ACTIONS(2956), + [anon_sym_Switch] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_SWITCH] = ACTIONS(2956), + [anon_sym_Throw] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_THROW] = ACTIONS(2956), + [anon_sym_Try] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_TRY] = ACTIONS(2956), + [anon_sym_Var] = ACTIONS(2956), + [anon_sym_var] = ACTIONS(2956), + [anon_sym_VAR] = ACTIONS(2956), + [anon_sym_While] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_WHILE] = ACTIONS(2956), + [anon_sym_With] = ACTIONS(2956), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_WITH] = ACTIONS(2956), + [sym_cf_comment] = ACTIONS(2954), + [sym__java_block_open] = ACTIONS(2954), + [sym__static_type_prefix] = ACTIONS(2954), + }, + [STATE(819)] = { + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_Query] = ACTIONS(2956), + [anon_sym_query] = ACTIONS(2956), + [anon_sym_QUERY] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_unary_operator_token1] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2956), + [aux_sym_number_token2] = ACTIONS(2954), + [anon_sym_This] = ACTIONS(2956), + [anon_sym_this] = ACTIONS(2956), + [anon_sym_THIS] = ACTIONS(2956), + [anon_sym_Super] = ACTIONS(2956), + [anon_sym_super] = ACTIONS(2956), + [anon_sym_SUPER] = ACTIONS(2956), + [anon_sym_True] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2956), + [anon_sym_TRUE] = ACTIONS(2956), + [anon_sym_False] = ACTIONS(2956), + [anon_sym_false] = ACTIONS(2956), + [anon_sym_FALSE] = ACTIONS(2956), + [anon_sym_Null] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_Undefined] = ACTIONS(2956), + [anon_sym_undefined] = ACTIONS(2956), + [anon_sym_UNDEFINED] = ACTIONS(2956), + [anon_sym_get] = ACTIONS(2956), + [anon_sym_set] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [sym_hash_empty] = ACTIONS(2954), + [anon_sym_export] = ACTIONS(2956), + [anon_sym_QueryExecute] = ACTIONS(2956), + [anon_sym_queryexecute] = ACTIONS(2956), + [anon_sym_QUERYEXECUTE] = ACTIONS(2956), + [anon_sym_queryExecute] = ACTIONS(2956), + [anon_sym_BQUOTE] = ACTIONS(2956), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2954), + [anon_sym_Abstract] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2956), + [anon_sym_ABSTRACT] = ACTIONS(2956), + [anon_sym_Break] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_BREAK] = ACTIONS(2956), + [anon_sym_Case] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_CASE] = ACTIONS(2956), + [anon_sym_Component] = ACTIONS(2956), + [anon_sym_component] = ACTIONS(2956), + [anon_sym_COMPONENT] = ACTIONS(2956), + [anon_sym_Continue] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_CONTINUE] = ACTIONS(2956), + [anon_sym_Debugger] = ACTIONS(2956), + [anon_sym_debugger] = ACTIONS(2956), + [anon_sym_DEBUGGER] = ACTIONS(2956), + [anon_sym_Default] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_DEFAULT] = ACTIONS(2956), + [anon_sym_Do] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_DO] = ACTIONS(2956), + [anon_sym_Final] = ACTIONS(2956), + [anon_sym_final] = ACTIONS(2956), + [anon_sym_FINAL] = ACTIONS(2956), + [anon_sym_For] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_FOR] = ACTIONS(2956), + [anon_sym_Function] = ACTIONS(2956), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_FUNCTION] = ACTIONS(2956), + [anon_sym_If] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_IF] = ACTIONS(2956), + [anon_sym_Import] = ACTIONS(2956), + [anon_sym_import] = ACTIONS(2956), + [anon_sym_IMPORT] = ACTIONS(2956), + [anon_sym_Include] = ACTIONS(2956), + [anon_sym_include] = ACTIONS(2956), + [anon_sym_INCLUDE] = ACTIONS(2956), + [anon_sym_Interface] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_INTERFACE] = ACTIONS(2956), + [anon_sym_New] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_NEW] = ACTIONS(2956), + [anon_sym_Package] = ACTIONS(2956), + [anon_sym_package] = ACTIONS(2956), + [anon_sym_PACKAGE] = ACTIONS(2956), + [anon_sym_Private] = ACTIONS(2956), + [anon_sym_private] = ACTIONS(2956), + [anon_sym_PRIVATE] = ACTIONS(2956), + [anon_sym_Property] = ACTIONS(2956), + [anon_sym_property] = ACTIONS(2956), + [anon_sym_PROPERTY] = ACTIONS(2956), + [anon_sym_Public] = ACTIONS(2956), + [anon_sym_public] = ACTIONS(2956), + [anon_sym_PUBLIC] = ACTIONS(2956), + [anon_sym_Remote] = ACTIONS(2956), + [anon_sym_remote] = ACTIONS(2956), + [anon_sym_REMOTE] = ACTIONS(2956), + [anon_sym_Return] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_RETURN] = ACTIONS(2956), + [anon_sym_Static] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_STATIC] = ACTIONS(2956), + [anon_sym_Switch] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_SWITCH] = ACTIONS(2956), + [anon_sym_Throw] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_THROW] = ACTIONS(2956), + [anon_sym_Try] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_TRY] = ACTIONS(2956), + [anon_sym_Var] = ACTIONS(2956), + [anon_sym_var] = ACTIONS(2956), + [anon_sym_VAR] = ACTIONS(2956), + [anon_sym_While] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_WHILE] = ACTIONS(2956), + [anon_sym_With] = ACTIONS(2956), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_WITH] = ACTIONS(2956), + [sym_cf_comment] = ACTIONS(2954), + [sym__java_block_open] = ACTIONS(2954), + [sym__static_type_prefix] = ACTIONS(2954), + }, + [STATE(820)] = { + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_Query] = ACTIONS(2960), + [anon_sym_query] = ACTIONS(2960), + [anon_sym_QUERY] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [aux_sym_unary_operator_token1] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2958), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2960), + [aux_sym_number_token2] = ACTIONS(2958), + [anon_sym_This] = ACTIONS(2960), + [anon_sym_this] = ACTIONS(2960), + [anon_sym_THIS] = ACTIONS(2960), + [anon_sym_Super] = ACTIONS(2960), + [anon_sym_super] = ACTIONS(2960), + [anon_sym_SUPER] = ACTIONS(2960), + [anon_sym_True] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_TRUE] = ACTIONS(2960), + [anon_sym_False] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_FALSE] = ACTIONS(2960), + [anon_sym_Null] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2960), + [anon_sym_NULL] = ACTIONS(2960), + [anon_sym_Undefined] = ACTIONS(2960), + [anon_sym_undefined] = ACTIONS(2960), + [anon_sym_UNDEFINED] = ACTIONS(2960), + [anon_sym_get] = ACTIONS(2960), + [anon_sym_set] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [sym_hash_empty] = ACTIONS(2958), + [anon_sym_export] = ACTIONS(2960), + [anon_sym_QueryExecute] = ACTIONS(2960), + [anon_sym_queryexecute] = ACTIONS(2960), + [anon_sym_QUERYEXECUTE] = ACTIONS(2960), + [anon_sym_queryExecute] = ACTIONS(2960), + [anon_sym_BQUOTE] = ACTIONS(2960), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2958), + [anon_sym_Abstract] = ACTIONS(2960), + [anon_sym_abstract] = ACTIONS(2960), + [anon_sym_ABSTRACT] = ACTIONS(2960), + [anon_sym_Break] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_BREAK] = ACTIONS(2960), + [anon_sym_Case] = ACTIONS(2960), + [anon_sym_case] = ACTIONS(2960), + [anon_sym_CASE] = ACTIONS(2960), + [anon_sym_Component] = ACTIONS(2960), + [anon_sym_component] = ACTIONS(2960), + [anon_sym_COMPONENT] = ACTIONS(2960), + [anon_sym_Continue] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_CONTINUE] = ACTIONS(2960), + [anon_sym_Debugger] = ACTIONS(2960), + [anon_sym_debugger] = ACTIONS(2960), + [anon_sym_DEBUGGER] = ACTIONS(2960), + [anon_sym_Default] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_DEFAULT] = ACTIONS(2960), + [anon_sym_Do] = ACTIONS(2960), + [anon_sym_do] = ACTIONS(2960), + [anon_sym_DO] = ACTIONS(2960), + [anon_sym_Final] = ACTIONS(2960), + [anon_sym_final] = ACTIONS(2960), + [anon_sym_FINAL] = ACTIONS(2960), + [anon_sym_For] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_FOR] = ACTIONS(2960), + [anon_sym_Function] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2960), + [anon_sym_FUNCTION] = ACTIONS(2960), + [anon_sym_If] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_IF] = ACTIONS(2960), + [anon_sym_Import] = ACTIONS(2960), + [anon_sym_import] = ACTIONS(2960), + [anon_sym_IMPORT] = ACTIONS(2960), + [anon_sym_Include] = ACTIONS(2960), + [anon_sym_include] = ACTIONS(2960), + [anon_sym_INCLUDE] = ACTIONS(2960), + [anon_sym_Interface] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2960), + [anon_sym_INTERFACE] = ACTIONS(2960), + [anon_sym_New] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2960), + [anon_sym_NEW] = ACTIONS(2960), + [anon_sym_Package] = ACTIONS(2960), + [anon_sym_package] = ACTIONS(2960), + [anon_sym_PACKAGE] = ACTIONS(2960), + [anon_sym_Private] = ACTIONS(2960), + [anon_sym_private] = ACTIONS(2960), + [anon_sym_PRIVATE] = ACTIONS(2960), + [anon_sym_Property] = ACTIONS(2960), + [anon_sym_property] = ACTIONS(2960), + [anon_sym_PROPERTY] = ACTIONS(2960), + [anon_sym_Public] = ACTIONS(2960), + [anon_sym_public] = ACTIONS(2960), + [anon_sym_PUBLIC] = ACTIONS(2960), + [anon_sym_Remote] = ACTIONS(2960), + [anon_sym_remote] = ACTIONS(2960), + [anon_sym_REMOTE] = ACTIONS(2960), + [anon_sym_Return] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_RETURN] = ACTIONS(2960), + [anon_sym_Static] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_STATIC] = ACTIONS(2960), + [anon_sym_Switch] = ACTIONS(2960), + [anon_sym_switch] = ACTIONS(2960), + [anon_sym_SWITCH] = ACTIONS(2960), + [anon_sym_Throw] = ACTIONS(2960), + [anon_sym_throw] = ACTIONS(2960), + [anon_sym_THROW] = ACTIONS(2960), + [anon_sym_Try] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2960), + [anon_sym_TRY] = ACTIONS(2960), + [anon_sym_Var] = ACTIONS(2960), + [anon_sym_var] = ACTIONS(2960), + [anon_sym_VAR] = ACTIONS(2960), + [anon_sym_While] = ACTIONS(2960), + [anon_sym_while] = ACTIONS(2960), + [anon_sym_WHILE] = ACTIONS(2960), + [anon_sym_With] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2960), + [anon_sym_WITH] = ACTIONS(2960), + [sym_cf_comment] = ACTIONS(2958), + [sym__java_block_open] = ACTIONS(2958), + [sym__static_type_prefix] = ACTIONS(2958), + }, + [STATE(821)] = { + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_Query] = ACTIONS(2960), + [anon_sym_query] = ACTIONS(2960), + [anon_sym_QUERY] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [aux_sym_unary_operator_token1] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2958), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2960), + [aux_sym_number_token2] = ACTIONS(2958), + [anon_sym_This] = ACTIONS(2960), + [anon_sym_this] = ACTIONS(2960), + [anon_sym_THIS] = ACTIONS(2960), + [anon_sym_Super] = ACTIONS(2960), + [anon_sym_super] = ACTIONS(2960), + [anon_sym_SUPER] = ACTIONS(2960), + [anon_sym_True] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_TRUE] = ACTIONS(2960), + [anon_sym_False] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_FALSE] = ACTIONS(2960), + [anon_sym_Null] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2960), + [anon_sym_NULL] = ACTIONS(2960), + [anon_sym_Undefined] = ACTIONS(2960), + [anon_sym_undefined] = ACTIONS(2960), + [anon_sym_UNDEFINED] = ACTIONS(2960), + [anon_sym_get] = ACTIONS(2960), + [anon_sym_set] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [sym_hash_empty] = ACTIONS(2958), + [anon_sym_export] = ACTIONS(2960), + [anon_sym_QueryExecute] = ACTIONS(2960), + [anon_sym_queryexecute] = ACTIONS(2960), + [anon_sym_QUERYEXECUTE] = ACTIONS(2960), + [anon_sym_queryExecute] = ACTIONS(2960), + [anon_sym_BQUOTE] = ACTIONS(2960), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2958), + [anon_sym_Abstract] = ACTIONS(2960), + [anon_sym_abstract] = ACTIONS(2960), + [anon_sym_ABSTRACT] = ACTIONS(2960), + [anon_sym_Break] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_BREAK] = ACTIONS(2960), + [anon_sym_Case] = ACTIONS(2960), + [anon_sym_case] = ACTIONS(2960), + [anon_sym_CASE] = ACTIONS(2960), + [anon_sym_Component] = ACTIONS(2960), + [anon_sym_component] = ACTIONS(2960), + [anon_sym_COMPONENT] = ACTIONS(2960), + [anon_sym_Continue] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_CONTINUE] = ACTIONS(2960), + [anon_sym_Debugger] = ACTIONS(2960), + [anon_sym_debugger] = ACTIONS(2960), + [anon_sym_DEBUGGER] = ACTIONS(2960), + [anon_sym_Default] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_DEFAULT] = ACTIONS(2960), + [anon_sym_Do] = ACTIONS(2960), + [anon_sym_do] = ACTIONS(2960), + [anon_sym_DO] = ACTIONS(2960), + [anon_sym_Final] = ACTIONS(2960), + [anon_sym_final] = ACTIONS(2960), + [anon_sym_FINAL] = ACTIONS(2960), + [anon_sym_For] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_FOR] = ACTIONS(2960), + [anon_sym_Function] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2960), + [anon_sym_FUNCTION] = ACTIONS(2960), + [anon_sym_If] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_IF] = ACTIONS(2960), + [anon_sym_Import] = ACTIONS(2960), + [anon_sym_import] = ACTIONS(2960), + [anon_sym_IMPORT] = ACTIONS(2960), + [anon_sym_Include] = ACTIONS(2960), + [anon_sym_include] = ACTIONS(2960), + [anon_sym_INCLUDE] = ACTIONS(2960), + [anon_sym_Interface] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2960), + [anon_sym_INTERFACE] = ACTIONS(2960), + [anon_sym_New] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2960), + [anon_sym_NEW] = ACTIONS(2960), + [anon_sym_Package] = ACTIONS(2960), + [anon_sym_package] = ACTIONS(2960), + [anon_sym_PACKAGE] = ACTIONS(2960), + [anon_sym_Private] = ACTIONS(2960), + [anon_sym_private] = ACTIONS(2960), + [anon_sym_PRIVATE] = ACTIONS(2960), + [anon_sym_Property] = ACTIONS(2960), + [anon_sym_property] = ACTIONS(2960), + [anon_sym_PROPERTY] = ACTIONS(2960), + [anon_sym_Public] = ACTIONS(2960), + [anon_sym_public] = ACTIONS(2960), + [anon_sym_PUBLIC] = ACTIONS(2960), + [anon_sym_Remote] = ACTIONS(2960), + [anon_sym_remote] = ACTIONS(2960), + [anon_sym_REMOTE] = ACTIONS(2960), + [anon_sym_Return] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_RETURN] = ACTIONS(2960), + [anon_sym_Static] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_STATIC] = ACTIONS(2960), + [anon_sym_Switch] = ACTIONS(2960), + [anon_sym_switch] = ACTIONS(2960), + [anon_sym_SWITCH] = ACTIONS(2960), + [anon_sym_Throw] = ACTIONS(2960), + [anon_sym_throw] = ACTIONS(2960), + [anon_sym_THROW] = ACTIONS(2960), + [anon_sym_Try] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2960), + [anon_sym_TRY] = ACTIONS(2960), + [anon_sym_Var] = ACTIONS(2960), + [anon_sym_var] = ACTIONS(2960), + [anon_sym_VAR] = ACTIONS(2960), + [anon_sym_While] = ACTIONS(2960), + [anon_sym_while] = ACTIONS(2960), + [anon_sym_WHILE] = ACTIONS(2960), + [anon_sym_With] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2960), + [anon_sym_WITH] = ACTIONS(2960), + [sym_cf_comment] = ACTIONS(2958), + [sym__java_block_open] = ACTIONS(2958), + [sym__static_type_prefix] = ACTIONS(2958), + }, + [STATE(822)] = { + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_let] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_Query] = ACTIONS(2728), + [anon_sym_query] = ACTIONS(2728), + [anon_sym_QUERY] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [aux_sym_unary_operator_token1] = ACTIONS(2728), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2728), + [aux_sym_number_token2] = ACTIONS(2726), + [anon_sym_This] = ACTIONS(2728), + [anon_sym_this] = ACTIONS(2728), + [anon_sym_THIS] = ACTIONS(2728), + [anon_sym_Super] = ACTIONS(2728), + [anon_sym_super] = ACTIONS(2728), + [anon_sym_SUPER] = ACTIONS(2728), + [anon_sym_True] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2728), + [anon_sym_TRUE] = ACTIONS(2728), + [anon_sym_False] = ACTIONS(2728), + [anon_sym_false] = ACTIONS(2728), + [anon_sym_FALSE] = ACTIONS(2728), + [anon_sym_Null] = ACTIONS(2728), + [anon_sym_null] = ACTIONS(2728), + [anon_sym_NULL] = ACTIONS(2728), + [anon_sym_Undefined] = ACTIONS(2728), + [anon_sym_undefined] = ACTIONS(2728), + [anon_sym_UNDEFINED] = ACTIONS(2728), + [anon_sym_get] = ACTIONS(2728), + [anon_sym_set] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [sym_hash_empty] = ACTIONS(2726), + [anon_sym_export] = ACTIONS(2728), + [anon_sym_QueryExecute] = ACTIONS(2728), + [anon_sym_queryexecute] = ACTIONS(2728), + [anon_sym_QUERYEXECUTE] = ACTIONS(2728), + [anon_sym_queryExecute] = ACTIONS(2728), + [anon_sym_BQUOTE] = ACTIONS(2728), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2726), + [anon_sym_Abstract] = ACTIONS(2728), + [anon_sym_abstract] = ACTIONS(2728), + [anon_sym_ABSTRACT] = ACTIONS(2728), + [anon_sym_Break] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_BREAK] = ACTIONS(2728), + [anon_sym_Case] = ACTIONS(2728), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_CASE] = ACTIONS(2728), + [anon_sym_Component] = ACTIONS(2728), + [anon_sym_component] = ACTIONS(2728), + [anon_sym_COMPONENT] = ACTIONS(2728), + [anon_sym_Continue] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_CONTINUE] = ACTIONS(2728), + [anon_sym_Debugger] = ACTIONS(2728), + [anon_sym_debugger] = ACTIONS(2728), + [anon_sym_DEBUGGER] = ACTIONS(2728), + [anon_sym_Default] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_DEFAULT] = ACTIONS(2728), + [anon_sym_Do] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_DO] = ACTIONS(2728), + [anon_sym_Final] = ACTIONS(2728), + [anon_sym_final] = ACTIONS(2728), + [anon_sym_FINAL] = ACTIONS(2728), + [anon_sym_For] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_FOR] = ACTIONS(2728), + [anon_sym_Function] = ACTIONS(2728), + [anon_sym_function] = ACTIONS(2728), + [anon_sym_FUNCTION] = ACTIONS(2728), + [anon_sym_If] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_IF] = ACTIONS(2728), + [anon_sym_Import] = ACTIONS(2728), + [anon_sym_import] = ACTIONS(2728), + [anon_sym_IMPORT] = ACTIONS(2728), + [anon_sym_Include] = ACTIONS(2728), + [anon_sym_include] = ACTIONS(2728), + [anon_sym_INCLUDE] = ACTIONS(2728), + [anon_sym_Interface] = ACTIONS(2728), + [anon_sym_interface] = ACTIONS(2728), + [anon_sym_INTERFACE] = ACTIONS(2728), + [anon_sym_New] = ACTIONS(2728), + [anon_sym_new] = ACTIONS(2728), + [anon_sym_NEW] = ACTIONS(2728), + [anon_sym_Package] = ACTIONS(2728), + [anon_sym_package] = ACTIONS(2728), + [anon_sym_PACKAGE] = ACTIONS(2728), + [anon_sym_Private] = ACTIONS(2728), + [anon_sym_private] = ACTIONS(2728), + [anon_sym_PRIVATE] = ACTIONS(2728), + [anon_sym_Property] = ACTIONS(2728), + [anon_sym_property] = ACTIONS(2728), + [anon_sym_PROPERTY] = ACTIONS(2728), + [anon_sym_Public] = ACTIONS(2728), + [anon_sym_public] = ACTIONS(2728), + [anon_sym_PUBLIC] = ACTIONS(2728), + [anon_sym_Remote] = ACTIONS(2728), + [anon_sym_remote] = ACTIONS(2728), + [anon_sym_REMOTE] = ACTIONS(2728), + [anon_sym_Return] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_RETURN] = ACTIONS(2728), + [anon_sym_Static] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_STATIC] = ACTIONS(2728), + [anon_sym_Switch] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_SWITCH] = ACTIONS(2728), + [anon_sym_Throw] = ACTIONS(2728), + [anon_sym_throw] = ACTIONS(2728), + [anon_sym_THROW] = ACTIONS(2728), + [anon_sym_Try] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2728), + [anon_sym_TRY] = ACTIONS(2728), + [anon_sym_Var] = ACTIONS(2728), + [anon_sym_var] = ACTIONS(2728), + [anon_sym_VAR] = ACTIONS(2728), + [anon_sym_While] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_WHILE] = ACTIONS(2728), + [anon_sym_With] = ACTIONS(2728), + [anon_sym_with] = ACTIONS(2728), + [anon_sym_WITH] = ACTIONS(2728), + [sym_cf_comment] = ACTIONS(2726), + [sym__java_block_open] = ACTIONS(2726), + [sym__static_type_prefix] = ACTIONS(2726), + }, + [STATE(823)] = { + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_Query] = ACTIONS(2732), + [anon_sym_query] = ACTIONS(2732), + [anon_sym_QUERY] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2730), + [aux_sym_unary_operator_token1] = ACTIONS(2732), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2732), + [aux_sym_number_token2] = ACTIONS(2730), + [anon_sym_This] = ACTIONS(2732), + [anon_sym_this] = ACTIONS(2732), + [anon_sym_THIS] = ACTIONS(2732), + [anon_sym_Super] = ACTIONS(2732), + [anon_sym_super] = ACTIONS(2732), + [anon_sym_SUPER] = ACTIONS(2732), + [anon_sym_True] = ACTIONS(2732), + [anon_sym_true] = ACTIONS(2732), + [anon_sym_TRUE] = ACTIONS(2732), + [anon_sym_False] = ACTIONS(2732), + [anon_sym_false] = ACTIONS(2732), + [anon_sym_FALSE] = ACTIONS(2732), + [anon_sym_Null] = ACTIONS(2732), + [anon_sym_null] = ACTIONS(2732), + [anon_sym_NULL] = ACTIONS(2732), + [anon_sym_Undefined] = ACTIONS(2732), + [anon_sym_undefined] = ACTIONS(2732), + [anon_sym_UNDEFINED] = ACTIONS(2732), + [anon_sym_get] = ACTIONS(2732), + [anon_sym_set] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [sym_hash_empty] = ACTIONS(2730), + [anon_sym_export] = ACTIONS(2732), + [anon_sym_QueryExecute] = ACTIONS(2732), + [anon_sym_queryexecute] = ACTIONS(2732), + [anon_sym_QUERYEXECUTE] = ACTIONS(2732), + [anon_sym_queryExecute] = ACTIONS(2732), + [anon_sym_BQUOTE] = ACTIONS(2732), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2730), + [anon_sym_Abstract] = ACTIONS(2732), + [anon_sym_abstract] = ACTIONS(2732), + [anon_sym_ABSTRACT] = ACTIONS(2732), + [anon_sym_Break] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_BREAK] = ACTIONS(2732), + [anon_sym_Case] = ACTIONS(2732), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_CASE] = ACTIONS(2732), + [anon_sym_Component] = ACTIONS(2732), + [anon_sym_component] = ACTIONS(2732), + [anon_sym_COMPONENT] = ACTIONS(2732), + [anon_sym_Continue] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_CONTINUE] = ACTIONS(2732), + [anon_sym_Debugger] = ACTIONS(2732), + [anon_sym_debugger] = ACTIONS(2732), + [anon_sym_DEBUGGER] = ACTIONS(2732), + [anon_sym_Default] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_DEFAULT] = ACTIONS(2732), + [anon_sym_Do] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_DO] = ACTIONS(2732), + [anon_sym_Final] = ACTIONS(2732), + [anon_sym_final] = ACTIONS(2732), + [anon_sym_FINAL] = ACTIONS(2732), + [anon_sym_For] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_FOR] = ACTIONS(2732), + [anon_sym_Function] = ACTIONS(2732), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_FUNCTION] = ACTIONS(2732), + [anon_sym_If] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_IF] = ACTIONS(2732), + [anon_sym_Import] = ACTIONS(2732), + [anon_sym_import] = ACTIONS(2732), + [anon_sym_IMPORT] = ACTIONS(2732), + [anon_sym_Include] = ACTIONS(2732), + [anon_sym_include] = ACTIONS(2732), + [anon_sym_INCLUDE] = ACTIONS(2732), + [anon_sym_Interface] = ACTIONS(2732), + [anon_sym_interface] = ACTIONS(2732), + [anon_sym_INTERFACE] = ACTIONS(2732), + [anon_sym_New] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_NEW] = ACTIONS(2732), + [anon_sym_Package] = ACTIONS(2732), + [anon_sym_package] = ACTIONS(2732), + [anon_sym_PACKAGE] = ACTIONS(2732), + [anon_sym_Private] = ACTIONS(2732), + [anon_sym_private] = ACTIONS(2732), + [anon_sym_PRIVATE] = ACTIONS(2732), + [anon_sym_Property] = ACTIONS(2732), + [anon_sym_property] = ACTIONS(2732), + [anon_sym_PROPERTY] = ACTIONS(2732), + [anon_sym_Public] = ACTIONS(2732), + [anon_sym_public] = ACTIONS(2732), + [anon_sym_PUBLIC] = ACTIONS(2732), + [anon_sym_Remote] = ACTIONS(2732), + [anon_sym_remote] = ACTIONS(2732), + [anon_sym_REMOTE] = ACTIONS(2732), + [anon_sym_Return] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_RETURN] = ACTIONS(2732), + [anon_sym_Static] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_STATIC] = ACTIONS(2732), + [anon_sym_Switch] = ACTIONS(2732), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_SWITCH] = ACTIONS(2732), + [anon_sym_Throw] = ACTIONS(2732), + [anon_sym_throw] = ACTIONS(2732), + [anon_sym_THROW] = ACTIONS(2732), + [anon_sym_Try] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_TRY] = ACTIONS(2732), + [anon_sym_Var] = ACTIONS(2732), + [anon_sym_var] = ACTIONS(2732), + [anon_sym_VAR] = ACTIONS(2732), + [anon_sym_While] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_WHILE] = ACTIONS(2732), + [anon_sym_With] = ACTIONS(2732), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_WITH] = ACTIONS(2732), + [sym_cf_comment] = ACTIONS(2730), + [sym__java_block_open] = ACTIONS(2730), + [sym__static_type_prefix] = ACTIONS(2730), + }, + [STATE(824)] = { + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_let] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_Query] = ACTIONS(2736), + [anon_sym_query] = ACTIONS(2736), + [anon_sym_QUERY] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [aux_sym_unary_operator_token1] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2736), + [aux_sym_number_token2] = ACTIONS(2734), + [anon_sym_This] = ACTIONS(2736), + [anon_sym_this] = ACTIONS(2736), + [anon_sym_THIS] = ACTIONS(2736), + [anon_sym_Super] = ACTIONS(2736), + [anon_sym_super] = ACTIONS(2736), + [anon_sym_SUPER] = ACTIONS(2736), + [anon_sym_True] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2736), + [anon_sym_TRUE] = ACTIONS(2736), + [anon_sym_False] = ACTIONS(2736), + [anon_sym_false] = ACTIONS(2736), + [anon_sym_FALSE] = ACTIONS(2736), + [anon_sym_Null] = ACTIONS(2736), + [anon_sym_null] = ACTIONS(2736), + [anon_sym_NULL] = ACTIONS(2736), + [anon_sym_Undefined] = ACTIONS(2736), + [anon_sym_undefined] = ACTIONS(2736), + [anon_sym_UNDEFINED] = ACTIONS(2736), + [anon_sym_get] = ACTIONS(2736), + [anon_sym_set] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [sym_hash_empty] = ACTIONS(2734), + [anon_sym_export] = ACTIONS(2736), + [anon_sym_QueryExecute] = ACTIONS(2736), + [anon_sym_queryexecute] = ACTIONS(2736), + [anon_sym_QUERYEXECUTE] = ACTIONS(2736), + [anon_sym_queryExecute] = ACTIONS(2736), + [anon_sym_BQUOTE] = ACTIONS(2736), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2734), + [anon_sym_Abstract] = ACTIONS(2736), + [anon_sym_abstract] = ACTIONS(2736), + [anon_sym_ABSTRACT] = ACTIONS(2736), + [anon_sym_Break] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_BREAK] = ACTIONS(2736), + [anon_sym_Case] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_CASE] = ACTIONS(2736), + [anon_sym_Component] = ACTIONS(2736), + [anon_sym_component] = ACTIONS(2736), + [anon_sym_COMPONENT] = ACTIONS(2736), + [anon_sym_Continue] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_CONTINUE] = ACTIONS(2736), + [anon_sym_Debugger] = ACTIONS(2736), + [anon_sym_debugger] = ACTIONS(2736), + [anon_sym_DEBUGGER] = ACTIONS(2736), + [anon_sym_Default] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_DEFAULT] = ACTIONS(2736), + [anon_sym_Do] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_DO] = ACTIONS(2736), + [anon_sym_Final] = ACTIONS(2736), + [anon_sym_final] = ACTIONS(2736), + [anon_sym_FINAL] = ACTIONS(2736), + [anon_sym_For] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_FOR] = ACTIONS(2736), + [anon_sym_Function] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(2736), + [anon_sym_FUNCTION] = ACTIONS(2736), + [anon_sym_If] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_IF] = ACTIONS(2736), + [anon_sym_Import] = ACTIONS(2736), + [anon_sym_import] = ACTIONS(2736), + [anon_sym_IMPORT] = ACTIONS(2736), + [anon_sym_Include] = ACTIONS(2736), + [anon_sym_include] = ACTIONS(2736), + [anon_sym_INCLUDE] = ACTIONS(2736), + [anon_sym_Interface] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_INTERFACE] = ACTIONS(2736), + [anon_sym_New] = ACTIONS(2736), + [anon_sym_new] = ACTIONS(2736), + [anon_sym_NEW] = ACTIONS(2736), + [anon_sym_Package] = ACTIONS(2736), + [anon_sym_package] = ACTIONS(2736), + [anon_sym_PACKAGE] = ACTIONS(2736), + [anon_sym_Private] = ACTIONS(2736), + [anon_sym_private] = ACTIONS(2736), + [anon_sym_PRIVATE] = ACTIONS(2736), + [anon_sym_Property] = ACTIONS(2736), + [anon_sym_property] = ACTIONS(2736), + [anon_sym_PROPERTY] = ACTIONS(2736), + [anon_sym_Public] = ACTIONS(2736), + [anon_sym_public] = ACTIONS(2736), + [anon_sym_PUBLIC] = ACTIONS(2736), + [anon_sym_Remote] = ACTIONS(2736), + [anon_sym_remote] = ACTIONS(2736), + [anon_sym_REMOTE] = ACTIONS(2736), + [anon_sym_Return] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_RETURN] = ACTIONS(2736), + [anon_sym_Static] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_STATIC] = ACTIONS(2736), + [anon_sym_Switch] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_SWITCH] = ACTIONS(2736), + [anon_sym_Throw] = ACTIONS(2736), + [anon_sym_throw] = ACTIONS(2736), + [anon_sym_THROW] = ACTIONS(2736), + [anon_sym_Try] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2736), + [anon_sym_TRY] = ACTIONS(2736), + [anon_sym_Var] = ACTIONS(2736), + [anon_sym_var] = ACTIONS(2736), + [anon_sym_VAR] = ACTIONS(2736), + [anon_sym_While] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_WHILE] = ACTIONS(2736), + [anon_sym_With] = ACTIONS(2736), + [anon_sym_with] = ACTIONS(2736), + [anon_sym_WITH] = ACTIONS(2736), + [sym_cf_comment] = ACTIONS(2734), + [sym__java_block_open] = ACTIONS(2734), + [sym__static_type_prefix] = ACTIONS(2734), + }, + [STATE(825)] = { + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_let] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_Query] = ACTIONS(2704), + [anon_sym_query] = ACTIONS(2704), + [anon_sym_QUERY] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [aux_sym_unary_operator_token1] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2704), + [aux_sym_number_token2] = ACTIONS(2702), + [anon_sym_This] = ACTIONS(2704), + [anon_sym_this] = ACTIONS(2704), + [anon_sym_THIS] = ACTIONS(2704), + [anon_sym_Super] = ACTIONS(2704), + [anon_sym_super] = ACTIONS(2704), + [anon_sym_SUPER] = ACTIONS(2704), + [anon_sym_True] = ACTIONS(2704), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_TRUE] = ACTIONS(2704), + [anon_sym_False] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_FALSE] = ACTIONS(2704), + [anon_sym_Null] = ACTIONS(2704), + [anon_sym_null] = ACTIONS(2704), + [anon_sym_NULL] = ACTIONS(2704), + [anon_sym_Undefined] = ACTIONS(2704), + [anon_sym_undefined] = ACTIONS(2704), + [anon_sym_UNDEFINED] = ACTIONS(2704), + [anon_sym_get] = ACTIONS(2704), + [anon_sym_set] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [sym_hash_empty] = ACTIONS(2702), + [anon_sym_export] = ACTIONS(2704), + [anon_sym_QueryExecute] = ACTIONS(2704), + [anon_sym_queryexecute] = ACTIONS(2704), + [anon_sym_QUERYEXECUTE] = ACTIONS(2704), + [anon_sym_queryExecute] = ACTIONS(2704), + [anon_sym_BQUOTE] = ACTIONS(2704), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2702), + [anon_sym_Abstract] = ACTIONS(2704), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_ABSTRACT] = ACTIONS(2704), + [anon_sym_Break] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_BREAK] = ACTIONS(2704), + [anon_sym_Case] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_CASE] = ACTIONS(2704), + [anon_sym_Component] = ACTIONS(2704), + [anon_sym_component] = ACTIONS(2704), + [anon_sym_COMPONENT] = ACTIONS(2704), + [anon_sym_Continue] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_CONTINUE] = ACTIONS(2704), + [anon_sym_Debugger] = ACTIONS(2704), + [anon_sym_debugger] = ACTIONS(2704), + [anon_sym_DEBUGGER] = ACTIONS(2704), + [anon_sym_Default] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_DEFAULT] = ACTIONS(2704), + [anon_sym_Do] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_DO] = ACTIONS(2704), + [anon_sym_Final] = ACTIONS(2704), + [anon_sym_final] = ACTIONS(2704), + [anon_sym_FINAL] = ACTIONS(2704), + [anon_sym_For] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_FOR] = ACTIONS(2704), + [anon_sym_Function] = ACTIONS(2704), + [anon_sym_function] = ACTIONS(2704), + [anon_sym_FUNCTION] = ACTIONS(2704), + [anon_sym_If] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_IF] = ACTIONS(2704), + [anon_sym_Import] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_IMPORT] = ACTIONS(2704), + [anon_sym_Include] = ACTIONS(2704), + [anon_sym_include] = ACTIONS(2704), + [anon_sym_INCLUDE] = ACTIONS(2704), + [anon_sym_Interface] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_INTERFACE] = ACTIONS(2704), + [anon_sym_New] = ACTIONS(2704), + [anon_sym_new] = ACTIONS(2704), + [anon_sym_NEW] = ACTIONS(2704), + [anon_sym_Package] = ACTIONS(2704), + [anon_sym_package] = ACTIONS(2704), + [anon_sym_PACKAGE] = ACTIONS(2704), + [anon_sym_Private] = ACTIONS(2704), + [anon_sym_private] = ACTIONS(2704), + [anon_sym_PRIVATE] = ACTIONS(2704), + [anon_sym_Property] = ACTIONS(2704), + [anon_sym_property] = ACTIONS(2704), + [anon_sym_PROPERTY] = ACTIONS(2704), + [anon_sym_Public] = ACTIONS(2704), + [anon_sym_public] = ACTIONS(2704), + [anon_sym_PUBLIC] = ACTIONS(2704), + [anon_sym_Remote] = ACTIONS(2704), + [anon_sym_remote] = ACTIONS(2704), + [anon_sym_REMOTE] = ACTIONS(2704), + [anon_sym_Return] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_RETURN] = ACTIONS(2704), + [anon_sym_Static] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_STATIC] = ACTIONS(2704), + [anon_sym_Switch] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_SWITCH] = ACTIONS(2704), + [anon_sym_Throw] = ACTIONS(2704), + [anon_sym_throw] = ACTIONS(2704), + [anon_sym_THROW] = ACTIONS(2704), + [anon_sym_Try] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_TRY] = ACTIONS(2704), + [anon_sym_Var] = ACTIONS(2704), + [anon_sym_var] = ACTIONS(2704), + [anon_sym_VAR] = ACTIONS(2704), + [anon_sym_While] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_WHILE] = ACTIONS(2704), + [anon_sym_With] = ACTIONS(2704), + [anon_sym_with] = ACTIONS(2704), + [anon_sym_WITH] = ACTIONS(2704), + [sym_cf_comment] = ACTIONS(2702), + [sym__java_block_open] = ACTIONS(2702), + [sym__static_type_prefix] = ACTIONS(2702), }, - [STATE(801)] = { - [ts_builtin_sym_end] = ACTIONS(2598), - [sym_identifier] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_Query] = ACTIONS(2600), - [anon_sym_query] = ACTIONS(2600), - [anon_sym_QUERY] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_SLASH] = ACTIONS(2600), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2598), - [aux_sym_unary_operator_token1] = ACTIONS(2600), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2598), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2600), - [aux_sym_number_token2] = ACTIONS(2598), - [anon_sym_This] = ACTIONS(2600), - [anon_sym_this] = ACTIONS(2600), - [anon_sym_THIS] = ACTIONS(2600), - [anon_sym_Super] = ACTIONS(2600), - [anon_sym_super] = ACTIONS(2600), - [anon_sym_SUPER] = ACTIONS(2600), - [anon_sym_True] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_TRUE] = ACTIONS(2600), - [anon_sym_False] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_FALSE] = ACTIONS(2600), - [anon_sym_Null] = ACTIONS(2600), - [anon_sym_null] = ACTIONS(2600), - [anon_sym_NULL] = ACTIONS(2600), - [anon_sym_Undefined] = ACTIONS(2600), - [anon_sym_undefined] = ACTIONS(2600), - [anon_sym_UNDEFINED] = ACTIONS(2600), - [anon_sym_get] = ACTIONS(2600), - [anon_sym_set] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [sym_hash_empty] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2600), - [anon_sym_QueryExecute] = ACTIONS(2600), - [anon_sym_queryexecute] = ACTIONS(2600), - [anon_sym_QUERYEXECUTE] = ACTIONS(2600), - [anon_sym_queryExecute] = ACTIONS(2600), - [anon_sym_BQUOTE] = ACTIONS(2600), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2598), - [anon_sym_Abstract] = ACTIONS(2600), - [anon_sym_abstract] = ACTIONS(2600), - [anon_sym_ABSTRACT] = ACTIONS(2600), - [anon_sym_Break] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_BREAK] = ACTIONS(2600), - [anon_sym_Case] = ACTIONS(2600), - [anon_sym_case] = ACTIONS(2600), - [anon_sym_CASE] = ACTIONS(2600), - [anon_sym_Component] = ACTIONS(2600), - [anon_sym_component] = ACTIONS(2600), - [anon_sym_COMPONENT] = ACTIONS(2600), - [anon_sym_Continue] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_CONTINUE] = ACTIONS(2600), - [anon_sym_Debugger] = ACTIONS(2600), - [anon_sym_debugger] = ACTIONS(2600), - [anon_sym_DEBUGGER] = ACTIONS(2600), - [anon_sym_Default] = ACTIONS(2600), - [anon_sym_default] = ACTIONS(2600), - [anon_sym_DEFAULT] = ACTIONS(2600), - [anon_sym_Do] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_DO] = ACTIONS(2600), - [anon_sym_Final] = ACTIONS(2600), - [anon_sym_final] = ACTIONS(2600), - [anon_sym_FINAL] = ACTIONS(2600), - [anon_sym_For] = ACTIONS(2600), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_FOR] = ACTIONS(2600), - [anon_sym_Function] = ACTIONS(2600), - [anon_sym_function] = ACTIONS(2600), - [anon_sym_FUNCTION] = ACTIONS(2600), - [anon_sym_If] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_IF] = ACTIONS(2600), - [anon_sym_Import] = ACTIONS(2600), - [anon_sym_import] = ACTIONS(2600), - [anon_sym_IMPORT] = ACTIONS(2600), - [anon_sym_Include] = ACTIONS(2600), - [anon_sym_include] = ACTIONS(2600), - [anon_sym_INCLUDE] = ACTIONS(2600), - [anon_sym_Interface] = ACTIONS(2600), - [anon_sym_interface] = ACTIONS(2600), - [anon_sym_INTERFACE] = ACTIONS(2600), - [anon_sym_New] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_NEW] = ACTIONS(2600), - [anon_sym_Package] = ACTIONS(2600), - [anon_sym_package] = ACTIONS(2600), - [anon_sym_PACKAGE] = ACTIONS(2600), - [anon_sym_Private] = ACTIONS(2600), - [anon_sym_private] = ACTIONS(2600), - [anon_sym_PRIVATE] = ACTIONS(2600), - [anon_sym_Property] = ACTIONS(2600), - [anon_sym_property] = ACTIONS(2600), - [anon_sym_PROPERTY] = ACTIONS(2600), - [anon_sym_Public] = ACTIONS(2600), - [anon_sym_public] = ACTIONS(2600), - [anon_sym_PUBLIC] = ACTIONS(2600), - [anon_sym_Remote] = ACTIONS(2600), - [anon_sym_remote] = ACTIONS(2600), - [anon_sym_REMOTE] = ACTIONS(2600), - [anon_sym_Return] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_RETURN] = ACTIONS(2600), - [anon_sym_Static] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_STATIC] = ACTIONS(2600), - [anon_sym_Switch] = ACTIONS(2600), - [anon_sym_switch] = ACTIONS(2600), - [anon_sym_SWITCH] = ACTIONS(2600), - [anon_sym_Throw] = ACTIONS(2600), - [anon_sym_throw] = ACTIONS(2600), - [anon_sym_THROW] = ACTIONS(2600), - [anon_sym_Try] = ACTIONS(2600), - [anon_sym_try] = ACTIONS(2600), - [anon_sym_TRY] = ACTIONS(2600), - [anon_sym_Var] = ACTIONS(2600), - [anon_sym_var] = ACTIONS(2600), - [anon_sym_VAR] = ACTIONS(2600), - [anon_sym_While] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_WHILE] = ACTIONS(2600), - [anon_sym_With] = ACTIONS(2600), - [anon_sym_with] = ACTIONS(2600), - [anon_sym_WITH] = ACTIONS(2600), - [sym__automatic_semicolon] = ACTIONS(3156), - [sym_cf_comment] = ACTIONS(2598), - [sym__java_block_open] = ACTIONS(2598), - [sym__static_type_prefix] = ACTIONS(2598), + [STATE(826)] = { + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_Query] = ACTIONS(3044), + [anon_sym_query] = ACTIONS(3044), + [anon_sym_QUERY] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [aux_sym_unary_operator_token1] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3044), + [aux_sym_number_token2] = ACTIONS(3042), + [anon_sym_This] = ACTIONS(3044), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_THIS] = ACTIONS(3044), + [anon_sym_Super] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_SUPER] = ACTIONS(3044), + [anon_sym_True] = ACTIONS(3044), + [anon_sym_true] = ACTIONS(3044), + [anon_sym_TRUE] = ACTIONS(3044), + [anon_sym_False] = ACTIONS(3044), + [anon_sym_false] = ACTIONS(3044), + [anon_sym_FALSE] = ACTIONS(3044), + [anon_sym_Null] = ACTIONS(3044), + [anon_sym_null] = ACTIONS(3044), + [anon_sym_NULL] = ACTIONS(3044), + [anon_sym_Undefined] = ACTIONS(3044), + [anon_sym_undefined] = ACTIONS(3044), + [anon_sym_UNDEFINED] = ACTIONS(3044), + [anon_sym_get] = ACTIONS(3044), + [anon_sym_set] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [sym_hash_empty] = ACTIONS(3042), + [anon_sym_export] = ACTIONS(3044), + [anon_sym_QueryExecute] = ACTIONS(3044), + [anon_sym_queryexecute] = ACTIONS(3044), + [anon_sym_QUERYEXECUTE] = ACTIONS(3044), + [anon_sym_queryExecute] = ACTIONS(3044), + [anon_sym_BQUOTE] = ACTIONS(3044), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3042), + [anon_sym_Abstract] = ACTIONS(3044), + [anon_sym_abstract] = ACTIONS(3044), + [anon_sym_ABSTRACT] = ACTIONS(3044), + [anon_sym_Break] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_BREAK] = ACTIONS(3044), + [anon_sym_Case] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3044), + [anon_sym_CASE] = ACTIONS(3044), + [anon_sym_Component] = ACTIONS(3044), + [anon_sym_component] = ACTIONS(3044), + [anon_sym_COMPONENT] = ACTIONS(3044), + [anon_sym_Continue] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_CONTINUE] = ACTIONS(3044), + [anon_sym_Debugger] = ACTIONS(3044), + [anon_sym_debugger] = ACTIONS(3044), + [anon_sym_DEBUGGER] = ACTIONS(3044), + [anon_sym_Default] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_DEFAULT] = ACTIONS(3044), + [anon_sym_Do] = ACTIONS(3044), + [anon_sym_do] = ACTIONS(3044), + [anon_sym_DO] = ACTIONS(3044), + [anon_sym_Final] = ACTIONS(3044), + [anon_sym_final] = ACTIONS(3044), + [anon_sym_FINAL] = ACTIONS(3044), + [anon_sym_For] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_FOR] = ACTIONS(3044), + [anon_sym_Function] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(3044), + [anon_sym_FUNCTION] = ACTIONS(3044), + [anon_sym_If] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_IF] = ACTIONS(3044), + [anon_sym_Import] = ACTIONS(3044), + [anon_sym_import] = ACTIONS(3044), + [anon_sym_IMPORT] = ACTIONS(3044), + [anon_sym_Include] = ACTIONS(3044), + [anon_sym_include] = ACTIONS(3044), + [anon_sym_INCLUDE] = ACTIONS(3044), + [anon_sym_Interface] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_INTERFACE] = ACTIONS(3044), + [anon_sym_New] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3044), + [anon_sym_NEW] = ACTIONS(3044), + [anon_sym_Package] = ACTIONS(3044), + [anon_sym_package] = ACTIONS(3044), + [anon_sym_PACKAGE] = ACTIONS(3044), + [anon_sym_Private] = ACTIONS(3044), + [anon_sym_private] = ACTIONS(3044), + [anon_sym_PRIVATE] = ACTIONS(3044), + [anon_sym_Property] = ACTIONS(3044), + [anon_sym_property] = ACTIONS(3044), + [anon_sym_PROPERTY] = ACTIONS(3044), + [anon_sym_Public] = ACTIONS(3044), + [anon_sym_public] = ACTIONS(3044), + [anon_sym_PUBLIC] = ACTIONS(3044), + [anon_sym_Remote] = ACTIONS(3044), + [anon_sym_remote] = ACTIONS(3044), + [anon_sym_REMOTE] = ACTIONS(3044), + [anon_sym_Return] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_RETURN] = ACTIONS(3044), + [anon_sym_Static] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_STATIC] = ACTIONS(3044), + [anon_sym_Switch] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_SWITCH] = ACTIONS(3044), + [anon_sym_Throw] = ACTIONS(3044), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_THROW] = ACTIONS(3044), + [anon_sym_Try] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [anon_sym_TRY] = ACTIONS(3044), + [anon_sym_Var] = ACTIONS(3044), + [anon_sym_var] = ACTIONS(3044), + [anon_sym_VAR] = ACTIONS(3044), + [anon_sym_While] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_WHILE] = ACTIONS(3044), + [anon_sym_With] = ACTIONS(3044), + [anon_sym_with] = ACTIONS(3044), + [anon_sym_WITH] = ACTIONS(3044), + [sym_cf_comment] = ACTIONS(3042), + [sym__java_block_open] = ACTIONS(3042), + [sym__static_type_prefix] = ACTIONS(3042), }, - [STATE(802)] = { - [ts_builtin_sym_end] = ACTIONS(2648), - [sym_identifier] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_Query] = ACTIONS(2650), - [anon_sym_query] = ACTIONS(2650), - [anon_sym_QUERY] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2648), - [aux_sym_unary_operator_token1] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2650), - [aux_sym_number_token2] = ACTIONS(2648), - [anon_sym_This] = ACTIONS(2650), - [anon_sym_this] = ACTIONS(2650), - [anon_sym_THIS] = ACTIONS(2650), - [anon_sym_Super] = ACTIONS(2650), - [anon_sym_super] = ACTIONS(2650), - [anon_sym_SUPER] = ACTIONS(2650), - [anon_sym_True] = ACTIONS(2650), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_TRUE] = ACTIONS(2650), - [anon_sym_False] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [anon_sym_FALSE] = ACTIONS(2650), - [anon_sym_Null] = ACTIONS(2650), - [anon_sym_null] = ACTIONS(2650), - [anon_sym_NULL] = ACTIONS(2650), - [anon_sym_Undefined] = ACTIONS(2650), - [anon_sym_undefined] = ACTIONS(2650), - [anon_sym_UNDEFINED] = ACTIONS(2650), - [anon_sym_get] = ACTIONS(2650), - [anon_sym_set] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [sym_hash_empty] = ACTIONS(2648), - [anon_sym_export] = ACTIONS(2650), - [anon_sym_QueryExecute] = ACTIONS(2650), - [anon_sym_queryexecute] = ACTIONS(2650), - [anon_sym_QUERYEXECUTE] = ACTIONS(2650), - [anon_sym_queryExecute] = ACTIONS(2650), - [anon_sym_BQUOTE] = ACTIONS(2650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2648), - [anon_sym_Abstract] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_ABSTRACT] = ACTIONS(2650), - [anon_sym_Break] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_BREAK] = ACTIONS(2650), - [anon_sym_Case] = ACTIONS(2650), - [anon_sym_case] = ACTIONS(2650), - [anon_sym_CASE] = ACTIONS(2650), - [anon_sym_Component] = ACTIONS(2650), - [anon_sym_component] = ACTIONS(2650), - [anon_sym_COMPONENT] = ACTIONS(2650), - [anon_sym_Continue] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_CONTINUE] = ACTIONS(2650), - [anon_sym_Debugger] = ACTIONS(2650), - [anon_sym_debugger] = ACTIONS(2650), - [anon_sym_DEBUGGER] = ACTIONS(2650), - [anon_sym_Default] = ACTIONS(2650), - [anon_sym_default] = ACTIONS(2650), - [anon_sym_DEFAULT] = ACTIONS(2650), - [anon_sym_Do] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_DO] = ACTIONS(2650), - [anon_sym_Final] = ACTIONS(2650), - [anon_sym_final] = ACTIONS(2650), - [anon_sym_FINAL] = ACTIONS(2650), - [anon_sym_For] = ACTIONS(2650), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_FOR] = ACTIONS(2650), - [anon_sym_Function] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_FUNCTION] = ACTIONS(2650), - [anon_sym_If] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_IF] = ACTIONS(2650), - [anon_sym_Import] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_IMPORT] = ACTIONS(2650), - [anon_sym_Include] = ACTIONS(2650), - [anon_sym_include] = ACTIONS(2650), - [anon_sym_INCLUDE] = ACTIONS(2650), - [anon_sym_Interface] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_INTERFACE] = ACTIONS(2650), - [anon_sym_New] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_NEW] = ACTIONS(2650), - [anon_sym_Package] = ACTIONS(2650), - [anon_sym_package] = ACTIONS(2650), - [anon_sym_PACKAGE] = ACTIONS(2650), - [anon_sym_Private] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_PRIVATE] = ACTIONS(2650), - [anon_sym_Property] = ACTIONS(2650), - [anon_sym_property] = ACTIONS(2650), - [anon_sym_PROPERTY] = ACTIONS(2650), - [anon_sym_Public] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_PUBLIC] = ACTIONS(2650), - [anon_sym_Remote] = ACTIONS(2650), - [anon_sym_remote] = ACTIONS(2650), - [anon_sym_REMOTE] = ACTIONS(2650), - [anon_sym_Return] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_RETURN] = ACTIONS(2650), - [anon_sym_Static] = ACTIONS(2650), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_STATIC] = ACTIONS(2650), - [anon_sym_Switch] = ACTIONS(2650), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_SWITCH] = ACTIONS(2650), - [anon_sym_Throw] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_THROW] = ACTIONS(2650), - [anon_sym_Try] = ACTIONS(2650), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_TRY] = ACTIONS(2650), - [anon_sym_Var] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [anon_sym_VAR] = ACTIONS(2650), - [anon_sym_While] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_WHILE] = ACTIONS(2650), - [anon_sym_With] = ACTIONS(2650), - [anon_sym_with] = ACTIONS(2650), - [anon_sym_WITH] = ACTIONS(2650), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_cf_comment] = ACTIONS(2648), - [sym__java_block_open] = ACTIONS(2648), - [sym__static_type_prefix] = ACTIONS(2648), + [STATE(827)] = { + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_Query] = ACTIONS(2740), + [anon_sym_query] = ACTIONS(2740), + [anon_sym_QUERY] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [aux_sym_unary_operator_token1] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2740), + [aux_sym_number_token2] = ACTIONS(2738), + [anon_sym_This] = ACTIONS(2740), + [anon_sym_this] = ACTIONS(2740), + [anon_sym_THIS] = ACTIONS(2740), + [anon_sym_Super] = ACTIONS(2740), + [anon_sym_super] = ACTIONS(2740), + [anon_sym_SUPER] = ACTIONS(2740), + [anon_sym_True] = ACTIONS(2740), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_TRUE] = ACTIONS(2740), + [anon_sym_False] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_FALSE] = ACTIONS(2740), + [anon_sym_Null] = ACTIONS(2740), + [anon_sym_null] = ACTIONS(2740), + [anon_sym_NULL] = ACTIONS(2740), + [anon_sym_Undefined] = ACTIONS(2740), + [anon_sym_undefined] = ACTIONS(2740), + [anon_sym_UNDEFINED] = ACTIONS(2740), + [anon_sym_get] = ACTIONS(2740), + [anon_sym_set] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [sym_hash_empty] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_QueryExecute] = ACTIONS(2740), + [anon_sym_queryexecute] = ACTIONS(2740), + [anon_sym_QUERYEXECUTE] = ACTIONS(2740), + [anon_sym_queryExecute] = ACTIONS(2740), + [anon_sym_BQUOTE] = ACTIONS(2740), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2738), + [anon_sym_Abstract] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_ABSTRACT] = ACTIONS(2740), + [anon_sym_Break] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_BREAK] = ACTIONS(2740), + [anon_sym_Case] = ACTIONS(2740), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_CASE] = ACTIONS(2740), + [anon_sym_Component] = ACTIONS(2740), + [anon_sym_component] = ACTIONS(2740), + [anon_sym_COMPONENT] = ACTIONS(2740), + [anon_sym_Continue] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_CONTINUE] = ACTIONS(2740), + [anon_sym_Debugger] = ACTIONS(2740), + [anon_sym_debugger] = ACTIONS(2740), + [anon_sym_DEBUGGER] = ACTIONS(2740), + [anon_sym_Default] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_DEFAULT] = ACTIONS(2740), + [anon_sym_Do] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_DO] = ACTIONS(2740), + [anon_sym_Final] = ACTIONS(2740), + [anon_sym_final] = ACTIONS(2740), + [anon_sym_FINAL] = ACTIONS(2740), + [anon_sym_For] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_FOR] = ACTIONS(2740), + [anon_sym_Function] = ACTIONS(2740), + [anon_sym_function] = ACTIONS(2740), + [anon_sym_FUNCTION] = ACTIONS(2740), + [anon_sym_If] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_IF] = ACTIONS(2740), + [anon_sym_Import] = ACTIONS(2740), + [anon_sym_import] = ACTIONS(2740), + [anon_sym_IMPORT] = ACTIONS(2740), + [anon_sym_Include] = ACTIONS(2740), + [anon_sym_include] = ACTIONS(2740), + [anon_sym_INCLUDE] = ACTIONS(2740), + [anon_sym_Interface] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_INTERFACE] = ACTIONS(2740), + [anon_sym_New] = ACTIONS(2740), + [anon_sym_new] = ACTIONS(2740), + [anon_sym_NEW] = ACTIONS(2740), + [anon_sym_Package] = ACTIONS(2740), + [anon_sym_package] = ACTIONS(2740), + [anon_sym_PACKAGE] = ACTIONS(2740), + [anon_sym_Private] = ACTIONS(2740), + [anon_sym_private] = ACTIONS(2740), + [anon_sym_PRIVATE] = ACTIONS(2740), + [anon_sym_Property] = ACTIONS(2740), + [anon_sym_property] = ACTIONS(2740), + [anon_sym_PROPERTY] = ACTIONS(2740), + [anon_sym_Public] = ACTIONS(2740), + [anon_sym_public] = ACTIONS(2740), + [anon_sym_PUBLIC] = ACTIONS(2740), + [anon_sym_Remote] = ACTIONS(2740), + [anon_sym_remote] = ACTIONS(2740), + [anon_sym_REMOTE] = ACTIONS(2740), + [anon_sym_Return] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_RETURN] = ACTIONS(2740), + [anon_sym_Static] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_STATIC] = ACTIONS(2740), + [anon_sym_Switch] = ACTIONS(2740), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_SWITCH] = ACTIONS(2740), + [anon_sym_Throw] = ACTIONS(2740), + [anon_sym_throw] = ACTIONS(2740), + [anon_sym_THROW] = ACTIONS(2740), + [anon_sym_Try] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [anon_sym_TRY] = ACTIONS(2740), + [anon_sym_Var] = ACTIONS(2740), + [anon_sym_var] = ACTIONS(2740), + [anon_sym_VAR] = ACTIONS(2740), + [anon_sym_While] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_WHILE] = ACTIONS(2740), + [anon_sym_With] = ACTIONS(2740), + [anon_sym_with] = ACTIONS(2740), + [anon_sym_WITH] = ACTIONS(2740), + [sym_cf_comment] = ACTIONS(2738), + [sym__java_block_open] = ACTIONS(2738), + [sym__static_type_prefix] = ACTIONS(2738), }, - [STATE(803)] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_Query] = ACTIONS(2680), - [anon_sym_query] = ACTIONS(2680), - [anon_sym_QUERY] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2678), - [aux_sym_unary_operator_token1] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), + [STATE(828)] = { + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_Query] = ACTIONS(2744), + [anon_sym_query] = ACTIONS(2744), + [anon_sym_QUERY] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [aux_sym_unary_operator_token1] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2744), + [aux_sym_number_token2] = ACTIONS(2742), + [anon_sym_This] = ACTIONS(2744), + [anon_sym_this] = ACTIONS(2744), + [anon_sym_THIS] = ACTIONS(2744), + [anon_sym_Super] = ACTIONS(2744), + [anon_sym_super] = ACTIONS(2744), + [anon_sym_SUPER] = ACTIONS(2744), + [anon_sym_True] = ACTIONS(2744), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_TRUE] = ACTIONS(2744), + [anon_sym_False] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_FALSE] = ACTIONS(2744), + [anon_sym_Null] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2744), + [anon_sym_NULL] = ACTIONS(2744), + [anon_sym_Undefined] = ACTIONS(2744), + [anon_sym_undefined] = ACTIONS(2744), + [anon_sym_UNDEFINED] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [sym_hash_empty] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_QueryExecute] = ACTIONS(2744), + [anon_sym_queryexecute] = ACTIONS(2744), + [anon_sym_QUERYEXECUTE] = ACTIONS(2744), + [anon_sym_queryExecute] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2742), + [anon_sym_Abstract] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_ABSTRACT] = ACTIONS(2744), + [anon_sym_Break] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_BREAK] = ACTIONS(2744), + [anon_sym_Case] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_CASE] = ACTIONS(2744), + [anon_sym_Component] = ACTIONS(2744), + [anon_sym_component] = ACTIONS(2744), + [anon_sym_COMPONENT] = ACTIONS(2744), + [anon_sym_Continue] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_CONTINUE] = ACTIONS(2744), + [anon_sym_Debugger] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_DEBUGGER] = ACTIONS(2744), + [anon_sym_Default] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_DEFAULT] = ACTIONS(2744), + [anon_sym_Do] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_DO] = ACTIONS(2744), + [anon_sym_Final] = ACTIONS(2744), + [anon_sym_final] = ACTIONS(2744), + [anon_sym_FINAL] = ACTIONS(2744), + [anon_sym_For] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_FOR] = ACTIONS(2744), + [anon_sym_Function] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_FUNCTION] = ACTIONS(2744), + [anon_sym_If] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_IF] = ACTIONS(2744), + [anon_sym_Import] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_IMPORT] = ACTIONS(2744), + [anon_sym_Include] = ACTIONS(2744), + [anon_sym_include] = ACTIONS(2744), + [anon_sym_INCLUDE] = ACTIONS(2744), + [anon_sym_Interface] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_INTERFACE] = ACTIONS(2744), + [anon_sym_New] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_NEW] = ACTIONS(2744), + [anon_sym_Package] = ACTIONS(2744), + [anon_sym_package] = ACTIONS(2744), + [anon_sym_PACKAGE] = ACTIONS(2744), + [anon_sym_Private] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_PRIVATE] = ACTIONS(2744), + [anon_sym_Property] = ACTIONS(2744), + [anon_sym_property] = ACTIONS(2744), + [anon_sym_PROPERTY] = ACTIONS(2744), + [anon_sym_Public] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_PUBLIC] = ACTIONS(2744), + [anon_sym_Remote] = ACTIONS(2744), + [anon_sym_remote] = ACTIONS(2744), + [anon_sym_REMOTE] = ACTIONS(2744), + [anon_sym_Return] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_RETURN] = ACTIONS(2744), + [anon_sym_Static] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_STATIC] = ACTIONS(2744), + [anon_sym_Switch] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_SWITCH] = ACTIONS(2744), + [anon_sym_Throw] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_THROW] = ACTIONS(2744), + [anon_sym_Try] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_TRY] = ACTIONS(2744), + [anon_sym_Var] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_VAR] = ACTIONS(2744), + [anon_sym_While] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_WHILE] = ACTIONS(2744), + [anon_sym_With] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_WITH] = ACTIONS(2744), + [sym_cf_comment] = ACTIONS(2742), + [sym__java_block_open] = ACTIONS(2742), + [sym__static_type_prefix] = ACTIONS(2742), + }, + [STATE(829)] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_let] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_Query] = ACTIONS(2748), + [anon_sym_query] = ACTIONS(2748), + [anon_sym_QUERY] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [aux_sym_unary_operator_token1] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2748), + [aux_sym_number_token2] = ACTIONS(2746), + [anon_sym_This] = ACTIONS(2748), + [anon_sym_this] = ACTIONS(2748), + [anon_sym_THIS] = ACTIONS(2748), + [anon_sym_Super] = ACTIONS(2748), + [anon_sym_super] = ACTIONS(2748), + [anon_sym_SUPER] = ACTIONS(2748), + [anon_sym_True] = ACTIONS(2748), + [anon_sym_true] = ACTIONS(2748), + [anon_sym_TRUE] = ACTIONS(2748), + [anon_sym_False] = ACTIONS(2748), + [anon_sym_false] = ACTIONS(2748), + [anon_sym_FALSE] = ACTIONS(2748), + [anon_sym_Null] = ACTIONS(2748), + [anon_sym_null] = ACTIONS(2748), + [anon_sym_NULL] = ACTIONS(2748), + [anon_sym_Undefined] = ACTIONS(2748), + [anon_sym_undefined] = ACTIONS(2748), + [anon_sym_UNDEFINED] = ACTIONS(2748), + [anon_sym_get] = ACTIONS(2748), + [anon_sym_set] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [sym_hash_empty] = ACTIONS(2746), + [anon_sym_export] = ACTIONS(2748), + [anon_sym_QueryExecute] = ACTIONS(2748), + [anon_sym_queryexecute] = ACTIONS(2748), + [anon_sym_QUERYEXECUTE] = ACTIONS(2748), + [anon_sym_queryExecute] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2746), + [anon_sym_Abstract] = ACTIONS(2748), + [anon_sym_abstract] = ACTIONS(2748), + [anon_sym_ABSTRACT] = ACTIONS(2748), + [anon_sym_Break] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_BREAK] = ACTIONS(2748), + [anon_sym_Case] = ACTIONS(2748), + [anon_sym_case] = ACTIONS(2748), + [anon_sym_CASE] = ACTIONS(2748), + [anon_sym_Component] = ACTIONS(2748), + [anon_sym_component] = ACTIONS(2748), + [anon_sym_COMPONENT] = ACTIONS(2748), + [anon_sym_Continue] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_CONTINUE] = ACTIONS(2748), + [anon_sym_Debugger] = ACTIONS(2748), + [anon_sym_debugger] = ACTIONS(2748), + [anon_sym_DEBUGGER] = ACTIONS(2748), + [anon_sym_Default] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_DEFAULT] = ACTIONS(2748), + [anon_sym_Do] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_DO] = ACTIONS(2748), + [anon_sym_Final] = ACTIONS(2748), + [anon_sym_final] = ACTIONS(2748), + [anon_sym_FINAL] = ACTIONS(2748), + [anon_sym_For] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_FOR] = ACTIONS(2748), + [anon_sym_Function] = ACTIONS(2748), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_FUNCTION] = ACTIONS(2748), + [anon_sym_If] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_IF] = ACTIONS(2748), + [anon_sym_Import] = ACTIONS(2748), + [anon_sym_import] = ACTIONS(2748), + [anon_sym_IMPORT] = ACTIONS(2748), + [anon_sym_Include] = ACTIONS(2748), + [anon_sym_include] = ACTIONS(2748), + [anon_sym_INCLUDE] = ACTIONS(2748), + [anon_sym_Interface] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_INTERFACE] = ACTIONS(2748), + [anon_sym_New] = ACTIONS(2748), + [anon_sym_new] = ACTIONS(2748), + [anon_sym_NEW] = ACTIONS(2748), + [anon_sym_Package] = ACTIONS(2748), + [anon_sym_package] = ACTIONS(2748), + [anon_sym_PACKAGE] = ACTIONS(2748), + [anon_sym_Private] = ACTIONS(2748), + [anon_sym_private] = ACTIONS(2748), + [anon_sym_PRIVATE] = ACTIONS(2748), + [anon_sym_Property] = ACTIONS(2748), + [anon_sym_property] = ACTIONS(2748), + [anon_sym_PROPERTY] = ACTIONS(2748), + [anon_sym_Public] = ACTIONS(2748), + [anon_sym_public] = ACTIONS(2748), + [anon_sym_PUBLIC] = ACTIONS(2748), + [anon_sym_Remote] = ACTIONS(2748), + [anon_sym_remote] = ACTIONS(2748), + [anon_sym_REMOTE] = ACTIONS(2748), + [anon_sym_Return] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_RETURN] = ACTIONS(2748), + [anon_sym_Static] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_STATIC] = ACTIONS(2748), + [anon_sym_Switch] = ACTIONS(2748), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_SWITCH] = ACTIONS(2748), + [anon_sym_Throw] = ACTIONS(2748), + [anon_sym_throw] = ACTIONS(2748), + [anon_sym_THROW] = ACTIONS(2748), + [anon_sym_Try] = ACTIONS(2748), + [anon_sym_try] = ACTIONS(2748), + [anon_sym_TRY] = ACTIONS(2748), + [anon_sym_Var] = ACTIONS(2748), + [anon_sym_var] = ACTIONS(2748), + [anon_sym_VAR] = ACTIONS(2748), + [anon_sym_While] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_WHILE] = ACTIONS(2748), + [anon_sym_With] = ACTIONS(2748), + [anon_sym_with] = ACTIONS(2748), + [anon_sym_WITH] = ACTIONS(2748), + [sym_cf_comment] = ACTIONS(2746), + [sym__java_block_open] = ACTIONS(2746), + [sym__static_type_prefix] = ACTIONS(2746), + }, + [STATE(830)] = { + [ts_builtin_sym_end] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_Query] = ACTIONS(2752), + [anon_sym_query] = ACTIONS(2752), + [anon_sym_QUERY] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_SLASH] = ACTIONS(2752), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [aux_sym_unary_operator_token1] = ACTIONS(2752), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2750), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2680), - [aux_sym_number_token2] = ACTIONS(2678), - [anon_sym_This] = ACTIONS(2680), - [anon_sym_this] = ACTIONS(2680), - [anon_sym_THIS] = ACTIONS(2680), - [anon_sym_Super] = ACTIONS(2680), - [anon_sym_super] = ACTIONS(2680), - [anon_sym_SUPER] = ACTIONS(2680), - [anon_sym_True] = ACTIONS(2680), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_TRUE] = ACTIONS(2680), - [anon_sym_False] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_FALSE] = ACTIONS(2680), - [anon_sym_Null] = ACTIONS(2680), - [anon_sym_null] = ACTIONS(2680), - [anon_sym_NULL] = ACTIONS(2680), - [anon_sym_Undefined] = ACTIONS(2680), - [anon_sym_undefined] = ACTIONS(2680), - [anon_sym_UNDEFINED] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [sym_hash_empty] = ACTIONS(2678), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_QueryExecute] = ACTIONS(2680), - [anon_sym_queryexecute] = ACTIONS(2680), - [anon_sym_QUERYEXECUTE] = ACTIONS(2680), - [anon_sym_queryExecute] = ACTIONS(2680), - [anon_sym_BQUOTE] = ACTIONS(2680), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2678), - [anon_sym_Abstract] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_ABSTRACT] = ACTIONS(2680), - [anon_sym_Break] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_BREAK] = ACTIONS(2680), - [anon_sym_Case] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_CASE] = ACTIONS(2680), - [anon_sym_Component] = ACTIONS(2680), - [anon_sym_component] = ACTIONS(2680), - [anon_sym_COMPONENT] = ACTIONS(2680), - [anon_sym_Continue] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_CONTINUE] = ACTIONS(2680), - [anon_sym_Debugger] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_DEBUGGER] = ACTIONS(2680), - [anon_sym_Default] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_DEFAULT] = ACTIONS(2680), - [anon_sym_Do] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_DO] = ACTIONS(2680), - [anon_sym_Final] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_FINAL] = ACTIONS(2680), - [anon_sym_For] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_FOR] = ACTIONS(2680), - [anon_sym_Function] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_FUNCTION] = ACTIONS(2680), - [anon_sym_If] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_IF] = ACTIONS(2680), - [anon_sym_Import] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_IMPORT] = ACTIONS(2680), - [anon_sym_Include] = ACTIONS(2680), - [anon_sym_include] = ACTIONS(2680), - [anon_sym_INCLUDE] = ACTIONS(2680), - [anon_sym_Interface] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_INTERFACE] = ACTIONS(2680), - [anon_sym_New] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_NEW] = ACTIONS(2680), - [anon_sym_Package] = ACTIONS(2680), - [anon_sym_package] = ACTIONS(2680), - [anon_sym_PACKAGE] = ACTIONS(2680), - [anon_sym_Private] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_PRIVATE] = ACTIONS(2680), - [anon_sym_Property] = ACTIONS(2680), - [anon_sym_property] = ACTIONS(2680), - [anon_sym_PROPERTY] = ACTIONS(2680), - [anon_sym_Public] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_PUBLIC] = ACTIONS(2680), - [anon_sym_Remote] = ACTIONS(2680), - [anon_sym_remote] = ACTIONS(2680), - [anon_sym_REMOTE] = ACTIONS(2680), - [anon_sym_Return] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_RETURN] = ACTIONS(2680), - [anon_sym_Static] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_STATIC] = ACTIONS(2680), - [anon_sym_Switch] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_SWITCH] = ACTIONS(2680), - [anon_sym_Throw] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_THROW] = ACTIONS(2680), - [anon_sym_Try] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_TRY] = ACTIONS(2680), - [anon_sym_Var] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_VAR] = ACTIONS(2680), - [anon_sym_While] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_WHILE] = ACTIONS(2680), - [anon_sym_With] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_WITH] = ACTIONS(2680), - [sym__automatic_semicolon] = ACTIONS(3160), - [sym_cf_comment] = ACTIONS(2678), - [sym__java_block_open] = ACTIONS(2678), - [sym__static_type_prefix] = ACTIONS(2678), + [aux_sym_number_token1] = ACTIONS(2752), + [aux_sym_number_token2] = ACTIONS(2750), + [anon_sym_This] = ACTIONS(2752), + [anon_sym_this] = ACTIONS(2752), + [anon_sym_THIS] = ACTIONS(2752), + [anon_sym_Super] = ACTIONS(2752), + [anon_sym_super] = ACTIONS(2752), + [anon_sym_SUPER] = ACTIONS(2752), + [anon_sym_True] = ACTIONS(2752), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_TRUE] = ACTIONS(2752), + [anon_sym_False] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [anon_sym_FALSE] = ACTIONS(2752), + [anon_sym_Null] = ACTIONS(2752), + [anon_sym_null] = ACTIONS(2752), + [anon_sym_NULL] = ACTIONS(2752), + [anon_sym_Undefined] = ACTIONS(2752), + [anon_sym_undefined] = ACTIONS(2752), + [anon_sym_UNDEFINED] = ACTIONS(2752), + [anon_sym_get] = ACTIONS(2752), + [anon_sym_set] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2752), + [sym_hash_empty] = ACTIONS(2750), + [anon_sym_export] = ACTIONS(2752), + [anon_sym_QueryExecute] = ACTIONS(2752), + [anon_sym_queryexecute] = ACTIONS(2752), + [anon_sym_QUERYEXECUTE] = ACTIONS(2752), + [anon_sym_queryExecute] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2750), + [anon_sym_Abstract] = ACTIONS(2752), + [anon_sym_abstract] = ACTIONS(2752), + [anon_sym_ABSTRACT] = ACTIONS(2752), + [anon_sym_Break] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_BREAK] = ACTIONS(2752), + [anon_sym_Case] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_CASE] = ACTIONS(2752), + [anon_sym_Component] = ACTIONS(2752), + [anon_sym_component] = ACTIONS(2752), + [anon_sym_COMPONENT] = ACTIONS(2752), + [anon_sym_Continue] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_CONTINUE] = ACTIONS(2752), + [anon_sym_Debugger] = ACTIONS(2752), + [anon_sym_debugger] = ACTIONS(2752), + [anon_sym_DEBUGGER] = ACTIONS(2752), + [anon_sym_Default] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_DEFAULT] = ACTIONS(2752), + [anon_sym_Do] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_DO] = ACTIONS(2752), + [anon_sym_Final] = ACTIONS(2752), + [anon_sym_final] = ACTIONS(2752), + [anon_sym_FINAL] = ACTIONS(2752), + [anon_sym_For] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_FOR] = ACTIONS(2752), + [anon_sym_Function] = ACTIONS(2752), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_FUNCTION] = ACTIONS(2752), + [anon_sym_If] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_IF] = ACTIONS(2752), + [anon_sym_Import] = ACTIONS(2752), + [anon_sym_import] = ACTIONS(2752), + [anon_sym_IMPORT] = ACTIONS(2752), + [anon_sym_Include] = ACTIONS(2752), + [anon_sym_include] = ACTIONS(2752), + [anon_sym_INCLUDE] = ACTIONS(2752), + [anon_sym_Interface] = ACTIONS(2752), + [anon_sym_interface] = ACTIONS(2752), + [anon_sym_INTERFACE] = ACTIONS(2752), + [anon_sym_New] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_NEW] = ACTIONS(2752), + [anon_sym_Package] = ACTIONS(2752), + [anon_sym_package] = ACTIONS(2752), + [anon_sym_PACKAGE] = ACTIONS(2752), + [anon_sym_Private] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_PRIVATE] = ACTIONS(2752), + [anon_sym_Property] = ACTIONS(2752), + [anon_sym_property] = ACTIONS(2752), + [anon_sym_PROPERTY] = ACTIONS(2752), + [anon_sym_Public] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_PUBLIC] = ACTIONS(2752), + [anon_sym_Remote] = ACTIONS(2752), + [anon_sym_remote] = ACTIONS(2752), + [anon_sym_REMOTE] = ACTIONS(2752), + [anon_sym_Return] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_RETURN] = ACTIONS(2752), + [anon_sym_Static] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_STATIC] = ACTIONS(2752), + [anon_sym_Switch] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_SWITCH] = ACTIONS(2752), + [anon_sym_Throw] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_THROW] = ACTIONS(2752), + [anon_sym_Try] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_TRY] = ACTIONS(2752), + [anon_sym_Var] = ACTIONS(2752), + [anon_sym_var] = ACTIONS(2752), + [anon_sym_VAR] = ACTIONS(2752), + [anon_sym_While] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_WHILE] = ACTIONS(2752), + [anon_sym_With] = ACTIONS(2752), + [anon_sym_with] = ACTIONS(2752), + [anon_sym_WITH] = ACTIONS(2752), + [sym_cf_comment] = ACTIONS(2750), + [sym__java_block_open] = ACTIONS(2750), + [sym__static_type_prefix] = ACTIONS(2750), }, - [STATE(804)] = { - [ts_builtin_sym_end] = ACTIONS(2618), - [sym_identifier] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_Query] = ACTIONS(2620), - [anon_sym_query] = ACTIONS(2620), - [anon_sym_QUERY] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_BANG] = ACTIONS(2618), - [anon_sym_TILDE] = ACTIONS(2618), - [aux_sym_unary_operator_token1] = ACTIONS(2620), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_DQUOTE] = ACTIONS(2618), - [anon_sym_SQUOTE] = ACTIONS(2618), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2620), - [aux_sym_number_token2] = ACTIONS(2618), - [anon_sym_This] = ACTIONS(2620), - [anon_sym_this] = ACTIONS(2620), - [anon_sym_THIS] = ACTIONS(2620), - [anon_sym_Super] = ACTIONS(2620), - [anon_sym_super] = ACTIONS(2620), - [anon_sym_SUPER] = ACTIONS(2620), - [anon_sym_True] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2620), - [anon_sym_TRUE] = ACTIONS(2620), - [anon_sym_False] = ACTIONS(2620), - [anon_sym_false] = ACTIONS(2620), - [anon_sym_FALSE] = ACTIONS(2620), - [anon_sym_Null] = ACTIONS(2620), - [anon_sym_null] = ACTIONS(2620), - [anon_sym_NULL] = ACTIONS(2620), - [anon_sym_Undefined] = ACTIONS(2620), - [anon_sym_undefined] = ACTIONS(2620), - [anon_sym_UNDEFINED] = ACTIONS(2620), - [anon_sym_get] = ACTIONS(2620), - [anon_sym_set] = ACTIONS(2620), - [anon_sym_POUND] = ACTIONS(2620), - [sym_hash_empty] = ACTIONS(2618), - [anon_sym_export] = ACTIONS(2620), - [anon_sym_QueryExecute] = ACTIONS(2620), - [anon_sym_queryexecute] = ACTIONS(2620), - [anon_sym_QUERYEXECUTE] = ACTIONS(2620), - [anon_sym_queryExecute] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2620), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2618), - [anon_sym_Abstract] = ACTIONS(2620), - [anon_sym_abstract] = ACTIONS(2620), - [anon_sym_ABSTRACT] = ACTIONS(2620), - [anon_sym_Break] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2620), - [anon_sym_BREAK] = ACTIONS(2620), - [anon_sym_Case] = ACTIONS(2620), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_CASE] = ACTIONS(2620), - [anon_sym_Component] = ACTIONS(2620), - [anon_sym_component] = ACTIONS(2620), - [anon_sym_COMPONENT] = ACTIONS(2620), - [anon_sym_Continue] = ACTIONS(2620), - [anon_sym_continue] = ACTIONS(2620), - [anon_sym_CONTINUE] = ACTIONS(2620), - [anon_sym_Debugger] = ACTIONS(2620), - [anon_sym_debugger] = ACTIONS(2620), - [anon_sym_DEBUGGER] = ACTIONS(2620), - [anon_sym_Default] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_DEFAULT] = ACTIONS(2620), - [anon_sym_Do] = ACTIONS(2620), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_DO] = ACTIONS(2620), - [anon_sym_Final] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_FINAL] = ACTIONS(2620), - [anon_sym_For] = ACTIONS(2620), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_FOR] = ACTIONS(2620), - [anon_sym_Function] = ACTIONS(2620), - [anon_sym_function] = ACTIONS(2620), - [anon_sym_FUNCTION] = ACTIONS(2620), - [anon_sym_If] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_IF] = ACTIONS(2620), - [anon_sym_Import] = ACTIONS(2620), - [anon_sym_import] = ACTIONS(2620), - [anon_sym_IMPORT] = ACTIONS(2620), - [anon_sym_Include] = ACTIONS(2620), - [anon_sym_include] = ACTIONS(2620), - [anon_sym_INCLUDE] = ACTIONS(2620), - [anon_sym_Interface] = ACTIONS(2620), - [anon_sym_interface] = ACTIONS(2620), - [anon_sym_INTERFACE] = ACTIONS(2620), - [anon_sym_New] = ACTIONS(2620), - [anon_sym_new] = ACTIONS(2620), - [anon_sym_NEW] = ACTIONS(2620), - [anon_sym_Package] = ACTIONS(2620), - [anon_sym_package] = ACTIONS(2620), - [anon_sym_PACKAGE] = ACTIONS(2620), - [anon_sym_Private] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_PRIVATE] = ACTIONS(2620), - [anon_sym_Property] = ACTIONS(2620), - [anon_sym_property] = ACTIONS(2620), - [anon_sym_PROPERTY] = ACTIONS(2620), - [anon_sym_Public] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_PUBLIC] = ACTIONS(2620), - [anon_sym_Remote] = ACTIONS(2620), - [anon_sym_remote] = ACTIONS(2620), - [anon_sym_REMOTE] = ACTIONS(2620), - [anon_sym_Return] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_RETURN] = ACTIONS(2620), - [anon_sym_Static] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_STATIC] = ACTIONS(2620), - [anon_sym_Switch] = ACTIONS(2620), - [anon_sym_switch] = ACTIONS(2620), - [anon_sym_SWITCH] = ACTIONS(2620), - [anon_sym_Throw] = ACTIONS(2620), - [anon_sym_throw] = ACTIONS(2620), - [anon_sym_THROW] = ACTIONS(2620), - [anon_sym_Try] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [anon_sym_TRY] = ACTIONS(2620), - [anon_sym_Var] = ACTIONS(2620), - [anon_sym_var] = ACTIONS(2620), - [anon_sym_VAR] = ACTIONS(2620), - [anon_sym_While] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_WHILE] = ACTIONS(2620), - [anon_sym_With] = ACTIONS(2620), - [anon_sym_with] = ACTIONS(2620), - [anon_sym_WITH] = ACTIONS(2620), - [sym__automatic_semicolon] = ACTIONS(3162), - [sym_cf_comment] = ACTIONS(2618), - [sym__java_block_open] = ACTIONS(2618), - [sym__static_type_prefix] = ACTIONS(2618), + [STATE(831)] = { + [ts_builtin_sym_end] = ACTIONS(2974), + [sym_identifier] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_RBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_Query] = ACTIONS(2976), + [anon_sym_query] = ACTIONS(2976), + [anon_sym_QUERY] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2974), + [aux_sym_unary_operator_token1] = ACTIONS(2976), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_SQUOTE] = ACTIONS(2974), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2976), + [aux_sym_number_token2] = ACTIONS(2974), + [anon_sym_This] = ACTIONS(2976), + [anon_sym_this] = ACTIONS(2976), + [anon_sym_THIS] = ACTIONS(2976), + [anon_sym_Super] = ACTIONS(2976), + [anon_sym_super] = ACTIONS(2976), + [anon_sym_SUPER] = ACTIONS(2976), + [anon_sym_True] = ACTIONS(2976), + [anon_sym_true] = ACTIONS(2976), + [anon_sym_TRUE] = ACTIONS(2976), + [anon_sym_False] = ACTIONS(2976), + [anon_sym_false] = ACTIONS(2976), + [anon_sym_FALSE] = ACTIONS(2976), + [anon_sym_Null] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_Undefined] = ACTIONS(2976), + [anon_sym_undefined] = ACTIONS(2976), + [anon_sym_UNDEFINED] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(2976), + [anon_sym_set] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(2976), + [sym_hash_empty] = ACTIONS(2974), + [anon_sym_export] = ACTIONS(2976), + [anon_sym_QueryExecute] = ACTIONS(2976), + [anon_sym_queryexecute] = ACTIONS(2976), + [anon_sym_QUERYEXECUTE] = ACTIONS(2976), + [anon_sym_queryExecute] = ACTIONS(2976), + [anon_sym_BQUOTE] = ACTIONS(2976), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2974), + [anon_sym_Abstract] = ACTIONS(2976), + [anon_sym_abstract] = ACTIONS(2976), + [anon_sym_ABSTRACT] = ACTIONS(2976), + [anon_sym_Break] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_BREAK] = ACTIONS(2976), + [anon_sym_Case] = ACTIONS(2976), + [anon_sym_case] = ACTIONS(2976), + [anon_sym_CASE] = ACTIONS(2976), + [anon_sym_Component] = ACTIONS(2976), + [anon_sym_component] = ACTIONS(2976), + [anon_sym_COMPONENT] = ACTIONS(2976), + [anon_sym_Continue] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_CONTINUE] = ACTIONS(2976), + [anon_sym_Debugger] = ACTIONS(2976), + [anon_sym_debugger] = ACTIONS(2976), + [anon_sym_DEBUGGER] = ACTIONS(2976), + [anon_sym_Default] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_DEFAULT] = ACTIONS(2976), + [anon_sym_Do] = ACTIONS(2976), + [anon_sym_do] = ACTIONS(2976), + [anon_sym_DO] = ACTIONS(2976), + [anon_sym_Final] = ACTIONS(2976), + [anon_sym_final] = ACTIONS(2976), + [anon_sym_FINAL] = ACTIONS(2976), + [anon_sym_For] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_FOR] = ACTIONS(2976), + [anon_sym_Function] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_FUNCTION] = ACTIONS(2976), + [anon_sym_If] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_IF] = ACTIONS(2976), + [anon_sym_Import] = ACTIONS(2976), + [anon_sym_import] = ACTIONS(2976), + [anon_sym_IMPORT] = ACTIONS(2976), + [anon_sym_Include] = ACTIONS(2976), + [anon_sym_include] = ACTIONS(2976), + [anon_sym_INCLUDE] = ACTIONS(2976), + [anon_sym_Interface] = ACTIONS(2976), + [anon_sym_interface] = ACTIONS(2976), + [anon_sym_INTERFACE] = ACTIONS(2976), + [anon_sym_New] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_NEW] = ACTIONS(2976), + [anon_sym_Package] = ACTIONS(2976), + [anon_sym_package] = ACTIONS(2976), + [anon_sym_PACKAGE] = ACTIONS(2976), + [anon_sym_Private] = ACTIONS(2976), + [anon_sym_private] = ACTIONS(2976), + [anon_sym_PRIVATE] = ACTIONS(2976), + [anon_sym_Property] = ACTIONS(2976), + [anon_sym_property] = ACTIONS(2976), + [anon_sym_PROPERTY] = ACTIONS(2976), + [anon_sym_Public] = ACTIONS(2976), + [anon_sym_public] = ACTIONS(2976), + [anon_sym_PUBLIC] = ACTIONS(2976), + [anon_sym_Remote] = ACTIONS(2976), + [anon_sym_remote] = ACTIONS(2976), + [anon_sym_REMOTE] = ACTIONS(2976), + [anon_sym_Return] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_RETURN] = ACTIONS(2976), + [anon_sym_Static] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_STATIC] = ACTIONS(2976), + [anon_sym_Switch] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2976), + [anon_sym_SWITCH] = ACTIONS(2976), + [anon_sym_Throw] = ACTIONS(2976), + [anon_sym_throw] = ACTIONS(2976), + [anon_sym_THROW] = ACTIONS(2976), + [anon_sym_Try] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [anon_sym_TRY] = ACTIONS(2976), + [anon_sym_Var] = ACTIONS(2976), + [anon_sym_var] = ACTIONS(2976), + [anon_sym_VAR] = ACTIONS(2976), + [anon_sym_While] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_WHILE] = ACTIONS(2976), + [anon_sym_With] = ACTIONS(2976), + [anon_sym_with] = ACTIONS(2976), + [anon_sym_WITH] = ACTIONS(2976), + [sym_cf_comment] = ACTIONS(2974), + [sym__java_block_open] = ACTIONS(2974), + [sym__static_type_prefix] = ACTIONS(2974), }, - [STATE(805)] = { - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_identifier] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_Query] = ACTIONS(2614), - [anon_sym_query] = ACTIONS(2614), - [anon_sym_QUERY] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [aux_sym_unary_operator_token1] = ACTIONS(2614), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2614), - [aux_sym_number_token2] = ACTIONS(2612), - [anon_sym_This] = ACTIONS(2614), - [anon_sym_this] = ACTIONS(2614), - [anon_sym_THIS] = ACTIONS(2614), - [anon_sym_Super] = ACTIONS(2614), - [anon_sym_super] = ACTIONS(2614), - [anon_sym_SUPER] = ACTIONS(2614), - [anon_sym_True] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_TRUE] = ACTIONS(2614), - [anon_sym_False] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_FALSE] = ACTIONS(2614), - [anon_sym_Null] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2614), - [anon_sym_NULL] = ACTIONS(2614), - [anon_sym_Undefined] = ACTIONS(2614), - [anon_sym_undefined] = ACTIONS(2614), - [anon_sym_UNDEFINED] = ACTIONS(2614), - [anon_sym_get] = ACTIONS(2614), - [anon_sym_set] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [sym_hash_empty] = ACTIONS(2612), - [anon_sym_export] = ACTIONS(2614), - [anon_sym_QueryExecute] = ACTIONS(2614), - [anon_sym_queryexecute] = ACTIONS(2614), - [anon_sym_QUERYEXECUTE] = ACTIONS(2614), - [anon_sym_queryExecute] = ACTIONS(2614), - [anon_sym_BQUOTE] = ACTIONS(2614), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2612), - [anon_sym_Abstract] = ACTIONS(2614), - [anon_sym_abstract] = ACTIONS(2614), - [anon_sym_ABSTRACT] = ACTIONS(2614), - [anon_sym_Break] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_BREAK] = ACTIONS(2614), - [anon_sym_Case] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_CASE] = ACTIONS(2614), - [anon_sym_Component] = ACTIONS(2614), - [anon_sym_component] = ACTIONS(2614), - [anon_sym_COMPONENT] = ACTIONS(2614), - [anon_sym_Continue] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_CONTINUE] = ACTIONS(2614), - [anon_sym_Debugger] = ACTIONS(2614), - [anon_sym_debugger] = ACTIONS(2614), - [anon_sym_DEBUGGER] = ACTIONS(2614), - [anon_sym_Default] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_DEFAULT] = ACTIONS(2614), - [anon_sym_Do] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_DO] = ACTIONS(2614), - [anon_sym_Final] = ACTIONS(2614), - [anon_sym_final] = ACTIONS(2614), - [anon_sym_FINAL] = ACTIONS(2614), - [anon_sym_For] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_FOR] = ACTIONS(2614), - [anon_sym_Function] = ACTIONS(2614), - [anon_sym_function] = ACTIONS(2614), - [anon_sym_FUNCTION] = ACTIONS(2614), - [anon_sym_If] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_IF] = ACTIONS(2614), - [anon_sym_Import] = ACTIONS(2614), - [anon_sym_import] = ACTIONS(2614), - [anon_sym_IMPORT] = ACTIONS(2614), - [anon_sym_Include] = ACTIONS(2614), - [anon_sym_include] = ACTIONS(2614), - [anon_sym_INCLUDE] = ACTIONS(2614), - [anon_sym_Interface] = ACTIONS(2614), - [anon_sym_interface] = ACTIONS(2614), - [anon_sym_INTERFACE] = ACTIONS(2614), - [anon_sym_New] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_NEW] = ACTIONS(2614), - [anon_sym_Package] = ACTIONS(2614), - [anon_sym_package] = ACTIONS(2614), - [anon_sym_PACKAGE] = ACTIONS(2614), - [anon_sym_Private] = ACTIONS(2614), - [anon_sym_private] = ACTIONS(2614), - [anon_sym_PRIVATE] = ACTIONS(2614), - [anon_sym_Property] = ACTIONS(2614), - [anon_sym_property] = ACTIONS(2614), - [anon_sym_PROPERTY] = ACTIONS(2614), - [anon_sym_Public] = ACTIONS(2614), - [anon_sym_public] = ACTIONS(2614), - [anon_sym_PUBLIC] = ACTIONS(2614), - [anon_sym_Remote] = ACTIONS(2614), - [anon_sym_remote] = ACTIONS(2614), - [anon_sym_REMOTE] = ACTIONS(2614), - [anon_sym_Return] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_RETURN] = ACTIONS(2614), - [anon_sym_Static] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_STATIC] = ACTIONS(2614), - [anon_sym_Switch] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_SWITCH] = ACTIONS(2614), - [anon_sym_Throw] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_THROW] = ACTIONS(2614), - [anon_sym_Try] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_TRY] = ACTIONS(2614), - [anon_sym_Var] = ACTIONS(2614), - [anon_sym_var] = ACTIONS(2614), - [anon_sym_VAR] = ACTIONS(2614), - [anon_sym_While] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_WHILE] = ACTIONS(2614), - [anon_sym_With] = ACTIONS(2614), - [anon_sym_with] = ACTIONS(2614), - [anon_sym_WITH] = ACTIONS(2614), - [sym__automatic_semicolon] = ACTIONS(3164), - [sym_cf_comment] = ACTIONS(2612), - [sym__java_block_open] = ACTIONS(2612), - [sym__static_type_prefix] = ACTIONS(2612), + [STATE(832)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_Query] = ACTIONS(1590), + [anon_sym_query] = ACTIONS(1590), + [anon_sym_QUERY] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [aux_sym_unary_operator_token1] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1590), + [aux_sym_number_token2] = ACTIONS(1588), + [anon_sym_This] = ACTIONS(1590), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_THIS] = ACTIONS(1590), + [anon_sym_Super] = ACTIONS(1590), + [anon_sym_super] = ACTIONS(1590), + [anon_sym_SUPER] = ACTIONS(1590), + [anon_sym_True] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_TRUE] = ACTIONS(1590), + [anon_sym_False] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [anon_sym_FALSE] = ACTIONS(1590), + [anon_sym_Null] = ACTIONS(1590), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_Undefined] = ACTIONS(1590), + [anon_sym_undefined] = ACTIONS(1590), + [anon_sym_UNDEFINED] = ACTIONS(1590), + [anon_sym_get] = ACTIONS(1590), + [anon_sym_set] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [sym_hash_empty] = ACTIONS(1588), + [anon_sym_export] = ACTIONS(1590), + [anon_sym_QueryExecute] = ACTIONS(1590), + [anon_sym_queryexecute] = ACTIONS(1590), + [anon_sym_QUERYEXECUTE] = ACTIONS(1590), + [anon_sym_queryExecute] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1588), + [anon_sym_Abstract] = ACTIONS(1590), + [anon_sym_abstract] = ACTIONS(1590), + [anon_sym_ABSTRACT] = ACTIONS(1590), + [anon_sym_Break] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_BREAK] = ACTIONS(1590), + [anon_sym_Case] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_CASE] = ACTIONS(1590), + [anon_sym_Component] = ACTIONS(1590), + [anon_sym_component] = ACTIONS(1590), + [anon_sym_COMPONENT] = ACTIONS(1590), + [anon_sym_Continue] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_CONTINUE] = ACTIONS(1590), + [anon_sym_Debugger] = ACTIONS(1590), + [anon_sym_debugger] = ACTIONS(1590), + [anon_sym_DEBUGGER] = ACTIONS(1590), + [anon_sym_Default] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_DEFAULT] = ACTIONS(1590), + [anon_sym_Do] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_DO] = ACTIONS(1590), + [anon_sym_Final] = ACTIONS(1590), + [anon_sym_final] = ACTIONS(1590), + [anon_sym_FINAL] = ACTIONS(1590), + [anon_sym_For] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_FOR] = ACTIONS(1590), + [anon_sym_Function] = ACTIONS(1590), + [anon_sym_function] = ACTIONS(1590), + [anon_sym_FUNCTION] = ACTIONS(1590), + [anon_sym_If] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_IF] = ACTIONS(1590), + [anon_sym_Import] = ACTIONS(1590), + [anon_sym_import] = ACTIONS(1590), + [anon_sym_IMPORT] = ACTIONS(1590), + [anon_sym_Include] = ACTIONS(1590), + [anon_sym_include] = ACTIONS(1590), + [anon_sym_INCLUDE] = ACTIONS(1590), + [anon_sym_Interface] = ACTIONS(1590), + [anon_sym_interface] = ACTIONS(1590), + [anon_sym_INTERFACE] = ACTIONS(1590), + [anon_sym_New] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1590), + [anon_sym_NEW] = ACTIONS(1590), + [anon_sym_Package] = ACTIONS(1590), + [anon_sym_package] = ACTIONS(1590), + [anon_sym_PACKAGE] = ACTIONS(1590), + [anon_sym_Private] = ACTIONS(1590), + [anon_sym_private] = ACTIONS(1590), + [anon_sym_PRIVATE] = ACTIONS(1590), + [anon_sym_Property] = ACTIONS(1590), + [anon_sym_property] = ACTIONS(1590), + [anon_sym_PROPERTY] = ACTIONS(1590), + [anon_sym_Public] = ACTIONS(1590), + [anon_sym_public] = ACTIONS(1590), + [anon_sym_PUBLIC] = ACTIONS(1590), + [anon_sym_Remote] = ACTIONS(1590), + [anon_sym_remote] = ACTIONS(1590), + [anon_sym_REMOTE] = ACTIONS(1590), + [anon_sym_Return] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_RETURN] = ACTIONS(1590), + [anon_sym_Static] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_STATIC] = ACTIONS(1590), + [anon_sym_Switch] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_SWITCH] = ACTIONS(1590), + [anon_sym_Throw] = ACTIONS(1590), + [anon_sym_throw] = ACTIONS(1590), + [anon_sym_THROW] = ACTIONS(1590), + [anon_sym_Try] = ACTIONS(1590), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_TRY] = ACTIONS(1590), + [anon_sym_Var] = ACTIONS(1590), + [anon_sym_var] = ACTIONS(1590), + [anon_sym_VAR] = ACTIONS(1590), + [anon_sym_While] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_WHILE] = ACTIONS(1590), + [anon_sym_With] = ACTIONS(1590), + [anon_sym_with] = ACTIONS(1590), + [anon_sym_WITH] = ACTIONS(1590), + [sym_cf_comment] = ACTIONS(1588), + [sym__java_block_open] = ACTIONS(1588), + [sym__static_type_prefix] = ACTIONS(1588), }, - [STATE(806)] = { - [ts_builtin_sym_end] = ACTIONS(2654), - [sym_identifier] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_RBRACE] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2654), - [anon_sym_let] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_Query] = ACTIONS(2656), - [anon_sym_query] = ACTIONS(2656), - [anon_sym_QUERY] = ACTIONS(2656), - [anon_sym_PLUS] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2656), - [anon_sym_SLASH] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2654), - [aux_sym_unary_operator_token1] = ACTIONS(2656), - [anon_sym_PLUS_PLUS] = ACTIONS(2654), - [anon_sym_DASH_DASH] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2654), - [anon_sym_SQUOTE] = ACTIONS(2654), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2656), - [aux_sym_number_token2] = ACTIONS(2654), - [anon_sym_This] = ACTIONS(2656), - [anon_sym_this] = ACTIONS(2656), - [anon_sym_THIS] = ACTIONS(2656), - [anon_sym_Super] = ACTIONS(2656), - [anon_sym_super] = ACTIONS(2656), - [anon_sym_SUPER] = ACTIONS(2656), - [anon_sym_True] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2656), - [anon_sym_TRUE] = ACTIONS(2656), - [anon_sym_False] = ACTIONS(2656), - [anon_sym_false] = ACTIONS(2656), - [anon_sym_FALSE] = ACTIONS(2656), - [anon_sym_Null] = ACTIONS(2656), - [anon_sym_null] = ACTIONS(2656), - [anon_sym_NULL] = ACTIONS(2656), - [anon_sym_Undefined] = ACTIONS(2656), - [anon_sym_undefined] = ACTIONS(2656), - [anon_sym_UNDEFINED] = ACTIONS(2656), - [anon_sym_get] = ACTIONS(2656), - [anon_sym_set] = ACTIONS(2656), - [anon_sym_POUND] = ACTIONS(2656), - [sym_hash_empty] = ACTIONS(2654), - [anon_sym_export] = ACTIONS(2656), - [anon_sym_QueryExecute] = ACTIONS(2656), - [anon_sym_queryexecute] = ACTIONS(2656), - [anon_sym_QUERYEXECUTE] = ACTIONS(2656), - [anon_sym_queryExecute] = ACTIONS(2656), - [anon_sym_BQUOTE] = ACTIONS(2656), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2654), - [anon_sym_Abstract] = ACTIONS(2656), - [anon_sym_abstract] = ACTIONS(2656), - [anon_sym_ABSTRACT] = ACTIONS(2656), - [anon_sym_Break] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_BREAK] = ACTIONS(2656), - [anon_sym_Case] = ACTIONS(2656), - [anon_sym_case] = ACTIONS(2656), - [anon_sym_CASE] = ACTIONS(2656), - [anon_sym_Component] = ACTIONS(2656), - [anon_sym_component] = ACTIONS(2656), - [anon_sym_COMPONENT] = ACTIONS(2656), - [anon_sym_Continue] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_CONTINUE] = ACTIONS(2656), - [anon_sym_Debugger] = ACTIONS(2656), - [anon_sym_debugger] = ACTIONS(2656), - [anon_sym_DEBUGGER] = ACTIONS(2656), - [anon_sym_Default] = ACTIONS(2656), - [anon_sym_default] = ACTIONS(2656), - [anon_sym_DEFAULT] = ACTIONS(2656), - [anon_sym_Do] = ACTIONS(2656), - [anon_sym_do] = ACTIONS(2656), - [anon_sym_DO] = ACTIONS(2656), - [anon_sym_Final] = ACTIONS(2656), - [anon_sym_final] = ACTIONS(2656), - [anon_sym_FINAL] = ACTIONS(2656), - [anon_sym_For] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2656), - [anon_sym_FOR] = ACTIONS(2656), - [anon_sym_Function] = ACTIONS(2656), - [anon_sym_function] = ACTIONS(2656), - [anon_sym_FUNCTION] = ACTIONS(2656), - [anon_sym_If] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_IF] = ACTIONS(2656), - [anon_sym_Import] = ACTIONS(2656), - [anon_sym_import] = ACTIONS(2656), - [anon_sym_IMPORT] = ACTIONS(2656), - [anon_sym_Include] = ACTIONS(2656), - [anon_sym_include] = ACTIONS(2656), - [anon_sym_INCLUDE] = ACTIONS(2656), - [anon_sym_Interface] = ACTIONS(2656), - [anon_sym_interface] = ACTIONS(2656), - [anon_sym_INTERFACE] = ACTIONS(2656), - [anon_sym_New] = ACTIONS(2656), - [anon_sym_new] = ACTIONS(2656), - [anon_sym_NEW] = ACTIONS(2656), - [anon_sym_Package] = ACTIONS(2656), - [anon_sym_package] = ACTIONS(2656), - [anon_sym_PACKAGE] = ACTIONS(2656), - [anon_sym_Private] = ACTIONS(2656), - [anon_sym_private] = ACTIONS(2656), - [anon_sym_PRIVATE] = ACTIONS(2656), - [anon_sym_Property] = ACTIONS(2656), - [anon_sym_property] = ACTIONS(2656), - [anon_sym_PROPERTY] = ACTIONS(2656), - [anon_sym_Public] = ACTIONS(2656), - [anon_sym_public] = ACTIONS(2656), - [anon_sym_PUBLIC] = ACTIONS(2656), - [anon_sym_Remote] = ACTIONS(2656), - [anon_sym_remote] = ACTIONS(2656), - [anon_sym_REMOTE] = ACTIONS(2656), - [anon_sym_Return] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_RETURN] = ACTIONS(2656), - [anon_sym_Static] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_STATIC] = ACTIONS(2656), - [anon_sym_Switch] = ACTIONS(2656), - [anon_sym_switch] = ACTIONS(2656), - [anon_sym_SWITCH] = ACTIONS(2656), - [anon_sym_Throw] = ACTIONS(2656), - [anon_sym_throw] = ACTIONS(2656), - [anon_sym_THROW] = ACTIONS(2656), - [anon_sym_Try] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [anon_sym_TRY] = ACTIONS(2656), - [anon_sym_Var] = ACTIONS(2656), - [anon_sym_var] = ACTIONS(2656), - [anon_sym_VAR] = ACTIONS(2656), - [anon_sym_While] = ACTIONS(2656), - [anon_sym_while] = ACTIONS(2656), - [anon_sym_WHILE] = ACTIONS(2656), - [anon_sym_With] = ACTIONS(2656), - [anon_sym_with] = ACTIONS(2656), - [anon_sym_WITH] = ACTIONS(2656), - [sym__automatic_semicolon] = ACTIONS(3166), - [sym_cf_comment] = ACTIONS(2654), - [sym__java_block_open] = ACTIONS(2654), - [sym__static_type_prefix] = ACTIONS(2654), + [STATE(833)] = { + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_Query] = ACTIONS(2896), + [anon_sym_query] = ACTIONS(2896), + [anon_sym_QUERY] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_unary_operator_token1] = ACTIONS(2896), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_DQUOTE] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2896), + [aux_sym_number_token2] = ACTIONS(2894), + [anon_sym_This] = ACTIONS(2896), + [anon_sym_this] = ACTIONS(2896), + [anon_sym_THIS] = ACTIONS(2896), + [anon_sym_Super] = ACTIONS(2896), + [anon_sym_super] = ACTIONS(2896), + [anon_sym_SUPER] = ACTIONS(2896), + [anon_sym_True] = ACTIONS(2896), + [anon_sym_true] = ACTIONS(2896), + [anon_sym_TRUE] = ACTIONS(2896), + [anon_sym_False] = ACTIONS(2896), + [anon_sym_false] = ACTIONS(2896), + [anon_sym_FALSE] = ACTIONS(2896), + [anon_sym_Null] = ACTIONS(2896), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_NULL] = ACTIONS(2896), + [anon_sym_Undefined] = ACTIONS(2896), + [anon_sym_undefined] = ACTIONS(2896), + [anon_sym_UNDEFINED] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2896), + [anon_sym_set] = ACTIONS(2896), + [anon_sym_POUND] = ACTIONS(2896), + [sym_hash_empty] = ACTIONS(2894), + [anon_sym_export] = ACTIONS(2896), + [anon_sym_QueryExecute] = ACTIONS(2896), + [anon_sym_queryexecute] = ACTIONS(2896), + [anon_sym_QUERYEXECUTE] = ACTIONS(2896), + [anon_sym_queryExecute] = ACTIONS(2896), + [anon_sym_BQUOTE] = ACTIONS(2896), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2894), + [anon_sym_Abstract] = ACTIONS(2896), + [anon_sym_abstract] = ACTIONS(2896), + [anon_sym_ABSTRACT] = ACTIONS(2896), + [anon_sym_Break] = ACTIONS(2896), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_BREAK] = ACTIONS(2896), + [anon_sym_Case] = ACTIONS(2896), + [anon_sym_case] = ACTIONS(2896), + [anon_sym_CASE] = ACTIONS(2896), + [anon_sym_Component] = ACTIONS(2896), + [anon_sym_component] = ACTIONS(2896), + [anon_sym_COMPONENT] = ACTIONS(2896), + [anon_sym_Continue] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2896), + [anon_sym_CONTINUE] = ACTIONS(2896), + [anon_sym_Debugger] = ACTIONS(2896), + [anon_sym_debugger] = ACTIONS(2896), + [anon_sym_DEBUGGER] = ACTIONS(2896), + [anon_sym_Default] = ACTIONS(2896), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_DEFAULT] = ACTIONS(2896), + [anon_sym_Do] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_DO] = ACTIONS(2896), + [anon_sym_Final] = ACTIONS(2896), + [anon_sym_final] = ACTIONS(2896), + [anon_sym_FINAL] = ACTIONS(2896), + [anon_sym_For] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_FOR] = ACTIONS(2896), + [anon_sym_Function] = ACTIONS(2896), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_FUNCTION] = ACTIONS(2896), + [anon_sym_If] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_IF] = ACTIONS(2896), + [anon_sym_Import] = ACTIONS(2896), + [anon_sym_import] = ACTIONS(2896), + [anon_sym_IMPORT] = ACTIONS(2896), + [anon_sym_Include] = ACTIONS(2896), + [anon_sym_include] = ACTIONS(2896), + [anon_sym_INCLUDE] = ACTIONS(2896), + [anon_sym_Interface] = ACTIONS(2896), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_INTERFACE] = ACTIONS(2896), + [anon_sym_New] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_NEW] = ACTIONS(2896), + [anon_sym_Package] = ACTIONS(2896), + [anon_sym_package] = ACTIONS(2896), + [anon_sym_PACKAGE] = ACTIONS(2896), + [anon_sym_Private] = ACTIONS(2896), + [anon_sym_private] = ACTIONS(2896), + [anon_sym_PRIVATE] = ACTIONS(2896), + [anon_sym_Property] = ACTIONS(2896), + [anon_sym_property] = ACTIONS(2896), + [anon_sym_PROPERTY] = ACTIONS(2896), + [anon_sym_Public] = ACTIONS(2896), + [anon_sym_public] = ACTIONS(2896), + [anon_sym_PUBLIC] = ACTIONS(2896), + [anon_sym_Remote] = ACTIONS(2896), + [anon_sym_remote] = ACTIONS(2896), + [anon_sym_REMOTE] = ACTIONS(2896), + [anon_sym_Return] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_RETURN] = ACTIONS(2896), + [anon_sym_Static] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_STATIC] = ACTIONS(2896), + [anon_sym_Switch] = ACTIONS(2896), + [anon_sym_switch] = ACTIONS(2896), + [anon_sym_SWITCH] = ACTIONS(2896), + [anon_sym_Throw] = ACTIONS(2896), + [anon_sym_throw] = ACTIONS(2896), + [anon_sym_THROW] = ACTIONS(2896), + [anon_sym_Try] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_TRY] = ACTIONS(2896), + [anon_sym_Var] = ACTIONS(2896), + [anon_sym_var] = ACTIONS(2896), + [anon_sym_VAR] = ACTIONS(2896), + [anon_sym_While] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_WHILE] = ACTIONS(2896), + [anon_sym_With] = ACTIONS(2896), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_WITH] = ACTIONS(2896), + [sym_cf_comment] = ACTIONS(2894), + [sym__java_block_open] = ACTIONS(2894), + [sym__static_type_prefix] = ACTIONS(2894), }, - [STATE(807)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [STATE(834)] = { + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_Query] = ACTIONS(2708), + [anon_sym_query] = ACTIONS(2708), + [anon_sym_QUERY] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [aux_sym_unary_operator_token1] = ACTIONS(2708), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2708), + [aux_sym_number_token2] = ACTIONS(2706), + [anon_sym_This] = ACTIONS(2708), + [anon_sym_this] = ACTIONS(2708), + [anon_sym_THIS] = ACTIONS(2708), + [anon_sym_Super] = ACTIONS(2708), + [anon_sym_super] = ACTIONS(2708), + [anon_sym_SUPER] = ACTIONS(2708), + [anon_sym_True] = ACTIONS(2708), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_TRUE] = ACTIONS(2708), + [anon_sym_False] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_FALSE] = ACTIONS(2708), + [anon_sym_Null] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2708), + [anon_sym_NULL] = ACTIONS(2708), + [anon_sym_Undefined] = ACTIONS(2708), + [anon_sym_undefined] = ACTIONS(2708), + [anon_sym_UNDEFINED] = ACTIONS(2708), + [anon_sym_get] = ACTIONS(2708), + [anon_sym_set] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [sym_hash_empty] = ACTIONS(2706), + [anon_sym_export] = ACTIONS(2708), + [anon_sym_QueryExecute] = ACTIONS(2708), + [anon_sym_queryexecute] = ACTIONS(2708), + [anon_sym_QUERYEXECUTE] = ACTIONS(2708), + [anon_sym_queryExecute] = ACTIONS(2708), + [anon_sym_BQUOTE] = ACTIONS(2708), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2706), + [anon_sym_Abstract] = ACTIONS(2708), + [anon_sym_abstract] = ACTIONS(2708), + [anon_sym_ABSTRACT] = ACTIONS(2708), + [anon_sym_Break] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_BREAK] = ACTIONS(2708), + [anon_sym_Case] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_CASE] = ACTIONS(2708), + [anon_sym_Component] = ACTIONS(2708), + [anon_sym_component] = ACTIONS(2708), + [anon_sym_COMPONENT] = ACTIONS(2708), + [anon_sym_Continue] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_CONTINUE] = ACTIONS(2708), + [anon_sym_Debugger] = ACTIONS(2708), + [anon_sym_debugger] = ACTIONS(2708), + [anon_sym_DEBUGGER] = ACTIONS(2708), + [anon_sym_Default] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_DEFAULT] = ACTIONS(2708), + [anon_sym_Do] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_DO] = ACTIONS(2708), + [anon_sym_Final] = ACTIONS(2708), + [anon_sym_final] = ACTIONS(2708), + [anon_sym_FINAL] = ACTIONS(2708), + [anon_sym_For] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_FOR] = ACTIONS(2708), + [anon_sym_Function] = ACTIONS(2708), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_FUNCTION] = ACTIONS(2708), + [anon_sym_If] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_IF] = ACTIONS(2708), + [anon_sym_Import] = ACTIONS(2708), + [anon_sym_import] = ACTIONS(2708), + [anon_sym_IMPORT] = ACTIONS(2708), + [anon_sym_Include] = ACTIONS(2708), + [anon_sym_include] = ACTIONS(2708), + [anon_sym_INCLUDE] = ACTIONS(2708), + [anon_sym_Interface] = ACTIONS(2708), + [anon_sym_interface] = ACTIONS(2708), + [anon_sym_INTERFACE] = ACTIONS(2708), + [anon_sym_New] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_NEW] = ACTIONS(2708), + [anon_sym_Package] = ACTIONS(2708), + [anon_sym_package] = ACTIONS(2708), + [anon_sym_PACKAGE] = ACTIONS(2708), + [anon_sym_Private] = ACTIONS(2708), + [anon_sym_private] = ACTIONS(2708), + [anon_sym_PRIVATE] = ACTIONS(2708), + [anon_sym_Property] = ACTIONS(2708), + [anon_sym_property] = ACTIONS(2708), + [anon_sym_PROPERTY] = ACTIONS(2708), + [anon_sym_Public] = ACTIONS(2708), + [anon_sym_public] = ACTIONS(2708), + [anon_sym_PUBLIC] = ACTIONS(2708), + [anon_sym_Remote] = ACTIONS(2708), + [anon_sym_remote] = ACTIONS(2708), + [anon_sym_REMOTE] = ACTIONS(2708), + [anon_sym_Return] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_RETURN] = ACTIONS(2708), + [anon_sym_Static] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_STATIC] = ACTIONS(2708), + [anon_sym_Switch] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_SWITCH] = ACTIONS(2708), + [anon_sym_Throw] = ACTIONS(2708), + [anon_sym_throw] = ACTIONS(2708), + [anon_sym_THROW] = ACTIONS(2708), + [anon_sym_Try] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_TRY] = ACTIONS(2708), + [anon_sym_Var] = ACTIONS(2708), + [anon_sym_var] = ACTIONS(2708), + [anon_sym_VAR] = ACTIONS(2708), + [anon_sym_While] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_WHILE] = ACTIONS(2708), + [anon_sym_With] = ACTIONS(2708), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_WITH] = ACTIONS(2708), + [sym_cf_comment] = ACTIONS(2706), + [sym__java_block_open] = ACTIONS(2706), + [sym__static_type_prefix] = ACTIONS(2706), }, - [STATE(808)] = { - [ts_builtin_sym_end] = ACTIONS(2606), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_Query] = ACTIONS(2608), - [anon_sym_query] = ACTIONS(2608), - [anon_sym_QUERY] = ACTIONS(2608), - [anon_sym_PLUS] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2608), - [anon_sym_SLASH] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2606), - [aux_sym_unary_operator_token1] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2606), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2608), - [aux_sym_number_token2] = ACTIONS(2606), - [anon_sym_This] = ACTIONS(2608), - [anon_sym_this] = ACTIONS(2608), - [anon_sym_THIS] = ACTIONS(2608), - [anon_sym_Super] = ACTIONS(2608), - [anon_sym_super] = ACTIONS(2608), - [anon_sym_SUPER] = ACTIONS(2608), - [anon_sym_True] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2608), - [anon_sym_TRUE] = ACTIONS(2608), - [anon_sym_False] = ACTIONS(2608), - [anon_sym_false] = ACTIONS(2608), - [anon_sym_FALSE] = ACTIONS(2608), - [anon_sym_Null] = ACTIONS(2608), - [anon_sym_null] = ACTIONS(2608), - [anon_sym_NULL] = ACTIONS(2608), - [anon_sym_Undefined] = ACTIONS(2608), - [anon_sym_undefined] = ACTIONS(2608), - [anon_sym_UNDEFINED] = ACTIONS(2608), - [anon_sym_get] = ACTIONS(2608), - [anon_sym_set] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(2608), - [sym_hash_empty] = ACTIONS(2606), - [anon_sym_export] = ACTIONS(2608), - [anon_sym_QueryExecute] = ACTIONS(2608), - [anon_sym_queryexecute] = ACTIONS(2608), - [anon_sym_QUERYEXECUTE] = ACTIONS(2608), - [anon_sym_queryExecute] = ACTIONS(2608), - [anon_sym_BQUOTE] = ACTIONS(2608), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2606), - [anon_sym_Abstract] = ACTIONS(2608), - [anon_sym_abstract] = ACTIONS(2608), - [anon_sym_ABSTRACT] = ACTIONS(2608), - [anon_sym_Break] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_BREAK] = ACTIONS(2608), - [anon_sym_Case] = ACTIONS(2608), - [anon_sym_case] = ACTIONS(2608), - [anon_sym_CASE] = ACTIONS(2608), - [anon_sym_Component] = ACTIONS(2608), - [anon_sym_component] = ACTIONS(2608), - [anon_sym_COMPONENT] = ACTIONS(2608), - [anon_sym_Continue] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_CONTINUE] = ACTIONS(2608), - [anon_sym_Debugger] = ACTIONS(2608), - [anon_sym_debugger] = ACTIONS(2608), - [anon_sym_DEBUGGER] = ACTIONS(2608), - [anon_sym_Default] = ACTIONS(2608), - [anon_sym_default] = ACTIONS(2608), - [anon_sym_DEFAULT] = ACTIONS(2608), - [anon_sym_Do] = ACTIONS(2608), - [anon_sym_do] = ACTIONS(2608), - [anon_sym_DO] = ACTIONS(2608), - [anon_sym_Final] = ACTIONS(2608), - [anon_sym_final] = ACTIONS(2608), - [anon_sym_FINAL] = ACTIONS(2608), - [anon_sym_For] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_FOR] = ACTIONS(2608), - [anon_sym_Function] = ACTIONS(2608), - [anon_sym_function] = ACTIONS(2608), - [anon_sym_FUNCTION] = ACTIONS(2608), - [anon_sym_If] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_IF] = ACTIONS(2608), - [anon_sym_Import] = ACTIONS(2608), - [anon_sym_import] = ACTIONS(2608), - [anon_sym_IMPORT] = ACTIONS(2608), - [anon_sym_Include] = ACTIONS(2608), - [anon_sym_include] = ACTIONS(2608), - [anon_sym_INCLUDE] = ACTIONS(2608), - [anon_sym_Interface] = ACTIONS(2608), - [anon_sym_interface] = ACTIONS(2608), - [anon_sym_INTERFACE] = ACTIONS(2608), - [anon_sym_New] = ACTIONS(2608), - [anon_sym_new] = ACTIONS(2608), - [anon_sym_NEW] = ACTIONS(2608), - [anon_sym_Package] = ACTIONS(2608), - [anon_sym_package] = ACTIONS(2608), - [anon_sym_PACKAGE] = ACTIONS(2608), - [anon_sym_Private] = ACTIONS(2608), - [anon_sym_private] = ACTIONS(2608), - [anon_sym_PRIVATE] = ACTIONS(2608), - [anon_sym_Property] = ACTIONS(2608), - [anon_sym_property] = ACTIONS(2608), - [anon_sym_PROPERTY] = ACTIONS(2608), - [anon_sym_Public] = ACTIONS(2608), - [anon_sym_public] = ACTIONS(2608), - [anon_sym_PUBLIC] = ACTIONS(2608), - [anon_sym_Remote] = ACTIONS(2608), - [anon_sym_remote] = ACTIONS(2608), - [anon_sym_REMOTE] = ACTIONS(2608), - [anon_sym_Return] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_RETURN] = ACTIONS(2608), - [anon_sym_Static] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2608), - [anon_sym_STATIC] = ACTIONS(2608), - [anon_sym_Switch] = ACTIONS(2608), - [anon_sym_switch] = ACTIONS(2608), - [anon_sym_SWITCH] = ACTIONS(2608), - [anon_sym_Throw] = ACTIONS(2608), - [anon_sym_throw] = ACTIONS(2608), - [anon_sym_THROW] = ACTIONS(2608), - [anon_sym_Try] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2608), - [anon_sym_TRY] = ACTIONS(2608), - [anon_sym_Var] = ACTIONS(2608), - [anon_sym_var] = ACTIONS(2608), - [anon_sym_VAR] = ACTIONS(2608), - [anon_sym_While] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_WHILE] = ACTIONS(2608), - [anon_sym_With] = ACTIONS(2608), - [anon_sym_with] = ACTIONS(2608), - [anon_sym_WITH] = ACTIONS(2608), - [sym__automatic_semicolon] = ACTIONS(3170), - [sym_cf_comment] = ACTIONS(2606), - [sym__java_block_open] = ACTIONS(2606), - [sym__static_type_prefix] = ACTIONS(2606), + [STATE(835)] = { + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_Query] = ACTIONS(2716), + [anon_sym_query] = ACTIONS(2716), + [anon_sym_QUERY] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [aux_sym_unary_operator_token1] = ACTIONS(2716), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2716), + [aux_sym_number_token2] = ACTIONS(2714), + [anon_sym_This] = ACTIONS(2716), + [anon_sym_this] = ACTIONS(2716), + [anon_sym_THIS] = ACTIONS(2716), + [anon_sym_Super] = ACTIONS(2716), + [anon_sym_super] = ACTIONS(2716), + [anon_sym_SUPER] = ACTIONS(2716), + [anon_sym_True] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_TRUE] = ACTIONS(2716), + [anon_sym_False] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_FALSE] = ACTIONS(2716), + [anon_sym_Null] = ACTIONS(2716), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_Undefined] = ACTIONS(2716), + [anon_sym_undefined] = ACTIONS(2716), + [anon_sym_UNDEFINED] = ACTIONS(2716), + [anon_sym_get] = ACTIONS(2716), + [anon_sym_set] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [sym_hash_empty] = ACTIONS(2714), + [anon_sym_export] = ACTIONS(2716), + [anon_sym_QueryExecute] = ACTIONS(2716), + [anon_sym_queryexecute] = ACTIONS(2716), + [anon_sym_QUERYEXECUTE] = ACTIONS(2716), + [anon_sym_queryExecute] = ACTIONS(2716), + [anon_sym_BQUOTE] = ACTIONS(2716), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2714), + [anon_sym_Abstract] = ACTIONS(2716), + [anon_sym_abstract] = ACTIONS(2716), + [anon_sym_ABSTRACT] = ACTIONS(2716), + [anon_sym_Break] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_BREAK] = ACTIONS(2716), + [anon_sym_Case] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_CASE] = ACTIONS(2716), + [anon_sym_Component] = ACTIONS(2716), + [anon_sym_component] = ACTIONS(2716), + [anon_sym_COMPONENT] = ACTIONS(2716), + [anon_sym_Continue] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_CONTINUE] = ACTIONS(2716), + [anon_sym_Debugger] = ACTIONS(2716), + [anon_sym_debugger] = ACTIONS(2716), + [anon_sym_DEBUGGER] = ACTIONS(2716), + [anon_sym_Default] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_DEFAULT] = ACTIONS(2716), + [anon_sym_Do] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_DO] = ACTIONS(2716), + [anon_sym_Final] = ACTIONS(2716), + [anon_sym_final] = ACTIONS(2716), + [anon_sym_FINAL] = ACTIONS(2716), + [anon_sym_For] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_FOR] = ACTIONS(2716), + [anon_sym_Function] = ACTIONS(2716), + [anon_sym_function] = ACTIONS(2716), + [anon_sym_FUNCTION] = ACTIONS(2716), + [anon_sym_If] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_IF] = ACTIONS(2716), + [anon_sym_Import] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2716), + [anon_sym_IMPORT] = ACTIONS(2716), + [anon_sym_Include] = ACTIONS(2716), + [anon_sym_include] = ACTIONS(2716), + [anon_sym_INCLUDE] = ACTIONS(2716), + [anon_sym_Interface] = ACTIONS(2716), + [anon_sym_interface] = ACTIONS(2716), + [anon_sym_INTERFACE] = ACTIONS(2716), + [anon_sym_New] = ACTIONS(2716), + [anon_sym_new] = ACTIONS(2716), + [anon_sym_NEW] = ACTIONS(2716), + [anon_sym_Package] = ACTIONS(2716), + [anon_sym_package] = ACTIONS(2716), + [anon_sym_PACKAGE] = ACTIONS(2716), + [anon_sym_Private] = ACTIONS(2716), + [anon_sym_private] = ACTIONS(2716), + [anon_sym_PRIVATE] = ACTIONS(2716), + [anon_sym_Property] = ACTIONS(2716), + [anon_sym_property] = ACTIONS(2716), + [anon_sym_PROPERTY] = ACTIONS(2716), + [anon_sym_Public] = ACTIONS(2716), + [anon_sym_public] = ACTIONS(2716), + [anon_sym_PUBLIC] = ACTIONS(2716), + [anon_sym_Remote] = ACTIONS(2716), + [anon_sym_remote] = ACTIONS(2716), + [anon_sym_REMOTE] = ACTIONS(2716), + [anon_sym_Return] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_RETURN] = ACTIONS(2716), + [anon_sym_Static] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_STATIC] = ACTIONS(2716), + [anon_sym_Switch] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_SWITCH] = ACTIONS(2716), + [anon_sym_Throw] = ACTIONS(2716), + [anon_sym_throw] = ACTIONS(2716), + [anon_sym_THROW] = ACTIONS(2716), + [anon_sym_Try] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_TRY] = ACTIONS(2716), + [anon_sym_Var] = ACTIONS(2716), + [anon_sym_var] = ACTIONS(2716), + [anon_sym_VAR] = ACTIONS(2716), + [anon_sym_While] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_WHILE] = ACTIONS(2716), + [anon_sym_With] = ACTIONS(2716), + [anon_sym_with] = ACTIONS(2716), + [anon_sym_WITH] = ACTIONS(2716), + [sym_cf_comment] = ACTIONS(2714), + [sym__java_block_open] = ACTIONS(2714), + [sym__static_type_prefix] = ACTIONS(2714), }, - [STATE(809)] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1670), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Break] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_BREAK] = ACTIONS(1672), - [anon_sym_Case] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_CASE] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Continue] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_CONTINUE] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Default] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_DEFAULT] = ACTIONS(1672), - [anon_sym_Do] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_DO] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_For] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_FOR] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_If] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_IF] = ACTIONS(1672), - [anon_sym_Import] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_IMPORT] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_Interface] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_INTERFACE] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Property] = ACTIONS(1672), - [anon_sym_property] = ACTIONS(1672), - [anon_sym_PROPERTY] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Return] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_RETURN] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [anon_sym_Switch] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_SWITCH] = ACTIONS(1672), - [anon_sym_Throw] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_THROW] = ACTIONS(1672), - [anon_sym_Try] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_TRY] = ACTIONS(1672), - [anon_sym_Var] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_VAR] = ACTIONS(1672), - [anon_sym_While] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_WHILE] = ACTIONS(1672), - [anon_sym_With] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_WITH] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym_cf_comment] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), + [STATE(836)] = { + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_Query] = ACTIONS(2712), + [anon_sym_query] = ACTIONS(2712), + [anon_sym_QUERY] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [aux_sym_unary_operator_token1] = ACTIONS(2712), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2712), + [aux_sym_number_token2] = ACTIONS(2710), + [anon_sym_This] = ACTIONS(2712), + [anon_sym_this] = ACTIONS(2712), + [anon_sym_THIS] = ACTIONS(2712), + [anon_sym_Super] = ACTIONS(2712), + [anon_sym_super] = ACTIONS(2712), + [anon_sym_SUPER] = ACTIONS(2712), + [anon_sym_True] = ACTIONS(2712), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_TRUE] = ACTIONS(2712), + [anon_sym_False] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_FALSE] = ACTIONS(2712), + [anon_sym_Null] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [anon_sym_NULL] = ACTIONS(2712), + [anon_sym_Undefined] = ACTIONS(2712), + [anon_sym_undefined] = ACTIONS(2712), + [anon_sym_UNDEFINED] = ACTIONS(2712), + [anon_sym_get] = ACTIONS(2712), + [anon_sym_set] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [sym_hash_empty] = ACTIONS(2710), + [anon_sym_export] = ACTIONS(2712), + [anon_sym_QueryExecute] = ACTIONS(2712), + [anon_sym_queryexecute] = ACTIONS(2712), + [anon_sym_QUERYEXECUTE] = ACTIONS(2712), + [anon_sym_queryExecute] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2710), + [anon_sym_Abstract] = ACTIONS(2712), + [anon_sym_abstract] = ACTIONS(2712), + [anon_sym_ABSTRACT] = ACTIONS(2712), + [anon_sym_Break] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_BREAK] = ACTIONS(2712), + [anon_sym_Case] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_CASE] = ACTIONS(2712), + [anon_sym_Component] = ACTIONS(2712), + [anon_sym_component] = ACTIONS(2712), + [anon_sym_COMPONENT] = ACTIONS(2712), + [anon_sym_Continue] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_CONTINUE] = ACTIONS(2712), + [anon_sym_Debugger] = ACTIONS(2712), + [anon_sym_debugger] = ACTIONS(2712), + [anon_sym_DEBUGGER] = ACTIONS(2712), + [anon_sym_Default] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_DEFAULT] = ACTIONS(2712), + [anon_sym_Do] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_DO] = ACTIONS(2712), + [anon_sym_Final] = ACTIONS(2712), + [anon_sym_final] = ACTIONS(2712), + [anon_sym_FINAL] = ACTIONS(2712), + [anon_sym_For] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_FOR] = ACTIONS(2712), + [anon_sym_Function] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(2712), + [anon_sym_FUNCTION] = ACTIONS(2712), + [anon_sym_If] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_IF] = ACTIONS(2712), + [anon_sym_Import] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_IMPORT] = ACTIONS(2712), + [anon_sym_Include] = ACTIONS(2712), + [anon_sym_include] = ACTIONS(2712), + [anon_sym_INCLUDE] = ACTIONS(2712), + [anon_sym_Interface] = ACTIONS(2712), + [anon_sym_interface] = ACTIONS(2712), + [anon_sym_INTERFACE] = ACTIONS(2712), + [anon_sym_New] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(2712), + [anon_sym_NEW] = ACTIONS(2712), + [anon_sym_Package] = ACTIONS(2712), + [anon_sym_package] = ACTIONS(2712), + [anon_sym_PACKAGE] = ACTIONS(2712), + [anon_sym_Private] = ACTIONS(2712), + [anon_sym_private] = ACTIONS(2712), + [anon_sym_PRIVATE] = ACTIONS(2712), + [anon_sym_Property] = ACTIONS(2712), + [anon_sym_property] = ACTIONS(2712), + [anon_sym_PROPERTY] = ACTIONS(2712), + [anon_sym_Public] = ACTIONS(2712), + [anon_sym_public] = ACTIONS(2712), + [anon_sym_PUBLIC] = ACTIONS(2712), + [anon_sym_Remote] = ACTIONS(2712), + [anon_sym_remote] = ACTIONS(2712), + [anon_sym_REMOTE] = ACTIONS(2712), + [anon_sym_Return] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_RETURN] = ACTIONS(2712), + [anon_sym_Static] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_STATIC] = ACTIONS(2712), + [anon_sym_Switch] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_SWITCH] = ACTIONS(2712), + [anon_sym_Throw] = ACTIONS(2712), + [anon_sym_throw] = ACTIONS(2712), + [anon_sym_THROW] = ACTIONS(2712), + [anon_sym_Try] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_TRY] = ACTIONS(2712), + [anon_sym_Var] = ACTIONS(2712), + [anon_sym_var] = ACTIONS(2712), + [anon_sym_VAR] = ACTIONS(2712), + [anon_sym_While] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_WHILE] = ACTIONS(2712), + [anon_sym_With] = ACTIONS(2712), + [anon_sym_with] = ACTIONS(2712), + [anon_sym_WITH] = ACTIONS(2712), + [sym_cf_comment] = ACTIONS(2710), + [sym__java_block_open] = ACTIONS(2710), + [sym__static_type_prefix] = ACTIONS(2710), }, - [STATE(810)] = { + [STATE(837)] = { [ts_builtin_sym_end] = ACTIONS(2754), [sym_identifier] = ACTIONS(2756), [anon_sym_LBRACE] = ACTIONS(2754), @@ -167594,297 +171667,877 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2754), [sym__static_type_prefix] = ACTIONS(2754), }, - [STATE(811)] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_Query] = ACTIONS(3070), - [anon_sym_query] = ACTIONS(3070), - [anon_sym_QUERY] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_unary_operator_token1] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3070), - [aux_sym_number_token2] = ACTIONS(3068), - [anon_sym_This] = ACTIONS(3070), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_THIS] = ACTIONS(3070), - [anon_sym_Super] = ACTIONS(3070), - [anon_sym_super] = ACTIONS(3070), - [anon_sym_SUPER] = ACTIONS(3070), - [anon_sym_True] = ACTIONS(3070), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_TRUE] = ACTIONS(3070), - [anon_sym_False] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_FALSE] = ACTIONS(3070), - [anon_sym_Null] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_Undefined] = ACTIONS(3070), - [anon_sym_undefined] = ACTIONS(3070), - [anon_sym_UNDEFINED] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [sym_hash_empty] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_QueryExecute] = ACTIONS(3070), - [anon_sym_queryexecute] = ACTIONS(3070), - [anon_sym_QUERYEXECUTE] = ACTIONS(3070), - [anon_sym_queryExecute] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3068), - [anon_sym_Abstract] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_ABSTRACT] = ACTIONS(3070), - [anon_sym_Break] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_BREAK] = ACTIONS(3070), - [anon_sym_Case] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_CASE] = ACTIONS(3070), - [anon_sym_Component] = ACTIONS(3070), - [anon_sym_component] = ACTIONS(3070), - [anon_sym_COMPONENT] = ACTIONS(3070), - [anon_sym_Continue] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_CONTINUE] = ACTIONS(3070), - [anon_sym_Debugger] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_DEBUGGER] = ACTIONS(3070), - [anon_sym_Default] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_DEFAULT] = ACTIONS(3070), - [anon_sym_Do] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_DO] = ACTIONS(3070), - [anon_sym_Final] = ACTIONS(3070), - [anon_sym_final] = ACTIONS(3070), - [anon_sym_FINAL] = ACTIONS(3070), - [anon_sym_For] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_FOR] = ACTIONS(3070), - [anon_sym_Function] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_FUNCTION] = ACTIONS(3070), - [anon_sym_If] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_IF] = ACTIONS(3070), - [anon_sym_Import] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_IMPORT] = ACTIONS(3070), - [anon_sym_Include] = ACTIONS(3070), - [anon_sym_include] = ACTIONS(3070), - [anon_sym_INCLUDE] = ACTIONS(3070), - [anon_sym_Interface] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_INTERFACE] = ACTIONS(3070), - [anon_sym_New] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_NEW] = ACTIONS(3070), - [anon_sym_Package] = ACTIONS(3070), - [anon_sym_package] = ACTIONS(3070), - [anon_sym_PACKAGE] = ACTIONS(3070), - [anon_sym_Private] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_PRIVATE] = ACTIONS(3070), - [anon_sym_Property] = ACTIONS(3070), - [anon_sym_property] = ACTIONS(3070), - [anon_sym_PROPERTY] = ACTIONS(3070), - [anon_sym_Public] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_PUBLIC] = ACTIONS(3070), - [anon_sym_Remote] = ACTIONS(3070), - [anon_sym_remote] = ACTIONS(3070), - [anon_sym_REMOTE] = ACTIONS(3070), - [anon_sym_Return] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_RETURN] = ACTIONS(3070), - [anon_sym_Static] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_STATIC] = ACTIONS(3070), - [anon_sym_Switch] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_SWITCH] = ACTIONS(3070), - [anon_sym_Throw] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_THROW] = ACTIONS(3070), - [anon_sym_Try] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_TRY] = ACTIONS(3070), - [anon_sym_Var] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [anon_sym_VAR] = ACTIONS(3070), - [anon_sym_While] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_WHILE] = ACTIONS(3070), - [anon_sym_With] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3070), - [anon_sym_WITH] = ACTIONS(3070), - [sym_cf_comment] = ACTIONS(3068), - [sym__java_block_open] = ACTIONS(3068), - [sym__static_type_prefix] = ACTIONS(3068), + [STATE(838)] = { + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_Query] = ACTIONS(2294), + [anon_sym_query] = ACTIONS(2294), + [anon_sym_QUERY] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [aux_sym_unary_operator_token1] = ACTIONS(2294), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2294), + [aux_sym_number_token2] = ACTIONS(2296), + [anon_sym_This] = ACTIONS(2294), + [anon_sym_this] = ACTIONS(2294), + [anon_sym_THIS] = ACTIONS(2294), + [anon_sym_Super] = ACTIONS(2294), + [anon_sym_super] = ACTIONS(2294), + [anon_sym_SUPER] = ACTIONS(2294), + [anon_sym_True] = ACTIONS(2294), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_TRUE] = ACTIONS(2294), + [anon_sym_False] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [anon_sym_FALSE] = ACTIONS(2294), + [anon_sym_Null] = ACTIONS(2294), + [anon_sym_null] = ACTIONS(2294), + [anon_sym_NULL] = ACTIONS(2294), + [anon_sym_Undefined] = ACTIONS(2294), + [anon_sym_undefined] = ACTIONS(2294), + [anon_sym_UNDEFINED] = ACTIONS(2294), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [sym_hash_empty] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_QueryExecute] = ACTIONS(2294), + [anon_sym_queryexecute] = ACTIONS(2294), + [anon_sym_QUERYEXECUTE] = ACTIONS(2294), + [anon_sym_queryExecute] = ACTIONS(2294), + [anon_sym_BQUOTE] = ACTIONS(2294), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2296), + [anon_sym_Abstract] = ACTIONS(2294), + [anon_sym_abstract] = ACTIONS(2294), + [anon_sym_ABSTRACT] = ACTIONS(2294), + [anon_sym_Break] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_BREAK] = ACTIONS(2294), + [anon_sym_Case] = ACTIONS(2294), + [anon_sym_case] = ACTIONS(2294), + [anon_sym_CASE] = ACTIONS(2294), + [anon_sym_Component] = ACTIONS(2294), + [anon_sym_component] = ACTIONS(2294), + [anon_sym_COMPONENT] = ACTIONS(2294), + [anon_sym_Continue] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_CONTINUE] = ACTIONS(2294), + [anon_sym_Debugger] = ACTIONS(2294), + [anon_sym_debugger] = ACTIONS(2294), + [anon_sym_DEBUGGER] = ACTIONS(2294), + [anon_sym_Default] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_DEFAULT] = ACTIONS(2294), + [anon_sym_Do] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_DO] = ACTIONS(2294), + [anon_sym_Final] = ACTIONS(2294), + [anon_sym_final] = ACTIONS(2294), + [anon_sym_FINAL] = ACTIONS(2294), + [anon_sym_For] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_FOR] = ACTIONS(2294), + [anon_sym_Function] = ACTIONS(2294), + [anon_sym_function] = ACTIONS(2294), + [anon_sym_FUNCTION] = ACTIONS(2294), + [anon_sym_If] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_IF] = ACTIONS(2294), + [anon_sym_Import] = ACTIONS(2294), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_IMPORT] = ACTIONS(2294), + [anon_sym_Include] = ACTIONS(2294), + [anon_sym_include] = ACTIONS(2294), + [anon_sym_INCLUDE] = ACTIONS(2294), + [anon_sym_Interface] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2294), + [anon_sym_INTERFACE] = ACTIONS(2294), + [anon_sym_New] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_NEW] = ACTIONS(2294), + [anon_sym_Package] = ACTIONS(2294), + [anon_sym_package] = ACTIONS(2294), + [anon_sym_PACKAGE] = ACTIONS(2294), + [anon_sym_Private] = ACTIONS(2294), + [anon_sym_private] = ACTIONS(2294), + [anon_sym_PRIVATE] = ACTIONS(2294), + [anon_sym_Property] = ACTIONS(2294), + [anon_sym_property] = ACTIONS(2294), + [anon_sym_PROPERTY] = ACTIONS(2294), + [anon_sym_Public] = ACTIONS(2294), + [anon_sym_public] = ACTIONS(2294), + [anon_sym_PUBLIC] = ACTIONS(2294), + [anon_sym_Remote] = ACTIONS(2294), + [anon_sym_remote] = ACTIONS(2294), + [anon_sym_REMOTE] = ACTIONS(2294), + [anon_sym_Return] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_RETURN] = ACTIONS(2294), + [anon_sym_Static] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_STATIC] = ACTIONS(2294), + [anon_sym_Switch] = ACTIONS(2294), + [anon_sym_switch] = ACTIONS(2294), + [anon_sym_SWITCH] = ACTIONS(2294), + [anon_sym_Throw] = ACTIONS(2294), + [anon_sym_throw] = ACTIONS(2294), + [anon_sym_THROW] = ACTIONS(2294), + [anon_sym_Try] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_TRY] = ACTIONS(2294), + [anon_sym_Var] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2294), + [anon_sym_VAR] = ACTIONS(2294), + [anon_sym_While] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_WHILE] = ACTIONS(2294), + [anon_sym_With] = ACTIONS(2294), + [anon_sym_with] = ACTIONS(2294), + [anon_sym_WITH] = ACTIONS(2294), + [sym_cf_comment] = ACTIONS(2296), + [sym__java_block_open] = ACTIONS(2296), + [sym__static_type_prefix] = ACTIONS(2296), }, - [STATE(812)] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_let] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_Query] = ACTIONS(2694), - [anon_sym_query] = ACTIONS(2694), - [anon_sym_QUERY] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [aux_sym_unary_operator_token1] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2692), + [STATE(839)] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_Query] = ACTIONS(1598), + [anon_sym_query] = ACTIONS(1598), + [anon_sym_QUERY] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [aux_sym_unary_operator_token1] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1598), + [aux_sym_number_token2] = ACTIONS(1596), + [anon_sym_This] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1598), + [anon_sym_THIS] = ACTIONS(1598), + [anon_sym_Super] = ACTIONS(1598), + [anon_sym_super] = ACTIONS(1598), + [anon_sym_SUPER] = ACTIONS(1598), + [anon_sym_True] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_TRUE] = ACTIONS(1598), + [anon_sym_False] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_FALSE] = ACTIONS(1598), + [anon_sym_Null] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [anon_sym_NULL] = ACTIONS(1598), + [anon_sym_Undefined] = ACTIONS(1598), + [anon_sym_undefined] = ACTIONS(1598), + [anon_sym_UNDEFINED] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1598), + [anon_sym_set] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [sym_hash_empty] = ACTIONS(1596), + [anon_sym_export] = ACTIONS(1598), + [anon_sym_QueryExecute] = ACTIONS(1598), + [anon_sym_queryexecute] = ACTIONS(1598), + [anon_sym_QUERYEXECUTE] = ACTIONS(1598), + [anon_sym_queryExecute] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1596), + [anon_sym_Abstract] = ACTIONS(1598), + [anon_sym_abstract] = ACTIONS(1598), + [anon_sym_ABSTRACT] = ACTIONS(1598), + [anon_sym_Break] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_BREAK] = ACTIONS(1598), + [anon_sym_Case] = ACTIONS(1598), + [anon_sym_case] = ACTIONS(1598), + [anon_sym_CASE] = ACTIONS(1598), + [anon_sym_Component] = ACTIONS(1598), + [anon_sym_component] = ACTIONS(1598), + [anon_sym_COMPONENT] = ACTIONS(1598), + [anon_sym_Continue] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_CONTINUE] = ACTIONS(1598), + [anon_sym_Debugger] = ACTIONS(1598), + [anon_sym_debugger] = ACTIONS(1598), + [anon_sym_DEBUGGER] = ACTIONS(1598), + [anon_sym_Default] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_DEFAULT] = ACTIONS(1598), + [anon_sym_Do] = ACTIONS(1598), + [anon_sym_do] = ACTIONS(1598), + [anon_sym_DO] = ACTIONS(1598), + [anon_sym_Final] = ACTIONS(1598), + [anon_sym_final] = ACTIONS(1598), + [anon_sym_FINAL] = ACTIONS(1598), + [anon_sym_For] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_FOR] = ACTIONS(1598), + [anon_sym_Function] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(1598), + [anon_sym_FUNCTION] = ACTIONS(1598), + [anon_sym_If] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_IF] = ACTIONS(1598), + [anon_sym_Import] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_IMPORT] = ACTIONS(1598), + [anon_sym_Include] = ACTIONS(1598), + [anon_sym_include] = ACTIONS(1598), + [anon_sym_INCLUDE] = ACTIONS(1598), + [anon_sym_Interface] = ACTIONS(1598), + [anon_sym_interface] = ACTIONS(1598), + [anon_sym_INTERFACE] = ACTIONS(1598), + [anon_sym_New] = ACTIONS(1598), + [anon_sym_new] = ACTIONS(1598), + [anon_sym_NEW] = ACTIONS(1598), + [anon_sym_Package] = ACTIONS(1598), + [anon_sym_package] = ACTIONS(1598), + [anon_sym_PACKAGE] = ACTIONS(1598), + [anon_sym_Private] = ACTIONS(1598), + [anon_sym_private] = ACTIONS(1598), + [anon_sym_PRIVATE] = ACTIONS(1598), + [anon_sym_Property] = ACTIONS(1598), + [anon_sym_property] = ACTIONS(1598), + [anon_sym_PROPERTY] = ACTIONS(1598), + [anon_sym_Public] = ACTIONS(1598), + [anon_sym_public] = ACTIONS(1598), + [anon_sym_PUBLIC] = ACTIONS(1598), + [anon_sym_Remote] = ACTIONS(1598), + [anon_sym_remote] = ACTIONS(1598), + [anon_sym_REMOTE] = ACTIONS(1598), + [anon_sym_Return] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_RETURN] = ACTIONS(1598), + [anon_sym_Static] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_STATIC] = ACTIONS(1598), + [anon_sym_Switch] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1598), + [anon_sym_SWITCH] = ACTIONS(1598), + [anon_sym_Throw] = ACTIONS(1598), + [anon_sym_throw] = ACTIONS(1598), + [anon_sym_THROW] = ACTIONS(1598), + [anon_sym_Try] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_TRY] = ACTIONS(1598), + [anon_sym_Var] = ACTIONS(1598), + [anon_sym_var] = ACTIONS(1598), + [anon_sym_VAR] = ACTIONS(1598), + [anon_sym_While] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_WHILE] = ACTIONS(1598), + [anon_sym_With] = ACTIONS(1598), + [anon_sym_with] = ACTIONS(1598), + [anon_sym_WITH] = ACTIONS(1598), + [sym_cf_comment] = ACTIONS(1596), + [sym__java_block_open] = ACTIONS(1596), + [sym__static_type_prefix] = ACTIONS(1596), + }, + [STATE(840)] = { + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_Query] = ACTIONS(3024), + [anon_sym_query] = ACTIONS(3024), + [anon_sym_QUERY] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_unary_operator_token1] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3024), + [aux_sym_number_token2] = ACTIONS(3022), + [anon_sym_This] = ACTIONS(3024), + [anon_sym_this] = ACTIONS(3024), + [anon_sym_THIS] = ACTIONS(3024), + [anon_sym_Super] = ACTIONS(3024), + [anon_sym_super] = ACTIONS(3024), + [anon_sym_SUPER] = ACTIONS(3024), + [anon_sym_True] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3024), + [anon_sym_TRUE] = ACTIONS(3024), + [anon_sym_False] = ACTIONS(3024), + [anon_sym_false] = ACTIONS(3024), + [anon_sym_FALSE] = ACTIONS(3024), + [anon_sym_Null] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_Undefined] = ACTIONS(3024), + [anon_sym_undefined] = ACTIONS(3024), + [anon_sym_UNDEFINED] = ACTIONS(3024), + [anon_sym_get] = ACTIONS(3024), + [anon_sym_set] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [sym_hash_empty] = ACTIONS(3022), + [anon_sym_export] = ACTIONS(3024), + [anon_sym_QueryExecute] = ACTIONS(3024), + [anon_sym_queryexecute] = ACTIONS(3024), + [anon_sym_QUERYEXECUTE] = ACTIONS(3024), + [anon_sym_queryExecute] = ACTIONS(3024), + [anon_sym_BQUOTE] = ACTIONS(3024), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3022), + [anon_sym_Abstract] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_ABSTRACT] = ACTIONS(3024), + [anon_sym_Break] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_BREAK] = ACTIONS(3024), + [anon_sym_Case] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_CASE] = ACTIONS(3024), + [anon_sym_Component] = ACTIONS(3024), + [anon_sym_component] = ACTIONS(3024), + [anon_sym_COMPONENT] = ACTIONS(3024), + [anon_sym_Continue] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_CONTINUE] = ACTIONS(3024), + [anon_sym_Debugger] = ACTIONS(3024), + [anon_sym_debugger] = ACTIONS(3024), + [anon_sym_DEBUGGER] = ACTIONS(3024), + [anon_sym_Default] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_DEFAULT] = ACTIONS(3024), + [anon_sym_Do] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_DO] = ACTIONS(3024), + [anon_sym_Final] = ACTIONS(3024), + [anon_sym_final] = ACTIONS(3024), + [anon_sym_FINAL] = ACTIONS(3024), + [anon_sym_For] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_FOR] = ACTIONS(3024), + [anon_sym_Function] = ACTIONS(3024), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_FUNCTION] = ACTIONS(3024), + [anon_sym_If] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_IF] = ACTIONS(3024), + [anon_sym_Import] = ACTIONS(3024), + [anon_sym_import] = ACTIONS(3024), + [anon_sym_IMPORT] = ACTIONS(3024), + [anon_sym_Include] = ACTIONS(3024), + [anon_sym_include] = ACTIONS(3024), + [anon_sym_INCLUDE] = ACTIONS(3024), + [anon_sym_Interface] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_INTERFACE] = ACTIONS(3024), + [anon_sym_New] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_NEW] = ACTIONS(3024), + [anon_sym_Package] = ACTIONS(3024), + [anon_sym_package] = ACTIONS(3024), + [anon_sym_PACKAGE] = ACTIONS(3024), + [anon_sym_Private] = ACTIONS(3024), + [anon_sym_private] = ACTIONS(3024), + [anon_sym_PRIVATE] = ACTIONS(3024), + [anon_sym_Property] = ACTIONS(3024), + [anon_sym_property] = ACTIONS(3024), + [anon_sym_PROPERTY] = ACTIONS(3024), + [anon_sym_Public] = ACTIONS(3024), + [anon_sym_public] = ACTIONS(3024), + [anon_sym_PUBLIC] = ACTIONS(3024), + [anon_sym_Remote] = ACTIONS(3024), + [anon_sym_remote] = ACTIONS(3024), + [anon_sym_REMOTE] = ACTIONS(3024), + [anon_sym_Return] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_RETURN] = ACTIONS(3024), + [anon_sym_Static] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_STATIC] = ACTIONS(3024), + [anon_sym_Switch] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_SWITCH] = ACTIONS(3024), + [anon_sym_Throw] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_THROW] = ACTIONS(3024), + [anon_sym_Try] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_TRY] = ACTIONS(3024), + [anon_sym_Var] = ACTIONS(3024), + [anon_sym_var] = ACTIONS(3024), + [anon_sym_VAR] = ACTIONS(3024), + [anon_sym_While] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_WHILE] = ACTIONS(3024), + [anon_sym_With] = ACTIONS(3024), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_WITH] = ACTIONS(3024), + [sym_cf_comment] = ACTIONS(3022), + [sym__java_block_open] = ACTIONS(3022), + [sym__static_type_prefix] = ACTIONS(3022), + }, + [STATE(841)] = { + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_let] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_Query] = ACTIONS(2788), + [anon_sym_query] = ACTIONS(2788), + [anon_sym_QUERY] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [aux_sym_unary_operator_token1] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2694), - [aux_sym_number_token2] = ACTIONS(2692), - [anon_sym_This] = ACTIONS(2694), - [anon_sym_this] = ACTIONS(2694), - [anon_sym_THIS] = ACTIONS(2694), - [anon_sym_Super] = ACTIONS(2694), - [anon_sym_super] = ACTIONS(2694), - [anon_sym_SUPER] = ACTIONS(2694), - [anon_sym_True] = ACTIONS(2694), - [anon_sym_true] = ACTIONS(2694), - [anon_sym_TRUE] = ACTIONS(2694), - [anon_sym_False] = ACTIONS(2694), - [anon_sym_false] = ACTIONS(2694), - [anon_sym_FALSE] = ACTIONS(2694), - [anon_sym_Null] = ACTIONS(2694), - [anon_sym_null] = ACTIONS(2694), - [anon_sym_NULL] = ACTIONS(2694), - [anon_sym_Undefined] = ACTIONS(2694), - [anon_sym_undefined] = ACTIONS(2694), - [anon_sym_UNDEFINED] = ACTIONS(2694), - [anon_sym_get] = ACTIONS(2694), - [anon_sym_set] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [sym_hash_empty] = ACTIONS(2692), - [anon_sym_export] = ACTIONS(2694), - [anon_sym_QueryExecute] = ACTIONS(2694), - [anon_sym_queryexecute] = ACTIONS(2694), - [anon_sym_QUERYEXECUTE] = ACTIONS(2694), - [anon_sym_queryExecute] = ACTIONS(2694), - [anon_sym_BQUOTE] = ACTIONS(2694), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2692), - [anon_sym_Abstract] = ACTIONS(2694), - [anon_sym_abstract] = ACTIONS(2694), - [anon_sym_ABSTRACT] = ACTIONS(2694), - [anon_sym_Break] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_BREAK] = ACTIONS(2694), - [anon_sym_Case] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2694), - [anon_sym_CASE] = ACTIONS(2694), - [anon_sym_Component] = ACTIONS(2694), - [anon_sym_component] = ACTIONS(2694), - [anon_sym_COMPONENT] = ACTIONS(2694), - [anon_sym_Continue] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_CONTINUE] = ACTIONS(2694), - [anon_sym_Debugger] = ACTIONS(2694), - [anon_sym_debugger] = ACTIONS(2694), - [anon_sym_DEBUGGER] = ACTIONS(2694), - [anon_sym_Default] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_DEFAULT] = ACTIONS(2694), - [anon_sym_Do] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_DO] = ACTIONS(2694), - [anon_sym_Final] = ACTIONS(2694), - [anon_sym_final] = ACTIONS(2694), - [anon_sym_FINAL] = ACTIONS(2694), - [anon_sym_For] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_FOR] = ACTIONS(2694), - [anon_sym_Function] = ACTIONS(2694), - [anon_sym_function] = ACTIONS(2694), - [anon_sym_FUNCTION] = ACTIONS(2694), - [anon_sym_If] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_IF] = ACTIONS(2694), - [anon_sym_Import] = ACTIONS(2694), - [anon_sym_import] = ACTIONS(2694), - [anon_sym_IMPORT] = ACTIONS(2694), - [anon_sym_Include] = ACTIONS(2694), - [anon_sym_include] = ACTIONS(2694), - [anon_sym_INCLUDE] = ACTIONS(2694), - [anon_sym_Interface] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_INTERFACE] = ACTIONS(2694), - [anon_sym_New] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_NEW] = ACTIONS(2694), - [anon_sym_Package] = ACTIONS(2694), - [anon_sym_package] = ACTIONS(2694), - [anon_sym_PACKAGE] = ACTIONS(2694), - [anon_sym_Private] = ACTIONS(2694), - [anon_sym_private] = ACTIONS(2694), - [anon_sym_PRIVATE] = ACTIONS(2694), - [anon_sym_Property] = ACTIONS(2694), - [anon_sym_property] = ACTIONS(2694), - [anon_sym_PROPERTY] = ACTIONS(2694), - [anon_sym_Public] = ACTIONS(2694), - [anon_sym_public] = ACTIONS(2694), - [anon_sym_PUBLIC] = ACTIONS(2694), - [anon_sym_Remote] = ACTIONS(2694), - [anon_sym_remote] = ACTIONS(2694), - [anon_sym_REMOTE] = ACTIONS(2694), - [anon_sym_Return] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_RETURN] = ACTIONS(2694), - [anon_sym_Static] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_STATIC] = ACTIONS(2694), - [anon_sym_Switch] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_SWITCH] = ACTIONS(2694), - [anon_sym_Throw] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_THROW] = ACTIONS(2694), - [anon_sym_Try] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_TRY] = ACTIONS(2694), - [anon_sym_Var] = ACTIONS(2694), - [anon_sym_var] = ACTIONS(2694), - [anon_sym_VAR] = ACTIONS(2694), - [anon_sym_While] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_WHILE] = ACTIONS(2694), - [anon_sym_With] = ACTIONS(2694), - [anon_sym_with] = ACTIONS(2694), - [anon_sym_WITH] = ACTIONS(2694), - [sym_cf_comment] = ACTIONS(2692), - [sym__java_block_open] = ACTIONS(2692), - [sym__static_type_prefix] = ACTIONS(2692), + [aux_sym_number_token1] = ACTIONS(2788), + [aux_sym_number_token2] = ACTIONS(2786), + [anon_sym_This] = ACTIONS(2788), + [anon_sym_this] = ACTIONS(2788), + [anon_sym_THIS] = ACTIONS(2788), + [anon_sym_Super] = ACTIONS(2788), + [anon_sym_super] = ACTIONS(2788), + [anon_sym_SUPER] = ACTIONS(2788), + [anon_sym_True] = ACTIONS(2788), + [anon_sym_true] = ACTIONS(2788), + [anon_sym_TRUE] = ACTIONS(2788), + [anon_sym_False] = ACTIONS(2788), + [anon_sym_false] = ACTIONS(2788), + [anon_sym_FALSE] = ACTIONS(2788), + [anon_sym_Null] = ACTIONS(2788), + [anon_sym_null] = ACTIONS(2788), + [anon_sym_NULL] = ACTIONS(2788), + [anon_sym_Undefined] = ACTIONS(2788), + [anon_sym_undefined] = ACTIONS(2788), + [anon_sym_UNDEFINED] = ACTIONS(2788), + [anon_sym_get] = ACTIONS(2788), + [anon_sym_set] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [sym_hash_empty] = ACTIONS(2786), + [anon_sym_export] = ACTIONS(2788), + [anon_sym_QueryExecute] = ACTIONS(2788), + [anon_sym_queryexecute] = ACTIONS(2788), + [anon_sym_QUERYEXECUTE] = ACTIONS(2788), + [anon_sym_queryExecute] = ACTIONS(2788), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2786), + [anon_sym_Abstract] = ACTIONS(2788), + [anon_sym_abstract] = ACTIONS(2788), + [anon_sym_ABSTRACT] = ACTIONS(2788), + [anon_sym_Break] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_BREAK] = ACTIONS(2788), + [anon_sym_Case] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_CASE] = ACTIONS(2788), + [anon_sym_Component] = ACTIONS(2788), + [anon_sym_component] = ACTIONS(2788), + [anon_sym_COMPONENT] = ACTIONS(2788), + [anon_sym_Continue] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_CONTINUE] = ACTIONS(2788), + [anon_sym_Debugger] = ACTIONS(2788), + [anon_sym_debugger] = ACTIONS(2788), + [anon_sym_DEBUGGER] = ACTIONS(2788), + [anon_sym_Default] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_DEFAULT] = ACTIONS(2788), + [anon_sym_Do] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_DO] = ACTIONS(2788), + [anon_sym_Final] = ACTIONS(2788), + [anon_sym_final] = ACTIONS(2788), + [anon_sym_FINAL] = ACTIONS(2788), + [anon_sym_For] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_FOR] = ACTIONS(2788), + [anon_sym_Function] = ACTIONS(2788), + [anon_sym_function] = ACTIONS(2788), + [anon_sym_FUNCTION] = ACTIONS(2788), + [anon_sym_If] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_IF] = ACTIONS(2788), + [anon_sym_Import] = ACTIONS(2788), + [anon_sym_import] = ACTIONS(2788), + [anon_sym_IMPORT] = ACTIONS(2788), + [anon_sym_Include] = ACTIONS(2788), + [anon_sym_include] = ACTIONS(2788), + [anon_sym_INCLUDE] = ACTIONS(2788), + [anon_sym_Interface] = ACTIONS(2788), + [anon_sym_interface] = ACTIONS(2788), + [anon_sym_INTERFACE] = ACTIONS(2788), + [anon_sym_New] = ACTIONS(2788), + [anon_sym_new] = ACTIONS(2788), + [anon_sym_NEW] = ACTIONS(2788), + [anon_sym_Package] = ACTIONS(2788), + [anon_sym_package] = ACTIONS(2788), + [anon_sym_PACKAGE] = ACTIONS(2788), + [anon_sym_Private] = ACTIONS(2788), + [anon_sym_private] = ACTIONS(2788), + [anon_sym_PRIVATE] = ACTIONS(2788), + [anon_sym_Property] = ACTIONS(2788), + [anon_sym_property] = ACTIONS(2788), + [anon_sym_PROPERTY] = ACTIONS(2788), + [anon_sym_Public] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2788), + [anon_sym_PUBLIC] = ACTIONS(2788), + [anon_sym_Remote] = ACTIONS(2788), + [anon_sym_remote] = ACTIONS(2788), + [anon_sym_REMOTE] = ACTIONS(2788), + [anon_sym_Return] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_RETURN] = ACTIONS(2788), + [anon_sym_Static] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_STATIC] = ACTIONS(2788), + [anon_sym_Switch] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_SWITCH] = ACTIONS(2788), + [anon_sym_Throw] = ACTIONS(2788), + [anon_sym_throw] = ACTIONS(2788), + [anon_sym_THROW] = ACTIONS(2788), + [anon_sym_Try] = ACTIONS(2788), + [anon_sym_try] = ACTIONS(2788), + [anon_sym_TRY] = ACTIONS(2788), + [anon_sym_Var] = ACTIONS(2788), + [anon_sym_var] = ACTIONS(2788), + [anon_sym_VAR] = ACTIONS(2788), + [anon_sym_While] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_WHILE] = ACTIONS(2788), + [anon_sym_With] = ACTIONS(2788), + [anon_sym_with] = ACTIONS(2788), + [anon_sym_WITH] = ACTIONS(2788), + [sym_cf_comment] = ACTIONS(2786), + [sym__java_block_open] = ACTIONS(2786), + [sym__static_type_prefix] = ACTIONS(2786), }, - [STATE(813)] = { + [STATE(842)] = { + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_Query] = ACTIONS(2760), + [anon_sym_query] = ACTIONS(2760), + [anon_sym_QUERY] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_SLASH] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [aux_sym_unary_operator_token1] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2760), + [aux_sym_number_token2] = ACTIONS(2758), + [anon_sym_This] = ACTIONS(2760), + [anon_sym_this] = ACTIONS(2760), + [anon_sym_THIS] = ACTIONS(2760), + [anon_sym_Super] = ACTIONS(2760), + [anon_sym_super] = ACTIONS(2760), + [anon_sym_SUPER] = ACTIONS(2760), + [anon_sym_True] = ACTIONS(2760), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_TRUE] = ACTIONS(2760), + [anon_sym_False] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [anon_sym_FALSE] = ACTIONS(2760), + [anon_sym_Null] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2760), + [anon_sym_NULL] = ACTIONS(2760), + [anon_sym_Undefined] = ACTIONS(2760), + [anon_sym_undefined] = ACTIONS(2760), + [anon_sym_UNDEFINED] = ACTIONS(2760), + [anon_sym_get] = ACTIONS(2760), + [anon_sym_set] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2760), + [sym_hash_empty] = ACTIONS(2758), + [anon_sym_export] = ACTIONS(2760), + [anon_sym_QueryExecute] = ACTIONS(2760), + [anon_sym_queryexecute] = ACTIONS(2760), + [anon_sym_QUERYEXECUTE] = ACTIONS(2760), + [anon_sym_queryExecute] = ACTIONS(2760), + [anon_sym_BQUOTE] = ACTIONS(2760), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2758), + [anon_sym_Abstract] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2760), + [anon_sym_ABSTRACT] = ACTIONS(2760), + [anon_sym_Break] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_BREAK] = ACTIONS(2760), + [anon_sym_Case] = ACTIONS(2760), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_CASE] = ACTIONS(2760), + [anon_sym_Component] = ACTIONS(2760), + [anon_sym_component] = ACTIONS(2760), + [anon_sym_COMPONENT] = ACTIONS(2760), + [anon_sym_Continue] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_CONTINUE] = ACTIONS(2760), + [anon_sym_Debugger] = ACTIONS(2760), + [anon_sym_debugger] = ACTIONS(2760), + [anon_sym_DEBUGGER] = ACTIONS(2760), + [anon_sym_Default] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_DEFAULT] = ACTIONS(2760), + [anon_sym_Do] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_DO] = ACTIONS(2760), + [anon_sym_Final] = ACTIONS(2760), + [anon_sym_final] = ACTIONS(2760), + [anon_sym_FINAL] = ACTIONS(2760), + [anon_sym_For] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_FOR] = ACTIONS(2760), + [anon_sym_Function] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2760), + [anon_sym_FUNCTION] = ACTIONS(2760), + [anon_sym_If] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_IF] = ACTIONS(2760), + [anon_sym_Import] = ACTIONS(2760), + [anon_sym_import] = ACTIONS(2760), + [anon_sym_IMPORT] = ACTIONS(2760), + [anon_sym_Include] = ACTIONS(2760), + [anon_sym_include] = ACTIONS(2760), + [anon_sym_INCLUDE] = ACTIONS(2760), + [anon_sym_Interface] = ACTIONS(2760), + [anon_sym_interface] = ACTIONS(2760), + [anon_sym_INTERFACE] = ACTIONS(2760), + [anon_sym_New] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2760), + [anon_sym_NEW] = ACTIONS(2760), + [anon_sym_Package] = ACTIONS(2760), + [anon_sym_package] = ACTIONS(2760), + [anon_sym_PACKAGE] = ACTIONS(2760), + [anon_sym_Private] = ACTIONS(2760), + [anon_sym_private] = ACTIONS(2760), + [anon_sym_PRIVATE] = ACTIONS(2760), + [anon_sym_Property] = ACTIONS(2760), + [anon_sym_property] = ACTIONS(2760), + [anon_sym_PROPERTY] = ACTIONS(2760), + [anon_sym_Public] = ACTIONS(2760), + [anon_sym_public] = ACTIONS(2760), + [anon_sym_PUBLIC] = ACTIONS(2760), + [anon_sym_Remote] = ACTIONS(2760), + [anon_sym_remote] = ACTIONS(2760), + [anon_sym_REMOTE] = ACTIONS(2760), + [anon_sym_Return] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_RETURN] = ACTIONS(2760), + [anon_sym_Static] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_STATIC] = ACTIONS(2760), + [anon_sym_Switch] = ACTIONS(2760), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_SWITCH] = ACTIONS(2760), + [anon_sym_Throw] = ACTIONS(2760), + [anon_sym_throw] = ACTIONS(2760), + [anon_sym_THROW] = ACTIONS(2760), + [anon_sym_Try] = ACTIONS(2760), + [anon_sym_try] = ACTIONS(2760), + [anon_sym_TRY] = ACTIONS(2760), + [anon_sym_Var] = ACTIONS(2760), + [anon_sym_var] = ACTIONS(2760), + [anon_sym_VAR] = ACTIONS(2760), + [anon_sym_While] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_WHILE] = ACTIONS(2760), + [anon_sym_With] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2760), + [anon_sym_WITH] = ACTIONS(2760), + [sym_cf_comment] = ACTIONS(2758), + [sym__java_block_open] = ACTIONS(2758), + [sym__static_type_prefix] = ACTIONS(2758), + }, + [STATE(843)] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_Query] = ACTIONS(3052), + [anon_sym_query] = ACTIONS(3052), + [anon_sym_QUERY] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [aux_sym_unary_operator_token1] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3052), + [aux_sym_number_token2] = ACTIONS(3050), + [anon_sym_This] = ACTIONS(3052), + [anon_sym_this] = ACTIONS(3052), + [anon_sym_THIS] = ACTIONS(3052), + [anon_sym_Super] = ACTIONS(3052), + [anon_sym_super] = ACTIONS(3052), + [anon_sym_SUPER] = ACTIONS(3052), + [anon_sym_True] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3052), + [anon_sym_TRUE] = ACTIONS(3052), + [anon_sym_False] = ACTIONS(3052), + [anon_sym_false] = ACTIONS(3052), + [anon_sym_FALSE] = ACTIONS(3052), + [anon_sym_Null] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3052), + [anon_sym_NULL] = ACTIONS(3052), + [anon_sym_Undefined] = ACTIONS(3052), + [anon_sym_undefined] = ACTIONS(3052), + [anon_sym_UNDEFINED] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_POUND] = ACTIONS(3052), + [sym_hash_empty] = ACTIONS(3050), + [anon_sym_export] = ACTIONS(3052), + [anon_sym_QueryExecute] = ACTIONS(3052), + [anon_sym_queryexecute] = ACTIONS(3052), + [anon_sym_QUERYEXECUTE] = ACTIONS(3052), + [anon_sym_queryExecute] = ACTIONS(3052), + [anon_sym_BQUOTE] = ACTIONS(3052), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3050), + [anon_sym_Abstract] = ACTIONS(3052), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_ABSTRACT] = ACTIONS(3052), + [anon_sym_Break] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_BREAK] = ACTIONS(3052), + [anon_sym_Case] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_CASE] = ACTIONS(3052), + [anon_sym_Component] = ACTIONS(3052), + [anon_sym_component] = ACTIONS(3052), + [anon_sym_COMPONENT] = ACTIONS(3052), + [anon_sym_Continue] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_CONTINUE] = ACTIONS(3052), + [anon_sym_Debugger] = ACTIONS(3052), + [anon_sym_debugger] = ACTIONS(3052), + [anon_sym_DEBUGGER] = ACTIONS(3052), + [anon_sym_Default] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_DEFAULT] = ACTIONS(3052), + [anon_sym_Do] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_DO] = ACTIONS(3052), + [anon_sym_Final] = ACTIONS(3052), + [anon_sym_final] = ACTIONS(3052), + [anon_sym_FINAL] = ACTIONS(3052), + [anon_sym_For] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_FOR] = ACTIONS(3052), + [anon_sym_Function] = ACTIONS(3052), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_FUNCTION] = ACTIONS(3052), + [anon_sym_If] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_IF] = ACTIONS(3052), + [anon_sym_Import] = ACTIONS(3052), + [anon_sym_import] = ACTIONS(3052), + [anon_sym_IMPORT] = ACTIONS(3052), + [anon_sym_Include] = ACTIONS(3052), + [anon_sym_include] = ACTIONS(3052), + [anon_sym_INCLUDE] = ACTIONS(3052), + [anon_sym_Interface] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_INTERFACE] = ACTIONS(3052), + [anon_sym_New] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_NEW] = ACTIONS(3052), + [anon_sym_Package] = ACTIONS(3052), + [anon_sym_package] = ACTIONS(3052), + [anon_sym_PACKAGE] = ACTIONS(3052), + [anon_sym_Private] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_PRIVATE] = ACTIONS(3052), + [anon_sym_Property] = ACTIONS(3052), + [anon_sym_property] = ACTIONS(3052), + [anon_sym_PROPERTY] = ACTIONS(3052), + [anon_sym_Public] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_PUBLIC] = ACTIONS(3052), + [anon_sym_Remote] = ACTIONS(3052), + [anon_sym_remote] = ACTIONS(3052), + [anon_sym_REMOTE] = ACTIONS(3052), + [anon_sym_Return] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_RETURN] = ACTIONS(3052), + [anon_sym_Static] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_STATIC] = ACTIONS(3052), + [anon_sym_Switch] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_SWITCH] = ACTIONS(3052), + [anon_sym_Throw] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_THROW] = ACTIONS(3052), + [anon_sym_Try] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_TRY] = ACTIONS(3052), + [anon_sym_Var] = ACTIONS(3052), + [anon_sym_var] = ACTIONS(3052), + [anon_sym_VAR] = ACTIONS(3052), + [anon_sym_While] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_WHILE] = ACTIONS(3052), + [anon_sym_With] = ACTIONS(3052), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_WITH] = ACTIONS(3052), + [sym_cf_comment] = ACTIONS(3050), + [sym__java_block_open] = ACTIONS(3050), + [sym__static_type_prefix] = ACTIONS(3050), + }, + [STATE(844)] = { [ts_builtin_sym_end] = ACTIONS(2790), [sym_identifier] = ACTIONS(2792), [anon_sym_LBRACE] = ACTIONS(2790), @@ -168029,7 +172682,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2790), [sym__static_type_prefix] = ACTIONS(2790), }, - [STATE(814)] = { + [STATE(845)] = { + [ts_builtin_sym_end] = ACTIONS(2942), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_Query] = ACTIONS(2944), + [anon_sym_query] = ACTIONS(2944), + [anon_sym_QUERY] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [aux_sym_unary_operator_token1] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2944), + [aux_sym_number_token2] = ACTIONS(2942), + [anon_sym_This] = ACTIONS(2944), + [anon_sym_this] = ACTIONS(2944), + [anon_sym_THIS] = ACTIONS(2944), + [anon_sym_Super] = ACTIONS(2944), + [anon_sym_super] = ACTIONS(2944), + [anon_sym_SUPER] = ACTIONS(2944), + [anon_sym_True] = ACTIONS(2944), + [anon_sym_true] = ACTIONS(2944), + [anon_sym_TRUE] = ACTIONS(2944), + [anon_sym_False] = ACTIONS(2944), + [anon_sym_false] = ACTIONS(2944), + [anon_sym_FALSE] = ACTIONS(2944), + [anon_sym_Null] = ACTIONS(2944), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_Undefined] = ACTIONS(2944), + [anon_sym_undefined] = ACTIONS(2944), + [anon_sym_UNDEFINED] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(2944), + [sym_hash_empty] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_QueryExecute] = ACTIONS(2944), + [anon_sym_queryexecute] = ACTIONS(2944), + [anon_sym_QUERYEXECUTE] = ACTIONS(2944), + [anon_sym_queryExecute] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2942), + [anon_sym_Abstract] = ACTIONS(2944), + [anon_sym_abstract] = ACTIONS(2944), + [anon_sym_ABSTRACT] = ACTIONS(2944), + [anon_sym_Break] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_BREAK] = ACTIONS(2944), + [anon_sym_Case] = ACTIONS(2944), + [anon_sym_case] = ACTIONS(2944), + [anon_sym_CASE] = ACTIONS(2944), + [anon_sym_Component] = ACTIONS(2944), + [anon_sym_component] = ACTIONS(2944), + [anon_sym_COMPONENT] = ACTIONS(2944), + [anon_sym_Continue] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_CONTINUE] = ACTIONS(2944), + [anon_sym_Debugger] = ACTIONS(2944), + [anon_sym_debugger] = ACTIONS(2944), + [anon_sym_DEBUGGER] = ACTIONS(2944), + [anon_sym_Default] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_DEFAULT] = ACTIONS(2944), + [anon_sym_Do] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_DO] = ACTIONS(2944), + [anon_sym_Final] = ACTIONS(2944), + [anon_sym_final] = ACTIONS(2944), + [anon_sym_FINAL] = ACTIONS(2944), + [anon_sym_For] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_FOR] = ACTIONS(2944), + [anon_sym_Function] = ACTIONS(2944), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_FUNCTION] = ACTIONS(2944), + [anon_sym_If] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_IF] = ACTIONS(2944), + [anon_sym_Import] = ACTIONS(2944), + [anon_sym_import] = ACTIONS(2944), + [anon_sym_IMPORT] = ACTIONS(2944), + [anon_sym_Include] = ACTIONS(2944), + [anon_sym_include] = ACTIONS(2944), + [anon_sym_INCLUDE] = ACTIONS(2944), + [anon_sym_Interface] = ACTIONS(2944), + [anon_sym_interface] = ACTIONS(2944), + [anon_sym_INTERFACE] = ACTIONS(2944), + [anon_sym_New] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_NEW] = ACTIONS(2944), + [anon_sym_Package] = ACTIONS(2944), + [anon_sym_package] = ACTIONS(2944), + [anon_sym_PACKAGE] = ACTIONS(2944), + [anon_sym_Private] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_PRIVATE] = ACTIONS(2944), + [anon_sym_Property] = ACTIONS(2944), + [anon_sym_property] = ACTIONS(2944), + [anon_sym_PROPERTY] = ACTIONS(2944), + [anon_sym_Public] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_PUBLIC] = ACTIONS(2944), + [anon_sym_Remote] = ACTIONS(2944), + [anon_sym_remote] = ACTIONS(2944), + [anon_sym_REMOTE] = ACTIONS(2944), + [anon_sym_Return] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_RETURN] = ACTIONS(2944), + [anon_sym_Static] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_STATIC] = ACTIONS(2944), + [anon_sym_Switch] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_SWITCH] = ACTIONS(2944), + [anon_sym_Throw] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_THROW] = ACTIONS(2944), + [anon_sym_Try] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_TRY] = ACTIONS(2944), + [anon_sym_Var] = ACTIONS(2944), + [anon_sym_var] = ACTIONS(2944), + [anon_sym_VAR] = ACTIONS(2944), + [anon_sym_While] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_WHILE] = ACTIONS(2944), + [anon_sym_With] = ACTIONS(2944), + [anon_sym_with] = ACTIONS(2944), + [anon_sym_WITH] = ACTIONS(2944), + [sym_cf_comment] = ACTIONS(2942), + [sym__java_block_open] = ACTIONS(2942), + [sym__static_type_prefix] = ACTIONS(2942), + }, + [STATE(846)] = { + [ts_builtin_sym_end] = ACTIONS(2982), + [sym_identifier] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_Query] = ACTIONS(2984), + [anon_sym_query] = ACTIONS(2984), + [anon_sym_QUERY] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [aux_sym_unary_operator_token1] = ACTIONS(2984), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2982), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2984), + [aux_sym_number_token2] = ACTIONS(2982), + [anon_sym_This] = ACTIONS(2984), + [anon_sym_this] = ACTIONS(2984), + [anon_sym_THIS] = ACTIONS(2984), + [anon_sym_Super] = ACTIONS(2984), + [anon_sym_super] = ACTIONS(2984), + [anon_sym_SUPER] = ACTIONS(2984), + [anon_sym_True] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2984), + [anon_sym_TRUE] = ACTIONS(2984), + [anon_sym_False] = ACTIONS(2984), + [anon_sym_false] = ACTIONS(2984), + [anon_sym_FALSE] = ACTIONS(2984), + [anon_sym_Null] = ACTIONS(2984), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_NULL] = ACTIONS(2984), + [anon_sym_Undefined] = ACTIONS(2984), + [anon_sym_undefined] = ACTIONS(2984), + [anon_sym_UNDEFINED] = ACTIONS(2984), + [anon_sym_get] = ACTIONS(2984), + [anon_sym_set] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(2984), + [sym_hash_empty] = ACTIONS(2982), + [anon_sym_export] = ACTIONS(2984), + [anon_sym_QueryExecute] = ACTIONS(2984), + [anon_sym_queryexecute] = ACTIONS(2984), + [anon_sym_QUERYEXECUTE] = ACTIONS(2984), + [anon_sym_queryExecute] = ACTIONS(2984), + [anon_sym_BQUOTE] = ACTIONS(2984), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2982), + [anon_sym_Abstract] = ACTIONS(2984), + [anon_sym_abstract] = ACTIONS(2984), + [anon_sym_ABSTRACT] = ACTIONS(2984), + [anon_sym_Break] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_BREAK] = ACTIONS(2984), + [anon_sym_Case] = ACTIONS(2984), + [anon_sym_case] = ACTIONS(2984), + [anon_sym_CASE] = ACTIONS(2984), + [anon_sym_Component] = ACTIONS(2984), + [anon_sym_component] = ACTIONS(2984), + [anon_sym_COMPONENT] = ACTIONS(2984), + [anon_sym_Continue] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_CONTINUE] = ACTIONS(2984), + [anon_sym_Debugger] = ACTIONS(2984), + [anon_sym_debugger] = ACTIONS(2984), + [anon_sym_DEBUGGER] = ACTIONS(2984), + [anon_sym_Default] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_DEFAULT] = ACTIONS(2984), + [anon_sym_Do] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_DO] = ACTIONS(2984), + [anon_sym_Final] = ACTIONS(2984), + [anon_sym_final] = ACTIONS(2984), + [anon_sym_FINAL] = ACTIONS(2984), + [anon_sym_For] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_FOR] = ACTIONS(2984), + [anon_sym_Function] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2984), + [anon_sym_FUNCTION] = ACTIONS(2984), + [anon_sym_If] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_IF] = ACTIONS(2984), + [anon_sym_Import] = ACTIONS(2984), + [anon_sym_import] = ACTIONS(2984), + [anon_sym_IMPORT] = ACTIONS(2984), + [anon_sym_Include] = ACTIONS(2984), + [anon_sym_include] = ACTIONS(2984), + [anon_sym_INCLUDE] = ACTIONS(2984), + [anon_sym_Interface] = ACTIONS(2984), + [anon_sym_interface] = ACTIONS(2984), + [anon_sym_INTERFACE] = ACTIONS(2984), + [anon_sym_New] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2984), + [anon_sym_NEW] = ACTIONS(2984), + [anon_sym_Package] = ACTIONS(2984), + [anon_sym_package] = ACTIONS(2984), + [anon_sym_PACKAGE] = ACTIONS(2984), + [anon_sym_Private] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_PRIVATE] = ACTIONS(2984), + [anon_sym_Property] = ACTIONS(2984), + [anon_sym_property] = ACTIONS(2984), + [anon_sym_PROPERTY] = ACTIONS(2984), + [anon_sym_Public] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_PUBLIC] = ACTIONS(2984), + [anon_sym_Remote] = ACTIONS(2984), + [anon_sym_remote] = ACTIONS(2984), + [anon_sym_REMOTE] = ACTIONS(2984), + [anon_sym_Return] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_RETURN] = ACTIONS(2984), + [anon_sym_Static] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_STATIC] = ACTIONS(2984), + [anon_sym_Switch] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2984), + [anon_sym_SWITCH] = ACTIONS(2984), + [anon_sym_Throw] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_THROW] = ACTIONS(2984), + [anon_sym_Try] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_TRY] = ACTIONS(2984), + [anon_sym_Var] = ACTIONS(2984), + [anon_sym_var] = ACTIONS(2984), + [anon_sym_VAR] = ACTIONS(2984), + [anon_sym_While] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_WHILE] = ACTIONS(2984), + [anon_sym_With] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2984), + [anon_sym_WITH] = ACTIONS(2984), + [sym_cf_comment] = ACTIONS(2982), + [sym__java_block_open] = ACTIONS(2982), + [sym__static_type_prefix] = ACTIONS(2982), + }, + [STATE(847)] = { + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_Query] = ACTIONS(3056), + [anon_sym_query] = ACTIONS(3056), + [anon_sym_QUERY] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3054), + [anon_sym_TILDE] = ACTIONS(3054), + [aux_sym_unary_operator_token1] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3056), + [aux_sym_number_token2] = ACTIONS(3054), + [anon_sym_This] = ACTIONS(3056), + [anon_sym_this] = ACTIONS(3056), + [anon_sym_THIS] = ACTIONS(3056), + [anon_sym_Super] = ACTIONS(3056), + [anon_sym_super] = ACTIONS(3056), + [anon_sym_SUPER] = ACTIONS(3056), + [anon_sym_True] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3056), + [anon_sym_TRUE] = ACTIONS(3056), + [anon_sym_False] = ACTIONS(3056), + [anon_sym_false] = ACTIONS(3056), + [anon_sym_FALSE] = ACTIONS(3056), + [anon_sym_Null] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3056), + [anon_sym_Undefined] = ACTIONS(3056), + [anon_sym_undefined] = ACTIONS(3056), + [anon_sym_UNDEFINED] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3056), + [anon_sym_set] = ACTIONS(3056), + [anon_sym_POUND] = ACTIONS(3056), + [sym_hash_empty] = ACTIONS(3054), + [anon_sym_export] = ACTIONS(3056), + [anon_sym_QueryExecute] = ACTIONS(3056), + [anon_sym_queryexecute] = ACTIONS(3056), + [anon_sym_QUERYEXECUTE] = ACTIONS(3056), + [anon_sym_queryExecute] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3056), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3054), + [anon_sym_Abstract] = ACTIONS(3056), + [anon_sym_abstract] = ACTIONS(3056), + [anon_sym_ABSTRACT] = ACTIONS(3056), + [anon_sym_Break] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_BREAK] = ACTIONS(3056), + [anon_sym_Case] = ACTIONS(3056), + [anon_sym_case] = ACTIONS(3056), + [anon_sym_CASE] = ACTIONS(3056), + [anon_sym_Component] = ACTIONS(3056), + [anon_sym_component] = ACTIONS(3056), + [anon_sym_COMPONENT] = ACTIONS(3056), + [anon_sym_Continue] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_CONTINUE] = ACTIONS(3056), + [anon_sym_Debugger] = ACTIONS(3056), + [anon_sym_debugger] = ACTIONS(3056), + [anon_sym_DEBUGGER] = ACTIONS(3056), + [anon_sym_Default] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_DEFAULT] = ACTIONS(3056), + [anon_sym_Do] = ACTIONS(3056), + [anon_sym_do] = ACTIONS(3056), + [anon_sym_DO] = ACTIONS(3056), + [anon_sym_Final] = ACTIONS(3056), + [anon_sym_final] = ACTIONS(3056), + [anon_sym_FINAL] = ACTIONS(3056), + [anon_sym_For] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_FOR] = ACTIONS(3056), + [anon_sym_Function] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(3056), + [anon_sym_FUNCTION] = ACTIONS(3056), + [anon_sym_If] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_IF] = ACTIONS(3056), + [anon_sym_Import] = ACTIONS(3056), + [anon_sym_import] = ACTIONS(3056), + [anon_sym_IMPORT] = ACTIONS(3056), + [anon_sym_Include] = ACTIONS(3056), + [anon_sym_include] = ACTIONS(3056), + [anon_sym_INCLUDE] = ACTIONS(3056), + [anon_sym_Interface] = ACTIONS(3056), + [anon_sym_interface] = ACTIONS(3056), + [anon_sym_INTERFACE] = ACTIONS(3056), + [anon_sym_New] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3056), + [anon_sym_NEW] = ACTIONS(3056), + [anon_sym_Package] = ACTIONS(3056), + [anon_sym_package] = ACTIONS(3056), + [anon_sym_PACKAGE] = ACTIONS(3056), + [anon_sym_Private] = ACTIONS(3056), + [anon_sym_private] = ACTIONS(3056), + [anon_sym_PRIVATE] = ACTIONS(3056), + [anon_sym_Property] = ACTIONS(3056), + [anon_sym_property] = ACTIONS(3056), + [anon_sym_PROPERTY] = ACTIONS(3056), + [anon_sym_Public] = ACTIONS(3056), + [anon_sym_public] = ACTIONS(3056), + [anon_sym_PUBLIC] = ACTIONS(3056), + [anon_sym_Remote] = ACTIONS(3056), + [anon_sym_remote] = ACTIONS(3056), + [anon_sym_REMOTE] = ACTIONS(3056), + [anon_sym_Return] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_RETURN] = ACTIONS(3056), + [anon_sym_Static] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_STATIC] = ACTIONS(3056), + [anon_sym_Switch] = ACTIONS(3056), + [anon_sym_switch] = ACTIONS(3056), + [anon_sym_SWITCH] = ACTIONS(3056), + [anon_sym_Throw] = ACTIONS(3056), + [anon_sym_throw] = ACTIONS(3056), + [anon_sym_THROW] = ACTIONS(3056), + [anon_sym_Try] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [anon_sym_TRY] = ACTIONS(3056), + [anon_sym_Var] = ACTIONS(3056), + [anon_sym_var] = ACTIONS(3056), + [anon_sym_VAR] = ACTIONS(3056), + [anon_sym_While] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_WHILE] = ACTIONS(3056), + [anon_sym_With] = ACTIONS(3056), + [anon_sym_with] = ACTIONS(3056), + [anon_sym_WITH] = ACTIONS(3056), + [sym_cf_comment] = ACTIONS(3054), + [sym__java_block_open] = ACTIONS(3054), + [sym__static_type_prefix] = ACTIONS(3054), + }, + [STATE(848)] = { [ts_builtin_sym_end] = ACTIONS(2794), [sym_identifier] = ACTIONS(2796), [anon_sym_LBRACE] = ACTIONS(2794), @@ -168174,7 +173262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2794), [sym__static_type_prefix] = ACTIONS(2794), }, - [STATE(815)] = { + [STATE(849)] = { [ts_builtin_sym_end] = ACTIONS(2798), [sym_identifier] = ACTIONS(2800), [anon_sym_LBRACE] = ACTIONS(2798), @@ -168319,152 +173407,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2798), [sym__static_type_prefix] = ACTIONS(2798), }, - [STATE(816)] = { - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_Query] = ACTIONS(2698), - [anon_sym_query] = ACTIONS(2698), - [anon_sym_QUERY] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [aux_sym_unary_operator_token1] = ACTIONS(2698), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2698), - [aux_sym_number_token2] = ACTIONS(2696), - [anon_sym_This] = ACTIONS(2698), - [anon_sym_this] = ACTIONS(2698), - [anon_sym_THIS] = ACTIONS(2698), - [anon_sym_Super] = ACTIONS(2698), - [anon_sym_super] = ACTIONS(2698), - [anon_sym_SUPER] = ACTIONS(2698), - [anon_sym_True] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_TRUE] = ACTIONS(2698), - [anon_sym_False] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [anon_sym_FALSE] = ACTIONS(2698), - [anon_sym_Null] = ACTIONS(2698), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_NULL] = ACTIONS(2698), - [anon_sym_Undefined] = ACTIONS(2698), - [anon_sym_undefined] = ACTIONS(2698), - [anon_sym_UNDEFINED] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2698), - [anon_sym_set] = ACTIONS(2698), - [anon_sym_POUND] = ACTIONS(2698), - [sym_hash_empty] = ACTIONS(2696), - [anon_sym_export] = ACTIONS(2698), - [anon_sym_QueryExecute] = ACTIONS(2698), - [anon_sym_queryexecute] = ACTIONS(2698), - [anon_sym_QUERYEXECUTE] = ACTIONS(2698), - [anon_sym_queryExecute] = ACTIONS(2698), - [anon_sym_BQUOTE] = ACTIONS(2698), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2696), - [anon_sym_Abstract] = ACTIONS(2698), - [anon_sym_abstract] = ACTIONS(2698), - [anon_sym_ABSTRACT] = ACTIONS(2698), - [anon_sym_Break] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_BREAK] = ACTIONS(2698), - [anon_sym_Case] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_CASE] = ACTIONS(2698), - [anon_sym_Component] = ACTIONS(2698), - [anon_sym_component] = ACTIONS(2698), - [anon_sym_COMPONENT] = ACTIONS(2698), - [anon_sym_Continue] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_CONTINUE] = ACTIONS(2698), - [anon_sym_Debugger] = ACTIONS(2698), - [anon_sym_debugger] = ACTIONS(2698), - [anon_sym_DEBUGGER] = ACTIONS(2698), - [anon_sym_Default] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_DEFAULT] = ACTIONS(2698), - [anon_sym_Do] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_DO] = ACTIONS(2698), - [anon_sym_Final] = ACTIONS(2698), - [anon_sym_final] = ACTIONS(2698), - [anon_sym_FINAL] = ACTIONS(2698), - [anon_sym_For] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_FOR] = ACTIONS(2698), - [anon_sym_Function] = ACTIONS(2698), - [anon_sym_function] = ACTIONS(2698), - [anon_sym_FUNCTION] = ACTIONS(2698), - [anon_sym_If] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_IF] = ACTIONS(2698), - [anon_sym_Import] = ACTIONS(2698), - [anon_sym_import] = ACTIONS(2698), - [anon_sym_IMPORT] = ACTIONS(2698), - [anon_sym_Include] = ACTIONS(2698), - [anon_sym_include] = ACTIONS(2698), - [anon_sym_INCLUDE] = ACTIONS(2698), - [anon_sym_Interface] = ACTIONS(2698), - [anon_sym_interface] = ACTIONS(2698), - [anon_sym_INTERFACE] = ACTIONS(2698), - [anon_sym_New] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_NEW] = ACTIONS(2698), - [anon_sym_Package] = ACTIONS(2698), - [anon_sym_package] = ACTIONS(2698), - [anon_sym_PACKAGE] = ACTIONS(2698), - [anon_sym_Private] = ACTIONS(2698), - [anon_sym_private] = ACTIONS(2698), - [anon_sym_PRIVATE] = ACTIONS(2698), - [anon_sym_Property] = ACTIONS(2698), - [anon_sym_property] = ACTIONS(2698), - [anon_sym_PROPERTY] = ACTIONS(2698), - [anon_sym_Public] = ACTIONS(2698), - [anon_sym_public] = ACTIONS(2698), - [anon_sym_PUBLIC] = ACTIONS(2698), - [anon_sym_Remote] = ACTIONS(2698), - [anon_sym_remote] = ACTIONS(2698), - [anon_sym_REMOTE] = ACTIONS(2698), - [anon_sym_Return] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_RETURN] = ACTIONS(2698), - [anon_sym_Static] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_STATIC] = ACTIONS(2698), - [anon_sym_Switch] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_SWITCH] = ACTIONS(2698), - [anon_sym_Throw] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_THROW] = ACTIONS(2698), - [anon_sym_Try] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_TRY] = ACTIONS(2698), - [anon_sym_Var] = ACTIONS(2698), - [anon_sym_var] = ACTIONS(2698), - [anon_sym_VAR] = ACTIONS(2698), - [anon_sym_While] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_WHILE] = ACTIONS(2698), - [anon_sym_With] = ACTIONS(2698), - [anon_sym_with] = ACTIONS(2698), - [anon_sym_WITH] = ACTIONS(2698), - [sym_cf_comment] = ACTIONS(2696), - [sym__java_block_open] = ACTIONS(2696), - [sym__static_type_prefix] = ACTIONS(2696), + [STATE(850)] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_Query] = ACTIONS(2804), + [anon_sym_query] = ACTIONS(2804), + [anon_sym_QUERY] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [aux_sym_unary_operator_token1] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2804), + [aux_sym_number_token2] = ACTIONS(2802), + [anon_sym_This] = ACTIONS(2804), + [anon_sym_this] = ACTIONS(2804), + [anon_sym_THIS] = ACTIONS(2804), + [anon_sym_Super] = ACTIONS(2804), + [anon_sym_super] = ACTIONS(2804), + [anon_sym_SUPER] = ACTIONS(2804), + [anon_sym_True] = ACTIONS(2804), + [anon_sym_true] = ACTIONS(2804), + [anon_sym_TRUE] = ACTIONS(2804), + [anon_sym_False] = ACTIONS(2804), + [anon_sym_false] = ACTIONS(2804), + [anon_sym_FALSE] = ACTIONS(2804), + [anon_sym_Null] = ACTIONS(2804), + [anon_sym_null] = ACTIONS(2804), + [anon_sym_NULL] = ACTIONS(2804), + [anon_sym_Undefined] = ACTIONS(2804), + [anon_sym_undefined] = ACTIONS(2804), + [anon_sym_UNDEFINED] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2804), + [anon_sym_set] = ACTIONS(2804), + [anon_sym_POUND] = ACTIONS(2804), + [sym_hash_empty] = ACTIONS(2802), + [anon_sym_export] = ACTIONS(2804), + [anon_sym_QueryExecute] = ACTIONS(2804), + [anon_sym_queryexecute] = ACTIONS(2804), + [anon_sym_QUERYEXECUTE] = ACTIONS(2804), + [anon_sym_queryExecute] = ACTIONS(2804), + [anon_sym_BQUOTE] = ACTIONS(2804), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2802), + [anon_sym_Abstract] = ACTIONS(2804), + [anon_sym_abstract] = ACTIONS(2804), + [anon_sym_ABSTRACT] = ACTIONS(2804), + [anon_sym_Break] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_BREAK] = ACTIONS(2804), + [anon_sym_Case] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_CASE] = ACTIONS(2804), + [anon_sym_Component] = ACTIONS(2804), + [anon_sym_component] = ACTIONS(2804), + [anon_sym_COMPONENT] = ACTIONS(2804), + [anon_sym_Continue] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_CONTINUE] = ACTIONS(2804), + [anon_sym_Debugger] = ACTIONS(2804), + [anon_sym_debugger] = ACTIONS(2804), + [anon_sym_DEBUGGER] = ACTIONS(2804), + [anon_sym_Default] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_DEFAULT] = ACTIONS(2804), + [anon_sym_Do] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_DO] = ACTIONS(2804), + [anon_sym_Final] = ACTIONS(2804), + [anon_sym_final] = ACTIONS(2804), + [anon_sym_FINAL] = ACTIONS(2804), + [anon_sym_For] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_FOR] = ACTIONS(2804), + [anon_sym_Function] = ACTIONS(2804), + [anon_sym_function] = ACTIONS(2804), + [anon_sym_FUNCTION] = ACTIONS(2804), + [anon_sym_If] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_IF] = ACTIONS(2804), + [anon_sym_Import] = ACTIONS(2804), + [anon_sym_import] = ACTIONS(2804), + [anon_sym_IMPORT] = ACTIONS(2804), + [anon_sym_Include] = ACTIONS(2804), + [anon_sym_include] = ACTIONS(2804), + [anon_sym_INCLUDE] = ACTIONS(2804), + [anon_sym_Interface] = ACTIONS(2804), + [anon_sym_interface] = ACTIONS(2804), + [anon_sym_INTERFACE] = ACTIONS(2804), + [anon_sym_New] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_NEW] = ACTIONS(2804), + [anon_sym_Package] = ACTIONS(2804), + [anon_sym_package] = ACTIONS(2804), + [anon_sym_PACKAGE] = ACTIONS(2804), + [anon_sym_Private] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_PRIVATE] = ACTIONS(2804), + [anon_sym_Property] = ACTIONS(2804), + [anon_sym_property] = ACTIONS(2804), + [anon_sym_PROPERTY] = ACTIONS(2804), + [anon_sym_Public] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_PUBLIC] = ACTIONS(2804), + [anon_sym_Remote] = ACTIONS(2804), + [anon_sym_remote] = ACTIONS(2804), + [anon_sym_REMOTE] = ACTIONS(2804), + [anon_sym_Return] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_RETURN] = ACTIONS(2804), + [anon_sym_Static] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_STATIC] = ACTIONS(2804), + [anon_sym_Switch] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_SWITCH] = ACTIONS(2804), + [anon_sym_Throw] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_THROW] = ACTIONS(2804), + [anon_sym_Try] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_TRY] = ACTIONS(2804), + [anon_sym_Var] = ACTIONS(2804), + [anon_sym_var] = ACTIONS(2804), + [anon_sym_VAR] = ACTIONS(2804), + [anon_sym_While] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_WHILE] = ACTIONS(2804), + [anon_sym_With] = ACTIONS(2804), + [anon_sym_with] = ACTIONS(2804), + [anon_sym_WITH] = ACTIONS(2804), + [sym_cf_comment] = ACTIONS(2802), + [sym__java_block_open] = ACTIONS(2802), + [sym__static_type_prefix] = ACTIONS(2802), }, - [STATE(817)] = { + [STATE(851)] = { [ts_builtin_sym_end] = ACTIONS(2806), [sym_identifier] = ACTIONS(2808), [anon_sym_LBRACE] = ACTIONS(2806), @@ -168609,7 +173697,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2806), [sym__static_type_prefix] = ACTIONS(2806), }, - [STATE(818)] = { + [STATE(852)] = { + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_Query] = ACTIONS(2764), + [anon_sym_query] = ACTIONS(2764), + [anon_sym_QUERY] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_TILDE] = ACTIONS(2762), + [aux_sym_unary_operator_token1] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2764), + [aux_sym_number_token2] = ACTIONS(2762), + [anon_sym_This] = ACTIONS(2764), + [anon_sym_this] = ACTIONS(2764), + [anon_sym_THIS] = ACTIONS(2764), + [anon_sym_Super] = ACTIONS(2764), + [anon_sym_super] = ACTIONS(2764), + [anon_sym_SUPER] = ACTIONS(2764), + [anon_sym_True] = ACTIONS(2764), + [anon_sym_true] = ACTIONS(2764), + [anon_sym_TRUE] = ACTIONS(2764), + [anon_sym_False] = ACTIONS(2764), + [anon_sym_false] = ACTIONS(2764), + [anon_sym_FALSE] = ACTIONS(2764), + [anon_sym_Null] = ACTIONS(2764), + [anon_sym_null] = ACTIONS(2764), + [anon_sym_NULL] = ACTIONS(2764), + [anon_sym_Undefined] = ACTIONS(2764), + [anon_sym_undefined] = ACTIONS(2764), + [anon_sym_UNDEFINED] = ACTIONS(2764), + [anon_sym_get] = ACTIONS(2764), + [anon_sym_set] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [sym_hash_empty] = ACTIONS(2762), + [anon_sym_export] = ACTIONS(2764), + [anon_sym_QueryExecute] = ACTIONS(2764), + [anon_sym_queryexecute] = ACTIONS(2764), + [anon_sym_QUERYEXECUTE] = ACTIONS(2764), + [anon_sym_queryExecute] = ACTIONS(2764), + [anon_sym_BQUOTE] = ACTIONS(2764), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2762), + [anon_sym_Abstract] = ACTIONS(2764), + [anon_sym_abstract] = ACTIONS(2764), + [anon_sym_ABSTRACT] = ACTIONS(2764), + [anon_sym_Break] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_BREAK] = ACTIONS(2764), + [anon_sym_Case] = ACTIONS(2764), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_CASE] = ACTIONS(2764), + [anon_sym_Component] = ACTIONS(2764), + [anon_sym_component] = ACTIONS(2764), + [anon_sym_COMPONENT] = ACTIONS(2764), + [anon_sym_Continue] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_CONTINUE] = ACTIONS(2764), + [anon_sym_Debugger] = ACTIONS(2764), + [anon_sym_debugger] = ACTIONS(2764), + [anon_sym_DEBUGGER] = ACTIONS(2764), + [anon_sym_Default] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_DEFAULT] = ACTIONS(2764), + [anon_sym_Do] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_DO] = ACTIONS(2764), + [anon_sym_Final] = ACTIONS(2764), + [anon_sym_final] = ACTIONS(2764), + [anon_sym_FINAL] = ACTIONS(2764), + [anon_sym_For] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_FOR] = ACTIONS(2764), + [anon_sym_Function] = ACTIONS(2764), + [anon_sym_function] = ACTIONS(2764), + [anon_sym_FUNCTION] = ACTIONS(2764), + [anon_sym_If] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_IF] = ACTIONS(2764), + [anon_sym_Import] = ACTIONS(2764), + [anon_sym_import] = ACTIONS(2764), + [anon_sym_IMPORT] = ACTIONS(2764), + [anon_sym_Include] = ACTIONS(2764), + [anon_sym_include] = ACTIONS(2764), + [anon_sym_INCLUDE] = ACTIONS(2764), + [anon_sym_Interface] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_INTERFACE] = ACTIONS(2764), + [anon_sym_New] = ACTIONS(2764), + [anon_sym_new] = ACTIONS(2764), + [anon_sym_NEW] = ACTIONS(2764), + [anon_sym_Package] = ACTIONS(2764), + [anon_sym_package] = ACTIONS(2764), + [anon_sym_PACKAGE] = ACTIONS(2764), + [anon_sym_Private] = ACTIONS(2764), + [anon_sym_private] = ACTIONS(2764), + [anon_sym_PRIVATE] = ACTIONS(2764), + [anon_sym_Property] = ACTIONS(2764), + [anon_sym_property] = ACTIONS(2764), + [anon_sym_PROPERTY] = ACTIONS(2764), + [anon_sym_Public] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2764), + [anon_sym_PUBLIC] = ACTIONS(2764), + [anon_sym_Remote] = ACTIONS(2764), + [anon_sym_remote] = ACTIONS(2764), + [anon_sym_REMOTE] = ACTIONS(2764), + [anon_sym_Return] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_RETURN] = ACTIONS(2764), + [anon_sym_Static] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_STATIC] = ACTIONS(2764), + [anon_sym_Switch] = ACTIONS(2764), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_SWITCH] = ACTIONS(2764), + [anon_sym_Throw] = ACTIONS(2764), + [anon_sym_throw] = ACTIONS(2764), + [anon_sym_THROW] = ACTIONS(2764), + [anon_sym_Try] = ACTIONS(2764), + [anon_sym_try] = ACTIONS(2764), + [anon_sym_TRY] = ACTIONS(2764), + [anon_sym_Var] = ACTIONS(2764), + [anon_sym_var] = ACTIONS(2764), + [anon_sym_VAR] = ACTIONS(2764), + [anon_sym_While] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_WHILE] = ACTIONS(2764), + [anon_sym_With] = ACTIONS(2764), + [anon_sym_with] = ACTIONS(2764), + [anon_sym_WITH] = ACTIONS(2764), + [sym_cf_comment] = ACTIONS(2762), + [sym__java_block_open] = ACTIONS(2762), + [sym__static_type_prefix] = ACTIONS(2762), + }, + [STATE(853)] = { + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_Query] = ACTIONS(2988), + [anon_sym_query] = ACTIONS(2988), + [anon_sym_QUERY] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_unary_operator_token1] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2988), + [aux_sym_number_token2] = ACTIONS(2986), + [anon_sym_This] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_THIS] = ACTIONS(2988), + [anon_sym_Super] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_SUPER] = ACTIONS(2988), + [anon_sym_True] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_TRUE] = ACTIONS(2988), + [anon_sym_False] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_FALSE] = ACTIONS(2988), + [anon_sym_Null] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_Undefined] = ACTIONS(2988), + [anon_sym_undefined] = ACTIONS(2988), + [anon_sym_UNDEFINED] = ACTIONS(2988), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [sym_hash_empty] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(2988), + [anon_sym_QueryExecute] = ACTIONS(2988), + [anon_sym_queryexecute] = ACTIONS(2988), + [anon_sym_QUERYEXECUTE] = ACTIONS(2988), + [anon_sym_queryExecute] = ACTIONS(2988), + [anon_sym_BQUOTE] = ACTIONS(2988), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2986), + [anon_sym_Abstract] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_ABSTRACT] = ACTIONS(2988), + [anon_sym_Break] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_BREAK] = ACTIONS(2988), + [anon_sym_Case] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_CASE] = ACTIONS(2988), + [anon_sym_Component] = ACTIONS(2988), + [anon_sym_component] = ACTIONS(2988), + [anon_sym_COMPONENT] = ACTIONS(2988), + [anon_sym_Continue] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_CONTINUE] = ACTIONS(2988), + [anon_sym_Debugger] = ACTIONS(2988), + [anon_sym_debugger] = ACTIONS(2988), + [anon_sym_DEBUGGER] = ACTIONS(2988), + [anon_sym_Default] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_DEFAULT] = ACTIONS(2988), + [anon_sym_Do] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_DO] = ACTIONS(2988), + [anon_sym_Final] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_FINAL] = ACTIONS(2988), + [anon_sym_For] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_FOR] = ACTIONS(2988), + [anon_sym_Function] = ACTIONS(2988), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_FUNCTION] = ACTIONS(2988), + [anon_sym_If] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_IF] = ACTIONS(2988), + [anon_sym_Import] = ACTIONS(2988), + [anon_sym_import] = ACTIONS(2988), + [anon_sym_IMPORT] = ACTIONS(2988), + [anon_sym_Include] = ACTIONS(2988), + [anon_sym_include] = ACTIONS(2988), + [anon_sym_INCLUDE] = ACTIONS(2988), + [anon_sym_Interface] = ACTIONS(2988), + [anon_sym_interface] = ACTIONS(2988), + [anon_sym_INTERFACE] = ACTIONS(2988), + [anon_sym_New] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_NEW] = ACTIONS(2988), + [anon_sym_Package] = ACTIONS(2988), + [anon_sym_package] = ACTIONS(2988), + [anon_sym_PACKAGE] = ACTIONS(2988), + [anon_sym_Private] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_PRIVATE] = ACTIONS(2988), + [anon_sym_Property] = ACTIONS(2988), + [anon_sym_property] = ACTIONS(2988), + [anon_sym_PROPERTY] = ACTIONS(2988), + [anon_sym_Public] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_PUBLIC] = ACTIONS(2988), + [anon_sym_Remote] = ACTIONS(2988), + [anon_sym_remote] = ACTIONS(2988), + [anon_sym_REMOTE] = ACTIONS(2988), + [anon_sym_Return] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_RETURN] = ACTIONS(2988), + [anon_sym_Static] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_STATIC] = ACTIONS(2988), + [anon_sym_Switch] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_SWITCH] = ACTIONS(2988), + [anon_sym_Throw] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_THROW] = ACTIONS(2988), + [anon_sym_Try] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_TRY] = ACTIONS(2988), + [anon_sym_Var] = ACTIONS(2988), + [anon_sym_var] = ACTIONS(2988), + [anon_sym_VAR] = ACTIONS(2988), + [anon_sym_While] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_WHILE] = ACTIONS(2988), + [anon_sym_With] = ACTIONS(2988), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_WITH] = ACTIONS(2988), + [sym_cf_comment] = ACTIONS(2986), + [sym__java_block_open] = ACTIONS(2986), + [sym__static_type_prefix] = ACTIONS(2986), + }, + [STATE(854)] = { + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_Query] = ACTIONS(2988), + [anon_sym_query] = ACTIONS(2988), + [anon_sym_QUERY] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_unary_operator_token1] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2988), + [aux_sym_number_token2] = ACTIONS(2986), + [anon_sym_This] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_THIS] = ACTIONS(2988), + [anon_sym_Super] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_SUPER] = ACTIONS(2988), + [anon_sym_True] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_TRUE] = ACTIONS(2988), + [anon_sym_False] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_FALSE] = ACTIONS(2988), + [anon_sym_Null] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_Undefined] = ACTIONS(2988), + [anon_sym_undefined] = ACTIONS(2988), + [anon_sym_UNDEFINED] = ACTIONS(2988), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [sym_hash_empty] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(2988), + [anon_sym_QueryExecute] = ACTIONS(2988), + [anon_sym_queryexecute] = ACTIONS(2988), + [anon_sym_QUERYEXECUTE] = ACTIONS(2988), + [anon_sym_queryExecute] = ACTIONS(2988), + [anon_sym_BQUOTE] = ACTIONS(2988), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2986), + [anon_sym_Abstract] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_ABSTRACT] = ACTIONS(2988), + [anon_sym_Break] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_BREAK] = ACTIONS(2988), + [anon_sym_Case] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_CASE] = ACTIONS(2988), + [anon_sym_Component] = ACTIONS(2988), + [anon_sym_component] = ACTIONS(2988), + [anon_sym_COMPONENT] = ACTIONS(2988), + [anon_sym_Continue] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_CONTINUE] = ACTIONS(2988), + [anon_sym_Debugger] = ACTIONS(2988), + [anon_sym_debugger] = ACTIONS(2988), + [anon_sym_DEBUGGER] = ACTIONS(2988), + [anon_sym_Default] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_DEFAULT] = ACTIONS(2988), + [anon_sym_Do] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_DO] = ACTIONS(2988), + [anon_sym_Final] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_FINAL] = ACTIONS(2988), + [anon_sym_For] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_FOR] = ACTIONS(2988), + [anon_sym_Function] = ACTIONS(2988), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_FUNCTION] = ACTIONS(2988), + [anon_sym_If] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_IF] = ACTIONS(2988), + [anon_sym_Import] = ACTIONS(2988), + [anon_sym_import] = ACTIONS(2988), + [anon_sym_IMPORT] = ACTIONS(2988), + [anon_sym_Include] = ACTIONS(2988), + [anon_sym_include] = ACTIONS(2988), + [anon_sym_INCLUDE] = ACTIONS(2988), + [anon_sym_Interface] = ACTIONS(2988), + [anon_sym_interface] = ACTIONS(2988), + [anon_sym_INTERFACE] = ACTIONS(2988), + [anon_sym_New] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_NEW] = ACTIONS(2988), + [anon_sym_Package] = ACTIONS(2988), + [anon_sym_package] = ACTIONS(2988), + [anon_sym_PACKAGE] = ACTIONS(2988), + [anon_sym_Private] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_PRIVATE] = ACTIONS(2988), + [anon_sym_Property] = ACTIONS(2988), + [anon_sym_property] = ACTIONS(2988), + [anon_sym_PROPERTY] = ACTIONS(2988), + [anon_sym_Public] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_PUBLIC] = ACTIONS(2988), + [anon_sym_Remote] = ACTIONS(2988), + [anon_sym_remote] = ACTIONS(2988), + [anon_sym_REMOTE] = ACTIONS(2988), + [anon_sym_Return] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_RETURN] = ACTIONS(2988), + [anon_sym_Static] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_STATIC] = ACTIONS(2988), + [anon_sym_Switch] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_SWITCH] = ACTIONS(2988), + [anon_sym_Throw] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_THROW] = ACTIONS(2988), + [anon_sym_Try] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_TRY] = ACTIONS(2988), + [anon_sym_Var] = ACTIONS(2988), + [anon_sym_var] = ACTIONS(2988), + [anon_sym_VAR] = ACTIONS(2988), + [anon_sym_While] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_WHILE] = ACTIONS(2988), + [anon_sym_With] = ACTIONS(2988), + [anon_sym_with] = ACTIONS(2988), + [anon_sym_WITH] = ACTIONS(2988), + [sym_cf_comment] = ACTIONS(2986), + [sym__java_block_open] = ACTIONS(2986), + [sym__static_type_prefix] = ACTIONS(2986), + }, + [STATE(855)] = { + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_Query] = ACTIONS(2768), + [anon_sym_query] = ACTIONS(2768), + [anon_sym_QUERY] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [aux_sym_unary_operator_token1] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2768), + [aux_sym_number_token2] = ACTIONS(2766), + [anon_sym_This] = ACTIONS(2768), + [anon_sym_this] = ACTIONS(2768), + [anon_sym_THIS] = ACTIONS(2768), + [anon_sym_Super] = ACTIONS(2768), + [anon_sym_super] = ACTIONS(2768), + [anon_sym_SUPER] = ACTIONS(2768), + [anon_sym_True] = ACTIONS(2768), + [anon_sym_true] = ACTIONS(2768), + [anon_sym_TRUE] = ACTIONS(2768), + [anon_sym_False] = ACTIONS(2768), + [anon_sym_false] = ACTIONS(2768), + [anon_sym_FALSE] = ACTIONS(2768), + [anon_sym_Null] = ACTIONS(2768), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_Undefined] = ACTIONS(2768), + [anon_sym_undefined] = ACTIONS(2768), + [anon_sym_UNDEFINED] = ACTIONS(2768), + [anon_sym_get] = ACTIONS(2768), + [anon_sym_set] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [sym_hash_empty] = ACTIONS(2766), + [anon_sym_export] = ACTIONS(2768), + [anon_sym_QueryExecute] = ACTIONS(2768), + [anon_sym_queryexecute] = ACTIONS(2768), + [anon_sym_QUERYEXECUTE] = ACTIONS(2768), + [anon_sym_queryExecute] = ACTIONS(2768), + [anon_sym_BQUOTE] = ACTIONS(2768), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2766), + [anon_sym_Abstract] = ACTIONS(2768), + [anon_sym_abstract] = ACTIONS(2768), + [anon_sym_ABSTRACT] = ACTIONS(2768), + [anon_sym_Break] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_BREAK] = ACTIONS(2768), + [anon_sym_Case] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_CASE] = ACTIONS(2768), + [anon_sym_Component] = ACTIONS(2768), + [anon_sym_component] = ACTIONS(2768), + [anon_sym_COMPONENT] = ACTIONS(2768), + [anon_sym_Continue] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_CONTINUE] = ACTIONS(2768), + [anon_sym_Debugger] = ACTIONS(2768), + [anon_sym_debugger] = ACTIONS(2768), + [anon_sym_DEBUGGER] = ACTIONS(2768), + [anon_sym_Default] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_DEFAULT] = ACTIONS(2768), + [anon_sym_Do] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_DO] = ACTIONS(2768), + [anon_sym_Final] = ACTIONS(2768), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_FINAL] = ACTIONS(2768), + [anon_sym_For] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_FOR] = ACTIONS(2768), + [anon_sym_Function] = ACTIONS(2768), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_FUNCTION] = ACTIONS(2768), + [anon_sym_If] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_IF] = ACTIONS(2768), + [anon_sym_Import] = ACTIONS(2768), + [anon_sym_import] = ACTIONS(2768), + [anon_sym_IMPORT] = ACTIONS(2768), + [anon_sym_Include] = ACTIONS(2768), + [anon_sym_include] = ACTIONS(2768), + [anon_sym_INCLUDE] = ACTIONS(2768), + [anon_sym_Interface] = ACTIONS(2768), + [anon_sym_interface] = ACTIONS(2768), + [anon_sym_INTERFACE] = ACTIONS(2768), + [anon_sym_New] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_NEW] = ACTIONS(2768), + [anon_sym_Package] = ACTIONS(2768), + [anon_sym_package] = ACTIONS(2768), + [anon_sym_PACKAGE] = ACTIONS(2768), + [anon_sym_Private] = ACTIONS(2768), + [anon_sym_private] = ACTIONS(2768), + [anon_sym_PRIVATE] = ACTIONS(2768), + [anon_sym_Property] = ACTIONS(2768), + [anon_sym_property] = ACTIONS(2768), + [anon_sym_PROPERTY] = ACTIONS(2768), + [anon_sym_Public] = ACTIONS(2768), + [anon_sym_public] = ACTIONS(2768), + [anon_sym_PUBLIC] = ACTIONS(2768), + [anon_sym_Remote] = ACTIONS(2768), + [anon_sym_remote] = ACTIONS(2768), + [anon_sym_REMOTE] = ACTIONS(2768), + [anon_sym_Return] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_RETURN] = ACTIONS(2768), + [anon_sym_Static] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_STATIC] = ACTIONS(2768), + [anon_sym_Switch] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_SWITCH] = ACTIONS(2768), + [anon_sym_Throw] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_THROW] = ACTIONS(2768), + [anon_sym_Try] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_TRY] = ACTIONS(2768), + [anon_sym_Var] = ACTIONS(2768), + [anon_sym_var] = ACTIONS(2768), + [anon_sym_VAR] = ACTIONS(2768), + [anon_sym_While] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_WHILE] = ACTIONS(2768), + [anon_sym_With] = ACTIONS(2768), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_WITH] = ACTIONS(2768), + [sym_cf_comment] = ACTIONS(2766), + [sym__java_block_open] = ACTIONS(2766), + [sym__static_type_prefix] = ACTIONS(2766), + }, + [STATE(856)] = { [ts_builtin_sym_end] = ACTIONS(2810), [sym_identifier] = ACTIONS(2812), [anon_sym_LBRACE] = ACTIONS(2810), @@ -168754,7 +174422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2810), [sym__static_type_prefix] = ACTIONS(2810), }, - [STATE(819)] = { + [STATE(857)] = { [ts_builtin_sym_end] = ACTIONS(2814), [sym_identifier] = ACTIONS(2816), [anon_sym_LBRACE] = ACTIONS(2814), @@ -168899,152 +174567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2814), [sym__static_type_prefix] = ACTIONS(2814), }, - [STATE(820)] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_Query] = ACTIONS(1672), - [anon_sym_query] = ACTIONS(1672), - [anon_sym_QUERY] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_TILDE] = ACTIONS(1670), - [aux_sym_unary_operator_token1] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1672), - [aux_sym_number_token2] = ACTIONS(1670), - [anon_sym_This] = ACTIONS(1672), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_THIS] = ACTIONS(1672), - [anon_sym_Super] = ACTIONS(1672), - [anon_sym_super] = ACTIONS(1672), - [anon_sym_SUPER] = ACTIONS(1672), - [anon_sym_True] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_TRUE] = ACTIONS(1672), - [anon_sym_False] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_FALSE] = ACTIONS(1672), - [anon_sym_Null] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_NULL] = ACTIONS(1672), - [anon_sym_Undefined] = ACTIONS(1672), - [anon_sym_undefined] = ACTIONS(1672), - [anon_sym_UNDEFINED] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1672), - [anon_sym_set] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1672), - [sym_hash_empty] = ACTIONS(1670), - [anon_sym_export] = ACTIONS(1672), - [anon_sym_QueryExecute] = ACTIONS(1672), - [anon_sym_queryexecute] = ACTIONS(1672), - [anon_sym_QUERYEXECUTE] = ACTIONS(1672), - [anon_sym_queryExecute] = ACTIONS(1672), - [anon_sym_BQUOTE] = ACTIONS(1672), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1670), - [anon_sym_Abstract] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_ABSTRACT] = ACTIONS(1672), - [anon_sym_Break] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_BREAK] = ACTIONS(1672), - [anon_sym_Case] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_CASE] = ACTIONS(1672), - [anon_sym_Component] = ACTIONS(1672), - [anon_sym_component] = ACTIONS(1672), - [anon_sym_COMPONENT] = ACTIONS(1672), - [anon_sym_Continue] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_CONTINUE] = ACTIONS(1672), - [anon_sym_Debugger] = ACTIONS(1672), - [anon_sym_debugger] = ACTIONS(1672), - [anon_sym_DEBUGGER] = ACTIONS(1672), - [anon_sym_Default] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_DEFAULT] = ACTIONS(1672), - [anon_sym_Do] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1672), - [anon_sym_DO] = ACTIONS(1672), - [anon_sym_Final] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_FINAL] = ACTIONS(1672), - [anon_sym_For] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_FOR] = ACTIONS(1672), - [anon_sym_Function] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_FUNCTION] = ACTIONS(1672), - [anon_sym_If] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_IF] = ACTIONS(1672), - [anon_sym_Import] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_IMPORT] = ACTIONS(1672), - [anon_sym_Include] = ACTIONS(1672), - [anon_sym_include] = ACTIONS(1672), - [anon_sym_INCLUDE] = ACTIONS(1672), - [anon_sym_Interface] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_INTERFACE] = ACTIONS(1672), - [anon_sym_New] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_NEW] = ACTIONS(1672), - [anon_sym_Package] = ACTIONS(1672), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_PACKAGE] = ACTIONS(1672), - [anon_sym_Private] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_PRIVATE] = ACTIONS(1672), - [anon_sym_Property] = ACTIONS(1672), - [anon_sym_property] = ACTIONS(1672), - [anon_sym_PROPERTY] = ACTIONS(1672), - [anon_sym_Public] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_PUBLIC] = ACTIONS(1672), - [anon_sym_Remote] = ACTIONS(1672), - [anon_sym_remote] = ACTIONS(1672), - [anon_sym_REMOTE] = ACTIONS(1672), - [anon_sym_Return] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_RETURN] = ACTIONS(1672), - [anon_sym_Static] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_STATIC] = ACTIONS(1672), - [anon_sym_Switch] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_SWITCH] = ACTIONS(1672), - [anon_sym_Throw] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_THROW] = ACTIONS(1672), - [anon_sym_Try] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1672), - [anon_sym_TRY] = ACTIONS(1672), - [anon_sym_Var] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [anon_sym_VAR] = ACTIONS(1672), - [anon_sym_While] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_WHILE] = ACTIONS(1672), - [anon_sym_With] = ACTIONS(1672), - [anon_sym_with] = ACTIONS(1672), - [anon_sym_WITH] = ACTIONS(1672), - [sym_cf_comment] = ACTIONS(1670), - [sym__java_block_open] = ACTIONS(1670), - [sym__static_type_prefix] = ACTIONS(1670), - }, - [STATE(821)] = { + [STATE(858)] = { [ts_builtin_sym_end] = ACTIONS(2818), [sym_identifier] = ACTIONS(2820), [anon_sym_LBRACE] = ACTIONS(2818), @@ -169189,7 +174712,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2818), [sym__static_type_prefix] = ACTIONS(2818), }, - [STATE(822)] = { + [STATE(859)] = { + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_let] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_Query] = ACTIONS(3028), + [anon_sym_query] = ACTIONS(3028), + [anon_sym_QUERY] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_SLASH] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [aux_sym_unary_operator_token1] = ACTIONS(3028), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3028), + [aux_sym_number_token2] = ACTIONS(3026), + [anon_sym_This] = ACTIONS(3028), + [anon_sym_this] = ACTIONS(3028), + [anon_sym_THIS] = ACTIONS(3028), + [anon_sym_Super] = ACTIONS(3028), + [anon_sym_super] = ACTIONS(3028), + [anon_sym_SUPER] = ACTIONS(3028), + [anon_sym_True] = ACTIONS(3028), + [anon_sym_true] = ACTIONS(3028), + [anon_sym_TRUE] = ACTIONS(3028), + [anon_sym_False] = ACTIONS(3028), + [anon_sym_false] = ACTIONS(3028), + [anon_sym_FALSE] = ACTIONS(3028), + [anon_sym_Null] = ACTIONS(3028), + [anon_sym_null] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_Undefined] = ACTIONS(3028), + [anon_sym_undefined] = ACTIONS(3028), + [anon_sym_UNDEFINED] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(3028), + [anon_sym_set] = ACTIONS(3028), + [anon_sym_POUND] = ACTIONS(3028), + [sym_hash_empty] = ACTIONS(3026), + [anon_sym_export] = ACTIONS(3028), + [anon_sym_QueryExecute] = ACTIONS(3028), + [anon_sym_queryexecute] = ACTIONS(3028), + [anon_sym_QUERYEXECUTE] = ACTIONS(3028), + [anon_sym_queryExecute] = ACTIONS(3028), + [anon_sym_BQUOTE] = ACTIONS(3028), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3026), + [anon_sym_Abstract] = ACTIONS(3028), + [anon_sym_abstract] = ACTIONS(3028), + [anon_sym_ABSTRACT] = ACTIONS(3028), + [anon_sym_Break] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_BREAK] = ACTIONS(3028), + [anon_sym_Case] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_CASE] = ACTIONS(3028), + [anon_sym_Component] = ACTIONS(3028), + [anon_sym_component] = ACTIONS(3028), + [anon_sym_COMPONENT] = ACTIONS(3028), + [anon_sym_Continue] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_CONTINUE] = ACTIONS(3028), + [anon_sym_Debugger] = ACTIONS(3028), + [anon_sym_debugger] = ACTIONS(3028), + [anon_sym_DEBUGGER] = ACTIONS(3028), + [anon_sym_Default] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_DEFAULT] = ACTIONS(3028), + [anon_sym_Do] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_DO] = ACTIONS(3028), + [anon_sym_Final] = ACTIONS(3028), + [anon_sym_final] = ACTIONS(3028), + [anon_sym_FINAL] = ACTIONS(3028), + [anon_sym_For] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_FOR] = ACTIONS(3028), + [anon_sym_Function] = ACTIONS(3028), + [anon_sym_function] = ACTIONS(3028), + [anon_sym_FUNCTION] = ACTIONS(3028), + [anon_sym_If] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_IF] = ACTIONS(3028), + [anon_sym_Import] = ACTIONS(3028), + [anon_sym_import] = ACTIONS(3028), + [anon_sym_IMPORT] = ACTIONS(3028), + [anon_sym_Include] = ACTIONS(3028), + [anon_sym_include] = ACTIONS(3028), + [anon_sym_INCLUDE] = ACTIONS(3028), + [anon_sym_Interface] = ACTIONS(3028), + [anon_sym_interface] = ACTIONS(3028), + [anon_sym_INTERFACE] = ACTIONS(3028), + [anon_sym_New] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_NEW] = ACTIONS(3028), + [anon_sym_Package] = ACTIONS(3028), + [anon_sym_package] = ACTIONS(3028), + [anon_sym_PACKAGE] = ACTIONS(3028), + [anon_sym_Private] = ACTIONS(3028), + [anon_sym_private] = ACTIONS(3028), + [anon_sym_PRIVATE] = ACTIONS(3028), + [anon_sym_Property] = ACTIONS(3028), + [anon_sym_property] = ACTIONS(3028), + [anon_sym_PROPERTY] = ACTIONS(3028), + [anon_sym_Public] = ACTIONS(3028), + [anon_sym_public] = ACTIONS(3028), + [anon_sym_PUBLIC] = ACTIONS(3028), + [anon_sym_Remote] = ACTIONS(3028), + [anon_sym_remote] = ACTIONS(3028), + [anon_sym_REMOTE] = ACTIONS(3028), + [anon_sym_Return] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_RETURN] = ACTIONS(3028), + [anon_sym_Static] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_STATIC] = ACTIONS(3028), + [anon_sym_Switch] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_SWITCH] = ACTIONS(3028), + [anon_sym_Throw] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_THROW] = ACTIONS(3028), + [anon_sym_Try] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_TRY] = ACTIONS(3028), + [anon_sym_Var] = ACTIONS(3028), + [anon_sym_var] = ACTIONS(3028), + [anon_sym_VAR] = ACTIONS(3028), + [anon_sym_While] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_WHILE] = ACTIONS(3028), + [anon_sym_With] = ACTIONS(3028), + [anon_sym_with] = ACTIONS(3028), + [anon_sym_WITH] = ACTIONS(3028), + [sym_cf_comment] = ACTIONS(3026), + [sym__java_block_open] = ACTIONS(3026), + [sym__static_type_prefix] = ACTIONS(3026), + }, + [STATE(860)] = { [ts_builtin_sym_end] = ACTIONS(2822), [sym_identifier] = ACTIONS(2824), [anon_sym_LBRACE] = ACTIONS(2822), @@ -169334,297 +175002,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2822), [sym__static_type_prefix] = ACTIONS(2822), }, - [STATE(823)] = { - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_Query] = ACTIONS(2336), - [anon_sym_query] = ACTIONS(2336), - [anon_sym_QUERY] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [aux_sym_unary_operator_token1] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2336), - [aux_sym_number_token2] = ACTIONS(2338), - [anon_sym_This] = ACTIONS(2336), - [anon_sym_this] = ACTIONS(2336), - [anon_sym_THIS] = ACTIONS(2336), - [anon_sym_Super] = ACTIONS(2336), - [anon_sym_super] = ACTIONS(2336), - [anon_sym_SUPER] = ACTIONS(2336), - [anon_sym_True] = ACTIONS(2336), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_TRUE] = ACTIONS(2336), - [anon_sym_False] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [anon_sym_FALSE] = ACTIONS(2336), - [anon_sym_Null] = ACTIONS(2336), - [anon_sym_null] = ACTIONS(2336), - [anon_sym_NULL] = ACTIONS(2336), - [anon_sym_Undefined] = ACTIONS(2336), - [anon_sym_undefined] = ACTIONS(2336), - [anon_sym_UNDEFINED] = ACTIONS(2336), - [anon_sym_get] = ACTIONS(2336), - [anon_sym_set] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2336), - [sym_hash_empty] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_QueryExecute] = ACTIONS(2336), - [anon_sym_queryexecute] = ACTIONS(2336), - [anon_sym_QUERYEXECUTE] = ACTIONS(2336), - [anon_sym_queryExecute] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2338), - [anon_sym_Abstract] = ACTIONS(2336), - [anon_sym_abstract] = ACTIONS(2336), - [anon_sym_ABSTRACT] = ACTIONS(2336), - [anon_sym_Break] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_BREAK] = ACTIONS(2336), - [anon_sym_Case] = ACTIONS(2336), - [anon_sym_case] = ACTIONS(2336), - [anon_sym_CASE] = ACTIONS(2336), - [anon_sym_Component] = ACTIONS(2336), - [anon_sym_component] = ACTIONS(2336), - [anon_sym_COMPONENT] = ACTIONS(2336), - [anon_sym_Continue] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_CONTINUE] = ACTIONS(2336), - [anon_sym_Debugger] = ACTIONS(2336), - [anon_sym_debugger] = ACTIONS(2336), - [anon_sym_DEBUGGER] = ACTIONS(2336), - [anon_sym_Default] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_DEFAULT] = ACTIONS(2336), - [anon_sym_Do] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_DO] = ACTIONS(2336), - [anon_sym_Final] = ACTIONS(2336), - [anon_sym_final] = ACTIONS(2336), - [anon_sym_FINAL] = ACTIONS(2336), - [anon_sym_For] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_FOR] = ACTIONS(2336), - [anon_sym_Function] = ACTIONS(2336), - [anon_sym_function] = ACTIONS(2336), - [anon_sym_FUNCTION] = ACTIONS(2336), - [anon_sym_If] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_IF] = ACTIONS(2336), - [anon_sym_Import] = ACTIONS(2336), - [anon_sym_import] = ACTIONS(2336), - [anon_sym_IMPORT] = ACTIONS(2336), - [anon_sym_Include] = ACTIONS(2336), - [anon_sym_include] = ACTIONS(2336), - [anon_sym_INCLUDE] = ACTIONS(2336), - [anon_sym_Interface] = ACTIONS(2336), - [anon_sym_interface] = ACTIONS(2336), - [anon_sym_INTERFACE] = ACTIONS(2336), - [anon_sym_New] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_NEW] = ACTIONS(2336), - [anon_sym_Package] = ACTIONS(2336), - [anon_sym_package] = ACTIONS(2336), - [anon_sym_PACKAGE] = ACTIONS(2336), - [anon_sym_Private] = ACTIONS(2336), - [anon_sym_private] = ACTIONS(2336), - [anon_sym_PRIVATE] = ACTIONS(2336), - [anon_sym_Property] = ACTIONS(2336), - [anon_sym_property] = ACTIONS(2336), - [anon_sym_PROPERTY] = ACTIONS(2336), - [anon_sym_Public] = ACTIONS(2336), - [anon_sym_public] = ACTIONS(2336), - [anon_sym_PUBLIC] = ACTIONS(2336), - [anon_sym_Remote] = ACTIONS(2336), - [anon_sym_remote] = ACTIONS(2336), - [anon_sym_REMOTE] = ACTIONS(2336), - [anon_sym_Return] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_RETURN] = ACTIONS(2336), - [anon_sym_Static] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_STATIC] = ACTIONS(2336), - [anon_sym_Switch] = ACTIONS(2336), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_SWITCH] = ACTIONS(2336), - [anon_sym_Throw] = ACTIONS(2336), - [anon_sym_throw] = ACTIONS(2336), - [anon_sym_THROW] = ACTIONS(2336), - [anon_sym_Try] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [anon_sym_TRY] = ACTIONS(2336), - [anon_sym_Var] = ACTIONS(2336), - [anon_sym_var] = ACTIONS(2336), - [anon_sym_VAR] = ACTIONS(2336), - [anon_sym_While] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_WHILE] = ACTIONS(2336), - [anon_sym_With] = ACTIONS(2336), - [anon_sym_with] = ACTIONS(2336), - [anon_sym_WITH] = ACTIONS(2336), - [sym_cf_comment] = ACTIONS(2338), - [sym__java_block_open] = ACTIONS(2338), - [sym__static_type_prefix] = ACTIONS(2338), - }, - [STATE(824)] = { - [ts_builtin_sym_end] = ACTIONS(3016), - [sym_identifier] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_RBRACE] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_Query] = ACTIONS(3018), - [anon_sym_query] = ACTIONS(3018), - [anon_sym_QUERY] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_unary_operator_token1] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3016), - [anon_sym_DASH_DASH] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3018), - [aux_sym_number_token2] = ACTIONS(3016), - [anon_sym_This] = ACTIONS(3018), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_THIS] = ACTIONS(3018), - [anon_sym_Super] = ACTIONS(3018), - [anon_sym_super] = ACTIONS(3018), - [anon_sym_SUPER] = ACTIONS(3018), - [anon_sym_True] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_TRUE] = ACTIONS(3018), - [anon_sym_False] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [anon_sym_FALSE] = ACTIONS(3018), - [anon_sym_Null] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_NULL] = ACTIONS(3018), - [anon_sym_Undefined] = ACTIONS(3018), - [anon_sym_undefined] = ACTIONS(3018), - [anon_sym_UNDEFINED] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3018), - [anon_sym_set] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3018), - [sym_hash_empty] = ACTIONS(3016), - [anon_sym_export] = ACTIONS(3018), - [anon_sym_QueryExecute] = ACTIONS(3018), - [anon_sym_queryexecute] = ACTIONS(3018), - [anon_sym_QUERYEXECUTE] = ACTIONS(3018), - [anon_sym_queryExecute] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3018), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3016), - [anon_sym_Abstract] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_ABSTRACT] = ACTIONS(3018), - [anon_sym_Break] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_BREAK] = ACTIONS(3018), - [anon_sym_Case] = ACTIONS(3018), - [anon_sym_case] = ACTIONS(3018), - [anon_sym_CASE] = ACTIONS(3018), - [anon_sym_Component] = ACTIONS(3018), - [anon_sym_component] = ACTIONS(3018), - [anon_sym_COMPONENT] = ACTIONS(3018), - [anon_sym_Continue] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_CONTINUE] = ACTIONS(3018), - [anon_sym_Debugger] = ACTIONS(3018), - [anon_sym_debugger] = ACTIONS(3018), - [anon_sym_DEBUGGER] = ACTIONS(3018), - [anon_sym_Default] = ACTIONS(3018), - [anon_sym_default] = ACTIONS(3018), - [anon_sym_DEFAULT] = ACTIONS(3018), - [anon_sym_Do] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_DO] = ACTIONS(3018), - [anon_sym_Final] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_FINAL] = ACTIONS(3018), - [anon_sym_For] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_FOR] = ACTIONS(3018), - [anon_sym_Function] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_FUNCTION] = ACTIONS(3018), - [anon_sym_If] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_IF] = ACTIONS(3018), - [anon_sym_Import] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(3018), - [anon_sym_IMPORT] = ACTIONS(3018), - [anon_sym_Include] = ACTIONS(3018), - [anon_sym_include] = ACTIONS(3018), - [anon_sym_INCLUDE] = ACTIONS(3018), - [anon_sym_Interface] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_INTERFACE] = ACTIONS(3018), - [anon_sym_New] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_NEW] = ACTIONS(3018), - [anon_sym_Package] = ACTIONS(3018), - [anon_sym_package] = ACTIONS(3018), - [anon_sym_PACKAGE] = ACTIONS(3018), - [anon_sym_Private] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_PRIVATE] = ACTIONS(3018), - [anon_sym_Property] = ACTIONS(3018), - [anon_sym_property] = ACTIONS(3018), - [anon_sym_PROPERTY] = ACTIONS(3018), - [anon_sym_Public] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_PUBLIC] = ACTIONS(3018), - [anon_sym_Remote] = ACTIONS(3018), - [anon_sym_remote] = ACTIONS(3018), - [anon_sym_REMOTE] = ACTIONS(3018), - [anon_sym_Return] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_RETURN] = ACTIONS(3018), - [anon_sym_Static] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_STATIC] = ACTIONS(3018), - [anon_sym_Switch] = ACTIONS(3018), - [anon_sym_switch] = ACTIONS(3018), - [anon_sym_SWITCH] = ACTIONS(3018), - [anon_sym_Throw] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_THROW] = ACTIONS(3018), - [anon_sym_Try] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_TRY] = ACTIONS(3018), - [anon_sym_Var] = ACTIONS(3018), - [anon_sym_var] = ACTIONS(3018), - [anon_sym_VAR] = ACTIONS(3018), - [anon_sym_While] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_WHILE] = ACTIONS(3018), - [anon_sym_With] = ACTIONS(3018), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_WITH] = ACTIONS(3018), - [sym_cf_comment] = ACTIONS(3016), - [sym__java_block_open] = ACTIONS(3016), - [sym__static_type_prefix] = ACTIONS(3016), + [STATE(861)] = { + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_Query] = ACTIONS(3060), + [anon_sym_query] = ACTIONS(3060), + [anon_sym_QUERY] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_unary_operator_token1] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3060), + [aux_sym_number_token2] = ACTIONS(3058), + [anon_sym_This] = ACTIONS(3060), + [anon_sym_this] = ACTIONS(3060), + [anon_sym_THIS] = ACTIONS(3060), + [anon_sym_Super] = ACTIONS(3060), + [anon_sym_super] = ACTIONS(3060), + [anon_sym_SUPER] = ACTIONS(3060), + [anon_sym_True] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_TRUE] = ACTIONS(3060), + [anon_sym_False] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_FALSE] = ACTIONS(3060), + [anon_sym_Null] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_Undefined] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [anon_sym_UNDEFINED] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_POUND] = ACTIONS(3060), + [sym_hash_empty] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_QueryExecute] = ACTIONS(3060), + [anon_sym_queryexecute] = ACTIONS(3060), + [anon_sym_QUERYEXECUTE] = ACTIONS(3060), + [anon_sym_queryExecute] = ACTIONS(3060), + [anon_sym_BQUOTE] = ACTIONS(3060), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3058), + [anon_sym_Abstract] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_ABSTRACT] = ACTIONS(3060), + [anon_sym_Break] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_BREAK] = ACTIONS(3060), + [anon_sym_Case] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_CASE] = ACTIONS(3060), + [anon_sym_Component] = ACTIONS(3060), + [anon_sym_component] = ACTIONS(3060), + [anon_sym_COMPONENT] = ACTIONS(3060), + [anon_sym_Continue] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_CONTINUE] = ACTIONS(3060), + [anon_sym_Debugger] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_DEBUGGER] = ACTIONS(3060), + [anon_sym_Default] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_DEFAULT] = ACTIONS(3060), + [anon_sym_Do] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_DO] = ACTIONS(3060), + [anon_sym_Final] = ACTIONS(3060), + [anon_sym_final] = ACTIONS(3060), + [anon_sym_FINAL] = ACTIONS(3060), + [anon_sym_For] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_FOR] = ACTIONS(3060), + [anon_sym_Function] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_FUNCTION] = ACTIONS(3060), + [anon_sym_If] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_IF] = ACTIONS(3060), + [anon_sym_Import] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_IMPORT] = ACTIONS(3060), + [anon_sym_Include] = ACTIONS(3060), + [anon_sym_include] = ACTIONS(3060), + [anon_sym_INCLUDE] = ACTIONS(3060), + [anon_sym_Interface] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_INTERFACE] = ACTIONS(3060), + [anon_sym_New] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_NEW] = ACTIONS(3060), + [anon_sym_Package] = ACTIONS(3060), + [anon_sym_package] = ACTIONS(3060), + [anon_sym_PACKAGE] = ACTIONS(3060), + [anon_sym_Private] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_PRIVATE] = ACTIONS(3060), + [anon_sym_Property] = ACTIONS(3060), + [anon_sym_property] = ACTIONS(3060), + [anon_sym_PROPERTY] = ACTIONS(3060), + [anon_sym_Public] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_PUBLIC] = ACTIONS(3060), + [anon_sym_Remote] = ACTIONS(3060), + [anon_sym_remote] = ACTIONS(3060), + [anon_sym_REMOTE] = ACTIONS(3060), + [anon_sym_Return] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_RETURN] = ACTIONS(3060), + [anon_sym_Static] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_STATIC] = ACTIONS(3060), + [anon_sym_Switch] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_SWITCH] = ACTIONS(3060), + [anon_sym_Throw] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_THROW] = ACTIONS(3060), + [anon_sym_Try] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_TRY] = ACTIONS(3060), + [anon_sym_Var] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_VAR] = ACTIONS(3060), + [anon_sym_While] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_WHILE] = ACTIONS(3060), + [anon_sym_With] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_WITH] = ACTIONS(3060), + [sym_cf_comment] = ACTIONS(3058), + [sym__java_block_open] = ACTIONS(3058), + [sym__static_type_prefix] = ACTIONS(3058), }, - [STATE(825)] = { + [STATE(862)] = { [ts_builtin_sym_end] = ACTIONS(2826), [sym_identifier] = ACTIONS(2828), [anon_sym_LBRACE] = ACTIONS(2826), @@ -169715,1076 +175238,641 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2828), [anon_sym_IF] = ACTIONS(2828), [anon_sym_Import] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_IMPORT] = ACTIONS(2828), - [anon_sym_Include] = ACTIONS(2828), - [anon_sym_include] = ACTIONS(2828), - [anon_sym_INCLUDE] = ACTIONS(2828), - [anon_sym_Interface] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_INTERFACE] = ACTIONS(2828), - [anon_sym_New] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_NEW] = ACTIONS(2828), - [anon_sym_Package] = ACTIONS(2828), - [anon_sym_package] = ACTIONS(2828), - [anon_sym_PACKAGE] = ACTIONS(2828), - [anon_sym_Private] = ACTIONS(2828), - [anon_sym_private] = ACTIONS(2828), - [anon_sym_PRIVATE] = ACTIONS(2828), - [anon_sym_Property] = ACTIONS(2828), - [anon_sym_property] = ACTIONS(2828), - [anon_sym_PROPERTY] = ACTIONS(2828), - [anon_sym_Public] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_PUBLIC] = ACTIONS(2828), - [anon_sym_Remote] = ACTIONS(2828), - [anon_sym_remote] = ACTIONS(2828), - [anon_sym_REMOTE] = ACTIONS(2828), - [anon_sym_Return] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_RETURN] = ACTIONS(2828), - [anon_sym_Static] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_STATIC] = ACTIONS(2828), - [anon_sym_Switch] = ACTIONS(2828), - [anon_sym_switch] = ACTIONS(2828), - [anon_sym_SWITCH] = ACTIONS(2828), - [anon_sym_Throw] = ACTIONS(2828), - [anon_sym_throw] = ACTIONS(2828), - [anon_sym_THROW] = ACTIONS(2828), - [anon_sym_Try] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_TRY] = ACTIONS(2828), - [anon_sym_Var] = ACTIONS(2828), - [anon_sym_var] = ACTIONS(2828), - [anon_sym_VAR] = ACTIONS(2828), - [anon_sym_While] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_WHILE] = ACTIONS(2828), - [anon_sym_With] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2828), - [anon_sym_WITH] = ACTIONS(2828), - [sym_cf_comment] = ACTIONS(2826), - [sym__java_block_open] = ACTIONS(2826), - [sym__static_type_prefix] = ACTIONS(2826), - }, - [STATE(826)] = { - [ts_builtin_sym_end] = ACTIONS(2700), - [sym_identifier] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_Query] = ACTIONS(2702), - [anon_sym_query] = ACTIONS(2702), - [anon_sym_QUERY] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [aux_sym_unary_operator_token1] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2702), - [aux_sym_number_token2] = ACTIONS(2700), - [anon_sym_This] = ACTIONS(2702), - [anon_sym_this] = ACTIONS(2702), - [anon_sym_THIS] = ACTIONS(2702), - [anon_sym_Super] = ACTIONS(2702), - [anon_sym_super] = ACTIONS(2702), - [anon_sym_SUPER] = ACTIONS(2702), - [anon_sym_True] = ACTIONS(2702), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_TRUE] = ACTIONS(2702), - [anon_sym_False] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [anon_sym_FALSE] = ACTIONS(2702), - [anon_sym_Null] = ACTIONS(2702), - [anon_sym_null] = ACTIONS(2702), - [anon_sym_NULL] = ACTIONS(2702), - [anon_sym_Undefined] = ACTIONS(2702), - [anon_sym_undefined] = ACTIONS(2702), - [anon_sym_UNDEFINED] = ACTIONS(2702), - [anon_sym_get] = ACTIONS(2702), - [anon_sym_set] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(2702), - [sym_hash_empty] = ACTIONS(2700), - [anon_sym_export] = ACTIONS(2702), - [anon_sym_QueryExecute] = ACTIONS(2702), - [anon_sym_queryexecute] = ACTIONS(2702), - [anon_sym_QUERYEXECUTE] = ACTIONS(2702), - [anon_sym_queryExecute] = ACTIONS(2702), - [anon_sym_BQUOTE] = ACTIONS(2702), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2700), - [anon_sym_Abstract] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2702), - [anon_sym_ABSTRACT] = ACTIONS(2702), - [anon_sym_Break] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_BREAK] = ACTIONS(2702), - [anon_sym_Case] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_CASE] = ACTIONS(2702), - [anon_sym_Component] = ACTIONS(2702), - [anon_sym_component] = ACTIONS(2702), - [anon_sym_COMPONENT] = ACTIONS(2702), - [anon_sym_Continue] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_CONTINUE] = ACTIONS(2702), - [anon_sym_Debugger] = ACTIONS(2702), - [anon_sym_debugger] = ACTIONS(2702), - [anon_sym_DEBUGGER] = ACTIONS(2702), - [anon_sym_Default] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_DEFAULT] = ACTIONS(2702), - [anon_sym_Do] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_DO] = ACTIONS(2702), - [anon_sym_Final] = ACTIONS(2702), - [anon_sym_final] = ACTIONS(2702), - [anon_sym_FINAL] = ACTIONS(2702), - [anon_sym_For] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_FOR] = ACTIONS(2702), - [anon_sym_Function] = ACTIONS(2702), - [anon_sym_function] = ACTIONS(2702), - [anon_sym_FUNCTION] = ACTIONS(2702), - [anon_sym_If] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_IF] = ACTIONS(2702), - [anon_sym_Import] = ACTIONS(2702), - [anon_sym_import] = ACTIONS(2702), - [anon_sym_IMPORT] = ACTIONS(2702), - [anon_sym_Include] = ACTIONS(2702), - [anon_sym_include] = ACTIONS(2702), - [anon_sym_INCLUDE] = ACTIONS(2702), - [anon_sym_Interface] = ACTIONS(2702), - [anon_sym_interface] = ACTIONS(2702), - [anon_sym_INTERFACE] = ACTIONS(2702), - [anon_sym_New] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_NEW] = ACTIONS(2702), - [anon_sym_Package] = ACTIONS(2702), - [anon_sym_package] = ACTIONS(2702), - [anon_sym_PACKAGE] = ACTIONS(2702), - [anon_sym_Private] = ACTIONS(2702), - [anon_sym_private] = ACTIONS(2702), - [anon_sym_PRIVATE] = ACTIONS(2702), - [anon_sym_Property] = ACTIONS(2702), - [anon_sym_property] = ACTIONS(2702), - [anon_sym_PROPERTY] = ACTIONS(2702), - [anon_sym_Public] = ACTIONS(2702), - [anon_sym_public] = ACTIONS(2702), - [anon_sym_PUBLIC] = ACTIONS(2702), - [anon_sym_Remote] = ACTIONS(2702), - [anon_sym_remote] = ACTIONS(2702), - [anon_sym_REMOTE] = ACTIONS(2702), - [anon_sym_Return] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_RETURN] = ACTIONS(2702), - [anon_sym_Static] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_STATIC] = ACTIONS(2702), - [anon_sym_Switch] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_SWITCH] = ACTIONS(2702), - [anon_sym_Throw] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_THROW] = ACTIONS(2702), - [anon_sym_Try] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_TRY] = ACTIONS(2702), - [anon_sym_Var] = ACTIONS(2702), - [anon_sym_var] = ACTIONS(2702), - [anon_sym_VAR] = ACTIONS(2702), - [anon_sym_While] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_WHILE] = ACTIONS(2702), - [anon_sym_With] = ACTIONS(2702), - [anon_sym_with] = ACTIONS(2702), - [anon_sym_WITH] = ACTIONS(2702), - [sym_cf_comment] = ACTIONS(2700), - [sym__java_block_open] = ACTIONS(2700), - [sym__static_type_prefix] = ACTIONS(2700), - }, - [STATE(827)] = { - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_Query] = ACTIONS(2706), - [anon_sym_query] = ACTIONS(2706), - [anon_sym_QUERY] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [aux_sym_unary_operator_token1] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2706), - [aux_sym_number_token2] = ACTIONS(2704), - [anon_sym_This] = ACTIONS(2706), - [anon_sym_this] = ACTIONS(2706), - [anon_sym_THIS] = ACTIONS(2706), - [anon_sym_Super] = ACTIONS(2706), - [anon_sym_super] = ACTIONS(2706), - [anon_sym_SUPER] = ACTIONS(2706), - [anon_sym_True] = ACTIONS(2706), - [anon_sym_true] = ACTIONS(2706), - [anon_sym_TRUE] = ACTIONS(2706), - [anon_sym_False] = ACTIONS(2706), - [anon_sym_false] = ACTIONS(2706), - [anon_sym_FALSE] = ACTIONS(2706), - [anon_sym_Null] = ACTIONS(2706), - [anon_sym_null] = ACTIONS(2706), - [anon_sym_NULL] = ACTIONS(2706), - [anon_sym_Undefined] = ACTIONS(2706), - [anon_sym_undefined] = ACTIONS(2706), - [anon_sym_UNDEFINED] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(2706), - [sym_hash_empty] = ACTIONS(2704), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_QueryExecute] = ACTIONS(2706), - [anon_sym_queryexecute] = ACTIONS(2706), - [anon_sym_QUERYEXECUTE] = ACTIONS(2706), - [anon_sym_queryExecute] = ACTIONS(2706), - [anon_sym_BQUOTE] = ACTIONS(2706), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2704), - [anon_sym_Abstract] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_ABSTRACT] = ACTIONS(2706), - [anon_sym_Break] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_BREAK] = ACTIONS(2706), - [anon_sym_Case] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_CASE] = ACTIONS(2706), - [anon_sym_Component] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_COMPONENT] = ACTIONS(2706), - [anon_sym_Continue] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_CONTINUE] = ACTIONS(2706), - [anon_sym_Debugger] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_DEBUGGER] = ACTIONS(2706), - [anon_sym_Default] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_DEFAULT] = ACTIONS(2706), - [anon_sym_Do] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_DO] = ACTIONS(2706), - [anon_sym_Final] = ACTIONS(2706), - [anon_sym_final] = ACTIONS(2706), - [anon_sym_FINAL] = ACTIONS(2706), - [anon_sym_For] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_FOR] = ACTIONS(2706), - [anon_sym_Function] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_FUNCTION] = ACTIONS(2706), - [anon_sym_If] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_IF] = ACTIONS(2706), - [anon_sym_Import] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_IMPORT] = ACTIONS(2706), - [anon_sym_Include] = ACTIONS(2706), - [anon_sym_include] = ACTIONS(2706), - [anon_sym_INCLUDE] = ACTIONS(2706), - [anon_sym_Interface] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_INTERFACE] = ACTIONS(2706), - [anon_sym_New] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_NEW] = ACTIONS(2706), - [anon_sym_Package] = ACTIONS(2706), - [anon_sym_package] = ACTIONS(2706), - [anon_sym_PACKAGE] = ACTIONS(2706), - [anon_sym_Private] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_PRIVATE] = ACTIONS(2706), - [anon_sym_Property] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_PROPERTY] = ACTIONS(2706), - [anon_sym_Public] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_PUBLIC] = ACTIONS(2706), - [anon_sym_Remote] = ACTIONS(2706), - [anon_sym_remote] = ACTIONS(2706), - [anon_sym_REMOTE] = ACTIONS(2706), - [anon_sym_Return] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_RETURN] = ACTIONS(2706), - [anon_sym_Static] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_STATIC] = ACTIONS(2706), - [anon_sym_Switch] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_SWITCH] = ACTIONS(2706), - [anon_sym_Throw] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_THROW] = ACTIONS(2706), - [anon_sym_Try] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_TRY] = ACTIONS(2706), - [anon_sym_Var] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_VAR] = ACTIONS(2706), - [anon_sym_While] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_WHILE] = ACTIONS(2706), - [anon_sym_With] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_WITH] = ACTIONS(2706), - [sym_cf_comment] = ACTIONS(2704), - [sym__java_block_open] = ACTIONS(2704), - [sym__static_type_prefix] = ACTIONS(2704), - }, - [STATE(828)] = { - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_Query] = ACTIONS(2832), - [anon_sym_query] = ACTIONS(2832), - [anon_sym_QUERY] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2830), - [aux_sym_unary_operator_token1] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(2830), - [anon_sym_SQUOTE] = ACTIONS(2830), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2832), - [aux_sym_number_token2] = ACTIONS(2830), - [anon_sym_This] = ACTIONS(2832), - [anon_sym_this] = ACTIONS(2832), - [anon_sym_THIS] = ACTIONS(2832), - [anon_sym_Super] = ACTIONS(2832), - [anon_sym_super] = ACTIONS(2832), - [anon_sym_SUPER] = ACTIONS(2832), - [anon_sym_True] = ACTIONS(2832), - [anon_sym_true] = ACTIONS(2832), - [anon_sym_TRUE] = ACTIONS(2832), - [anon_sym_False] = ACTIONS(2832), - [anon_sym_false] = ACTIONS(2832), - [anon_sym_FALSE] = ACTIONS(2832), - [anon_sym_Null] = ACTIONS(2832), - [anon_sym_null] = ACTIONS(2832), - [anon_sym_NULL] = ACTIONS(2832), - [anon_sym_Undefined] = ACTIONS(2832), - [anon_sym_undefined] = ACTIONS(2832), - [anon_sym_UNDEFINED] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2832), - [anon_sym_set] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [sym_hash_empty] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_QueryExecute] = ACTIONS(2832), - [anon_sym_queryexecute] = ACTIONS(2832), - [anon_sym_QUERYEXECUTE] = ACTIONS(2832), - [anon_sym_queryExecute] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2830), - [anon_sym_Abstract] = ACTIONS(2832), - [anon_sym_abstract] = ACTIONS(2832), - [anon_sym_ABSTRACT] = ACTIONS(2832), - [anon_sym_Break] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_BREAK] = ACTIONS(2832), - [anon_sym_Case] = ACTIONS(2832), - [anon_sym_case] = ACTIONS(2832), - [anon_sym_CASE] = ACTIONS(2832), - [anon_sym_Component] = ACTIONS(2832), - [anon_sym_component] = ACTIONS(2832), - [anon_sym_COMPONENT] = ACTIONS(2832), - [anon_sym_Continue] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_CONTINUE] = ACTIONS(2832), - [anon_sym_Debugger] = ACTIONS(2832), - [anon_sym_debugger] = ACTIONS(2832), - [anon_sym_DEBUGGER] = ACTIONS(2832), - [anon_sym_Default] = ACTIONS(2832), - [anon_sym_default] = ACTIONS(2832), - [anon_sym_DEFAULT] = ACTIONS(2832), - [anon_sym_Do] = ACTIONS(2832), - [anon_sym_do] = ACTIONS(2832), - [anon_sym_DO] = ACTIONS(2832), - [anon_sym_Final] = ACTIONS(2832), - [anon_sym_final] = ACTIONS(2832), - [anon_sym_FINAL] = ACTIONS(2832), - [anon_sym_For] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_FOR] = ACTIONS(2832), - [anon_sym_Function] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2832), - [anon_sym_FUNCTION] = ACTIONS(2832), - [anon_sym_If] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_IF] = ACTIONS(2832), - [anon_sym_Import] = ACTIONS(2832), - [anon_sym_import] = ACTIONS(2832), - [anon_sym_IMPORT] = ACTIONS(2832), - [anon_sym_Include] = ACTIONS(2832), - [anon_sym_include] = ACTIONS(2832), - [anon_sym_INCLUDE] = ACTIONS(2832), - [anon_sym_Interface] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_INTERFACE] = ACTIONS(2832), - [anon_sym_New] = ACTIONS(2832), - [anon_sym_new] = ACTIONS(2832), - [anon_sym_NEW] = ACTIONS(2832), - [anon_sym_Package] = ACTIONS(2832), - [anon_sym_package] = ACTIONS(2832), - [anon_sym_PACKAGE] = ACTIONS(2832), - [anon_sym_Private] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_PRIVATE] = ACTIONS(2832), - [anon_sym_Property] = ACTIONS(2832), - [anon_sym_property] = ACTIONS(2832), - [anon_sym_PROPERTY] = ACTIONS(2832), - [anon_sym_Public] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_PUBLIC] = ACTIONS(2832), - [anon_sym_Remote] = ACTIONS(2832), - [anon_sym_remote] = ACTIONS(2832), - [anon_sym_REMOTE] = ACTIONS(2832), - [anon_sym_Return] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_RETURN] = ACTIONS(2832), - [anon_sym_Static] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_STATIC] = ACTIONS(2832), - [anon_sym_Switch] = ACTIONS(2832), - [anon_sym_switch] = ACTIONS(2832), - [anon_sym_SWITCH] = ACTIONS(2832), - [anon_sym_Throw] = ACTIONS(2832), - [anon_sym_throw] = ACTIONS(2832), - [anon_sym_THROW] = ACTIONS(2832), - [anon_sym_Try] = ACTIONS(2832), - [anon_sym_try] = ACTIONS(2832), - [anon_sym_TRY] = ACTIONS(2832), - [anon_sym_Var] = ACTIONS(2832), - [anon_sym_var] = ACTIONS(2832), - [anon_sym_VAR] = ACTIONS(2832), - [anon_sym_While] = ACTIONS(2832), - [anon_sym_while] = ACTIONS(2832), - [anon_sym_WHILE] = ACTIONS(2832), - [anon_sym_With] = ACTIONS(2832), - [anon_sym_with] = ACTIONS(2832), - [anon_sym_WITH] = ACTIONS(2832), - [sym_cf_comment] = ACTIONS(2830), - [sym__java_block_open] = ACTIONS(2830), - [sym__static_type_prefix] = ACTIONS(2830), - }, - [STATE(829)] = { - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_Query] = ACTIONS(2732), - [anon_sym_query] = ACTIONS(2732), - [anon_sym_QUERY] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [aux_sym_unary_operator_token1] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2730), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2732), - [aux_sym_number_token2] = ACTIONS(2730), - [anon_sym_This] = ACTIONS(2732), - [anon_sym_this] = ACTIONS(2732), - [anon_sym_THIS] = ACTIONS(2732), - [anon_sym_Super] = ACTIONS(2732), - [anon_sym_super] = ACTIONS(2732), - [anon_sym_SUPER] = ACTIONS(2732), - [anon_sym_True] = ACTIONS(2732), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_TRUE] = ACTIONS(2732), - [anon_sym_False] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_FALSE] = ACTIONS(2732), - [anon_sym_Null] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_NULL] = ACTIONS(2732), - [anon_sym_Undefined] = ACTIONS(2732), - [anon_sym_undefined] = ACTIONS(2732), - [anon_sym_UNDEFINED] = ACTIONS(2732), - [anon_sym_get] = ACTIONS(2732), - [anon_sym_set] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2732), - [sym_hash_empty] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_QueryExecute] = ACTIONS(2732), - [anon_sym_queryexecute] = ACTIONS(2732), - [anon_sym_QUERYEXECUTE] = ACTIONS(2732), - [anon_sym_queryExecute] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2732), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2730), - [anon_sym_Abstract] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_ABSTRACT] = ACTIONS(2732), - [anon_sym_Break] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_BREAK] = ACTIONS(2732), - [anon_sym_Case] = ACTIONS(2732), - [anon_sym_case] = ACTIONS(2732), - [anon_sym_CASE] = ACTIONS(2732), - [anon_sym_Component] = ACTIONS(2732), - [anon_sym_component] = ACTIONS(2732), - [anon_sym_COMPONENT] = ACTIONS(2732), - [anon_sym_Continue] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_CONTINUE] = ACTIONS(2732), - [anon_sym_Debugger] = ACTIONS(2732), - [anon_sym_debugger] = ACTIONS(2732), - [anon_sym_DEBUGGER] = ACTIONS(2732), - [anon_sym_Default] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_DEFAULT] = ACTIONS(2732), - [anon_sym_Do] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [anon_sym_DO] = ACTIONS(2732), - [anon_sym_Final] = ACTIONS(2732), - [anon_sym_final] = ACTIONS(2732), - [anon_sym_FINAL] = ACTIONS(2732), - [anon_sym_For] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_FOR] = ACTIONS(2732), - [anon_sym_Function] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_FUNCTION] = ACTIONS(2732), - [anon_sym_If] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_IF] = ACTIONS(2732), - [anon_sym_Import] = ACTIONS(2732), - [anon_sym_import] = ACTIONS(2732), - [anon_sym_IMPORT] = ACTIONS(2732), - [anon_sym_Include] = ACTIONS(2732), - [anon_sym_include] = ACTIONS(2732), - [anon_sym_INCLUDE] = ACTIONS(2732), - [anon_sym_Interface] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_INTERFACE] = ACTIONS(2732), - [anon_sym_New] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_NEW] = ACTIONS(2732), - [anon_sym_Package] = ACTIONS(2732), - [anon_sym_package] = ACTIONS(2732), - [anon_sym_PACKAGE] = ACTIONS(2732), - [anon_sym_Private] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_PRIVATE] = ACTIONS(2732), - [anon_sym_Property] = ACTIONS(2732), - [anon_sym_property] = ACTIONS(2732), - [anon_sym_PROPERTY] = ACTIONS(2732), - [anon_sym_Public] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_PUBLIC] = ACTIONS(2732), - [anon_sym_Remote] = ACTIONS(2732), - [anon_sym_remote] = ACTIONS(2732), - [anon_sym_REMOTE] = ACTIONS(2732), - [anon_sym_Return] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_RETURN] = ACTIONS(2732), - [anon_sym_Static] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_STATIC] = ACTIONS(2732), - [anon_sym_Switch] = ACTIONS(2732), - [anon_sym_switch] = ACTIONS(2732), - [anon_sym_SWITCH] = ACTIONS(2732), - [anon_sym_Throw] = ACTIONS(2732), - [anon_sym_throw] = ACTIONS(2732), - [anon_sym_THROW] = ACTIONS(2732), - [anon_sym_Try] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2732), - [anon_sym_TRY] = ACTIONS(2732), - [anon_sym_Var] = ACTIONS(2732), - [anon_sym_var] = ACTIONS(2732), - [anon_sym_VAR] = ACTIONS(2732), - [anon_sym_While] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_WHILE] = ACTIONS(2732), - [anon_sym_With] = ACTIONS(2732), - [anon_sym_with] = ACTIONS(2732), - [anon_sym_WITH] = ACTIONS(2732), - [sym_cf_comment] = ACTIONS(2730), - [sym__java_block_open] = ACTIONS(2730), - [sym__static_type_prefix] = ACTIONS(2730), - }, - [STATE(830)] = { - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_Query] = ACTIONS(2732), - [anon_sym_query] = ACTIONS(2732), - [anon_sym_QUERY] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [aux_sym_unary_operator_token1] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2730), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2732), - [aux_sym_number_token2] = ACTIONS(2730), - [anon_sym_This] = ACTIONS(2732), - [anon_sym_this] = ACTIONS(2732), - [anon_sym_THIS] = ACTIONS(2732), - [anon_sym_Super] = ACTIONS(2732), - [anon_sym_super] = ACTIONS(2732), - [anon_sym_SUPER] = ACTIONS(2732), - [anon_sym_True] = ACTIONS(2732), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_TRUE] = ACTIONS(2732), - [anon_sym_False] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_FALSE] = ACTIONS(2732), - [anon_sym_Null] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_NULL] = ACTIONS(2732), - [anon_sym_Undefined] = ACTIONS(2732), - [anon_sym_undefined] = ACTIONS(2732), - [anon_sym_UNDEFINED] = ACTIONS(2732), - [anon_sym_get] = ACTIONS(2732), - [anon_sym_set] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2732), - [sym_hash_empty] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_QueryExecute] = ACTIONS(2732), - [anon_sym_queryexecute] = ACTIONS(2732), - [anon_sym_QUERYEXECUTE] = ACTIONS(2732), - [anon_sym_queryExecute] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2732), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2730), - [anon_sym_Abstract] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_ABSTRACT] = ACTIONS(2732), - [anon_sym_Break] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_BREAK] = ACTIONS(2732), - [anon_sym_Case] = ACTIONS(2732), - [anon_sym_case] = ACTIONS(2732), - [anon_sym_CASE] = ACTIONS(2732), - [anon_sym_Component] = ACTIONS(2732), - [anon_sym_component] = ACTIONS(2732), - [anon_sym_COMPONENT] = ACTIONS(2732), - [anon_sym_Continue] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_CONTINUE] = ACTIONS(2732), - [anon_sym_Debugger] = ACTIONS(2732), - [anon_sym_debugger] = ACTIONS(2732), - [anon_sym_DEBUGGER] = ACTIONS(2732), - [anon_sym_Default] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_DEFAULT] = ACTIONS(2732), - [anon_sym_Do] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [anon_sym_DO] = ACTIONS(2732), - [anon_sym_Final] = ACTIONS(2732), - [anon_sym_final] = ACTIONS(2732), - [anon_sym_FINAL] = ACTIONS(2732), - [anon_sym_For] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_FOR] = ACTIONS(2732), - [anon_sym_Function] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_FUNCTION] = ACTIONS(2732), - [anon_sym_If] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_IF] = ACTIONS(2732), - [anon_sym_Import] = ACTIONS(2732), - [anon_sym_import] = ACTIONS(2732), - [anon_sym_IMPORT] = ACTIONS(2732), - [anon_sym_Include] = ACTIONS(2732), - [anon_sym_include] = ACTIONS(2732), - [anon_sym_INCLUDE] = ACTIONS(2732), - [anon_sym_Interface] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_INTERFACE] = ACTIONS(2732), - [anon_sym_New] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_NEW] = ACTIONS(2732), - [anon_sym_Package] = ACTIONS(2732), - [anon_sym_package] = ACTIONS(2732), - [anon_sym_PACKAGE] = ACTIONS(2732), - [anon_sym_Private] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_PRIVATE] = ACTIONS(2732), - [anon_sym_Property] = ACTIONS(2732), - [anon_sym_property] = ACTIONS(2732), - [anon_sym_PROPERTY] = ACTIONS(2732), - [anon_sym_Public] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_PUBLIC] = ACTIONS(2732), - [anon_sym_Remote] = ACTIONS(2732), - [anon_sym_remote] = ACTIONS(2732), - [anon_sym_REMOTE] = ACTIONS(2732), - [anon_sym_Return] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_RETURN] = ACTIONS(2732), - [anon_sym_Static] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_STATIC] = ACTIONS(2732), - [anon_sym_Switch] = ACTIONS(2732), - [anon_sym_switch] = ACTIONS(2732), - [anon_sym_SWITCH] = ACTIONS(2732), - [anon_sym_Throw] = ACTIONS(2732), - [anon_sym_throw] = ACTIONS(2732), - [anon_sym_THROW] = ACTIONS(2732), - [anon_sym_Try] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2732), - [anon_sym_TRY] = ACTIONS(2732), - [anon_sym_Var] = ACTIONS(2732), - [anon_sym_var] = ACTIONS(2732), - [anon_sym_VAR] = ACTIONS(2732), - [anon_sym_While] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_WHILE] = ACTIONS(2732), - [anon_sym_With] = ACTIONS(2732), - [anon_sym_with] = ACTIONS(2732), - [anon_sym_WITH] = ACTIONS(2732), - [sym_cf_comment] = ACTIONS(2730), - [sym__java_block_open] = ACTIONS(2730), - [sym__static_type_prefix] = ACTIONS(2730), - }, - [STATE(831)] = { - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_Query] = ACTIONS(2804), - [anon_sym_query] = ACTIONS(2804), - [anon_sym_QUERY] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [aux_sym_unary_operator_token1] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2802), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2804), - [aux_sym_number_token2] = ACTIONS(2802), - [anon_sym_This] = ACTIONS(2804), - [anon_sym_this] = ACTIONS(2804), - [anon_sym_THIS] = ACTIONS(2804), - [anon_sym_Super] = ACTIONS(2804), - [anon_sym_super] = ACTIONS(2804), - [anon_sym_SUPER] = ACTIONS(2804), - [anon_sym_True] = ACTIONS(2804), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_TRUE] = ACTIONS(2804), - [anon_sym_False] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_FALSE] = ACTIONS(2804), - [anon_sym_Null] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2804), - [anon_sym_NULL] = ACTIONS(2804), - [anon_sym_Undefined] = ACTIONS(2804), - [anon_sym_undefined] = ACTIONS(2804), - [anon_sym_UNDEFINED] = ACTIONS(2804), - [anon_sym_get] = ACTIONS(2804), - [anon_sym_set] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [sym_hash_empty] = ACTIONS(2802), - [anon_sym_export] = ACTIONS(2804), - [anon_sym_QueryExecute] = ACTIONS(2804), - [anon_sym_queryexecute] = ACTIONS(2804), - [anon_sym_QUERYEXECUTE] = ACTIONS(2804), - [anon_sym_queryExecute] = ACTIONS(2804), - [anon_sym_BQUOTE] = ACTIONS(2804), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2802), - [anon_sym_Abstract] = ACTIONS(2804), - [anon_sym_abstract] = ACTIONS(2804), - [anon_sym_ABSTRACT] = ACTIONS(2804), - [anon_sym_Break] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_BREAK] = ACTIONS(2804), - [anon_sym_Case] = ACTIONS(2804), - [anon_sym_case] = ACTIONS(2804), - [anon_sym_CASE] = ACTIONS(2804), - [anon_sym_Component] = ACTIONS(2804), - [anon_sym_component] = ACTIONS(2804), - [anon_sym_COMPONENT] = ACTIONS(2804), - [anon_sym_Continue] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_CONTINUE] = ACTIONS(2804), - [anon_sym_Debugger] = ACTIONS(2804), - [anon_sym_debugger] = ACTIONS(2804), - [anon_sym_DEBUGGER] = ACTIONS(2804), - [anon_sym_Default] = ACTIONS(2804), - [anon_sym_default] = ACTIONS(2804), - [anon_sym_DEFAULT] = ACTIONS(2804), - [anon_sym_Do] = ACTIONS(2804), - [anon_sym_do] = ACTIONS(2804), - [anon_sym_DO] = ACTIONS(2804), - [anon_sym_Final] = ACTIONS(2804), - [anon_sym_final] = ACTIONS(2804), - [anon_sym_FINAL] = ACTIONS(2804), - [anon_sym_For] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_FOR] = ACTIONS(2804), - [anon_sym_Function] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2804), - [anon_sym_FUNCTION] = ACTIONS(2804), - [anon_sym_If] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_IF] = ACTIONS(2804), - [anon_sym_Import] = ACTIONS(2804), - [anon_sym_import] = ACTIONS(2804), - [anon_sym_IMPORT] = ACTIONS(2804), - [anon_sym_Include] = ACTIONS(2804), - [anon_sym_include] = ACTIONS(2804), - [anon_sym_INCLUDE] = ACTIONS(2804), - [anon_sym_Interface] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_INTERFACE] = ACTIONS(2804), - [anon_sym_New] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_NEW] = ACTIONS(2804), - [anon_sym_Package] = ACTIONS(2804), - [anon_sym_package] = ACTIONS(2804), - [anon_sym_PACKAGE] = ACTIONS(2804), - [anon_sym_Private] = ACTIONS(2804), - [anon_sym_private] = ACTIONS(2804), - [anon_sym_PRIVATE] = ACTIONS(2804), - [anon_sym_Property] = ACTIONS(2804), - [anon_sym_property] = ACTIONS(2804), - [anon_sym_PROPERTY] = ACTIONS(2804), - [anon_sym_Public] = ACTIONS(2804), - [anon_sym_public] = ACTIONS(2804), - [anon_sym_PUBLIC] = ACTIONS(2804), - [anon_sym_Remote] = ACTIONS(2804), - [anon_sym_remote] = ACTIONS(2804), - [anon_sym_REMOTE] = ACTIONS(2804), - [anon_sym_Return] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_RETURN] = ACTIONS(2804), - [anon_sym_Static] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_STATIC] = ACTIONS(2804), - [anon_sym_Switch] = ACTIONS(2804), - [anon_sym_switch] = ACTIONS(2804), - [anon_sym_SWITCH] = ACTIONS(2804), - [anon_sym_Throw] = ACTIONS(2804), - [anon_sym_throw] = ACTIONS(2804), - [anon_sym_THROW] = ACTIONS(2804), - [anon_sym_Try] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(2804), - [anon_sym_TRY] = ACTIONS(2804), - [anon_sym_Var] = ACTIONS(2804), - [anon_sym_var] = ACTIONS(2804), - [anon_sym_VAR] = ACTIONS(2804), - [anon_sym_While] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_WHILE] = ACTIONS(2804), - [anon_sym_With] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2804), - [anon_sym_WITH] = ACTIONS(2804), - [sym_cf_comment] = ACTIONS(2802), - [sym__java_block_open] = ACTIONS(2802), - [sym__static_type_prefix] = ACTIONS(2802), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_IMPORT] = ACTIONS(2828), + [anon_sym_Include] = ACTIONS(2828), + [anon_sym_include] = ACTIONS(2828), + [anon_sym_INCLUDE] = ACTIONS(2828), + [anon_sym_Interface] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_INTERFACE] = ACTIONS(2828), + [anon_sym_New] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_NEW] = ACTIONS(2828), + [anon_sym_Package] = ACTIONS(2828), + [anon_sym_package] = ACTIONS(2828), + [anon_sym_PACKAGE] = ACTIONS(2828), + [anon_sym_Private] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_PRIVATE] = ACTIONS(2828), + [anon_sym_Property] = ACTIONS(2828), + [anon_sym_property] = ACTIONS(2828), + [anon_sym_PROPERTY] = ACTIONS(2828), + [anon_sym_Public] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_PUBLIC] = ACTIONS(2828), + [anon_sym_Remote] = ACTIONS(2828), + [anon_sym_remote] = ACTIONS(2828), + [anon_sym_REMOTE] = ACTIONS(2828), + [anon_sym_Return] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_RETURN] = ACTIONS(2828), + [anon_sym_Static] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_STATIC] = ACTIONS(2828), + [anon_sym_Switch] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_SWITCH] = ACTIONS(2828), + [anon_sym_Throw] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_THROW] = ACTIONS(2828), + [anon_sym_Try] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_TRY] = ACTIONS(2828), + [anon_sym_Var] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_VAR] = ACTIONS(2828), + [anon_sym_While] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_WHILE] = ACTIONS(2828), + [anon_sym_With] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_WITH] = ACTIONS(2828), + [sym_cf_comment] = ACTIONS(2826), + [sym__java_block_open] = ACTIONS(2826), + [sym__static_type_prefix] = ACTIONS(2826), }, - [STATE(832)] = { - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_Query] = ACTIONS(2804), - [anon_sym_query] = ACTIONS(2804), - [anon_sym_QUERY] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [aux_sym_unary_operator_token1] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2802), + [STATE(863)] = { + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_Query] = ACTIONS(3060), + [anon_sym_query] = ACTIONS(3060), + [anon_sym_QUERY] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_TILDE] = ACTIONS(3058), + [aux_sym_unary_operator_token1] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3058), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3060), + [aux_sym_number_token2] = ACTIONS(3058), + [anon_sym_This] = ACTIONS(3060), + [anon_sym_this] = ACTIONS(3060), + [anon_sym_THIS] = ACTIONS(3060), + [anon_sym_Super] = ACTIONS(3060), + [anon_sym_super] = ACTIONS(3060), + [anon_sym_SUPER] = ACTIONS(3060), + [anon_sym_True] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_TRUE] = ACTIONS(3060), + [anon_sym_False] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_FALSE] = ACTIONS(3060), + [anon_sym_Null] = ACTIONS(3060), + [anon_sym_null] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3060), + [anon_sym_Undefined] = ACTIONS(3060), + [anon_sym_undefined] = ACTIONS(3060), + [anon_sym_UNDEFINED] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_POUND] = ACTIONS(3060), + [sym_hash_empty] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_QueryExecute] = ACTIONS(3060), + [anon_sym_queryexecute] = ACTIONS(3060), + [anon_sym_QUERYEXECUTE] = ACTIONS(3060), + [anon_sym_queryExecute] = ACTIONS(3060), + [anon_sym_BQUOTE] = ACTIONS(3060), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3058), + [anon_sym_Abstract] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_ABSTRACT] = ACTIONS(3060), + [anon_sym_Break] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_BREAK] = ACTIONS(3060), + [anon_sym_Case] = ACTIONS(3060), + [anon_sym_case] = ACTIONS(3060), + [anon_sym_CASE] = ACTIONS(3060), + [anon_sym_Component] = ACTIONS(3060), + [anon_sym_component] = ACTIONS(3060), + [anon_sym_COMPONENT] = ACTIONS(3060), + [anon_sym_Continue] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_CONTINUE] = ACTIONS(3060), + [anon_sym_Debugger] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_DEBUGGER] = ACTIONS(3060), + [anon_sym_Default] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_DEFAULT] = ACTIONS(3060), + [anon_sym_Do] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_DO] = ACTIONS(3060), + [anon_sym_Final] = ACTIONS(3060), + [anon_sym_final] = ACTIONS(3060), + [anon_sym_FINAL] = ACTIONS(3060), + [anon_sym_For] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_FOR] = ACTIONS(3060), + [anon_sym_Function] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_FUNCTION] = ACTIONS(3060), + [anon_sym_If] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_IF] = ACTIONS(3060), + [anon_sym_Import] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_IMPORT] = ACTIONS(3060), + [anon_sym_Include] = ACTIONS(3060), + [anon_sym_include] = ACTIONS(3060), + [anon_sym_INCLUDE] = ACTIONS(3060), + [anon_sym_Interface] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_INTERFACE] = ACTIONS(3060), + [anon_sym_New] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_NEW] = ACTIONS(3060), + [anon_sym_Package] = ACTIONS(3060), + [anon_sym_package] = ACTIONS(3060), + [anon_sym_PACKAGE] = ACTIONS(3060), + [anon_sym_Private] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_PRIVATE] = ACTIONS(3060), + [anon_sym_Property] = ACTIONS(3060), + [anon_sym_property] = ACTIONS(3060), + [anon_sym_PROPERTY] = ACTIONS(3060), + [anon_sym_Public] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_PUBLIC] = ACTIONS(3060), + [anon_sym_Remote] = ACTIONS(3060), + [anon_sym_remote] = ACTIONS(3060), + [anon_sym_REMOTE] = ACTIONS(3060), + [anon_sym_Return] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_RETURN] = ACTIONS(3060), + [anon_sym_Static] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_STATIC] = ACTIONS(3060), + [anon_sym_Switch] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_SWITCH] = ACTIONS(3060), + [anon_sym_Throw] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_THROW] = ACTIONS(3060), + [anon_sym_Try] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_TRY] = ACTIONS(3060), + [anon_sym_Var] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_VAR] = ACTIONS(3060), + [anon_sym_While] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_WHILE] = ACTIONS(3060), + [anon_sym_With] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_WITH] = ACTIONS(3060), + [sym_cf_comment] = ACTIONS(3058), + [sym__java_block_open] = ACTIONS(3058), + [sym__static_type_prefix] = ACTIONS(3058), + }, + [STATE(864)] = { + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_Query] = ACTIONS(3064), + [anon_sym_query] = ACTIONS(3064), + [anon_sym_QUERY] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [aux_sym_unary_operator_token1] = ACTIONS(3064), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3064), + [aux_sym_number_token2] = ACTIONS(3062), + [anon_sym_This] = ACTIONS(3064), + [anon_sym_this] = ACTIONS(3064), + [anon_sym_THIS] = ACTIONS(3064), + [anon_sym_Super] = ACTIONS(3064), + [anon_sym_super] = ACTIONS(3064), + [anon_sym_SUPER] = ACTIONS(3064), + [anon_sym_True] = ACTIONS(3064), + [anon_sym_true] = ACTIONS(3064), + [anon_sym_TRUE] = ACTIONS(3064), + [anon_sym_False] = ACTIONS(3064), + [anon_sym_false] = ACTIONS(3064), + [anon_sym_FALSE] = ACTIONS(3064), + [anon_sym_Null] = ACTIONS(3064), + [anon_sym_null] = ACTIONS(3064), + [anon_sym_NULL] = ACTIONS(3064), + [anon_sym_Undefined] = ACTIONS(3064), + [anon_sym_undefined] = ACTIONS(3064), + [anon_sym_UNDEFINED] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_POUND] = ACTIONS(3064), + [sym_hash_empty] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_QueryExecute] = ACTIONS(3064), + [anon_sym_queryexecute] = ACTIONS(3064), + [anon_sym_QUERYEXECUTE] = ACTIONS(3064), + [anon_sym_queryExecute] = ACTIONS(3064), + [anon_sym_BQUOTE] = ACTIONS(3064), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3062), + [anon_sym_Abstract] = ACTIONS(3064), + [anon_sym_abstract] = ACTIONS(3064), + [anon_sym_ABSTRACT] = ACTIONS(3064), + [anon_sym_Break] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_BREAK] = ACTIONS(3064), + [anon_sym_Case] = ACTIONS(3064), + [anon_sym_case] = ACTIONS(3064), + [anon_sym_CASE] = ACTIONS(3064), + [anon_sym_Component] = ACTIONS(3064), + [anon_sym_component] = ACTIONS(3064), + [anon_sym_COMPONENT] = ACTIONS(3064), + [anon_sym_Continue] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_CONTINUE] = ACTIONS(3064), + [anon_sym_Debugger] = ACTIONS(3064), + [anon_sym_debugger] = ACTIONS(3064), + [anon_sym_DEBUGGER] = ACTIONS(3064), + [anon_sym_Default] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_DEFAULT] = ACTIONS(3064), + [anon_sym_Do] = ACTIONS(3064), + [anon_sym_do] = ACTIONS(3064), + [anon_sym_DO] = ACTIONS(3064), + [anon_sym_Final] = ACTIONS(3064), + [anon_sym_final] = ACTIONS(3064), + [anon_sym_FINAL] = ACTIONS(3064), + [anon_sym_For] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_FOR] = ACTIONS(3064), + [anon_sym_Function] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3064), + [anon_sym_FUNCTION] = ACTIONS(3064), + [anon_sym_If] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_IF] = ACTIONS(3064), + [anon_sym_Import] = ACTIONS(3064), + [anon_sym_import] = ACTIONS(3064), + [anon_sym_IMPORT] = ACTIONS(3064), + [anon_sym_Include] = ACTIONS(3064), + [anon_sym_include] = ACTIONS(3064), + [anon_sym_INCLUDE] = ACTIONS(3064), + [anon_sym_Interface] = ACTIONS(3064), + [anon_sym_interface] = ACTIONS(3064), + [anon_sym_INTERFACE] = ACTIONS(3064), + [anon_sym_New] = ACTIONS(3064), + [anon_sym_new] = ACTIONS(3064), + [anon_sym_NEW] = ACTIONS(3064), + [anon_sym_Package] = ACTIONS(3064), + [anon_sym_package] = ACTIONS(3064), + [anon_sym_PACKAGE] = ACTIONS(3064), + [anon_sym_Private] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_PRIVATE] = ACTIONS(3064), + [anon_sym_Property] = ACTIONS(3064), + [anon_sym_property] = ACTIONS(3064), + [anon_sym_PROPERTY] = ACTIONS(3064), + [anon_sym_Public] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_PUBLIC] = ACTIONS(3064), + [anon_sym_Remote] = ACTIONS(3064), + [anon_sym_remote] = ACTIONS(3064), + [anon_sym_REMOTE] = ACTIONS(3064), + [anon_sym_Return] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_RETURN] = ACTIONS(3064), + [anon_sym_Static] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_STATIC] = ACTIONS(3064), + [anon_sym_Switch] = ACTIONS(3064), + [anon_sym_switch] = ACTIONS(3064), + [anon_sym_SWITCH] = ACTIONS(3064), + [anon_sym_Throw] = ACTIONS(3064), + [anon_sym_throw] = ACTIONS(3064), + [anon_sym_THROW] = ACTIONS(3064), + [anon_sym_Try] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [anon_sym_TRY] = ACTIONS(3064), + [anon_sym_Var] = ACTIONS(3064), + [anon_sym_var] = ACTIONS(3064), + [anon_sym_VAR] = ACTIONS(3064), + [anon_sym_While] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_WHILE] = ACTIONS(3064), + [anon_sym_With] = ACTIONS(3064), + [anon_sym_with] = ACTIONS(3064), + [anon_sym_WITH] = ACTIONS(3064), + [sym_cf_comment] = ACTIONS(3062), + [sym__java_block_open] = ACTIONS(3062), + [sym__static_type_prefix] = ACTIONS(3062), + }, + [STATE(865)] = { + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_let] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_Query] = ACTIONS(2772), + [anon_sym_query] = ACTIONS(2772), + [anon_sym_QUERY] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_unary_operator_token1] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2770), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2804), - [aux_sym_number_token2] = ACTIONS(2802), - [anon_sym_This] = ACTIONS(2804), - [anon_sym_this] = ACTIONS(2804), - [anon_sym_THIS] = ACTIONS(2804), - [anon_sym_Super] = ACTIONS(2804), - [anon_sym_super] = ACTIONS(2804), - [anon_sym_SUPER] = ACTIONS(2804), - [anon_sym_True] = ACTIONS(2804), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_TRUE] = ACTIONS(2804), - [anon_sym_False] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_FALSE] = ACTIONS(2804), - [anon_sym_Null] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2804), - [anon_sym_NULL] = ACTIONS(2804), - [anon_sym_Undefined] = ACTIONS(2804), - [anon_sym_undefined] = ACTIONS(2804), - [anon_sym_UNDEFINED] = ACTIONS(2804), - [anon_sym_get] = ACTIONS(2804), - [anon_sym_set] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [sym_hash_empty] = ACTIONS(2802), - [anon_sym_export] = ACTIONS(2804), - [anon_sym_QueryExecute] = ACTIONS(2804), - [anon_sym_queryexecute] = ACTIONS(2804), - [anon_sym_QUERYEXECUTE] = ACTIONS(2804), - [anon_sym_queryExecute] = ACTIONS(2804), - [anon_sym_BQUOTE] = ACTIONS(2804), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2802), - [anon_sym_Abstract] = ACTIONS(2804), - [anon_sym_abstract] = ACTIONS(2804), - [anon_sym_ABSTRACT] = ACTIONS(2804), - [anon_sym_Break] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_BREAK] = ACTIONS(2804), - [anon_sym_Case] = ACTIONS(2804), - [anon_sym_case] = ACTIONS(2804), - [anon_sym_CASE] = ACTIONS(2804), - [anon_sym_Component] = ACTIONS(2804), - [anon_sym_component] = ACTIONS(2804), - [anon_sym_COMPONENT] = ACTIONS(2804), - [anon_sym_Continue] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_CONTINUE] = ACTIONS(2804), - [anon_sym_Debugger] = ACTIONS(2804), - [anon_sym_debugger] = ACTIONS(2804), - [anon_sym_DEBUGGER] = ACTIONS(2804), - [anon_sym_Default] = ACTIONS(2804), - [anon_sym_default] = ACTIONS(2804), - [anon_sym_DEFAULT] = ACTIONS(2804), - [anon_sym_Do] = ACTIONS(2804), - [anon_sym_do] = ACTIONS(2804), - [anon_sym_DO] = ACTIONS(2804), - [anon_sym_Final] = ACTIONS(2804), - [anon_sym_final] = ACTIONS(2804), - [anon_sym_FINAL] = ACTIONS(2804), - [anon_sym_For] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_FOR] = ACTIONS(2804), - [anon_sym_Function] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2804), - [anon_sym_FUNCTION] = ACTIONS(2804), - [anon_sym_If] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_IF] = ACTIONS(2804), - [anon_sym_Import] = ACTIONS(2804), - [anon_sym_import] = ACTIONS(2804), - [anon_sym_IMPORT] = ACTIONS(2804), - [anon_sym_Include] = ACTIONS(2804), - [anon_sym_include] = ACTIONS(2804), - [anon_sym_INCLUDE] = ACTIONS(2804), - [anon_sym_Interface] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_INTERFACE] = ACTIONS(2804), - [anon_sym_New] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_NEW] = ACTIONS(2804), - [anon_sym_Package] = ACTIONS(2804), - [anon_sym_package] = ACTIONS(2804), - [anon_sym_PACKAGE] = ACTIONS(2804), - [anon_sym_Private] = ACTIONS(2804), - [anon_sym_private] = ACTIONS(2804), - [anon_sym_PRIVATE] = ACTIONS(2804), - [anon_sym_Property] = ACTIONS(2804), - [anon_sym_property] = ACTIONS(2804), - [anon_sym_PROPERTY] = ACTIONS(2804), - [anon_sym_Public] = ACTIONS(2804), - [anon_sym_public] = ACTIONS(2804), - [anon_sym_PUBLIC] = ACTIONS(2804), - [anon_sym_Remote] = ACTIONS(2804), - [anon_sym_remote] = ACTIONS(2804), - [anon_sym_REMOTE] = ACTIONS(2804), - [anon_sym_Return] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_RETURN] = ACTIONS(2804), - [anon_sym_Static] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_STATIC] = ACTIONS(2804), - [anon_sym_Switch] = ACTIONS(2804), - [anon_sym_switch] = ACTIONS(2804), - [anon_sym_SWITCH] = ACTIONS(2804), - [anon_sym_Throw] = ACTIONS(2804), - [anon_sym_throw] = ACTIONS(2804), - [anon_sym_THROW] = ACTIONS(2804), - [anon_sym_Try] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(2804), - [anon_sym_TRY] = ACTIONS(2804), - [anon_sym_Var] = ACTIONS(2804), - [anon_sym_var] = ACTIONS(2804), - [anon_sym_VAR] = ACTIONS(2804), - [anon_sym_While] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_WHILE] = ACTIONS(2804), - [anon_sym_With] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2804), - [anon_sym_WITH] = ACTIONS(2804), - [sym_cf_comment] = ACTIONS(2802), - [sym__java_block_open] = ACTIONS(2802), - [sym__static_type_prefix] = ACTIONS(2802), + [aux_sym_number_token1] = ACTIONS(2772), + [aux_sym_number_token2] = ACTIONS(2770), + [anon_sym_This] = ACTIONS(2772), + [anon_sym_this] = ACTIONS(2772), + [anon_sym_THIS] = ACTIONS(2772), + [anon_sym_Super] = ACTIONS(2772), + [anon_sym_super] = ACTIONS(2772), + [anon_sym_SUPER] = ACTIONS(2772), + [anon_sym_True] = ACTIONS(2772), + [anon_sym_true] = ACTIONS(2772), + [anon_sym_TRUE] = ACTIONS(2772), + [anon_sym_False] = ACTIONS(2772), + [anon_sym_false] = ACTIONS(2772), + [anon_sym_FALSE] = ACTIONS(2772), + [anon_sym_Null] = ACTIONS(2772), + [anon_sym_null] = ACTIONS(2772), + [anon_sym_NULL] = ACTIONS(2772), + [anon_sym_Undefined] = ACTIONS(2772), + [anon_sym_undefined] = ACTIONS(2772), + [anon_sym_UNDEFINED] = ACTIONS(2772), + [anon_sym_get] = ACTIONS(2772), + [anon_sym_set] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [sym_hash_empty] = ACTIONS(2770), + [anon_sym_export] = ACTIONS(2772), + [anon_sym_QueryExecute] = ACTIONS(2772), + [anon_sym_queryexecute] = ACTIONS(2772), + [anon_sym_QUERYEXECUTE] = ACTIONS(2772), + [anon_sym_queryExecute] = ACTIONS(2772), + [anon_sym_BQUOTE] = ACTIONS(2772), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2770), + [anon_sym_Abstract] = ACTIONS(2772), + [anon_sym_abstract] = ACTIONS(2772), + [anon_sym_ABSTRACT] = ACTIONS(2772), + [anon_sym_Break] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_BREAK] = ACTIONS(2772), + [anon_sym_Case] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_CASE] = ACTIONS(2772), + [anon_sym_Component] = ACTIONS(2772), + [anon_sym_component] = ACTIONS(2772), + [anon_sym_COMPONENT] = ACTIONS(2772), + [anon_sym_Continue] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_CONTINUE] = ACTIONS(2772), + [anon_sym_Debugger] = ACTIONS(2772), + [anon_sym_debugger] = ACTIONS(2772), + [anon_sym_DEBUGGER] = ACTIONS(2772), + [anon_sym_Default] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_DEFAULT] = ACTIONS(2772), + [anon_sym_Do] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_DO] = ACTIONS(2772), + [anon_sym_Final] = ACTIONS(2772), + [anon_sym_final] = ACTIONS(2772), + [anon_sym_FINAL] = ACTIONS(2772), + [anon_sym_For] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_FOR] = ACTIONS(2772), + [anon_sym_Function] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(2772), + [anon_sym_FUNCTION] = ACTIONS(2772), + [anon_sym_If] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_IF] = ACTIONS(2772), + [anon_sym_Import] = ACTIONS(2772), + [anon_sym_import] = ACTIONS(2772), + [anon_sym_IMPORT] = ACTIONS(2772), + [anon_sym_Include] = ACTIONS(2772), + [anon_sym_include] = ACTIONS(2772), + [anon_sym_INCLUDE] = ACTIONS(2772), + [anon_sym_Interface] = ACTIONS(2772), + [anon_sym_interface] = ACTIONS(2772), + [anon_sym_INTERFACE] = ACTIONS(2772), + [anon_sym_New] = ACTIONS(2772), + [anon_sym_new] = ACTIONS(2772), + [anon_sym_NEW] = ACTIONS(2772), + [anon_sym_Package] = ACTIONS(2772), + [anon_sym_package] = ACTIONS(2772), + [anon_sym_PACKAGE] = ACTIONS(2772), + [anon_sym_Private] = ACTIONS(2772), + [anon_sym_private] = ACTIONS(2772), + [anon_sym_PRIVATE] = ACTIONS(2772), + [anon_sym_Property] = ACTIONS(2772), + [anon_sym_property] = ACTIONS(2772), + [anon_sym_PROPERTY] = ACTIONS(2772), + [anon_sym_Public] = ACTIONS(2772), + [anon_sym_public] = ACTIONS(2772), + [anon_sym_PUBLIC] = ACTIONS(2772), + [anon_sym_Remote] = ACTIONS(2772), + [anon_sym_remote] = ACTIONS(2772), + [anon_sym_REMOTE] = ACTIONS(2772), + [anon_sym_Return] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_RETURN] = ACTIONS(2772), + [anon_sym_Static] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_STATIC] = ACTIONS(2772), + [anon_sym_Switch] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_SWITCH] = ACTIONS(2772), + [anon_sym_Throw] = ACTIONS(2772), + [anon_sym_throw] = ACTIONS(2772), + [anon_sym_THROW] = ACTIONS(2772), + [anon_sym_Try] = ACTIONS(2772), + [anon_sym_try] = ACTIONS(2772), + [anon_sym_TRY] = ACTIONS(2772), + [anon_sym_Var] = ACTIONS(2772), + [anon_sym_var] = ACTIONS(2772), + [anon_sym_VAR] = ACTIONS(2772), + [anon_sym_While] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_WHILE] = ACTIONS(2772), + [anon_sym_With] = ACTIONS(2772), + [anon_sym_with] = ACTIONS(2772), + [anon_sym_WITH] = ACTIONS(2772), + [sym_cf_comment] = ACTIONS(2770), + [sym__java_block_open] = ACTIONS(2770), + [sym__static_type_prefix] = ACTIONS(2770), }, - [STATE(833)] = { + [STATE(866)] = { + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_Query] = ACTIONS(2832), + [anon_sym_query] = ACTIONS(2832), + [anon_sym_QUERY] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [aux_sym_unary_operator_token1] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2832), + [aux_sym_number_token2] = ACTIONS(2830), + [anon_sym_This] = ACTIONS(2832), + [anon_sym_this] = ACTIONS(2832), + [anon_sym_THIS] = ACTIONS(2832), + [anon_sym_Super] = ACTIONS(2832), + [anon_sym_super] = ACTIONS(2832), + [anon_sym_SUPER] = ACTIONS(2832), + [anon_sym_True] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_TRUE] = ACTIONS(2832), + [anon_sym_False] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [anon_sym_FALSE] = ACTIONS(2832), + [anon_sym_Null] = ACTIONS(2832), + [anon_sym_null] = ACTIONS(2832), + [anon_sym_NULL] = ACTIONS(2832), + [anon_sym_Undefined] = ACTIONS(2832), + [anon_sym_undefined] = ACTIONS(2832), + [anon_sym_UNDEFINED] = ACTIONS(2832), + [anon_sym_get] = ACTIONS(2832), + [anon_sym_set] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [sym_hash_empty] = ACTIONS(2830), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_QueryExecute] = ACTIONS(2832), + [anon_sym_queryexecute] = ACTIONS(2832), + [anon_sym_QUERYEXECUTE] = ACTIONS(2832), + [anon_sym_queryExecute] = ACTIONS(2832), + [anon_sym_BQUOTE] = ACTIONS(2832), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2830), + [anon_sym_Abstract] = ACTIONS(2832), + [anon_sym_abstract] = ACTIONS(2832), + [anon_sym_ABSTRACT] = ACTIONS(2832), + [anon_sym_Break] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_BREAK] = ACTIONS(2832), + [anon_sym_Case] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_CASE] = ACTIONS(2832), + [anon_sym_Component] = ACTIONS(2832), + [anon_sym_component] = ACTIONS(2832), + [anon_sym_COMPONENT] = ACTIONS(2832), + [anon_sym_Continue] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_CONTINUE] = ACTIONS(2832), + [anon_sym_Debugger] = ACTIONS(2832), + [anon_sym_debugger] = ACTIONS(2832), + [anon_sym_DEBUGGER] = ACTIONS(2832), + [anon_sym_Default] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_DEFAULT] = ACTIONS(2832), + [anon_sym_Do] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_DO] = ACTIONS(2832), + [anon_sym_Final] = ACTIONS(2832), + [anon_sym_final] = ACTIONS(2832), + [anon_sym_FINAL] = ACTIONS(2832), + [anon_sym_For] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_FOR] = ACTIONS(2832), + [anon_sym_Function] = ACTIONS(2832), + [anon_sym_function] = ACTIONS(2832), + [anon_sym_FUNCTION] = ACTIONS(2832), + [anon_sym_If] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_IF] = ACTIONS(2832), + [anon_sym_Import] = ACTIONS(2832), + [anon_sym_import] = ACTIONS(2832), + [anon_sym_IMPORT] = ACTIONS(2832), + [anon_sym_Include] = ACTIONS(2832), + [anon_sym_include] = ACTIONS(2832), + [anon_sym_INCLUDE] = ACTIONS(2832), + [anon_sym_Interface] = ACTIONS(2832), + [anon_sym_interface] = ACTIONS(2832), + [anon_sym_INTERFACE] = ACTIONS(2832), + [anon_sym_New] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2832), + [anon_sym_NEW] = ACTIONS(2832), + [anon_sym_Package] = ACTIONS(2832), + [anon_sym_package] = ACTIONS(2832), + [anon_sym_PACKAGE] = ACTIONS(2832), + [anon_sym_Private] = ACTIONS(2832), + [anon_sym_private] = ACTIONS(2832), + [anon_sym_PRIVATE] = ACTIONS(2832), + [anon_sym_Property] = ACTIONS(2832), + [anon_sym_property] = ACTIONS(2832), + [anon_sym_PROPERTY] = ACTIONS(2832), + [anon_sym_Public] = ACTIONS(2832), + [anon_sym_public] = ACTIONS(2832), + [anon_sym_PUBLIC] = ACTIONS(2832), + [anon_sym_Remote] = ACTIONS(2832), + [anon_sym_remote] = ACTIONS(2832), + [anon_sym_REMOTE] = ACTIONS(2832), + [anon_sym_Return] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_RETURN] = ACTIONS(2832), + [anon_sym_Static] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_STATIC] = ACTIONS(2832), + [anon_sym_Switch] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_SWITCH] = ACTIONS(2832), + [anon_sym_Throw] = ACTIONS(2832), + [anon_sym_throw] = ACTIONS(2832), + [anon_sym_THROW] = ACTIONS(2832), + [anon_sym_Try] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_TRY] = ACTIONS(2832), + [anon_sym_Var] = ACTIONS(2832), + [anon_sym_var] = ACTIONS(2832), + [anon_sym_VAR] = ACTIONS(2832), + [anon_sym_While] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_WHILE] = ACTIONS(2832), + [anon_sym_With] = ACTIONS(2832), + [anon_sym_with] = ACTIONS(2832), + [anon_sym_WITH] = ACTIONS(2832), + [sym_cf_comment] = ACTIONS(2830), + [sym__java_block_open] = ACTIONS(2830), + [sym__static_type_prefix] = ACTIONS(2830), + }, + [STATE(867)] = { [ts_builtin_sym_end] = ACTIONS(2834), [sym_identifier] = ACTIONS(2836), [anon_sym_LBRACE] = ACTIONS(2834), @@ -170929,3922 +176017,6677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(2834), [sym__static_type_prefix] = ACTIONS(2834), }, - [STATE(834)] = { - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_Query] = ACTIONS(2710), - [anon_sym_query] = ACTIONS(2710), - [anon_sym_QUERY] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_TILDE] = ACTIONS(2708), - [aux_sym_unary_operator_token1] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2710), - [aux_sym_number_token2] = ACTIONS(2708), - [anon_sym_This] = ACTIONS(2710), - [anon_sym_this] = ACTIONS(2710), - [anon_sym_THIS] = ACTIONS(2710), - [anon_sym_Super] = ACTIONS(2710), - [anon_sym_super] = ACTIONS(2710), - [anon_sym_SUPER] = ACTIONS(2710), - [anon_sym_True] = ACTIONS(2710), - [anon_sym_true] = ACTIONS(2710), - [anon_sym_TRUE] = ACTIONS(2710), - [anon_sym_False] = ACTIONS(2710), - [anon_sym_false] = ACTIONS(2710), - [anon_sym_FALSE] = ACTIONS(2710), - [anon_sym_Null] = ACTIONS(2710), - [anon_sym_null] = ACTIONS(2710), - [anon_sym_NULL] = ACTIONS(2710), - [anon_sym_Undefined] = ACTIONS(2710), - [anon_sym_undefined] = ACTIONS(2710), - [anon_sym_UNDEFINED] = ACTIONS(2710), - [anon_sym_get] = ACTIONS(2710), - [anon_sym_set] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(2710), - [sym_hash_empty] = ACTIONS(2708), - [anon_sym_export] = ACTIONS(2710), - [anon_sym_QueryExecute] = ACTIONS(2710), - [anon_sym_queryexecute] = ACTIONS(2710), - [anon_sym_QUERYEXECUTE] = ACTIONS(2710), - [anon_sym_queryExecute] = ACTIONS(2710), - [anon_sym_BQUOTE] = ACTIONS(2710), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2708), - [anon_sym_Abstract] = ACTIONS(2710), - [anon_sym_abstract] = ACTIONS(2710), - [anon_sym_ABSTRACT] = ACTIONS(2710), - [anon_sym_Break] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_BREAK] = ACTIONS(2710), - [anon_sym_Case] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_CASE] = ACTIONS(2710), - [anon_sym_Component] = ACTIONS(2710), - [anon_sym_component] = ACTIONS(2710), - [anon_sym_COMPONENT] = ACTIONS(2710), - [anon_sym_Continue] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_CONTINUE] = ACTIONS(2710), - [anon_sym_Debugger] = ACTIONS(2710), - [anon_sym_debugger] = ACTIONS(2710), - [anon_sym_DEBUGGER] = ACTIONS(2710), - [anon_sym_Default] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_DEFAULT] = ACTIONS(2710), - [anon_sym_Do] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_DO] = ACTIONS(2710), - [anon_sym_Final] = ACTIONS(2710), - [anon_sym_final] = ACTIONS(2710), - [anon_sym_FINAL] = ACTIONS(2710), - [anon_sym_For] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_FOR] = ACTIONS(2710), - [anon_sym_Function] = ACTIONS(2710), - [anon_sym_function] = ACTIONS(2710), - [anon_sym_FUNCTION] = ACTIONS(2710), - [anon_sym_If] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_IF] = ACTIONS(2710), - [anon_sym_Import] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2710), - [anon_sym_IMPORT] = ACTIONS(2710), - [anon_sym_Include] = ACTIONS(2710), - [anon_sym_include] = ACTIONS(2710), - [anon_sym_INCLUDE] = ACTIONS(2710), - [anon_sym_Interface] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_INTERFACE] = ACTIONS(2710), - [anon_sym_New] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_NEW] = ACTIONS(2710), - [anon_sym_Package] = ACTIONS(2710), - [anon_sym_package] = ACTIONS(2710), - [anon_sym_PACKAGE] = ACTIONS(2710), - [anon_sym_Private] = ACTIONS(2710), - [anon_sym_private] = ACTIONS(2710), - [anon_sym_PRIVATE] = ACTIONS(2710), - [anon_sym_Property] = ACTIONS(2710), - [anon_sym_property] = ACTIONS(2710), - [anon_sym_PROPERTY] = ACTIONS(2710), - [anon_sym_Public] = ACTIONS(2710), - [anon_sym_public] = ACTIONS(2710), - [anon_sym_PUBLIC] = ACTIONS(2710), - [anon_sym_Remote] = ACTIONS(2710), - [anon_sym_remote] = ACTIONS(2710), - [anon_sym_REMOTE] = ACTIONS(2710), - [anon_sym_Return] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_RETURN] = ACTIONS(2710), - [anon_sym_Static] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_STATIC] = ACTIONS(2710), - [anon_sym_Switch] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_SWITCH] = ACTIONS(2710), - [anon_sym_Throw] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_THROW] = ACTIONS(2710), - [anon_sym_Try] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_TRY] = ACTIONS(2710), - [anon_sym_Var] = ACTIONS(2710), - [anon_sym_var] = ACTIONS(2710), - [anon_sym_VAR] = ACTIONS(2710), - [anon_sym_While] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_WHILE] = ACTIONS(2710), - [anon_sym_With] = ACTIONS(2710), - [anon_sym_with] = ACTIONS(2710), - [anon_sym_WITH] = ACTIONS(2710), - [sym_cf_comment] = ACTIONS(2708), - [sym__java_block_open] = ACTIONS(2708), - [sym__static_type_prefix] = ACTIONS(2708), + [STATE(868)] = { + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_Query] = ACTIONS(2840), + [anon_sym_query] = ACTIONS(2840), + [anon_sym_QUERY] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_SLASH] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [aux_sym_unary_operator_token1] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2840), + [aux_sym_number_token2] = ACTIONS(2838), + [anon_sym_This] = ACTIONS(2840), + [anon_sym_this] = ACTIONS(2840), + [anon_sym_THIS] = ACTIONS(2840), + [anon_sym_Super] = ACTIONS(2840), + [anon_sym_super] = ACTIONS(2840), + [anon_sym_SUPER] = ACTIONS(2840), + [anon_sym_True] = ACTIONS(2840), + [anon_sym_true] = ACTIONS(2840), + [anon_sym_TRUE] = ACTIONS(2840), + [anon_sym_False] = ACTIONS(2840), + [anon_sym_false] = ACTIONS(2840), + [anon_sym_FALSE] = ACTIONS(2840), + [anon_sym_Null] = ACTIONS(2840), + [anon_sym_null] = ACTIONS(2840), + [anon_sym_NULL] = ACTIONS(2840), + [anon_sym_Undefined] = ACTIONS(2840), + [anon_sym_undefined] = ACTIONS(2840), + [anon_sym_UNDEFINED] = ACTIONS(2840), + [anon_sym_get] = ACTIONS(2840), + [anon_sym_set] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [sym_hash_empty] = ACTIONS(2838), + [anon_sym_export] = ACTIONS(2840), + [anon_sym_QueryExecute] = ACTIONS(2840), + [anon_sym_queryexecute] = ACTIONS(2840), + [anon_sym_QUERYEXECUTE] = ACTIONS(2840), + [anon_sym_queryExecute] = ACTIONS(2840), + [anon_sym_BQUOTE] = ACTIONS(2840), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2838), + [anon_sym_Abstract] = ACTIONS(2840), + [anon_sym_abstract] = ACTIONS(2840), + [anon_sym_ABSTRACT] = ACTIONS(2840), + [anon_sym_Break] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_BREAK] = ACTIONS(2840), + [anon_sym_Case] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_CASE] = ACTIONS(2840), + [anon_sym_Component] = ACTIONS(2840), + [anon_sym_component] = ACTIONS(2840), + [anon_sym_COMPONENT] = ACTIONS(2840), + [anon_sym_Continue] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_CONTINUE] = ACTIONS(2840), + [anon_sym_Debugger] = ACTIONS(2840), + [anon_sym_debugger] = ACTIONS(2840), + [anon_sym_DEBUGGER] = ACTIONS(2840), + [anon_sym_Default] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_DEFAULT] = ACTIONS(2840), + [anon_sym_Do] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_DO] = ACTIONS(2840), + [anon_sym_Final] = ACTIONS(2840), + [anon_sym_final] = ACTIONS(2840), + [anon_sym_FINAL] = ACTIONS(2840), + [anon_sym_For] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_FOR] = ACTIONS(2840), + [anon_sym_Function] = ACTIONS(2840), + [anon_sym_function] = ACTIONS(2840), + [anon_sym_FUNCTION] = ACTIONS(2840), + [anon_sym_If] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_IF] = ACTIONS(2840), + [anon_sym_Import] = ACTIONS(2840), + [anon_sym_import] = ACTIONS(2840), + [anon_sym_IMPORT] = ACTIONS(2840), + [anon_sym_Include] = ACTIONS(2840), + [anon_sym_include] = ACTIONS(2840), + [anon_sym_INCLUDE] = ACTIONS(2840), + [anon_sym_Interface] = ACTIONS(2840), + [anon_sym_interface] = ACTIONS(2840), + [anon_sym_INTERFACE] = ACTIONS(2840), + [anon_sym_New] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_NEW] = ACTIONS(2840), + [anon_sym_Package] = ACTIONS(2840), + [anon_sym_package] = ACTIONS(2840), + [anon_sym_PACKAGE] = ACTIONS(2840), + [anon_sym_Private] = ACTIONS(2840), + [anon_sym_private] = ACTIONS(2840), + [anon_sym_PRIVATE] = ACTIONS(2840), + [anon_sym_Property] = ACTIONS(2840), + [anon_sym_property] = ACTIONS(2840), + [anon_sym_PROPERTY] = ACTIONS(2840), + [anon_sym_Public] = ACTIONS(2840), + [anon_sym_public] = ACTIONS(2840), + [anon_sym_PUBLIC] = ACTIONS(2840), + [anon_sym_Remote] = ACTIONS(2840), + [anon_sym_remote] = ACTIONS(2840), + [anon_sym_REMOTE] = ACTIONS(2840), + [anon_sym_Return] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_RETURN] = ACTIONS(2840), + [anon_sym_Static] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_STATIC] = ACTIONS(2840), + [anon_sym_Switch] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_SWITCH] = ACTIONS(2840), + [anon_sym_Throw] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_THROW] = ACTIONS(2840), + [anon_sym_Try] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_TRY] = ACTIONS(2840), + [anon_sym_Var] = ACTIONS(2840), + [anon_sym_var] = ACTIONS(2840), + [anon_sym_VAR] = ACTIONS(2840), + [anon_sym_While] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_WHILE] = ACTIONS(2840), + [anon_sym_With] = ACTIONS(2840), + [anon_sym_with] = ACTIONS(2840), + [anon_sym_WITH] = ACTIONS(2840), + [sym_cf_comment] = ACTIONS(2838), + [sym__java_block_open] = ACTIONS(2838), + [sym__static_type_prefix] = ACTIONS(2838), + }, + [STATE(869)] = { + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_let] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_Query] = ACTIONS(2844), + [anon_sym_query] = ACTIONS(2844), + [anon_sym_QUERY] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_SLASH] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [aux_sym_unary_operator_token1] = ACTIONS(2844), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2844), + [aux_sym_number_token2] = ACTIONS(2842), + [anon_sym_This] = ACTIONS(2844), + [anon_sym_this] = ACTIONS(2844), + [anon_sym_THIS] = ACTIONS(2844), + [anon_sym_Super] = ACTIONS(2844), + [anon_sym_super] = ACTIONS(2844), + [anon_sym_SUPER] = ACTIONS(2844), + [anon_sym_True] = ACTIONS(2844), + [anon_sym_true] = ACTIONS(2844), + [anon_sym_TRUE] = ACTIONS(2844), + [anon_sym_False] = ACTIONS(2844), + [anon_sym_false] = ACTIONS(2844), + [anon_sym_FALSE] = ACTIONS(2844), + [anon_sym_Null] = ACTIONS(2844), + [anon_sym_null] = ACTIONS(2844), + [anon_sym_NULL] = ACTIONS(2844), + [anon_sym_Undefined] = ACTIONS(2844), + [anon_sym_undefined] = ACTIONS(2844), + [anon_sym_UNDEFINED] = ACTIONS(2844), + [anon_sym_get] = ACTIONS(2844), + [anon_sym_set] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [sym_hash_empty] = ACTIONS(2842), + [anon_sym_export] = ACTIONS(2844), + [anon_sym_QueryExecute] = ACTIONS(2844), + [anon_sym_queryexecute] = ACTIONS(2844), + [anon_sym_QUERYEXECUTE] = ACTIONS(2844), + [anon_sym_queryExecute] = ACTIONS(2844), + [anon_sym_BQUOTE] = ACTIONS(2844), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2842), + [anon_sym_Abstract] = ACTIONS(2844), + [anon_sym_abstract] = ACTIONS(2844), + [anon_sym_ABSTRACT] = ACTIONS(2844), + [anon_sym_Break] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_BREAK] = ACTIONS(2844), + [anon_sym_Case] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_CASE] = ACTIONS(2844), + [anon_sym_Component] = ACTIONS(2844), + [anon_sym_component] = ACTIONS(2844), + [anon_sym_COMPONENT] = ACTIONS(2844), + [anon_sym_Continue] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_CONTINUE] = ACTIONS(2844), + [anon_sym_Debugger] = ACTIONS(2844), + [anon_sym_debugger] = ACTIONS(2844), + [anon_sym_DEBUGGER] = ACTIONS(2844), + [anon_sym_Default] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_DEFAULT] = ACTIONS(2844), + [anon_sym_Do] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_DO] = ACTIONS(2844), + [anon_sym_Final] = ACTIONS(2844), + [anon_sym_final] = ACTIONS(2844), + [anon_sym_FINAL] = ACTIONS(2844), + [anon_sym_For] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_FOR] = ACTIONS(2844), + [anon_sym_Function] = ACTIONS(2844), + [anon_sym_function] = ACTIONS(2844), + [anon_sym_FUNCTION] = ACTIONS(2844), + [anon_sym_If] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_IF] = ACTIONS(2844), + [anon_sym_Import] = ACTIONS(2844), + [anon_sym_import] = ACTIONS(2844), + [anon_sym_IMPORT] = ACTIONS(2844), + [anon_sym_Include] = ACTIONS(2844), + [anon_sym_include] = ACTIONS(2844), + [anon_sym_INCLUDE] = ACTIONS(2844), + [anon_sym_Interface] = ACTIONS(2844), + [anon_sym_interface] = ACTIONS(2844), + [anon_sym_INTERFACE] = ACTIONS(2844), + [anon_sym_New] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_NEW] = ACTIONS(2844), + [anon_sym_Package] = ACTIONS(2844), + [anon_sym_package] = ACTIONS(2844), + [anon_sym_PACKAGE] = ACTIONS(2844), + [anon_sym_Private] = ACTIONS(2844), + [anon_sym_private] = ACTIONS(2844), + [anon_sym_PRIVATE] = ACTIONS(2844), + [anon_sym_Property] = ACTIONS(2844), + [anon_sym_property] = ACTIONS(2844), + [anon_sym_PROPERTY] = ACTIONS(2844), + [anon_sym_Public] = ACTIONS(2844), + [anon_sym_public] = ACTIONS(2844), + [anon_sym_PUBLIC] = ACTIONS(2844), + [anon_sym_Remote] = ACTIONS(2844), + [anon_sym_remote] = ACTIONS(2844), + [anon_sym_REMOTE] = ACTIONS(2844), + [anon_sym_Return] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_RETURN] = ACTIONS(2844), + [anon_sym_Static] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_STATIC] = ACTIONS(2844), + [anon_sym_Switch] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_SWITCH] = ACTIONS(2844), + [anon_sym_Throw] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_THROW] = ACTIONS(2844), + [anon_sym_Try] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_TRY] = ACTIONS(2844), + [anon_sym_Var] = ACTIONS(2844), + [anon_sym_var] = ACTIONS(2844), + [anon_sym_VAR] = ACTIONS(2844), + [anon_sym_While] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_WHILE] = ACTIONS(2844), + [anon_sym_With] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_WITH] = ACTIONS(2844), + [sym_cf_comment] = ACTIONS(2842), + [sym__java_block_open] = ACTIONS(2842), + [sym__static_type_prefix] = ACTIONS(2842), + }, + [STATE(870)] = { + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_Query] = ACTIONS(2201), + [anon_sym_query] = ACTIONS(2201), + [anon_sym_QUERY] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [aux_sym_unary_operator_token1] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2201), + [aux_sym_number_token2] = ACTIONS(2199), + [anon_sym_This] = ACTIONS(2201), + [anon_sym_this] = ACTIONS(2201), + [anon_sym_THIS] = ACTIONS(2201), + [anon_sym_Super] = ACTIONS(2201), + [anon_sym_super] = ACTIONS(2201), + [anon_sym_SUPER] = ACTIONS(2201), + [anon_sym_True] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_TRUE] = ACTIONS(2201), + [anon_sym_False] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_FALSE] = ACTIONS(2201), + [anon_sym_Null] = ACTIONS(2201), + [anon_sym_null] = ACTIONS(2201), + [anon_sym_NULL] = ACTIONS(2201), + [anon_sym_Undefined] = ACTIONS(2201), + [anon_sym_undefined] = ACTIONS(2201), + [anon_sym_UNDEFINED] = ACTIONS(2201), + [anon_sym_get] = ACTIONS(2201), + [anon_sym_set] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [sym_hash_empty] = ACTIONS(2199), + [anon_sym_export] = ACTIONS(2201), + [anon_sym_QueryExecute] = ACTIONS(2201), + [anon_sym_queryexecute] = ACTIONS(2201), + [anon_sym_QUERYEXECUTE] = ACTIONS(2201), + [anon_sym_queryExecute] = ACTIONS(2201), + [anon_sym_BQUOTE] = ACTIONS(2201), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2199), + [anon_sym_Abstract] = ACTIONS(2201), + [anon_sym_abstract] = ACTIONS(2201), + [anon_sym_ABSTRACT] = ACTIONS(2201), + [anon_sym_Break] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_BREAK] = ACTIONS(2201), + [anon_sym_Case] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(2201), + [anon_sym_CASE] = ACTIONS(2201), + [anon_sym_Component] = ACTIONS(2201), + [anon_sym_component] = ACTIONS(2201), + [anon_sym_COMPONENT] = ACTIONS(2201), + [anon_sym_Continue] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_CONTINUE] = ACTIONS(2201), + [anon_sym_Debugger] = ACTIONS(2201), + [anon_sym_debugger] = ACTIONS(2201), + [anon_sym_DEBUGGER] = ACTIONS(2201), + [anon_sym_Default] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_DEFAULT] = ACTIONS(2201), + [anon_sym_Do] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_DO] = ACTIONS(2201), + [anon_sym_Final] = ACTIONS(2201), + [anon_sym_final] = ACTIONS(2201), + [anon_sym_FINAL] = ACTIONS(2201), + [anon_sym_For] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_FOR] = ACTIONS(2201), + [anon_sym_Function] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(2201), + [anon_sym_FUNCTION] = ACTIONS(2201), + [anon_sym_If] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_IF] = ACTIONS(2201), + [anon_sym_Import] = ACTIONS(2201), + [anon_sym_import] = ACTIONS(2201), + [anon_sym_IMPORT] = ACTIONS(2201), + [anon_sym_Include] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_INCLUDE] = ACTIONS(2201), + [anon_sym_Interface] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_INTERFACE] = ACTIONS(2201), + [anon_sym_New] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_NEW] = ACTIONS(2201), + [anon_sym_Package] = ACTIONS(2201), + [anon_sym_package] = ACTIONS(2201), + [anon_sym_PACKAGE] = ACTIONS(2201), + [anon_sym_Private] = ACTIONS(2201), + [anon_sym_private] = ACTIONS(2201), + [anon_sym_PRIVATE] = ACTIONS(2201), + [anon_sym_Property] = ACTIONS(2201), + [anon_sym_property] = ACTIONS(2201), + [anon_sym_PROPERTY] = ACTIONS(2201), + [anon_sym_Public] = ACTIONS(2201), + [anon_sym_public] = ACTIONS(2201), + [anon_sym_PUBLIC] = ACTIONS(2201), + [anon_sym_Remote] = ACTIONS(2201), + [anon_sym_remote] = ACTIONS(2201), + [anon_sym_REMOTE] = ACTIONS(2201), + [anon_sym_Return] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_RETURN] = ACTIONS(2201), + [anon_sym_Static] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_STATIC] = ACTIONS(2201), + [anon_sym_Switch] = ACTIONS(2201), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_SWITCH] = ACTIONS(2201), + [anon_sym_Throw] = ACTIONS(2201), + [anon_sym_throw] = ACTIONS(2201), + [anon_sym_THROW] = ACTIONS(2201), + [anon_sym_Try] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_TRY] = ACTIONS(2201), + [anon_sym_Var] = ACTIONS(2201), + [anon_sym_var] = ACTIONS(2201), + [anon_sym_VAR] = ACTIONS(2201), + [anon_sym_While] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_WHILE] = ACTIONS(2201), + [anon_sym_With] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2201), + [anon_sym_WITH] = ACTIONS(2201), + [sym_cf_comment] = ACTIONS(2199), + [sym__java_block_open] = ACTIONS(2199), + [sym__static_type_prefix] = ACTIONS(2199), + }, + [STATE(871)] = { + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_Query] = ACTIONS(3048), + [anon_sym_query] = ACTIONS(3048), + [anon_sym_QUERY] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [aux_sym_unary_operator_token1] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3048), + [aux_sym_number_token2] = ACTIONS(3046), + [anon_sym_This] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_THIS] = ACTIONS(3048), + [anon_sym_Super] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_SUPER] = ACTIONS(3048), + [anon_sym_True] = ACTIONS(3048), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_TRUE] = ACTIONS(3048), + [anon_sym_False] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_FALSE] = ACTIONS(3048), + [anon_sym_Null] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_Undefined] = ACTIONS(3048), + [anon_sym_undefined] = ACTIONS(3048), + [anon_sym_UNDEFINED] = ACTIONS(3048), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_POUND] = ACTIONS(3048), + [sym_hash_empty] = ACTIONS(3046), + [anon_sym_export] = ACTIONS(3048), + [anon_sym_QueryExecute] = ACTIONS(3048), + [anon_sym_queryexecute] = ACTIONS(3048), + [anon_sym_QUERYEXECUTE] = ACTIONS(3048), + [anon_sym_queryExecute] = ACTIONS(3048), + [anon_sym_BQUOTE] = ACTIONS(3048), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3046), + [anon_sym_Abstract] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_ABSTRACT] = ACTIONS(3048), + [anon_sym_Break] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_BREAK] = ACTIONS(3048), + [anon_sym_Case] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_CASE] = ACTIONS(3048), + [anon_sym_Component] = ACTIONS(3048), + [anon_sym_component] = ACTIONS(3048), + [anon_sym_COMPONENT] = ACTIONS(3048), + [anon_sym_Continue] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_CONTINUE] = ACTIONS(3048), + [anon_sym_Debugger] = ACTIONS(3048), + [anon_sym_debugger] = ACTIONS(3048), + [anon_sym_DEBUGGER] = ACTIONS(3048), + [anon_sym_Default] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_DEFAULT] = ACTIONS(3048), + [anon_sym_Do] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_DO] = ACTIONS(3048), + [anon_sym_Final] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_FINAL] = ACTIONS(3048), + [anon_sym_For] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_FOR] = ACTIONS(3048), + [anon_sym_Function] = ACTIONS(3048), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_FUNCTION] = ACTIONS(3048), + [anon_sym_If] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_IF] = ACTIONS(3048), + [anon_sym_Import] = ACTIONS(3048), + [anon_sym_import] = ACTIONS(3048), + [anon_sym_IMPORT] = ACTIONS(3048), + [anon_sym_Include] = ACTIONS(3048), + [anon_sym_include] = ACTIONS(3048), + [anon_sym_INCLUDE] = ACTIONS(3048), + [anon_sym_Interface] = ACTIONS(3048), + [anon_sym_interface] = ACTIONS(3048), + [anon_sym_INTERFACE] = ACTIONS(3048), + [anon_sym_New] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_NEW] = ACTIONS(3048), + [anon_sym_Package] = ACTIONS(3048), + [anon_sym_package] = ACTIONS(3048), + [anon_sym_PACKAGE] = ACTIONS(3048), + [anon_sym_Private] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_PRIVATE] = ACTIONS(3048), + [anon_sym_Property] = ACTIONS(3048), + [anon_sym_property] = ACTIONS(3048), + [anon_sym_PROPERTY] = ACTIONS(3048), + [anon_sym_Public] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_PUBLIC] = ACTIONS(3048), + [anon_sym_Remote] = ACTIONS(3048), + [anon_sym_remote] = ACTIONS(3048), + [anon_sym_REMOTE] = ACTIONS(3048), + [anon_sym_Return] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_RETURN] = ACTIONS(3048), + [anon_sym_Static] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_STATIC] = ACTIONS(3048), + [anon_sym_Switch] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_SWITCH] = ACTIONS(3048), + [anon_sym_Throw] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_THROW] = ACTIONS(3048), + [anon_sym_Try] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_TRY] = ACTIONS(3048), + [anon_sym_Var] = ACTIONS(3048), + [anon_sym_var] = ACTIONS(3048), + [anon_sym_VAR] = ACTIONS(3048), + [anon_sym_While] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_WHILE] = ACTIONS(3048), + [anon_sym_With] = ACTIONS(3048), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_WITH] = ACTIONS(3048), + [sym_cf_comment] = ACTIONS(3046), + [sym__java_block_open] = ACTIONS(3046), + [sym__static_type_prefix] = ACTIONS(3046), + }, + [STATE(872)] = { + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_Query] = ACTIONS(2852), + [anon_sym_query] = ACTIONS(2852), + [anon_sym_QUERY] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_SLASH] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [aux_sym_unary_operator_token1] = ACTIONS(2852), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2852), + [aux_sym_number_token2] = ACTIONS(2850), + [anon_sym_This] = ACTIONS(2852), + [anon_sym_this] = ACTIONS(2852), + [anon_sym_THIS] = ACTIONS(2852), + [anon_sym_Super] = ACTIONS(2852), + [anon_sym_super] = ACTIONS(2852), + [anon_sym_SUPER] = ACTIONS(2852), + [anon_sym_True] = ACTIONS(2852), + [anon_sym_true] = ACTIONS(2852), + [anon_sym_TRUE] = ACTIONS(2852), + [anon_sym_False] = ACTIONS(2852), + [anon_sym_false] = ACTIONS(2852), + [anon_sym_FALSE] = ACTIONS(2852), + [anon_sym_Null] = ACTIONS(2852), + [anon_sym_null] = ACTIONS(2852), + [anon_sym_NULL] = ACTIONS(2852), + [anon_sym_Undefined] = ACTIONS(2852), + [anon_sym_undefined] = ACTIONS(2852), + [anon_sym_UNDEFINED] = ACTIONS(2852), + [anon_sym_get] = ACTIONS(2852), + [anon_sym_set] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [sym_hash_empty] = ACTIONS(2850), + [anon_sym_export] = ACTIONS(2852), + [anon_sym_QueryExecute] = ACTIONS(2852), + [anon_sym_queryexecute] = ACTIONS(2852), + [anon_sym_QUERYEXECUTE] = ACTIONS(2852), + [anon_sym_queryExecute] = ACTIONS(2852), + [anon_sym_BQUOTE] = ACTIONS(2852), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2850), + [anon_sym_Abstract] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_ABSTRACT] = ACTIONS(2852), + [anon_sym_Break] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_BREAK] = ACTIONS(2852), + [anon_sym_Case] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_CASE] = ACTIONS(2852), + [anon_sym_Component] = ACTIONS(2852), + [anon_sym_component] = ACTIONS(2852), + [anon_sym_COMPONENT] = ACTIONS(2852), + [anon_sym_Continue] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_CONTINUE] = ACTIONS(2852), + [anon_sym_Debugger] = ACTIONS(2852), + [anon_sym_debugger] = ACTIONS(2852), + [anon_sym_DEBUGGER] = ACTIONS(2852), + [anon_sym_Default] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_DEFAULT] = ACTIONS(2852), + [anon_sym_Do] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_DO] = ACTIONS(2852), + [anon_sym_Final] = ACTIONS(2852), + [anon_sym_final] = ACTIONS(2852), + [anon_sym_FINAL] = ACTIONS(2852), + [anon_sym_For] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_FOR] = ACTIONS(2852), + [anon_sym_Function] = ACTIONS(2852), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_FUNCTION] = ACTIONS(2852), + [anon_sym_If] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_IF] = ACTIONS(2852), + [anon_sym_Import] = ACTIONS(2852), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_IMPORT] = ACTIONS(2852), + [anon_sym_Include] = ACTIONS(2852), + [anon_sym_include] = ACTIONS(2852), + [anon_sym_INCLUDE] = ACTIONS(2852), + [anon_sym_Interface] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2852), + [anon_sym_INTERFACE] = ACTIONS(2852), + [anon_sym_New] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_NEW] = ACTIONS(2852), + [anon_sym_Package] = ACTIONS(2852), + [anon_sym_package] = ACTIONS(2852), + [anon_sym_PACKAGE] = ACTIONS(2852), + [anon_sym_Private] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_PRIVATE] = ACTIONS(2852), + [anon_sym_Property] = ACTIONS(2852), + [anon_sym_property] = ACTIONS(2852), + [anon_sym_PROPERTY] = ACTIONS(2852), + [anon_sym_Public] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_PUBLIC] = ACTIONS(2852), + [anon_sym_Remote] = ACTIONS(2852), + [anon_sym_remote] = ACTIONS(2852), + [anon_sym_REMOTE] = ACTIONS(2852), + [anon_sym_Return] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_RETURN] = ACTIONS(2852), + [anon_sym_Static] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_STATIC] = ACTIONS(2852), + [anon_sym_Switch] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_SWITCH] = ACTIONS(2852), + [anon_sym_Throw] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_THROW] = ACTIONS(2852), + [anon_sym_Try] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_TRY] = ACTIONS(2852), + [anon_sym_Var] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2852), + [anon_sym_VAR] = ACTIONS(2852), + [anon_sym_While] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_WHILE] = ACTIONS(2852), + [anon_sym_With] = ACTIONS(2852), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_WITH] = ACTIONS(2852), + [sym_cf_comment] = ACTIONS(2850), + [sym__java_block_open] = ACTIONS(2850), + [sym__static_type_prefix] = ACTIONS(2850), + }, + [STATE(873)] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_Query] = ACTIONS(2856), + [anon_sym_query] = ACTIONS(2856), + [anon_sym_QUERY] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_SLASH] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [aux_sym_unary_operator_token1] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2856), + [aux_sym_number_token2] = ACTIONS(2854), + [anon_sym_This] = ACTIONS(2856), + [anon_sym_this] = ACTIONS(2856), + [anon_sym_THIS] = ACTIONS(2856), + [anon_sym_Super] = ACTIONS(2856), + [anon_sym_super] = ACTIONS(2856), + [anon_sym_SUPER] = ACTIONS(2856), + [anon_sym_True] = ACTIONS(2856), + [anon_sym_true] = ACTIONS(2856), + [anon_sym_TRUE] = ACTIONS(2856), + [anon_sym_False] = ACTIONS(2856), + [anon_sym_false] = ACTIONS(2856), + [anon_sym_FALSE] = ACTIONS(2856), + [anon_sym_Null] = ACTIONS(2856), + [anon_sym_null] = ACTIONS(2856), + [anon_sym_NULL] = ACTIONS(2856), + [anon_sym_Undefined] = ACTIONS(2856), + [anon_sym_undefined] = ACTIONS(2856), + [anon_sym_UNDEFINED] = ACTIONS(2856), + [anon_sym_get] = ACTIONS(2856), + [anon_sym_set] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [sym_hash_empty] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2856), + [anon_sym_QueryExecute] = ACTIONS(2856), + [anon_sym_queryexecute] = ACTIONS(2856), + [anon_sym_QUERYEXECUTE] = ACTIONS(2856), + [anon_sym_queryExecute] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2854), + [anon_sym_Abstract] = ACTIONS(2856), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_ABSTRACT] = ACTIONS(2856), + [anon_sym_Break] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_BREAK] = ACTIONS(2856), + [anon_sym_Case] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_CASE] = ACTIONS(2856), + [anon_sym_Component] = ACTIONS(2856), + [anon_sym_component] = ACTIONS(2856), + [anon_sym_COMPONENT] = ACTIONS(2856), + [anon_sym_Continue] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_CONTINUE] = ACTIONS(2856), + [anon_sym_Debugger] = ACTIONS(2856), + [anon_sym_debugger] = ACTIONS(2856), + [anon_sym_DEBUGGER] = ACTIONS(2856), + [anon_sym_Default] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_DEFAULT] = ACTIONS(2856), + [anon_sym_Do] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_DO] = ACTIONS(2856), + [anon_sym_Final] = ACTIONS(2856), + [anon_sym_final] = ACTIONS(2856), + [anon_sym_FINAL] = ACTIONS(2856), + [anon_sym_For] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_FOR] = ACTIONS(2856), + [anon_sym_Function] = ACTIONS(2856), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_FUNCTION] = ACTIONS(2856), + [anon_sym_If] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_IF] = ACTIONS(2856), + [anon_sym_Import] = ACTIONS(2856), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_IMPORT] = ACTIONS(2856), + [anon_sym_Include] = ACTIONS(2856), + [anon_sym_include] = ACTIONS(2856), + [anon_sym_INCLUDE] = ACTIONS(2856), + [anon_sym_Interface] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2856), + [anon_sym_INTERFACE] = ACTIONS(2856), + [anon_sym_New] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_NEW] = ACTIONS(2856), + [anon_sym_Package] = ACTIONS(2856), + [anon_sym_package] = ACTIONS(2856), + [anon_sym_PACKAGE] = ACTIONS(2856), + [anon_sym_Private] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_PRIVATE] = ACTIONS(2856), + [anon_sym_Property] = ACTIONS(2856), + [anon_sym_property] = ACTIONS(2856), + [anon_sym_PROPERTY] = ACTIONS(2856), + [anon_sym_Public] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_PUBLIC] = ACTIONS(2856), + [anon_sym_Remote] = ACTIONS(2856), + [anon_sym_remote] = ACTIONS(2856), + [anon_sym_REMOTE] = ACTIONS(2856), + [anon_sym_Return] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_RETURN] = ACTIONS(2856), + [anon_sym_Static] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_STATIC] = ACTIONS(2856), + [anon_sym_Switch] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_SWITCH] = ACTIONS(2856), + [anon_sym_Throw] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_THROW] = ACTIONS(2856), + [anon_sym_Try] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_TRY] = ACTIONS(2856), + [anon_sym_Var] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2856), + [anon_sym_VAR] = ACTIONS(2856), + [anon_sym_While] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_WHILE] = ACTIONS(2856), + [anon_sym_With] = ACTIONS(2856), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_WITH] = ACTIONS(2856), + [sym_cf_comment] = ACTIONS(2854), + [sym__java_block_open] = ACTIONS(2854), + [sym__static_type_prefix] = ACTIONS(2854), + }, + [STATE(874)] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_Query] = ACTIONS(3032), + [anon_sym_query] = ACTIONS(3032), + [anon_sym_QUERY] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_unary_operator_token1] = ACTIONS(3032), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3032), + [aux_sym_number_token2] = ACTIONS(3030), + [anon_sym_This] = ACTIONS(3032), + [anon_sym_this] = ACTIONS(3032), + [anon_sym_THIS] = ACTIONS(3032), + [anon_sym_Super] = ACTIONS(3032), + [anon_sym_super] = ACTIONS(3032), + [anon_sym_SUPER] = ACTIONS(3032), + [anon_sym_True] = ACTIONS(3032), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_TRUE] = ACTIONS(3032), + [anon_sym_False] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_FALSE] = ACTIONS(3032), + [anon_sym_Null] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_NULL] = ACTIONS(3032), + [anon_sym_Undefined] = ACTIONS(3032), + [anon_sym_undefined] = ACTIONS(3032), + [anon_sym_UNDEFINED] = ACTIONS(3032), + [anon_sym_get] = ACTIONS(3032), + [anon_sym_set] = ACTIONS(3032), + [anon_sym_POUND] = ACTIONS(3032), + [sym_hash_empty] = ACTIONS(3030), + [anon_sym_export] = ACTIONS(3032), + [anon_sym_QueryExecute] = ACTIONS(3032), + [anon_sym_queryexecute] = ACTIONS(3032), + [anon_sym_QUERYEXECUTE] = ACTIONS(3032), + [anon_sym_queryExecute] = ACTIONS(3032), + [anon_sym_BQUOTE] = ACTIONS(3032), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3030), + [anon_sym_Abstract] = ACTIONS(3032), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_ABSTRACT] = ACTIONS(3032), + [anon_sym_Break] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_BREAK] = ACTIONS(3032), + [anon_sym_Case] = ACTIONS(3032), + [anon_sym_case] = ACTIONS(3032), + [anon_sym_CASE] = ACTIONS(3032), + [anon_sym_Component] = ACTIONS(3032), + [anon_sym_component] = ACTIONS(3032), + [anon_sym_COMPONENT] = ACTIONS(3032), + [anon_sym_Continue] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_CONTINUE] = ACTIONS(3032), + [anon_sym_Debugger] = ACTIONS(3032), + [anon_sym_debugger] = ACTIONS(3032), + [anon_sym_DEBUGGER] = ACTIONS(3032), + [anon_sym_Default] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_DEFAULT] = ACTIONS(3032), + [anon_sym_Do] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_DO] = ACTIONS(3032), + [anon_sym_Final] = ACTIONS(3032), + [anon_sym_final] = ACTIONS(3032), + [anon_sym_FINAL] = ACTIONS(3032), + [anon_sym_For] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_FOR] = ACTIONS(3032), + [anon_sym_Function] = ACTIONS(3032), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_FUNCTION] = ACTIONS(3032), + [anon_sym_If] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_IF] = ACTIONS(3032), + [anon_sym_Import] = ACTIONS(3032), + [anon_sym_import] = ACTIONS(3032), + [anon_sym_IMPORT] = ACTIONS(3032), + [anon_sym_Include] = ACTIONS(3032), + [anon_sym_include] = ACTIONS(3032), + [anon_sym_INCLUDE] = ACTIONS(3032), + [anon_sym_Interface] = ACTIONS(3032), + [anon_sym_interface] = ACTIONS(3032), + [anon_sym_INTERFACE] = ACTIONS(3032), + [anon_sym_New] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_NEW] = ACTIONS(3032), + [anon_sym_Package] = ACTIONS(3032), + [anon_sym_package] = ACTIONS(3032), + [anon_sym_PACKAGE] = ACTIONS(3032), + [anon_sym_Private] = ACTIONS(3032), + [anon_sym_private] = ACTIONS(3032), + [anon_sym_PRIVATE] = ACTIONS(3032), + [anon_sym_Property] = ACTIONS(3032), + [anon_sym_property] = ACTIONS(3032), + [anon_sym_PROPERTY] = ACTIONS(3032), + [anon_sym_Public] = ACTIONS(3032), + [anon_sym_public] = ACTIONS(3032), + [anon_sym_PUBLIC] = ACTIONS(3032), + [anon_sym_Remote] = ACTIONS(3032), + [anon_sym_remote] = ACTIONS(3032), + [anon_sym_REMOTE] = ACTIONS(3032), + [anon_sym_Return] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_RETURN] = ACTIONS(3032), + [anon_sym_Static] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_STATIC] = ACTIONS(3032), + [anon_sym_Switch] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3032), + [anon_sym_SWITCH] = ACTIONS(3032), + [anon_sym_Throw] = ACTIONS(3032), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_THROW] = ACTIONS(3032), + [anon_sym_Try] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_TRY] = ACTIONS(3032), + [anon_sym_Var] = ACTIONS(3032), + [anon_sym_var] = ACTIONS(3032), + [anon_sym_VAR] = ACTIONS(3032), + [anon_sym_While] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_WHILE] = ACTIONS(3032), + [anon_sym_With] = ACTIONS(3032), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_WITH] = ACTIONS(3032), + [sym_cf_comment] = ACTIONS(3030), + [sym__java_block_open] = ACTIONS(3030), + [sym__static_type_prefix] = ACTIONS(3030), + }, + [STATE(875)] = { + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_Query] = ACTIONS(2860), + [anon_sym_query] = ACTIONS(2860), + [anon_sym_QUERY] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_SLASH] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [aux_sym_unary_operator_token1] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2860), + [aux_sym_number_token2] = ACTIONS(2858), + [anon_sym_This] = ACTIONS(2860), + [anon_sym_this] = ACTIONS(2860), + [anon_sym_THIS] = ACTIONS(2860), + [anon_sym_Super] = ACTIONS(2860), + [anon_sym_super] = ACTIONS(2860), + [anon_sym_SUPER] = ACTIONS(2860), + [anon_sym_True] = ACTIONS(2860), + [anon_sym_true] = ACTIONS(2860), + [anon_sym_TRUE] = ACTIONS(2860), + [anon_sym_False] = ACTIONS(2860), + [anon_sym_false] = ACTIONS(2860), + [anon_sym_FALSE] = ACTIONS(2860), + [anon_sym_Null] = ACTIONS(2860), + [anon_sym_null] = ACTIONS(2860), + [anon_sym_NULL] = ACTIONS(2860), + [anon_sym_Undefined] = ACTIONS(2860), + [anon_sym_undefined] = ACTIONS(2860), + [anon_sym_UNDEFINED] = ACTIONS(2860), + [anon_sym_get] = ACTIONS(2860), + [anon_sym_set] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [sym_hash_empty] = ACTIONS(2858), + [anon_sym_export] = ACTIONS(2860), + [anon_sym_QueryExecute] = ACTIONS(2860), + [anon_sym_queryexecute] = ACTIONS(2860), + [anon_sym_QUERYEXECUTE] = ACTIONS(2860), + [anon_sym_queryExecute] = ACTIONS(2860), + [anon_sym_BQUOTE] = ACTIONS(2860), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2858), + [anon_sym_Abstract] = ACTIONS(2860), + [anon_sym_abstract] = ACTIONS(2860), + [anon_sym_ABSTRACT] = ACTIONS(2860), + [anon_sym_Break] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_BREAK] = ACTIONS(2860), + [anon_sym_Case] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_CASE] = ACTIONS(2860), + [anon_sym_Component] = ACTIONS(2860), + [anon_sym_component] = ACTIONS(2860), + [anon_sym_COMPONENT] = ACTIONS(2860), + [anon_sym_Continue] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_CONTINUE] = ACTIONS(2860), + [anon_sym_Debugger] = ACTIONS(2860), + [anon_sym_debugger] = ACTIONS(2860), + [anon_sym_DEBUGGER] = ACTIONS(2860), + [anon_sym_Default] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_DEFAULT] = ACTIONS(2860), + [anon_sym_Do] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_DO] = ACTIONS(2860), + [anon_sym_Final] = ACTIONS(2860), + [anon_sym_final] = ACTIONS(2860), + [anon_sym_FINAL] = ACTIONS(2860), + [anon_sym_For] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_FOR] = ACTIONS(2860), + [anon_sym_Function] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_FUNCTION] = ACTIONS(2860), + [anon_sym_If] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_IF] = ACTIONS(2860), + [anon_sym_Import] = ACTIONS(2860), + [anon_sym_import] = ACTIONS(2860), + [anon_sym_IMPORT] = ACTIONS(2860), + [anon_sym_Include] = ACTIONS(2860), + [anon_sym_include] = ACTIONS(2860), + [anon_sym_INCLUDE] = ACTIONS(2860), + [anon_sym_Interface] = ACTIONS(2860), + [anon_sym_interface] = ACTIONS(2860), + [anon_sym_INTERFACE] = ACTIONS(2860), + [anon_sym_New] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_NEW] = ACTIONS(2860), + [anon_sym_Package] = ACTIONS(2860), + [anon_sym_package] = ACTIONS(2860), + [anon_sym_PACKAGE] = ACTIONS(2860), + [anon_sym_Private] = ACTIONS(2860), + [anon_sym_private] = ACTIONS(2860), + [anon_sym_PRIVATE] = ACTIONS(2860), + [anon_sym_Property] = ACTIONS(2860), + [anon_sym_property] = ACTIONS(2860), + [anon_sym_PROPERTY] = ACTIONS(2860), + [anon_sym_Public] = ACTIONS(2860), + [anon_sym_public] = ACTIONS(2860), + [anon_sym_PUBLIC] = ACTIONS(2860), + [anon_sym_Remote] = ACTIONS(2860), + [anon_sym_remote] = ACTIONS(2860), + [anon_sym_REMOTE] = ACTIONS(2860), + [anon_sym_Return] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_RETURN] = ACTIONS(2860), + [anon_sym_Static] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_STATIC] = ACTIONS(2860), + [anon_sym_Switch] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_SWITCH] = ACTIONS(2860), + [anon_sym_Throw] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_THROW] = ACTIONS(2860), + [anon_sym_Try] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_TRY] = ACTIONS(2860), + [anon_sym_Var] = ACTIONS(2860), + [anon_sym_var] = ACTIONS(2860), + [anon_sym_VAR] = ACTIONS(2860), + [anon_sym_While] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_WHILE] = ACTIONS(2860), + [anon_sym_With] = ACTIONS(2860), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_WITH] = ACTIONS(2860), + [sym_cf_comment] = ACTIONS(2858), + [sym__java_block_open] = ACTIONS(2858), + [sym__static_type_prefix] = ACTIONS(2858), + }, + [STATE(876)] = { + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_Query] = ACTIONS(2864), + [anon_sym_query] = ACTIONS(2864), + [anon_sym_QUERY] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_SLASH] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [aux_sym_unary_operator_token1] = ACTIONS(2864), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2864), + [aux_sym_number_token2] = ACTIONS(2862), + [anon_sym_This] = ACTIONS(2864), + [anon_sym_this] = ACTIONS(2864), + [anon_sym_THIS] = ACTIONS(2864), + [anon_sym_Super] = ACTIONS(2864), + [anon_sym_super] = ACTIONS(2864), + [anon_sym_SUPER] = ACTIONS(2864), + [anon_sym_True] = ACTIONS(2864), + [anon_sym_true] = ACTIONS(2864), + [anon_sym_TRUE] = ACTIONS(2864), + [anon_sym_False] = ACTIONS(2864), + [anon_sym_false] = ACTIONS(2864), + [anon_sym_FALSE] = ACTIONS(2864), + [anon_sym_Null] = ACTIONS(2864), + [anon_sym_null] = ACTIONS(2864), + [anon_sym_NULL] = ACTIONS(2864), + [anon_sym_Undefined] = ACTIONS(2864), + [anon_sym_undefined] = ACTIONS(2864), + [anon_sym_UNDEFINED] = ACTIONS(2864), + [anon_sym_get] = ACTIONS(2864), + [anon_sym_set] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [sym_hash_empty] = ACTIONS(2862), + [anon_sym_export] = ACTIONS(2864), + [anon_sym_QueryExecute] = ACTIONS(2864), + [anon_sym_queryexecute] = ACTIONS(2864), + [anon_sym_QUERYEXECUTE] = ACTIONS(2864), + [anon_sym_queryExecute] = ACTIONS(2864), + [anon_sym_BQUOTE] = ACTIONS(2864), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2862), + [anon_sym_Abstract] = ACTIONS(2864), + [anon_sym_abstract] = ACTIONS(2864), + [anon_sym_ABSTRACT] = ACTIONS(2864), + [anon_sym_Break] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_BREAK] = ACTIONS(2864), + [anon_sym_Case] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_CASE] = ACTIONS(2864), + [anon_sym_Component] = ACTIONS(2864), + [anon_sym_component] = ACTIONS(2864), + [anon_sym_COMPONENT] = ACTIONS(2864), + [anon_sym_Continue] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_CONTINUE] = ACTIONS(2864), + [anon_sym_Debugger] = ACTIONS(2864), + [anon_sym_debugger] = ACTIONS(2864), + [anon_sym_DEBUGGER] = ACTIONS(2864), + [anon_sym_Default] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_DEFAULT] = ACTIONS(2864), + [anon_sym_Do] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_DO] = ACTIONS(2864), + [anon_sym_Final] = ACTIONS(2864), + [anon_sym_final] = ACTIONS(2864), + [anon_sym_FINAL] = ACTIONS(2864), + [anon_sym_For] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_FOR] = ACTIONS(2864), + [anon_sym_Function] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_FUNCTION] = ACTIONS(2864), + [anon_sym_If] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_IF] = ACTIONS(2864), + [anon_sym_Import] = ACTIONS(2864), + [anon_sym_import] = ACTIONS(2864), + [anon_sym_IMPORT] = ACTIONS(2864), + [anon_sym_Include] = ACTIONS(2864), + [anon_sym_include] = ACTIONS(2864), + [anon_sym_INCLUDE] = ACTIONS(2864), + [anon_sym_Interface] = ACTIONS(2864), + [anon_sym_interface] = ACTIONS(2864), + [anon_sym_INTERFACE] = ACTIONS(2864), + [anon_sym_New] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_NEW] = ACTIONS(2864), + [anon_sym_Package] = ACTIONS(2864), + [anon_sym_package] = ACTIONS(2864), + [anon_sym_PACKAGE] = ACTIONS(2864), + [anon_sym_Private] = ACTIONS(2864), + [anon_sym_private] = ACTIONS(2864), + [anon_sym_PRIVATE] = ACTIONS(2864), + [anon_sym_Property] = ACTIONS(2864), + [anon_sym_property] = ACTIONS(2864), + [anon_sym_PROPERTY] = ACTIONS(2864), + [anon_sym_Public] = ACTIONS(2864), + [anon_sym_public] = ACTIONS(2864), + [anon_sym_PUBLIC] = ACTIONS(2864), + [anon_sym_Remote] = ACTIONS(2864), + [anon_sym_remote] = ACTIONS(2864), + [anon_sym_REMOTE] = ACTIONS(2864), + [anon_sym_Return] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_RETURN] = ACTIONS(2864), + [anon_sym_Static] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_STATIC] = ACTIONS(2864), + [anon_sym_Switch] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_SWITCH] = ACTIONS(2864), + [anon_sym_Throw] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_THROW] = ACTIONS(2864), + [anon_sym_Try] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_TRY] = ACTIONS(2864), + [anon_sym_Var] = ACTIONS(2864), + [anon_sym_var] = ACTIONS(2864), + [anon_sym_VAR] = ACTIONS(2864), + [anon_sym_While] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_WHILE] = ACTIONS(2864), + [anon_sym_With] = ACTIONS(2864), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_WITH] = ACTIONS(2864), + [sym_cf_comment] = ACTIONS(2862), + [sym__java_block_open] = ACTIONS(2862), + [sym__static_type_prefix] = ACTIONS(2862), + }, + [STATE(877)] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_Query] = ACTIONS(2868), + [anon_sym_query] = ACTIONS(2868), + [anon_sym_QUERY] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [aux_sym_unary_operator_token1] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2868), + [aux_sym_number_token2] = ACTIONS(2866), + [anon_sym_This] = ACTIONS(2868), + [anon_sym_this] = ACTIONS(2868), + [anon_sym_THIS] = ACTIONS(2868), + [anon_sym_Super] = ACTIONS(2868), + [anon_sym_super] = ACTIONS(2868), + [anon_sym_SUPER] = ACTIONS(2868), + [anon_sym_True] = ACTIONS(2868), + [anon_sym_true] = ACTIONS(2868), + [anon_sym_TRUE] = ACTIONS(2868), + [anon_sym_False] = ACTIONS(2868), + [anon_sym_false] = ACTIONS(2868), + [anon_sym_FALSE] = ACTIONS(2868), + [anon_sym_Null] = ACTIONS(2868), + [anon_sym_null] = ACTIONS(2868), + [anon_sym_NULL] = ACTIONS(2868), + [anon_sym_Undefined] = ACTIONS(2868), + [anon_sym_undefined] = ACTIONS(2868), + [anon_sym_UNDEFINED] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [sym_hash_empty] = ACTIONS(2866), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_QueryExecute] = ACTIONS(2868), + [anon_sym_queryexecute] = ACTIONS(2868), + [anon_sym_QUERYEXECUTE] = ACTIONS(2868), + [anon_sym_queryExecute] = ACTIONS(2868), + [anon_sym_BQUOTE] = ACTIONS(2868), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2866), + [anon_sym_Abstract] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_ABSTRACT] = ACTIONS(2868), + [anon_sym_Break] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_BREAK] = ACTIONS(2868), + [anon_sym_Case] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_CASE] = ACTIONS(2868), + [anon_sym_Component] = ACTIONS(2868), + [anon_sym_component] = ACTIONS(2868), + [anon_sym_COMPONENT] = ACTIONS(2868), + [anon_sym_Continue] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_CONTINUE] = ACTIONS(2868), + [anon_sym_Debugger] = ACTIONS(2868), + [anon_sym_debugger] = ACTIONS(2868), + [anon_sym_DEBUGGER] = ACTIONS(2868), + [anon_sym_Default] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_DEFAULT] = ACTIONS(2868), + [anon_sym_Do] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_DO] = ACTIONS(2868), + [anon_sym_Final] = ACTIONS(2868), + [anon_sym_final] = ACTIONS(2868), + [anon_sym_FINAL] = ACTIONS(2868), + [anon_sym_For] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_FOR] = ACTIONS(2868), + [anon_sym_Function] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_FUNCTION] = ACTIONS(2868), + [anon_sym_If] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_IF] = ACTIONS(2868), + [anon_sym_Import] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_IMPORT] = ACTIONS(2868), + [anon_sym_Include] = ACTIONS(2868), + [anon_sym_include] = ACTIONS(2868), + [anon_sym_INCLUDE] = ACTIONS(2868), + [anon_sym_Interface] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_INTERFACE] = ACTIONS(2868), + [anon_sym_New] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_NEW] = ACTIONS(2868), + [anon_sym_Package] = ACTIONS(2868), + [anon_sym_package] = ACTIONS(2868), + [anon_sym_PACKAGE] = ACTIONS(2868), + [anon_sym_Private] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_PRIVATE] = ACTIONS(2868), + [anon_sym_Property] = ACTIONS(2868), + [anon_sym_property] = ACTIONS(2868), + [anon_sym_PROPERTY] = ACTIONS(2868), + [anon_sym_Public] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_PUBLIC] = ACTIONS(2868), + [anon_sym_Remote] = ACTIONS(2868), + [anon_sym_remote] = ACTIONS(2868), + [anon_sym_REMOTE] = ACTIONS(2868), + [anon_sym_Return] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_RETURN] = ACTIONS(2868), + [anon_sym_Static] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_STATIC] = ACTIONS(2868), + [anon_sym_Switch] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_SWITCH] = ACTIONS(2868), + [anon_sym_Throw] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_THROW] = ACTIONS(2868), + [anon_sym_Try] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_TRY] = ACTIONS(2868), + [anon_sym_Var] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [anon_sym_VAR] = ACTIONS(2868), + [anon_sym_While] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_WHILE] = ACTIONS(2868), + [anon_sym_With] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_WITH] = ACTIONS(2868), + [sym_cf_comment] = ACTIONS(2866), + [sym__java_block_open] = ACTIONS(2866), + [sym__static_type_prefix] = ACTIONS(2866), + }, + [STATE(878)] = { + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_Query] = ACTIONS(2776), + [anon_sym_query] = ACTIONS(2776), + [anon_sym_QUERY] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_SLASH] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [aux_sym_unary_operator_token1] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2776), + [aux_sym_number_token2] = ACTIONS(2774), + [anon_sym_This] = ACTIONS(2776), + [anon_sym_this] = ACTIONS(2776), + [anon_sym_THIS] = ACTIONS(2776), + [anon_sym_Super] = ACTIONS(2776), + [anon_sym_super] = ACTIONS(2776), + [anon_sym_SUPER] = ACTIONS(2776), + [anon_sym_True] = ACTIONS(2776), + [anon_sym_true] = ACTIONS(2776), + [anon_sym_TRUE] = ACTIONS(2776), + [anon_sym_False] = ACTIONS(2776), + [anon_sym_false] = ACTIONS(2776), + [anon_sym_FALSE] = ACTIONS(2776), + [anon_sym_Null] = ACTIONS(2776), + [anon_sym_null] = ACTIONS(2776), + [anon_sym_NULL] = ACTIONS(2776), + [anon_sym_Undefined] = ACTIONS(2776), + [anon_sym_undefined] = ACTIONS(2776), + [anon_sym_UNDEFINED] = ACTIONS(2776), + [anon_sym_get] = ACTIONS(2776), + [anon_sym_set] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2776), + [sym_hash_empty] = ACTIONS(2774), + [anon_sym_export] = ACTIONS(2776), + [anon_sym_QueryExecute] = ACTIONS(2776), + [anon_sym_queryexecute] = ACTIONS(2776), + [anon_sym_QUERYEXECUTE] = ACTIONS(2776), + [anon_sym_queryExecute] = ACTIONS(2776), + [anon_sym_BQUOTE] = ACTIONS(2776), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2774), + [anon_sym_Abstract] = ACTIONS(2776), + [anon_sym_abstract] = ACTIONS(2776), + [anon_sym_ABSTRACT] = ACTIONS(2776), + [anon_sym_Break] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_BREAK] = ACTIONS(2776), + [anon_sym_Case] = ACTIONS(2776), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_CASE] = ACTIONS(2776), + [anon_sym_Component] = ACTIONS(2776), + [anon_sym_component] = ACTIONS(2776), + [anon_sym_COMPONENT] = ACTIONS(2776), + [anon_sym_Continue] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_CONTINUE] = ACTIONS(2776), + [anon_sym_Debugger] = ACTIONS(2776), + [anon_sym_debugger] = ACTIONS(2776), + [anon_sym_DEBUGGER] = ACTIONS(2776), + [anon_sym_Default] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_DEFAULT] = ACTIONS(2776), + [anon_sym_Do] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_DO] = ACTIONS(2776), + [anon_sym_Final] = ACTIONS(2776), + [anon_sym_final] = ACTIONS(2776), + [anon_sym_FINAL] = ACTIONS(2776), + [anon_sym_For] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_FOR] = ACTIONS(2776), + [anon_sym_Function] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2776), + [anon_sym_FUNCTION] = ACTIONS(2776), + [anon_sym_If] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_IF] = ACTIONS(2776), + [anon_sym_Import] = ACTIONS(2776), + [anon_sym_import] = ACTIONS(2776), + [anon_sym_IMPORT] = ACTIONS(2776), + [anon_sym_Include] = ACTIONS(2776), + [anon_sym_include] = ACTIONS(2776), + [anon_sym_INCLUDE] = ACTIONS(2776), + [anon_sym_Interface] = ACTIONS(2776), + [anon_sym_interface] = ACTIONS(2776), + [anon_sym_INTERFACE] = ACTIONS(2776), + [anon_sym_New] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_NEW] = ACTIONS(2776), + [anon_sym_Package] = ACTIONS(2776), + [anon_sym_package] = ACTIONS(2776), + [anon_sym_PACKAGE] = ACTIONS(2776), + [anon_sym_Private] = ACTIONS(2776), + [anon_sym_private] = ACTIONS(2776), + [anon_sym_PRIVATE] = ACTIONS(2776), + [anon_sym_Property] = ACTIONS(2776), + [anon_sym_property] = ACTIONS(2776), + [anon_sym_PROPERTY] = ACTIONS(2776), + [anon_sym_Public] = ACTIONS(2776), + [anon_sym_public] = ACTIONS(2776), + [anon_sym_PUBLIC] = ACTIONS(2776), + [anon_sym_Remote] = ACTIONS(2776), + [anon_sym_remote] = ACTIONS(2776), + [anon_sym_REMOTE] = ACTIONS(2776), + [anon_sym_Return] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_RETURN] = ACTIONS(2776), + [anon_sym_Static] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_STATIC] = ACTIONS(2776), + [anon_sym_Switch] = ACTIONS(2776), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_SWITCH] = ACTIONS(2776), + [anon_sym_Throw] = ACTIONS(2776), + [anon_sym_throw] = ACTIONS(2776), + [anon_sym_THROW] = ACTIONS(2776), + [anon_sym_Try] = ACTIONS(2776), + [anon_sym_try] = ACTIONS(2776), + [anon_sym_TRY] = ACTIONS(2776), + [anon_sym_Var] = ACTIONS(2776), + [anon_sym_var] = ACTIONS(2776), + [anon_sym_VAR] = ACTIONS(2776), + [anon_sym_While] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_WHILE] = ACTIONS(2776), + [anon_sym_With] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2776), + [anon_sym_WITH] = ACTIONS(2776), + [sym_cf_comment] = ACTIONS(2774), + [sym__java_block_open] = ACTIONS(2774), + [sym__static_type_prefix] = ACTIONS(2774), + }, + [STATE(879)] = { + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_Query] = ACTIONS(2872), + [anon_sym_query] = ACTIONS(2872), + [anon_sym_QUERY] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_SLASH] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [aux_sym_unary_operator_token1] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2872), + [aux_sym_number_token2] = ACTIONS(2870), + [anon_sym_This] = ACTIONS(2872), + [anon_sym_this] = ACTIONS(2872), + [anon_sym_THIS] = ACTIONS(2872), + [anon_sym_Super] = ACTIONS(2872), + [anon_sym_super] = ACTIONS(2872), + [anon_sym_SUPER] = ACTIONS(2872), + [anon_sym_True] = ACTIONS(2872), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_TRUE] = ACTIONS(2872), + [anon_sym_False] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [anon_sym_FALSE] = ACTIONS(2872), + [anon_sym_Null] = ACTIONS(2872), + [anon_sym_null] = ACTIONS(2872), + [anon_sym_NULL] = ACTIONS(2872), + [anon_sym_Undefined] = ACTIONS(2872), + [anon_sym_undefined] = ACTIONS(2872), + [anon_sym_UNDEFINED] = ACTIONS(2872), + [anon_sym_get] = ACTIONS(2872), + [anon_sym_set] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [sym_hash_empty] = ACTIONS(2870), + [anon_sym_export] = ACTIONS(2872), + [anon_sym_QueryExecute] = ACTIONS(2872), + [anon_sym_queryexecute] = ACTIONS(2872), + [anon_sym_QUERYEXECUTE] = ACTIONS(2872), + [anon_sym_queryExecute] = ACTIONS(2872), + [anon_sym_BQUOTE] = ACTIONS(2872), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2870), + [anon_sym_Abstract] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_ABSTRACT] = ACTIONS(2872), + [anon_sym_Break] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_BREAK] = ACTIONS(2872), + [anon_sym_Case] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_CASE] = ACTIONS(2872), + [anon_sym_Component] = ACTIONS(2872), + [anon_sym_component] = ACTIONS(2872), + [anon_sym_COMPONENT] = ACTIONS(2872), + [anon_sym_Continue] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_CONTINUE] = ACTIONS(2872), + [anon_sym_Debugger] = ACTIONS(2872), + [anon_sym_debugger] = ACTIONS(2872), + [anon_sym_DEBUGGER] = ACTIONS(2872), + [anon_sym_Default] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_DEFAULT] = ACTIONS(2872), + [anon_sym_Do] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_DO] = ACTIONS(2872), + [anon_sym_Final] = ACTIONS(2872), + [anon_sym_final] = ACTIONS(2872), + [anon_sym_FINAL] = ACTIONS(2872), + [anon_sym_For] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_FOR] = ACTIONS(2872), + [anon_sym_Function] = ACTIONS(2872), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_FUNCTION] = ACTIONS(2872), + [anon_sym_If] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_IF] = ACTIONS(2872), + [anon_sym_Import] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2872), + [anon_sym_IMPORT] = ACTIONS(2872), + [anon_sym_Include] = ACTIONS(2872), + [anon_sym_include] = ACTIONS(2872), + [anon_sym_INCLUDE] = ACTIONS(2872), + [anon_sym_Interface] = ACTIONS(2872), + [anon_sym_interface] = ACTIONS(2872), + [anon_sym_INTERFACE] = ACTIONS(2872), + [anon_sym_New] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_NEW] = ACTIONS(2872), + [anon_sym_Package] = ACTIONS(2872), + [anon_sym_package] = ACTIONS(2872), + [anon_sym_PACKAGE] = ACTIONS(2872), + [anon_sym_Private] = ACTIONS(2872), + [anon_sym_private] = ACTIONS(2872), + [anon_sym_PRIVATE] = ACTIONS(2872), + [anon_sym_Property] = ACTIONS(2872), + [anon_sym_property] = ACTIONS(2872), + [anon_sym_PROPERTY] = ACTIONS(2872), + [anon_sym_Public] = ACTIONS(2872), + [anon_sym_public] = ACTIONS(2872), + [anon_sym_PUBLIC] = ACTIONS(2872), + [anon_sym_Remote] = ACTIONS(2872), + [anon_sym_remote] = ACTIONS(2872), + [anon_sym_REMOTE] = ACTIONS(2872), + [anon_sym_Return] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_RETURN] = ACTIONS(2872), + [anon_sym_Static] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_STATIC] = ACTIONS(2872), + [anon_sym_Switch] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_SWITCH] = ACTIONS(2872), + [anon_sym_Throw] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_THROW] = ACTIONS(2872), + [anon_sym_Try] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_TRY] = ACTIONS(2872), + [anon_sym_Var] = ACTIONS(2872), + [anon_sym_var] = ACTIONS(2872), + [anon_sym_VAR] = ACTIONS(2872), + [anon_sym_While] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_WHILE] = ACTIONS(2872), + [anon_sym_With] = ACTIONS(2872), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_WITH] = ACTIONS(2872), + [sym_cf_comment] = ACTIONS(2870), + [sym__java_block_open] = ACTIONS(2870), + [sym__static_type_prefix] = ACTIONS(2870), + }, + [STATE(880)] = { + [ts_builtin_sym_end] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3034), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_let] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3034), + [anon_sym_Query] = ACTIONS(3036), + [anon_sym_query] = ACTIONS(3036), + [anon_sym_QUERY] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [aux_sym_unary_operator_token1] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3034), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3036), + [aux_sym_number_token2] = ACTIONS(3034), + [anon_sym_This] = ACTIONS(3036), + [anon_sym_this] = ACTIONS(3036), + [anon_sym_THIS] = ACTIONS(3036), + [anon_sym_Super] = ACTIONS(3036), + [anon_sym_super] = ACTIONS(3036), + [anon_sym_SUPER] = ACTIONS(3036), + [anon_sym_True] = ACTIONS(3036), + [anon_sym_true] = ACTIONS(3036), + [anon_sym_TRUE] = ACTIONS(3036), + [anon_sym_False] = ACTIONS(3036), + [anon_sym_false] = ACTIONS(3036), + [anon_sym_FALSE] = ACTIONS(3036), + [anon_sym_Null] = ACTIONS(3036), + [anon_sym_null] = ACTIONS(3036), + [anon_sym_NULL] = ACTIONS(3036), + [anon_sym_Undefined] = ACTIONS(3036), + [anon_sym_undefined] = ACTIONS(3036), + [anon_sym_UNDEFINED] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(3036), + [anon_sym_set] = ACTIONS(3036), + [anon_sym_POUND] = ACTIONS(3036), + [sym_hash_empty] = ACTIONS(3034), + [anon_sym_export] = ACTIONS(3036), + [anon_sym_QueryExecute] = ACTIONS(3036), + [anon_sym_queryexecute] = ACTIONS(3036), + [anon_sym_QUERYEXECUTE] = ACTIONS(3036), + [anon_sym_queryExecute] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3034), + [anon_sym_Abstract] = ACTIONS(3036), + [anon_sym_abstract] = ACTIONS(3036), + [anon_sym_ABSTRACT] = ACTIONS(3036), + [anon_sym_Break] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_BREAK] = ACTIONS(3036), + [anon_sym_Case] = ACTIONS(3036), + [anon_sym_case] = ACTIONS(3036), + [anon_sym_CASE] = ACTIONS(3036), + [anon_sym_Component] = ACTIONS(3036), + [anon_sym_component] = ACTIONS(3036), + [anon_sym_COMPONENT] = ACTIONS(3036), + [anon_sym_Continue] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_CONTINUE] = ACTIONS(3036), + [anon_sym_Debugger] = ACTIONS(3036), + [anon_sym_debugger] = ACTIONS(3036), + [anon_sym_DEBUGGER] = ACTIONS(3036), + [anon_sym_Default] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_DEFAULT] = ACTIONS(3036), + [anon_sym_Do] = ACTIONS(3036), + [anon_sym_do] = ACTIONS(3036), + [anon_sym_DO] = ACTIONS(3036), + [anon_sym_Final] = ACTIONS(3036), + [anon_sym_final] = ACTIONS(3036), + [anon_sym_FINAL] = ACTIONS(3036), + [anon_sym_For] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_FOR] = ACTIONS(3036), + [anon_sym_Function] = ACTIONS(3036), + [anon_sym_function] = ACTIONS(3036), + [anon_sym_FUNCTION] = ACTIONS(3036), + [anon_sym_If] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_IF] = ACTIONS(3036), + [anon_sym_Import] = ACTIONS(3036), + [anon_sym_import] = ACTIONS(3036), + [anon_sym_IMPORT] = ACTIONS(3036), + [anon_sym_Include] = ACTIONS(3036), + [anon_sym_include] = ACTIONS(3036), + [anon_sym_INCLUDE] = ACTIONS(3036), + [anon_sym_Interface] = ACTIONS(3036), + [anon_sym_interface] = ACTIONS(3036), + [anon_sym_INTERFACE] = ACTIONS(3036), + [anon_sym_New] = ACTIONS(3036), + [anon_sym_new] = ACTIONS(3036), + [anon_sym_NEW] = ACTIONS(3036), + [anon_sym_Package] = ACTIONS(3036), + [anon_sym_package] = ACTIONS(3036), + [anon_sym_PACKAGE] = ACTIONS(3036), + [anon_sym_Private] = ACTIONS(3036), + [anon_sym_private] = ACTIONS(3036), + [anon_sym_PRIVATE] = ACTIONS(3036), + [anon_sym_Property] = ACTIONS(3036), + [anon_sym_property] = ACTIONS(3036), + [anon_sym_PROPERTY] = ACTIONS(3036), + [anon_sym_Public] = ACTIONS(3036), + [anon_sym_public] = ACTIONS(3036), + [anon_sym_PUBLIC] = ACTIONS(3036), + [anon_sym_Remote] = ACTIONS(3036), + [anon_sym_remote] = ACTIONS(3036), + [anon_sym_REMOTE] = ACTIONS(3036), + [anon_sym_Return] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_RETURN] = ACTIONS(3036), + [anon_sym_Static] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_STATIC] = ACTIONS(3036), + [anon_sym_Switch] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3036), + [anon_sym_SWITCH] = ACTIONS(3036), + [anon_sym_Throw] = ACTIONS(3036), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_THROW] = ACTIONS(3036), + [anon_sym_Try] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [anon_sym_TRY] = ACTIONS(3036), + [anon_sym_Var] = ACTIONS(3036), + [anon_sym_var] = ACTIONS(3036), + [anon_sym_VAR] = ACTIONS(3036), + [anon_sym_While] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_WHILE] = ACTIONS(3036), + [anon_sym_With] = ACTIONS(3036), + [anon_sym_with] = ACTIONS(3036), + [anon_sym_WITH] = ACTIONS(3036), + [sym_cf_comment] = ACTIONS(3034), + [sym__java_block_open] = ACTIONS(3034), + [sym__static_type_prefix] = ACTIONS(3034), + }, + [STATE(881)] = { + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_Query] = ACTIONS(2876), + [anon_sym_query] = ACTIONS(2876), + [anon_sym_QUERY] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_SLASH] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [aux_sym_unary_operator_token1] = ACTIONS(2876), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2876), + [aux_sym_number_token2] = ACTIONS(2874), + [anon_sym_This] = ACTIONS(2876), + [anon_sym_this] = ACTIONS(2876), + [anon_sym_THIS] = ACTIONS(2876), + [anon_sym_Super] = ACTIONS(2876), + [anon_sym_super] = ACTIONS(2876), + [anon_sym_SUPER] = ACTIONS(2876), + [anon_sym_True] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2876), + [anon_sym_TRUE] = ACTIONS(2876), + [anon_sym_False] = ACTIONS(2876), + [anon_sym_false] = ACTIONS(2876), + [anon_sym_FALSE] = ACTIONS(2876), + [anon_sym_Null] = ACTIONS(2876), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_NULL] = ACTIONS(2876), + [anon_sym_Undefined] = ACTIONS(2876), + [anon_sym_undefined] = ACTIONS(2876), + [anon_sym_UNDEFINED] = ACTIONS(2876), + [anon_sym_get] = ACTIONS(2876), + [anon_sym_set] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(2876), + [sym_hash_empty] = ACTIONS(2874), + [anon_sym_export] = ACTIONS(2876), + [anon_sym_QueryExecute] = ACTIONS(2876), + [anon_sym_queryexecute] = ACTIONS(2876), + [anon_sym_QUERYEXECUTE] = ACTIONS(2876), + [anon_sym_queryExecute] = ACTIONS(2876), + [anon_sym_BQUOTE] = ACTIONS(2876), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2874), + [anon_sym_Abstract] = ACTIONS(2876), + [anon_sym_abstract] = ACTIONS(2876), + [anon_sym_ABSTRACT] = ACTIONS(2876), + [anon_sym_Break] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_BREAK] = ACTIONS(2876), + [anon_sym_Case] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_CASE] = ACTIONS(2876), + [anon_sym_Component] = ACTIONS(2876), + [anon_sym_component] = ACTIONS(2876), + [anon_sym_COMPONENT] = ACTIONS(2876), + [anon_sym_Continue] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_CONTINUE] = ACTIONS(2876), + [anon_sym_Debugger] = ACTIONS(2876), + [anon_sym_debugger] = ACTIONS(2876), + [anon_sym_DEBUGGER] = ACTIONS(2876), + [anon_sym_Default] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_DEFAULT] = ACTIONS(2876), + [anon_sym_Do] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_DO] = ACTIONS(2876), + [anon_sym_Final] = ACTIONS(2876), + [anon_sym_final] = ACTIONS(2876), + [anon_sym_FINAL] = ACTIONS(2876), + [anon_sym_For] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_FOR] = ACTIONS(2876), + [anon_sym_Function] = ACTIONS(2876), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_FUNCTION] = ACTIONS(2876), + [anon_sym_If] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_IF] = ACTIONS(2876), + [anon_sym_Import] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2876), + [anon_sym_IMPORT] = ACTIONS(2876), + [anon_sym_Include] = ACTIONS(2876), + [anon_sym_include] = ACTIONS(2876), + [anon_sym_INCLUDE] = ACTIONS(2876), + [anon_sym_Interface] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2876), + [anon_sym_INTERFACE] = ACTIONS(2876), + [anon_sym_New] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_NEW] = ACTIONS(2876), + [anon_sym_Package] = ACTIONS(2876), + [anon_sym_package] = ACTIONS(2876), + [anon_sym_PACKAGE] = ACTIONS(2876), + [anon_sym_Private] = ACTIONS(2876), + [anon_sym_private] = ACTIONS(2876), + [anon_sym_PRIVATE] = ACTIONS(2876), + [anon_sym_Property] = ACTIONS(2876), + [anon_sym_property] = ACTIONS(2876), + [anon_sym_PROPERTY] = ACTIONS(2876), + [anon_sym_Public] = ACTIONS(2876), + [anon_sym_public] = ACTIONS(2876), + [anon_sym_PUBLIC] = ACTIONS(2876), + [anon_sym_Remote] = ACTIONS(2876), + [anon_sym_remote] = ACTIONS(2876), + [anon_sym_REMOTE] = ACTIONS(2876), + [anon_sym_Return] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_RETURN] = ACTIONS(2876), + [anon_sym_Static] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_STATIC] = ACTIONS(2876), + [anon_sym_Switch] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_SWITCH] = ACTIONS(2876), + [anon_sym_Throw] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_THROW] = ACTIONS(2876), + [anon_sym_Try] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_TRY] = ACTIONS(2876), + [anon_sym_Var] = ACTIONS(2876), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_VAR] = ACTIONS(2876), + [anon_sym_While] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_WHILE] = ACTIONS(2876), + [anon_sym_With] = ACTIONS(2876), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_WITH] = ACTIONS(2876), + [sym_cf_comment] = ACTIONS(2874), + [sym__java_block_open] = ACTIONS(2874), + [sym__static_type_prefix] = ACTIONS(2874), + }, + [STATE(882)] = { + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_Query] = ACTIONS(2880), + [anon_sym_query] = ACTIONS(2880), + [anon_sym_QUERY] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [aux_sym_unary_operator_token1] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2880), + [aux_sym_number_token2] = ACTIONS(2878), + [anon_sym_This] = ACTIONS(2880), + [anon_sym_this] = ACTIONS(2880), + [anon_sym_THIS] = ACTIONS(2880), + [anon_sym_Super] = ACTIONS(2880), + [anon_sym_super] = ACTIONS(2880), + [anon_sym_SUPER] = ACTIONS(2880), + [anon_sym_True] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_TRUE] = ACTIONS(2880), + [anon_sym_False] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_FALSE] = ACTIONS(2880), + [anon_sym_Null] = ACTIONS(2880), + [anon_sym_null] = ACTIONS(2880), + [anon_sym_NULL] = ACTIONS(2880), + [anon_sym_Undefined] = ACTIONS(2880), + [anon_sym_undefined] = ACTIONS(2880), + [anon_sym_UNDEFINED] = ACTIONS(2880), + [anon_sym_get] = ACTIONS(2880), + [anon_sym_set] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [sym_hash_empty] = ACTIONS(2878), + [anon_sym_export] = ACTIONS(2880), + [anon_sym_QueryExecute] = ACTIONS(2880), + [anon_sym_queryexecute] = ACTIONS(2880), + [anon_sym_QUERYEXECUTE] = ACTIONS(2880), + [anon_sym_queryExecute] = ACTIONS(2880), + [anon_sym_BQUOTE] = ACTIONS(2880), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2878), + [anon_sym_Abstract] = ACTIONS(2880), + [anon_sym_abstract] = ACTIONS(2880), + [anon_sym_ABSTRACT] = ACTIONS(2880), + [anon_sym_Break] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_BREAK] = ACTIONS(2880), + [anon_sym_Case] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_CASE] = ACTIONS(2880), + [anon_sym_Component] = ACTIONS(2880), + [anon_sym_component] = ACTIONS(2880), + [anon_sym_COMPONENT] = ACTIONS(2880), + [anon_sym_Continue] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_CONTINUE] = ACTIONS(2880), + [anon_sym_Debugger] = ACTIONS(2880), + [anon_sym_debugger] = ACTIONS(2880), + [anon_sym_DEBUGGER] = ACTIONS(2880), + [anon_sym_Default] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_DEFAULT] = ACTIONS(2880), + [anon_sym_Do] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_DO] = ACTIONS(2880), + [anon_sym_Final] = ACTIONS(2880), + [anon_sym_final] = ACTIONS(2880), + [anon_sym_FINAL] = ACTIONS(2880), + [anon_sym_For] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_FOR] = ACTIONS(2880), + [anon_sym_Function] = ACTIONS(2880), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_FUNCTION] = ACTIONS(2880), + [anon_sym_If] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_IF] = ACTIONS(2880), + [anon_sym_Import] = ACTIONS(2880), + [anon_sym_import] = ACTIONS(2880), + [anon_sym_IMPORT] = ACTIONS(2880), + [anon_sym_Include] = ACTIONS(2880), + [anon_sym_include] = ACTIONS(2880), + [anon_sym_INCLUDE] = ACTIONS(2880), + [anon_sym_Interface] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_INTERFACE] = ACTIONS(2880), + [anon_sym_New] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_NEW] = ACTIONS(2880), + [anon_sym_Package] = ACTIONS(2880), + [anon_sym_package] = ACTIONS(2880), + [anon_sym_PACKAGE] = ACTIONS(2880), + [anon_sym_Private] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_PRIVATE] = ACTIONS(2880), + [anon_sym_Property] = ACTIONS(2880), + [anon_sym_property] = ACTIONS(2880), + [anon_sym_PROPERTY] = ACTIONS(2880), + [anon_sym_Public] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_PUBLIC] = ACTIONS(2880), + [anon_sym_Remote] = ACTIONS(2880), + [anon_sym_remote] = ACTIONS(2880), + [anon_sym_REMOTE] = ACTIONS(2880), + [anon_sym_Return] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_RETURN] = ACTIONS(2880), + [anon_sym_Static] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_STATIC] = ACTIONS(2880), + [anon_sym_Switch] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_SWITCH] = ACTIONS(2880), + [anon_sym_Throw] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_THROW] = ACTIONS(2880), + [anon_sym_Try] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_TRY] = ACTIONS(2880), + [anon_sym_Var] = ACTIONS(2880), + [anon_sym_var] = ACTIONS(2880), + [anon_sym_VAR] = ACTIONS(2880), + [anon_sym_While] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_WHILE] = ACTIONS(2880), + [anon_sym_With] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_WITH] = ACTIONS(2880), + [sym_cf_comment] = ACTIONS(2878), + [sym__java_block_open] = ACTIONS(2878), + [sym__static_type_prefix] = ACTIONS(2878), + }, + [STATE(883)] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_Query] = ACTIONS(2884), + [anon_sym_query] = ACTIONS(2884), + [anon_sym_QUERY] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [aux_sym_unary_operator_token1] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2884), + [aux_sym_number_token2] = ACTIONS(2882), + [anon_sym_This] = ACTIONS(2884), + [anon_sym_this] = ACTIONS(2884), + [anon_sym_THIS] = ACTIONS(2884), + [anon_sym_Super] = ACTIONS(2884), + [anon_sym_super] = ACTIONS(2884), + [anon_sym_SUPER] = ACTIONS(2884), + [anon_sym_True] = ACTIONS(2884), + [anon_sym_true] = ACTIONS(2884), + [anon_sym_TRUE] = ACTIONS(2884), + [anon_sym_False] = ACTIONS(2884), + [anon_sym_false] = ACTIONS(2884), + [anon_sym_FALSE] = ACTIONS(2884), + [anon_sym_Null] = ACTIONS(2884), + [anon_sym_null] = ACTIONS(2884), + [anon_sym_NULL] = ACTIONS(2884), + [anon_sym_Undefined] = ACTIONS(2884), + [anon_sym_undefined] = ACTIONS(2884), + [anon_sym_UNDEFINED] = ACTIONS(2884), + [anon_sym_get] = ACTIONS(2884), + [anon_sym_set] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(2884), + [sym_hash_empty] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2884), + [anon_sym_QueryExecute] = ACTIONS(2884), + [anon_sym_queryexecute] = ACTIONS(2884), + [anon_sym_QUERYEXECUTE] = ACTIONS(2884), + [anon_sym_queryExecute] = ACTIONS(2884), + [anon_sym_BQUOTE] = ACTIONS(2884), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2882), + [anon_sym_Abstract] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_ABSTRACT] = ACTIONS(2884), + [anon_sym_Break] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_BREAK] = ACTIONS(2884), + [anon_sym_Case] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_CASE] = ACTIONS(2884), + [anon_sym_Component] = ACTIONS(2884), + [anon_sym_component] = ACTIONS(2884), + [anon_sym_COMPONENT] = ACTIONS(2884), + [anon_sym_Continue] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_CONTINUE] = ACTIONS(2884), + [anon_sym_Debugger] = ACTIONS(2884), + [anon_sym_debugger] = ACTIONS(2884), + [anon_sym_DEBUGGER] = ACTIONS(2884), + [anon_sym_Default] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_DEFAULT] = ACTIONS(2884), + [anon_sym_Do] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_DO] = ACTIONS(2884), + [anon_sym_Final] = ACTIONS(2884), + [anon_sym_final] = ACTIONS(2884), + [anon_sym_FINAL] = ACTIONS(2884), + [anon_sym_For] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_FOR] = ACTIONS(2884), + [anon_sym_Function] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_FUNCTION] = ACTIONS(2884), + [anon_sym_If] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_IF] = ACTIONS(2884), + [anon_sym_Import] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_IMPORT] = ACTIONS(2884), + [anon_sym_Include] = ACTIONS(2884), + [anon_sym_include] = ACTIONS(2884), + [anon_sym_INCLUDE] = ACTIONS(2884), + [anon_sym_Interface] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_INTERFACE] = ACTIONS(2884), + [anon_sym_New] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_NEW] = ACTIONS(2884), + [anon_sym_Package] = ACTIONS(2884), + [anon_sym_package] = ACTIONS(2884), + [anon_sym_PACKAGE] = ACTIONS(2884), + [anon_sym_Private] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_PRIVATE] = ACTIONS(2884), + [anon_sym_Property] = ACTIONS(2884), + [anon_sym_property] = ACTIONS(2884), + [anon_sym_PROPERTY] = ACTIONS(2884), + [anon_sym_Public] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_PUBLIC] = ACTIONS(2884), + [anon_sym_Remote] = ACTIONS(2884), + [anon_sym_remote] = ACTIONS(2884), + [anon_sym_REMOTE] = ACTIONS(2884), + [anon_sym_Return] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_RETURN] = ACTIONS(2884), + [anon_sym_Static] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_STATIC] = ACTIONS(2884), + [anon_sym_Switch] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_SWITCH] = ACTIONS(2884), + [anon_sym_Throw] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_THROW] = ACTIONS(2884), + [anon_sym_Try] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_TRY] = ACTIONS(2884), + [anon_sym_Var] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [anon_sym_VAR] = ACTIONS(2884), + [anon_sym_While] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_WHILE] = ACTIONS(2884), + [anon_sym_With] = ACTIONS(2884), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_WITH] = ACTIONS(2884), + [sym_cf_comment] = ACTIONS(2882), + [sym__java_block_open] = ACTIONS(2882), + [sym__static_type_prefix] = ACTIONS(2882), + }, + [STATE(884)] = { + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_Query] = ACTIONS(2888), + [anon_sym_query] = ACTIONS(2888), + [anon_sym_QUERY] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [aux_sym_unary_operator_token1] = ACTIONS(2888), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2888), + [aux_sym_number_token2] = ACTIONS(2886), + [anon_sym_This] = ACTIONS(2888), + [anon_sym_this] = ACTIONS(2888), + [anon_sym_THIS] = ACTIONS(2888), + [anon_sym_Super] = ACTIONS(2888), + [anon_sym_super] = ACTIONS(2888), + [anon_sym_SUPER] = ACTIONS(2888), + [anon_sym_True] = ACTIONS(2888), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_TRUE] = ACTIONS(2888), + [anon_sym_False] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_FALSE] = ACTIONS(2888), + [anon_sym_Null] = ACTIONS(2888), + [anon_sym_null] = ACTIONS(2888), + [anon_sym_NULL] = ACTIONS(2888), + [anon_sym_Undefined] = ACTIONS(2888), + [anon_sym_undefined] = ACTIONS(2888), + [anon_sym_UNDEFINED] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2888), + [anon_sym_set] = ACTIONS(2888), + [anon_sym_POUND] = ACTIONS(2888), + [sym_hash_empty] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_QueryExecute] = ACTIONS(2888), + [anon_sym_queryexecute] = ACTIONS(2888), + [anon_sym_QUERYEXECUTE] = ACTIONS(2888), + [anon_sym_queryExecute] = ACTIONS(2888), + [anon_sym_BQUOTE] = ACTIONS(2888), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2886), + [anon_sym_Abstract] = ACTIONS(2888), + [anon_sym_abstract] = ACTIONS(2888), + [anon_sym_ABSTRACT] = ACTIONS(2888), + [anon_sym_Break] = ACTIONS(2888), + [anon_sym_break] = ACTIONS(2888), + [anon_sym_BREAK] = ACTIONS(2888), + [anon_sym_Case] = ACTIONS(2888), + [anon_sym_case] = ACTIONS(2888), + [anon_sym_CASE] = ACTIONS(2888), + [anon_sym_Component] = ACTIONS(2888), + [anon_sym_component] = ACTIONS(2888), + [anon_sym_COMPONENT] = ACTIONS(2888), + [anon_sym_Continue] = ACTIONS(2888), + [anon_sym_continue] = ACTIONS(2888), + [anon_sym_CONTINUE] = ACTIONS(2888), + [anon_sym_Debugger] = ACTIONS(2888), + [anon_sym_debugger] = ACTIONS(2888), + [anon_sym_DEBUGGER] = ACTIONS(2888), + [anon_sym_Default] = ACTIONS(2888), + [anon_sym_default] = ACTIONS(2888), + [anon_sym_DEFAULT] = ACTIONS(2888), + [anon_sym_Do] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_DO] = ACTIONS(2888), + [anon_sym_Final] = ACTIONS(2888), + [anon_sym_final] = ACTIONS(2888), + [anon_sym_FINAL] = ACTIONS(2888), + [anon_sym_For] = ACTIONS(2888), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_FOR] = ACTIONS(2888), + [anon_sym_Function] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_FUNCTION] = ACTIONS(2888), + [anon_sym_If] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_IF] = ACTIONS(2888), + [anon_sym_Import] = ACTIONS(2888), + [anon_sym_import] = ACTIONS(2888), + [anon_sym_IMPORT] = ACTIONS(2888), + [anon_sym_Include] = ACTIONS(2888), + [anon_sym_include] = ACTIONS(2888), + [anon_sym_INCLUDE] = ACTIONS(2888), + [anon_sym_Interface] = ACTIONS(2888), + [anon_sym_interface] = ACTIONS(2888), + [anon_sym_INTERFACE] = ACTIONS(2888), + [anon_sym_New] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_NEW] = ACTIONS(2888), + [anon_sym_Package] = ACTIONS(2888), + [anon_sym_package] = ACTIONS(2888), + [anon_sym_PACKAGE] = ACTIONS(2888), + [anon_sym_Private] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_PRIVATE] = ACTIONS(2888), + [anon_sym_Property] = ACTIONS(2888), + [anon_sym_property] = ACTIONS(2888), + [anon_sym_PROPERTY] = ACTIONS(2888), + [anon_sym_Public] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_PUBLIC] = ACTIONS(2888), + [anon_sym_Remote] = ACTIONS(2888), + [anon_sym_remote] = ACTIONS(2888), + [anon_sym_REMOTE] = ACTIONS(2888), + [anon_sym_Return] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_RETURN] = ACTIONS(2888), + [anon_sym_Static] = ACTIONS(2888), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_STATIC] = ACTIONS(2888), + [anon_sym_Switch] = ACTIONS(2888), + [anon_sym_switch] = ACTIONS(2888), + [anon_sym_SWITCH] = ACTIONS(2888), + [anon_sym_Throw] = ACTIONS(2888), + [anon_sym_throw] = ACTIONS(2888), + [anon_sym_THROW] = ACTIONS(2888), + [anon_sym_Try] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_TRY] = ACTIONS(2888), + [anon_sym_Var] = ACTIONS(2888), + [anon_sym_var] = ACTIONS(2888), + [anon_sym_VAR] = ACTIONS(2888), + [anon_sym_While] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_WHILE] = ACTIONS(2888), + [anon_sym_With] = ACTIONS(2888), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_WITH] = ACTIONS(2888), + [sym_cf_comment] = ACTIONS(2886), + [sym__java_block_open] = ACTIONS(2886), + [sym__static_type_prefix] = ACTIONS(2886), + }, + [STATE(885)] = { + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_Query] = ACTIONS(2780), + [anon_sym_query] = ACTIONS(2780), + [anon_sym_QUERY] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [aux_sym_unary_operator_token1] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2780), + [aux_sym_number_token2] = ACTIONS(2778), + [anon_sym_This] = ACTIONS(2780), + [anon_sym_this] = ACTIONS(2780), + [anon_sym_THIS] = ACTIONS(2780), + [anon_sym_Super] = ACTIONS(2780), + [anon_sym_super] = ACTIONS(2780), + [anon_sym_SUPER] = ACTIONS(2780), + [anon_sym_True] = ACTIONS(2780), + [anon_sym_true] = ACTIONS(2780), + [anon_sym_TRUE] = ACTIONS(2780), + [anon_sym_False] = ACTIONS(2780), + [anon_sym_false] = ACTIONS(2780), + [anon_sym_FALSE] = ACTIONS(2780), + [anon_sym_Null] = ACTIONS(2780), + [anon_sym_null] = ACTIONS(2780), + [anon_sym_NULL] = ACTIONS(2780), + [anon_sym_Undefined] = ACTIONS(2780), + [anon_sym_undefined] = ACTIONS(2780), + [anon_sym_UNDEFINED] = ACTIONS(2780), + [anon_sym_get] = ACTIONS(2780), + [anon_sym_set] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [sym_hash_empty] = ACTIONS(2778), + [anon_sym_export] = ACTIONS(2780), + [anon_sym_QueryExecute] = ACTIONS(2780), + [anon_sym_queryexecute] = ACTIONS(2780), + [anon_sym_QUERYEXECUTE] = ACTIONS(2780), + [anon_sym_queryExecute] = ACTIONS(2780), + [anon_sym_BQUOTE] = ACTIONS(2780), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2778), + [anon_sym_Abstract] = ACTIONS(2780), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_ABSTRACT] = ACTIONS(2780), + [anon_sym_Break] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_BREAK] = ACTIONS(2780), + [anon_sym_Case] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_CASE] = ACTIONS(2780), + [anon_sym_Component] = ACTIONS(2780), + [anon_sym_component] = ACTIONS(2780), + [anon_sym_COMPONENT] = ACTIONS(2780), + [anon_sym_Continue] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_CONTINUE] = ACTIONS(2780), + [anon_sym_Debugger] = ACTIONS(2780), + [anon_sym_debugger] = ACTIONS(2780), + [anon_sym_DEBUGGER] = ACTIONS(2780), + [anon_sym_Default] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_DEFAULT] = ACTIONS(2780), + [anon_sym_Do] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_DO] = ACTIONS(2780), + [anon_sym_Final] = ACTIONS(2780), + [anon_sym_final] = ACTIONS(2780), + [anon_sym_FINAL] = ACTIONS(2780), + [anon_sym_For] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_FOR] = ACTIONS(2780), + [anon_sym_Function] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(2780), + [anon_sym_FUNCTION] = ACTIONS(2780), + [anon_sym_If] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_IF] = ACTIONS(2780), + [anon_sym_Import] = ACTIONS(2780), + [anon_sym_import] = ACTIONS(2780), + [anon_sym_IMPORT] = ACTIONS(2780), + [anon_sym_Include] = ACTIONS(2780), + [anon_sym_include] = ACTIONS(2780), + [anon_sym_INCLUDE] = ACTIONS(2780), + [anon_sym_Interface] = ACTIONS(2780), + [anon_sym_interface] = ACTIONS(2780), + [anon_sym_INTERFACE] = ACTIONS(2780), + [anon_sym_New] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(2780), + [anon_sym_NEW] = ACTIONS(2780), + [anon_sym_Package] = ACTIONS(2780), + [anon_sym_package] = ACTIONS(2780), + [anon_sym_PACKAGE] = ACTIONS(2780), + [anon_sym_Private] = ACTIONS(2780), + [anon_sym_private] = ACTIONS(2780), + [anon_sym_PRIVATE] = ACTIONS(2780), + [anon_sym_Property] = ACTIONS(2780), + [anon_sym_property] = ACTIONS(2780), + [anon_sym_PROPERTY] = ACTIONS(2780), + [anon_sym_Public] = ACTIONS(2780), + [anon_sym_public] = ACTIONS(2780), + [anon_sym_PUBLIC] = ACTIONS(2780), + [anon_sym_Remote] = ACTIONS(2780), + [anon_sym_remote] = ACTIONS(2780), + [anon_sym_REMOTE] = ACTIONS(2780), + [anon_sym_Return] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_RETURN] = ACTIONS(2780), + [anon_sym_Static] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_STATIC] = ACTIONS(2780), + [anon_sym_Switch] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_SWITCH] = ACTIONS(2780), + [anon_sym_Throw] = ACTIONS(2780), + [anon_sym_throw] = ACTIONS(2780), + [anon_sym_THROW] = ACTIONS(2780), + [anon_sym_Try] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [anon_sym_TRY] = ACTIONS(2780), + [anon_sym_Var] = ACTIONS(2780), + [anon_sym_var] = ACTIONS(2780), + [anon_sym_VAR] = ACTIONS(2780), + [anon_sym_While] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_WHILE] = ACTIONS(2780), + [anon_sym_With] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_WITH] = ACTIONS(2780), + [sym_cf_comment] = ACTIONS(2778), + [sym__java_block_open] = ACTIONS(2778), + [sym__static_type_prefix] = ACTIONS(2778), + }, + [STATE(886)] = { + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2890), + [anon_sym_Query] = ACTIONS(2892), + [anon_sym_query] = ACTIONS(2892), + [anon_sym_QUERY] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [aux_sym_unary_operator_token1] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_DQUOTE] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2892), + [aux_sym_number_token2] = ACTIONS(2890), + [anon_sym_This] = ACTIONS(2892), + [anon_sym_this] = ACTIONS(2892), + [anon_sym_THIS] = ACTIONS(2892), + [anon_sym_Super] = ACTIONS(2892), + [anon_sym_super] = ACTIONS(2892), + [anon_sym_SUPER] = ACTIONS(2892), + [anon_sym_True] = ACTIONS(2892), + [anon_sym_true] = ACTIONS(2892), + [anon_sym_TRUE] = ACTIONS(2892), + [anon_sym_False] = ACTIONS(2892), + [anon_sym_false] = ACTIONS(2892), + [anon_sym_FALSE] = ACTIONS(2892), + [anon_sym_Null] = ACTIONS(2892), + [anon_sym_null] = ACTIONS(2892), + [anon_sym_NULL] = ACTIONS(2892), + [anon_sym_Undefined] = ACTIONS(2892), + [anon_sym_undefined] = ACTIONS(2892), + [anon_sym_UNDEFINED] = ACTIONS(2892), + [anon_sym_get] = ACTIONS(2892), + [anon_sym_set] = ACTIONS(2892), + [anon_sym_POUND] = ACTIONS(2892), + [sym_hash_empty] = ACTIONS(2890), + [anon_sym_export] = ACTIONS(2892), + [anon_sym_QueryExecute] = ACTIONS(2892), + [anon_sym_queryexecute] = ACTIONS(2892), + [anon_sym_QUERYEXECUTE] = ACTIONS(2892), + [anon_sym_queryExecute] = ACTIONS(2892), + [anon_sym_BQUOTE] = ACTIONS(2892), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2890), + [anon_sym_Abstract] = ACTIONS(2892), + [anon_sym_abstract] = ACTIONS(2892), + [anon_sym_ABSTRACT] = ACTIONS(2892), + [anon_sym_Break] = ACTIONS(2892), + [anon_sym_break] = ACTIONS(2892), + [anon_sym_BREAK] = ACTIONS(2892), + [anon_sym_Case] = ACTIONS(2892), + [anon_sym_case] = ACTIONS(2892), + [anon_sym_CASE] = ACTIONS(2892), + [anon_sym_Component] = ACTIONS(2892), + [anon_sym_component] = ACTIONS(2892), + [anon_sym_COMPONENT] = ACTIONS(2892), + [anon_sym_Continue] = ACTIONS(2892), + [anon_sym_continue] = ACTIONS(2892), + [anon_sym_CONTINUE] = ACTIONS(2892), + [anon_sym_Debugger] = ACTIONS(2892), + [anon_sym_debugger] = ACTIONS(2892), + [anon_sym_DEBUGGER] = ACTIONS(2892), + [anon_sym_Default] = ACTIONS(2892), + [anon_sym_default] = ACTIONS(2892), + [anon_sym_DEFAULT] = ACTIONS(2892), + [anon_sym_Do] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_DO] = ACTIONS(2892), + [anon_sym_Final] = ACTIONS(2892), + [anon_sym_final] = ACTIONS(2892), + [anon_sym_FINAL] = ACTIONS(2892), + [anon_sym_For] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_FOR] = ACTIONS(2892), + [anon_sym_Function] = ACTIONS(2892), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_FUNCTION] = ACTIONS(2892), + [anon_sym_If] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_IF] = ACTIONS(2892), + [anon_sym_Import] = ACTIONS(2892), + [anon_sym_import] = ACTIONS(2892), + [anon_sym_IMPORT] = ACTIONS(2892), + [anon_sym_Include] = ACTIONS(2892), + [anon_sym_include] = ACTIONS(2892), + [anon_sym_INCLUDE] = ACTIONS(2892), + [anon_sym_Interface] = ACTIONS(2892), + [anon_sym_interface] = ACTIONS(2892), + [anon_sym_INTERFACE] = ACTIONS(2892), + [anon_sym_New] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_NEW] = ACTIONS(2892), + [anon_sym_Package] = ACTIONS(2892), + [anon_sym_package] = ACTIONS(2892), + [anon_sym_PACKAGE] = ACTIONS(2892), + [anon_sym_Private] = ACTIONS(2892), + [anon_sym_private] = ACTIONS(2892), + [anon_sym_PRIVATE] = ACTIONS(2892), + [anon_sym_Property] = ACTIONS(2892), + [anon_sym_property] = ACTIONS(2892), + [anon_sym_PROPERTY] = ACTIONS(2892), + [anon_sym_Public] = ACTIONS(2892), + [anon_sym_public] = ACTIONS(2892), + [anon_sym_PUBLIC] = ACTIONS(2892), + [anon_sym_Remote] = ACTIONS(2892), + [anon_sym_remote] = ACTIONS(2892), + [anon_sym_REMOTE] = ACTIONS(2892), + [anon_sym_Return] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_RETURN] = ACTIONS(2892), + [anon_sym_Static] = ACTIONS(2892), + [anon_sym_static] = ACTIONS(2892), + [anon_sym_STATIC] = ACTIONS(2892), + [anon_sym_Switch] = ACTIONS(2892), + [anon_sym_switch] = ACTIONS(2892), + [anon_sym_SWITCH] = ACTIONS(2892), + [anon_sym_Throw] = ACTIONS(2892), + [anon_sym_throw] = ACTIONS(2892), + [anon_sym_THROW] = ACTIONS(2892), + [anon_sym_Try] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_TRY] = ACTIONS(2892), + [anon_sym_Var] = ACTIONS(2892), + [anon_sym_var] = ACTIONS(2892), + [anon_sym_VAR] = ACTIONS(2892), + [anon_sym_While] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_WHILE] = ACTIONS(2892), + [anon_sym_With] = ACTIONS(2892), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_WITH] = ACTIONS(2892), + [sym_cf_comment] = ACTIONS(2890), + [sym__java_block_open] = ACTIONS(2890), + [sym__static_type_prefix] = ACTIONS(2890), }, - [STATE(835)] = { - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_Query] = ACTIONS(2840), - [anon_sym_query] = ACTIONS(2840), - [anon_sym_QUERY] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [aux_sym_unary_operator_token1] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2838), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2840), - [aux_sym_number_token2] = ACTIONS(2838), - [anon_sym_This] = ACTIONS(2840), - [anon_sym_this] = ACTIONS(2840), - [anon_sym_THIS] = ACTIONS(2840), - [anon_sym_Super] = ACTIONS(2840), - [anon_sym_super] = ACTIONS(2840), - [anon_sym_SUPER] = ACTIONS(2840), - [anon_sym_True] = ACTIONS(2840), - [anon_sym_true] = ACTIONS(2840), - [anon_sym_TRUE] = ACTIONS(2840), - [anon_sym_False] = ACTIONS(2840), - [anon_sym_false] = ACTIONS(2840), - [anon_sym_FALSE] = ACTIONS(2840), - [anon_sym_Null] = ACTIONS(2840), - [anon_sym_null] = ACTIONS(2840), - [anon_sym_NULL] = ACTIONS(2840), - [anon_sym_Undefined] = ACTIONS(2840), - [anon_sym_undefined] = ACTIONS(2840), - [anon_sym_UNDEFINED] = ACTIONS(2840), - [anon_sym_get] = ACTIONS(2840), - [anon_sym_set] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [sym_hash_empty] = ACTIONS(2838), - [anon_sym_export] = ACTIONS(2840), - [anon_sym_QueryExecute] = ACTIONS(2840), - [anon_sym_queryexecute] = ACTIONS(2840), - [anon_sym_QUERYEXECUTE] = ACTIONS(2840), - [anon_sym_queryExecute] = ACTIONS(2840), - [anon_sym_BQUOTE] = ACTIONS(2840), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2838), - [anon_sym_Abstract] = ACTIONS(2840), - [anon_sym_abstract] = ACTIONS(2840), - [anon_sym_ABSTRACT] = ACTIONS(2840), - [anon_sym_Break] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_BREAK] = ACTIONS(2840), - [anon_sym_Case] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_CASE] = ACTIONS(2840), - [anon_sym_Component] = ACTIONS(2840), - [anon_sym_component] = ACTIONS(2840), - [anon_sym_COMPONENT] = ACTIONS(2840), - [anon_sym_Continue] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_CONTINUE] = ACTIONS(2840), - [anon_sym_Debugger] = ACTIONS(2840), - [anon_sym_debugger] = ACTIONS(2840), - [anon_sym_DEBUGGER] = ACTIONS(2840), - [anon_sym_Default] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_DEFAULT] = ACTIONS(2840), - [anon_sym_Do] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_DO] = ACTIONS(2840), - [anon_sym_Final] = ACTIONS(2840), - [anon_sym_final] = ACTIONS(2840), - [anon_sym_FINAL] = ACTIONS(2840), - [anon_sym_For] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_FOR] = ACTIONS(2840), - [anon_sym_Function] = ACTIONS(2840), - [anon_sym_function] = ACTIONS(2840), - [anon_sym_FUNCTION] = ACTIONS(2840), - [anon_sym_If] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_IF] = ACTIONS(2840), - [anon_sym_Import] = ACTIONS(2840), - [anon_sym_import] = ACTIONS(2840), - [anon_sym_IMPORT] = ACTIONS(2840), - [anon_sym_Include] = ACTIONS(2840), - [anon_sym_include] = ACTIONS(2840), - [anon_sym_INCLUDE] = ACTIONS(2840), - [anon_sym_Interface] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_INTERFACE] = ACTIONS(2840), - [anon_sym_New] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_NEW] = ACTIONS(2840), - [anon_sym_Package] = ACTIONS(2840), - [anon_sym_package] = ACTIONS(2840), - [anon_sym_PACKAGE] = ACTIONS(2840), - [anon_sym_Private] = ACTIONS(2840), - [anon_sym_private] = ACTIONS(2840), - [anon_sym_PRIVATE] = ACTIONS(2840), - [anon_sym_Property] = ACTIONS(2840), - [anon_sym_property] = ACTIONS(2840), - [anon_sym_PROPERTY] = ACTIONS(2840), - [anon_sym_Public] = ACTIONS(2840), - [anon_sym_public] = ACTIONS(2840), - [anon_sym_PUBLIC] = ACTIONS(2840), - [anon_sym_Remote] = ACTIONS(2840), - [anon_sym_remote] = ACTIONS(2840), - [anon_sym_REMOTE] = ACTIONS(2840), - [anon_sym_Return] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_RETURN] = ACTIONS(2840), - [anon_sym_Static] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_STATIC] = ACTIONS(2840), - [anon_sym_Switch] = ACTIONS(2840), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_SWITCH] = ACTIONS(2840), - [anon_sym_Throw] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_THROW] = ACTIONS(2840), - [anon_sym_Try] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_TRY] = ACTIONS(2840), - [anon_sym_Var] = ACTIONS(2840), - [anon_sym_var] = ACTIONS(2840), - [anon_sym_VAR] = ACTIONS(2840), - [anon_sym_While] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_WHILE] = ACTIONS(2840), - [anon_sym_With] = ACTIONS(2840), - [anon_sym_with] = ACTIONS(2840), - [anon_sym_WITH] = ACTIONS(2840), - [sym_cf_comment] = ACTIONS(2838), - [sym__java_block_open] = ACTIONS(2838), - [sym__static_type_prefix] = ACTIONS(2838), + [STATE(887)] = { + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_let] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_Query] = ACTIONS(3040), + [anon_sym_query] = ACTIONS(3040), + [anon_sym_QUERY] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [aux_sym_unary_operator_token1] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3040), + [aux_sym_number_token2] = ACTIONS(3038), + [anon_sym_This] = ACTIONS(3040), + [anon_sym_this] = ACTIONS(3040), + [anon_sym_THIS] = ACTIONS(3040), + [anon_sym_Super] = ACTIONS(3040), + [anon_sym_super] = ACTIONS(3040), + [anon_sym_SUPER] = ACTIONS(3040), + [anon_sym_True] = ACTIONS(3040), + [anon_sym_true] = ACTIONS(3040), + [anon_sym_TRUE] = ACTIONS(3040), + [anon_sym_False] = ACTIONS(3040), + [anon_sym_false] = ACTIONS(3040), + [anon_sym_FALSE] = ACTIONS(3040), + [anon_sym_Null] = ACTIONS(3040), + [anon_sym_null] = ACTIONS(3040), + [anon_sym_NULL] = ACTIONS(3040), + [anon_sym_Undefined] = ACTIONS(3040), + [anon_sym_undefined] = ACTIONS(3040), + [anon_sym_UNDEFINED] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(3040), + [anon_sym_set] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [sym_hash_empty] = ACTIONS(3038), + [anon_sym_export] = ACTIONS(3040), + [anon_sym_QueryExecute] = ACTIONS(3040), + [anon_sym_queryexecute] = ACTIONS(3040), + [anon_sym_QUERYEXECUTE] = ACTIONS(3040), + [anon_sym_queryExecute] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3038), + [anon_sym_Abstract] = ACTIONS(3040), + [anon_sym_abstract] = ACTIONS(3040), + [anon_sym_ABSTRACT] = ACTIONS(3040), + [anon_sym_Break] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_BREAK] = ACTIONS(3040), + [anon_sym_Case] = ACTIONS(3040), + [anon_sym_case] = ACTIONS(3040), + [anon_sym_CASE] = ACTIONS(3040), + [anon_sym_Component] = ACTIONS(3040), + [anon_sym_component] = ACTIONS(3040), + [anon_sym_COMPONENT] = ACTIONS(3040), + [anon_sym_Continue] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_CONTINUE] = ACTIONS(3040), + [anon_sym_Debugger] = ACTIONS(3040), + [anon_sym_debugger] = ACTIONS(3040), + [anon_sym_DEBUGGER] = ACTIONS(3040), + [anon_sym_Default] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_DEFAULT] = ACTIONS(3040), + [anon_sym_Do] = ACTIONS(3040), + [anon_sym_do] = ACTIONS(3040), + [anon_sym_DO] = ACTIONS(3040), + [anon_sym_Final] = ACTIONS(3040), + [anon_sym_final] = ACTIONS(3040), + [anon_sym_FINAL] = ACTIONS(3040), + [anon_sym_For] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_FOR] = ACTIONS(3040), + [anon_sym_Function] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3040), + [anon_sym_FUNCTION] = ACTIONS(3040), + [anon_sym_If] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_IF] = ACTIONS(3040), + [anon_sym_Import] = ACTIONS(3040), + [anon_sym_import] = ACTIONS(3040), + [anon_sym_IMPORT] = ACTIONS(3040), + [anon_sym_Include] = ACTIONS(3040), + [anon_sym_include] = ACTIONS(3040), + [anon_sym_INCLUDE] = ACTIONS(3040), + [anon_sym_Interface] = ACTIONS(3040), + [anon_sym_interface] = ACTIONS(3040), + [anon_sym_INTERFACE] = ACTIONS(3040), + [anon_sym_New] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3040), + [anon_sym_NEW] = ACTIONS(3040), + [anon_sym_Package] = ACTIONS(3040), + [anon_sym_package] = ACTIONS(3040), + [anon_sym_PACKAGE] = ACTIONS(3040), + [anon_sym_Private] = ACTIONS(3040), + [anon_sym_private] = ACTIONS(3040), + [anon_sym_PRIVATE] = ACTIONS(3040), + [anon_sym_Property] = ACTIONS(3040), + [anon_sym_property] = ACTIONS(3040), + [anon_sym_PROPERTY] = ACTIONS(3040), + [anon_sym_Public] = ACTIONS(3040), + [anon_sym_public] = ACTIONS(3040), + [anon_sym_PUBLIC] = ACTIONS(3040), + [anon_sym_Remote] = ACTIONS(3040), + [anon_sym_remote] = ACTIONS(3040), + [anon_sym_REMOTE] = ACTIONS(3040), + [anon_sym_Return] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_RETURN] = ACTIONS(3040), + [anon_sym_Static] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_STATIC] = ACTIONS(3040), + [anon_sym_Switch] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3040), + [anon_sym_SWITCH] = ACTIONS(3040), + [anon_sym_Throw] = ACTIONS(3040), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_THROW] = ACTIONS(3040), + [anon_sym_Try] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [anon_sym_TRY] = ACTIONS(3040), + [anon_sym_Var] = ACTIONS(3040), + [anon_sym_var] = ACTIONS(3040), + [anon_sym_VAR] = ACTIONS(3040), + [anon_sym_While] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_WHILE] = ACTIONS(3040), + [anon_sym_With] = ACTIONS(3040), + [anon_sym_with] = ACTIONS(3040), + [anon_sym_WITH] = ACTIONS(3040), + [sym_cf_comment] = ACTIONS(3038), + [sym__java_block_open] = ACTIONS(3038), + [sym__static_type_prefix] = ACTIONS(3038), }, - [STATE(836)] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_Query] = ACTIONS(2846), - [anon_sym_query] = ACTIONS(2846), - [anon_sym_QUERY] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [aux_sym_unary_operator_token1] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2846), - [aux_sym_number_token2] = ACTIONS(2844), - [anon_sym_This] = ACTIONS(2846), - [anon_sym_this] = ACTIONS(2846), - [anon_sym_THIS] = ACTIONS(2846), - [anon_sym_Super] = ACTIONS(2846), - [anon_sym_super] = ACTIONS(2846), - [anon_sym_SUPER] = ACTIONS(2846), - [anon_sym_True] = ACTIONS(2846), - [anon_sym_true] = ACTIONS(2846), - [anon_sym_TRUE] = ACTIONS(2846), - [anon_sym_False] = ACTIONS(2846), - [anon_sym_false] = ACTIONS(2846), - [anon_sym_FALSE] = ACTIONS(2846), - [anon_sym_Null] = ACTIONS(2846), - [anon_sym_null] = ACTIONS(2846), - [anon_sym_NULL] = ACTIONS(2846), - [anon_sym_Undefined] = ACTIONS(2846), - [anon_sym_undefined] = ACTIONS(2846), - [anon_sym_UNDEFINED] = ACTIONS(2846), - [anon_sym_get] = ACTIONS(2846), - [anon_sym_set] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [sym_hash_empty] = ACTIONS(2844), - [anon_sym_export] = ACTIONS(2846), - [anon_sym_QueryExecute] = ACTIONS(2846), - [anon_sym_queryexecute] = ACTIONS(2846), - [anon_sym_QUERYEXECUTE] = ACTIONS(2846), - [anon_sym_queryExecute] = ACTIONS(2846), - [anon_sym_BQUOTE] = ACTIONS(2846), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2844), - [anon_sym_Abstract] = ACTIONS(2846), - [anon_sym_abstract] = ACTIONS(2846), - [anon_sym_ABSTRACT] = ACTIONS(2846), - [anon_sym_Break] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_BREAK] = ACTIONS(2846), - [anon_sym_Case] = ACTIONS(2846), - [anon_sym_case] = ACTIONS(2846), - [anon_sym_CASE] = ACTIONS(2846), - [anon_sym_Component] = ACTIONS(2846), - [anon_sym_component] = ACTIONS(2846), - [anon_sym_COMPONENT] = ACTIONS(2846), - [anon_sym_Continue] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_CONTINUE] = ACTIONS(2846), - [anon_sym_Debugger] = ACTIONS(2846), - [anon_sym_debugger] = ACTIONS(2846), - [anon_sym_DEBUGGER] = ACTIONS(2846), - [anon_sym_Default] = ACTIONS(2846), - [anon_sym_default] = ACTIONS(2846), - [anon_sym_DEFAULT] = ACTIONS(2846), - [anon_sym_Do] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_DO] = ACTIONS(2846), - [anon_sym_Final] = ACTIONS(2846), - [anon_sym_final] = ACTIONS(2846), - [anon_sym_FINAL] = ACTIONS(2846), - [anon_sym_For] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_FOR] = ACTIONS(2846), - [anon_sym_Function] = ACTIONS(2846), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_FUNCTION] = ACTIONS(2846), - [anon_sym_If] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_IF] = ACTIONS(2846), - [anon_sym_Import] = ACTIONS(2846), - [anon_sym_import] = ACTIONS(2846), - [anon_sym_IMPORT] = ACTIONS(2846), - [anon_sym_Include] = ACTIONS(2846), - [anon_sym_include] = ACTIONS(2846), - [anon_sym_INCLUDE] = ACTIONS(2846), - [anon_sym_Interface] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_INTERFACE] = ACTIONS(2846), - [anon_sym_New] = ACTIONS(2846), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_NEW] = ACTIONS(2846), - [anon_sym_Package] = ACTIONS(2846), - [anon_sym_package] = ACTIONS(2846), - [anon_sym_PACKAGE] = ACTIONS(2846), - [anon_sym_Private] = ACTIONS(2846), - [anon_sym_private] = ACTIONS(2846), - [anon_sym_PRIVATE] = ACTIONS(2846), - [anon_sym_Property] = ACTIONS(2846), - [anon_sym_property] = ACTIONS(2846), - [anon_sym_PROPERTY] = ACTIONS(2846), - [anon_sym_Public] = ACTIONS(2846), - [anon_sym_public] = ACTIONS(2846), - [anon_sym_PUBLIC] = ACTIONS(2846), - [anon_sym_Remote] = ACTIONS(2846), - [anon_sym_remote] = ACTIONS(2846), - [anon_sym_REMOTE] = ACTIONS(2846), - [anon_sym_Return] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_RETURN] = ACTIONS(2846), - [anon_sym_Static] = ACTIONS(2846), - [anon_sym_static] = ACTIONS(2846), - [anon_sym_STATIC] = ACTIONS(2846), - [anon_sym_Switch] = ACTIONS(2846), - [anon_sym_switch] = ACTIONS(2846), - [anon_sym_SWITCH] = ACTIONS(2846), - [anon_sym_Throw] = ACTIONS(2846), - [anon_sym_throw] = ACTIONS(2846), - [anon_sym_THROW] = ACTIONS(2846), - [anon_sym_Try] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_TRY] = ACTIONS(2846), - [anon_sym_Var] = ACTIONS(2846), - [anon_sym_var] = ACTIONS(2846), - [anon_sym_VAR] = ACTIONS(2846), - [anon_sym_While] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_WHILE] = ACTIONS(2846), - [anon_sym_With] = ACTIONS(2846), - [anon_sym_with] = ACTIONS(2846), - [anon_sym_WITH] = ACTIONS(2846), - [sym_cf_comment] = ACTIONS(2844), - [sym__java_block_open] = ACTIONS(2844), - [sym__static_type_prefix] = ACTIONS(2844), + [STATE(888)] = { + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_Query] = ACTIONS(3068), + [anon_sym_query] = ACTIONS(3068), + [anon_sym_QUERY] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [aux_sym_unary_operator_token1] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3068), + [aux_sym_number_token2] = ACTIONS(3066), + [anon_sym_This] = ACTIONS(3068), + [anon_sym_this] = ACTIONS(3068), + [anon_sym_THIS] = ACTIONS(3068), + [anon_sym_Super] = ACTIONS(3068), + [anon_sym_super] = ACTIONS(3068), + [anon_sym_SUPER] = ACTIONS(3068), + [anon_sym_True] = ACTIONS(3068), + [anon_sym_true] = ACTIONS(3068), + [anon_sym_TRUE] = ACTIONS(3068), + [anon_sym_False] = ACTIONS(3068), + [anon_sym_false] = ACTIONS(3068), + [anon_sym_FALSE] = ACTIONS(3068), + [anon_sym_Null] = ACTIONS(3068), + [anon_sym_null] = ACTIONS(3068), + [anon_sym_NULL] = ACTIONS(3068), + [anon_sym_Undefined] = ACTIONS(3068), + [anon_sym_undefined] = ACTIONS(3068), + [anon_sym_UNDEFINED] = ACTIONS(3068), + [anon_sym_get] = ACTIONS(3068), + [anon_sym_set] = ACTIONS(3068), + [anon_sym_POUND] = ACTIONS(3068), + [sym_hash_empty] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3068), + [anon_sym_QueryExecute] = ACTIONS(3068), + [anon_sym_queryexecute] = ACTIONS(3068), + [anon_sym_QUERYEXECUTE] = ACTIONS(3068), + [anon_sym_queryExecute] = ACTIONS(3068), + [anon_sym_BQUOTE] = ACTIONS(3068), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3066), + [anon_sym_Abstract] = ACTIONS(3068), + [anon_sym_abstract] = ACTIONS(3068), + [anon_sym_ABSTRACT] = ACTIONS(3068), + [anon_sym_Break] = ACTIONS(3068), + [anon_sym_break] = ACTIONS(3068), + [anon_sym_BREAK] = ACTIONS(3068), + [anon_sym_Case] = ACTIONS(3068), + [anon_sym_case] = ACTIONS(3068), + [anon_sym_CASE] = ACTIONS(3068), + [anon_sym_Component] = ACTIONS(3068), + [anon_sym_component] = ACTIONS(3068), + [anon_sym_COMPONENT] = ACTIONS(3068), + [anon_sym_Continue] = ACTIONS(3068), + [anon_sym_continue] = ACTIONS(3068), + [anon_sym_CONTINUE] = ACTIONS(3068), + [anon_sym_Debugger] = ACTIONS(3068), + [anon_sym_debugger] = ACTIONS(3068), + [anon_sym_DEBUGGER] = ACTIONS(3068), + [anon_sym_Default] = ACTIONS(3068), + [anon_sym_default] = ACTIONS(3068), + [anon_sym_DEFAULT] = ACTIONS(3068), + [anon_sym_Do] = ACTIONS(3068), + [anon_sym_do] = ACTIONS(3068), + [anon_sym_DO] = ACTIONS(3068), + [anon_sym_Final] = ACTIONS(3068), + [anon_sym_final] = ACTIONS(3068), + [anon_sym_FINAL] = ACTIONS(3068), + [anon_sym_For] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_FOR] = ACTIONS(3068), + [anon_sym_Function] = ACTIONS(3068), + [anon_sym_function] = ACTIONS(3068), + [anon_sym_FUNCTION] = ACTIONS(3068), + [anon_sym_If] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_IF] = ACTIONS(3068), + [anon_sym_Import] = ACTIONS(3068), + [anon_sym_import] = ACTIONS(3068), + [anon_sym_IMPORT] = ACTIONS(3068), + [anon_sym_Include] = ACTIONS(3068), + [anon_sym_include] = ACTIONS(3068), + [anon_sym_INCLUDE] = ACTIONS(3068), + [anon_sym_Interface] = ACTIONS(3068), + [anon_sym_interface] = ACTIONS(3068), + [anon_sym_INTERFACE] = ACTIONS(3068), + [anon_sym_New] = ACTIONS(3068), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_NEW] = ACTIONS(3068), + [anon_sym_Package] = ACTIONS(3068), + [anon_sym_package] = ACTIONS(3068), + [anon_sym_PACKAGE] = ACTIONS(3068), + [anon_sym_Private] = ACTIONS(3068), + [anon_sym_private] = ACTIONS(3068), + [anon_sym_PRIVATE] = ACTIONS(3068), + [anon_sym_Property] = ACTIONS(3068), + [anon_sym_property] = ACTIONS(3068), + [anon_sym_PROPERTY] = ACTIONS(3068), + [anon_sym_Public] = ACTIONS(3068), + [anon_sym_public] = ACTIONS(3068), + [anon_sym_PUBLIC] = ACTIONS(3068), + [anon_sym_Remote] = ACTIONS(3068), + [anon_sym_remote] = ACTIONS(3068), + [anon_sym_REMOTE] = ACTIONS(3068), + [anon_sym_Return] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_RETURN] = ACTIONS(3068), + [anon_sym_Static] = ACTIONS(3068), + [anon_sym_static] = ACTIONS(3068), + [anon_sym_STATIC] = ACTIONS(3068), + [anon_sym_Switch] = ACTIONS(3068), + [anon_sym_switch] = ACTIONS(3068), + [anon_sym_SWITCH] = ACTIONS(3068), + [anon_sym_Throw] = ACTIONS(3068), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_THROW] = ACTIONS(3068), + [anon_sym_Try] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [anon_sym_TRY] = ACTIONS(3068), + [anon_sym_Var] = ACTIONS(3068), + [anon_sym_var] = ACTIONS(3068), + [anon_sym_VAR] = ACTIONS(3068), + [anon_sym_While] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_WHILE] = ACTIONS(3068), + [anon_sym_With] = ACTIONS(3068), + [anon_sym_with] = ACTIONS(3068), + [anon_sym_WITH] = ACTIONS(3068), + [sym_cf_comment] = ACTIONS(3066), + [sym__java_block_open] = ACTIONS(3066), + [sym__static_type_prefix] = ACTIONS(3066), }, - [STATE(837)] = { - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_Query] = ACTIONS(2714), - [anon_sym_query] = ACTIONS(2714), - [anon_sym_QUERY] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2712), - [aux_sym_unary_operator_token1] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2714), - [aux_sym_number_token2] = ACTIONS(2712), - [anon_sym_This] = ACTIONS(2714), - [anon_sym_this] = ACTIONS(2714), - [anon_sym_THIS] = ACTIONS(2714), - [anon_sym_Super] = ACTIONS(2714), - [anon_sym_super] = ACTIONS(2714), - [anon_sym_SUPER] = ACTIONS(2714), - [anon_sym_True] = ACTIONS(2714), - [anon_sym_true] = ACTIONS(2714), - [anon_sym_TRUE] = ACTIONS(2714), - [anon_sym_False] = ACTIONS(2714), - [anon_sym_false] = ACTIONS(2714), - [anon_sym_FALSE] = ACTIONS(2714), - [anon_sym_Null] = ACTIONS(2714), - [anon_sym_null] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2714), - [anon_sym_Undefined] = ACTIONS(2714), - [anon_sym_undefined] = ACTIONS(2714), - [anon_sym_UNDEFINED] = ACTIONS(2714), - [anon_sym_get] = ACTIONS(2714), - [anon_sym_set] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2714), - [sym_hash_empty] = ACTIONS(2712), - [anon_sym_export] = ACTIONS(2714), - [anon_sym_QueryExecute] = ACTIONS(2714), - [anon_sym_queryexecute] = ACTIONS(2714), - [anon_sym_QUERYEXECUTE] = ACTIONS(2714), - [anon_sym_queryExecute] = ACTIONS(2714), - [anon_sym_BQUOTE] = ACTIONS(2714), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2712), - [anon_sym_Abstract] = ACTIONS(2714), - [anon_sym_abstract] = ACTIONS(2714), - [anon_sym_ABSTRACT] = ACTIONS(2714), - [anon_sym_Break] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_BREAK] = ACTIONS(2714), - [anon_sym_Case] = ACTIONS(2714), - [anon_sym_case] = ACTIONS(2714), - [anon_sym_CASE] = ACTIONS(2714), - [anon_sym_Component] = ACTIONS(2714), - [anon_sym_component] = ACTIONS(2714), - [anon_sym_COMPONENT] = ACTIONS(2714), - [anon_sym_Continue] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_CONTINUE] = ACTIONS(2714), - [anon_sym_Debugger] = ACTIONS(2714), - [anon_sym_debugger] = ACTIONS(2714), - [anon_sym_DEBUGGER] = ACTIONS(2714), - [anon_sym_Default] = ACTIONS(2714), - [anon_sym_default] = ACTIONS(2714), - [anon_sym_DEFAULT] = ACTIONS(2714), - [anon_sym_Do] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_DO] = ACTIONS(2714), - [anon_sym_Final] = ACTIONS(2714), - [anon_sym_final] = ACTIONS(2714), - [anon_sym_FINAL] = ACTIONS(2714), - [anon_sym_For] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_FOR] = ACTIONS(2714), - [anon_sym_Function] = ACTIONS(2714), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_FUNCTION] = ACTIONS(2714), - [anon_sym_If] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_IF] = ACTIONS(2714), - [anon_sym_Import] = ACTIONS(2714), - [anon_sym_import] = ACTIONS(2714), - [anon_sym_IMPORT] = ACTIONS(2714), - [anon_sym_Include] = ACTIONS(2714), - [anon_sym_include] = ACTIONS(2714), - [anon_sym_INCLUDE] = ACTIONS(2714), - [anon_sym_Interface] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_INTERFACE] = ACTIONS(2714), - [anon_sym_New] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_NEW] = ACTIONS(2714), - [anon_sym_Package] = ACTIONS(2714), - [anon_sym_package] = ACTIONS(2714), - [anon_sym_PACKAGE] = ACTIONS(2714), - [anon_sym_Private] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [anon_sym_PRIVATE] = ACTIONS(2714), - [anon_sym_Property] = ACTIONS(2714), - [anon_sym_property] = ACTIONS(2714), - [anon_sym_PROPERTY] = ACTIONS(2714), - [anon_sym_Public] = ACTIONS(2714), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_PUBLIC] = ACTIONS(2714), - [anon_sym_Remote] = ACTIONS(2714), - [anon_sym_remote] = ACTIONS(2714), - [anon_sym_REMOTE] = ACTIONS(2714), - [anon_sym_Return] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_RETURN] = ACTIONS(2714), - [anon_sym_Static] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_STATIC] = ACTIONS(2714), - [anon_sym_Switch] = ACTIONS(2714), - [anon_sym_switch] = ACTIONS(2714), - [anon_sym_SWITCH] = ACTIONS(2714), - [anon_sym_Throw] = ACTIONS(2714), - [anon_sym_throw] = ACTIONS(2714), - [anon_sym_THROW] = ACTIONS(2714), - [anon_sym_Try] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_TRY] = ACTIONS(2714), - [anon_sym_Var] = ACTIONS(2714), - [anon_sym_var] = ACTIONS(2714), - [anon_sym_VAR] = ACTIONS(2714), - [anon_sym_While] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_WHILE] = ACTIONS(2714), - [anon_sym_With] = ACTIONS(2714), - [anon_sym_with] = ACTIONS(2714), - [anon_sym_WITH] = ACTIONS(2714), - [sym_cf_comment] = ACTIONS(2712), - [sym__java_block_open] = ACTIONS(2712), - [sym__static_type_prefix] = ACTIONS(2712), + [STATE(889)] = { + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_Query] = ACTIONS(3072), + [anon_sym_query] = ACTIONS(3072), + [anon_sym_QUERY] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [aux_sym_unary_operator_token1] = ACTIONS(3072), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3072), + [aux_sym_number_token2] = ACTIONS(3070), + [anon_sym_This] = ACTIONS(3072), + [anon_sym_this] = ACTIONS(3072), + [anon_sym_THIS] = ACTIONS(3072), + [anon_sym_Super] = ACTIONS(3072), + [anon_sym_super] = ACTIONS(3072), + [anon_sym_SUPER] = ACTIONS(3072), + [anon_sym_True] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3072), + [anon_sym_TRUE] = ACTIONS(3072), + [anon_sym_False] = ACTIONS(3072), + [anon_sym_false] = ACTIONS(3072), + [anon_sym_FALSE] = ACTIONS(3072), + [anon_sym_Null] = ACTIONS(3072), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_NULL] = ACTIONS(3072), + [anon_sym_Undefined] = ACTIONS(3072), + [anon_sym_undefined] = ACTIONS(3072), + [anon_sym_UNDEFINED] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(3072), + [anon_sym_set] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [sym_hash_empty] = ACTIONS(3070), + [anon_sym_export] = ACTIONS(3072), + [anon_sym_QueryExecute] = ACTIONS(3072), + [anon_sym_queryexecute] = ACTIONS(3072), + [anon_sym_QUERYEXECUTE] = ACTIONS(3072), + [anon_sym_queryExecute] = ACTIONS(3072), + [anon_sym_BQUOTE] = ACTIONS(3072), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3070), + [anon_sym_Abstract] = ACTIONS(3072), + [anon_sym_abstract] = ACTIONS(3072), + [anon_sym_ABSTRACT] = ACTIONS(3072), + [anon_sym_Break] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_BREAK] = ACTIONS(3072), + [anon_sym_Case] = ACTIONS(3072), + [anon_sym_case] = ACTIONS(3072), + [anon_sym_CASE] = ACTIONS(3072), + [anon_sym_Component] = ACTIONS(3072), + [anon_sym_component] = ACTIONS(3072), + [anon_sym_COMPONENT] = ACTIONS(3072), + [anon_sym_Continue] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_CONTINUE] = ACTIONS(3072), + [anon_sym_Debugger] = ACTIONS(3072), + [anon_sym_debugger] = ACTIONS(3072), + [anon_sym_DEBUGGER] = ACTIONS(3072), + [anon_sym_Default] = ACTIONS(3072), + [anon_sym_default] = ACTIONS(3072), + [anon_sym_DEFAULT] = ACTIONS(3072), + [anon_sym_Do] = ACTIONS(3072), + [anon_sym_do] = ACTIONS(3072), + [anon_sym_DO] = ACTIONS(3072), + [anon_sym_Final] = ACTIONS(3072), + [anon_sym_final] = ACTIONS(3072), + [anon_sym_FINAL] = ACTIONS(3072), + [anon_sym_For] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_FOR] = ACTIONS(3072), + [anon_sym_Function] = ACTIONS(3072), + [anon_sym_function] = ACTIONS(3072), + [anon_sym_FUNCTION] = ACTIONS(3072), + [anon_sym_If] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_IF] = ACTIONS(3072), + [anon_sym_Import] = ACTIONS(3072), + [anon_sym_import] = ACTIONS(3072), + [anon_sym_IMPORT] = ACTIONS(3072), + [anon_sym_Include] = ACTIONS(3072), + [anon_sym_include] = ACTIONS(3072), + [anon_sym_INCLUDE] = ACTIONS(3072), + [anon_sym_Interface] = ACTIONS(3072), + [anon_sym_interface] = ACTIONS(3072), + [anon_sym_INTERFACE] = ACTIONS(3072), + [anon_sym_New] = ACTIONS(3072), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_NEW] = ACTIONS(3072), + [anon_sym_Package] = ACTIONS(3072), + [anon_sym_package] = ACTIONS(3072), + [anon_sym_PACKAGE] = ACTIONS(3072), + [anon_sym_Private] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_PRIVATE] = ACTIONS(3072), + [anon_sym_Property] = ACTIONS(3072), + [anon_sym_property] = ACTIONS(3072), + [anon_sym_PROPERTY] = ACTIONS(3072), + [anon_sym_Public] = ACTIONS(3072), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_PUBLIC] = ACTIONS(3072), + [anon_sym_Remote] = ACTIONS(3072), + [anon_sym_remote] = ACTIONS(3072), + [anon_sym_REMOTE] = ACTIONS(3072), + [anon_sym_Return] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_RETURN] = ACTIONS(3072), + [anon_sym_Static] = ACTIONS(3072), + [anon_sym_static] = ACTIONS(3072), + [anon_sym_STATIC] = ACTIONS(3072), + [anon_sym_Switch] = ACTIONS(3072), + [anon_sym_switch] = ACTIONS(3072), + [anon_sym_SWITCH] = ACTIONS(3072), + [anon_sym_Throw] = ACTIONS(3072), + [anon_sym_throw] = ACTIONS(3072), + [anon_sym_THROW] = ACTIONS(3072), + [anon_sym_Try] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_TRY] = ACTIONS(3072), + [anon_sym_Var] = ACTIONS(3072), + [anon_sym_var] = ACTIONS(3072), + [anon_sym_VAR] = ACTIONS(3072), + [anon_sym_While] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_WHILE] = ACTIONS(3072), + [anon_sym_With] = ACTIONS(3072), + [anon_sym_with] = ACTIONS(3072), + [anon_sym_WITH] = ACTIONS(3072), + [sym_cf_comment] = ACTIONS(3070), + [sym__java_block_open] = ACTIONS(3070), + [sym__static_type_prefix] = ACTIONS(3070), }, - [STATE(838)] = { - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2852), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_Query] = ACTIONS(2854), - [anon_sym_query] = ACTIONS(2854), - [anon_sym_QUERY] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [aux_sym_unary_operator_token1] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2854), - [aux_sym_number_token2] = ACTIONS(2852), - [anon_sym_This] = ACTIONS(2854), - [anon_sym_this] = ACTIONS(2854), - [anon_sym_THIS] = ACTIONS(2854), - [anon_sym_Super] = ACTIONS(2854), - [anon_sym_super] = ACTIONS(2854), - [anon_sym_SUPER] = ACTIONS(2854), - [anon_sym_True] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2854), - [anon_sym_TRUE] = ACTIONS(2854), - [anon_sym_False] = ACTIONS(2854), - [anon_sym_false] = ACTIONS(2854), - [anon_sym_FALSE] = ACTIONS(2854), - [anon_sym_Null] = ACTIONS(2854), - [anon_sym_null] = ACTIONS(2854), - [anon_sym_NULL] = ACTIONS(2854), - [anon_sym_Undefined] = ACTIONS(2854), - [anon_sym_undefined] = ACTIONS(2854), - [anon_sym_UNDEFINED] = ACTIONS(2854), - [anon_sym_get] = ACTIONS(2854), - [anon_sym_set] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [sym_hash_empty] = ACTIONS(2852), - [anon_sym_export] = ACTIONS(2854), - [anon_sym_QueryExecute] = ACTIONS(2854), - [anon_sym_queryexecute] = ACTIONS(2854), - [anon_sym_QUERYEXECUTE] = ACTIONS(2854), - [anon_sym_queryExecute] = ACTIONS(2854), - [anon_sym_BQUOTE] = ACTIONS(2854), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2852), - [anon_sym_Abstract] = ACTIONS(2854), - [anon_sym_abstract] = ACTIONS(2854), - [anon_sym_ABSTRACT] = ACTIONS(2854), - [anon_sym_Break] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_BREAK] = ACTIONS(2854), - [anon_sym_Case] = ACTIONS(2854), - [anon_sym_case] = ACTIONS(2854), - [anon_sym_CASE] = ACTIONS(2854), - [anon_sym_Component] = ACTIONS(2854), - [anon_sym_component] = ACTIONS(2854), - [anon_sym_COMPONENT] = ACTIONS(2854), - [anon_sym_Continue] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_CONTINUE] = ACTIONS(2854), - [anon_sym_Debugger] = ACTIONS(2854), - [anon_sym_debugger] = ACTIONS(2854), - [anon_sym_DEBUGGER] = ACTIONS(2854), - [anon_sym_Default] = ACTIONS(2854), - [anon_sym_default] = ACTIONS(2854), - [anon_sym_DEFAULT] = ACTIONS(2854), - [anon_sym_Do] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_DO] = ACTIONS(2854), - [anon_sym_Final] = ACTIONS(2854), - [anon_sym_final] = ACTIONS(2854), - [anon_sym_FINAL] = ACTIONS(2854), - [anon_sym_For] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_FOR] = ACTIONS(2854), - [anon_sym_Function] = ACTIONS(2854), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_FUNCTION] = ACTIONS(2854), - [anon_sym_If] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_IF] = ACTIONS(2854), - [anon_sym_Import] = ACTIONS(2854), - [anon_sym_import] = ACTIONS(2854), - [anon_sym_IMPORT] = ACTIONS(2854), - [anon_sym_Include] = ACTIONS(2854), - [anon_sym_include] = ACTIONS(2854), - [anon_sym_INCLUDE] = ACTIONS(2854), - [anon_sym_Interface] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_INTERFACE] = ACTIONS(2854), - [anon_sym_New] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_NEW] = ACTIONS(2854), - [anon_sym_Package] = ACTIONS(2854), - [anon_sym_package] = ACTIONS(2854), - [anon_sym_PACKAGE] = ACTIONS(2854), - [anon_sym_Private] = ACTIONS(2854), - [anon_sym_private] = ACTIONS(2854), - [anon_sym_PRIVATE] = ACTIONS(2854), - [anon_sym_Property] = ACTIONS(2854), - [anon_sym_property] = ACTIONS(2854), - [anon_sym_PROPERTY] = ACTIONS(2854), - [anon_sym_Public] = ACTIONS(2854), - [anon_sym_public] = ACTIONS(2854), - [anon_sym_PUBLIC] = ACTIONS(2854), - [anon_sym_Remote] = ACTIONS(2854), - [anon_sym_remote] = ACTIONS(2854), - [anon_sym_REMOTE] = ACTIONS(2854), - [anon_sym_Return] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_RETURN] = ACTIONS(2854), - [anon_sym_Static] = ACTIONS(2854), - [anon_sym_static] = ACTIONS(2854), - [anon_sym_STATIC] = ACTIONS(2854), - [anon_sym_Switch] = ACTIONS(2854), - [anon_sym_switch] = ACTIONS(2854), - [anon_sym_SWITCH] = ACTIONS(2854), - [anon_sym_Throw] = ACTIONS(2854), - [anon_sym_throw] = ACTIONS(2854), - [anon_sym_THROW] = ACTIONS(2854), - [anon_sym_Try] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_TRY] = ACTIONS(2854), - [anon_sym_Var] = ACTIONS(2854), - [anon_sym_var] = ACTIONS(2854), - [anon_sym_VAR] = ACTIONS(2854), - [anon_sym_While] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_WHILE] = ACTIONS(2854), - [anon_sym_With] = ACTIONS(2854), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_WITH] = ACTIONS(2854), - [sym_cf_comment] = ACTIONS(2852), - [sym__java_block_open] = ACTIONS(2852), - [sym__static_type_prefix] = ACTIONS(2852), + [STATE(890)] = { + [ts_builtin_sym_end] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_Query] = ACTIONS(3076), + [anon_sym_query] = ACTIONS(3076), + [anon_sym_QUERY] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_SLASH] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [aux_sym_unary_operator_token1] = ACTIONS(3076), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [anon_sym_DQUOTE] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3074), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3076), + [aux_sym_number_token2] = ACTIONS(3074), + [anon_sym_This] = ACTIONS(3076), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_THIS] = ACTIONS(3076), + [anon_sym_Super] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_SUPER] = ACTIONS(3076), + [anon_sym_True] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_TRUE] = ACTIONS(3076), + [anon_sym_False] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_FALSE] = ACTIONS(3076), + [anon_sym_Null] = ACTIONS(3076), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_Undefined] = ACTIONS(3076), + [anon_sym_undefined] = ACTIONS(3076), + [anon_sym_UNDEFINED] = ACTIONS(3076), + [anon_sym_get] = ACTIONS(3076), + [anon_sym_set] = ACTIONS(3076), + [anon_sym_POUND] = ACTIONS(3076), + [sym_hash_empty] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3076), + [anon_sym_QueryExecute] = ACTIONS(3076), + [anon_sym_queryexecute] = ACTIONS(3076), + [anon_sym_QUERYEXECUTE] = ACTIONS(3076), + [anon_sym_queryExecute] = ACTIONS(3076), + [anon_sym_BQUOTE] = ACTIONS(3076), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3074), + [anon_sym_Abstract] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_ABSTRACT] = ACTIONS(3076), + [anon_sym_Break] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_BREAK] = ACTIONS(3076), + [anon_sym_Case] = ACTIONS(3076), + [anon_sym_case] = ACTIONS(3076), + [anon_sym_CASE] = ACTIONS(3076), + [anon_sym_Component] = ACTIONS(3076), + [anon_sym_component] = ACTIONS(3076), + [anon_sym_COMPONENT] = ACTIONS(3076), + [anon_sym_Continue] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_CONTINUE] = ACTIONS(3076), + [anon_sym_Debugger] = ACTIONS(3076), + [anon_sym_debugger] = ACTIONS(3076), + [anon_sym_DEBUGGER] = ACTIONS(3076), + [anon_sym_Default] = ACTIONS(3076), + [anon_sym_default] = ACTIONS(3076), + [anon_sym_DEFAULT] = ACTIONS(3076), + [anon_sym_Do] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_DO] = ACTIONS(3076), + [anon_sym_Final] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_FINAL] = ACTIONS(3076), + [anon_sym_For] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_FOR] = ACTIONS(3076), + [anon_sym_Function] = ACTIONS(3076), + [anon_sym_function] = ACTIONS(3076), + [anon_sym_FUNCTION] = ACTIONS(3076), + [anon_sym_If] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_IF] = ACTIONS(3076), + [anon_sym_Import] = ACTIONS(3076), + [anon_sym_import] = ACTIONS(3076), + [anon_sym_IMPORT] = ACTIONS(3076), + [anon_sym_Include] = ACTIONS(3076), + [anon_sym_include] = ACTIONS(3076), + [anon_sym_INCLUDE] = ACTIONS(3076), + [anon_sym_Interface] = ACTIONS(3076), + [anon_sym_interface] = ACTIONS(3076), + [anon_sym_INTERFACE] = ACTIONS(3076), + [anon_sym_New] = ACTIONS(3076), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_NEW] = ACTIONS(3076), + [anon_sym_Package] = ACTIONS(3076), + [anon_sym_package] = ACTIONS(3076), + [anon_sym_PACKAGE] = ACTIONS(3076), + [anon_sym_Private] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_PRIVATE] = ACTIONS(3076), + [anon_sym_Property] = ACTIONS(3076), + [anon_sym_property] = ACTIONS(3076), + [anon_sym_PROPERTY] = ACTIONS(3076), + [anon_sym_Public] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_PUBLIC] = ACTIONS(3076), + [anon_sym_Remote] = ACTIONS(3076), + [anon_sym_remote] = ACTIONS(3076), + [anon_sym_REMOTE] = ACTIONS(3076), + [anon_sym_Return] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_RETURN] = ACTIONS(3076), + [anon_sym_Static] = ACTIONS(3076), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_STATIC] = ACTIONS(3076), + [anon_sym_Switch] = ACTIONS(3076), + [anon_sym_switch] = ACTIONS(3076), + [anon_sym_SWITCH] = ACTIONS(3076), + [anon_sym_Throw] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_THROW] = ACTIONS(3076), + [anon_sym_Try] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_TRY] = ACTIONS(3076), + [anon_sym_Var] = ACTIONS(3076), + [anon_sym_var] = ACTIONS(3076), + [anon_sym_VAR] = ACTIONS(3076), + [anon_sym_While] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_WHILE] = ACTIONS(3076), + [anon_sym_With] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_WITH] = ACTIONS(3076), + [sym_cf_comment] = ACTIONS(3074), + [sym__java_block_open] = ACTIONS(3074), + [sym__static_type_prefix] = ACTIONS(3074), }, - [STATE(839)] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_Query] = ACTIONS(2858), - [anon_sym_query] = ACTIONS(2858), - [anon_sym_QUERY] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [aux_sym_unary_operator_token1] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2858), - [aux_sym_number_token2] = ACTIONS(2856), - [anon_sym_This] = ACTIONS(2858), - [anon_sym_this] = ACTIONS(2858), - [anon_sym_THIS] = ACTIONS(2858), - [anon_sym_Super] = ACTIONS(2858), - [anon_sym_super] = ACTIONS(2858), - [anon_sym_SUPER] = ACTIONS(2858), - [anon_sym_True] = ACTIONS(2858), - [anon_sym_true] = ACTIONS(2858), - [anon_sym_TRUE] = ACTIONS(2858), - [anon_sym_False] = ACTIONS(2858), - [anon_sym_false] = ACTIONS(2858), - [anon_sym_FALSE] = ACTIONS(2858), - [anon_sym_Null] = ACTIONS(2858), - [anon_sym_null] = ACTIONS(2858), - [anon_sym_NULL] = ACTIONS(2858), - [anon_sym_Undefined] = ACTIONS(2858), - [anon_sym_undefined] = ACTIONS(2858), - [anon_sym_UNDEFINED] = ACTIONS(2858), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [sym_hash_empty] = ACTIONS(2856), - [anon_sym_export] = ACTIONS(2858), - [anon_sym_QueryExecute] = ACTIONS(2858), - [anon_sym_queryexecute] = ACTIONS(2858), - [anon_sym_QUERYEXECUTE] = ACTIONS(2858), - [anon_sym_queryExecute] = ACTIONS(2858), - [anon_sym_BQUOTE] = ACTIONS(2858), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2856), - [anon_sym_Abstract] = ACTIONS(2858), - [anon_sym_abstract] = ACTIONS(2858), - [anon_sym_ABSTRACT] = ACTIONS(2858), - [anon_sym_Break] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_BREAK] = ACTIONS(2858), - [anon_sym_Case] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2858), - [anon_sym_CASE] = ACTIONS(2858), - [anon_sym_Component] = ACTIONS(2858), - [anon_sym_component] = ACTIONS(2858), - [anon_sym_COMPONENT] = ACTIONS(2858), - [anon_sym_Continue] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_CONTINUE] = ACTIONS(2858), - [anon_sym_Debugger] = ACTIONS(2858), - [anon_sym_debugger] = ACTIONS(2858), - [anon_sym_DEBUGGER] = ACTIONS(2858), - [anon_sym_Default] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2858), - [anon_sym_DEFAULT] = ACTIONS(2858), - [anon_sym_Do] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_DO] = ACTIONS(2858), - [anon_sym_Final] = ACTIONS(2858), - [anon_sym_final] = ACTIONS(2858), - [anon_sym_FINAL] = ACTIONS(2858), - [anon_sym_For] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_FOR] = ACTIONS(2858), - [anon_sym_Function] = ACTIONS(2858), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_FUNCTION] = ACTIONS(2858), - [anon_sym_If] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_IF] = ACTIONS(2858), - [anon_sym_Import] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_IMPORT] = ACTIONS(2858), - [anon_sym_Include] = ACTIONS(2858), - [anon_sym_include] = ACTIONS(2858), - [anon_sym_INCLUDE] = ACTIONS(2858), - [anon_sym_Interface] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_INTERFACE] = ACTIONS(2858), - [anon_sym_New] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_NEW] = ACTIONS(2858), - [anon_sym_Package] = ACTIONS(2858), - [anon_sym_package] = ACTIONS(2858), - [anon_sym_PACKAGE] = ACTIONS(2858), - [anon_sym_Private] = ACTIONS(2858), - [anon_sym_private] = ACTIONS(2858), - [anon_sym_PRIVATE] = ACTIONS(2858), - [anon_sym_Property] = ACTIONS(2858), - [anon_sym_property] = ACTIONS(2858), - [anon_sym_PROPERTY] = ACTIONS(2858), - [anon_sym_Public] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_PUBLIC] = ACTIONS(2858), - [anon_sym_Remote] = ACTIONS(2858), - [anon_sym_remote] = ACTIONS(2858), - [anon_sym_REMOTE] = ACTIONS(2858), - [anon_sym_Return] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_RETURN] = ACTIONS(2858), - [anon_sym_Static] = ACTIONS(2858), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_STATIC] = ACTIONS(2858), - [anon_sym_Switch] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2858), - [anon_sym_SWITCH] = ACTIONS(2858), - [anon_sym_Throw] = ACTIONS(2858), - [anon_sym_throw] = ACTIONS(2858), - [anon_sym_THROW] = ACTIONS(2858), - [anon_sym_Try] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_TRY] = ACTIONS(2858), - [anon_sym_Var] = ACTIONS(2858), - [anon_sym_var] = ACTIONS(2858), - [anon_sym_VAR] = ACTIONS(2858), - [anon_sym_While] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_WHILE] = ACTIONS(2858), - [anon_sym_With] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_WITH] = ACTIONS(2858), - [sym_cf_comment] = ACTIONS(2856), - [sym__java_block_open] = ACTIONS(2856), - [sym__static_type_prefix] = ACTIONS(2856), + [STATE(891)] = { + [ts_builtin_sym_end] = ACTIONS(2272), + [sym_identifier] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_Query] = ACTIONS(2270), + [anon_sym_query] = ACTIONS(2270), + [anon_sym_QUERY] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [aux_sym_unary_operator_token1] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2270), + [aux_sym_number_token2] = ACTIONS(2272), + [anon_sym_This] = ACTIONS(2270), + [anon_sym_this] = ACTIONS(2270), + [anon_sym_THIS] = ACTIONS(2270), + [anon_sym_Super] = ACTIONS(2270), + [anon_sym_super] = ACTIONS(2270), + [anon_sym_SUPER] = ACTIONS(2270), + [anon_sym_True] = ACTIONS(2270), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_TRUE] = ACTIONS(2270), + [anon_sym_False] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [anon_sym_FALSE] = ACTIONS(2270), + [anon_sym_Null] = ACTIONS(2270), + [anon_sym_null] = ACTIONS(2270), + [anon_sym_NULL] = ACTIONS(2270), + [anon_sym_Undefined] = ACTIONS(2270), + [anon_sym_undefined] = ACTIONS(2270), + [anon_sym_UNDEFINED] = ACTIONS(2270), + [anon_sym_get] = ACTIONS(2270), + [anon_sym_set] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(2270), + [sym_hash_empty] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2270), + [anon_sym_QueryExecute] = ACTIONS(2270), + [anon_sym_queryexecute] = ACTIONS(2270), + [anon_sym_QUERYEXECUTE] = ACTIONS(2270), + [anon_sym_queryExecute] = ACTIONS(2270), + [anon_sym_BQUOTE] = ACTIONS(2270), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2272), + [anon_sym_Abstract] = ACTIONS(2270), + [anon_sym_abstract] = ACTIONS(2270), + [anon_sym_ABSTRACT] = ACTIONS(2270), + [anon_sym_Break] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_BREAK] = ACTIONS(2270), + [anon_sym_Case] = ACTIONS(2270), + [anon_sym_case] = ACTIONS(2270), + [anon_sym_CASE] = ACTIONS(2270), + [anon_sym_Component] = ACTIONS(2270), + [anon_sym_component] = ACTIONS(2270), + [anon_sym_COMPONENT] = ACTIONS(2270), + [anon_sym_Continue] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_CONTINUE] = ACTIONS(2270), + [anon_sym_Debugger] = ACTIONS(2270), + [anon_sym_debugger] = ACTIONS(2270), + [anon_sym_DEBUGGER] = ACTIONS(2270), + [anon_sym_Default] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2270), + [anon_sym_DEFAULT] = ACTIONS(2270), + [anon_sym_Do] = ACTIONS(2270), + [anon_sym_do] = ACTIONS(2270), + [anon_sym_DO] = ACTIONS(2270), + [anon_sym_Final] = ACTIONS(2270), + [anon_sym_final] = ACTIONS(2270), + [anon_sym_FINAL] = ACTIONS(2270), + [anon_sym_For] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_FOR] = ACTIONS(2270), + [anon_sym_Function] = ACTIONS(2270), + [anon_sym_function] = ACTIONS(2270), + [anon_sym_FUNCTION] = ACTIONS(2270), + [anon_sym_If] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_IF] = ACTIONS(2270), + [anon_sym_Import] = ACTIONS(2270), + [anon_sym_import] = ACTIONS(2270), + [anon_sym_IMPORT] = ACTIONS(2270), + [anon_sym_Include] = ACTIONS(2270), + [anon_sym_include] = ACTIONS(2270), + [anon_sym_INCLUDE] = ACTIONS(2270), + [anon_sym_Interface] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2270), + [anon_sym_INTERFACE] = ACTIONS(2270), + [anon_sym_New] = ACTIONS(2270), + [anon_sym_new] = ACTIONS(2270), + [anon_sym_NEW] = ACTIONS(2270), + [anon_sym_Package] = ACTIONS(2270), + [anon_sym_package] = ACTIONS(2270), + [anon_sym_PACKAGE] = ACTIONS(2270), + [anon_sym_Private] = ACTIONS(2270), + [anon_sym_private] = ACTIONS(2270), + [anon_sym_PRIVATE] = ACTIONS(2270), + [anon_sym_Property] = ACTIONS(2270), + [anon_sym_property] = ACTIONS(2270), + [anon_sym_PROPERTY] = ACTIONS(2270), + [anon_sym_Public] = ACTIONS(2270), + [anon_sym_public] = ACTIONS(2270), + [anon_sym_PUBLIC] = ACTIONS(2270), + [anon_sym_Remote] = ACTIONS(2270), + [anon_sym_remote] = ACTIONS(2270), + [anon_sym_REMOTE] = ACTIONS(2270), + [anon_sym_Return] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_RETURN] = ACTIONS(2270), + [anon_sym_Static] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_STATIC] = ACTIONS(2270), + [anon_sym_Switch] = ACTIONS(2270), + [anon_sym_switch] = ACTIONS(2270), + [anon_sym_SWITCH] = ACTIONS(2270), + [anon_sym_Throw] = ACTIONS(2270), + [anon_sym_throw] = ACTIONS(2270), + [anon_sym_THROW] = ACTIONS(2270), + [anon_sym_Try] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2270), + [anon_sym_TRY] = ACTIONS(2270), + [anon_sym_Var] = ACTIONS(2270), + [anon_sym_var] = ACTIONS(2270), + [anon_sym_VAR] = ACTIONS(2270), + [anon_sym_While] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_WHILE] = ACTIONS(2270), + [anon_sym_With] = ACTIONS(2270), + [anon_sym_with] = ACTIONS(2270), + [anon_sym_WITH] = ACTIONS(2270), + [sym_cf_comment] = ACTIONS(2272), + [sym__java_block_open] = ACTIONS(2272), + [sym__static_type_prefix] = ACTIONS(2272), }, - [STATE(840)] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_Query] = ACTIONS(2862), - [anon_sym_query] = ACTIONS(2862), - [anon_sym_QUERY] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [aux_sym_unary_operator_token1] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2862), - [aux_sym_number_token2] = ACTIONS(2860), - [anon_sym_This] = ACTIONS(2862), - [anon_sym_this] = ACTIONS(2862), - [anon_sym_THIS] = ACTIONS(2862), - [anon_sym_Super] = ACTIONS(2862), - [anon_sym_super] = ACTIONS(2862), - [anon_sym_SUPER] = ACTIONS(2862), - [anon_sym_True] = ACTIONS(2862), - [anon_sym_true] = ACTIONS(2862), - [anon_sym_TRUE] = ACTIONS(2862), - [anon_sym_False] = ACTIONS(2862), - [anon_sym_false] = ACTIONS(2862), - [anon_sym_FALSE] = ACTIONS(2862), - [anon_sym_Null] = ACTIONS(2862), - [anon_sym_null] = ACTIONS(2862), - [anon_sym_NULL] = ACTIONS(2862), - [anon_sym_Undefined] = ACTIONS(2862), - [anon_sym_undefined] = ACTIONS(2862), - [anon_sym_UNDEFINED] = ACTIONS(2862), - [anon_sym_get] = ACTIONS(2862), - [anon_sym_set] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [sym_hash_empty] = ACTIONS(2860), - [anon_sym_export] = ACTIONS(2862), - [anon_sym_QueryExecute] = ACTIONS(2862), - [anon_sym_queryexecute] = ACTIONS(2862), - [anon_sym_QUERYEXECUTE] = ACTIONS(2862), - [anon_sym_queryExecute] = ACTIONS(2862), - [anon_sym_BQUOTE] = ACTIONS(2862), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2860), - [anon_sym_Abstract] = ACTIONS(2862), - [anon_sym_abstract] = ACTIONS(2862), - [anon_sym_ABSTRACT] = ACTIONS(2862), - [anon_sym_Break] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_BREAK] = ACTIONS(2862), - [anon_sym_Case] = ACTIONS(2862), - [anon_sym_case] = ACTIONS(2862), - [anon_sym_CASE] = ACTIONS(2862), - [anon_sym_Component] = ACTIONS(2862), - [anon_sym_component] = ACTIONS(2862), - [anon_sym_COMPONENT] = ACTIONS(2862), - [anon_sym_Continue] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_CONTINUE] = ACTIONS(2862), - [anon_sym_Debugger] = ACTIONS(2862), - [anon_sym_debugger] = ACTIONS(2862), - [anon_sym_DEBUGGER] = ACTIONS(2862), - [anon_sym_Default] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2862), - [anon_sym_DEFAULT] = ACTIONS(2862), - [anon_sym_Do] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_DO] = ACTIONS(2862), - [anon_sym_Final] = ACTIONS(2862), - [anon_sym_final] = ACTIONS(2862), - [anon_sym_FINAL] = ACTIONS(2862), - [anon_sym_For] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_FOR] = ACTIONS(2862), - [anon_sym_Function] = ACTIONS(2862), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_FUNCTION] = ACTIONS(2862), - [anon_sym_If] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_IF] = ACTIONS(2862), - [anon_sym_Import] = ACTIONS(2862), - [anon_sym_import] = ACTIONS(2862), - [anon_sym_IMPORT] = ACTIONS(2862), - [anon_sym_Include] = ACTIONS(2862), - [anon_sym_include] = ACTIONS(2862), - [anon_sym_INCLUDE] = ACTIONS(2862), - [anon_sym_Interface] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_INTERFACE] = ACTIONS(2862), - [anon_sym_New] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_NEW] = ACTIONS(2862), - [anon_sym_Package] = ACTIONS(2862), - [anon_sym_package] = ACTIONS(2862), - [anon_sym_PACKAGE] = ACTIONS(2862), - [anon_sym_Private] = ACTIONS(2862), - [anon_sym_private] = ACTIONS(2862), - [anon_sym_PRIVATE] = ACTIONS(2862), - [anon_sym_Property] = ACTIONS(2862), - [anon_sym_property] = ACTIONS(2862), - [anon_sym_PROPERTY] = ACTIONS(2862), - [anon_sym_Public] = ACTIONS(2862), - [anon_sym_public] = ACTIONS(2862), - [anon_sym_PUBLIC] = ACTIONS(2862), - [anon_sym_Remote] = ACTIONS(2862), - [anon_sym_remote] = ACTIONS(2862), - [anon_sym_REMOTE] = ACTIONS(2862), - [anon_sym_Return] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_RETURN] = ACTIONS(2862), - [anon_sym_Static] = ACTIONS(2862), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_STATIC] = ACTIONS(2862), - [anon_sym_Switch] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2862), - [anon_sym_SWITCH] = ACTIONS(2862), - [anon_sym_Throw] = ACTIONS(2862), - [anon_sym_throw] = ACTIONS(2862), - [anon_sym_THROW] = ACTIONS(2862), - [anon_sym_Try] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_TRY] = ACTIONS(2862), - [anon_sym_Var] = ACTIONS(2862), - [anon_sym_var] = ACTIONS(2862), - [anon_sym_VAR] = ACTIONS(2862), - [anon_sym_While] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_WHILE] = ACTIONS(2862), - [anon_sym_With] = ACTIONS(2862), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_WITH] = ACTIONS(2862), - [sym_cf_comment] = ACTIONS(2860), - [sym__java_block_open] = ACTIONS(2860), - [sym__static_type_prefix] = ACTIONS(2860), + [STATE(892)] = { + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_Query] = ACTIONS(2904), + [anon_sym_query] = ACTIONS(2904), + [anon_sym_QUERY] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_unary_operator_token1] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2904), + [aux_sym_number_token2] = ACTIONS(2902), + [anon_sym_This] = ACTIONS(2904), + [anon_sym_this] = ACTIONS(2904), + [anon_sym_THIS] = ACTIONS(2904), + [anon_sym_Super] = ACTIONS(2904), + [anon_sym_super] = ACTIONS(2904), + [anon_sym_SUPER] = ACTIONS(2904), + [anon_sym_True] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2904), + [anon_sym_TRUE] = ACTIONS(2904), + [anon_sym_False] = ACTIONS(2904), + [anon_sym_false] = ACTIONS(2904), + [anon_sym_FALSE] = ACTIONS(2904), + [anon_sym_Null] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_Undefined] = ACTIONS(2904), + [anon_sym_undefined] = ACTIONS(2904), + [anon_sym_UNDEFINED] = ACTIONS(2904), + [anon_sym_get] = ACTIONS(2904), + [anon_sym_set] = ACTIONS(2904), + [anon_sym_POUND] = ACTIONS(2904), + [sym_hash_empty] = ACTIONS(2902), + [anon_sym_export] = ACTIONS(2904), + [anon_sym_QueryExecute] = ACTIONS(2904), + [anon_sym_queryexecute] = ACTIONS(2904), + [anon_sym_QUERYEXECUTE] = ACTIONS(2904), + [anon_sym_queryExecute] = ACTIONS(2904), + [anon_sym_BQUOTE] = ACTIONS(2904), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2902), + [anon_sym_Abstract] = ACTIONS(2904), + [anon_sym_abstract] = ACTIONS(2904), + [anon_sym_ABSTRACT] = ACTIONS(2904), + [anon_sym_Break] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_BREAK] = ACTIONS(2904), + [anon_sym_Case] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_CASE] = ACTIONS(2904), + [anon_sym_Component] = ACTIONS(2904), + [anon_sym_component] = ACTIONS(2904), + [anon_sym_COMPONENT] = ACTIONS(2904), + [anon_sym_Continue] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_CONTINUE] = ACTIONS(2904), + [anon_sym_Debugger] = ACTIONS(2904), + [anon_sym_debugger] = ACTIONS(2904), + [anon_sym_DEBUGGER] = ACTIONS(2904), + [anon_sym_Default] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_DEFAULT] = ACTIONS(2904), + [anon_sym_Do] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_DO] = ACTIONS(2904), + [anon_sym_Final] = ACTIONS(2904), + [anon_sym_final] = ACTIONS(2904), + [anon_sym_FINAL] = ACTIONS(2904), + [anon_sym_For] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_FOR] = ACTIONS(2904), + [anon_sym_Function] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_FUNCTION] = ACTIONS(2904), + [anon_sym_If] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_IF] = ACTIONS(2904), + [anon_sym_Import] = ACTIONS(2904), + [anon_sym_import] = ACTIONS(2904), + [anon_sym_IMPORT] = ACTIONS(2904), + [anon_sym_Include] = ACTIONS(2904), + [anon_sym_include] = ACTIONS(2904), + [anon_sym_INCLUDE] = ACTIONS(2904), + [anon_sym_Interface] = ACTIONS(2904), + [anon_sym_interface] = ACTIONS(2904), + [anon_sym_INTERFACE] = ACTIONS(2904), + [anon_sym_New] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_NEW] = ACTIONS(2904), + [anon_sym_Package] = ACTIONS(2904), + [anon_sym_package] = ACTIONS(2904), + [anon_sym_PACKAGE] = ACTIONS(2904), + [anon_sym_Private] = ACTIONS(2904), + [anon_sym_private] = ACTIONS(2904), + [anon_sym_PRIVATE] = ACTIONS(2904), + [anon_sym_Property] = ACTIONS(2904), + [anon_sym_property] = ACTIONS(2904), + [anon_sym_PROPERTY] = ACTIONS(2904), + [anon_sym_Public] = ACTIONS(2904), + [anon_sym_public] = ACTIONS(2904), + [anon_sym_PUBLIC] = ACTIONS(2904), + [anon_sym_Remote] = ACTIONS(2904), + [anon_sym_remote] = ACTIONS(2904), + [anon_sym_REMOTE] = ACTIONS(2904), + [anon_sym_Return] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_RETURN] = ACTIONS(2904), + [anon_sym_Static] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_STATIC] = ACTIONS(2904), + [anon_sym_Switch] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_SWITCH] = ACTIONS(2904), + [anon_sym_Throw] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_THROW] = ACTIONS(2904), + [anon_sym_Try] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_TRY] = ACTIONS(2904), + [anon_sym_Var] = ACTIONS(2904), + [anon_sym_var] = ACTIONS(2904), + [anon_sym_VAR] = ACTIONS(2904), + [anon_sym_While] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_WHILE] = ACTIONS(2904), + [anon_sym_With] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_WITH] = ACTIONS(2904), + [sym_cf_comment] = ACTIONS(2902), + [sym__java_block_open] = ACTIONS(2902), + [sym__static_type_prefix] = ACTIONS(2902), }, - [STATE(841)] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2864), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_Query] = ACTIONS(2866), - [anon_sym_query] = ACTIONS(2866), - [anon_sym_QUERY] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [aux_sym_unary_operator_token1] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2866), - [aux_sym_number_token2] = ACTIONS(2864), - [anon_sym_This] = ACTIONS(2866), - [anon_sym_this] = ACTIONS(2866), - [anon_sym_THIS] = ACTIONS(2866), - [anon_sym_Super] = ACTIONS(2866), - [anon_sym_super] = ACTIONS(2866), - [anon_sym_SUPER] = ACTIONS(2866), - [anon_sym_True] = ACTIONS(2866), - [anon_sym_true] = ACTIONS(2866), - [anon_sym_TRUE] = ACTIONS(2866), - [anon_sym_False] = ACTIONS(2866), - [anon_sym_false] = ACTIONS(2866), - [anon_sym_FALSE] = ACTIONS(2866), - [anon_sym_Null] = ACTIONS(2866), - [anon_sym_null] = ACTIONS(2866), - [anon_sym_NULL] = ACTIONS(2866), - [anon_sym_Undefined] = ACTIONS(2866), - [anon_sym_undefined] = ACTIONS(2866), - [anon_sym_UNDEFINED] = ACTIONS(2866), - [anon_sym_get] = ACTIONS(2866), - [anon_sym_set] = ACTIONS(2866), - [anon_sym_POUND] = ACTIONS(2866), - [sym_hash_empty] = ACTIONS(2864), - [anon_sym_export] = ACTIONS(2866), - [anon_sym_QueryExecute] = ACTIONS(2866), - [anon_sym_queryexecute] = ACTIONS(2866), - [anon_sym_QUERYEXECUTE] = ACTIONS(2866), - [anon_sym_queryExecute] = ACTIONS(2866), - [anon_sym_BQUOTE] = ACTIONS(2866), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2864), - [anon_sym_Abstract] = ACTIONS(2866), - [anon_sym_abstract] = ACTIONS(2866), - [anon_sym_ABSTRACT] = ACTIONS(2866), - [anon_sym_Break] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_BREAK] = ACTIONS(2866), - [anon_sym_Case] = ACTIONS(2866), - [anon_sym_case] = ACTIONS(2866), - [anon_sym_CASE] = ACTIONS(2866), - [anon_sym_Component] = ACTIONS(2866), - [anon_sym_component] = ACTIONS(2866), - [anon_sym_COMPONENT] = ACTIONS(2866), - [anon_sym_Continue] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_CONTINUE] = ACTIONS(2866), - [anon_sym_Debugger] = ACTIONS(2866), - [anon_sym_debugger] = ACTIONS(2866), - [anon_sym_DEBUGGER] = ACTIONS(2866), - [anon_sym_Default] = ACTIONS(2866), - [anon_sym_default] = ACTIONS(2866), - [anon_sym_DEFAULT] = ACTIONS(2866), - [anon_sym_Do] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_DO] = ACTIONS(2866), - [anon_sym_Final] = ACTIONS(2866), - [anon_sym_final] = ACTIONS(2866), - [anon_sym_FINAL] = ACTIONS(2866), - [anon_sym_For] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_FOR] = ACTIONS(2866), - [anon_sym_Function] = ACTIONS(2866), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_FUNCTION] = ACTIONS(2866), - [anon_sym_If] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_IF] = ACTIONS(2866), - [anon_sym_Import] = ACTIONS(2866), - [anon_sym_import] = ACTIONS(2866), - [anon_sym_IMPORT] = ACTIONS(2866), - [anon_sym_Include] = ACTIONS(2866), - [anon_sym_include] = ACTIONS(2866), - [anon_sym_INCLUDE] = ACTIONS(2866), - [anon_sym_Interface] = ACTIONS(2866), - [anon_sym_interface] = ACTIONS(2866), - [anon_sym_INTERFACE] = ACTIONS(2866), - [anon_sym_New] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_NEW] = ACTIONS(2866), - [anon_sym_Package] = ACTIONS(2866), - [anon_sym_package] = ACTIONS(2866), - [anon_sym_PACKAGE] = ACTIONS(2866), - [anon_sym_Private] = ACTIONS(2866), - [anon_sym_private] = ACTIONS(2866), - [anon_sym_PRIVATE] = ACTIONS(2866), - [anon_sym_Property] = ACTIONS(2866), - [anon_sym_property] = ACTIONS(2866), - [anon_sym_PROPERTY] = ACTIONS(2866), - [anon_sym_Public] = ACTIONS(2866), - [anon_sym_public] = ACTIONS(2866), - [anon_sym_PUBLIC] = ACTIONS(2866), - [anon_sym_Remote] = ACTIONS(2866), - [anon_sym_remote] = ACTIONS(2866), - [anon_sym_REMOTE] = ACTIONS(2866), - [anon_sym_Return] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_RETURN] = ACTIONS(2866), - [anon_sym_Static] = ACTIONS(2866), - [anon_sym_static] = ACTIONS(2866), - [anon_sym_STATIC] = ACTIONS(2866), - [anon_sym_Switch] = ACTIONS(2866), - [anon_sym_switch] = ACTIONS(2866), - [anon_sym_SWITCH] = ACTIONS(2866), - [anon_sym_Throw] = ACTIONS(2866), - [anon_sym_throw] = ACTIONS(2866), - [anon_sym_THROW] = ACTIONS(2866), - [anon_sym_Try] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_TRY] = ACTIONS(2866), - [anon_sym_Var] = ACTIONS(2866), - [anon_sym_var] = ACTIONS(2866), - [anon_sym_VAR] = ACTIONS(2866), - [anon_sym_While] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_WHILE] = ACTIONS(2866), - [anon_sym_With] = ACTIONS(2866), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_WITH] = ACTIONS(2866), - [sym_cf_comment] = ACTIONS(2864), - [sym__java_block_open] = ACTIONS(2864), - [sym__static_type_prefix] = ACTIONS(2864), + [STATE(893)] = { + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_Query] = ACTIONS(2908), + [anon_sym_query] = ACTIONS(2908), + [anon_sym_QUERY] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_unary_operator_token1] = ACTIONS(2908), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2908), + [aux_sym_number_token2] = ACTIONS(2906), + [anon_sym_This] = ACTIONS(2908), + [anon_sym_this] = ACTIONS(2908), + [anon_sym_THIS] = ACTIONS(2908), + [anon_sym_Super] = ACTIONS(2908), + [anon_sym_super] = ACTIONS(2908), + [anon_sym_SUPER] = ACTIONS(2908), + [anon_sym_True] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2908), + [anon_sym_TRUE] = ACTIONS(2908), + [anon_sym_False] = ACTIONS(2908), + [anon_sym_false] = ACTIONS(2908), + [anon_sym_FALSE] = ACTIONS(2908), + [anon_sym_Null] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_Undefined] = ACTIONS(2908), + [anon_sym_undefined] = ACTIONS(2908), + [anon_sym_UNDEFINED] = ACTIONS(2908), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_POUND] = ACTIONS(2908), + [sym_hash_empty] = ACTIONS(2906), + [anon_sym_export] = ACTIONS(2908), + [anon_sym_QueryExecute] = ACTIONS(2908), + [anon_sym_queryexecute] = ACTIONS(2908), + [anon_sym_QUERYEXECUTE] = ACTIONS(2908), + [anon_sym_queryExecute] = ACTIONS(2908), + [anon_sym_BQUOTE] = ACTIONS(2908), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2906), + [anon_sym_Abstract] = ACTIONS(2908), + [anon_sym_abstract] = ACTIONS(2908), + [anon_sym_ABSTRACT] = ACTIONS(2908), + [anon_sym_Break] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_BREAK] = ACTIONS(2908), + [anon_sym_Case] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_CASE] = ACTIONS(2908), + [anon_sym_Component] = ACTIONS(2908), + [anon_sym_component] = ACTIONS(2908), + [anon_sym_COMPONENT] = ACTIONS(2908), + [anon_sym_Continue] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_CONTINUE] = ACTIONS(2908), + [anon_sym_Debugger] = ACTIONS(2908), + [anon_sym_debugger] = ACTIONS(2908), + [anon_sym_DEBUGGER] = ACTIONS(2908), + [anon_sym_Default] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_DEFAULT] = ACTIONS(2908), + [anon_sym_Do] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_DO] = ACTIONS(2908), + [anon_sym_Final] = ACTIONS(2908), + [anon_sym_final] = ACTIONS(2908), + [anon_sym_FINAL] = ACTIONS(2908), + [anon_sym_For] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_FOR] = ACTIONS(2908), + [anon_sym_Function] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_FUNCTION] = ACTIONS(2908), + [anon_sym_If] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_IF] = ACTIONS(2908), + [anon_sym_Import] = ACTIONS(2908), + [anon_sym_import] = ACTIONS(2908), + [anon_sym_IMPORT] = ACTIONS(2908), + [anon_sym_Include] = ACTIONS(2908), + [anon_sym_include] = ACTIONS(2908), + [anon_sym_INCLUDE] = ACTIONS(2908), + [anon_sym_Interface] = ACTIONS(2908), + [anon_sym_interface] = ACTIONS(2908), + [anon_sym_INTERFACE] = ACTIONS(2908), + [anon_sym_New] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_NEW] = ACTIONS(2908), + [anon_sym_Package] = ACTIONS(2908), + [anon_sym_package] = ACTIONS(2908), + [anon_sym_PACKAGE] = ACTIONS(2908), + [anon_sym_Private] = ACTIONS(2908), + [anon_sym_private] = ACTIONS(2908), + [anon_sym_PRIVATE] = ACTIONS(2908), + [anon_sym_Property] = ACTIONS(2908), + [anon_sym_property] = ACTIONS(2908), + [anon_sym_PROPERTY] = ACTIONS(2908), + [anon_sym_Public] = ACTIONS(2908), + [anon_sym_public] = ACTIONS(2908), + [anon_sym_PUBLIC] = ACTIONS(2908), + [anon_sym_Remote] = ACTIONS(2908), + [anon_sym_remote] = ACTIONS(2908), + [anon_sym_REMOTE] = ACTIONS(2908), + [anon_sym_Return] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_RETURN] = ACTIONS(2908), + [anon_sym_Static] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_STATIC] = ACTIONS(2908), + [anon_sym_Switch] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_SWITCH] = ACTIONS(2908), + [anon_sym_Throw] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_THROW] = ACTIONS(2908), + [anon_sym_Try] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_TRY] = ACTIONS(2908), + [anon_sym_Var] = ACTIONS(2908), + [anon_sym_var] = ACTIONS(2908), + [anon_sym_VAR] = ACTIONS(2908), + [anon_sym_While] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_WHILE] = ACTIONS(2908), + [anon_sym_With] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_WITH] = ACTIONS(2908), + [sym_cf_comment] = ACTIONS(2906), + [sym__java_block_open] = ACTIONS(2906), + [sym__static_type_prefix] = ACTIONS(2906), }, - [STATE(842)] = { - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_RBRACE] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_Query] = ACTIONS(3042), - [anon_sym_query] = ACTIONS(3042), - [anon_sym_QUERY] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_unary_operator_token1] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3040), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3042), - [aux_sym_number_token2] = ACTIONS(3040), - [anon_sym_This] = ACTIONS(3042), - [anon_sym_this] = ACTIONS(3042), - [anon_sym_THIS] = ACTIONS(3042), - [anon_sym_Super] = ACTIONS(3042), - [anon_sym_super] = ACTIONS(3042), - [anon_sym_SUPER] = ACTIONS(3042), - [anon_sym_True] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3042), - [anon_sym_TRUE] = ACTIONS(3042), - [anon_sym_False] = ACTIONS(3042), - [anon_sym_false] = ACTIONS(3042), - [anon_sym_FALSE] = ACTIONS(3042), - [anon_sym_Null] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_NULL] = ACTIONS(3042), - [anon_sym_Undefined] = ACTIONS(3042), - [anon_sym_undefined] = ACTIONS(3042), - [anon_sym_UNDEFINED] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(3042), - [anon_sym_set] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [sym_hash_empty] = ACTIONS(3040), - [anon_sym_export] = ACTIONS(3042), - [anon_sym_QueryExecute] = ACTIONS(3042), - [anon_sym_queryexecute] = ACTIONS(3042), - [anon_sym_QUERYEXECUTE] = ACTIONS(3042), - [anon_sym_queryExecute] = ACTIONS(3042), - [anon_sym_BQUOTE] = ACTIONS(3042), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3040), - [anon_sym_Abstract] = ACTIONS(3042), - [anon_sym_abstract] = ACTIONS(3042), - [anon_sym_ABSTRACT] = ACTIONS(3042), - [anon_sym_Break] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_BREAK] = ACTIONS(3042), - [anon_sym_Case] = ACTIONS(3042), - [anon_sym_case] = ACTIONS(3042), - [anon_sym_CASE] = ACTIONS(3042), - [anon_sym_Component] = ACTIONS(3042), - [anon_sym_component] = ACTIONS(3042), - [anon_sym_COMPONENT] = ACTIONS(3042), - [anon_sym_Continue] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_CONTINUE] = ACTIONS(3042), - [anon_sym_Debugger] = ACTIONS(3042), - [anon_sym_debugger] = ACTIONS(3042), - [anon_sym_DEBUGGER] = ACTIONS(3042), - [anon_sym_Default] = ACTIONS(3042), - [anon_sym_default] = ACTIONS(3042), - [anon_sym_DEFAULT] = ACTIONS(3042), - [anon_sym_Do] = ACTIONS(3042), - [anon_sym_do] = ACTIONS(3042), - [anon_sym_DO] = ACTIONS(3042), - [anon_sym_Final] = ACTIONS(3042), - [anon_sym_final] = ACTIONS(3042), - [anon_sym_FINAL] = ACTIONS(3042), - [anon_sym_For] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_FOR] = ACTIONS(3042), - [anon_sym_Function] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_FUNCTION] = ACTIONS(3042), - [anon_sym_If] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_IF] = ACTIONS(3042), - [anon_sym_Import] = ACTIONS(3042), - [anon_sym_import] = ACTIONS(3042), - [anon_sym_IMPORT] = ACTIONS(3042), - [anon_sym_Include] = ACTIONS(3042), - [anon_sym_include] = ACTIONS(3042), - [anon_sym_INCLUDE] = ACTIONS(3042), - [anon_sym_Interface] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_INTERFACE] = ACTIONS(3042), - [anon_sym_New] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_NEW] = ACTIONS(3042), - [anon_sym_Package] = ACTIONS(3042), - [anon_sym_package] = ACTIONS(3042), - [anon_sym_PACKAGE] = ACTIONS(3042), - [anon_sym_Private] = ACTIONS(3042), - [anon_sym_private] = ACTIONS(3042), - [anon_sym_PRIVATE] = ACTIONS(3042), - [anon_sym_Property] = ACTIONS(3042), - [anon_sym_property] = ACTIONS(3042), - [anon_sym_PROPERTY] = ACTIONS(3042), - [anon_sym_Public] = ACTIONS(3042), - [anon_sym_public] = ACTIONS(3042), - [anon_sym_PUBLIC] = ACTIONS(3042), - [anon_sym_Remote] = ACTIONS(3042), - [anon_sym_remote] = ACTIONS(3042), - [anon_sym_REMOTE] = ACTIONS(3042), - [anon_sym_Return] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_RETURN] = ACTIONS(3042), - [anon_sym_Static] = ACTIONS(3042), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_STATIC] = ACTIONS(3042), - [anon_sym_Switch] = ACTIONS(3042), - [anon_sym_switch] = ACTIONS(3042), - [anon_sym_SWITCH] = ACTIONS(3042), - [anon_sym_Throw] = ACTIONS(3042), - [anon_sym_throw] = ACTIONS(3042), - [anon_sym_THROW] = ACTIONS(3042), - [anon_sym_Try] = ACTIONS(3042), - [anon_sym_try] = ACTIONS(3042), - [anon_sym_TRY] = ACTIONS(3042), - [anon_sym_Var] = ACTIONS(3042), - [anon_sym_var] = ACTIONS(3042), - [anon_sym_VAR] = ACTIONS(3042), - [anon_sym_While] = ACTIONS(3042), - [anon_sym_while] = ACTIONS(3042), - [anon_sym_WHILE] = ACTIONS(3042), - [anon_sym_With] = ACTIONS(3042), - [anon_sym_with] = ACTIONS(3042), - [anon_sym_WITH] = ACTIONS(3042), - [sym_cf_comment] = ACTIONS(3040), - [sym__java_block_open] = ACTIONS(3040), - [sym__static_type_prefix] = ACTIONS(3040), + [STATE(894)] = { + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_Query] = ACTIONS(2912), + [anon_sym_query] = ACTIONS(2912), + [anon_sym_QUERY] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_unary_operator_token1] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2912), + [aux_sym_number_token2] = ACTIONS(2910), + [anon_sym_This] = ACTIONS(2912), + [anon_sym_this] = ACTIONS(2912), + [anon_sym_THIS] = ACTIONS(2912), + [anon_sym_Super] = ACTIONS(2912), + [anon_sym_super] = ACTIONS(2912), + [anon_sym_SUPER] = ACTIONS(2912), + [anon_sym_True] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2912), + [anon_sym_TRUE] = ACTIONS(2912), + [anon_sym_False] = ACTIONS(2912), + [anon_sym_false] = ACTIONS(2912), + [anon_sym_FALSE] = ACTIONS(2912), + [anon_sym_Null] = ACTIONS(2912), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_Undefined] = ACTIONS(2912), + [anon_sym_undefined] = ACTIONS(2912), + [anon_sym_UNDEFINED] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2912), + [anon_sym_set] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2912), + [sym_hash_empty] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_QueryExecute] = ACTIONS(2912), + [anon_sym_queryexecute] = ACTIONS(2912), + [anon_sym_QUERYEXECUTE] = ACTIONS(2912), + [anon_sym_queryExecute] = ACTIONS(2912), + [anon_sym_BQUOTE] = ACTIONS(2912), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2910), + [anon_sym_Abstract] = ACTIONS(2912), + [anon_sym_abstract] = ACTIONS(2912), + [anon_sym_ABSTRACT] = ACTIONS(2912), + [anon_sym_Break] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_BREAK] = ACTIONS(2912), + [anon_sym_Case] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2912), + [anon_sym_CASE] = ACTIONS(2912), + [anon_sym_Component] = ACTIONS(2912), + [anon_sym_component] = ACTIONS(2912), + [anon_sym_COMPONENT] = ACTIONS(2912), + [anon_sym_Continue] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_CONTINUE] = ACTIONS(2912), + [anon_sym_Debugger] = ACTIONS(2912), + [anon_sym_debugger] = ACTIONS(2912), + [anon_sym_DEBUGGER] = ACTIONS(2912), + [anon_sym_Default] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_DEFAULT] = ACTIONS(2912), + [anon_sym_Do] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_DO] = ACTIONS(2912), + [anon_sym_Final] = ACTIONS(2912), + [anon_sym_final] = ACTIONS(2912), + [anon_sym_FINAL] = ACTIONS(2912), + [anon_sym_For] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_FOR] = ACTIONS(2912), + [anon_sym_Function] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_FUNCTION] = ACTIONS(2912), + [anon_sym_If] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_IF] = ACTIONS(2912), + [anon_sym_Import] = ACTIONS(2912), + [anon_sym_import] = ACTIONS(2912), + [anon_sym_IMPORT] = ACTIONS(2912), + [anon_sym_Include] = ACTIONS(2912), + [anon_sym_include] = ACTIONS(2912), + [anon_sym_INCLUDE] = ACTIONS(2912), + [anon_sym_Interface] = ACTIONS(2912), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_INTERFACE] = ACTIONS(2912), + [anon_sym_New] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_NEW] = ACTIONS(2912), + [anon_sym_Package] = ACTIONS(2912), + [anon_sym_package] = ACTIONS(2912), + [anon_sym_PACKAGE] = ACTIONS(2912), + [anon_sym_Private] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_PRIVATE] = ACTIONS(2912), + [anon_sym_Property] = ACTIONS(2912), + [anon_sym_property] = ACTIONS(2912), + [anon_sym_PROPERTY] = ACTIONS(2912), + [anon_sym_Public] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_PUBLIC] = ACTIONS(2912), + [anon_sym_Remote] = ACTIONS(2912), + [anon_sym_remote] = ACTIONS(2912), + [anon_sym_REMOTE] = ACTIONS(2912), + [anon_sym_Return] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_RETURN] = ACTIONS(2912), + [anon_sym_Static] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_STATIC] = ACTIONS(2912), + [anon_sym_Switch] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_SWITCH] = ACTIONS(2912), + [anon_sym_Throw] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_THROW] = ACTIONS(2912), + [anon_sym_Try] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_TRY] = ACTIONS(2912), + [anon_sym_Var] = ACTIONS(2912), + [anon_sym_var] = ACTIONS(2912), + [anon_sym_VAR] = ACTIONS(2912), + [anon_sym_While] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_WHILE] = ACTIONS(2912), + [anon_sym_With] = ACTIONS(2912), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_WITH] = ACTIONS(2912), + [sym_cf_comment] = ACTIONS(2910), + [sym__java_block_open] = ACTIONS(2910), + [sym__static_type_prefix] = ACTIONS(2910), }, - [STATE(843)] = { - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_Query] = ACTIONS(2870), - [anon_sym_query] = ACTIONS(2870), - [anon_sym_QUERY] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [aux_sym_unary_operator_token1] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2870), - [aux_sym_number_token2] = ACTIONS(2868), - [anon_sym_This] = ACTIONS(2870), - [anon_sym_this] = ACTIONS(2870), - [anon_sym_THIS] = ACTIONS(2870), - [anon_sym_Super] = ACTIONS(2870), - [anon_sym_super] = ACTIONS(2870), - [anon_sym_SUPER] = ACTIONS(2870), - [anon_sym_True] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2870), - [anon_sym_TRUE] = ACTIONS(2870), - [anon_sym_False] = ACTIONS(2870), - [anon_sym_false] = ACTIONS(2870), - [anon_sym_FALSE] = ACTIONS(2870), - [anon_sym_Null] = ACTIONS(2870), - [anon_sym_null] = ACTIONS(2870), - [anon_sym_NULL] = ACTIONS(2870), - [anon_sym_Undefined] = ACTIONS(2870), - [anon_sym_undefined] = ACTIONS(2870), - [anon_sym_UNDEFINED] = ACTIONS(2870), - [anon_sym_get] = ACTIONS(2870), - [anon_sym_set] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [sym_hash_empty] = ACTIONS(2868), - [anon_sym_export] = ACTIONS(2870), - [anon_sym_QueryExecute] = ACTIONS(2870), - [anon_sym_queryexecute] = ACTIONS(2870), - [anon_sym_QUERYEXECUTE] = ACTIONS(2870), - [anon_sym_queryExecute] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2868), - [anon_sym_Abstract] = ACTIONS(2870), - [anon_sym_abstract] = ACTIONS(2870), - [anon_sym_ABSTRACT] = ACTIONS(2870), - [anon_sym_Break] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_BREAK] = ACTIONS(2870), - [anon_sym_Case] = ACTIONS(2870), - [anon_sym_case] = ACTIONS(2870), - [anon_sym_CASE] = ACTIONS(2870), - [anon_sym_Component] = ACTIONS(2870), - [anon_sym_component] = ACTIONS(2870), - [anon_sym_COMPONENT] = ACTIONS(2870), - [anon_sym_Continue] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_CONTINUE] = ACTIONS(2870), - [anon_sym_Debugger] = ACTIONS(2870), - [anon_sym_debugger] = ACTIONS(2870), - [anon_sym_DEBUGGER] = ACTIONS(2870), - [anon_sym_Default] = ACTIONS(2870), - [anon_sym_default] = ACTIONS(2870), - [anon_sym_DEFAULT] = ACTIONS(2870), - [anon_sym_Do] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_DO] = ACTIONS(2870), - [anon_sym_Final] = ACTIONS(2870), - [anon_sym_final] = ACTIONS(2870), - [anon_sym_FINAL] = ACTIONS(2870), - [anon_sym_For] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_FOR] = ACTIONS(2870), - [anon_sym_Function] = ACTIONS(2870), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_FUNCTION] = ACTIONS(2870), - [anon_sym_If] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_IF] = ACTIONS(2870), - [anon_sym_Import] = ACTIONS(2870), - [anon_sym_import] = ACTIONS(2870), - [anon_sym_IMPORT] = ACTIONS(2870), - [anon_sym_Include] = ACTIONS(2870), - [anon_sym_include] = ACTIONS(2870), - [anon_sym_INCLUDE] = ACTIONS(2870), - [anon_sym_Interface] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_INTERFACE] = ACTIONS(2870), - [anon_sym_New] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_NEW] = ACTIONS(2870), - [anon_sym_Package] = ACTIONS(2870), - [anon_sym_package] = ACTIONS(2870), - [anon_sym_PACKAGE] = ACTIONS(2870), - [anon_sym_Private] = ACTIONS(2870), - [anon_sym_private] = ACTIONS(2870), - [anon_sym_PRIVATE] = ACTIONS(2870), - [anon_sym_Property] = ACTIONS(2870), - [anon_sym_property] = ACTIONS(2870), - [anon_sym_PROPERTY] = ACTIONS(2870), - [anon_sym_Public] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2870), - [anon_sym_PUBLIC] = ACTIONS(2870), - [anon_sym_Remote] = ACTIONS(2870), - [anon_sym_remote] = ACTIONS(2870), - [anon_sym_REMOTE] = ACTIONS(2870), - [anon_sym_Return] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_RETURN] = ACTIONS(2870), - [anon_sym_Static] = ACTIONS(2870), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_STATIC] = ACTIONS(2870), - [anon_sym_Switch] = ACTIONS(2870), - [anon_sym_switch] = ACTIONS(2870), - [anon_sym_SWITCH] = ACTIONS(2870), - [anon_sym_Throw] = ACTIONS(2870), - [anon_sym_throw] = ACTIONS(2870), - [anon_sym_THROW] = ACTIONS(2870), - [anon_sym_Try] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_TRY] = ACTIONS(2870), - [anon_sym_Var] = ACTIONS(2870), - [anon_sym_var] = ACTIONS(2870), - [anon_sym_VAR] = ACTIONS(2870), - [anon_sym_While] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_WHILE] = ACTIONS(2870), - [anon_sym_With] = ACTIONS(2870), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_WITH] = ACTIONS(2870), - [sym_cf_comment] = ACTIONS(2868), - [sym__java_block_open] = ACTIONS(2868), - [sym__static_type_prefix] = ACTIONS(2868), + [STATE(895)] = { + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2918), + [anon_sym_Query] = ACTIONS(2920), + [anon_sym_query] = ACTIONS(2920), + [anon_sym_QUERY] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_unary_operator_token1] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2920), + [aux_sym_number_token2] = ACTIONS(2918), + [anon_sym_This] = ACTIONS(2920), + [anon_sym_this] = ACTIONS(2920), + [anon_sym_THIS] = ACTIONS(2920), + [anon_sym_Super] = ACTIONS(2920), + [anon_sym_super] = ACTIONS(2920), + [anon_sym_SUPER] = ACTIONS(2920), + [anon_sym_True] = ACTIONS(2920), + [anon_sym_true] = ACTIONS(2920), + [anon_sym_TRUE] = ACTIONS(2920), + [anon_sym_False] = ACTIONS(2920), + [anon_sym_false] = ACTIONS(2920), + [anon_sym_FALSE] = ACTIONS(2920), + [anon_sym_Null] = ACTIONS(2920), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_Undefined] = ACTIONS(2920), + [anon_sym_undefined] = ACTIONS(2920), + [anon_sym_UNDEFINED] = ACTIONS(2920), + [anon_sym_get] = ACTIONS(2920), + [anon_sym_set] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(2920), + [sym_hash_empty] = ACTIONS(2918), + [anon_sym_export] = ACTIONS(2920), + [anon_sym_QueryExecute] = ACTIONS(2920), + [anon_sym_queryexecute] = ACTIONS(2920), + [anon_sym_QUERYEXECUTE] = ACTIONS(2920), + [anon_sym_queryExecute] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2918), + [anon_sym_Abstract] = ACTIONS(2920), + [anon_sym_abstract] = ACTIONS(2920), + [anon_sym_ABSTRACT] = ACTIONS(2920), + [anon_sym_Break] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_BREAK] = ACTIONS(2920), + [anon_sym_Case] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_CASE] = ACTIONS(2920), + [anon_sym_Component] = ACTIONS(2920), + [anon_sym_component] = ACTIONS(2920), + [anon_sym_COMPONENT] = ACTIONS(2920), + [anon_sym_Continue] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_CONTINUE] = ACTIONS(2920), + [anon_sym_Debugger] = ACTIONS(2920), + [anon_sym_debugger] = ACTIONS(2920), + [anon_sym_DEBUGGER] = ACTIONS(2920), + [anon_sym_Default] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_DEFAULT] = ACTIONS(2920), + [anon_sym_Do] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_DO] = ACTIONS(2920), + [anon_sym_Final] = ACTIONS(2920), + [anon_sym_final] = ACTIONS(2920), + [anon_sym_FINAL] = ACTIONS(2920), + [anon_sym_For] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_FOR] = ACTIONS(2920), + [anon_sym_Function] = ACTIONS(2920), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_FUNCTION] = ACTIONS(2920), + [anon_sym_If] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_IF] = ACTIONS(2920), + [anon_sym_Import] = ACTIONS(2920), + [anon_sym_import] = ACTIONS(2920), + [anon_sym_IMPORT] = ACTIONS(2920), + [anon_sym_Include] = ACTIONS(2920), + [anon_sym_include] = ACTIONS(2920), + [anon_sym_INCLUDE] = ACTIONS(2920), + [anon_sym_Interface] = ACTIONS(2920), + [anon_sym_interface] = ACTIONS(2920), + [anon_sym_INTERFACE] = ACTIONS(2920), + [anon_sym_New] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_NEW] = ACTIONS(2920), + [anon_sym_Package] = ACTIONS(2920), + [anon_sym_package] = ACTIONS(2920), + [anon_sym_PACKAGE] = ACTIONS(2920), + [anon_sym_Private] = ACTIONS(2920), + [anon_sym_private] = ACTIONS(2920), + [anon_sym_PRIVATE] = ACTIONS(2920), + [anon_sym_Property] = ACTIONS(2920), + [anon_sym_property] = ACTIONS(2920), + [anon_sym_PROPERTY] = ACTIONS(2920), + [anon_sym_Public] = ACTIONS(2920), + [anon_sym_public] = ACTIONS(2920), + [anon_sym_PUBLIC] = ACTIONS(2920), + [anon_sym_Remote] = ACTIONS(2920), + [anon_sym_remote] = ACTIONS(2920), + [anon_sym_REMOTE] = ACTIONS(2920), + [anon_sym_Return] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_RETURN] = ACTIONS(2920), + [anon_sym_Static] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_STATIC] = ACTIONS(2920), + [anon_sym_Switch] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_SWITCH] = ACTIONS(2920), + [anon_sym_Throw] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_THROW] = ACTIONS(2920), + [anon_sym_Try] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_TRY] = ACTIONS(2920), + [anon_sym_Var] = ACTIONS(2920), + [anon_sym_var] = ACTIONS(2920), + [anon_sym_VAR] = ACTIONS(2920), + [anon_sym_While] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_WHILE] = ACTIONS(2920), + [anon_sym_With] = ACTIONS(2920), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_WITH] = ACTIONS(2920), + [sym_cf_comment] = ACTIONS(2918), + [sym__java_block_open] = ACTIONS(2918), + [sym__static_type_prefix] = ACTIONS(2918), }, - [STATE(844)] = { - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_Query] = ACTIONS(2874), - [anon_sym_query] = ACTIONS(2874), - [anon_sym_QUERY] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [aux_sym_unary_operator_token1] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_DQUOTE] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2874), - [aux_sym_number_token2] = ACTIONS(2872), - [anon_sym_This] = ACTIONS(2874), - [anon_sym_this] = ACTIONS(2874), - [anon_sym_THIS] = ACTIONS(2874), - [anon_sym_Super] = ACTIONS(2874), - [anon_sym_super] = ACTIONS(2874), - [anon_sym_SUPER] = ACTIONS(2874), - [anon_sym_True] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_TRUE] = ACTIONS(2874), - [anon_sym_False] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [anon_sym_FALSE] = ACTIONS(2874), - [anon_sym_Null] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2874), - [anon_sym_NULL] = ACTIONS(2874), - [anon_sym_Undefined] = ACTIONS(2874), - [anon_sym_undefined] = ACTIONS(2874), - [anon_sym_UNDEFINED] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2874), - [anon_sym_set] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [sym_hash_empty] = ACTIONS(2872), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_QueryExecute] = ACTIONS(2874), - [anon_sym_queryexecute] = ACTIONS(2874), - [anon_sym_QUERYEXECUTE] = ACTIONS(2874), - [anon_sym_queryExecute] = ACTIONS(2874), - [anon_sym_BQUOTE] = ACTIONS(2874), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2872), - [anon_sym_Abstract] = ACTIONS(2874), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_ABSTRACT] = ACTIONS(2874), - [anon_sym_Break] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_BREAK] = ACTIONS(2874), - [anon_sym_Case] = ACTIONS(2874), - [anon_sym_case] = ACTIONS(2874), - [anon_sym_CASE] = ACTIONS(2874), - [anon_sym_Component] = ACTIONS(2874), - [anon_sym_component] = ACTIONS(2874), - [anon_sym_COMPONENT] = ACTIONS(2874), - [anon_sym_Continue] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_CONTINUE] = ACTIONS(2874), - [anon_sym_Debugger] = ACTIONS(2874), - [anon_sym_debugger] = ACTIONS(2874), - [anon_sym_DEBUGGER] = ACTIONS(2874), - [anon_sym_Default] = ACTIONS(2874), - [anon_sym_default] = ACTIONS(2874), - [anon_sym_DEFAULT] = ACTIONS(2874), - [anon_sym_Do] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_DO] = ACTIONS(2874), - [anon_sym_Final] = ACTIONS(2874), - [anon_sym_final] = ACTIONS(2874), - [anon_sym_FINAL] = ACTIONS(2874), - [anon_sym_For] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_FOR] = ACTIONS(2874), - [anon_sym_Function] = ACTIONS(2874), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_FUNCTION] = ACTIONS(2874), - [anon_sym_If] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_IF] = ACTIONS(2874), - [anon_sym_Import] = ACTIONS(2874), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_IMPORT] = ACTIONS(2874), - [anon_sym_Include] = ACTIONS(2874), - [anon_sym_include] = ACTIONS(2874), - [anon_sym_INCLUDE] = ACTIONS(2874), - [anon_sym_Interface] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_INTERFACE] = ACTIONS(2874), - [anon_sym_New] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_NEW] = ACTIONS(2874), - [anon_sym_Package] = ACTIONS(2874), - [anon_sym_package] = ACTIONS(2874), - [anon_sym_PACKAGE] = ACTIONS(2874), - [anon_sym_Private] = ACTIONS(2874), - [anon_sym_private] = ACTIONS(2874), - [anon_sym_PRIVATE] = ACTIONS(2874), - [anon_sym_Property] = ACTIONS(2874), - [anon_sym_property] = ACTIONS(2874), - [anon_sym_PROPERTY] = ACTIONS(2874), - [anon_sym_Public] = ACTIONS(2874), - [anon_sym_public] = ACTIONS(2874), - [anon_sym_PUBLIC] = ACTIONS(2874), - [anon_sym_Remote] = ACTIONS(2874), - [anon_sym_remote] = ACTIONS(2874), - [anon_sym_REMOTE] = ACTIONS(2874), - [anon_sym_Return] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_RETURN] = ACTIONS(2874), - [anon_sym_Static] = ACTIONS(2874), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_STATIC] = ACTIONS(2874), - [anon_sym_Switch] = ACTIONS(2874), - [anon_sym_switch] = ACTIONS(2874), - [anon_sym_SWITCH] = ACTIONS(2874), - [anon_sym_Throw] = ACTIONS(2874), - [anon_sym_throw] = ACTIONS(2874), - [anon_sym_THROW] = ACTIONS(2874), - [anon_sym_Try] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_TRY] = ACTIONS(2874), - [anon_sym_Var] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2874), - [anon_sym_VAR] = ACTIONS(2874), - [anon_sym_While] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_WHILE] = ACTIONS(2874), - [anon_sym_With] = ACTIONS(2874), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_WITH] = ACTIONS(2874), - [sym_cf_comment] = ACTIONS(2872), - [sym__java_block_open] = ACTIONS(2872), - [sym__static_type_prefix] = ACTIONS(2872), + [STATE(896)] = { + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_Query] = ACTIONS(2924), + [anon_sym_query] = ACTIONS(2924), + [anon_sym_QUERY] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_unary_operator_token1] = ACTIONS(2924), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2924), + [aux_sym_number_token2] = ACTIONS(2922), + [anon_sym_This] = ACTIONS(2924), + [anon_sym_this] = ACTIONS(2924), + [anon_sym_THIS] = ACTIONS(2924), + [anon_sym_Super] = ACTIONS(2924), + [anon_sym_super] = ACTIONS(2924), + [anon_sym_SUPER] = ACTIONS(2924), + [anon_sym_True] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2924), + [anon_sym_TRUE] = ACTIONS(2924), + [anon_sym_False] = ACTIONS(2924), + [anon_sym_false] = ACTIONS(2924), + [anon_sym_FALSE] = ACTIONS(2924), + [anon_sym_Null] = ACTIONS(2924), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_Undefined] = ACTIONS(2924), + [anon_sym_undefined] = ACTIONS(2924), + [anon_sym_UNDEFINED] = ACTIONS(2924), + [anon_sym_get] = ACTIONS(2924), + [anon_sym_set] = ACTIONS(2924), + [anon_sym_POUND] = ACTIONS(2924), + [sym_hash_empty] = ACTIONS(2922), + [anon_sym_export] = ACTIONS(2924), + [anon_sym_QueryExecute] = ACTIONS(2924), + [anon_sym_queryexecute] = ACTIONS(2924), + [anon_sym_QUERYEXECUTE] = ACTIONS(2924), + [anon_sym_queryExecute] = ACTIONS(2924), + [anon_sym_BQUOTE] = ACTIONS(2924), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2922), + [anon_sym_Abstract] = ACTIONS(2924), + [anon_sym_abstract] = ACTIONS(2924), + [anon_sym_ABSTRACT] = ACTIONS(2924), + [anon_sym_Break] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_BREAK] = ACTIONS(2924), + [anon_sym_Case] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2924), + [anon_sym_CASE] = ACTIONS(2924), + [anon_sym_Component] = ACTIONS(2924), + [anon_sym_component] = ACTIONS(2924), + [anon_sym_COMPONENT] = ACTIONS(2924), + [anon_sym_Continue] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_CONTINUE] = ACTIONS(2924), + [anon_sym_Debugger] = ACTIONS(2924), + [anon_sym_debugger] = ACTIONS(2924), + [anon_sym_DEBUGGER] = ACTIONS(2924), + [anon_sym_Default] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_DEFAULT] = ACTIONS(2924), + [anon_sym_Do] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_DO] = ACTIONS(2924), + [anon_sym_Final] = ACTIONS(2924), + [anon_sym_final] = ACTIONS(2924), + [anon_sym_FINAL] = ACTIONS(2924), + [anon_sym_For] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_FOR] = ACTIONS(2924), + [anon_sym_Function] = ACTIONS(2924), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_FUNCTION] = ACTIONS(2924), + [anon_sym_If] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_IF] = ACTIONS(2924), + [anon_sym_Import] = ACTIONS(2924), + [anon_sym_import] = ACTIONS(2924), + [anon_sym_IMPORT] = ACTIONS(2924), + [anon_sym_Include] = ACTIONS(2924), + [anon_sym_include] = ACTIONS(2924), + [anon_sym_INCLUDE] = ACTIONS(2924), + [anon_sym_Interface] = ACTIONS(2924), + [anon_sym_interface] = ACTIONS(2924), + [anon_sym_INTERFACE] = ACTIONS(2924), + [anon_sym_New] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_NEW] = ACTIONS(2924), + [anon_sym_Package] = ACTIONS(2924), + [anon_sym_package] = ACTIONS(2924), + [anon_sym_PACKAGE] = ACTIONS(2924), + [anon_sym_Private] = ACTIONS(2924), + [anon_sym_private] = ACTIONS(2924), + [anon_sym_PRIVATE] = ACTIONS(2924), + [anon_sym_Property] = ACTIONS(2924), + [anon_sym_property] = ACTIONS(2924), + [anon_sym_PROPERTY] = ACTIONS(2924), + [anon_sym_Public] = ACTIONS(2924), + [anon_sym_public] = ACTIONS(2924), + [anon_sym_PUBLIC] = ACTIONS(2924), + [anon_sym_Remote] = ACTIONS(2924), + [anon_sym_remote] = ACTIONS(2924), + [anon_sym_REMOTE] = ACTIONS(2924), + [anon_sym_Return] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_RETURN] = ACTIONS(2924), + [anon_sym_Static] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_STATIC] = ACTIONS(2924), + [anon_sym_Switch] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_SWITCH] = ACTIONS(2924), + [anon_sym_Throw] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_THROW] = ACTIONS(2924), + [anon_sym_Try] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_TRY] = ACTIONS(2924), + [anon_sym_Var] = ACTIONS(2924), + [anon_sym_var] = ACTIONS(2924), + [anon_sym_VAR] = ACTIONS(2924), + [anon_sym_While] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_WHILE] = ACTIONS(2924), + [anon_sym_With] = ACTIONS(2924), + [anon_sym_with] = ACTIONS(2924), + [anon_sym_WITH] = ACTIONS(2924), + [sym_cf_comment] = ACTIONS(2922), + [sym__java_block_open] = ACTIONS(2922), + [sym__static_type_prefix] = ACTIONS(2922), }, - [STATE(845)] = { - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_Query] = ACTIONS(2878), - [anon_sym_query] = ACTIONS(2878), - [anon_sym_QUERY] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [aux_sym_unary_operator_token1] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2878), - [aux_sym_number_token2] = ACTIONS(2876), - [anon_sym_This] = ACTIONS(2878), - [anon_sym_this] = ACTIONS(2878), - [anon_sym_THIS] = ACTIONS(2878), - [anon_sym_Super] = ACTIONS(2878), - [anon_sym_super] = ACTIONS(2878), - [anon_sym_SUPER] = ACTIONS(2878), - [anon_sym_True] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2878), - [anon_sym_TRUE] = ACTIONS(2878), - [anon_sym_False] = ACTIONS(2878), - [anon_sym_false] = ACTIONS(2878), - [anon_sym_FALSE] = ACTIONS(2878), - [anon_sym_Null] = ACTIONS(2878), - [anon_sym_null] = ACTIONS(2878), - [anon_sym_NULL] = ACTIONS(2878), - [anon_sym_Undefined] = ACTIONS(2878), - [anon_sym_undefined] = ACTIONS(2878), - [anon_sym_UNDEFINED] = ACTIONS(2878), - [anon_sym_get] = ACTIONS(2878), - [anon_sym_set] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [sym_hash_empty] = ACTIONS(2876), - [anon_sym_export] = ACTIONS(2878), - [anon_sym_QueryExecute] = ACTIONS(2878), - [anon_sym_queryexecute] = ACTIONS(2878), - [anon_sym_QUERYEXECUTE] = ACTIONS(2878), - [anon_sym_queryExecute] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2876), - [anon_sym_Abstract] = ACTIONS(2878), - [anon_sym_abstract] = ACTIONS(2878), - [anon_sym_ABSTRACT] = ACTIONS(2878), - [anon_sym_Break] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_BREAK] = ACTIONS(2878), - [anon_sym_Case] = ACTIONS(2878), - [anon_sym_case] = ACTIONS(2878), - [anon_sym_CASE] = ACTIONS(2878), - [anon_sym_Component] = ACTIONS(2878), - [anon_sym_component] = ACTIONS(2878), - [anon_sym_COMPONENT] = ACTIONS(2878), - [anon_sym_Continue] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_CONTINUE] = ACTIONS(2878), - [anon_sym_Debugger] = ACTIONS(2878), - [anon_sym_debugger] = ACTIONS(2878), - [anon_sym_DEBUGGER] = ACTIONS(2878), - [anon_sym_Default] = ACTIONS(2878), - [anon_sym_default] = ACTIONS(2878), - [anon_sym_DEFAULT] = ACTIONS(2878), - [anon_sym_Do] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_DO] = ACTIONS(2878), - [anon_sym_Final] = ACTIONS(2878), - [anon_sym_final] = ACTIONS(2878), - [anon_sym_FINAL] = ACTIONS(2878), - [anon_sym_For] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_FOR] = ACTIONS(2878), - [anon_sym_Function] = ACTIONS(2878), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_FUNCTION] = ACTIONS(2878), - [anon_sym_If] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_IF] = ACTIONS(2878), - [anon_sym_Import] = ACTIONS(2878), - [anon_sym_import] = ACTIONS(2878), - [anon_sym_IMPORT] = ACTIONS(2878), - [anon_sym_Include] = ACTIONS(2878), - [anon_sym_include] = ACTIONS(2878), - [anon_sym_INCLUDE] = ACTIONS(2878), - [anon_sym_Interface] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_INTERFACE] = ACTIONS(2878), - [anon_sym_New] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_NEW] = ACTIONS(2878), - [anon_sym_Package] = ACTIONS(2878), - [anon_sym_package] = ACTIONS(2878), - [anon_sym_PACKAGE] = ACTIONS(2878), - [anon_sym_Private] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_PRIVATE] = ACTIONS(2878), - [anon_sym_Property] = ACTIONS(2878), - [anon_sym_property] = ACTIONS(2878), - [anon_sym_PROPERTY] = ACTIONS(2878), - [anon_sym_Public] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_PUBLIC] = ACTIONS(2878), - [anon_sym_Remote] = ACTIONS(2878), - [anon_sym_remote] = ACTIONS(2878), - [anon_sym_REMOTE] = ACTIONS(2878), - [anon_sym_Return] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_RETURN] = ACTIONS(2878), - [anon_sym_Static] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_STATIC] = ACTIONS(2878), - [anon_sym_Switch] = ACTIONS(2878), - [anon_sym_switch] = ACTIONS(2878), - [anon_sym_SWITCH] = ACTIONS(2878), - [anon_sym_Throw] = ACTIONS(2878), - [anon_sym_throw] = ACTIONS(2878), - [anon_sym_THROW] = ACTIONS(2878), - [anon_sym_Try] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_TRY] = ACTIONS(2878), - [anon_sym_Var] = ACTIONS(2878), - [anon_sym_var] = ACTIONS(2878), - [anon_sym_VAR] = ACTIONS(2878), - [anon_sym_While] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_WHILE] = ACTIONS(2878), - [anon_sym_With] = ACTIONS(2878), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_WITH] = ACTIONS(2878), - [sym_cf_comment] = ACTIONS(2876), - [sym__java_block_open] = ACTIONS(2876), - [sym__static_type_prefix] = ACTIONS(2876), + [STATE(897)] = { + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_let] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_Query] = ACTIONS(2928), + [anon_sym_query] = ACTIONS(2928), + [anon_sym_QUERY] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [aux_sym_unary_operator_token1] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2928), + [aux_sym_number_token2] = ACTIONS(2926), + [anon_sym_This] = ACTIONS(2928), + [anon_sym_this] = ACTIONS(2928), + [anon_sym_THIS] = ACTIONS(2928), + [anon_sym_Super] = ACTIONS(2928), + [anon_sym_super] = ACTIONS(2928), + [anon_sym_SUPER] = ACTIONS(2928), + [anon_sym_True] = ACTIONS(2928), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_TRUE] = ACTIONS(2928), + [anon_sym_False] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_FALSE] = ACTIONS(2928), + [anon_sym_Null] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_Undefined] = ACTIONS(2928), + [anon_sym_undefined] = ACTIONS(2928), + [anon_sym_UNDEFINED] = ACTIONS(2928), + [anon_sym_get] = ACTIONS(2928), + [anon_sym_set] = ACTIONS(2928), + [anon_sym_POUND] = ACTIONS(2928), + [sym_hash_empty] = ACTIONS(2926), + [anon_sym_export] = ACTIONS(2928), + [anon_sym_QueryExecute] = ACTIONS(2928), + [anon_sym_queryexecute] = ACTIONS(2928), + [anon_sym_QUERYEXECUTE] = ACTIONS(2928), + [anon_sym_queryExecute] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2926), + [anon_sym_Abstract] = ACTIONS(2928), + [anon_sym_abstract] = ACTIONS(2928), + [anon_sym_ABSTRACT] = ACTIONS(2928), + [anon_sym_Break] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_BREAK] = ACTIONS(2928), + [anon_sym_Case] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_CASE] = ACTIONS(2928), + [anon_sym_Component] = ACTIONS(2928), + [anon_sym_component] = ACTIONS(2928), + [anon_sym_COMPONENT] = ACTIONS(2928), + [anon_sym_Continue] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_CONTINUE] = ACTIONS(2928), + [anon_sym_Debugger] = ACTIONS(2928), + [anon_sym_debugger] = ACTIONS(2928), + [anon_sym_DEBUGGER] = ACTIONS(2928), + [anon_sym_Default] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_DEFAULT] = ACTIONS(2928), + [anon_sym_Do] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_DO] = ACTIONS(2928), + [anon_sym_Final] = ACTIONS(2928), + [anon_sym_final] = ACTIONS(2928), + [anon_sym_FINAL] = ACTIONS(2928), + [anon_sym_For] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_FOR] = ACTIONS(2928), + [anon_sym_Function] = ACTIONS(2928), + [anon_sym_function] = ACTIONS(2928), + [anon_sym_FUNCTION] = ACTIONS(2928), + [anon_sym_If] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_IF] = ACTIONS(2928), + [anon_sym_Import] = ACTIONS(2928), + [anon_sym_import] = ACTIONS(2928), + [anon_sym_IMPORT] = ACTIONS(2928), + [anon_sym_Include] = ACTIONS(2928), + [anon_sym_include] = ACTIONS(2928), + [anon_sym_INCLUDE] = ACTIONS(2928), + [anon_sym_Interface] = ACTIONS(2928), + [anon_sym_interface] = ACTIONS(2928), + [anon_sym_INTERFACE] = ACTIONS(2928), + [anon_sym_New] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_NEW] = ACTIONS(2928), + [anon_sym_Package] = ACTIONS(2928), + [anon_sym_package] = ACTIONS(2928), + [anon_sym_PACKAGE] = ACTIONS(2928), + [anon_sym_Private] = ACTIONS(2928), + [anon_sym_private] = ACTIONS(2928), + [anon_sym_PRIVATE] = ACTIONS(2928), + [anon_sym_Property] = ACTIONS(2928), + [anon_sym_property] = ACTIONS(2928), + [anon_sym_PROPERTY] = ACTIONS(2928), + [anon_sym_Public] = ACTIONS(2928), + [anon_sym_public] = ACTIONS(2928), + [anon_sym_PUBLIC] = ACTIONS(2928), + [anon_sym_Remote] = ACTIONS(2928), + [anon_sym_remote] = ACTIONS(2928), + [anon_sym_REMOTE] = ACTIONS(2928), + [anon_sym_Return] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_RETURN] = ACTIONS(2928), + [anon_sym_Static] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_STATIC] = ACTIONS(2928), + [anon_sym_Switch] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_SWITCH] = ACTIONS(2928), + [anon_sym_Throw] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_THROW] = ACTIONS(2928), + [anon_sym_Try] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_TRY] = ACTIONS(2928), + [anon_sym_Var] = ACTIONS(2928), + [anon_sym_var] = ACTIONS(2928), + [anon_sym_VAR] = ACTIONS(2928), + [anon_sym_While] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_WHILE] = ACTIONS(2928), + [anon_sym_With] = ACTIONS(2928), + [anon_sym_with] = ACTIONS(2928), + [anon_sym_WITH] = ACTIONS(2928), + [sym_cf_comment] = ACTIONS(2926), + [sym__java_block_open] = ACTIONS(2926), + [sym__static_type_prefix] = ACTIONS(2926), }, - [STATE(846)] = { - [ts_builtin_sym_end] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_RBRACE] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_Query] = ACTIONS(2938), - [anon_sym_query] = ACTIONS(2938), - [anon_sym_QUERY] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_unary_operator_token1] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2938), - [aux_sym_number_token2] = ACTIONS(2936), - [anon_sym_This] = ACTIONS(2938), - [anon_sym_this] = ACTIONS(2938), - [anon_sym_THIS] = ACTIONS(2938), - [anon_sym_Super] = ACTIONS(2938), - [anon_sym_super] = ACTIONS(2938), - [anon_sym_SUPER] = ACTIONS(2938), - [anon_sym_True] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_TRUE] = ACTIONS(2938), - [anon_sym_False] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [anon_sym_FALSE] = ACTIONS(2938), - [anon_sym_Null] = ACTIONS(2938), - [anon_sym_null] = ACTIONS(2938), - [anon_sym_NULL] = ACTIONS(2938), - [anon_sym_Undefined] = ACTIONS(2938), - [anon_sym_undefined] = ACTIONS(2938), - [anon_sym_UNDEFINED] = ACTIONS(2938), - [anon_sym_get] = ACTIONS(2938), - [anon_sym_set] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [sym_hash_empty] = ACTIONS(2936), - [anon_sym_export] = ACTIONS(2938), - [anon_sym_QueryExecute] = ACTIONS(2938), - [anon_sym_queryexecute] = ACTIONS(2938), - [anon_sym_QUERYEXECUTE] = ACTIONS(2938), - [anon_sym_queryExecute] = ACTIONS(2938), - [anon_sym_BQUOTE] = ACTIONS(2938), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2936), - [anon_sym_Abstract] = ACTIONS(2938), - [anon_sym_abstract] = ACTIONS(2938), - [anon_sym_ABSTRACT] = ACTIONS(2938), - [anon_sym_Break] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_BREAK] = ACTIONS(2938), - [anon_sym_Case] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_CASE] = ACTIONS(2938), - [anon_sym_Component] = ACTIONS(2938), - [anon_sym_component] = ACTIONS(2938), - [anon_sym_COMPONENT] = ACTIONS(2938), - [anon_sym_Continue] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_CONTINUE] = ACTIONS(2938), - [anon_sym_Debugger] = ACTIONS(2938), - [anon_sym_debugger] = ACTIONS(2938), - [anon_sym_DEBUGGER] = ACTIONS(2938), - [anon_sym_Default] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_DEFAULT] = ACTIONS(2938), - [anon_sym_Do] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_DO] = ACTIONS(2938), - [anon_sym_Final] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_FINAL] = ACTIONS(2938), - [anon_sym_For] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_FOR] = ACTIONS(2938), - [anon_sym_Function] = ACTIONS(2938), - [anon_sym_function] = ACTIONS(2938), - [anon_sym_FUNCTION] = ACTIONS(2938), - [anon_sym_If] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_IF] = ACTIONS(2938), - [anon_sym_Import] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2938), - [anon_sym_IMPORT] = ACTIONS(2938), - [anon_sym_Include] = ACTIONS(2938), - [anon_sym_include] = ACTIONS(2938), - [anon_sym_INCLUDE] = ACTIONS(2938), - [anon_sym_Interface] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2938), - [anon_sym_INTERFACE] = ACTIONS(2938), - [anon_sym_New] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(2938), - [anon_sym_NEW] = ACTIONS(2938), - [anon_sym_Package] = ACTIONS(2938), - [anon_sym_package] = ACTIONS(2938), - [anon_sym_PACKAGE] = ACTIONS(2938), - [anon_sym_Private] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_PRIVATE] = ACTIONS(2938), - [anon_sym_Property] = ACTIONS(2938), - [anon_sym_property] = ACTIONS(2938), - [anon_sym_PROPERTY] = ACTIONS(2938), - [anon_sym_Public] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_PUBLIC] = ACTIONS(2938), - [anon_sym_Remote] = ACTIONS(2938), - [anon_sym_remote] = ACTIONS(2938), - [anon_sym_REMOTE] = ACTIONS(2938), - [anon_sym_Return] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_RETURN] = ACTIONS(2938), - [anon_sym_Static] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_STATIC] = ACTIONS(2938), - [anon_sym_Switch] = ACTIONS(2938), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_SWITCH] = ACTIONS(2938), - [anon_sym_Throw] = ACTIONS(2938), - [anon_sym_throw] = ACTIONS(2938), - [anon_sym_THROW] = ACTIONS(2938), - [anon_sym_Try] = ACTIONS(2938), - [anon_sym_try] = ACTIONS(2938), - [anon_sym_TRY] = ACTIONS(2938), - [anon_sym_Var] = ACTIONS(2938), - [anon_sym_var] = ACTIONS(2938), - [anon_sym_VAR] = ACTIONS(2938), - [anon_sym_While] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_WHILE] = ACTIONS(2938), - [anon_sym_With] = ACTIONS(2938), - [anon_sym_with] = ACTIONS(2938), - [anon_sym_WITH] = ACTIONS(2938), - [sym_cf_comment] = ACTIONS(2936), - [sym__java_block_open] = ACTIONS(2936), - [sym__static_type_prefix] = ACTIONS(2936), + [STATE(898)] = { + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_Query] = ACTIONS(2932), + [anon_sym_query] = ACTIONS(2932), + [anon_sym_QUERY] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [aux_sym_unary_operator_token1] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2932), + [aux_sym_number_token2] = ACTIONS(2930), + [anon_sym_This] = ACTIONS(2932), + [anon_sym_this] = ACTIONS(2932), + [anon_sym_THIS] = ACTIONS(2932), + [anon_sym_Super] = ACTIONS(2932), + [anon_sym_super] = ACTIONS(2932), + [anon_sym_SUPER] = ACTIONS(2932), + [anon_sym_True] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2932), + [anon_sym_TRUE] = ACTIONS(2932), + [anon_sym_False] = ACTIONS(2932), + [anon_sym_false] = ACTIONS(2932), + [anon_sym_FALSE] = ACTIONS(2932), + [anon_sym_Null] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_Undefined] = ACTIONS(2932), + [anon_sym_undefined] = ACTIONS(2932), + [anon_sym_UNDEFINED] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_POUND] = ACTIONS(2932), + [sym_hash_empty] = ACTIONS(2930), + [anon_sym_export] = ACTIONS(2932), + [anon_sym_QueryExecute] = ACTIONS(2932), + [anon_sym_queryexecute] = ACTIONS(2932), + [anon_sym_QUERYEXECUTE] = ACTIONS(2932), + [anon_sym_queryExecute] = ACTIONS(2932), + [anon_sym_BQUOTE] = ACTIONS(2932), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2930), + [anon_sym_Abstract] = ACTIONS(2932), + [anon_sym_abstract] = ACTIONS(2932), + [anon_sym_ABSTRACT] = ACTIONS(2932), + [anon_sym_Break] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_BREAK] = ACTIONS(2932), + [anon_sym_Case] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_CASE] = ACTIONS(2932), + [anon_sym_Component] = ACTIONS(2932), + [anon_sym_component] = ACTIONS(2932), + [anon_sym_COMPONENT] = ACTIONS(2932), + [anon_sym_Continue] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_CONTINUE] = ACTIONS(2932), + [anon_sym_Debugger] = ACTIONS(2932), + [anon_sym_debugger] = ACTIONS(2932), + [anon_sym_DEBUGGER] = ACTIONS(2932), + [anon_sym_Default] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_DEFAULT] = ACTIONS(2932), + [anon_sym_Do] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_DO] = ACTIONS(2932), + [anon_sym_Final] = ACTIONS(2932), + [anon_sym_final] = ACTIONS(2932), + [anon_sym_FINAL] = ACTIONS(2932), + [anon_sym_For] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_FOR] = ACTIONS(2932), + [anon_sym_Function] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2932), + [anon_sym_FUNCTION] = ACTIONS(2932), + [anon_sym_If] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_IF] = ACTIONS(2932), + [anon_sym_Import] = ACTIONS(2932), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_IMPORT] = ACTIONS(2932), + [anon_sym_Include] = ACTIONS(2932), + [anon_sym_include] = ACTIONS(2932), + [anon_sym_INCLUDE] = ACTIONS(2932), + [anon_sym_Interface] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2932), + [anon_sym_INTERFACE] = ACTIONS(2932), + [anon_sym_New] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_NEW] = ACTIONS(2932), + [anon_sym_Package] = ACTIONS(2932), + [anon_sym_package] = ACTIONS(2932), + [anon_sym_PACKAGE] = ACTIONS(2932), + [anon_sym_Private] = ACTIONS(2932), + [anon_sym_private] = ACTIONS(2932), + [anon_sym_PRIVATE] = ACTIONS(2932), + [anon_sym_Property] = ACTIONS(2932), + [anon_sym_property] = ACTIONS(2932), + [anon_sym_PROPERTY] = ACTIONS(2932), + [anon_sym_Public] = ACTIONS(2932), + [anon_sym_public] = ACTIONS(2932), + [anon_sym_PUBLIC] = ACTIONS(2932), + [anon_sym_Remote] = ACTIONS(2932), + [anon_sym_remote] = ACTIONS(2932), + [anon_sym_REMOTE] = ACTIONS(2932), + [anon_sym_Return] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_RETURN] = ACTIONS(2932), + [anon_sym_Static] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_STATIC] = ACTIONS(2932), + [anon_sym_Switch] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_SWITCH] = ACTIONS(2932), + [anon_sym_Throw] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_THROW] = ACTIONS(2932), + [anon_sym_Try] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_TRY] = ACTIONS(2932), + [anon_sym_Var] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2932), + [anon_sym_VAR] = ACTIONS(2932), + [anon_sym_While] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_WHILE] = ACTIONS(2932), + [anon_sym_With] = ACTIONS(2932), + [anon_sym_with] = ACTIONS(2932), + [anon_sym_WITH] = ACTIONS(2932), + [sym_cf_comment] = ACTIONS(2930), + [sym__java_block_open] = ACTIONS(2930), + [sym__static_type_prefix] = ACTIONS(2930), }, - [STATE(847)] = { - [ts_builtin_sym_end] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_RBRACE] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_Query] = ACTIONS(2938), - [anon_sym_query] = ACTIONS(2938), - [anon_sym_QUERY] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_unary_operator_token1] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2938), - [aux_sym_number_token2] = ACTIONS(2936), - [anon_sym_This] = ACTIONS(2938), - [anon_sym_this] = ACTIONS(2938), - [anon_sym_THIS] = ACTIONS(2938), - [anon_sym_Super] = ACTIONS(2938), - [anon_sym_super] = ACTIONS(2938), - [anon_sym_SUPER] = ACTIONS(2938), - [anon_sym_True] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_TRUE] = ACTIONS(2938), - [anon_sym_False] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [anon_sym_FALSE] = ACTIONS(2938), - [anon_sym_Null] = ACTIONS(2938), - [anon_sym_null] = ACTIONS(2938), - [anon_sym_NULL] = ACTIONS(2938), - [anon_sym_Undefined] = ACTIONS(2938), - [anon_sym_undefined] = ACTIONS(2938), - [anon_sym_UNDEFINED] = ACTIONS(2938), - [anon_sym_get] = ACTIONS(2938), - [anon_sym_set] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [sym_hash_empty] = ACTIONS(2936), - [anon_sym_export] = ACTIONS(2938), - [anon_sym_QueryExecute] = ACTIONS(2938), - [anon_sym_queryexecute] = ACTIONS(2938), - [anon_sym_QUERYEXECUTE] = ACTIONS(2938), - [anon_sym_queryExecute] = ACTIONS(2938), - [anon_sym_BQUOTE] = ACTIONS(2938), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2936), - [anon_sym_Abstract] = ACTIONS(2938), - [anon_sym_abstract] = ACTIONS(2938), - [anon_sym_ABSTRACT] = ACTIONS(2938), - [anon_sym_Break] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_BREAK] = ACTIONS(2938), - [anon_sym_Case] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_CASE] = ACTIONS(2938), - [anon_sym_Component] = ACTIONS(2938), - [anon_sym_component] = ACTIONS(2938), - [anon_sym_COMPONENT] = ACTIONS(2938), - [anon_sym_Continue] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_CONTINUE] = ACTIONS(2938), - [anon_sym_Debugger] = ACTIONS(2938), - [anon_sym_debugger] = ACTIONS(2938), - [anon_sym_DEBUGGER] = ACTIONS(2938), - [anon_sym_Default] = ACTIONS(2938), - [anon_sym_default] = ACTIONS(2938), - [anon_sym_DEFAULT] = ACTIONS(2938), - [anon_sym_Do] = ACTIONS(2938), - [anon_sym_do] = ACTIONS(2938), - [anon_sym_DO] = ACTIONS(2938), - [anon_sym_Final] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_FINAL] = ACTIONS(2938), - [anon_sym_For] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_FOR] = ACTIONS(2938), - [anon_sym_Function] = ACTIONS(2938), - [anon_sym_function] = ACTIONS(2938), - [anon_sym_FUNCTION] = ACTIONS(2938), - [anon_sym_If] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_IF] = ACTIONS(2938), - [anon_sym_Import] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2938), - [anon_sym_IMPORT] = ACTIONS(2938), - [anon_sym_Include] = ACTIONS(2938), - [anon_sym_include] = ACTIONS(2938), - [anon_sym_INCLUDE] = ACTIONS(2938), - [anon_sym_Interface] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2938), - [anon_sym_INTERFACE] = ACTIONS(2938), - [anon_sym_New] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(2938), - [anon_sym_NEW] = ACTIONS(2938), - [anon_sym_Package] = ACTIONS(2938), - [anon_sym_package] = ACTIONS(2938), - [anon_sym_PACKAGE] = ACTIONS(2938), - [anon_sym_Private] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_PRIVATE] = ACTIONS(2938), - [anon_sym_Property] = ACTIONS(2938), - [anon_sym_property] = ACTIONS(2938), - [anon_sym_PROPERTY] = ACTIONS(2938), - [anon_sym_Public] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_PUBLIC] = ACTIONS(2938), - [anon_sym_Remote] = ACTIONS(2938), - [anon_sym_remote] = ACTIONS(2938), - [anon_sym_REMOTE] = ACTIONS(2938), - [anon_sym_Return] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_RETURN] = ACTIONS(2938), - [anon_sym_Static] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_STATIC] = ACTIONS(2938), - [anon_sym_Switch] = ACTIONS(2938), - [anon_sym_switch] = ACTIONS(2938), - [anon_sym_SWITCH] = ACTIONS(2938), - [anon_sym_Throw] = ACTIONS(2938), - [anon_sym_throw] = ACTIONS(2938), - [anon_sym_THROW] = ACTIONS(2938), - [anon_sym_Try] = ACTIONS(2938), - [anon_sym_try] = ACTIONS(2938), - [anon_sym_TRY] = ACTIONS(2938), - [anon_sym_Var] = ACTIONS(2938), - [anon_sym_var] = ACTIONS(2938), - [anon_sym_VAR] = ACTIONS(2938), - [anon_sym_While] = ACTIONS(2938), - [anon_sym_while] = ACTIONS(2938), - [anon_sym_WHILE] = ACTIONS(2938), - [anon_sym_With] = ACTIONS(2938), - [anon_sym_with] = ACTIONS(2938), - [anon_sym_WITH] = ACTIONS(2938), - [sym_cf_comment] = ACTIONS(2936), - [sym__java_block_open] = ACTIONS(2936), - [sym__static_type_prefix] = ACTIONS(2936), + [STATE(899)] = { + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_Query] = ACTIONS(2936), + [anon_sym_query] = ACTIONS(2936), + [anon_sym_QUERY] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [aux_sym_unary_operator_token1] = ACTIONS(2936), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2936), + [aux_sym_number_token2] = ACTIONS(2934), + [anon_sym_This] = ACTIONS(2936), + [anon_sym_this] = ACTIONS(2936), + [anon_sym_THIS] = ACTIONS(2936), + [anon_sym_Super] = ACTIONS(2936), + [anon_sym_super] = ACTIONS(2936), + [anon_sym_SUPER] = ACTIONS(2936), + [anon_sym_True] = ACTIONS(2936), + [anon_sym_true] = ACTIONS(2936), + [anon_sym_TRUE] = ACTIONS(2936), + [anon_sym_False] = ACTIONS(2936), + [anon_sym_false] = ACTIONS(2936), + [anon_sym_FALSE] = ACTIONS(2936), + [anon_sym_Null] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_Undefined] = ACTIONS(2936), + [anon_sym_undefined] = ACTIONS(2936), + [anon_sym_UNDEFINED] = ACTIONS(2936), + [anon_sym_get] = ACTIONS(2936), + [anon_sym_set] = ACTIONS(2936), + [anon_sym_POUND] = ACTIONS(2936), + [sym_hash_empty] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2936), + [anon_sym_QueryExecute] = ACTIONS(2936), + [anon_sym_queryexecute] = ACTIONS(2936), + [anon_sym_QUERYEXECUTE] = ACTIONS(2936), + [anon_sym_queryExecute] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2934), + [anon_sym_Abstract] = ACTIONS(2936), + [anon_sym_abstract] = ACTIONS(2936), + [anon_sym_ABSTRACT] = ACTIONS(2936), + [anon_sym_Break] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_BREAK] = ACTIONS(2936), + [anon_sym_Case] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_CASE] = ACTIONS(2936), + [anon_sym_Component] = ACTIONS(2936), + [anon_sym_component] = ACTIONS(2936), + [anon_sym_COMPONENT] = ACTIONS(2936), + [anon_sym_Continue] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_CONTINUE] = ACTIONS(2936), + [anon_sym_Debugger] = ACTIONS(2936), + [anon_sym_debugger] = ACTIONS(2936), + [anon_sym_DEBUGGER] = ACTIONS(2936), + [anon_sym_Default] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_DEFAULT] = ACTIONS(2936), + [anon_sym_Do] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_DO] = ACTIONS(2936), + [anon_sym_Final] = ACTIONS(2936), + [anon_sym_final] = ACTIONS(2936), + [anon_sym_FINAL] = ACTIONS(2936), + [anon_sym_For] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_FOR] = ACTIONS(2936), + [anon_sym_Function] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2936), + [anon_sym_FUNCTION] = ACTIONS(2936), + [anon_sym_If] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_IF] = ACTIONS(2936), + [anon_sym_Import] = ACTIONS(2936), + [anon_sym_import] = ACTIONS(2936), + [anon_sym_IMPORT] = ACTIONS(2936), + [anon_sym_Include] = ACTIONS(2936), + [anon_sym_include] = ACTIONS(2936), + [anon_sym_INCLUDE] = ACTIONS(2936), + [anon_sym_Interface] = ACTIONS(2936), + [anon_sym_interface] = ACTIONS(2936), + [anon_sym_INTERFACE] = ACTIONS(2936), + [anon_sym_New] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_NEW] = ACTIONS(2936), + [anon_sym_Package] = ACTIONS(2936), + [anon_sym_package] = ACTIONS(2936), + [anon_sym_PACKAGE] = ACTIONS(2936), + [anon_sym_Private] = ACTIONS(2936), + [anon_sym_private] = ACTIONS(2936), + [anon_sym_PRIVATE] = ACTIONS(2936), + [anon_sym_Property] = ACTIONS(2936), + [anon_sym_property] = ACTIONS(2936), + [anon_sym_PROPERTY] = ACTIONS(2936), + [anon_sym_Public] = ACTIONS(2936), + [anon_sym_public] = ACTIONS(2936), + [anon_sym_PUBLIC] = ACTIONS(2936), + [anon_sym_Remote] = ACTIONS(2936), + [anon_sym_remote] = ACTIONS(2936), + [anon_sym_REMOTE] = ACTIONS(2936), + [anon_sym_Return] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_RETURN] = ACTIONS(2936), + [anon_sym_Static] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_STATIC] = ACTIONS(2936), + [anon_sym_Switch] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_SWITCH] = ACTIONS(2936), + [anon_sym_Throw] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_THROW] = ACTIONS(2936), + [anon_sym_Try] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_TRY] = ACTIONS(2936), + [anon_sym_Var] = ACTIONS(2936), + [anon_sym_var] = ACTIONS(2936), + [anon_sym_VAR] = ACTIONS(2936), + [anon_sym_While] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_WHILE] = ACTIONS(2936), + [anon_sym_With] = ACTIONS(2936), + [anon_sym_with] = ACTIONS(2936), + [anon_sym_WITH] = ACTIONS(2936), + [sym_cf_comment] = ACTIONS(2934), + [sym__java_block_open] = ACTIONS(2934), + [sym__static_type_prefix] = ACTIONS(2934), }, - [STATE(848)] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_Query] = ACTIONS(2882), - [anon_sym_query] = ACTIONS(2882), - [anon_sym_QUERY] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [aux_sym_unary_operator_token1] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_DQUOTE] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2882), - [aux_sym_number_token2] = ACTIONS(2880), - [anon_sym_This] = ACTIONS(2882), - [anon_sym_this] = ACTIONS(2882), - [anon_sym_THIS] = ACTIONS(2882), - [anon_sym_Super] = ACTIONS(2882), - [anon_sym_super] = ACTIONS(2882), - [anon_sym_SUPER] = ACTIONS(2882), - [anon_sym_True] = ACTIONS(2882), - [anon_sym_true] = ACTIONS(2882), - [anon_sym_TRUE] = ACTIONS(2882), - [anon_sym_False] = ACTIONS(2882), - [anon_sym_false] = ACTIONS(2882), - [anon_sym_FALSE] = ACTIONS(2882), - [anon_sym_Null] = ACTIONS(2882), - [anon_sym_null] = ACTIONS(2882), - [anon_sym_NULL] = ACTIONS(2882), - [anon_sym_Undefined] = ACTIONS(2882), - [anon_sym_undefined] = ACTIONS(2882), - [anon_sym_UNDEFINED] = ACTIONS(2882), - [anon_sym_get] = ACTIONS(2882), - [anon_sym_set] = ACTIONS(2882), - [anon_sym_POUND] = ACTIONS(2882), - [sym_hash_empty] = ACTIONS(2880), - [anon_sym_export] = ACTIONS(2882), - [anon_sym_QueryExecute] = ACTIONS(2882), - [anon_sym_queryexecute] = ACTIONS(2882), - [anon_sym_QUERYEXECUTE] = ACTIONS(2882), - [anon_sym_queryExecute] = ACTIONS(2882), - [anon_sym_BQUOTE] = ACTIONS(2882), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2880), - [anon_sym_Abstract] = ACTIONS(2882), - [anon_sym_abstract] = ACTIONS(2882), - [anon_sym_ABSTRACT] = ACTIONS(2882), - [anon_sym_Break] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_BREAK] = ACTIONS(2882), - [anon_sym_Case] = ACTIONS(2882), - [anon_sym_case] = ACTIONS(2882), - [anon_sym_CASE] = ACTIONS(2882), - [anon_sym_Component] = ACTIONS(2882), - [anon_sym_component] = ACTIONS(2882), - [anon_sym_COMPONENT] = ACTIONS(2882), - [anon_sym_Continue] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_CONTINUE] = ACTIONS(2882), - [anon_sym_Debugger] = ACTIONS(2882), - [anon_sym_debugger] = ACTIONS(2882), - [anon_sym_DEBUGGER] = ACTIONS(2882), - [anon_sym_Default] = ACTIONS(2882), - [anon_sym_default] = ACTIONS(2882), - [anon_sym_DEFAULT] = ACTIONS(2882), - [anon_sym_Do] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_DO] = ACTIONS(2882), - [anon_sym_Final] = ACTIONS(2882), - [anon_sym_final] = ACTIONS(2882), - [anon_sym_FINAL] = ACTIONS(2882), - [anon_sym_For] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_FOR] = ACTIONS(2882), - [anon_sym_Function] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_FUNCTION] = ACTIONS(2882), - [anon_sym_If] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_IF] = ACTIONS(2882), - [anon_sym_Import] = ACTIONS(2882), - [anon_sym_import] = ACTIONS(2882), - [anon_sym_IMPORT] = ACTIONS(2882), - [anon_sym_Include] = ACTIONS(2882), - [anon_sym_include] = ACTIONS(2882), - [anon_sym_INCLUDE] = ACTIONS(2882), - [anon_sym_Interface] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_INTERFACE] = ACTIONS(2882), - [anon_sym_New] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_NEW] = ACTIONS(2882), - [anon_sym_Package] = ACTIONS(2882), - [anon_sym_package] = ACTIONS(2882), - [anon_sym_PACKAGE] = ACTIONS(2882), - [anon_sym_Private] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_PRIVATE] = ACTIONS(2882), - [anon_sym_Property] = ACTIONS(2882), - [anon_sym_property] = ACTIONS(2882), - [anon_sym_PROPERTY] = ACTIONS(2882), - [anon_sym_Public] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_PUBLIC] = ACTIONS(2882), - [anon_sym_Remote] = ACTIONS(2882), - [anon_sym_remote] = ACTIONS(2882), - [anon_sym_REMOTE] = ACTIONS(2882), - [anon_sym_Return] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_RETURN] = ACTIONS(2882), - [anon_sym_Static] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_STATIC] = ACTIONS(2882), - [anon_sym_Switch] = ACTIONS(2882), - [anon_sym_switch] = ACTIONS(2882), - [anon_sym_SWITCH] = ACTIONS(2882), - [anon_sym_Throw] = ACTIONS(2882), - [anon_sym_throw] = ACTIONS(2882), - [anon_sym_THROW] = ACTIONS(2882), - [anon_sym_Try] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_TRY] = ACTIONS(2882), - [anon_sym_Var] = ACTIONS(2882), - [anon_sym_var] = ACTIONS(2882), - [anon_sym_VAR] = ACTIONS(2882), - [anon_sym_While] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_WHILE] = ACTIONS(2882), - [anon_sym_With] = ACTIONS(2882), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_WITH] = ACTIONS(2882), - [sym_cf_comment] = ACTIONS(2880), - [sym__java_block_open] = ACTIONS(2880), - [sym__static_type_prefix] = ACTIONS(2880), + [STATE(900)] = { + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_Query] = ACTIONS(2940), + [anon_sym_query] = ACTIONS(2940), + [anon_sym_QUERY] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [aux_sym_unary_operator_token1] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2940), + [aux_sym_number_token2] = ACTIONS(2938), + [anon_sym_This] = ACTIONS(2940), + [anon_sym_this] = ACTIONS(2940), + [anon_sym_THIS] = ACTIONS(2940), + [anon_sym_Super] = ACTIONS(2940), + [anon_sym_super] = ACTIONS(2940), + [anon_sym_SUPER] = ACTIONS(2940), + [anon_sym_True] = ACTIONS(2940), + [anon_sym_true] = ACTIONS(2940), + [anon_sym_TRUE] = ACTIONS(2940), + [anon_sym_False] = ACTIONS(2940), + [anon_sym_false] = ACTIONS(2940), + [anon_sym_FALSE] = ACTIONS(2940), + [anon_sym_Null] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_Undefined] = ACTIONS(2940), + [anon_sym_undefined] = ACTIONS(2940), + [anon_sym_UNDEFINED] = ACTIONS(2940), + [anon_sym_get] = ACTIONS(2940), + [anon_sym_set] = ACTIONS(2940), + [anon_sym_POUND] = ACTIONS(2940), + [sym_hash_empty] = ACTIONS(2938), + [anon_sym_export] = ACTIONS(2940), + [anon_sym_QueryExecute] = ACTIONS(2940), + [anon_sym_queryexecute] = ACTIONS(2940), + [anon_sym_QUERYEXECUTE] = ACTIONS(2940), + [anon_sym_queryExecute] = ACTIONS(2940), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2938), + [anon_sym_Abstract] = ACTIONS(2940), + [anon_sym_abstract] = ACTIONS(2940), + [anon_sym_ABSTRACT] = ACTIONS(2940), + [anon_sym_Break] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_BREAK] = ACTIONS(2940), + [anon_sym_Case] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_CASE] = ACTIONS(2940), + [anon_sym_Component] = ACTIONS(2940), + [anon_sym_component] = ACTIONS(2940), + [anon_sym_COMPONENT] = ACTIONS(2940), + [anon_sym_Continue] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_CONTINUE] = ACTIONS(2940), + [anon_sym_Debugger] = ACTIONS(2940), + [anon_sym_debugger] = ACTIONS(2940), + [anon_sym_DEBUGGER] = ACTIONS(2940), + [anon_sym_Default] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_DEFAULT] = ACTIONS(2940), + [anon_sym_Do] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_DO] = ACTIONS(2940), + [anon_sym_Final] = ACTIONS(2940), + [anon_sym_final] = ACTIONS(2940), + [anon_sym_FINAL] = ACTIONS(2940), + [anon_sym_For] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_FOR] = ACTIONS(2940), + [anon_sym_Function] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2940), + [anon_sym_FUNCTION] = ACTIONS(2940), + [anon_sym_If] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_IF] = ACTIONS(2940), + [anon_sym_Import] = ACTIONS(2940), + [anon_sym_import] = ACTIONS(2940), + [anon_sym_IMPORT] = ACTIONS(2940), + [anon_sym_Include] = ACTIONS(2940), + [anon_sym_include] = ACTIONS(2940), + [anon_sym_INCLUDE] = ACTIONS(2940), + [anon_sym_Interface] = ACTIONS(2940), + [anon_sym_interface] = ACTIONS(2940), + [anon_sym_INTERFACE] = ACTIONS(2940), + [anon_sym_New] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_NEW] = ACTIONS(2940), + [anon_sym_Package] = ACTIONS(2940), + [anon_sym_package] = ACTIONS(2940), + [anon_sym_PACKAGE] = ACTIONS(2940), + [anon_sym_Private] = ACTIONS(2940), + [anon_sym_private] = ACTIONS(2940), + [anon_sym_PRIVATE] = ACTIONS(2940), + [anon_sym_Property] = ACTIONS(2940), + [anon_sym_property] = ACTIONS(2940), + [anon_sym_PROPERTY] = ACTIONS(2940), + [anon_sym_Public] = ACTIONS(2940), + [anon_sym_public] = ACTIONS(2940), + [anon_sym_PUBLIC] = ACTIONS(2940), + [anon_sym_Remote] = ACTIONS(2940), + [anon_sym_remote] = ACTIONS(2940), + [anon_sym_REMOTE] = ACTIONS(2940), + [anon_sym_Return] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_RETURN] = ACTIONS(2940), + [anon_sym_Static] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_STATIC] = ACTIONS(2940), + [anon_sym_Switch] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_SWITCH] = ACTIONS(2940), + [anon_sym_Throw] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_THROW] = ACTIONS(2940), + [anon_sym_Try] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_TRY] = ACTIONS(2940), + [anon_sym_Var] = ACTIONS(2940), + [anon_sym_var] = ACTIONS(2940), + [anon_sym_VAR] = ACTIONS(2940), + [anon_sym_While] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_WHILE] = ACTIONS(2940), + [anon_sym_With] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2940), + [anon_sym_WITH] = ACTIONS(2940), + [sym_cf_comment] = ACTIONS(2938), + [sym__java_block_open] = ACTIONS(2938), + [sym__static_type_prefix] = ACTIONS(2938), }, - [STATE(849)] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_Query] = ACTIONS(2886), - [anon_sym_query] = ACTIONS(2886), - [anon_sym_QUERY] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [aux_sym_unary_operator_token1] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_DQUOTE] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2886), - [aux_sym_number_token2] = ACTIONS(2884), - [anon_sym_This] = ACTIONS(2886), - [anon_sym_this] = ACTIONS(2886), - [anon_sym_THIS] = ACTIONS(2886), - [anon_sym_Super] = ACTIONS(2886), - [anon_sym_super] = ACTIONS(2886), - [anon_sym_SUPER] = ACTIONS(2886), - [anon_sym_True] = ACTIONS(2886), - [anon_sym_true] = ACTIONS(2886), - [anon_sym_TRUE] = ACTIONS(2886), - [anon_sym_False] = ACTIONS(2886), - [anon_sym_false] = ACTIONS(2886), - [anon_sym_FALSE] = ACTIONS(2886), - [anon_sym_Null] = ACTIONS(2886), - [anon_sym_null] = ACTIONS(2886), - [anon_sym_NULL] = ACTIONS(2886), - [anon_sym_Undefined] = ACTIONS(2886), - [anon_sym_undefined] = ACTIONS(2886), - [anon_sym_UNDEFINED] = ACTIONS(2886), - [anon_sym_get] = ACTIONS(2886), - [anon_sym_set] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [sym_hash_empty] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2886), - [anon_sym_QueryExecute] = ACTIONS(2886), - [anon_sym_queryexecute] = ACTIONS(2886), - [anon_sym_QUERYEXECUTE] = ACTIONS(2886), - [anon_sym_queryExecute] = ACTIONS(2886), - [anon_sym_BQUOTE] = ACTIONS(2886), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2884), - [anon_sym_Abstract] = ACTIONS(2886), - [anon_sym_abstract] = ACTIONS(2886), - [anon_sym_ABSTRACT] = ACTIONS(2886), - [anon_sym_Break] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_BREAK] = ACTIONS(2886), - [anon_sym_Case] = ACTIONS(2886), - [anon_sym_case] = ACTIONS(2886), - [anon_sym_CASE] = ACTIONS(2886), - [anon_sym_Component] = ACTIONS(2886), - [anon_sym_component] = ACTIONS(2886), - [anon_sym_COMPONENT] = ACTIONS(2886), - [anon_sym_Continue] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_CONTINUE] = ACTIONS(2886), - [anon_sym_Debugger] = ACTIONS(2886), - [anon_sym_debugger] = ACTIONS(2886), - [anon_sym_DEBUGGER] = ACTIONS(2886), - [anon_sym_Default] = ACTIONS(2886), - [anon_sym_default] = ACTIONS(2886), - [anon_sym_DEFAULT] = ACTIONS(2886), - [anon_sym_Do] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_DO] = ACTIONS(2886), - [anon_sym_Final] = ACTIONS(2886), - [anon_sym_final] = ACTIONS(2886), - [anon_sym_FINAL] = ACTIONS(2886), - [anon_sym_For] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_FOR] = ACTIONS(2886), - [anon_sym_Function] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_FUNCTION] = ACTIONS(2886), - [anon_sym_If] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_IF] = ACTIONS(2886), - [anon_sym_Import] = ACTIONS(2886), - [anon_sym_import] = ACTIONS(2886), - [anon_sym_IMPORT] = ACTIONS(2886), - [anon_sym_Include] = ACTIONS(2886), - [anon_sym_include] = ACTIONS(2886), - [anon_sym_INCLUDE] = ACTIONS(2886), - [anon_sym_Interface] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_INTERFACE] = ACTIONS(2886), - [anon_sym_New] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_NEW] = ACTIONS(2886), - [anon_sym_Package] = ACTIONS(2886), - [anon_sym_package] = ACTIONS(2886), - [anon_sym_PACKAGE] = ACTIONS(2886), - [anon_sym_Private] = ACTIONS(2886), - [anon_sym_private] = ACTIONS(2886), - [anon_sym_PRIVATE] = ACTIONS(2886), - [anon_sym_Property] = ACTIONS(2886), - [anon_sym_property] = ACTIONS(2886), - [anon_sym_PROPERTY] = ACTIONS(2886), - [anon_sym_Public] = ACTIONS(2886), - [anon_sym_public] = ACTIONS(2886), - [anon_sym_PUBLIC] = ACTIONS(2886), - [anon_sym_Remote] = ACTIONS(2886), - [anon_sym_remote] = ACTIONS(2886), - [anon_sym_REMOTE] = ACTIONS(2886), - [anon_sym_Return] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_RETURN] = ACTIONS(2886), - [anon_sym_Static] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_STATIC] = ACTIONS(2886), - [anon_sym_Switch] = ACTIONS(2886), - [anon_sym_switch] = ACTIONS(2886), - [anon_sym_SWITCH] = ACTIONS(2886), - [anon_sym_Throw] = ACTIONS(2886), - [anon_sym_throw] = ACTIONS(2886), - [anon_sym_THROW] = ACTIONS(2886), - [anon_sym_Try] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_TRY] = ACTIONS(2886), - [anon_sym_Var] = ACTIONS(2886), - [anon_sym_var] = ACTIONS(2886), - [anon_sym_VAR] = ACTIONS(2886), - [anon_sym_While] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_WHILE] = ACTIONS(2886), - [anon_sym_With] = ACTIONS(2886), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_WITH] = ACTIONS(2886), - [sym_cf_comment] = ACTIONS(2884), - [sym__java_block_open] = ACTIONS(2884), - [sym__static_type_prefix] = ACTIONS(2884), + [STATE(901)] = { + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_Query] = ACTIONS(2948), + [anon_sym_query] = ACTIONS(2948), + [anon_sym_QUERY] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_unary_operator_token1] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2948), + [aux_sym_number_token2] = ACTIONS(2946), + [anon_sym_This] = ACTIONS(2948), + [anon_sym_this] = ACTIONS(2948), + [anon_sym_THIS] = ACTIONS(2948), + [anon_sym_Super] = ACTIONS(2948), + [anon_sym_super] = ACTIONS(2948), + [anon_sym_SUPER] = ACTIONS(2948), + [anon_sym_True] = ACTIONS(2948), + [anon_sym_true] = ACTIONS(2948), + [anon_sym_TRUE] = ACTIONS(2948), + [anon_sym_False] = ACTIONS(2948), + [anon_sym_false] = ACTIONS(2948), + [anon_sym_FALSE] = ACTIONS(2948), + [anon_sym_Null] = ACTIONS(2948), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_Undefined] = ACTIONS(2948), + [anon_sym_undefined] = ACTIONS(2948), + [anon_sym_UNDEFINED] = ACTIONS(2948), + [anon_sym_get] = ACTIONS(2948), + [anon_sym_set] = ACTIONS(2948), + [anon_sym_POUND] = ACTIONS(2948), + [sym_hash_empty] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2948), + [anon_sym_QueryExecute] = ACTIONS(2948), + [anon_sym_queryexecute] = ACTIONS(2948), + [anon_sym_QUERYEXECUTE] = ACTIONS(2948), + [anon_sym_queryExecute] = ACTIONS(2948), + [anon_sym_BQUOTE] = ACTIONS(2948), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2946), + [anon_sym_Abstract] = ACTIONS(2948), + [anon_sym_abstract] = ACTIONS(2948), + [anon_sym_ABSTRACT] = ACTIONS(2948), + [anon_sym_Break] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_BREAK] = ACTIONS(2948), + [anon_sym_Case] = ACTIONS(2948), + [anon_sym_case] = ACTIONS(2948), + [anon_sym_CASE] = ACTIONS(2948), + [anon_sym_Component] = ACTIONS(2948), + [anon_sym_component] = ACTIONS(2948), + [anon_sym_COMPONENT] = ACTIONS(2948), + [anon_sym_Continue] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_CONTINUE] = ACTIONS(2948), + [anon_sym_Debugger] = ACTIONS(2948), + [anon_sym_debugger] = ACTIONS(2948), + [anon_sym_DEBUGGER] = ACTIONS(2948), + [anon_sym_Default] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_DEFAULT] = ACTIONS(2948), + [anon_sym_Do] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_DO] = ACTIONS(2948), + [anon_sym_Final] = ACTIONS(2948), + [anon_sym_final] = ACTIONS(2948), + [anon_sym_FINAL] = ACTIONS(2948), + [anon_sym_For] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_FOR] = ACTIONS(2948), + [anon_sym_Function] = ACTIONS(2948), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_FUNCTION] = ACTIONS(2948), + [anon_sym_If] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_IF] = ACTIONS(2948), + [anon_sym_Import] = ACTIONS(2948), + [anon_sym_import] = ACTIONS(2948), + [anon_sym_IMPORT] = ACTIONS(2948), + [anon_sym_Include] = ACTIONS(2948), + [anon_sym_include] = ACTIONS(2948), + [anon_sym_INCLUDE] = ACTIONS(2948), + [anon_sym_Interface] = ACTIONS(2948), + [anon_sym_interface] = ACTIONS(2948), + [anon_sym_INTERFACE] = ACTIONS(2948), + [anon_sym_New] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_NEW] = ACTIONS(2948), + [anon_sym_Package] = ACTIONS(2948), + [anon_sym_package] = ACTIONS(2948), + [anon_sym_PACKAGE] = ACTIONS(2948), + [anon_sym_Private] = ACTIONS(2948), + [anon_sym_private] = ACTIONS(2948), + [anon_sym_PRIVATE] = ACTIONS(2948), + [anon_sym_Property] = ACTIONS(2948), + [anon_sym_property] = ACTIONS(2948), + [anon_sym_PROPERTY] = ACTIONS(2948), + [anon_sym_Public] = ACTIONS(2948), + [anon_sym_public] = ACTIONS(2948), + [anon_sym_PUBLIC] = ACTIONS(2948), + [anon_sym_Remote] = ACTIONS(2948), + [anon_sym_remote] = ACTIONS(2948), + [anon_sym_REMOTE] = ACTIONS(2948), + [anon_sym_Return] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_RETURN] = ACTIONS(2948), + [anon_sym_Static] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_STATIC] = ACTIONS(2948), + [anon_sym_Switch] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_SWITCH] = ACTIONS(2948), + [anon_sym_Throw] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_THROW] = ACTIONS(2948), + [anon_sym_Try] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_TRY] = ACTIONS(2948), + [anon_sym_Var] = ACTIONS(2948), + [anon_sym_var] = ACTIONS(2948), + [anon_sym_VAR] = ACTIONS(2948), + [anon_sym_While] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_WHILE] = ACTIONS(2948), + [anon_sym_With] = ACTIONS(2948), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_WITH] = ACTIONS(2948), + [sym_cf_comment] = ACTIONS(2946), + [sym__java_block_open] = ACTIONS(2946), + [sym__static_type_prefix] = ACTIONS(2946), }, - [STATE(850)] = { - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_Query] = ACTIONS(2890), - [anon_sym_query] = ACTIONS(2890), - [anon_sym_QUERY] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [aux_sym_unary_operator_token1] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_DQUOTE] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2890), - [aux_sym_number_token2] = ACTIONS(2888), - [anon_sym_This] = ACTIONS(2890), - [anon_sym_this] = ACTIONS(2890), - [anon_sym_THIS] = ACTIONS(2890), - [anon_sym_Super] = ACTIONS(2890), - [anon_sym_super] = ACTIONS(2890), - [anon_sym_SUPER] = ACTIONS(2890), - [anon_sym_True] = ACTIONS(2890), - [anon_sym_true] = ACTIONS(2890), - [anon_sym_TRUE] = ACTIONS(2890), - [anon_sym_False] = ACTIONS(2890), - [anon_sym_false] = ACTIONS(2890), - [anon_sym_FALSE] = ACTIONS(2890), - [anon_sym_Null] = ACTIONS(2890), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_NULL] = ACTIONS(2890), - [anon_sym_Undefined] = ACTIONS(2890), - [anon_sym_undefined] = ACTIONS(2890), - [anon_sym_UNDEFINED] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2890), - [anon_sym_set] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [sym_hash_empty] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_QueryExecute] = ACTIONS(2890), - [anon_sym_queryexecute] = ACTIONS(2890), - [anon_sym_QUERYEXECUTE] = ACTIONS(2890), - [anon_sym_queryExecute] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2888), - [anon_sym_Abstract] = ACTIONS(2890), - [anon_sym_abstract] = ACTIONS(2890), - [anon_sym_ABSTRACT] = ACTIONS(2890), - [anon_sym_Break] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_BREAK] = ACTIONS(2890), - [anon_sym_Case] = ACTIONS(2890), - [anon_sym_case] = ACTIONS(2890), - [anon_sym_CASE] = ACTIONS(2890), - [anon_sym_Component] = ACTIONS(2890), - [anon_sym_component] = ACTIONS(2890), - [anon_sym_COMPONENT] = ACTIONS(2890), - [anon_sym_Continue] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_CONTINUE] = ACTIONS(2890), - [anon_sym_Debugger] = ACTIONS(2890), - [anon_sym_debugger] = ACTIONS(2890), - [anon_sym_DEBUGGER] = ACTIONS(2890), - [anon_sym_Default] = ACTIONS(2890), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_DEFAULT] = ACTIONS(2890), - [anon_sym_Do] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_DO] = ACTIONS(2890), - [anon_sym_Final] = ACTIONS(2890), - [anon_sym_final] = ACTIONS(2890), - [anon_sym_FINAL] = ACTIONS(2890), - [anon_sym_For] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_FOR] = ACTIONS(2890), - [anon_sym_Function] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_FUNCTION] = ACTIONS(2890), - [anon_sym_If] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_IF] = ACTIONS(2890), - [anon_sym_Import] = ACTIONS(2890), - [anon_sym_import] = ACTIONS(2890), - [anon_sym_IMPORT] = ACTIONS(2890), - [anon_sym_Include] = ACTIONS(2890), - [anon_sym_include] = ACTIONS(2890), - [anon_sym_INCLUDE] = ACTIONS(2890), - [anon_sym_Interface] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_INTERFACE] = ACTIONS(2890), - [anon_sym_New] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_NEW] = ACTIONS(2890), - [anon_sym_Package] = ACTIONS(2890), - [anon_sym_package] = ACTIONS(2890), - [anon_sym_PACKAGE] = ACTIONS(2890), - [anon_sym_Private] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_PRIVATE] = ACTIONS(2890), - [anon_sym_Property] = ACTIONS(2890), - [anon_sym_property] = ACTIONS(2890), - [anon_sym_PROPERTY] = ACTIONS(2890), - [anon_sym_Public] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_PUBLIC] = ACTIONS(2890), - [anon_sym_Remote] = ACTIONS(2890), - [anon_sym_remote] = ACTIONS(2890), - [anon_sym_REMOTE] = ACTIONS(2890), - [anon_sym_Return] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_RETURN] = ACTIONS(2890), - [anon_sym_Static] = ACTIONS(2890), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_STATIC] = ACTIONS(2890), - [anon_sym_Switch] = ACTIONS(2890), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_SWITCH] = ACTIONS(2890), - [anon_sym_Throw] = ACTIONS(2890), - [anon_sym_throw] = ACTIONS(2890), - [anon_sym_THROW] = ACTIONS(2890), - [anon_sym_Try] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_TRY] = ACTIONS(2890), - [anon_sym_Var] = ACTIONS(2890), - [anon_sym_var] = ACTIONS(2890), - [anon_sym_VAR] = ACTIONS(2890), - [anon_sym_While] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_WHILE] = ACTIONS(2890), - [anon_sym_With] = ACTIONS(2890), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_WITH] = ACTIONS(2890), - [sym_cf_comment] = ACTIONS(2888), - [sym__java_block_open] = ACTIONS(2888), - [sym__static_type_prefix] = ACTIONS(2888), + [STATE(902)] = { + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_let] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_Query] = ACTIONS(2952), + [anon_sym_query] = ACTIONS(2952), + [anon_sym_QUERY] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_unary_operator_token1] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2952), + [aux_sym_number_token2] = ACTIONS(2950), + [anon_sym_This] = ACTIONS(2952), + [anon_sym_this] = ACTIONS(2952), + [anon_sym_THIS] = ACTIONS(2952), + [anon_sym_Super] = ACTIONS(2952), + [anon_sym_super] = ACTIONS(2952), + [anon_sym_SUPER] = ACTIONS(2952), + [anon_sym_True] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2952), + [anon_sym_TRUE] = ACTIONS(2952), + [anon_sym_False] = ACTIONS(2952), + [anon_sym_false] = ACTIONS(2952), + [anon_sym_FALSE] = ACTIONS(2952), + [anon_sym_Null] = ACTIONS(2952), + [anon_sym_null] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_Undefined] = ACTIONS(2952), + [anon_sym_undefined] = ACTIONS(2952), + [anon_sym_UNDEFINED] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2952), + [anon_sym_set] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [sym_hash_empty] = ACTIONS(2950), + [anon_sym_export] = ACTIONS(2952), + [anon_sym_QueryExecute] = ACTIONS(2952), + [anon_sym_queryexecute] = ACTIONS(2952), + [anon_sym_QUERYEXECUTE] = ACTIONS(2952), + [anon_sym_queryExecute] = ACTIONS(2952), + [anon_sym_BQUOTE] = ACTIONS(2952), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2950), + [anon_sym_Abstract] = ACTIONS(2952), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_ABSTRACT] = ACTIONS(2952), + [anon_sym_Break] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_BREAK] = ACTIONS(2952), + [anon_sym_Case] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_CASE] = ACTIONS(2952), + [anon_sym_Component] = ACTIONS(2952), + [anon_sym_component] = ACTIONS(2952), + [anon_sym_COMPONENT] = ACTIONS(2952), + [anon_sym_Continue] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_CONTINUE] = ACTIONS(2952), + [anon_sym_Debugger] = ACTIONS(2952), + [anon_sym_debugger] = ACTIONS(2952), + [anon_sym_DEBUGGER] = ACTIONS(2952), + [anon_sym_Default] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_DEFAULT] = ACTIONS(2952), + [anon_sym_Do] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_DO] = ACTIONS(2952), + [anon_sym_Final] = ACTIONS(2952), + [anon_sym_final] = ACTIONS(2952), + [anon_sym_FINAL] = ACTIONS(2952), + [anon_sym_For] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_FOR] = ACTIONS(2952), + [anon_sym_Function] = ACTIONS(2952), + [anon_sym_function] = ACTIONS(2952), + [anon_sym_FUNCTION] = ACTIONS(2952), + [anon_sym_If] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_IF] = ACTIONS(2952), + [anon_sym_Import] = ACTIONS(2952), + [anon_sym_import] = ACTIONS(2952), + [anon_sym_IMPORT] = ACTIONS(2952), + [anon_sym_Include] = ACTIONS(2952), + [anon_sym_include] = ACTIONS(2952), + [anon_sym_INCLUDE] = ACTIONS(2952), + [anon_sym_Interface] = ACTIONS(2952), + [anon_sym_interface] = ACTIONS(2952), + [anon_sym_INTERFACE] = ACTIONS(2952), + [anon_sym_New] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_NEW] = ACTIONS(2952), + [anon_sym_Package] = ACTIONS(2952), + [anon_sym_package] = ACTIONS(2952), + [anon_sym_PACKAGE] = ACTIONS(2952), + [anon_sym_Private] = ACTIONS(2952), + [anon_sym_private] = ACTIONS(2952), + [anon_sym_PRIVATE] = ACTIONS(2952), + [anon_sym_Property] = ACTIONS(2952), + [anon_sym_property] = ACTIONS(2952), + [anon_sym_PROPERTY] = ACTIONS(2952), + [anon_sym_Public] = ACTIONS(2952), + [anon_sym_public] = ACTIONS(2952), + [anon_sym_PUBLIC] = ACTIONS(2952), + [anon_sym_Remote] = ACTIONS(2952), + [anon_sym_remote] = ACTIONS(2952), + [anon_sym_REMOTE] = ACTIONS(2952), + [anon_sym_Return] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_RETURN] = ACTIONS(2952), + [anon_sym_Static] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_STATIC] = ACTIONS(2952), + [anon_sym_Switch] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_SWITCH] = ACTIONS(2952), + [anon_sym_Throw] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_THROW] = ACTIONS(2952), + [anon_sym_Try] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_TRY] = ACTIONS(2952), + [anon_sym_Var] = ACTIONS(2952), + [anon_sym_var] = ACTIONS(2952), + [anon_sym_VAR] = ACTIONS(2952), + [anon_sym_While] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_WHILE] = ACTIONS(2952), + [anon_sym_With] = ACTIONS(2952), + [anon_sym_with] = ACTIONS(2952), + [anon_sym_WITH] = ACTIONS(2952), + [sym_cf_comment] = ACTIONS(2950), + [sym__java_block_open] = ACTIONS(2950), + [sym__static_type_prefix] = ACTIONS(2950), }, - [STATE(851)] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_Query] = ACTIONS(2894), - [anon_sym_query] = ACTIONS(2894), - [anon_sym_QUERY] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [aux_sym_unary_operator_token1] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2894), - [aux_sym_number_token2] = ACTIONS(2892), - [anon_sym_This] = ACTIONS(2894), - [anon_sym_this] = ACTIONS(2894), - [anon_sym_THIS] = ACTIONS(2894), - [anon_sym_Super] = ACTIONS(2894), - [anon_sym_super] = ACTIONS(2894), - [anon_sym_SUPER] = ACTIONS(2894), - [anon_sym_True] = ACTIONS(2894), - [anon_sym_true] = ACTIONS(2894), - [anon_sym_TRUE] = ACTIONS(2894), - [anon_sym_False] = ACTIONS(2894), - [anon_sym_false] = ACTIONS(2894), - [anon_sym_FALSE] = ACTIONS(2894), - [anon_sym_Null] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2894), - [anon_sym_NULL] = ACTIONS(2894), - [anon_sym_Undefined] = ACTIONS(2894), - [anon_sym_undefined] = ACTIONS(2894), - [anon_sym_UNDEFINED] = ACTIONS(2894), - [anon_sym_get] = ACTIONS(2894), - [anon_sym_set] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [sym_hash_empty] = ACTIONS(2892), - [anon_sym_export] = ACTIONS(2894), - [anon_sym_QueryExecute] = ACTIONS(2894), - [anon_sym_queryexecute] = ACTIONS(2894), - [anon_sym_QUERYEXECUTE] = ACTIONS(2894), - [anon_sym_queryExecute] = ACTIONS(2894), - [anon_sym_BQUOTE] = ACTIONS(2894), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2892), - [anon_sym_Abstract] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_ABSTRACT] = ACTIONS(2894), - [anon_sym_Break] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_BREAK] = ACTIONS(2894), - [anon_sym_Case] = ACTIONS(2894), - [anon_sym_case] = ACTIONS(2894), - [anon_sym_CASE] = ACTIONS(2894), - [anon_sym_Component] = ACTIONS(2894), - [anon_sym_component] = ACTIONS(2894), - [anon_sym_COMPONENT] = ACTIONS(2894), - [anon_sym_Continue] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_CONTINUE] = ACTIONS(2894), - [anon_sym_Debugger] = ACTIONS(2894), - [anon_sym_debugger] = ACTIONS(2894), - [anon_sym_DEBUGGER] = ACTIONS(2894), - [anon_sym_Default] = ACTIONS(2894), - [anon_sym_default] = ACTIONS(2894), - [anon_sym_DEFAULT] = ACTIONS(2894), - [anon_sym_Do] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_DO] = ACTIONS(2894), - [anon_sym_Final] = ACTIONS(2894), - [anon_sym_final] = ACTIONS(2894), - [anon_sym_FINAL] = ACTIONS(2894), - [anon_sym_For] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_FOR] = ACTIONS(2894), - [anon_sym_Function] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_FUNCTION] = ACTIONS(2894), - [anon_sym_If] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_IF] = ACTIONS(2894), - [anon_sym_Import] = ACTIONS(2894), - [anon_sym_import] = ACTIONS(2894), - [anon_sym_IMPORT] = ACTIONS(2894), - [anon_sym_Include] = ACTIONS(2894), - [anon_sym_include] = ACTIONS(2894), - [anon_sym_INCLUDE] = ACTIONS(2894), - [anon_sym_Interface] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_INTERFACE] = ACTIONS(2894), - [anon_sym_New] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_NEW] = ACTIONS(2894), - [anon_sym_Package] = ACTIONS(2894), - [anon_sym_package] = ACTIONS(2894), - [anon_sym_PACKAGE] = ACTIONS(2894), - [anon_sym_Private] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_PRIVATE] = ACTIONS(2894), - [anon_sym_Property] = ACTIONS(2894), - [anon_sym_property] = ACTIONS(2894), - [anon_sym_PROPERTY] = ACTIONS(2894), - [anon_sym_Public] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_PUBLIC] = ACTIONS(2894), - [anon_sym_Remote] = ACTIONS(2894), - [anon_sym_remote] = ACTIONS(2894), - [anon_sym_REMOTE] = ACTIONS(2894), - [anon_sym_Return] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_RETURN] = ACTIONS(2894), - [anon_sym_Static] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_STATIC] = ACTIONS(2894), - [anon_sym_Switch] = ACTIONS(2894), - [anon_sym_switch] = ACTIONS(2894), - [anon_sym_SWITCH] = ACTIONS(2894), - [anon_sym_Throw] = ACTIONS(2894), - [anon_sym_throw] = ACTIONS(2894), - [anon_sym_THROW] = ACTIONS(2894), - [anon_sym_Try] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_TRY] = ACTIONS(2894), - [anon_sym_Var] = ACTIONS(2894), - [anon_sym_var] = ACTIONS(2894), - [anon_sym_VAR] = ACTIONS(2894), - [anon_sym_While] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_WHILE] = ACTIONS(2894), - [anon_sym_With] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_WITH] = ACTIONS(2894), - [sym_cf_comment] = ACTIONS(2892), - [sym__java_block_open] = ACTIONS(2892), - [sym__static_type_prefix] = ACTIONS(2892), + [STATE(903)] = { + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_let] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_Query] = ACTIONS(2952), + [anon_sym_query] = ACTIONS(2952), + [anon_sym_QUERY] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_unary_operator_token1] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2952), + [aux_sym_number_token2] = ACTIONS(2950), + [anon_sym_This] = ACTIONS(2952), + [anon_sym_this] = ACTIONS(2952), + [anon_sym_THIS] = ACTIONS(2952), + [anon_sym_Super] = ACTIONS(2952), + [anon_sym_super] = ACTIONS(2952), + [anon_sym_SUPER] = ACTIONS(2952), + [anon_sym_True] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2952), + [anon_sym_TRUE] = ACTIONS(2952), + [anon_sym_False] = ACTIONS(2952), + [anon_sym_false] = ACTIONS(2952), + [anon_sym_FALSE] = ACTIONS(2952), + [anon_sym_Null] = ACTIONS(2952), + [anon_sym_null] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_Undefined] = ACTIONS(2952), + [anon_sym_undefined] = ACTIONS(2952), + [anon_sym_UNDEFINED] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2952), + [anon_sym_set] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [sym_hash_empty] = ACTIONS(2950), + [anon_sym_export] = ACTIONS(2952), + [anon_sym_QueryExecute] = ACTIONS(2952), + [anon_sym_queryexecute] = ACTIONS(2952), + [anon_sym_QUERYEXECUTE] = ACTIONS(2952), + [anon_sym_queryExecute] = ACTIONS(2952), + [anon_sym_BQUOTE] = ACTIONS(2952), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2950), + [anon_sym_Abstract] = ACTIONS(2952), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_ABSTRACT] = ACTIONS(2952), + [anon_sym_Break] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_BREAK] = ACTIONS(2952), + [anon_sym_Case] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_CASE] = ACTIONS(2952), + [anon_sym_Component] = ACTIONS(2952), + [anon_sym_component] = ACTIONS(2952), + [anon_sym_COMPONENT] = ACTIONS(2952), + [anon_sym_Continue] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_CONTINUE] = ACTIONS(2952), + [anon_sym_Debugger] = ACTIONS(2952), + [anon_sym_debugger] = ACTIONS(2952), + [anon_sym_DEBUGGER] = ACTIONS(2952), + [anon_sym_Default] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_DEFAULT] = ACTIONS(2952), + [anon_sym_Do] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_DO] = ACTIONS(2952), + [anon_sym_Final] = ACTIONS(2952), + [anon_sym_final] = ACTIONS(2952), + [anon_sym_FINAL] = ACTIONS(2952), + [anon_sym_For] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_FOR] = ACTIONS(2952), + [anon_sym_Function] = ACTIONS(2952), + [anon_sym_function] = ACTIONS(2952), + [anon_sym_FUNCTION] = ACTIONS(2952), + [anon_sym_If] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_IF] = ACTIONS(2952), + [anon_sym_Import] = ACTIONS(2952), + [anon_sym_import] = ACTIONS(2952), + [anon_sym_IMPORT] = ACTIONS(2952), + [anon_sym_Include] = ACTIONS(2952), + [anon_sym_include] = ACTIONS(2952), + [anon_sym_INCLUDE] = ACTIONS(2952), + [anon_sym_Interface] = ACTIONS(2952), + [anon_sym_interface] = ACTIONS(2952), + [anon_sym_INTERFACE] = ACTIONS(2952), + [anon_sym_New] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_NEW] = ACTIONS(2952), + [anon_sym_Package] = ACTIONS(2952), + [anon_sym_package] = ACTIONS(2952), + [anon_sym_PACKAGE] = ACTIONS(2952), + [anon_sym_Private] = ACTIONS(2952), + [anon_sym_private] = ACTIONS(2952), + [anon_sym_PRIVATE] = ACTIONS(2952), + [anon_sym_Property] = ACTIONS(2952), + [anon_sym_property] = ACTIONS(2952), + [anon_sym_PROPERTY] = ACTIONS(2952), + [anon_sym_Public] = ACTIONS(2952), + [anon_sym_public] = ACTIONS(2952), + [anon_sym_PUBLIC] = ACTIONS(2952), + [anon_sym_Remote] = ACTIONS(2952), + [anon_sym_remote] = ACTIONS(2952), + [anon_sym_REMOTE] = ACTIONS(2952), + [anon_sym_Return] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_RETURN] = ACTIONS(2952), + [anon_sym_Static] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_STATIC] = ACTIONS(2952), + [anon_sym_Switch] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_SWITCH] = ACTIONS(2952), + [anon_sym_Throw] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_THROW] = ACTIONS(2952), + [anon_sym_Try] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_TRY] = ACTIONS(2952), + [anon_sym_Var] = ACTIONS(2952), + [anon_sym_var] = ACTIONS(2952), + [anon_sym_VAR] = ACTIONS(2952), + [anon_sym_While] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_WHILE] = ACTIONS(2952), + [anon_sym_With] = ACTIONS(2952), + [anon_sym_with] = ACTIONS(2952), + [anon_sym_WITH] = ACTIONS(2952), + [sym_cf_comment] = ACTIONS(2950), + [sym__java_block_open] = ACTIONS(2950), + [sym__static_type_prefix] = ACTIONS(2950), }, - [STATE(852)] = { - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_Query] = ACTIONS(2898), - [anon_sym_query] = ACTIONS(2898), - [anon_sym_QUERY] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [aux_sym_unary_operator_token1] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2898), - [aux_sym_number_token2] = ACTIONS(2896), - [anon_sym_This] = ACTIONS(2898), - [anon_sym_this] = ACTIONS(2898), - [anon_sym_THIS] = ACTIONS(2898), - [anon_sym_Super] = ACTIONS(2898), - [anon_sym_super] = ACTIONS(2898), - [anon_sym_SUPER] = ACTIONS(2898), - [anon_sym_True] = ACTIONS(2898), - [anon_sym_true] = ACTIONS(2898), - [anon_sym_TRUE] = ACTIONS(2898), - [anon_sym_False] = ACTIONS(2898), - [anon_sym_false] = ACTIONS(2898), - [anon_sym_FALSE] = ACTIONS(2898), - [anon_sym_Null] = ACTIONS(2898), - [anon_sym_null] = ACTIONS(2898), - [anon_sym_NULL] = ACTIONS(2898), - [anon_sym_Undefined] = ACTIONS(2898), - [anon_sym_undefined] = ACTIONS(2898), - [anon_sym_UNDEFINED] = ACTIONS(2898), - [anon_sym_get] = ACTIONS(2898), - [anon_sym_set] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [sym_hash_empty] = ACTIONS(2896), - [anon_sym_export] = ACTIONS(2898), - [anon_sym_QueryExecute] = ACTIONS(2898), - [anon_sym_queryexecute] = ACTIONS(2898), - [anon_sym_QUERYEXECUTE] = ACTIONS(2898), - [anon_sym_queryExecute] = ACTIONS(2898), - [anon_sym_BQUOTE] = ACTIONS(2898), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2896), - [anon_sym_Abstract] = ACTIONS(2898), - [anon_sym_abstract] = ACTIONS(2898), - [anon_sym_ABSTRACT] = ACTIONS(2898), - [anon_sym_Break] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_BREAK] = ACTIONS(2898), - [anon_sym_Case] = ACTIONS(2898), - [anon_sym_case] = ACTIONS(2898), - [anon_sym_CASE] = ACTIONS(2898), - [anon_sym_Component] = ACTIONS(2898), - [anon_sym_component] = ACTIONS(2898), - [anon_sym_COMPONENT] = ACTIONS(2898), - [anon_sym_Continue] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_CONTINUE] = ACTIONS(2898), - [anon_sym_Debugger] = ACTIONS(2898), - [anon_sym_debugger] = ACTIONS(2898), - [anon_sym_DEBUGGER] = ACTIONS(2898), - [anon_sym_Default] = ACTIONS(2898), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_DEFAULT] = ACTIONS(2898), - [anon_sym_Do] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_DO] = ACTIONS(2898), - [anon_sym_Final] = ACTIONS(2898), - [anon_sym_final] = ACTIONS(2898), - [anon_sym_FINAL] = ACTIONS(2898), - [anon_sym_For] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_FOR] = ACTIONS(2898), - [anon_sym_Function] = ACTIONS(2898), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_FUNCTION] = ACTIONS(2898), - [anon_sym_If] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_IF] = ACTIONS(2898), - [anon_sym_Import] = ACTIONS(2898), - [anon_sym_import] = ACTIONS(2898), - [anon_sym_IMPORT] = ACTIONS(2898), - [anon_sym_Include] = ACTIONS(2898), - [anon_sym_include] = ACTIONS(2898), - [anon_sym_INCLUDE] = ACTIONS(2898), - [anon_sym_Interface] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_INTERFACE] = ACTIONS(2898), - [anon_sym_New] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_NEW] = ACTIONS(2898), - [anon_sym_Package] = ACTIONS(2898), - [anon_sym_package] = ACTIONS(2898), - [anon_sym_PACKAGE] = ACTIONS(2898), - [anon_sym_Private] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_PRIVATE] = ACTIONS(2898), - [anon_sym_Property] = ACTIONS(2898), - [anon_sym_property] = ACTIONS(2898), - [anon_sym_PROPERTY] = ACTIONS(2898), - [anon_sym_Public] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_PUBLIC] = ACTIONS(2898), - [anon_sym_Remote] = ACTIONS(2898), - [anon_sym_remote] = ACTIONS(2898), - [anon_sym_REMOTE] = ACTIONS(2898), - [anon_sym_Return] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_RETURN] = ACTIONS(2898), - [anon_sym_Static] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_STATIC] = ACTIONS(2898), - [anon_sym_Switch] = ACTIONS(2898), - [anon_sym_switch] = ACTIONS(2898), - [anon_sym_SWITCH] = ACTIONS(2898), - [anon_sym_Throw] = ACTIONS(2898), - [anon_sym_throw] = ACTIONS(2898), - [anon_sym_THROW] = ACTIONS(2898), - [anon_sym_Try] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_TRY] = ACTIONS(2898), - [anon_sym_Var] = ACTIONS(2898), - [anon_sym_var] = ACTIONS(2898), - [anon_sym_VAR] = ACTIONS(2898), - [anon_sym_While] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_WHILE] = ACTIONS(2898), - [anon_sym_With] = ACTIONS(2898), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_WITH] = ACTIONS(2898), - [sym_cf_comment] = ACTIONS(2896), - [sym__java_block_open] = ACTIONS(2896), - [sym__static_type_prefix] = ACTIONS(2896), + [STATE(904)] = { + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_Query] = ACTIONS(2964), + [anon_sym_query] = ACTIONS(2964), + [anon_sym_QUERY] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [aux_sym_unary_operator_token1] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_SQUOTE] = ACTIONS(2962), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2964), + [aux_sym_number_token2] = ACTIONS(2962), + [anon_sym_This] = ACTIONS(2964), + [anon_sym_this] = ACTIONS(2964), + [anon_sym_THIS] = ACTIONS(2964), + [anon_sym_Super] = ACTIONS(2964), + [anon_sym_super] = ACTIONS(2964), + [anon_sym_SUPER] = ACTIONS(2964), + [anon_sym_True] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2964), + [anon_sym_TRUE] = ACTIONS(2964), + [anon_sym_False] = ACTIONS(2964), + [anon_sym_false] = ACTIONS(2964), + [anon_sym_FALSE] = ACTIONS(2964), + [anon_sym_Null] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_NULL] = ACTIONS(2964), + [anon_sym_Undefined] = ACTIONS(2964), + [anon_sym_undefined] = ACTIONS(2964), + [anon_sym_UNDEFINED] = ACTIONS(2964), + [anon_sym_get] = ACTIONS(2964), + [anon_sym_set] = ACTIONS(2964), + [anon_sym_POUND] = ACTIONS(2964), + [sym_hash_empty] = ACTIONS(2962), + [anon_sym_export] = ACTIONS(2964), + [anon_sym_QueryExecute] = ACTIONS(2964), + [anon_sym_queryexecute] = ACTIONS(2964), + [anon_sym_QUERYEXECUTE] = ACTIONS(2964), + [anon_sym_queryExecute] = ACTIONS(2964), + [anon_sym_BQUOTE] = ACTIONS(2964), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2962), + [anon_sym_Abstract] = ACTIONS(2964), + [anon_sym_abstract] = ACTIONS(2964), + [anon_sym_ABSTRACT] = ACTIONS(2964), + [anon_sym_Break] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2964), + [anon_sym_BREAK] = ACTIONS(2964), + [anon_sym_Case] = ACTIONS(2964), + [anon_sym_case] = ACTIONS(2964), + [anon_sym_CASE] = ACTIONS(2964), + [anon_sym_Component] = ACTIONS(2964), + [anon_sym_component] = ACTIONS(2964), + [anon_sym_COMPONENT] = ACTIONS(2964), + [anon_sym_Continue] = ACTIONS(2964), + [anon_sym_continue] = ACTIONS(2964), + [anon_sym_CONTINUE] = ACTIONS(2964), + [anon_sym_Debugger] = ACTIONS(2964), + [anon_sym_debugger] = ACTIONS(2964), + [anon_sym_DEBUGGER] = ACTIONS(2964), + [anon_sym_Default] = ACTIONS(2964), + [anon_sym_default] = ACTIONS(2964), + [anon_sym_DEFAULT] = ACTIONS(2964), + [anon_sym_Do] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_DO] = ACTIONS(2964), + [anon_sym_Final] = ACTIONS(2964), + [anon_sym_final] = ACTIONS(2964), + [anon_sym_FINAL] = ACTIONS(2964), + [anon_sym_For] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_FOR] = ACTIONS(2964), + [anon_sym_Function] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_FUNCTION] = ACTIONS(2964), + [anon_sym_If] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_IF] = ACTIONS(2964), + [anon_sym_Import] = ACTIONS(2964), + [anon_sym_import] = ACTIONS(2964), + [anon_sym_IMPORT] = ACTIONS(2964), + [anon_sym_Include] = ACTIONS(2964), + [anon_sym_include] = ACTIONS(2964), + [anon_sym_INCLUDE] = ACTIONS(2964), + [anon_sym_Interface] = ACTIONS(2964), + [anon_sym_interface] = ACTIONS(2964), + [anon_sym_INTERFACE] = ACTIONS(2964), + [anon_sym_New] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_NEW] = ACTIONS(2964), + [anon_sym_Package] = ACTIONS(2964), + [anon_sym_package] = ACTIONS(2964), + [anon_sym_PACKAGE] = ACTIONS(2964), + [anon_sym_Private] = ACTIONS(2964), + [anon_sym_private] = ACTIONS(2964), + [anon_sym_PRIVATE] = ACTIONS(2964), + [anon_sym_Property] = ACTIONS(2964), + [anon_sym_property] = ACTIONS(2964), + [anon_sym_PROPERTY] = ACTIONS(2964), + [anon_sym_Public] = ACTIONS(2964), + [anon_sym_public] = ACTIONS(2964), + [anon_sym_PUBLIC] = ACTIONS(2964), + [anon_sym_Remote] = ACTIONS(2964), + [anon_sym_remote] = ACTIONS(2964), + [anon_sym_REMOTE] = ACTIONS(2964), + [anon_sym_Return] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_RETURN] = ACTIONS(2964), + [anon_sym_Static] = ACTIONS(2964), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_STATIC] = ACTIONS(2964), + [anon_sym_Switch] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2964), + [anon_sym_SWITCH] = ACTIONS(2964), + [anon_sym_Throw] = ACTIONS(2964), + [anon_sym_throw] = ACTIONS(2964), + [anon_sym_THROW] = ACTIONS(2964), + [anon_sym_Try] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_TRY] = ACTIONS(2964), + [anon_sym_Var] = ACTIONS(2964), + [anon_sym_var] = ACTIONS(2964), + [anon_sym_VAR] = ACTIONS(2964), + [anon_sym_While] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_WHILE] = ACTIONS(2964), + [anon_sym_With] = ACTIONS(2964), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_WITH] = ACTIONS(2964), + [sym_cf_comment] = ACTIONS(2962), + [sym__java_block_open] = ACTIONS(2962), + [sym__static_type_prefix] = ACTIONS(2962), }, - [STATE(853)] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_Query] = ACTIONS(2902), - [anon_sym_query] = ACTIONS(2902), - [anon_sym_QUERY] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [aux_sym_unary_operator_token1] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2902), - [aux_sym_number_token2] = ACTIONS(2900), - [anon_sym_This] = ACTIONS(2902), - [anon_sym_this] = ACTIONS(2902), - [anon_sym_THIS] = ACTIONS(2902), - [anon_sym_Super] = ACTIONS(2902), - [anon_sym_super] = ACTIONS(2902), - [anon_sym_SUPER] = ACTIONS(2902), - [anon_sym_True] = ACTIONS(2902), - [anon_sym_true] = ACTIONS(2902), - [anon_sym_TRUE] = ACTIONS(2902), - [anon_sym_False] = ACTIONS(2902), - [anon_sym_false] = ACTIONS(2902), - [anon_sym_FALSE] = ACTIONS(2902), - [anon_sym_Null] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2902), - [anon_sym_NULL] = ACTIONS(2902), - [anon_sym_Undefined] = ACTIONS(2902), - [anon_sym_undefined] = ACTIONS(2902), - [anon_sym_UNDEFINED] = ACTIONS(2902), - [anon_sym_get] = ACTIONS(2902), - [anon_sym_set] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [sym_hash_empty] = ACTIONS(2900), - [anon_sym_export] = ACTIONS(2902), - [anon_sym_QueryExecute] = ACTIONS(2902), - [anon_sym_queryexecute] = ACTIONS(2902), - [anon_sym_QUERYEXECUTE] = ACTIONS(2902), - [anon_sym_queryExecute] = ACTIONS(2902), - [anon_sym_BQUOTE] = ACTIONS(2902), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2900), - [anon_sym_Abstract] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_ABSTRACT] = ACTIONS(2902), - [anon_sym_Break] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_BREAK] = ACTIONS(2902), - [anon_sym_Case] = ACTIONS(2902), - [anon_sym_case] = ACTIONS(2902), - [anon_sym_CASE] = ACTIONS(2902), - [anon_sym_Component] = ACTIONS(2902), - [anon_sym_component] = ACTIONS(2902), - [anon_sym_COMPONENT] = ACTIONS(2902), - [anon_sym_Continue] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_CONTINUE] = ACTIONS(2902), - [anon_sym_Debugger] = ACTIONS(2902), - [anon_sym_debugger] = ACTIONS(2902), - [anon_sym_DEBUGGER] = ACTIONS(2902), - [anon_sym_Default] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_DEFAULT] = ACTIONS(2902), - [anon_sym_Do] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_DO] = ACTIONS(2902), - [anon_sym_Final] = ACTIONS(2902), - [anon_sym_final] = ACTIONS(2902), - [anon_sym_FINAL] = ACTIONS(2902), - [anon_sym_For] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_FOR] = ACTIONS(2902), - [anon_sym_Function] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_FUNCTION] = ACTIONS(2902), - [anon_sym_If] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_IF] = ACTIONS(2902), - [anon_sym_Import] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_IMPORT] = ACTIONS(2902), - [anon_sym_Include] = ACTIONS(2902), - [anon_sym_include] = ACTIONS(2902), - [anon_sym_INCLUDE] = ACTIONS(2902), - [anon_sym_Interface] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_INTERFACE] = ACTIONS(2902), - [anon_sym_New] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_NEW] = ACTIONS(2902), - [anon_sym_Package] = ACTIONS(2902), - [anon_sym_package] = ACTIONS(2902), - [anon_sym_PACKAGE] = ACTIONS(2902), - [anon_sym_Private] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_PRIVATE] = ACTIONS(2902), - [anon_sym_Property] = ACTIONS(2902), - [anon_sym_property] = ACTIONS(2902), - [anon_sym_PROPERTY] = ACTIONS(2902), - [anon_sym_Public] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_PUBLIC] = ACTIONS(2902), - [anon_sym_Remote] = ACTIONS(2902), - [anon_sym_remote] = ACTIONS(2902), - [anon_sym_REMOTE] = ACTIONS(2902), - [anon_sym_Return] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_RETURN] = ACTIONS(2902), - [anon_sym_Static] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_STATIC] = ACTIONS(2902), - [anon_sym_Switch] = ACTIONS(2902), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_SWITCH] = ACTIONS(2902), - [anon_sym_Throw] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_THROW] = ACTIONS(2902), - [anon_sym_Try] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_TRY] = ACTIONS(2902), - [anon_sym_Var] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [anon_sym_VAR] = ACTIONS(2902), - [anon_sym_While] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_WHILE] = ACTIONS(2902), - [anon_sym_With] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2902), - [anon_sym_WITH] = ACTIONS(2902), - [sym_cf_comment] = ACTIONS(2900), - [sym__java_block_open] = ACTIONS(2900), - [sym__static_type_prefix] = ACTIONS(2900), + [STATE(905)] = { + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_Query] = ACTIONS(2968), + [anon_sym_query] = ACTIONS(2968), + [anon_sym_QUERY] = ACTIONS(2968), + [anon_sym_PLUS] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_SLASH] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_unary_operator_token1] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_SQUOTE] = ACTIONS(2966), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2968), + [aux_sym_number_token2] = ACTIONS(2966), + [anon_sym_This] = ACTIONS(2968), + [anon_sym_this] = ACTIONS(2968), + [anon_sym_THIS] = ACTIONS(2968), + [anon_sym_Super] = ACTIONS(2968), + [anon_sym_super] = ACTIONS(2968), + [anon_sym_SUPER] = ACTIONS(2968), + [anon_sym_True] = ACTIONS(2968), + [anon_sym_true] = ACTIONS(2968), + [anon_sym_TRUE] = ACTIONS(2968), + [anon_sym_False] = ACTIONS(2968), + [anon_sym_false] = ACTIONS(2968), + [anon_sym_FALSE] = ACTIONS(2968), + [anon_sym_Null] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2968), + [anon_sym_NULL] = ACTIONS(2968), + [anon_sym_Undefined] = ACTIONS(2968), + [anon_sym_undefined] = ACTIONS(2968), + [anon_sym_UNDEFINED] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), + [anon_sym_POUND] = ACTIONS(2968), + [sym_hash_empty] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2968), + [anon_sym_QueryExecute] = ACTIONS(2968), + [anon_sym_queryexecute] = ACTIONS(2968), + [anon_sym_QUERYEXECUTE] = ACTIONS(2968), + [anon_sym_queryExecute] = ACTIONS(2968), + [anon_sym_BQUOTE] = ACTIONS(2968), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2966), + [anon_sym_Abstract] = ACTIONS(2968), + [anon_sym_abstract] = ACTIONS(2968), + [anon_sym_ABSTRACT] = ACTIONS(2968), + [anon_sym_Break] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_BREAK] = ACTIONS(2968), + [anon_sym_Case] = ACTIONS(2968), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_CASE] = ACTIONS(2968), + [anon_sym_Component] = ACTIONS(2968), + [anon_sym_component] = ACTIONS(2968), + [anon_sym_COMPONENT] = ACTIONS(2968), + [anon_sym_Continue] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_CONTINUE] = ACTIONS(2968), + [anon_sym_Debugger] = ACTIONS(2968), + [anon_sym_debugger] = ACTIONS(2968), + [anon_sym_DEBUGGER] = ACTIONS(2968), + [anon_sym_Default] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2968), + [anon_sym_DEFAULT] = ACTIONS(2968), + [anon_sym_Do] = ACTIONS(2968), + [anon_sym_do] = ACTIONS(2968), + [anon_sym_DO] = ACTIONS(2968), + [anon_sym_Final] = ACTIONS(2968), + [anon_sym_final] = ACTIONS(2968), + [anon_sym_FINAL] = ACTIONS(2968), + [anon_sym_For] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2968), + [anon_sym_FOR] = ACTIONS(2968), + [anon_sym_Function] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2968), + [anon_sym_FUNCTION] = ACTIONS(2968), + [anon_sym_If] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_IF] = ACTIONS(2968), + [anon_sym_Import] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(2968), + [anon_sym_IMPORT] = ACTIONS(2968), + [anon_sym_Include] = ACTIONS(2968), + [anon_sym_include] = ACTIONS(2968), + [anon_sym_INCLUDE] = ACTIONS(2968), + [anon_sym_Interface] = ACTIONS(2968), + [anon_sym_interface] = ACTIONS(2968), + [anon_sym_INTERFACE] = ACTIONS(2968), + [anon_sym_New] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2968), + [anon_sym_NEW] = ACTIONS(2968), + [anon_sym_Package] = ACTIONS(2968), + [anon_sym_package] = ACTIONS(2968), + [anon_sym_PACKAGE] = ACTIONS(2968), + [anon_sym_Private] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_PRIVATE] = ACTIONS(2968), + [anon_sym_Property] = ACTIONS(2968), + [anon_sym_property] = ACTIONS(2968), + [anon_sym_PROPERTY] = ACTIONS(2968), + [anon_sym_Public] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_PUBLIC] = ACTIONS(2968), + [anon_sym_Remote] = ACTIONS(2968), + [anon_sym_remote] = ACTIONS(2968), + [anon_sym_REMOTE] = ACTIONS(2968), + [anon_sym_Return] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_RETURN] = ACTIONS(2968), + [anon_sym_Static] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_STATIC] = ACTIONS(2968), + [anon_sym_Switch] = ACTIONS(2968), + [anon_sym_switch] = ACTIONS(2968), + [anon_sym_SWITCH] = ACTIONS(2968), + [anon_sym_Throw] = ACTIONS(2968), + [anon_sym_throw] = ACTIONS(2968), + [anon_sym_THROW] = ACTIONS(2968), + [anon_sym_Try] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2968), + [anon_sym_TRY] = ACTIONS(2968), + [anon_sym_Var] = ACTIONS(2968), + [anon_sym_var] = ACTIONS(2968), + [anon_sym_VAR] = ACTIONS(2968), + [anon_sym_While] = ACTIONS(2968), + [anon_sym_while] = ACTIONS(2968), + [anon_sym_WHILE] = ACTIONS(2968), + [anon_sym_With] = ACTIONS(2968), + [anon_sym_with] = ACTIONS(2968), + [anon_sym_WITH] = ACTIONS(2968), + [sym_cf_comment] = ACTIONS(2966), + [sym__java_block_open] = ACTIONS(2966), + [sym__static_type_prefix] = ACTIONS(2966), }, - [STATE(854)] = { - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_Query] = ACTIONS(2724), - [anon_sym_query] = ACTIONS(2724), - [anon_sym_QUERY] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2722), - [aux_sym_unary_operator_token1] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_SQUOTE] = ACTIONS(2722), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2724), - [aux_sym_number_token2] = ACTIONS(2722), - [anon_sym_This] = ACTIONS(2724), - [anon_sym_this] = ACTIONS(2724), - [anon_sym_THIS] = ACTIONS(2724), - [anon_sym_Super] = ACTIONS(2724), - [anon_sym_super] = ACTIONS(2724), - [anon_sym_SUPER] = ACTIONS(2724), - [anon_sym_True] = ACTIONS(2724), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_TRUE] = ACTIONS(2724), - [anon_sym_False] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [anon_sym_FALSE] = ACTIONS(2724), - [anon_sym_Null] = ACTIONS(2724), - [anon_sym_null] = ACTIONS(2724), - [anon_sym_NULL] = ACTIONS(2724), - [anon_sym_Undefined] = ACTIONS(2724), - [anon_sym_undefined] = ACTIONS(2724), - [anon_sym_UNDEFINED] = ACTIONS(2724), - [anon_sym_get] = ACTIONS(2724), - [anon_sym_set] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2724), - [sym_hash_empty] = ACTIONS(2722), - [anon_sym_export] = ACTIONS(2724), - [anon_sym_QueryExecute] = ACTIONS(2724), - [anon_sym_queryexecute] = ACTIONS(2724), - [anon_sym_QUERYEXECUTE] = ACTIONS(2724), - [anon_sym_queryExecute] = ACTIONS(2724), - [anon_sym_BQUOTE] = ACTIONS(2724), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2722), - [anon_sym_Abstract] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_ABSTRACT] = ACTIONS(2724), - [anon_sym_Break] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_BREAK] = ACTIONS(2724), - [anon_sym_Case] = ACTIONS(2724), - [anon_sym_case] = ACTIONS(2724), - [anon_sym_CASE] = ACTIONS(2724), - [anon_sym_Component] = ACTIONS(2724), - [anon_sym_component] = ACTIONS(2724), - [anon_sym_COMPONENT] = ACTIONS(2724), - [anon_sym_Continue] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_CONTINUE] = ACTIONS(2724), - [anon_sym_Debugger] = ACTIONS(2724), - [anon_sym_debugger] = ACTIONS(2724), - [anon_sym_DEBUGGER] = ACTIONS(2724), - [anon_sym_Default] = ACTIONS(2724), - [anon_sym_default] = ACTIONS(2724), - [anon_sym_DEFAULT] = ACTIONS(2724), - [anon_sym_Do] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_DO] = ACTIONS(2724), - [anon_sym_Final] = ACTIONS(2724), - [anon_sym_final] = ACTIONS(2724), - [anon_sym_FINAL] = ACTIONS(2724), - [anon_sym_For] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_FOR] = ACTIONS(2724), - [anon_sym_Function] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_FUNCTION] = ACTIONS(2724), - [anon_sym_If] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_IF] = ACTIONS(2724), - [anon_sym_Import] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_IMPORT] = ACTIONS(2724), - [anon_sym_Include] = ACTIONS(2724), - [anon_sym_include] = ACTIONS(2724), - [anon_sym_INCLUDE] = ACTIONS(2724), - [anon_sym_Interface] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_INTERFACE] = ACTIONS(2724), - [anon_sym_New] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_NEW] = ACTIONS(2724), - [anon_sym_Package] = ACTIONS(2724), - [anon_sym_package] = ACTIONS(2724), - [anon_sym_PACKAGE] = ACTIONS(2724), - [anon_sym_Private] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_PRIVATE] = ACTIONS(2724), - [anon_sym_Property] = ACTIONS(2724), - [anon_sym_property] = ACTIONS(2724), - [anon_sym_PROPERTY] = ACTIONS(2724), - [anon_sym_Public] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_PUBLIC] = ACTIONS(2724), - [anon_sym_Remote] = ACTIONS(2724), - [anon_sym_remote] = ACTIONS(2724), - [anon_sym_REMOTE] = ACTIONS(2724), - [anon_sym_Return] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_RETURN] = ACTIONS(2724), - [anon_sym_Static] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_STATIC] = ACTIONS(2724), - [anon_sym_Switch] = ACTIONS(2724), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_SWITCH] = ACTIONS(2724), - [anon_sym_Throw] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_THROW] = ACTIONS(2724), - [anon_sym_Try] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_TRY] = ACTIONS(2724), - [anon_sym_Var] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [anon_sym_VAR] = ACTIONS(2724), - [anon_sym_While] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_WHILE] = ACTIONS(2724), - [anon_sym_With] = ACTIONS(2724), - [anon_sym_with] = ACTIONS(2724), - [anon_sym_WITH] = ACTIONS(2724), - [sym_cf_comment] = ACTIONS(2722), - [sym__java_block_open] = ACTIONS(2722), - [sym__static_type_prefix] = ACTIONS(2722), + [STATE(906)] = { + [ts_builtin_sym_end] = ACTIONS(2970), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_Query] = ACTIONS(2972), + [anon_sym_query] = ACTIONS(2972), + [anon_sym_QUERY] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2970), + [aux_sym_unary_operator_token1] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2970), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2972), + [aux_sym_number_token2] = ACTIONS(2970), + [anon_sym_This] = ACTIONS(2972), + [anon_sym_this] = ACTIONS(2972), + [anon_sym_THIS] = ACTIONS(2972), + [anon_sym_Super] = ACTIONS(2972), + [anon_sym_super] = ACTIONS(2972), + [anon_sym_SUPER] = ACTIONS(2972), + [anon_sym_True] = ACTIONS(2972), + [anon_sym_true] = ACTIONS(2972), + [anon_sym_TRUE] = ACTIONS(2972), + [anon_sym_False] = ACTIONS(2972), + [anon_sym_false] = ACTIONS(2972), + [anon_sym_FALSE] = ACTIONS(2972), + [anon_sym_Null] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2972), + [anon_sym_NULL] = ACTIONS(2972), + [anon_sym_Undefined] = ACTIONS(2972), + [anon_sym_undefined] = ACTIONS(2972), + [anon_sym_UNDEFINED] = ACTIONS(2972), + [anon_sym_get] = ACTIONS(2972), + [anon_sym_set] = ACTIONS(2972), + [anon_sym_POUND] = ACTIONS(2972), + [sym_hash_empty] = ACTIONS(2970), + [anon_sym_export] = ACTIONS(2972), + [anon_sym_QueryExecute] = ACTIONS(2972), + [anon_sym_queryexecute] = ACTIONS(2972), + [anon_sym_QUERYEXECUTE] = ACTIONS(2972), + [anon_sym_queryExecute] = ACTIONS(2972), + [anon_sym_BQUOTE] = ACTIONS(2972), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2970), + [anon_sym_Abstract] = ACTIONS(2972), + [anon_sym_abstract] = ACTIONS(2972), + [anon_sym_ABSTRACT] = ACTIONS(2972), + [anon_sym_Break] = ACTIONS(2972), + [anon_sym_break] = ACTIONS(2972), + [anon_sym_BREAK] = ACTIONS(2972), + [anon_sym_Case] = ACTIONS(2972), + [anon_sym_case] = ACTIONS(2972), + [anon_sym_CASE] = ACTIONS(2972), + [anon_sym_Component] = ACTIONS(2972), + [anon_sym_component] = ACTIONS(2972), + [anon_sym_COMPONENT] = ACTIONS(2972), + [anon_sym_Continue] = ACTIONS(2972), + [anon_sym_continue] = ACTIONS(2972), + [anon_sym_CONTINUE] = ACTIONS(2972), + [anon_sym_Debugger] = ACTIONS(2972), + [anon_sym_debugger] = ACTIONS(2972), + [anon_sym_DEBUGGER] = ACTIONS(2972), + [anon_sym_Default] = ACTIONS(2972), + [anon_sym_default] = ACTIONS(2972), + [anon_sym_DEFAULT] = ACTIONS(2972), + [anon_sym_Do] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2972), + [anon_sym_DO] = ACTIONS(2972), + [anon_sym_Final] = ACTIONS(2972), + [anon_sym_final] = ACTIONS(2972), + [anon_sym_FINAL] = ACTIONS(2972), + [anon_sym_For] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2972), + [anon_sym_FOR] = ACTIONS(2972), + [anon_sym_Function] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2972), + [anon_sym_FUNCTION] = ACTIONS(2972), + [anon_sym_If] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_IF] = ACTIONS(2972), + [anon_sym_Import] = ACTIONS(2972), + [anon_sym_import] = ACTIONS(2972), + [anon_sym_IMPORT] = ACTIONS(2972), + [anon_sym_Include] = ACTIONS(2972), + [anon_sym_include] = ACTIONS(2972), + [anon_sym_INCLUDE] = ACTIONS(2972), + [anon_sym_Interface] = ACTIONS(2972), + [anon_sym_interface] = ACTIONS(2972), + [anon_sym_INTERFACE] = ACTIONS(2972), + [anon_sym_New] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2972), + [anon_sym_NEW] = ACTIONS(2972), + [anon_sym_Package] = ACTIONS(2972), + [anon_sym_package] = ACTIONS(2972), + [anon_sym_PACKAGE] = ACTIONS(2972), + [anon_sym_Private] = ACTIONS(2972), + [anon_sym_private] = ACTIONS(2972), + [anon_sym_PRIVATE] = ACTIONS(2972), + [anon_sym_Property] = ACTIONS(2972), + [anon_sym_property] = ACTIONS(2972), + [anon_sym_PROPERTY] = ACTIONS(2972), + [anon_sym_Public] = ACTIONS(2972), + [anon_sym_public] = ACTIONS(2972), + [anon_sym_PUBLIC] = ACTIONS(2972), + [anon_sym_Remote] = ACTIONS(2972), + [anon_sym_remote] = ACTIONS(2972), + [anon_sym_REMOTE] = ACTIONS(2972), + [anon_sym_Return] = ACTIONS(2972), + [anon_sym_return] = ACTIONS(2972), + [anon_sym_RETURN] = ACTIONS(2972), + [anon_sym_Static] = ACTIONS(2972), + [anon_sym_static] = ACTIONS(2972), + [anon_sym_STATIC] = ACTIONS(2972), + [anon_sym_Switch] = ACTIONS(2972), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_SWITCH] = ACTIONS(2972), + [anon_sym_Throw] = ACTIONS(2972), + [anon_sym_throw] = ACTIONS(2972), + [anon_sym_THROW] = ACTIONS(2972), + [anon_sym_Try] = ACTIONS(2972), + [anon_sym_try] = ACTIONS(2972), + [anon_sym_TRY] = ACTIONS(2972), + [anon_sym_Var] = ACTIONS(2972), + [anon_sym_var] = ACTIONS(2972), + [anon_sym_VAR] = ACTIONS(2972), + [anon_sym_While] = ACTIONS(2972), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_WHILE] = ACTIONS(2972), + [anon_sym_With] = ACTIONS(2972), + [anon_sym_with] = ACTIONS(2972), + [anon_sym_WITH] = ACTIONS(2972), + [sym_cf_comment] = ACTIONS(2970), + [sym__java_block_open] = ACTIONS(2970), + [sym__static_type_prefix] = ACTIONS(2970), }, - [STATE(855)] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_Query] = ACTIONS(2906), - [anon_sym_query] = ACTIONS(2906), - [anon_sym_QUERY] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [aux_sym_unary_operator_token1] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2904), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2906), - [aux_sym_number_token2] = ACTIONS(2904), - [anon_sym_This] = ACTIONS(2906), - [anon_sym_this] = ACTIONS(2906), - [anon_sym_THIS] = ACTIONS(2906), - [anon_sym_Super] = ACTIONS(2906), - [anon_sym_super] = ACTIONS(2906), - [anon_sym_SUPER] = ACTIONS(2906), - [anon_sym_True] = ACTIONS(2906), - [anon_sym_true] = ACTIONS(2906), - [anon_sym_TRUE] = ACTIONS(2906), - [anon_sym_False] = ACTIONS(2906), - [anon_sym_false] = ACTIONS(2906), - [anon_sym_FALSE] = ACTIONS(2906), - [anon_sym_Null] = ACTIONS(2906), - [anon_sym_null] = ACTIONS(2906), - [anon_sym_NULL] = ACTIONS(2906), - [anon_sym_Undefined] = ACTIONS(2906), - [anon_sym_undefined] = ACTIONS(2906), - [anon_sym_UNDEFINED] = ACTIONS(2906), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [sym_hash_empty] = ACTIONS(2904), - [anon_sym_export] = ACTIONS(2906), - [anon_sym_QueryExecute] = ACTIONS(2906), - [anon_sym_queryexecute] = ACTIONS(2906), - [anon_sym_QUERYEXECUTE] = ACTIONS(2906), - [anon_sym_queryExecute] = ACTIONS(2906), - [anon_sym_BQUOTE] = ACTIONS(2906), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2904), - [anon_sym_Abstract] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_ABSTRACT] = ACTIONS(2906), - [anon_sym_Break] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_BREAK] = ACTIONS(2906), - [anon_sym_Case] = ACTIONS(2906), - [anon_sym_case] = ACTIONS(2906), - [anon_sym_CASE] = ACTIONS(2906), - [anon_sym_Component] = ACTIONS(2906), - [anon_sym_component] = ACTIONS(2906), - [anon_sym_COMPONENT] = ACTIONS(2906), - [anon_sym_Continue] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_CONTINUE] = ACTIONS(2906), - [anon_sym_Debugger] = ACTIONS(2906), - [anon_sym_debugger] = ACTIONS(2906), - [anon_sym_DEBUGGER] = ACTIONS(2906), - [anon_sym_Default] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_DEFAULT] = ACTIONS(2906), - [anon_sym_Do] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_DO] = ACTIONS(2906), - [anon_sym_Final] = ACTIONS(2906), - [anon_sym_final] = ACTIONS(2906), - [anon_sym_FINAL] = ACTIONS(2906), - [anon_sym_For] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_FOR] = ACTIONS(2906), - [anon_sym_Function] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_FUNCTION] = ACTIONS(2906), - [anon_sym_If] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_IF] = ACTIONS(2906), - [anon_sym_Import] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_IMPORT] = ACTIONS(2906), - [anon_sym_Include] = ACTIONS(2906), - [anon_sym_include] = ACTIONS(2906), - [anon_sym_INCLUDE] = ACTIONS(2906), - [anon_sym_Interface] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_INTERFACE] = ACTIONS(2906), - [anon_sym_New] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_NEW] = ACTIONS(2906), - [anon_sym_Package] = ACTIONS(2906), - [anon_sym_package] = ACTIONS(2906), - [anon_sym_PACKAGE] = ACTIONS(2906), - [anon_sym_Private] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_PRIVATE] = ACTIONS(2906), - [anon_sym_Property] = ACTIONS(2906), - [anon_sym_property] = ACTIONS(2906), - [anon_sym_PROPERTY] = ACTIONS(2906), - [anon_sym_Public] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_PUBLIC] = ACTIONS(2906), - [anon_sym_Remote] = ACTIONS(2906), - [anon_sym_remote] = ACTIONS(2906), - [anon_sym_REMOTE] = ACTIONS(2906), - [anon_sym_Return] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_RETURN] = ACTIONS(2906), - [anon_sym_Static] = ACTIONS(2906), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_STATIC] = ACTIONS(2906), - [anon_sym_Switch] = ACTIONS(2906), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_SWITCH] = ACTIONS(2906), - [anon_sym_Throw] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_THROW] = ACTIONS(2906), - [anon_sym_Try] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_TRY] = ACTIONS(2906), - [anon_sym_Var] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [anon_sym_VAR] = ACTIONS(2906), - [anon_sym_While] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_WHILE] = ACTIONS(2906), - [anon_sym_With] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2906), - [anon_sym_WITH] = ACTIONS(2906), - [sym_cf_comment] = ACTIONS(2904), - [sym__java_block_open] = ACTIONS(2904), - [sym__static_type_prefix] = ACTIONS(2904), + [STATE(907)] = { + [ts_builtin_sym_end] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_Query] = ACTIONS(3080), + [anon_sym_query] = ACTIONS(3080), + [anon_sym_QUERY] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [aux_sym_unary_operator_token1] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3080), + [aux_sym_number_token2] = ACTIONS(3078), + [anon_sym_This] = ACTIONS(3080), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_THIS] = ACTIONS(3080), + [anon_sym_Super] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_SUPER] = ACTIONS(3080), + [anon_sym_True] = ACTIONS(3080), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_TRUE] = ACTIONS(3080), + [anon_sym_False] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_FALSE] = ACTIONS(3080), + [anon_sym_Null] = ACTIONS(3080), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_NULL] = ACTIONS(3080), + [anon_sym_Undefined] = ACTIONS(3080), + [anon_sym_undefined] = ACTIONS(3080), + [anon_sym_UNDEFINED] = ACTIONS(3080), + [anon_sym_get] = ACTIONS(3080), + [anon_sym_set] = ACTIONS(3080), + [anon_sym_POUND] = ACTIONS(3080), + [sym_hash_empty] = ACTIONS(3078), + [anon_sym_export] = ACTIONS(3080), + [anon_sym_QueryExecute] = ACTIONS(3080), + [anon_sym_queryexecute] = ACTIONS(3080), + [anon_sym_QUERYEXECUTE] = ACTIONS(3080), + [anon_sym_queryExecute] = ACTIONS(3080), + [anon_sym_BQUOTE] = ACTIONS(3080), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3078), + [anon_sym_Abstract] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_ABSTRACT] = ACTIONS(3080), + [anon_sym_Break] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_BREAK] = ACTIONS(3080), + [anon_sym_Case] = ACTIONS(3080), + [anon_sym_case] = ACTIONS(3080), + [anon_sym_CASE] = ACTIONS(3080), + [anon_sym_Component] = ACTIONS(3080), + [anon_sym_component] = ACTIONS(3080), + [anon_sym_COMPONENT] = ACTIONS(3080), + [anon_sym_Continue] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_CONTINUE] = ACTIONS(3080), + [anon_sym_Debugger] = ACTIONS(3080), + [anon_sym_debugger] = ACTIONS(3080), + [anon_sym_DEBUGGER] = ACTIONS(3080), + [anon_sym_Default] = ACTIONS(3080), + [anon_sym_default] = ACTIONS(3080), + [anon_sym_DEFAULT] = ACTIONS(3080), + [anon_sym_Do] = ACTIONS(3080), + [anon_sym_do] = ACTIONS(3080), + [anon_sym_DO] = ACTIONS(3080), + [anon_sym_Final] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_FINAL] = ACTIONS(3080), + [anon_sym_For] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_FOR] = ACTIONS(3080), + [anon_sym_Function] = ACTIONS(3080), + [anon_sym_function] = ACTIONS(3080), + [anon_sym_FUNCTION] = ACTIONS(3080), + [anon_sym_If] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_IF] = ACTIONS(3080), + [anon_sym_Import] = ACTIONS(3080), + [anon_sym_import] = ACTIONS(3080), + [anon_sym_IMPORT] = ACTIONS(3080), + [anon_sym_Include] = ACTIONS(3080), + [anon_sym_include] = ACTIONS(3080), + [anon_sym_INCLUDE] = ACTIONS(3080), + [anon_sym_Interface] = ACTIONS(3080), + [anon_sym_interface] = ACTIONS(3080), + [anon_sym_INTERFACE] = ACTIONS(3080), + [anon_sym_New] = ACTIONS(3080), + [anon_sym_new] = ACTIONS(3080), + [anon_sym_NEW] = ACTIONS(3080), + [anon_sym_Package] = ACTIONS(3080), + [anon_sym_package] = ACTIONS(3080), + [anon_sym_PACKAGE] = ACTIONS(3080), + [anon_sym_Private] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_PRIVATE] = ACTIONS(3080), + [anon_sym_Property] = ACTIONS(3080), + [anon_sym_property] = ACTIONS(3080), + [anon_sym_PROPERTY] = ACTIONS(3080), + [anon_sym_Public] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_PUBLIC] = ACTIONS(3080), + [anon_sym_Remote] = ACTIONS(3080), + [anon_sym_remote] = ACTIONS(3080), + [anon_sym_REMOTE] = ACTIONS(3080), + [anon_sym_Return] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_RETURN] = ACTIONS(3080), + [anon_sym_Static] = ACTIONS(3080), + [anon_sym_static] = ACTIONS(3080), + [anon_sym_STATIC] = ACTIONS(3080), + [anon_sym_Switch] = ACTIONS(3080), + [anon_sym_switch] = ACTIONS(3080), + [anon_sym_SWITCH] = ACTIONS(3080), + [anon_sym_Throw] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_THROW] = ACTIONS(3080), + [anon_sym_Try] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_TRY] = ACTIONS(3080), + [anon_sym_Var] = ACTIONS(3080), + [anon_sym_var] = ACTIONS(3080), + [anon_sym_VAR] = ACTIONS(3080), + [anon_sym_While] = ACTIONS(3080), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_WHILE] = ACTIONS(3080), + [anon_sym_With] = ACTIONS(3080), + [anon_sym_with] = ACTIONS(3080), + [anon_sym_WITH] = ACTIONS(3080), + [sym_cf_comment] = ACTIONS(3078), + [sym__java_block_open] = ACTIONS(3078), + [sym__static_type_prefix] = ACTIONS(3078), }, - [STATE(856)] = { - [ts_builtin_sym_end] = ACTIONS(3012), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_Query] = ACTIONS(3014), - [anon_sym_query] = ACTIONS(3014), - [anon_sym_QUERY] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_unary_operator_token1] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_DQUOTE] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3014), - [aux_sym_number_token2] = ACTIONS(3012), - [anon_sym_This] = ACTIONS(3014), - [anon_sym_this] = ACTIONS(3014), - [anon_sym_THIS] = ACTIONS(3014), - [anon_sym_Super] = ACTIONS(3014), - [anon_sym_super] = ACTIONS(3014), - [anon_sym_SUPER] = ACTIONS(3014), - [anon_sym_True] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3014), - [anon_sym_TRUE] = ACTIONS(3014), - [anon_sym_False] = ACTIONS(3014), - [anon_sym_false] = ACTIONS(3014), - [anon_sym_FALSE] = ACTIONS(3014), - [anon_sym_Null] = ACTIONS(3014), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_NULL] = ACTIONS(3014), - [anon_sym_Undefined] = ACTIONS(3014), - [anon_sym_undefined] = ACTIONS(3014), - [anon_sym_UNDEFINED] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(3014), - [anon_sym_set] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [sym_hash_empty] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3014), - [anon_sym_QueryExecute] = ACTIONS(3014), - [anon_sym_queryexecute] = ACTIONS(3014), - [anon_sym_QUERYEXECUTE] = ACTIONS(3014), - [anon_sym_queryExecute] = ACTIONS(3014), - [anon_sym_BQUOTE] = ACTIONS(3014), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3012), - [anon_sym_Abstract] = ACTIONS(3014), - [anon_sym_abstract] = ACTIONS(3014), - [anon_sym_ABSTRACT] = ACTIONS(3014), - [anon_sym_Break] = ACTIONS(3014), - [anon_sym_break] = ACTIONS(3014), - [anon_sym_BREAK] = ACTIONS(3014), - [anon_sym_Case] = ACTIONS(3014), - [anon_sym_case] = ACTIONS(3014), - [anon_sym_CASE] = ACTIONS(3014), - [anon_sym_Component] = ACTIONS(3014), - [anon_sym_component] = ACTIONS(3014), - [anon_sym_COMPONENT] = ACTIONS(3014), - [anon_sym_Continue] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(3014), - [anon_sym_CONTINUE] = ACTIONS(3014), - [anon_sym_Debugger] = ACTIONS(3014), - [anon_sym_debugger] = ACTIONS(3014), - [anon_sym_DEBUGGER] = ACTIONS(3014), - [anon_sym_Default] = ACTIONS(3014), - [anon_sym_default] = ACTIONS(3014), - [anon_sym_DEFAULT] = ACTIONS(3014), - [anon_sym_Do] = ACTIONS(3014), - [anon_sym_do] = ACTIONS(3014), - [anon_sym_DO] = ACTIONS(3014), - [anon_sym_Final] = ACTIONS(3014), - [anon_sym_final] = ACTIONS(3014), - [anon_sym_FINAL] = ACTIONS(3014), - [anon_sym_For] = ACTIONS(3014), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_FOR] = ACTIONS(3014), - [anon_sym_Function] = ACTIONS(3014), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_FUNCTION] = ACTIONS(3014), - [anon_sym_If] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_IF] = ACTIONS(3014), - [anon_sym_Import] = ACTIONS(3014), - [anon_sym_import] = ACTIONS(3014), - [anon_sym_IMPORT] = ACTIONS(3014), - [anon_sym_Include] = ACTIONS(3014), - [anon_sym_include] = ACTIONS(3014), - [anon_sym_INCLUDE] = ACTIONS(3014), - [anon_sym_Interface] = ACTIONS(3014), - [anon_sym_interface] = ACTIONS(3014), - [anon_sym_INTERFACE] = ACTIONS(3014), - [anon_sym_New] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_NEW] = ACTIONS(3014), - [anon_sym_Package] = ACTIONS(3014), - [anon_sym_package] = ACTIONS(3014), - [anon_sym_PACKAGE] = ACTIONS(3014), - [anon_sym_Private] = ACTIONS(3014), - [anon_sym_private] = ACTIONS(3014), - [anon_sym_PRIVATE] = ACTIONS(3014), - [anon_sym_Property] = ACTIONS(3014), - [anon_sym_property] = ACTIONS(3014), - [anon_sym_PROPERTY] = ACTIONS(3014), - [anon_sym_Public] = ACTIONS(3014), - [anon_sym_public] = ACTIONS(3014), - [anon_sym_PUBLIC] = ACTIONS(3014), - [anon_sym_Remote] = ACTIONS(3014), - [anon_sym_remote] = ACTIONS(3014), - [anon_sym_REMOTE] = ACTIONS(3014), - [anon_sym_Return] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_RETURN] = ACTIONS(3014), - [anon_sym_Static] = ACTIONS(3014), - [anon_sym_static] = ACTIONS(3014), - [anon_sym_STATIC] = ACTIONS(3014), - [anon_sym_Switch] = ACTIONS(3014), - [anon_sym_switch] = ACTIONS(3014), - [anon_sym_SWITCH] = ACTIONS(3014), - [anon_sym_Throw] = ACTIONS(3014), - [anon_sym_throw] = ACTIONS(3014), - [anon_sym_THROW] = ACTIONS(3014), - [anon_sym_Try] = ACTIONS(3014), - [anon_sym_try] = ACTIONS(3014), - [anon_sym_TRY] = ACTIONS(3014), - [anon_sym_Var] = ACTIONS(3014), - [anon_sym_var] = ACTIONS(3014), - [anon_sym_VAR] = ACTIONS(3014), - [anon_sym_While] = ACTIONS(3014), - [anon_sym_while] = ACTIONS(3014), - [anon_sym_WHILE] = ACTIONS(3014), - [anon_sym_With] = ACTIONS(3014), - [anon_sym_with] = ACTIONS(3014), - [anon_sym_WITH] = ACTIONS(3014), - [sym_cf_comment] = ACTIONS(3012), - [sym__java_block_open] = ACTIONS(3012), - [sym__static_type_prefix] = ACTIONS(3012), + [STATE(908)] = { + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_Query] = ACTIONS(2980), + [anon_sym_query] = ACTIONS(2980), + [anon_sym_QUERY] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [aux_sym_unary_operator_token1] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2980), + [aux_sym_number_token2] = ACTIONS(2978), + [anon_sym_This] = ACTIONS(2980), + [anon_sym_this] = ACTIONS(2980), + [anon_sym_THIS] = ACTIONS(2980), + [anon_sym_Super] = ACTIONS(2980), + [anon_sym_super] = ACTIONS(2980), + [anon_sym_SUPER] = ACTIONS(2980), + [anon_sym_True] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2980), + [anon_sym_TRUE] = ACTIONS(2980), + [anon_sym_False] = ACTIONS(2980), + [anon_sym_false] = ACTIONS(2980), + [anon_sym_FALSE] = ACTIONS(2980), + [anon_sym_Null] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_Undefined] = ACTIONS(2980), + [anon_sym_undefined] = ACTIONS(2980), + [anon_sym_UNDEFINED] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [sym_hash_empty] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_QueryExecute] = ACTIONS(2980), + [anon_sym_queryexecute] = ACTIONS(2980), + [anon_sym_QUERYEXECUTE] = ACTIONS(2980), + [anon_sym_queryExecute] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2978), + [anon_sym_Abstract] = ACTIONS(2980), + [anon_sym_abstract] = ACTIONS(2980), + [anon_sym_ABSTRACT] = ACTIONS(2980), + [anon_sym_Break] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_BREAK] = ACTIONS(2980), + [anon_sym_Case] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_CASE] = ACTIONS(2980), + [anon_sym_Component] = ACTIONS(2980), + [anon_sym_component] = ACTIONS(2980), + [anon_sym_COMPONENT] = ACTIONS(2980), + [anon_sym_Continue] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_CONTINUE] = ACTIONS(2980), + [anon_sym_Debugger] = ACTIONS(2980), + [anon_sym_debugger] = ACTIONS(2980), + [anon_sym_DEBUGGER] = ACTIONS(2980), + [anon_sym_Default] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_DEFAULT] = ACTIONS(2980), + [anon_sym_Do] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_DO] = ACTIONS(2980), + [anon_sym_Final] = ACTIONS(2980), + [anon_sym_final] = ACTIONS(2980), + [anon_sym_FINAL] = ACTIONS(2980), + [anon_sym_For] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_FOR] = ACTIONS(2980), + [anon_sym_Function] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_FUNCTION] = ACTIONS(2980), + [anon_sym_If] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_IF] = ACTIONS(2980), + [anon_sym_Import] = ACTIONS(2980), + [anon_sym_import] = ACTIONS(2980), + [anon_sym_IMPORT] = ACTIONS(2980), + [anon_sym_Include] = ACTIONS(2980), + [anon_sym_include] = ACTIONS(2980), + [anon_sym_INCLUDE] = ACTIONS(2980), + [anon_sym_Interface] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_INTERFACE] = ACTIONS(2980), + [anon_sym_New] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_NEW] = ACTIONS(2980), + [anon_sym_Package] = ACTIONS(2980), + [anon_sym_package] = ACTIONS(2980), + [anon_sym_PACKAGE] = ACTIONS(2980), + [anon_sym_Private] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_PRIVATE] = ACTIONS(2980), + [anon_sym_Property] = ACTIONS(2980), + [anon_sym_property] = ACTIONS(2980), + [anon_sym_PROPERTY] = ACTIONS(2980), + [anon_sym_Public] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_PUBLIC] = ACTIONS(2980), + [anon_sym_Remote] = ACTIONS(2980), + [anon_sym_remote] = ACTIONS(2980), + [anon_sym_REMOTE] = ACTIONS(2980), + [anon_sym_Return] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_RETURN] = ACTIONS(2980), + [anon_sym_Static] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_STATIC] = ACTIONS(2980), + [anon_sym_Switch] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_SWITCH] = ACTIONS(2980), + [anon_sym_Throw] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_THROW] = ACTIONS(2980), + [anon_sym_Try] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_TRY] = ACTIONS(2980), + [anon_sym_Var] = ACTIONS(2980), + [anon_sym_var] = ACTIONS(2980), + [anon_sym_VAR] = ACTIONS(2980), + [anon_sym_While] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_WHILE] = ACTIONS(2980), + [anon_sym_With] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2980), + [anon_sym_WITH] = ACTIONS(2980), + [sym_cf_comment] = ACTIONS(2978), + [sym__java_block_open] = ACTIONS(2978), + [sym__static_type_prefix] = ACTIONS(2978), }, - [STATE(857)] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_Query] = ACTIONS(2910), - [anon_sym_query] = ACTIONS(2910), - [anon_sym_QUERY] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [aux_sym_unary_operator_token1] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_SQUOTE] = ACTIONS(2908), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2910), - [aux_sym_number_token2] = ACTIONS(2908), - [anon_sym_This] = ACTIONS(2910), - [anon_sym_this] = ACTIONS(2910), - [anon_sym_THIS] = ACTIONS(2910), - [anon_sym_Super] = ACTIONS(2910), - [anon_sym_super] = ACTIONS(2910), - [anon_sym_SUPER] = ACTIONS(2910), - [anon_sym_True] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2910), - [anon_sym_TRUE] = ACTIONS(2910), - [anon_sym_False] = ACTIONS(2910), - [anon_sym_false] = ACTIONS(2910), - [anon_sym_FALSE] = ACTIONS(2910), - [anon_sym_Null] = ACTIONS(2910), - [anon_sym_null] = ACTIONS(2910), - [anon_sym_NULL] = ACTIONS(2910), - [anon_sym_Undefined] = ACTIONS(2910), - [anon_sym_undefined] = ACTIONS(2910), - [anon_sym_UNDEFINED] = ACTIONS(2910), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [sym_hash_empty] = ACTIONS(2908), - [anon_sym_export] = ACTIONS(2910), - [anon_sym_QueryExecute] = ACTIONS(2910), - [anon_sym_queryexecute] = ACTIONS(2910), - [anon_sym_QUERYEXECUTE] = ACTIONS(2910), - [anon_sym_queryExecute] = ACTIONS(2910), - [anon_sym_BQUOTE] = ACTIONS(2910), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2908), - [anon_sym_Abstract] = ACTIONS(2910), - [anon_sym_abstract] = ACTIONS(2910), - [anon_sym_ABSTRACT] = ACTIONS(2910), - [anon_sym_Break] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_BREAK] = ACTIONS(2910), - [anon_sym_Case] = ACTIONS(2910), - [anon_sym_case] = ACTIONS(2910), - [anon_sym_CASE] = ACTIONS(2910), - [anon_sym_Component] = ACTIONS(2910), - [anon_sym_component] = ACTIONS(2910), - [anon_sym_COMPONENT] = ACTIONS(2910), - [anon_sym_Continue] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_CONTINUE] = ACTIONS(2910), - [anon_sym_Debugger] = ACTIONS(2910), - [anon_sym_debugger] = ACTIONS(2910), - [anon_sym_DEBUGGER] = ACTIONS(2910), - [anon_sym_Default] = ACTIONS(2910), - [anon_sym_default] = ACTIONS(2910), - [anon_sym_DEFAULT] = ACTIONS(2910), - [anon_sym_Do] = ACTIONS(2910), - [anon_sym_do] = ACTIONS(2910), - [anon_sym_DO] = ACTIONS(2910), - [anon_sym_Final] = ACTIONS(2910), - [anon_sym_final] = ACTIONS(2910), - [anon_sym_FINAL] = ACTIONS(2910), - [anon_sym_For] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_FOR] = ACTIONS(2910), - [anon_sym_Function] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2910), - [anon_sym_FUNCTION] = ACTIONS(2910), - [anon_sym_If] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_IF] = ACTIONS(2910), - [anon_sym_Import] = ACTIONS(2910), - [anon_sym_import] = ACTIONS(2910), - [anon_sym_IMPORT] = ACTIONS(2910), - [anon_sym_Include] = ACTIONS(2910), - [anon_sym_include] = ACTIONS(2910), - [anon_sym_INCLUDE] = ACTIONS(2910), - [anon_sym_Interface] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_INTERFACE] = ACTIONS(2910), - [anon_sym_New] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2910), - [anon_sym_NEW] = ACTIONS(2910), - [anon_sym_Package] = ACTIONS(2910), - [anon_sym_package] = ACTIONS(2910), - [anon_sym_PACKAGE] = ACTIONS(2910), - [anon_sym_Private] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_PRIVATE] = ACTIONS(2910), - [anon_sym_Property] = ACTIONS(2910), - [anon_sym_property] = ACTIONS(2910), - [anon_sym_PROPERTY] = ACTIONS(2910), - [anon_sym_Public] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_PUBLIC] = ACTIONS(2910), - [anon_sym_Remote] = ACTIONS(2910), - [anon_sym_remote] = ACTIONS(2910), - [anon_sym_REMOTE] = ACTIONS(2910), - [anon_sym_Return] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_RETURN] = ACTIONS(2910), - [anon_sym_Static] = ACTIONS(2910), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_STATIC] = ACTIONS(2910), - [anon_sym_Switch] = ACTIONS(2910), - [anon_sym_switch] = ACTIONS(2910), - [anon_sym_SWITCH] = ACTIONS(2910), - [anon_sym_Throw] = ACTIONS(2910), - [anon_sym_throw] = ACTIONS(2910), - [anon_sym_THROW] = ACTIONS(2910), - [anon_sym_Try] = ACTIONS(2910), - [anon_sym_try] = ACTIONS(2910), - [anon_sym_TRY] = ACTIONS(2910), - [anon_sym_Var] = ACTIONS(2910), - [anon_sym_var] = ACTIONS(2910), - [anon_sym_VAR] = ACTIONS(2910), - [anon_sym_While] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_WHILE] = ACTIONS(2910), - [anon_sym_With] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2910), - [anon_sym_WITH] = ACTIONS(2910), - [sym_cf_comment] = ACTIONS(2908), - [sym__java_block_open] = ACTIONS(2908), - [sym__static_type_prefix] = ACTIONS(2908), + [STATE(909)] = { + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_Query] = ACTIONS(2980), + [anon_sym_query] = ACTIONS(2980), + [anon_sym_QUERY] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [aux_sym_unary_operator_token1] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2980), + [aux_sym_number_token2] = ACTIONS(2978), + [anon_sym_This] = ACTIONS(2980), + [anon_sym_this] = ACTIONS(2980), + [anon_sym_THIS] = ACTIONS(2980), + [anon_sym_Super] = ACTIONS(2980), + [anon_sym_super] = ACTIONS(2980), + [anon_sym_SUPER] = ACTIONS(2980), + [anon_sym_True] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2980), + [anon_sym_TRUE] = ACTIONS(2980), + [anon_sym_False] = ACTIONS(2980), + [anon_sym_false] = ACTIONS(2980), + [anon_sym_FALSE] = ACTIONS(2980), + [anon_sym_Null] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_Undefined] = ACTIONS(2980), + [anon_sym_undefined] = ACTIONS(2980), + [anon_sym_UNDEFINED] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [sym_hash_empty] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_QueryExecute] = ACTIONS(2980), + [anon_sym_queryexecute] = ACTIONS(2980), + [anon_sym_QUERYEXECUTE] = ACTIONS(2980), + [anon_sym_queryExecute] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2978), + [anon_sym_Abstract] = ACTIONS(2980), + [anon_sym_abstract] = ACTIONS(2980), + [anon_sym_ABSTRACT] = ACTIONS(2980), + [anon_sym_Break] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_BREAK] = ACTIONS(2980), + [anon_sym_Case] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_CASE] = ACTIONS(2980), + [anon_sym_Component] = ACTIONS(2980), + [anon_sym_component] = ACTIONS(2980), + [anon_sym_COMPONENT] = ACTIONS(2980), + [anon_sym_Continue] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_CONTINUE] = ACTIONS(2980), + [anon_sym_Debugger] = ACTIONS(2980), + [anon_sym_debugger] = ACTIONS(2980), + [anon_sym_DEBUGGER] = ACTIONS(2980), + [anon_sym_Default] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_DEFAULT] = ACTIONS(2980), + [anon_sym_Do] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_DO] = ACTIONS(2980), + [anon_sym_Final] = ACTIONS(2980), + [anon_sym_final] = ACTIONS(2980), + [anon_sym_FINAL] = ACTIONS(2980), + [anon_sym_For] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_FOR] = ACTIONS(2980), + [anon_sym_Function] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_FUNCTION] = ACTIONS(2980), + [anon_sym_If] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_IF] = ACTIONS(2980), + [anon_sym_Import] = ACTIONS(2980), + [anon_sym_import] = ACTIONS(2980), + [anon_sym_IMPORT] = ACTIONS(2980), + [anon_sym_Include] = ACTIONS(2980), + [anon_sym_include] = ACTIONS(2980), + [anon_sym_INCLUDE] = ACTIONS(2980), + [anon_sym_Interface] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_INTERFACE] = ACTIONS(2980), + [anon_sym_New] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_NEW] = ACTIONS(2980), + [anon_sym_Package] = ACTIONS(2980), + [anon_sym_package] = ACTIONS(2980), + [anon_sym_PACKAGE] = ACTIONS(2980), + [anon_sym_Private] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_PRIVATE] = ACTIONS(2980), + [anon_sym_Property] = ACTIONS(2980), + [anon_sym_property] = ACTIONS(2980), + [anon_sym_PROPERTY] = ACTIONS(2980), + [anon_sym_Public] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_PUBLIC] = ACTIONS(2980), + [anon_sym_Remote] = ACTIONS(2980), + [anon_sym_remote] = ACTIONS(2980), + [anon_sym_REMOTE] = ACTIONS(2980), + [anon_sym_Return] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_RETURN] = ACTIONS(2980), + [anon_sym_Static] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_STATIC] = ACTIONS(2980), + [anon_sym_Switch] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_SWITCH] = ACTIONS(2980), + [anon_sym_Throw] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_THROW] = ACTIONS(2980), + [anon_sym_Try] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_TRY] = ACTIONS(2980), + [anon_sym_Var] = ACTIONS(2980), + [anon_sym_var] = ACTIONS(2980), + [anon_sym_VAR] = ACTIONS(2980), + [anon_sym_While] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_WHILE] = ACTIONS(2980), + [anon_sym_With] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2980), + [anon_sym_WITH] = ACTIONS(2980), + [sym_cf_comment] = ACTIONS(2978), + [sym__java_block_open] = ACTIONS(2978), + [sym__static_type_prefix] = ACTIONS(2978), }, - [STATE(858)] = { - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_Query] = ACTIONS(2914), - [anon_sym_query] = ACTIONS(2914), - [anon_sym_QUERY] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [aux_sym_unary_operator_token1] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2914), - [aux_sym_number_token2] = ACTIONS(2912), - [anon_sym_This] = ACTIONS(2914), - [anon_sym_this] = ACTIONS(2914), - [anon_sym_THIS] = ACTIONS(2914), - [anon_sym_Super] = ACTIONS(2914), - [anon_sym_super] = ACTIONS(2914), - [anon_sym_SUPER] = ACTIONS(2914), - [anon_sym_True] = ACTIONS(2914), - [anon_sym_true] = ACTIONS(2914), - [anon_sym_TRUE] = ACTIONS(2914), - [anon_sym_False] = ACTIONS(2914), - [anon_sym_false] = ACTIONS(2914), - [anon_sym_FALSE] = ACTIONS(2914), - [anon_sym_Null] = ACTIONS(2914), - [anon_sym_null] = ACTIONS(2914), - [anon_sym_NULL] = ACTIONS(2914), - [anon_sym_Undefined] = ACTIONS(2914), - [anon_sym_undefined] = ACTIONS(2914), - [anon_sym_UNDEFINED] = ACTIONS(2914), - [anon_sym_get] = ACTIONS(2914), - [anon_sym_set] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [sym_hash_empty] = ACTIONS(2912), - [anon_sym_export] = ACTIONS(2914), - [anon_sym_QueryExecute] = ACTIONS(2914), - [anon_sym_queryexecute] = ACTIONS(2914), - [anon_sym_QUERYEXECUTE] = ACTIONS(2914), - [anon_sym_queryExecute] = ACTIONS(2914), - [anon_sym_BQUOTE] = ACTIONS(2914), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2912), - [anon_sym_Abstract] = ACTIONS(2914), - [anon_sym_abstract] = ACTIONS(2914), - [anon_sym_ABSTRACT] = ACTIONS(2914), - [anon_sym_Break] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_BREAK] = ACTIONS(2914), - [anon_sym_Case] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_CASE] = ACTIONS(2914), - [anon_sym_Component] = ACTIONS(2914), - [anon_sym_component] = ACTIONS(2914), - [anon_sym_COMPONENT] = ACTIONS(2914), - [anon_sym_Continue] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_CONTINUE] = ACTIONS(2914), - [anon_sym_Debugger] = ACTIONS(2914), - [anon_sym_debugger] = ACTIONS(2914), - [anon_sym_DEBUGGER] = ACTIONS(2914), - [anon_sym_Default] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_DEFAULT] = ACTIONS(2914), - [anon_sym_Do] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_DO] = ACTIONS(2914), - [anon_sym_Final] = ACTIONS(2914), - [anon_sym_final] = ACTIONS(2914), - [anon_sym_FINAL] = ACTIONS(2914), - [anon_sym_For] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_FOR] = ACTIONS(2914), - [anon_sym_Function] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2914), - [anon_sym_FUNCTION] = ACTIONS(2914), - [anon_sym_If] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_IF] = ACTIONS(2914), - [anon_sym_Import] = ACTIONS(2914), - [anon_sym_import] = ACTIONS(2914), - [anon_sym_IMPORT] = ACTIONS(2914), - [anon_sym_Include] = ACTIONS(2914), - [anon_sym_include] = ACTIONS(2914), - [anon_sym_INCLUDE] = ACTIONS(2914), - [anon_sym_Interface] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_INTERFACE] = ACTIONS(2914), - [anon_sym_New] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2914), - [anon_sym_NEW] = ACTIONS(2914), - [anon_sym_Package] = ACTIONS(2914), - [anon_sym_package] = ACTIONS(2914), - [anon_sym_PACKAGE] = ACTIONS(2914), - [anon_sym_Private] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_PRIVATE] = ACTIONS(2914), - [anon_sym_Property] = ACTIONS(2914), - [anon_sym_property] = ACTIONS(2914), - [anon_sym_PROPERTY] = ACTIONS(2914), - [anon_sym_Public] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_PUBLIC] = ACTIONS(2914), - [anon_sym_Remote] = ACTIONS(2914), - [anon_sym_remote] = ACTIONS(2914), - [anon_sym_REMOTE] = ACTIONS(2914), - [anon_sym_Return] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_RETURN] = ACTIONS(2914), - [anon_sym_Static] = ACTIONS(2914), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_STATIC] = ACTIONS(2914), - [anon_sym_Switch] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_SWITCH] = ACTIONS(2914), - [anon_sym_Throw] = ACTIONS(2914), - [anon_sym_throw] = ACTIONS(2914), - [anon_sym_THROW] = ACTIONS(2914), - [anon_sym_Try] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2914), - [anon_sym_TRY] = ACTIONS(2914), - [anon_sym_Var] = ACTIONS(2914), - [anon_sym_var] = ACTIONS(2914), - [anon_sym_VAR] = ACTIONS(2914), - [anon_sym_While] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_WHILE] = ACTIONS(2914), - [anon_sym_With] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2914), - [anon_sym_WITH] = ACTIONS(2914), - [sym_cf_comment] = ACTIONS(2912), - [sym__java_block_open] = ACTIONS(2912), - [sym__static_type_prefix] = ACTIONS(2912), + [STATE(910)] = { + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_Query] = ACTIONS(2916), + [anon_sym_query] = ACTIONS(2916), + [anon_sym_QUERY] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_unary_operator_token1] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2916), + [aux_sym_number_token2] = ACTIONS(2914), + [anon_sym_This] = ACTIONS(2916), + [anon_sym_this] = ACTIONS(2916), + [anon_sym_THIS] = ACTIONS(2916), + [anon_sym_Super] = ACTIONS(2916), + [anon_sym_super] = ACTIONS(2916), + [anon_sym_SUPER] = ACTIONS(2916), + [anon_sym_True] = ACTIONS(2916), + [anon_sym_true] = ACTIONS(2916), + [anon_sym_TRUE] = ACTIONS(2916), + [anon_sym_False] = ACTIONS(2916), + [anon_sym_false] = ACTIONS(2916), + [anon_sym_FALSE] = ACTIONS(2916), + [anon_sym_Null] = ACTIONS(2916), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_Undefined] = ACTIONS(2916), + [anon_sym_undefined] = ACTIONS(2916), + [anon_sym_UNDEFINED] = ACTIONS(2916), + [anon_sym_get] = ACTIONS(2916), + [anon_sym_set] = ACTIONS(2916), + [anon_sym_POUND] = ACTIONS(2916), + [sym_hash_empty] = ACTIONS(2914), + [anon_sym_export] = ACTIONS(2916), + [anon_sym_QueryExecute] = ACTIONS(2916), + [anon_sym_queryexecute] = ACTIONS(2916), + [anon_sym_QUERYEXECUTE] = ACTIONS(2916), + [anon_sym_queryExecute] = ACTIONS(2916), + [anon_sym_BQUOTE] = ACTIONS(2916), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2914), + [anon_sym_Abstract] = ACTIONS(2916), + [anon_sym_abstract] = ACTIONS(2916), + [anon_sym_ABSTRACT] = ACTIONS(2916), + [anon_sym_Break] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_BREAK] = ACTIONS(2916), + [anon_sym_Case] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_CASE] = ACTIONS(2916), + [anon_sym_Component] = ACTIONS(2916), + [anon_sym_component] = ACTIONS(2916), + [anon_sym_COMPONENT] = ACTIONS(2916), + [anon_sym_Continue] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_CONTINUE] = ACTIONS(2916), + [anon_sym_Debugger] = ACTIONS(2916), + [anon_sym_debugger] = ACTIONS(2916), + [anon_sym_DEBUGGER] = ACTIONS(2916), + [anon_sym_Default] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_DEFAULT] = ACTIONS(2916), + [anon_sym_Do] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_DO] = ACTIONS(2916), + [anon_sym_Final] = ACTIONS(2916), + [anon_sym_final] = ACTIONS(2916), + [anon_sym_FINAL] = ACTIONS(2916), + [anon_sym_For] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_FOR] = ACTIONS(2916), + [anon_sym_Function] = ACTIONS(2916), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_FUNCTION] = ACTIONS(2916), + [anon_sym_If] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_IF] = ACTIONS(2916), + [anon_sym_Import] = ACTIONS(2916), + [anon_sym_import] = ACTIONS(2916), + [anon_sym_IMPORT] = ACTIONS(2916), + [anon_sym_Include] = ACTIONS(2916), + [anon_sym_include] = ACTIONS(2916), + [anon_sym_INCLUDE] = ACTIONS(2916), + [anon_sym_Interface] = ACTIONS(2916), + [anon_sym_interface] = ACTIONS(2916), + [anon_sym_INTERFACE] = ACTIONS(2916), + [anon_sym_New] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_NEW] = ACTIONS(2916), + [anon_sym_Package] = ACTIONS(2916), + [anon_sym_package] = ACTIONS(2916), + [anon_sym_PACKAGE] = ACTIONS(2916), + [anon_sym_Private] = ACTIONS(2916), + [anon_sym_private] = ACTIONS(2916), + [anon_sym_PRIVATE] = ACTIONS(2916), + [anon_sym_Property] = ACTIONS(2916), + [anon_sym_property] = ACTIONS(2916), + [anon_sym_PROPERTY] = ACTIONS(2916), + [anon_sym_Public] = ACTIONS(2916), + [anon_sym_public] = ACTIONS(2916), + [anon_sym_PUBLIC] = ACTIONS(2916), + [anon_sym_Remote] = ACTIONS(2916), + [anon_sym_remote] = ACTIONS(2916), + [anon_sym_REMOTE] = ACTIONS(2916), + [anon_sym_Return] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_RETURN] = ACTIONS(2916), + [anon_sym_Static] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_STATIC] = ACTIONS(2916), + [anon_sym_Switch] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_SWITCH] = ACTIONS(2916), + [anon_sym_Throw] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_THROW] = ACTIONS(2916), + [anon_sym_Try] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_TRY] = ACTIONS(2916), + [anon_sym_Var] = ACTIONS(2916), + [anon_sym_var] = ACTIONS(2916), + [anon_sym_VAR] = ACTIONS(2916), + [anon_sym_While] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_WHILE] = ACTIONS(2916), + [anon_sym_With] = ACTIONS(2916), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_WITH] = ACTIONS(2916), + [sym_cf_comment] = ACTIONS(2914), + [sym__java_block_open] = ACTIONS(2914), + [sym__static_type_prefix] = ACTIONS(2914), }, - [STATE(859)] = { - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_Query] = ACTIONS(2918), - [anon_sym_query] = ACTIONS(2918), - [anon_sym_QUERY] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [aux_sym_unary_operator_token1] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2918), - [aux_sym_number_token2] = ACTIONS(2916), - [anon_sym_This] = ACTIONS(2918), - [anon_sym_this] = ACTIONS(2918), - [anon_sym_THIS] = ACTIONS(2918), - [anon_sym_Super] = ACTIONS(2918), - [anon_sym_super] = ACTIONS(2918), - [anon_sym_SUPER] = ACTIONS(2918), - [anon_sym_True] = ACTIONS(2918), - [anon_sym_true] = ACTIONS(2918), - [anon_sym_TRUE] = ACTIONS(2918), - [anon_sym_False] = ACTIONS(2918), - [anon_sym_false] = ACTIONS(2918), - [anon_sym_FALSE] = ACTIONS(2918), - [anon_sym_Null] = ACTIONS(2918), - [anon_sym_null] = ACTIONS(2918), - [anon_sym_NULL] = ACTIONS(2918), - [anon_sym_Undefined] = ACTIONS(2918), - [anon_sym_undefined] = ACTIONS(2918), - [anon_sym_UNDEFINED] = ACTIONS(2918), - [anon_sym_get] = ACTIONS(2918), - [anon_sym_set] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [sym_hash_empty] = ACTIONS(2916), - [anon_sym_export] = ACTIONS(2918), - [anon_sym_QueryExecute] = ACTIONS(2918), - [anon_sym_queryexecute] = ACTIONS(2918), - [anon_sym_QUERYEXECUTE] = ACTIONS(2918), - [anon_sym_queryExecute] = ACTIONS(2918), - [anon_sym_BQUOTE] = ACTIONS(2918), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2916), - [anon_sym_Abstract] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2918), - [anon_sym_ABSTRACT] = ACTIONS(2918), - [anon_sym_Break] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_BREAK] = ACTIONS(2918), - [anon_sym_Case] = ACTIONS(2918), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_CASE] = ACTIONS(2918), - [anon_sym_Component] = ACTIONS(2918), - [anon_sym_component] = ACTIONS(2918), - [anon_sym_COMPONENT] = ACTIONS(2918), - [anon_sym_Continue] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_CONTINUE] = ACTIONS(2918), - [anon_sym_Debugger] = ACTIONS(2918), - [anon_sym_debugger] = ACTIONS(2918), - [anon_sym_DEBUGGER] = ACTIONS(2918), - [anon_sym_Default] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_DEFAULT] = ACTIONS(2918), - [anon_sym_Do] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_DO] = ACTIONS(2918), - [anon_sym_Final] = ACTIONS(2918), - [anon_sym_final] = ACTIONS(2918), - [anon_sym_FINAL] = ACTIONS(2918), - [anon_sym_For] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_FOR] = ACTIONS(2918), - [anon_sym_Function] = ACTIONS(2918), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_FUNCTION] = ACTIONS(2918), - [anon_sym_If] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_IF] = ACTIONS(2918), - [anon_sym_Import] = ACTIONS(2918), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_IMPORT] = ACTIONS(2918), - [anon_sym_Include] = ACTIONS(2918), - [anon_sym_include] = ACTIONS(2918), - [anon_sym_INCLUDE] = ACTIONS(2918), - [anon_sym_Interface] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_INTERFACE] = ACTIONS(2918), - [anon_sym_New] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_NEW] = ACTIONS(2918), - [anon_sym_Package] = ACTIONS(2918), - [anon_sym_package] = ACTIONS(2918), - [anon_sym_PACKAGE] = ACTIONS(2918), - [anon_sym_Private] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_PRIVATE] = ACTIONS(2918), - [anon_sym_Property] = ACTIONS(2918), - [anon_sym_property] = ACTIONS(2918), - [anon_sym_PROPERTY] = ACTIONS(2918), - [anon_sym_Public] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_PUBLIC] = ACTIONS(2918), - [anon_sym_Remote] = ACTIONS(2918), - [anon_sym_remote] = ACTIONS(2918), - [anon_sym_REMOTE] = ACTIONS(2918), - [anon_sym_Return] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_RETURN] = ACTIONS(2918), - [anon_sym_Static] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_STATIC] = ACTIONS(2918), - [anon_sym_Switch] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_SWITCH] = ACTIONS(2918), - [anon_sym_Throw] = ACTIONS(2918), - [anon_sym_throw] = ACTIONS(2918), - [anon_sym_THROW] = ACTIONS(2918), - [anon_sym_Try] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_TRY] = ACTIONS(2918), - [anon_sym_Var] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2918), - [anon_sym_VAR] = ACTIONS(2918), - [anon_sym_While] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_WHILE] = ACTIONS(2918), - [anon_sym_With] = ACTIONS(2918), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_WITH] = ACTIONS(2918), - [sym_cf_comment] = ACTIONS(2916), - [sym__java_block_open] = ACTIONS(2916), - [sym__static_type_prefix] = ACTIONS(2916), + [STATE(911)] = { + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_let] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_Query] = ACTIONS(3020), + [anon_sym_query] = ACTIONS(3020), + [anon_sym_QUERY] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [aux_sym_unary_operator_token1] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3020), + [aux_sym_number_token2] = ACTIONS(3018), + [anon_sym_This] = ACTIONS(3020), + [anon_sym_this] = ACTIONS(3020), + [anon_sym_THIS] = ACTIONS(3020), + [anon_sym_Super] = ACTIONS(3020), + [anon_sym_super] = ACTIONS(3020), + [anon_sym_SUPER] = ACTIONS(3020), + [anon_sym_True] = ACTIONS(3020), + [anon_sym_true] = ACTIONS(3020), + [anon_sym_TRUE] = ACTIONS(3020), + [anon_sym_False] = ACTIONS(3020), + [anon_sym_false] = ACTIONS(3020), + [anon_sym_FALSE] = ACTIONS(3020), + [anon_sym_Null] = ACTIONS(3020), + [anon_sym_null] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_Undefined] = ACTIONS(3020), + [anon_sym_undefined] = ACTIONS(3020), + [anon_sym_UNDEFINED] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(3020), + [anon_sym_set] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [sym_hash_empty] = ACTIONS(3018), + [anon_sym_export] = ACTIONS(3020), + [anon_sym_QueryExecute] = ACTIONS(3020), + [anon_sym_queryexecute] = ACTIONS(3020), + [anon_sym_QUERYEXECUTE] = ACTIONS(3020), + [anon_sym_queryExecute] = ACTIONS(3020), + [anon_sym_BQUOTE] = ACTIONS(3020), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3018), + [anon_sym_Abstract] = ACTIONS(3020), + [anon_sym_abstract] = ACTIONS(3020), + [anon_sym_ABSTRACT] = ACTIONS(3020), + [anon_sym_Break] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_BREAK] = ACTIONS(3020), + [anon_sym_Case] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_CASE] = ACTIONS(3020), + [anon_sym_Component] = ACTIONS(3020), + [anon_sym_component] = ACTIONS(3020), + [anon_sym_COMPONENT] = ACTIONS(3020), + [anon_sym_Continue] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_CONTINUE] = ACTIONS(3020), + [anon_sym_Debugger] = ACTIONS(3020), + [anon_sym_debugger] = ACTIONS(3020), + [anon_sym_DEBUGGER] = ACTIONS(3020), + [anon_sym_Default] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_DEFAULT] = ACTIONS(3020), + [anon_sym_Do] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_DO] = ACTIONS(3020), + [anon_sym_Final] = ACTIONS(3020), + [anon_sym_final] = ACTIONS(3020), + [anon_sym_FINAL] = ACTIONS(3020), + [anon_sym_For] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_FOR] = ACTIONS(3020), + [anon_sym_Function] = ACTIONS(3020), + [anon_sym_function] = ACTIONS(3020), + [anon_sym_FUNCTION] = ACTIONS(3020), + [anon_sym_If] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_IF] = ACTIONS(3020), + [anon_sym_Import] = ACTIONS(3020), + [anon_sym_import] = ACTIONS(3020), + [anon_sym_IMPORT] = ACTIONS(3020), + [anon_sym_Include] = ACTIONS(3020), + [anon_sym_include] = ACTIONS(3020), + [anon_sym_INCLUDE] = ACTIONS(3020), + [anon_sym_Interface] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_INTERFACE] = ACTIONS(3020), + [anon_sym_New] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_NEW] = ACTIONS(3020), + [anon_sym_Package] = ACTIONS(3020), + [anon_sym_package] = ACTIONS(3020), + [anon_sym_PACKAGE] = ACTIONS(3020), + [anon_sym_Private] = ACTIONS(3020), + [anon_sym_private] = ACTIONS(3020), + [anon_sym_PRIVATE] = ACTIONS(3020), + [anon_sym_Property] = ACTIONS(3020), + [anon_sym_property] = ACTIONS(3020), + [anon_sym_PROPERTY] = ACTIONS(3020), + [anon_sym_Public] = ACTIONS(3020), + [anon_sym_public] = ACTIONS(3020), + [anon_sym_PUBLIC] = ACTIONS(3020), + [anon_sym_Remote] = ACTIONS(3020), + [anon_sym_remote] = ACTIONS(3020), + [anon_sym_REMOTE] = ACTIONS(3020), + [anon_sym_Return] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_RETURN] = ACTIONS(3020), + [anon_sym_Static] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_STATIC] = ACTIONS(3020), + [anon_sym_Switch] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_SWITCH] = ACTIONS(3020), + [anon_sym_Throw] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_THROW] = ACTIONS(3020), + [anon_sym_Try] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_TRY] = ACTIONS(3020), + [anon_sym_Var] = ACTIONS(3020), + [anon_sym_var] = ACTIONS(3020), + [anon_sym_VAR] = ACTIONS(3020), + [anon_sym_While] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_WHILE] = ACTIONS(3020), + [anon_sym_With] = ACTIONS(3020), + [anon_sym_with] = ACTIONS(3020), + [anon_sym_WITH] = ACTIONS(3020), + [sym_cf_comment] = ACTIONS(3018), + [sym__java_block_open] = ACTIONS(3018), + [sym__static_type_prefix] = ACTIONS(3018), }, - [STATE(860)] = { - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_Query] = ACTIONS(2189), - [anon_sym_query] = ACTIONS(2189), - [anon_sym_QUERY] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2187), - [aux_sym_unary_operator_token1] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2187), + [STATE(912)] = { + [ts_builtin_sym_end] = ACTIONS(3082), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_Query] = ACTIONS(3084), + [anon_sym_query] = ACTIONS(3084), + [anon_sym_QUERY] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [aux_sym_unary_operator_token1] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [anon_sym_DQUOTE] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3082), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2189), - [aux_sym_number_token2] = ACTIONS(2187), - [anon_sym_This] = ACTIONS(2189), - [anon_sym_this] = ACTIONS(2189), - [anon_sym_THIS] = ACTIONS(2189), - [anon_sym_Super] = ACTIONS(2189), - [anon_sym_super] = ACTIONS(2189), - [anon_sym_SUPER] = ACTIONS(2189), - [anon_sym_True] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_TRUE] = ACTIONS(2189), - [anon_sym_False] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_FALSE] = ACTIONS(2189), - [anon_sym_Null] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_NULL] = ACTIONS(2189), - [anon_sym_Undefined] = ACTIONS(2189), - [anon_sym_undefined] = ACTIONS(2189), - [anon_sym_UNDEFINED] = ACTIONS(2189), - [anon_sym_get] = ACTIONS(2189), - [anon_sym_set] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2189), - [sym_hash_empty] = ACTIONS(2187), - [anon_sym_export] = ACTIONS(2189), - [anon_sym_QueryExecute] = ACTIONS(2189), - [anon_sym_queryexecute] = ACTIONS(2189), - [anon_sym_QUERYEXECUTE] = ACTIONS(2189), - [anon_sym_queryExecute] = ACTIONS(2189), - [anon_sym_BQUOTE] = ACTIONS(2189), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2187), - [anon_sym_Abstract] = ACTIONS(2189), - [anon_sym_abstract] = ACTIONS(2189), - [anon_sym_ABSTRACT] = ACTIONS(2189), - [anon_sym_Break] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_BREAK] = ACTIONS(2189), - [anon_sym_Case] = ACTIONS(2189), - [anon_sym_case] = ACTIONS(2189), - [anon_sym_CASE] = ACTIONS(2189), - [anon_sym_Component] = ACTIONS(2189), - [anon_sym_component] = ACTIONS(2189), - [anon_sym_COMPONENT] = ACTIONS(2189), - [anon_sym_Continue] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_CONTINUE] = ACTIONS(2189), - [anon_sym_Debugger] = ACTIONS(2189), - [anon_sym_debugger] = ACTIONS(2189), - [anon_sym_DEBUGGER] = ACTIONS(2189), - [anon_sym_Default] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_DEFAULT] = ACTIONS(2189), - [anon_sym_Do] = ACTIONS(2189), - [anon_sym_do] = ACTIONS(2189), - [anon_sym_DO] = ACTIONS(2189), - [anon_sym_Final] = ACTIONS(2189), - [anon_sym_final] = ACTIONS(2189), - [anon_sym_FINAL] = ACTIONS(2189), - [anon_sym_For] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_FOR] = ACTIONS(2189), - [anon_sym_Function] = ACTIONS(2189), - [anon_sym_function] = ACTIONS(2189), - [anon_sym_FUNCTION] = ACTIONS(2189), - [anon_sym_If] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_IF] = ACTIONS(2189), - [anon_sym_Import] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_IMPORT] = ACTIONS(2189), - [anon_sym_Include] = ACTIONS(2189), - [anon_sym_include] = ACTIONS(2189), - [anon_sym_INCLUDE] = ACTIONS(2189), - [anon_sym_Interface] = ACTIONS(2189), - [anon_sym_interface] = ACTIONS(2189), - [anon_sym_INTERFACE] = ACTIONS(2189), - [anon_sym_New] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_NEW] = ACTIONS(2189), - [anon_sym_Package] = ACTIONS(2189), - [anon_sym_package] = ACTIONS(2189), - [anon_sym_PACKAGE] = ACTIONS(2189), - [anon_sym_Private] = ACTIONS(2189), - [anon_sym_private] = ACTIONS(2189), - [anon_sym_PRIVATE] = ACTIONS(2189), - [anon_sym_Property] = ACTIONS(2189), - [anon_sym_property] = ACTIONS(2189), - [anon_sym_PROPERTY] = ACTIONS(2189), - [anon_sym_Public] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_PUBLIC] = ACTIONS(2189), - [anon_sym_Remote] = ACTIONS(2189), - [anon_sym_remote] = ACTIONS(2189), - [anon_sym_REMOTE] = ACTIONS(2189), - [anon_sym_Return] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_RETURN] = ACTIONS(2189), - [anon_sym_Static] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_STATIC] = ACTIONS(2189), - [anon_sym_Switch] = ACTIONS(2189), - [anon_sym_switch] = ACTIONS(2189), - [anon_sym_SWITCH] = ACTIONS(2189), - [anon_sym_Throw] = ACTIONS(2189), - [anon_sym_throw] = ACTIONS(2189), - [anon_sym_THROW] = ACTIONS(2189), - [anon_sym_Try] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_TRY] = ACTIONS(2189), - [anon_sym_Var] = ACTIONS(2189), - [anon_sym_var] = ACTIONS(2189), - [anon_sym_VAR] = ACTIONS(2189), - [anon_sym_While] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_WHILE] = ACTIONS(2189), - [anon_sym_With] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_WITH] = ACTIONS(2189), - [sym_cf_comment] = ACTIONS(2187), - [sym__java_block_open] = ACTIONS(2187), - [sym__static_type_prefix] = ACTIONS(2187), + [aux_sym_number_token1] = ACTIONS(3084), + [aux_sym_number_token2] = ACTIONS(3082), + [anon_sym_This] = ACTIONS(3084), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_THIS] = ACTIONS(3084), + [anon_sym_Super] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_SUPER] = ACTIONS(3084), + [anon_sym_True] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_TRUE] = ACTIONS(3084), + [anon_sym_False] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_FALSE] = ACTIONS(3084), + [anon_sym_Null] = ACTIONS(3084), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_NULL] = ACTIONS(3084), + [anon_sym_Undefined] = ACTIONS(3084), + [anon_sym_undefined] = ACTIONS(3084), + [anon_sym_UNDEFINED] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(3084), + [anon_sym_set] = ACTIONS(3084), + [anon_sym_POUND] = ACTIONS(3084), + [sym_hash_empty] = ACTIONS(3082), + [anon_sym_export] = ACTIONS(3084), + [anon_sym_QueryExecute] = ACTIONS(3084), + [anon_sym_queryexecute] = ACTIONS(3084), + [anon_sym_QUERYEXECUTE] = ACTIONS(3084), + [anon_sym_queryExecute] = ACTIONS(3084), + [anon_sym_BQUOTE] = ACTIONS(3084), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3082), + [anon_sym_Abstract] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_ABSTRACT] = ACTIONS(3084), + [anon_sym_Break] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_BREAK] = ACTIONS(3084), + [anon_sym_Case] = ACTIONS(3084), + [anon_sym_case] = ACTIONS(3084), + [anon_sym_CASE] = ACTIONS(3084), + [anon_sym_Component] = ACTIONS(3084), + [anon_sym_component] = ACTIONS(3084), + [anon_sym_COMPONENT] = ACTIONS(3084), + [anon_sym_Continue] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_CONTINUE] = ACTIONS(3084), + [anon_sym_Debugger] = ACTIONS(3084), + [anon_sym_debugger] = ACTIONS(3084), + [anon_sym_DEBUGGER] = ACTIONS(3084), + [anon_sym_Default] = ACTIONS(3084), + [anon_sym_default] = ACTIONS(3084), + [anon_sym_DEFAULT] = ACTIONS(3084), + [anon_sym_Do] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_DO] = ACTIONS(3084), + [anon_sym_Final] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_FINAL] = ACTIONS(3084), + [anon_sym_For] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_FOR] = ACTIONS(3084), + [anon_sym_Function] = ACTIONS(3084), + [anon_sym_function] = ACTIONS(3084), + [anon_sym_FUNCTION] = ACTIONS(3084), + [anon_sym_If] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_IF] = ACTIONS(3084), + [anon_sym_Import] = ACTIONS(3084), + [anon_sym_import] = ACTIONS(3084), + [anon_sym_IMPORT] = ACTIONS(3084), + [anon_sym_Include] = ACTIONS(3084), + [anon_sym_include] = ACTIONS(3084), + [anon_sym_INCLUDE] = ACTIONS(3084), + [anon_sym_Interface] = ACTIONS(3084), + [anon_sym_interface] = ACTIONS(3084), + [anon_sym_INTERFACE] = ACTIONS(3084), + [anon_sym_New] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3084), + [anon_sym_NEW] = ACTIONS(3084), + [anon_sym_Package] = ACTIONS(3084), + [anon_sym_package] = ACTIONS(3084), + [anon_sym_PACKAGE] = ACTIONS(3084), + [anon_sym_Private] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_PRIVATE] = ACTIONS(3084), + [anon_sym_Property] = ACTIONS(3084), + [anon_sym_property] = ACTIONS(3084), + [anon_sym_PROPERTY] = ACTIONS(3084), + [anon_sym_Public] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_PUBLIC] = ACTIONS(3084), + [anon_sym_Remote] = ACTIONS(3084), + [anon_sym_remote] = ACTIONS(3084), + [anon_sym_REMOTE] = ACTIONS(3084), + [anon_sym_Return] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_RETURN] = ACTIONS(3084), + [anon_sym_Static] = ACTIONS(3084), + [anon_sym_static] = ACTIONS(3084), + [anon_sym_STATIC] = ACTIONS(3084), + [anon_sym_Switch] = ACTIONS(3084), + [anon_sym_switch] = ACTIONS(3084), + [anon_sym_SWITCH] = ACTIONS(3084), + [anon_sym_Throw] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_THROW] = ACTIONS(3084), + [anon_sym_Try] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_TRY] = ACTIONS(3084), + [anon_sym_Var] = ACTIONS(3084), + [anon_sym_var] = ACTIONS(3084), + [anon_sym_VAR] = ACTIONS(3084), + [anon_sym_While] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_WHILE] = ACTIONS(3084), + [anon_sym_With] = ACTIONS(3084), + [anon_sym_with] = ACTIONS(3084), + [anon_sym_WITH] = ACTIONS(3084), + [sym_cf_comment] = ACTIONS(3082), + [sym__java_block_open] = ACTIONS(3082), + [sym__static_type_prefix] = ACTIONS(3082), }, - [STATE(861)] = { + [STATE(913)] = { + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_Query] = ACTIONS(2784), + [anon_sym_query] = ACTIONS(2784), + [anon_sym_QUERY] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [aux_sym_unary_operator_token1] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2784), + [aux_sym_number_token2] = ACTIONS(2782), + [anon_sym_This] = ACTIONS(2784), + [anon_sym_this] = ACTIONS(2784), + [anon_sym_THIS] = ACTIONS(2784), + [anon_sym_Super] = ACTIONS(2784), + [anon_sym_super] = ACTIONS(2784), + [anon_sym_SUPER] = ACTIONS(2784), + [anon_sym_True] = ACTIONS(2784), + [anon_sym_true] = ACTIONS(2784), + [anon_sym_TRUE] = ACTIONS(2784), + [anon_sym_False] = ACTIONS(2784), + [anon_sym_false] = ACTIONS(2784), + [anon_sym_FALSE] = ACTIONS(2784), + [anon_sym_Null] = ACTIONS(2784), + [anon_sym_null] = ACTIONS(2784), + [anon_sym_NULL] = ACTIONS(2784), + [anon_sym_Undefined] = ACTIONS(2784), + [anon_sym_undefined] = ACTIONS(2784), + [anon_sym_UNDEFINED] = ACTIONS(2784), + [anon_sym_get] = ACTIONS(2784), + [anon_sym_set] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [sym_hash_empty] = ACTIONS(2782), + [anon_sym_export] = ACTIONS(2784), + [anon_sym_QueryExecute] = ACTIONS(2784), + [anon_sym_queryexecute] = ACTIONS(2784), + [anon_sym_QUERYEXECUTE] = ACTIONS(2784), + [anon_sym_queryExecute] = ACTIONS(2784), + [anon_sym_BQUOTE] = ACTIONS(2784), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2782), + [anon_sym_Abstract] = ACTIONS(2784), + [anon_sym_abstract] = ACTIONS(2784), + [anon_sym_ABSTRACT] = ACTIONS(2784), + [anon_sym_Break] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_BREAK] = ACTIONS(2784), + [anon_sym_Case] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_CASE] = ACTIONS(2784), + [anon_sym_Component] = ACTIONS(2784), + [anon_sym_component] = ACTIONS(2784), + [anon_sym_COMPONENT] = ACTIONS(2784), + [anon_sym_Continue] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_CONTINUE] = ACTIONS(2784), + [anon_sym_Debugger] = ACTIONS(2784), + [anon_sym_debugger] = ACTIONS(2784), + [anon_sym_DEBUGGER] = ACTIONS(2784), + [anon_sym_Default] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_DEFAULT] = ACTIONS(2784), + [anon_sym_Do] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_DO] = ACTIONS(2784), + [anon_sym_Final] = ACTIONS(2784), + [anon_sym_final] = ACTIONS(2784), + [anon_sym_FINAL] = ACTIONS(2784), + [anon_sym_For] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_FOR] = ACTIONS(2784), + [anon_sym_Function] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2784), + [anon_sym_FUNCTION] = ACTIONS(2784), + [anon_sym_If] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_IF] = ACTIONS(2784), + [anon_sym_Import] = ACTIONS(2784), + [anon_sym_import] = ACTIONS(2784), + [anon_sym_IMPORT] = ACTIONS(2784), + [anon_sym_Include] = ACTIONS(2784), + [anon_sym_include] = ACTIONS(2784), + [anon_sym_INCLUDE] = ACTIONS(2784), + [anon_sym_Interface] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_INTERFACE] = ACTIONS(2784), + [anon_sym_New] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2784), + [anon_sym_NEW] = ACTIONS(2784), + [anon_sym_Package] = ACTIONS(2784), + [anon_sym_package] = ACTIONS(2784), + [anon_sym_PACKAGE] = ACTIONS(2784), + [anon_sym_Private] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_PRIVATE] = ACTIONS(2784), + [anon_sym_Property] = ACTIONS(2784), + [anon_sym_property] = ACTIONS(2784), + [anon_sym_PROPERTY] = ACTIONS(2784), + [anon_sym_Public] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_PUBLIC] = ACTIONS(2784), + [anon_sym_Remote] = ACTIONS(2784), + [anon_sym_remote] = ACTIONS(2784), + [anon_sym_REMOTE] = ACTIONS(2784), + [anon_sym_Return] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_RETURN] = ACTIONS(2784), + [anon_sym_Static] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_STATIC] = ACTIONS(2784), + [anon_sym_Switch] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_SWITCH] = ACTIONS(2784), + [anon_sym_Throw] = ACTIONS(2784), + [anon_sym_throw] = ACTIONS(2784), + [anon_sym_THROW] = ACTIONS(2784), + [anon_sym_Try] = ACTIONS(2784), + [anon_sym_try] = ACTIONS(2784), + [anon_sym_TRY] = ACTIONS(2784), + [anon_sym_Var] = ACTIONS(2784), + [anon_sym_var] = ACTIONS(2784), + [anon_sym_VAR] = ACTIONS(2784), + [anon_sym_While] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_WHILE] = ACTIONS(2784), + [anon_sym_With] = ACTIONS(2784), + [anon_sym_with] = ACTIONS(2784), + [anon_sym_WITH] = ACTIONS(2784), + [sym_cf_comment] = ACTIONS(2782), + [sym__java_block_open] = ACTIONS(2782), + [sym__static_type_prefix] = ACTIONS(2782), + }, + [STATE(914)] = { [ts_builtin_sym_end] = ACTIONS(3086), [sym_identifier] = ACTIONS(3088), [anon_sym_LBRACE] = ACTIONS(3086), @@ -174989,8203 +182832,8791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(3086), [sym__static_type_prefix] = ACTIONS(3086), }, - [STATE(862)] = { - [ts_builtin_sym_end] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_Query] = ACTIONS(2926), - [anon_sym_query] = ACTIONS(2926), - [anon_sym_QUERY] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2924), - [aux_sym_unary_operator_token1] = ACTIONS(2926), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2926), - [aux_sym_number_token2] = ACTIONS(2924), - [anon_sym_This] = ACTIONS(2926), - [anon_sym_this] = ACTIONS(2926), - [anon_sym_THIS] = ACTIONS(2926), - [anon_sym_Super] = ACTIONS(2926), - [anon_sym_super] = ACTIONS(2926), - [anon_sym_SUPER] = ACTIONS(2926), - [anon_sym_True] = ACTIONS(2926), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_TRUE] = ACTIONS(2926), - [anon_sym_False] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [anon_sym_FALSE] = ACTIONS(2926), - [anon_sym_Null] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2926), - [anon_sym_NULL] = ACTIONS(2926), - [anon_sym_Undefined] = ACTIONS(2926), - [anon_sym_undefined] = ACTIONS(2926), - [anon_sym_UNDEFINED] = ACTIONS(2926), - [anon_sym_get] = ACTIONS(2926), - [anon_sym_set] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [sym_hash_empty] = ACTIONS(2924), - [anon_sym_export] = ACTIONS(2926), - [anon_sym_QueryExecute] = ACTIONS(2926), - [anon_sym_queryexecute] = ACTIONS(2926), - [anon_sym_QUERYEXECUTE] = ACTIONS(2926), - [anon_sym_queryExecute] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2924), - [anon_sym_Abstract] = ACTIONS(2926), - [anon_sym_abstract] = ACTIONS(2926), - [anon_sym_ABSTRACT] = ACTIONS(2926), - [anon_sym_Break] = ACTIONS(2926), - [anon_sym_break] = ACTIONS(2926), - [anon_sym_BREAK] = ACTIONS(2926), - [anon_sym_Case] = ACTIONS(2926), - [anon_sym_case] = ACTIONS(2926), - [anon_sym_CASE] = ACTIONS(2926), - [anon_sym_Component] = ACTIONS(2926), - [anon_sym_component] = ACTIONS(2926), - [anon_sym_COMPONENT] = ACTIONS(2926), - [anon_sym_Continue] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2926), - [anon_sym_CONTINUE] = ACTIONS(2926), - [anon_sym_Debugger] = ACTIONS(2926), - [anon_sym_debugger] = ACTIONS(2926), - [anon_sym_DEBUGGER] = ACTIONS(2926), - [anon_sym_Default] = ACTIONS(2926), - [anon_sym_default] = ACTIONS(2926), - [anon_sym_DEFAULT] = ACTIONS(2926), - [anon_sym_Do] = ACTIONS(2926), - [anon_sym_do] = ACTIONS(2926), - [anon_sym_DO] = ACTIONS(2926), - [anon_sym_Final] = ACTIONS(2926), - [anon_sym_final] = ACTIONS(2926), - [anon_sym_FINAL] = ACTIONS(2926), - [anon_sym_For] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_FOR] = ACTIONS(2926), - [anon_sym_Function] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2926), - [anon_sym_FUNCTION] = ACTIONS(2926), - [anon_sym_If] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_IF] = ACTIONS(2926), - [anon_sym_Import] = ACTIONS(2926), - [anon_sym_import] = ACTIONS(2926), - [anon_sym_IMPORT] = ACTIONS(2926), - [anon_sym_Include] = ACTIONS(2926), - [anon_sym_include] = ACTIONS(2926), - [anon_sym_INCLUDE] = ACTIONS(2926), - [anon_sym_Interface] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2926), - [anon_sym_INTERFACE] = ACTIONS(2926), - [anon_sym_New] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2926), - [anon_sym_NEW] = ACTIONS(2926), - [anon_sym_Package] = ACTIONS(2926), - [anon_sym_package] = ACTIONS(2926), - [anon_sym_PACKAGE] = ACTIONS(2926), - [anon_sym_Private] = ACTIONS(2926), - [anon_sym_private] = ACTIONS(2926), - [anon_sym_PRIVATE] = ACTIONS(2926), - [anon_sym_Property] = ACTIONS(2926), - [anon_sym_property] = ACTIONS(2926), - [anon_sym_PROPERTY] = ACTIONS(2926), - [anon_sym_Public] = ACTIONS(2926), - [anon_sym_public] = ACTIONS(2926), - [anon_sym_PUBLIC] = ACTIONS(2926), - [anon_sym_Remote] = ACTIONS(2926), - [anon_sym_remote] = ACTIONS(2926), - [anon_sym_REMOTE] = ACTIONS(2926), - [anon_sym_Return] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_RETURN] = ACTIONS(2926), - [anon_sym_Static] = ACTIONS(2926), - [anon_sym_static] = ACTIONS(2926), - [anon_sym_STATIC] = ACTIONS(2926), - [anon_sym_Switch] = ACTIONS(2926), - [anon_sym_switch] = ACTIONS(2926), - [anon_sym_SWITCH] = ACTIONS(2926), - [anon_sym_Throw] = ACTIONS(2926), - [anon_sym_throw] = ACTIONS(2926), - [anon_sym_THROW] = ACTIONS(2926), - [anon_sym_Try] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2926), - [anon_sym_TRY] = ACTIONS(2926), - [anon_sym_Var] = ACTIONS(2926), - [anon_sym_var] = ACTIONS(2926), - [anon_sym_VAR] = ACTIONS(2926), - [anon_sym_While] = ACTIONS(2926), - [anon_sym_while] = ACTIONS(2926), - [anon_sym_WHILE] = ACTIONS(2926), - [anon_sym_With] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2926), - [anon_sym_WITH] = ACTIONS(2926), - [sym_cf_comment] = ACTIONS(2924), - [sym__java_block_open] = ACTIONS(2924), - [sym__static_type_prefix] = ACTIONS(2924), + [STATE(915)] = { + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_Query] = ACTIONS(2700), + [anon_sym_query] = ACTIONS(2700), + [anon_sym_QUERY] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [aux_sym_unary_operator_token1] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2700), + [aux_sym_number_token2] = ACTIONS(2698), + [anon_sym_This] = ACTIONS(2700), + [anon_sym_this] = ACTIONS(2700), + [anon_sym_THIS] = ACTIONS(2700), + [anon_sym_Super] = ACTIONS(2700), + [anon_sym_super] = ACTIONS(2700), + [anon_sym_SUPER] = ACTIONS(2700), + [anon_sym_True] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_TRUE] = ACTIONS(2700), + [anon_sym_False] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_FALSE] = ACTIONS(2700), + [anon_sym_Null] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_Undefined] = ACTIONS(2700), + [anon_sym_undefined] = ACTIONS(2700), + [anon_sym_UNDEFINED] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [sym_hash_empty] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_QueryExecute] = ACTIONS(2700), + [anon_sym_queryexecute] = ACTIONS(2700), + [anon_sym_QUERYEXECUTE] = ACTIONS(2700), + [anon_sym_queryExecute] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(2700), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2698), + [anon_sym_Abstract] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_ABSTRACT] = ACTIONS(2700), + [anon_sym_Break] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_BREAK] = ACTIONS(2700), + [anon_sym_Case] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_CASE] = ACTIONS(2700), + [anon_sym_Component] = ACTIONS(2700), + [anon_sym_component] = ACTIONS(2700), + [anon_sym_COMPONENT] = ACTIONS(2700), + [anon_sym_Continue] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_CONTINUE] = ACTIONS(2700), + [anon_sym_Debugger] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_DEBUGGER] = ACTIONS(2700), + [anon_sym_Default] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_DEFAULT] = ACTIONS(2700), + [anon_sym_Do] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_DO] = ACTIONS(2700), + [anon_sym_Final] = ACTIONS(2700), + [anon_sym_final] = ACTIONS(2700), + [anon_sym_FINAL] = ACTIONS(2700), + [anon_sym_For] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_FOR] = ACTIONS(2700), + [anon_sym_Function] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_FUNCTION] = ACTIONS(2700), + [anon_sym_If] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_IF] = ACTIONS(2700), + [anon_sym_Import] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_IMPORT] = ACTIONS(2700), + [anon_sym_Include] = ACTIONS(2700), + [anon_sym_include] = ACTIONS(2700), + [anon_sym_INCLUDE] = ACTIONS(2700), + [anon_sym_Interface] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_INTERFACE] = ACTIONS(2700), + [anon_sym_New] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_NEW] = ACTIONS(2700), + [anon_sym_Package] = ACTIONS(2700), + [anon_sym_package] = ACTIONS(2700), + [anon_sym_PACKAGE] = ACTIONS(2700), + [anon_sym_Private] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_PRIVATE] = ACTIONS(2700), + [anon_sym_Property] = ACTIONS(2700), + [anon_sym_property] = ACTIONS(2700), + [anon_sym_PROPERTY] = ACTIONS(2700), + [anon_sym_Public] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_PUBLIC] = ACTIONS(2700), + [anon_sym_Remote] = ACTIONS(2700), + [anon_sym_remote] = ACTIONS(2700), + [anon_sym_REMOTE] = ACTIONS(2700), + [anon_sym_Return] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_RETURN] = ACTIONS(2700), + [anon_sym_Static] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_STATIC] = ACTIONS(2700), + [anon_sym_Switch] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_SWITCH] = ACTIONS(2700), + [anon_sym_Throw] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_THROW] = ACTIONS(2700), + [anon_sym_Try] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_TRY] = ACTIONS(2700), + [anon_sym_Var] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [anon_sym_VAR] = ACTIONS(2700), + [anon_sym_While] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_WHILE] = ACTIONS(2700), + [anon_sym_With] = ACTIONS(2700), + [anon_sym_with] = ACTIONS(2700), + [anon_sym_WITH] = ACTIONS(2700), + [sym_cf_comment] = ACTIONS(2698), + [sym__java_block_open] = ACTIONS(2698), + [sym__static_type_prefix] = ACTIONS(2698), }, - [STATE(863)] = { - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_RBRACE] = ACTIONS(2928), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_Query] = ACTIONS(2930), - [anon_sym_query] = ACTIONS(2930), - [anon_sym_QUERY] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2928), - [anon_sym_TILDE] = ACTIONS(2928), - [aux_sym_unary_operator_token1] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2928), - [anon_sym_DASH_DASH] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2930), - [aux_sym_number_token2] = ACTIONS(2928), - [anon_sym_This] = ACTIONS(2930), - [anon_sym_this] = ACTIONS(2930), - [anon_sym_THIS] = ACTIONS(2930), - [anon_sym_Super] = ACTIONS(2930), - [anon_sym_super] = ACTIONS(2930), - [anon_sym_SUPER] = ACTIONS(2930), - [anon_sym_True] = ACTIONS(2930), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_TRUE] = ACTIONS(2930), - [anon_sym_False] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [anon_sym_FALSE] = ACTIONS(2930), - [anon_sym_Null] = ACTIONS(2930), - [anon_sym_null] = ACTIONS(2930), - [anon_sym_NULL] = ACTIONS(2930), - [anon_sym_Undefined] = ACTIONS(2930), - [anon_sym_undefined] = ACTIONS(2930), - [anon_sym_UNDEFINED] = ACTIONS(2930), - [anon_sym_get] = ACTIONS(2930), - [anon_sym_set] = ACTIONS(2930), - [anon_sym_POUND] = ACTIONS(2930), - [sym_hash_empty] = ACTIONS(2928), - [anon_sym_export] = ACTIONS(2930), - [anon_sym_QueryExecute] = ACTIONS(2930), - [anon_sym_queryexecute] = ACTIONS(2930), - [anon_sym_QUERYEXECUTE] = ACTIONS(2930), - [anon_sym_queryExecute] = ACTIONS(2930), - [anon_sym_BQUOTE] = ACTIONS(2930), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2928), - [anon_sym_Abstract] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2930), - [anon_sym_ABSTRACT] = ACTIONS(2930), - [anon_sym_Break] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_BREAK] = ACTIONS(2930), - [anon_sym_Case] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_CASE] = ACTIONS(2930), - [anon_sym_Component] = ACTIONS(2930), - [anon_sym_component] = ACTIONS(2930), - [anon_sym_COMPONENT] = ACTIONS(2930), - [anon_sym_Continue] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_CONTINUE] = ACTIONS(2930), - [anon_sym_Debugger] = ACTIONS(2930), - [anon_sym_debugger] = ACTIONS(2930), - [anon_sym_DEBUGGER] = ACTIONS(2930), - [anon_sym_Default] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_DEFAULT] = ACTIONS(2930), - [anon_sym_Do] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_DO] = ACTIONS(2930), - [anon_sym_Final] = ACTIONS(2930), - [anon_sym_final] = ACTIONS(2930), - [anon_sym_FINAL] = ACTIONS(2930), - [anon_sym_For] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_FOR] = ACTIONS(2930), - [anon_sym_Function] = ACTIONS(2930), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_FUNCTION] = ACTIONS(2930), - [anon_sym_If] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_IF] = ACTIONS(2930), - [anon_sym_Import] = ACTIONS(2930), - [anon_sym_import] = ACTIONS(2930), - [anon_sym_IMPORT] = ACTIONS(2930), - [anon_sym_Include] = ACTIONS(2930), - [anon_sym_include] = ACTIONS(2930), - [anon_sym_INCLUDE] = ACTIONS(2930), - [anon_sym_Interface] = ACTIONS(2930), - [anon_sym_interface] = ACTIONS(2930), - [anon_sym_INTERFACE] = ACTIONS(2930), - [anon_sym_New] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_NEW] = ACTIONS(2930), - [anon_sym_Package] = ACTIONS(2930), - [anon_sym_package] = ACTIONS(2930), - [anon_sym_PACKAGE] = ACTIONS(2930), - [anon_sym_Private] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_PRIVATE] = ACTIONS(2930), - [anon_sym_Property] = ACTIONS(2930), - [anon_sym_property] = ACTIONS(2930), - [anon_sym_PROPERTY] = ACTIONS(2930), - [anon_sym_Public] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_PUBLIC] = ACTIONS(2930), - [anon_sym_Remote] = ACTIONS(2930), - [anon_sym_remote] = ACTIONS(2930), - [anon_sym_REMOTE] = ACTIONS(2930), - [anon_sym_Return] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_RETURN] = ACTIONS(2930), - [anon_sym_Static] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_STATIC] = ACTIONS(2930), - [anon_sym_Switch] = ACTIONS(2930), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_SWITCH] = ACTIONS(2930), - [anon_sym_Throw] = ACTIONS(2930), - [anon_sym_throw] = ACTIONS(2930), - [anon_sym_THROW] = ACTIONS(2930), - [anon_sym_Try] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_TRY] = ACTIONS(2930), - [anon_sym_Var] = ACTIONS(2930), - [anon_sym_var] = ACTIONS(2930), - [anon_sym_VAR] = ACTIONS(2930), - [anon_sym_While] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_WHILE] = ACTIONS(2930), - [anon_sym_With] = ACTIONS(2930), - [anon_sym_with] = ACTIONS(2930), - [anon_sym_WITH] = ACTIONS(2930), - [sym_cf_comment] = ACTIONS(2928), - [sym__java_block_open] = ACTIONS(2928), - [sym__static_type_prefix] = ACTIONS(2928), + [STATE(916)] = { + [ts_builtin_sym_end] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_let] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_Query] = ACTIONS(3016), + [anon_sym_query] = ACTIONS(3016), + [anon_sym_QUERY] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [aux_sym_unary_operator_token1] = ACTIONS(3016), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3016), + [aux_sym_number_token2] = ACTIONS(3014), + [anon_sym_This] = ACTIONS(3016), + [anon_sym_this] = ACTIONS(3016), + [anon_sym_THIS] = ACTIONS(3016), + [anon_sym_Super] = ACTIONS(3016), + [anon_sym_super] = ACTIONS(3016), + [anon_sym_SUPER] = ACTIONS(3016), + [anon_sym_True] = ACTIONS(3016), + [anon_sym_true] = ACTIONS(3016), + [anon_sym_TRUE] = ACTIONS(3016), + [anon_sym_False] = ACTIONS(3016), + [anon_sym_false] = ACTIONS(3016), + [anon_sym_FALSE] = ACTIONS(3016), + [anon_sym_Null] = ACTIONS(3016), + [anon_sym_null] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_Undefined] = ACTIONS(3016), + [anon_sym_undefined] = ACTIONS(3016), + [anon_sym_UNDEFINED] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [sym_hash_empty] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_QueryExecute] = ACTIONS(3016), + [anon_sym_queryexecute] = ACTIONS(3016), + [anon_sym_QUERYEXECUTE] = ACTIONS(3016), + [anon_sym_queryExecute] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3014), + [anon_sym_Abstract] = ACTIONS(3016), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_ABSTRACT] = ACTIONS(3016), + [anon_sym_Break] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_BREAK] = ACTIONS(3016), + [anon_sym_Case] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_CASE] = ACTIONS(3016), + [anon_sym_Component] = ACTIONS(3016), + [anon_sym_component] = ACTIONS(3016), + [anon_sym_COMPONENT] = ACTIONS(3016), + [anon_sym_Continue] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_CONTINUE] = ACTIONS(3016), + [anon_sym_Debugger] = ACTIONS(3016), + [anon_sym_debugger] = ACTIONS(3016), + [anon_sym_DEBUGGER] = ACTIONS(3016), + [anon_sym_Default] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_DEFAULT] = ACTIONS(3016), + [anon_sym_Do] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_DO] = ACTIONS(3016), + [anon_sym_Final] = ACTIONS(3016), + [anon_sym_final] = ACTIONS(3016), + [anon_sym_FINAL] = ACTIONS(3016), + [anon_sym_For] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_FOR] = ACTIONS(3016), + [anon_sym_Function] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(3016), + [anon_sym_FUNCTION] = ACTIONS(3016), + [anon_sym_If] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_IF] = ACTIONS(3016), + [anon_sym_Import] = ACTIONS(3016), + [anon_sym_import] = ACTIONS(3016), + [anon_sym_IMPORT] = ACTIONS(3016), + [anon_sym_Include] = ACTIONS(3016), + [anon_sym_include] = ACTIONS(3016), + [anon_sym_INCLUDE] = ACTIONS(3016), + [anon_sym_Interface] = ACTIONS(3016), + [anon_sym_interface] = ACTIONS(3016), + [anon_sym_INTERFACE] = ACTIONS(3016), + [anon_sym_New] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_NEW] = ACTIONS(3016), + [anon_sym_Package] = ACTIONS(3016), + [anon_sym_package] = ACTIONS(3016), + [anon_sym_PACKAGE] = ACTIONS(3016), + [anon_sym_Private] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_PRIVATE] = ACTIONS(3016), + [anon_sym_Property] = ACTIONS(3016), + [anon_sym_property] = ACTIONS(3016), + [anon_sym_PROPERTY] = ACTIONS(3016), + [anon_sym_Public] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_PUBLIC] = ACTIONS(3016), + [anon_sym_Remote] = ACTIONS(3016), + [anon_sym_remote] = ACTIONS(3016), + [anon_sym_REMOTE] = ACTIONS(3016), + [anon_sym_Return] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_RETURN] = ACTIONS(3016), + [anon_sym_Static] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_STATIC] = ACTIONS(3016), + [anon_sym_Switch] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_SWITCH] = ACTIONS(3016), + [anon_sym_Throw] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_THROW] = ACTIONS(3016), + [anon_sym_Try] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_TRY] = ACTIONS(3016), + [anon_sym_Var] = ACTIONS(3016), + [anon_sym_var] = ACTIONS(3016), + [anon_sym_VAR] = ACTIONS(3016), + [anon_sym_While] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_WHILE] = ACTIONS(3016), + [anon_sym_With] = ACTIONS(3016), + [anon_sym_with] = ACTIONS(3016), + [anon_sym_WITH] = ACTIONS(3016), + [sym_cf_comment] = ACTIONS(3014), + [sym__java_block_open] = ACTIONS(3014), + [sym__static_type_prefix] = ACTIONS(3014), }, - [STATE(864)] = { - [ts_builtin_sym_end] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_Query] = ACTIONS(2934), - [anon_sym_query] = ACTIONS(2934), - [anon_sym_QUERY] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2932), - [aux_sym_unary_operator_token1] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2934), - [aux_sym_number_token2] = ACTIONS(2932), - [anon_sym_This] = ACTIONS(2934), - [anon_sym_this] = ACTIONS(2934), - [anon_sym_THIS] = ACTIONS(2934), - [anon_sym_Super] = ACTIONS(2934), - [anon_sym_super] = ACTIONS(2934), - [anon_sym_SUPER] = ACTIONS(2934), - [anon_sym_True] = ACTIONS(2934), - [anon_sym_true] = ACTIONS(2934), - [anon_sym_TRUE] = ACTIONS(2934), - [anon_sym_False] = ACTIONS(2934), - [anon_sym_false] = ACTIONS(2934), - [anon_sym_FALSE] = ACTIONS(2934), - [anon_sym_Null] = ACTIONS(2934), - [anon_sym_null] = ACTIONS(2934), - [anon_sym_NULL] = ACTIONS(2934), - [anon_sym_Undefined] = ACTIONS(2934), - [anon_sym_undefined] = ACTIONS(2934), - [anon_sym_UNDEFINED] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(2934), - [anon_sym_set] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [sym_hash_empty] = ACTIONS(2932), - [anon_sym_export] = ACTIONS(2934), - [anon_sym_QueryExecute] = ACTIONS(2934), - [anon_sym_queryexecute] = ACTIONS(2934), - [anon_sym_QUERYEXECUTE] = ACTIONS(2934), - [anon_sym_queryExecute] = ACTIONS(2934), - [anon_sym_BQUOTE] = ACTIONS(2934), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2932), - [anon_sym_Abstract] = ACTIONS(2934), - [anon_sym_abstract] = ACTIONS(2934), - [anon_sym_ABSTRACT] = ACTIONS(2934), - [anon_sym_Break] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_BREAK] = ACTIONS(2934), - [anon_sym_Case] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_CASE] = ACTIONS(2934), - [anon_sym_Component] = ACTIONS(2934), - [anon_sym_component] = ACTIONS(2934), - [anon_sym_COMPONENT] = ACTIONS(2934), - [anon_sym_Continue] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_CONTINUE] = ACTIONS(2934), - [anon_sym_Debugger] = ACTIONS(2934), - [anon_sym_debugger] = ACTIONS(2934), - [anon_sym_DEBUGGER] = ACTIONS(2934), - [anon_sym_Default] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_DEFAULT] = ACTIONS(2934), - [anon_sym_Do] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_DO] = ACTIONS(2934), - [anon_sym_Final] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_FINAL] = ACTIONS(2934), - [anon_sym_For] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_FOR] = ACTIONS(2934), - [anon_sym_Function] = ACTIONS(2934), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_FUNCTION] = ACTIONS(2934), - [anon_sym_If] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_IF] = ACTIONS(2934), - [anon_sym_Import] = ACTIONS(2934), - [anon_sym_import] = ACTIONS(2934), - [anon_sym_IMPORT] = ACTIONS(2934), - [anon_sym_Include] = ACTIONS(2934), - [anon_sym_include] = ACTIONS(2934), - [anon_sym_INCLUDE] = ACTIONS(2934), - [anon_sym_Interface] = ACTIONS(2934), - [anon_sym_interface] = ACTIONS(2934), - [anon_sym_INTERFACE] = ACTIONS(2934), - [anon_sym_New] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_NEW] = ACTIONS(2934), - [anon_sym_Package] = ACTIONS(2934), - [anon_sym_package] = ACTIONS(2934), - [anon_sym_PACKAGE] = ACTIONS(2934), - [anon_sym_Private] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_PRIVATE] = ACTIONS(2934), - [anon_sym_Property] = ACTIONS(2934), - [anon_sym_property] = ACTIONS(2934), - [anon_sym_PROPERTY] = ACTIONS(2934), - [anon_sym_Public] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_PUBLIC] = ACTIONS(2934), - [anon_sym_Remote] = ACTIONS(2934), - [anon_sym_remote] = ACTIONS(2934), - [anon_sym_REMOTE] = ACTIONS(2934), - [anon_sym_Return] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_RETURN] = ACTIONS(2934), - [anon_sym_Static] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_STATIC] = ACTIONS(2934), - [anon_sym_Switch] = ACTIONS(2934), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_SWITCH] = ACTIONS(2934), - [anon_sym_Throw] = ACTIONS(2934), - [anon_sym_throw] = ACTIONS(2934), - [anon_sym_THROW] = ACTIONS(2934), - [anon_sym_Try] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_TRY] = ACTIONS(2934), - [anon_sym_Var] = ACTIONS(2934), - [anon_sym_var] = ACTIONS(2934), - [anon_sym_VAR] = ACTIONS(2934), - [anon_sym_While] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_WHILE] = ACTIONS(2934), - [anon_sym_With] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), - [anon_sym_WITH] = ACTIONS(2934), - [sym_cf_comment] = ACTIONS(2932), - [sym__java_block_open] = ACTIONS(2932), - [sym__static_type_prefix] = ACTIONS(2932), + [STATE(917)] = { + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_Query] = ACTIONS(2700), + [anon_sym_query] = ACTIONS(2700), + [anon_sym_QUERY] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [aux_sym_unary_operator_token1] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2700), + [aux_sym_number_token2] = ACTIONS(2698), + [anon_sym_This] = ACTIONS(2700), + [anon_sym_this] = ACTIONS(2700), + [anon_sym_THIS] = ACTIONS(2700), + [anon_sym_Super] = ACTIONS(2700), + [anon_sym_super] = ACTIONS(2700), + [anon_sym_SUPER] = ACTIONS(2700), + [anon_sym_True] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_TRUE] = ACTIONS(2700), + [anon_sym_False] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_FALSE] = ACTIONS(2700), + [anon_sym_Null] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_Undefined] = ACTIONS(2700), + [anon_sym_undefined] = ACTIONS(2700), + [anon_sym_UNDEFINED] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [sym_hash_empty] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_QueryExecute] = ACTIONS(2700), + [anon_sym_queryexecute] = ACTIONS(2700), + [anon_sym_QUERYEXECUTE] = ACTIONS(2700), + [anon_sym_queryExecute] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(2700), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2698), + [anon_sym_Abstract] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_ABSTRACT] = ACTIONS(2700), + [anon_sym_Break] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_BREAK] = ACTIONS(2700), + [anon_sym_Case] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_CASE] = ACTIONS(2700), + [anon_sym_Component] = ACTIONS(2700), + [anon_sym_component] = ACTIONS(2700), + [anon_sym_COMPONENT] = ACTIONS(2700), + [anon_sym_Continue] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_CONTINUE] = ACTIONS(2700), + [anon_sym_Debugger] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_DEBUGGER] = ACTIONS(2700), + [anon_sym_Default] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_DEFAULT] = ACTIONS(2700), + [anon_sym_Do] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_DO] = ACTIONS(2700), + [anon_sym_Final] = ACTIONS(2700), + [anon_sym_final] = ACTIONS(2700), + [anon_sym_FINAL] = ACTIONS(2700), + [anon_sym_For] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_FOR] = ACTIONS(2700), + [anon_sym_Function] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_FUNCTION] = ACTIONS(2700), + [anon_sym_If] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_IF] = ACTIONS(2700), + [anon_sym_Import] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_IMPORT] = ACTIONS(2700), + [anon_sym_Include] = ACTIONS(2700), + [anon_sym_include] = ACTIONS(2700), + [anon_sym_INCLUDE] = ACTIONS(2700), + [anon_sym_Interface] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_INTERFACE] = ACTIONS(2700), + [anon_sym_New] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_NEW] = ACTIONS(2700), + [anon_sym_Package] = ACTIONS(2700), + [anon_sym_package] = ACTIONS(2700), + [anon_sym_PACKAGE] = ACTIONS(2700), + [anon_sym_Private] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_PRIVATE] = ACTIONS(2700), + [anon_sym_Property] = ACTIONS(2700), + [anon_sym_property] = ACTIONS(2700), + [anon_sym_PROPERTY] = ACTIONS(2700), + [anon_sym_Public] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_PUBLIC] = ACTIONS(2700), + [anon_sym_Remote] = ACTIONS(2700), + [anon_sym_remote] = ACTIONS(2700), + [anon_sym_REMOTE] = ACTIONS(2700), + [anon_sym_Return] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_RETURN] = ACTIONS(2700), + [anon_sym_Static] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_STATIC] = ACTIONS(2700), + [anon_sym_Switch] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_SWITCH] = ACTIONS(2700), + [anon_sym_Throw] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_THROW] = ACTIONS(2700), + [anon_sym_Try] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_TRY] = ACTIONS(2700), + [anon_sym_Var] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [anon_sym_VAR] = ACTIONS(2700), + [anon_sym_While] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_WHILE] = ACTIONS(2700), + [anon_sym_With] = ACTIONS(2700), + [anon_sym_with] = ACTIONS(2700), + [anon_sym_WITH] = ACTIONS(2700), + [sym_cf_comment] = ACTIONS(2698), + [sym__java_block_open] = ACTIONS(2698), + [sym__static_type_prefix] = ACTIONS(2698), }, - [STATE(865)] = { - [ts_builtin_sym_end] = ACTIONS(2940), - [sym_identifier] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_Query] = ACTIONS(2942), - [anon_sym_query] = ACTIONS(2942), - [anon_sym_QUERY] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2940), - [anon_sym_TILDE] = ACTIONS(2940), - [aux_sym_unary_operator_token1] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2940), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2942), - [aux_sym_number_token2] = ACTIONS(2940), - [anon_sym_This] = ACTIONS(2942), - [anon_sym_this] = ACTIONS(2942), - [anon_sym_THIS] = ACTIONS(2942), - [anon_sym_Super] = ACTIONS(2942), - [anon_sym_super] = ACTIONS(2942), - [anon_sym_SUPER] = ACTIONS(2942), - [anon_sym_True] = ACTIONS(2942), - [anon_sym_true] = ACTIONS(2942), - [anon_sym_TRUE] = ACTIONS(2942), - [anon_sym_False] = ACTIONS(2942), - [anon_sym_false] = ACTIONS(2942), - [anon_sym_FALSE] = ACTIONS(2942), - [anon_sym_Null] = ACTIONS(2942), - [anon_sym_null] = ACTIONS(2942), - [anon_sym_NULL] = ACTIONS(2942), - [anon_sym_Undefined] = ACTIONS(2942), - [anon_sym_undefined] = ACTIONS(2942), - [anon_sym_UNDEFINED] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2942), - [sym_hash_empty] = ACTIONS(2940), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_QueryExecute] = ACTIONS(2942), - [anon_sym_queryexecute] = ACTIONS(2942), - [anon_sym_QUERYEXECUTE] = ACTIONS(2942), - [anon_sym_queryExecute] = ACTIONS(2942), - [anon_sym_BQUOTE] = ACTIONS(2942), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2940), - [anon_sym_Abstract] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_ABSTRACT] = ACTIONS(2942), - [anon_sym_Break] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_BREAK] = ACTIONS(2942), - [anon_sym_Case] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_CASE] = ACTIONS(2942), - [anon_sym_Component] = ACTIONS(2942), - [anon_sym_component] = ACTIONS(2942), - [anon_sym_COMPONENT] = ACTIONS(2942), - [anon_sym_Continue] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_CONTINUE] = ACTIONS(2942), - [anon_sym_Debugger] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_DEBUGGER] = ACTIONS(2942), - [anon_sym_Default] = ACTIONS(2942), - [anon_sym_default] = ACTIONS(2942), - [anon_sym_DEFAULT] = ACTIONS(2942), - [anon_sym_Do] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_DO] = ACTIONS(2942), - [anon_sym_Final] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_FINAL] = ACTIONS(2942), - [anon_sym_For] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_FOR] = ACTIONS(2942), - [anon_sym_Function] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_FUNCTION] = ACTIONS(2942), - [anon_sym_If] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_IF] = ACTIONS(2942), - [anon_sym_Import] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_IMPORT] = ACTIONS(2942), - [anon_sym_Include] = ACTIONS(2942), - [anon_sym_include] = ACTIONS(2942), - [anon_sym_INCLUDE] = ACTIONS(2942), - [anon_sym_Interface] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_INTERFACE] = ACTIONS(2942), - [anon_sym_New] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_NEW] = ACTIONS(2942), - [anon_sym_Package] = ACTIONS(2942), - [anon_sym_package] = ACTIONS(2942), - [anon_sym_PACKAGE] = ACTIONS(2942), - [anon_sym_Private] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_PRIVATE] = ACTIONS(2942), - [anon_sym_Property] = ACTIONS(2942), - [anon_sym_property] = ACTIONS(2942), - [anon_sym_PROPERTY] = ACTIONS(2942), - [anon_sym_Public] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_PUBLIC] = ACTIONS(2942), - [anon_sym_Remote] = ACTIONS(2942), - [anon_sym_remote] = ACTIONS(2942), - [anon_sym_REMOTE] = ACTIONS(2942), - [anon_sym_Return] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_RETURN] = ACTIONS(2942), - [anon_sym_Static] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_STATIC] = ACTIONS(2942), - [anon_sym_Switch] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_SWITCH] = ACTIONS(2942), - [anon_sym_Throw] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_THROW] = ACTIONS(2942), - [anon_sym_Try] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_TRY] = ACTIONS(2942), - [anon_sym_Var] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_VAR] = ACTIONS(2942), - [anon_sym_While] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_WHILE] = ACTIONS(2942), - [anon_sym_With] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_WITH] = ACTIONS(2942), - [sym_cf_comment] = ACTIONS(2940), - [sym__java_block_open] = ACTIONS(2940), - [sym__static_type_prefix] = ACTIONS(2940), + [STATE(918)] = { + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_Query] = ACTIONS(3092), + [anon_sym_query] = ACTIONS(3092), + [anon_sym_QUERY] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_SLASH] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_unary_operator_token1] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3090), + [anon_sym_DQUOTE] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3092), + [aux_sym_number_token2] = ACTIONS(3090), + [anon_sym_This] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3092), + [anon_sym_THIS] = ACTIONS(3092), + [anon_sym_Super] = ACTIONS(3092), + [anon_sym_super] = ACTIONS(3092), + [anon_sym_SUPER] = ACTIONS(3092), + [anon_sym_True] = ACTIONS(3092), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_TRUE] = ACTIONS(3092), + [anon_sym_False] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_FALSE] = ACTIONS(3092), + [anon_sym_Null] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_NULL] = ACTIONS(3092), + [anon_sym_Undefined] = ACTIONS(3092), + [anon_sym_undefined] = ACTIONS(3092), + [anon_sym_UNDEFINED] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_POUND] = ACTIONS(3092), + [sym_hash_empty] = ACTIONS(3090), + [anon_sym_export] = ACTIONS(3092), + [anon_sym_QueryExecute] = ACTIONS(3092), + [anon_sym_queryexecute] = ACTIONS(3092), + [anon_sym_QUERYEXECUTE] = ACTIONS(3092), + [anon_sym_queryExecute] = ACTIONS(3092), + [anon_sym_BQUOTE] = ACTIONS(3092), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3090), + [anon_sym_Abstract] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_ABSTRACT] = ACTIONS(3092), + [anon_sym_Break] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_BREAK] = ACTIONS(3092), + [anon_sym_Case] = ACTIONS(3092), + [anon_sym_case] = ACTIONS(3092), + [anon_sym_CASE] = ACTIONS(3092), + [anon_sym_Component] = ACTIONS(3092), + [anon_sym_component] = ACTIONS(3092), + [anon_sym_COMPONENT] = ACTIONS(3092), + [anon_sym_Continue] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_CONTINUE] = ACTIONS(3092), + [anon_sym_Debugger] = ACTIONS(3092), + [anon_sym_debugger] = ACTIONS(3092), + [anon_sym_DEBUGGER] = ACTIONS(3092), + [anon_sym_Default] = ACTIONS(3092), + [anon_sym_default] = ACTIONS(3092), + [anon_sym_DEFAULT] = ACTIONS(3092), + [anon_sym_Do] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_DO] = ACTIONS(3092), + [anon_sym_Final] = ACTIONS(3092), + [anon_sym_final] = ACTIONS(3092), + [anon_sym_FINAL] = ACTIONS(3092), + [anon_sym_For] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_FOR] = ACTIONS(3092), + [anon_sym_Function] = ACTIONS(3092), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_FUNCTION] = ACTIONS(3092), + [anon_sym_If] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_IF] = ACTIONS(3092), + [anon_sym_Import] = ACTIONS(3092), + [anon_sym_import] = ACTIONS(3092), + [anon_sym_IMPORT] = ACTIONS(3092), + [anon_sym_Include] = ACTIONS(3092), + [anon_sym_include] = ACTIONS(3092), + [anon_sym_INCLUDE] = ACTIONS(3092), + [anon_sym_Interface] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_INTERFACE] = ACTIONS(3092), + [anon_sym_New] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_NEW] = ACTIONS(3092), + [anon_sym_Package] = ACTIONS(3092), + [anon_sym_package] = ACTIONS(3092), + [anon_sym_PACKAGE] = ACTIONS(3092), + [anon_sym_Private] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_PRIVATE] = ACTIONS(3092), + [anon_sym_Property] = ACTIONS(3092), + [anon_sym_property] = ACTIONS(3092), + [anon_sym_PROPERTY] = ACTIONS(3092), + [anon_sym_Public] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_PUBLIC] = ACTIONS(3092), + [anon_sym_Remote] = ACTIONS(3092), + [anon_sym_remote] = ACTIONS(3092), + [anon_sym_REMOTE] = ACTIONS(3092), + [anon_sym_Return] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_RETURN] = ACTIONS(3092), + [anon_sym_Static] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_STATIC] = ACTIONS(3092), + [anon_sym_Switch] = ACTIONS(3092), + [anon_sym_switch] = ACTIONS(3092), + [anon_sym_SWITCH] = ACTIONS(3092), + [anon_sym_Throw] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_THROW] = ACTIONS(3092), + [anon_sym_Try] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_TRY] = ACTIONS(3092), + [anon_sym_Var] = ACTIONS(3092), + [anon_sym_var] = ACTIONS(3092), + [anon_sym_VAR] = ACTIONS(3092), + [anon_sym_While] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_WHILE] = ACTIONS(3092), + [anon_sym_With] = ACTIONS(3092), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_WITH] = ACTIONS(3092), + [sym_cf_comment] = ACTIONS(3090), + [sym__java_block_open] = ACTIONS(3090), + [sym__static_type_prefix] = ACTIONS(3090), }, - [STATE(866)] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_Query] = ACTIONS(3070), - [anon_sym_query] = ACTIONS(3070), - [anon_sym_QUERY] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_unary_operator_token1] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3070), - [aux_sym_number_token2] = ACTIONS(3068), - [anon_sym_This] = ACTIONS(3070), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_THIS] = ACTIONS(3070), - [anon_sym_Super] = ACTIONS(3070), - [anon_sym_super] = ACTIONS(3070), - [anon_sym_SUPER] = ACTIONS(3070), - [anon_sym_True] = ACTIONS(3070), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_TRUE] = ACTIONS(3070), - [anon_sym_False] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_FALSE] = ACTIONS(3070), - [anon_sym_Null] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_Undefined] = ACTIONS(3070), - [anon_sym_undefined] = ACTIONS(3070), - [anon_sym_UNDEFINED] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [sym_hash_empty] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_QueryExecute] = ACTIONS(3070), - [anon_sym_queryexecute] = ACTIONS(3070), - [anon_sym_QUERYEXECUTE] = ACTIONS(3070), - [anon_sym_queryExecute] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3068), - [anon_sym_Abstract] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_ABSTRACT] = ACTIONS(3070), - [anon_sym_Break] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_BREAK] = ACTIONS(3070), - [anon_sym_Case] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_CASE] = ACTIONS(3070), - [anon_sym_Component] = ACTIONS(3070), - [anon_sym_component] = ACTIONS(3070), - [anon_sym_COMPONENT] = ACTIONS(3070), - [anon_sym_Continue] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_CONTINUE] = ACTIONS(3070), - [anon_sym_Debugger] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_DEBUGGER] = ACTIONS(3070), - [anon_sym_Default] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_DEFAULT] = ACTIONS(3070), - [anon_sym_Do] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_DO] = ACTIONS(3070), - [anon_sym_Final] = ACTIONS(3070), - [anon_sym_final] = ACTIONS(3070), - [anon_sym_FINAL] = ACTIONS(3070), - [anon_sym_For] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_FOR] = ACTIONS(3070), - [anon_sym_Function] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_FUNCTION] = ACTIONS(3070), - [anon_sym_If] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_IF] = ACTIONS(3070), - [anon_sym_Import] = ACTIONS(3070), - [anon_sym_import] = ACTIONS(3070), - [anon_sym_IMPORT] = ACTIONS(3070), - [anon_sym_Include] = ACTIONS(3070), - [anon_sym_include] = ACTIONS(3070), - [anon_sym_INCLUDE] = ACTIONS(3070), - [anon_sym_Interface] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_INTERFACE] = ACTIONS(3070), - [anon_sym_New] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_NEW] = ACTIONS(3070), - [anon_sym_Package] = ACTIONS(3070), - [anon_sym_package] = ACTIONS(3070), - [anon_sym_PACKAGE] = ACTIONS(3070), - [anon_sym_Private] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_PRIVATE] = ACTIONS(3070), - [anon_sym_Property] = ACTIONS(3070), - [anon_sym_property] = ACTIONS(3070), - [anon_sym_PROPERTY] = ACTIONS(3070), - [anon_sym_Public] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_PUBLIC] = ACTIONS(3070), - [anon_sym_Remote] = ACTIONS(3070), - [anon_sym_remote] = ACTIONS(3070), - [anon_sym_REMOTE] = ACTIONS(3070), - [anon_sym_Return] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_RETURN] = ACTIONS(3070), - [anon_sym_Static] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_STATIC] = ACTIONS(3070), - [anon_sym_Switch] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_SWITCH] = ACTIONS(3070), - [anon_sym_Throw] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_THROW] = ACTIONS(3070), - [anon_sym_Try] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_TRY] = ACTIONS(3070), - [anon_sym_Var] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [anon_sym_VAR] = ACTIONS(3070), - [anon_sym_While] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_WHILE] = ACTIONS(3070), - [anon_sym_With] = ACTIONS(3070), - [anon_sym_with] = ACTIONS(3070), - [anon_sym_WITH] = ACTIONS(3070), - [sym_cf_comment] = ACTIONS(3068), - [sym__java_block_open] = ACTIONS(3068), - [sym__static_type_prefix] = ACTIONS(3068), + [STATE(919)] = { + [ts_builtin_sym_end] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_Query] = ACTIONS(3096), + [anon_sym_query] = ACTIONS(3096), + [anon_sym_QUERY] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [aux_sym_unary_operator_token1] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [anon_sym_DQUOTE] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3096), + [aux_sym_number_token2] = ACTIONS(3094), + [anon_sym_This] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_THIS] = ACTIONS(3096), + [anon_sym_Super] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_SUPER] = ACTIONS(3096), + [anon_sym_True] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_TRUE] = ACTIONS(3096), + [anon_sym_False] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_FALSE] = ACTIONS(3096), + [anon_sym_Null] = ACTIONS(3096), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_NULL] = ACTIONS(3096), + [anon_sym_Undefined] = ACTIONS(3096), + [anon_sym_undefined] = ACTIONS(3096), + [anon_sym_UNDEFINED] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3096), + [sym_hash_empty] = ACTIONS(3094), + [anon_sym_export] = ACTIONS(3096), + [anon_sym_QueryExecute] = ACTIONS(3096), + [anon_sym_queryexecute] = ACTIONS(3096), + [anon_sym_QUERYEXECUTE] = ACTIONS(3096), + [anon_sym_queryExecute] = ACTIONS(3096), + [anon_sym_BQUOTE] = ACTIONS(3096), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3094), + [anon_sym_Abstract] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_ABSTRACT] = ACTIONS(3096), + [anon_sym_Break] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_BREAK] = ACTIONS(3096), + [anon_sym_Case] = ACTIONS(3096), + [anon_sym_case] = ACTIONS(3096), + [anon_sym_CASE] = ACTIONS(3096), + [anon_sym_Component] = ACTIONS(3096), + [anon_sym_component] = ACTIONS(3096), + [anon_sym_COMPONENT] = ACTIONS(3096), + [anon_sym_Continue] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_CONTINUE] = ACTIONS(3096), + [anon_sym_Debugger] = ACTIONS(3096), + [anon_sym_debugger] = ACTIONS(3096), + [anon_sym_DEBUGGER] = ACTIONS(3096), + [anon_sym_Default] = ACTIONS(3096), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_DEFAULT] = ACTIONS(3096), + [anon_sym_Do] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_DO] = ACTIONS(3096), + [anon_sym_Final] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_FINAL] = ACTIONS(3096), + [anon_sym_For] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_FOR] = ACTIONS(3096), + [anon_sym_Function] = ACTIONS(3096), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_FUNCTION] = ACTIONS(3096), + [anon_sym_If] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_IF] = ACTIONS(3096), + [anon_sym_Import] = ACTIONS(3096), + [anon_sym_import] = ACTIONS(3096), + [anon_sym_IMPORT] = ACTIONS(3096), + [anon_sym_Include] = ACTIONS(3096), + [anon_sym_include] = ACTIONS(3096), + [anon_sym_INCLUDE] = ACTIONS(3096), + [anon_sym_Interface] = ACTIONS(3096), + [anon_sym_interface] = ACTIONS(3096), + [anon_sym_INTERFACE] = ACTIONS(3096), + [anon_sym_New] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_NEW] = ACTIONS(3096), + [anon_sym_Package] = ACTIONS(3096), + [anon_sym_package] = ACTIONS(3096), + [anon_sym_PACKAGE] = ACTIONS(3096), + [anon_sym_Private] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_PRIVATE] = ACTIONS(3096), + [anon_sym_Property] = ACTIONS(3096), + [anon_sym_property] = ACTIONS(3096), + [anon_sym_PROPERTY] = ACTIONS(3096), + [anon_sym_Public] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_PUBLIC] = ACTIONS(3096), + [anon_sym_Remote] = ACTIONS(3096), + [anon_sym_remote] = ACTIONS(3096), + [anon_sym_REMOTE] = ACTIONS(3096), + [anon_sym_Return] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_RETURN] = ACTIONS(3096), + [anon_sym_Static] = ACTIONS(3096), + [anon_sym_static] = ACTIONS(3096), + [anon_sym_STATIC] = ACTIONS(3096), + [anon_sym_Switch] = ACTIONS(3096), + [anon_sym_switch] = ACTIONS(3096), + [anon_sym_SWITCH] = ACTIONS(3096), + [anon_sym_Throw] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_THROW] = ACTIONS(3096), + [anon_sym_Try] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_TRY] = ACTIONS(3096), + [anon_sym_Var] = ACTIONS(3096), + [anon_sym_var] = ACTIONS(3096), + [anon_sym_VAR] = ACTIONS(3096), + [anon_sym_While] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_WHILE] = ACTIONS(3096), + [anon_sym_With] = ACTIONS(3096), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_WITH] = ACTIONS(3096), + [sym_cf_comment] = ACTIONS(3094), + [sym__java_block_open] = ACTIONS(3094), + [sym__static_type_prefix] = ACTIONS(3094), }, - [STATE(867)] = { - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2948), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_Query] = ACTIONS(2950), - [anon_sym_query] = ACTIONS(2950), - [anon_sym_QUERY] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2948), - [anon_sym_TILDE] = ACTIONS(2948), - [aux_sym_unary_operator_token1] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2950), - [aux_sym_number_token2] = ACTIONS(2948), - [anon_sym_This] = ACTIONS(2950), - [anon_sym_this] = ACTIONS(2950), - [anon_sym_THIS] = ACTIONS(2950), - [anon_sym_Super] = ACTIONS(2950), - [anon_sym_super] = ACTIONS(2950), - [anon_sym_SUPER] = ACTIONS(2950), - [anon_sym_True] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2950), - [anon_sym_TRUE] = ACTIONS(2950), - [anon_sym_False] = ACTIONS(2950), - [anon_sym_false] = ACTIONS(2950), - [anon_sym_FALSE] = ACTIONS(2950), - [anon_sym_Null] = ACTIONS(2950), - [anon_sym_null] = ACTIONS(2950), - [anon_sym_NULL] = ACTIONS(2950), - [anon_sym_Undefined] = ACTIONS(2950), - [anon_sym_undefined] = ACTIONS(2950), - [anon_sym_UNDEFINED] = ACTIONS(2950), - [anon_sym_get] = ACTIONS(2950), - [anon_sym_set] = ACTIONS(2950), - [anon_sym_POUND] = ACTIONS(2950), - [sym_hash_empty] = ACTIONS(2948), - [anon_sym_export] = ACTIONS(2950), - [anon_sym_QueryExecute] = ACTIONS(2950), - [anon_sym_queryexecute] = ACTIONS(2950), - [anon_sym_QUERYEXECUTE] = ACTIONS(2950), - [anon_sym_queryExecute] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2948), - [anon_sym_Abstract] = ACTIONS(2950), - [anon_sym_abstract] = ACTIONS(2950), - [anon_sym_ABSTRACT] = ACTIONS(2950), - [anon_sym_Break] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_BREAK] = ACTIONS(2950), - [anon_sym_Case] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2950), - [anon_sym_CASE] = ACTIONS(2950), - [anon_sym_Component] = ACTIONS(2950), - [anon_sym_component] = ACTIONS(2950), - [anon_sym_COMPONENT] = ACTIONS(2950), - [anon_sym_Continue] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_CONTINUE] = ACTIONS(2950), - [anon_sym_Debugger] = ACTIONS(2950), - [anon_sym_debugger] = ACTIONS(2950), - [anon_sym_DEBUGGER] = ACTIONS(2950), - [anon_sym_Default] = ACTIONS(2950), - [anon_sym_default] = ACTIONS(2950), - [anon_sym_DEFAULT] = ACTIONS(2950), - [anon_sym_Do] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_DO] = ACTIONS(2950), - [anon_sym_Final] = ACTIONS(2950), - [anon_sym_final] = ACTIONS(2950), - [anon_sym_FINAL] = ACTIONS(2950), - [anon_sym_For] = ACTIONS(2950), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_FOR] = ACTIONS(2950), - [anon_sym_Function] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_FUNCTION] = ACTIONS(2950), - [anon_sym_If] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_IF] = ACTIONS(2950), - [anon_sym_Import] = ACTIONS(2950), - [anon_sym_import] = ACTIONS(2950), - [anon_sym_IMPORT] = ACTIONS(2950), - [anon_sym_Include] = ACTIONS(2950), - [anon_sym_include] = ACTIONS(2950), - [anon_sym_INCLUDE] = ACTIONS(2950), - [anon_sym_Interface] = ACTIONS(2950), - [anon_sym_interface] = ACTIONS(2950), - [anon_sym_INTERFACE] = ACTIONS(2950), - [anon_sym_New] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_NEW] = ACTIONS(2950), - [anon_sym_Package] = ACTIONS(2950), - [anon_sym_package] = ACTIONS(2950), - [anon_sym_PACKAGE] = ACTIONS(2950), - [anon_sym_Private] = ACTIONS(2950), - [anon_sym_private] = ACTIONS(2950), - [anon_sym_PRIVATE] = ACTIONS(2950), - [anon_sym_Property] = ACTIONS(2950), - [anon_sym_property] = ACTIONS(2950), - [anon_sym_PROPERTY] = ACTIONS(2950), - [anon_sym_Public] = ACTIONS(2950), - [anon_sym_public] = ACTIONS(2950), - [anon_sym_PUBLIC] = ACTIONS(2950), - [anon_sym_Remote] = ACTIONS(2950), - [anon_sym_remote] = ACTIONS(2950), - [anon_sym_REMOTE] = ACTIONS(2950), - [anon_sym_Return] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_RETURN] = ACTIONS(2950), - [anon_sym_Static] = ACTIONS(2950), - [anon_sym_static] = ACTIONS(2950), - [anon_sym_STATIC] = ACTIONS(2950), - [anon_sym_Switch] = ACTIONS(2950), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_SWITCH] = ACTIONS(2950), - [anon_sym_Throw] = ACTIONS(2950), - [anon_sym_throw] = ACTIONS(2950), - [anon_sym_THROW] = ACTIONS(2950), - [anon_sym_Try] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_TRY] = ACTIONS(2950), - [anon_sym_Var] = ACTIONS(2950), - [anon_sym_var] = ACTIONS(2950), - [anon_sym_VAR] = ACTIONS(2950), - [anon_sym_While] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_WHILE] = ACTIONS(2950), - [anon_sym_With] = ACTIONS(2950), - [anon_sym_with] = ACTIONS(2950), - [anon_sym_WITH] = ACTIONS(2950), - [sym_cf_comment] = ACTIONS(2948), - [sym__java_block_open] = ACTIONS(2948), - [sym__static_type_prefix] = ACTIONS(2948), + [STATE(920)] = { + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_RBRACE] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_Query] = ACTIONS(3012), + [anon_sym_query] = ACTIONS(3012), + [anon_sym_QUERY] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_unary_operator_token1] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3012), + [aux_sym_number_token2] = ACTIONS(3010), + [anon_sym_This] = ACTIONS(3012), + [anon_sym_this] = ACTIONS(3012), + [anon_sym_THIS] = ACTIONS(3012), + [anon_sym_Super] = ACTIONS(3012), + [anon_sym_super] = ACTIONS(3012), + [anon_sym_SUPER] = ACTIONS(3012), + [anon_sym_True] = ACTIONS(3012), + [anon_sym_true] = ACTIONS(3012), + [anon_sym_TRUE] = ACTIONS(3012), + [anon_sym_False] = ACTIONS(3012), + [anon_sym_false] = ACTIONS(3012), + [anon_sym_FALSE] = ACTIONS(3012), + [anon_sym_Null] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_Undefined] = ACTIONS(3012), + [anon_sym_undefined] = ACTIONS(3012), + [anon_sym_UNDEFINED] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(3012), + [anon_sym_set] = ACTIONS(3012), + [anon_sym_POUND] = ACTIONS(3012), + [sym_hash_empty] = ACTIONS(3010), + [anon_sym_export] = ACTIONS(3012), + [anon_sym_QueryExecute] = ACTIONS(3012), + [anon_sym_queryexecute] = ACTIONS(3012), + [anon_sym_QUERYEXECUTE] = ACTIONS(3012), + [anon_sym_queryExecute] = ACTIONS(3012), + [anon_sym_BQUOTE] = ACTIONS(3012), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3010), + [anon_sym_Abstract] = ACTIONS(3012), + [anon_sym_abstract] = ACTIONS(3012), + [anon_sym_ABSTRACT] = ACTIONS(3012), + [anon_sym_Break] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_BREAK] = ACTIONS(3012), + [anon_sym_Case] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_CASE] = ACTIONS(3012), + [anon_sym_Component] = ACTIONS(3012), + [anon_sym_component] = ACTIONS(3012), + [anon_sym_COMPONENT] = ACTIONS(3012), + [anon_sym_Continue] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_CONTINUE] = ACTIONS(3012), + [anon_sym_Debugger] = ACTIONS(3012), + [anon_sym_debugger] = ACTIONS(3012), + [anon_sym_DEBUGGER] = ACTIONS(3012), + [anon_sym_Default] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_DEFAULT] = ACTIONS(3012), + [anon_sym_Do] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_DO] = ACTIONS(3012), + [anon_sym_Final] = ACTIONS(3012), + [anon_sym_final] = ACTIONS(3012), + [anon_sym_FINAL] = ACTIONS(3012), + [anon_sym_For] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_FOR] = ACTIONS(3012), + [anon_sym_Function] = ACTIONS(3012), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_FUNCTION] = ACTIONS(3012), + [anon_sym_If] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_IF] = ACTIONS(3012), + [anon_sym_Import] = ACTIONS(3012), + [anon_sym_import] = ACTIONS(3012), + [anon_sym_IMPORT] = ACTIONS(3012), + [anon_sym_Include] = ACTIONS(3012), + [anon_sym_include] = ACTIONS(3012), + [anon_sym_INCLUDE] = ACTIONS(3012), + [anon_sym_Interface] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_INTERFACE] = ACTIONS(3012), + [anon_sym_New] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_NEW] = ACTIONS(3012), + [anon_sym_Package] = ACTIONS(3012), + [anon_sym_package] = ACTIONS(3012), + [anon_sym_PACKAGE] = ACTIONS(3012), + [anon_sym_Private] = ACTIONS(3012), + [anon_sym_private] = ACTIONS(3012), + [anon_sym_PRIVATE] = ACTIONS(3012), + [anon_sym_Property] = ACTIONS(3012), + [anon_sym_property] = ACTIONS(3012), + [anon_sym_PROPERTY] = ACTIONS(3012), + [anon_sym_Public] = ACTIONS(3012), + [anon_sym_public] = ACTIONS(3012), + [anon_sym_PUBLIC] = ACTIONS(3012), + [anon_sym_Remote] = ACTIONS(3012), + [anon_sym_remote] = ACTIONS(3012), + [anon_sym_REMOTE] = ACTIONS(3012), + [anon_sym_Return] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_RETURN] = ACTIONS(3012), + [anon_sym_Static] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_STATIC] = ACTIONS(3012), + [anon_sym_Switch] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_SWITCH] = ACTIONS(3012), + [anon_sym_Throw] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_THROW] = ACTIONS(3012), + [anon_sym_Try] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_TRY] = ACTIONS(3012), + [anon_sym_Var] = ACTIONS(3012), + [anon_sym_var] = ACTIONS(3012), + [anon_sym_VAR] = ACTIONS(3012), + [anon_sym_While] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_WHILE] = ACTIONS(3012), + [anon_sym_With] = ACTIONS(3012), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_WITH] = ACTIONS(3012), + [sym_cf_comment] = ACTIONS(3010), + [sym__java_block_open] = ACTIONS(3010), + [sym__static_type_prefix] = ACTIONS(3010), }, - [STATE(868)] = { - [ts_builtin_sym_end] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_Query] = ACTIONS(2954), - [anon_sym_query] = ACTIONS(2954), - [anon_sym_QUERY] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2952), - [aux_sym_unary_operator_token1] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2952), - [anon_sym_DASH_DASH] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2952), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2954), - [aux_sym_number_token2] = ACTIONS(2952), - [anon_sym_This] = ACTIONS(2954), - [anon_sym_this] = ACTIONS(2954), - [anon_sym_THIS] = ACTIONS(2954), - [anon_sym_Super] = ACTIONS(2954), - [anon_sym_super] = ACTIONS(2954), - [anon_sym_SUPER] = ACTIONS(2954), - [anon_sym_True] = ACTIONS(2954), - [anon_sym_true] = ACTIONS(2954), - [anon_sym_TRUE] = ACTIONS(2954), - [anon_sym_False] = ACTIONS(2954), - [anon_sym_false] = ACTIONS(2954), - [anon_sym_FALSE] = ACTIONS(2954), - [anon_sym_Null] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2954), - [anon_sym_NULL] = ACTIONS(2954), - [anon_sym_Undefined] = ACTIONS(2954), - [anon_sym_undefined] = ACTIONS(2954), - [anon_sym_UNDEFINED] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2954), - [anon_sym_set] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2954), - [sym_hash_empty] = ACTIONS(2952), - [anon_sym_export] = ACTIONS(2954), - [anon_sym_QueryExecute] = ACTIONS(2954), - [anon_sym_queryexecute] = ACTIONS(2954), - [anon_sym_QUERYEXECUTE] = ACTIONS(2954), - [anon_sym_queryExecute] = ACTIONS(2954), - [anon_sym_BQUOTE] = ACTIONS(2954), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2952), - [anon_sym_Abstract] = ACTIONS(2954), - [anon_sym_abstract] = ACTIONS(2954), - [anon_sym_ABSTRACT] = ACTIONS(2954), - [anon_sym_Break] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_BREAK] = ACTIONS(2954), - [anon_sym_Case] = ACTIONS(2954), - [anon_sym_case] = ACTIONS(2954), - [anon_sym_CASE] = ACTIONS(2954), - [anon_sym_Component] = ACTIONS(2954), - [anon_sym_component] = ACTIONS(2954), - [anon_sym_COMPONENT] = ACTIONS(2954), - [anon_sym_Continue] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_CONTINUE] = ACTIONS(2954), - [anon_sym_Debugger] = ACTIONS(2954), - [anon_sym_debugger] = ACTIONS(2954), - [anon_sym_DEBUGGER] = ACTIONS(2954), - [anon_sym_Default] = ACTIONS(2954), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_DEFAULT] = ACTIONS(2954), - [anon_sym_Do] = ACTIONS(2954), - [anon_sym_do] = ACTIONS(2954), - [anon_sym_DO] = ACTIONS(2954), - [anon_sym_Final] = ACTIONS(2954), - [anon_sym_final] = ACTIONS(2954), - [anon_sym_FINAL] = ACTIONS(2954), - [anon_sym_For] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_FOR] = ACTIONS(2954), - [anon_sym_Function] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2954), - [anon_sym_FUNCTION] = ACTIONS(2954), - [anon_sym_If] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_IF] = ACTIONS(2954), - [anon_sym_Import] = ACTIONS(2954), - [anon_sym_import] = ACTIONS(2954), - [anon_sym_IMPORT] = ACTIONS(2954), - [anon_sym_Include] = ACTIONS(2954), - [anon_sym_include] = ACTIONS(2954), - [anon_sym_INCLUDE] = ACTIONS(2954), - [anon_sym_Interface] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_INTERFACE] = ACTIONS(2954), - [anon_sym_New] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2954), - [anon_sym_NEW] = ACTIONS(2954), - [anon_sym_Package] = ACTIONS(2954), - [anon_sym_package] = ACTIONS(2954), - [anon_sym_PACKAGE] = ACTIONS(2954), - [anon_sym_Private] = ACTIONS(2954), - [anon_sym_private] = ACTIONS(2954), - [anon_sym_PRIVATE] = ACTIONS(2954), - [anon_sym_Property] = ACTIONS(2954), - [anon_sym_property] = ACTIONS(2954), - [anon_sym_PROPERTY] = ACTIONS(2954), - [anon_sym_Public] = ACTIONS(2954), - [anon_sym_public] = ACTIONS(2954), - [anon_sym_PUBLIC] = ACTIONS(2954), - [anon_sym_Remote] = ACTIONS(2954), - [anon_sym_remote] = ACTIONS(2954), - [anon_sym_REMOTE] = ACTIONS(2954), - [anon_sym_Return] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_RETURN] = ACTIONS(2954), - [anon_sym_Static] = ACTIONS(2954), - [anon_sym_static] = ACTIONS(2954), - [anon_sym_STATIC] = ACTIONS(2954), - [anon_sym_Switch] = ACTIONS(2954), - [anon_sym_switch] = ACTIONS(2954), - [anon_sym_SWITCH] = ACTIONS(2954), - [anon_sym_Throw] = ACTIONS(2954), - [anon_sym_throw] = ACTIONS(2954), - [anon_sym_THROW] = ACTIONS(2954), - [anon_sym_Try] = ACTIONS(2954), - [anon_sym_try] = ACTIONS(2954), - [anon_sym_TRY] = ACTIONS(2954), - [anon_sym_Var] = ACTIONS(2954), - [anon_sym_var] = ACTIONS(2954), - [anon_sym_VAR] = ACTIONS(2954), - [anon_sym_While] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2954), - [anon_sym_WHILE] = ACTIONS(2954), - [anon_sym_With] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2954), - [anon_sym_WITH] = ACTIONS(2954), - [sym_cf_comment] = ACTIONS(2952), - [sym__java_block_open] = ACTIONS(2952), - [sym__static_type_prefix] = ACTIONS(2952), + [STATE(921)] = { + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_Query] = ACTIONS(2900), + [anon_sym_query] = ACTIONS(2900), + [anon_sym_QUERY] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [aux_sym_unary_operator_token1] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2900), + [aux_sym_number_token2] = ACTIONS(2898), + [anon_sym_This] = ACTIONS(2900), + [anon_sym_this] = ACTIONS(2900), + [anon_sym_THIS] = ACTIONS(2900), + [anon_sym_Super] = ACTIONS(2900), + [anon_sym_super] = ACTIONS(2900), + [anon_sym_SUPER] = ACTIONS(2900), + [anon_sym_True] = ACTIONS(2900), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_TRUE] = ACTIONS(2900), + [anon_sym_False] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_FALSE] = ACTIONS(2900), + [anon_sym_Null] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2900), + [anon_sym_NULL] = ACTIONS(2900), + [anon_sym_Undefined] = ACTIONS(2900), + [anon_sym_undefined] = ACTIONS(2900), + [anon_sym_UNDEFINED] = ACTIONS(2900), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(2900), + [sym_hash_empty] = ACTIONS(2898), + [anon_sym_export] = ACTIONS(2900), + [anon_sym_QueryExecute] = ACTIONS(2900), + [anon_sym_queryexecute] = ACTIONS(2900), + [anon_sym_QUERYEXECUTE] = ACTIONS(2900), + [anon_sym_queryExecute] = ACTIONS(2900), + [anon_sym_BQUOTE] = ACTIONS(2900), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2898), + [anon_sym_Abstract] = ACTIONS(2900), + [anon_sym_abstract] = ACTIONS(2900), + [anon_sym_ABSTRACT] = ACTIONS(2900), + [anon_sym_Break] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_BREAK] = ACTIONS(2900), + [anon_sym_Case] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_CASE] = ACTIONS(2900), + [anon_sym_Component] = ACTIONS(2900), + [anon_sym_component] = ACTIONS(2900), + [anon_sym_COMPONENT] = ACTIONS(2900), + [anon_sym_Continue] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_CONTINUE] = ACTIONS(2900), + [anon_sym_Debugger] = ACTIONS(2900), + [anon_sym_debugger] = ACTIONS(2900), + [anon_sym_DEBUGGER] = ACTIONS(2900), + [anon_sym_Default] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_DEFAULT] = ACTIONS(2900), + [anon_sym_Do] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_DO] = ACTIONS(2900), + [anon_sym_Final] = ACTIONS(2900), + [anon_sym_final] = ACTIONS(2900), + [anon_sym_FINAL] = ACTIONS(2900), + [anon_sym_For] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_FOR] = ACTIONS(2900), + [anon_sym_Function] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_FUNCTION] = ACTIONS(2900), + [anon_sym_If] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_IF] = ACTIONS(2900), + [anon_sym_Import] = ACTIONS(2900), + [anon_sym_import] = ACTIONS(2900), + [anon_sym_IMPORT] = ACTIONS(2900), + [anon_sym_Include] = ACTIONS(2900), + [anon_sym_include] = ACTIONS(2900), + [anon_sym_INCLUDE] = ACTIONS(2900), + [anon_sym_Interface] = ACTIONS(2900), + [anon_sym_interface] = ACTIONS(2900), + [anon_sym_INTERFACE] = ACTIONS(2900), + [anon_sym_New] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_NEW] = ACTIONS(2900), + [anon_sym_Package] = ACTIONS(2900), + [anon_sym_package] = ACTIONS(2900), + [anon_sym_PACKAGE] = ACTIONS(2900), + [anon_sym_Private] = ACTIONS(2900), + [anon_sym_private] = ACTIONS(2900), + [anon_sym_PRIVATE] = ACTIONS(2900), + [anon_sym_Property] = ACTIONS(2900), + [anon_sym_property] = ACTIONS(2900), + [anon_sym_PROPERTY] = ACTIONS(2900), + [anon_sym_Public] = ACTIONS(2900), + [anon_sym_public] = ACTIONS(2900), + [anon_sym_PUBLIC] = ACTIONS(2900), + [anon_sym_Remote] = ACTIONS(2900), + [anon_sym_remote] = ACTIONS(2900), + [anon_sym_REMOTE] = ACTIONS(2900), + [anon_sym_Return] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_RETURN] = ACTIONS(2900), + [anon_sym_Static] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_STATIC] = ACTIONS(2900), + [anon_sym_Switch] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_SWITCH] = ACTIONS(2900), + [anon_sym_Throw] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_THROW] = ACTIONS(2900), + [anon_sym_Try] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_TRY] = ACTIONS(2900), + [anon_sym_Var] = ACTIONS(2900), + [anon_sym_var] = ACTIONS(2900), + [anon_sym_VAR] = ACTIONS(2900), + [anon_sym_While] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_WHILE] = ACTIONS(2900), + [anon_sym_With] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_WITH] = ACTIONS(2900), + [sym_cf_comment] = ACTIONS(2898), + [sym__java_block_open] = ACTIONS(2898), + [sym__static_type_prefix] = ACTIONS(2898), }, - [STATE(869)] = { - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_Query] = ACTIONS(2958), - [anon_sym_query] = ACTIONS(2958), - [anon_sym_QUERY] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_unary_operator_token1] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2956), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2958), - [aux_sym_number_token2] = ACTIONS(2956), - [anon_sym_This] = ACTIONS(2958), - [anon_sym_this] = ACTIONS(2958), - [anon_sym_THIS] = ACTIONS(2958), - [anon_sym_Super] = ACTIONS(2958), - [anon_sym_super] = ACTIONS(2958), - [anon_sym_SUPER] = ACTIONS(2958), - [anon_sym_True] = ACTIONS(2958), - [anon_sym_true] = ACTIONS(2958), - [anon_sym_TRUE] = ACTIONS(2958), - [anon_sym_False] = ACTIONS(2958), - [anon_sym_false] = ACTIONS(2958), - [anon_sym_FALSE] = ACTIONS(2958), - [anon_sym_Null] = ACTIONS(2958), - [anon_sym_null] = ACTIONS(2958), - [anon_sym_NULL] = ACTIONS(2958), - [anon_sym_Undefined] = ACTIONS(2958), - [anon_sym_undefined] = ACTIONS(2958), - [anon_sym_UNDEFINED] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2958), - [sym_hash_empty] = ACTIONS(2956), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_QueryExecute] = ACTIONS(2958), - [anon_sym_queryexecute] = ACTIONS(2958), - [anon_sym_QUERYEXECUTE] = ACTIONS(2958), - [anon_sym_queryExecute] = ACTIONS(2958), - [anon_sym_BQUOTE] = ACTIONS(2958), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2956), - [anon_sym_Abstract] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_ABSTRACT] = ACTIONS(2958), - [anon_sym_Break] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_BREAK] = ACTIONS(2958), - [anon_sym_Case] = ACTIONS(2958), - [anon_sym_case] = ACTIONS(2958), - [anon_sym_CASE] = ACTIONS(2958), - [anon_sym_Component] = ACTIONS(2958), - [anon_sym_component] = ACTIONS(2958), - [anon_sym_COMPONENT] = ACTIONS(2958), - [anon_sym_Continue] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_CONTINUE] = ACTIONS(2958), - [anon_sym_Debugger] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_DEBUGGER] = ACTIONS(2958), - [anon_sym_Default] = ACTIONS(2958), - [anon_sym_default] = ACTIONS(2958), - [anon_sym_DEFAULT] = ACTIONS(2958), - [anon_sym_Do] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_DO] = ACTIONS(2958), - [anon_sym_Final] = ACTIONS(2958), - [anon_sym_final] = ACTIONS(2958), - [anon_sym_FINAL] = ACTIONS(2958), - [anon_sym_For] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_FOR] = ACTIONS(2958), - [anon_sym_Function] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_FUNCTION] = ACTIONS(2958), - [anon_sym_If] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_IF] = ACTIONS(2958), - [anon_sym_Import] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_IMPORT] = ACTIONS(2958), - [anon_sym_Include] = ACTIONS(2958), - [anon_sym_include] = ACTIONS(2958), - [anon_sym_INCLUDE] = ACTIONS(2958), - [anon_sym_Interface] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_INTERFACE] = ACTIONS(2958), - [anon_sym_New] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_NEW] = ACTIONS(2958), - [anon_sym_Package] = ACTIONS(2958), - [anon_sym_package] = ACTIONS(2958), - [anon_sym_PACKAGE] = ACTIONS(2958), - [anon_sym_Private] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_PRIVATE] = ACTIONS(2958), - [anon_sym_Property] = ACTIONS(2958), - [anon_sym_property] = ACTIONS(2958), - [anon_sym_PROPERTY] = ACTIONS(2958), - [anon_sym_Public] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_PUBLIC] = ACTIONS(2958), - [anon_sym_Remote] = ACTIONS(2958), - [anon_sym_remote] = ACTIONS(2958), - [anon_sym_REMOTE] = ACTIONS(2958), - [anon_sym_Return] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_RETURN] = ACTIONS(2958), - [anon_sym_Static] = ACTIONS(2958), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_STATIC] = ACTIONS(2958), - [anon_sym_Switch] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_SWITCH] = ACTIONS(2958), - [anon_sym_Throw] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_THROW] = ACTIONS(2958), - [anon_sym_Try] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_TRY] = ACTIONS(2958), - [anon_sym_Var] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_VAR] = ACTIONS(2958), - [anon_sym_While] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_WHILE] = ACTIONS(2958), - [anon_sym_With] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_WITH] = ACTIONS(2958), - [sym_cf_comment] = ACTIONS(2956), - [sym__java_block_open] = ACTIONS(2956), - [sym__static_type_prefix] = ACTIONS(2956), + [STATE(922)] = { + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_Query] = ACTIONS(3048), + [anon_sym_query] = ACTIONS(3048), + [anon_sym_QUERY] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [aux_sym_unary_operator_token1] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3048), + [aux_sym_number_token2] = ACTIONS(3046), + [anon_sym_This] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3048), + [anon_sym_THIS] = ACTIONS(3048), + [anon_sym_Super] = ACTIONS(3048), + [anon_sym_super] = ACTIONS(3048), + [anon_sym_SUPER] = ACTIONS(3048), + [anon_sym_True] = ACTIONS(3048), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_TRUE] = ACTIONS(3048), + [anon_sym_False] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_FALSE] = ACTIONS(3048), + [anon_sym_Null] = ACTIONS(3048), + [anon_sym_null] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_Undefined] = ACTIONS(3048), + [anon_sym_undefined] = ACTIONS(3048), + [anon_sym_UNDEFINED] = ACTIONS(3048), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_POUND] = ACTIONS(3048), + [sym_hash_empty] = ACTIONS(3046), + [anon_sym_export] = ACTIONS(3048), + [anon_sym_QueryExecute] = ACTIONS(3048), + [anon_sym_queryexecute] = ACTIONS(3048), + [anon_sym_QUERYEXECUTE] = ACTIONS(3048), + [anon_sym_queryExecute] = ACTIONS(3048), + [anon_sym_BQUOTE] = ACTIONS(3048), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3046), + [anon_sym_Abstract] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_ABSTRACT] = ACTIONS(3048), + [anon_sym_Break] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_BREAK] = ACTIONS(3048), + [anon_sym_Case] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_CASE] = ACTIONS(3048), + [anon_sym_Component] = ACTIONS(3048), + [anon_sym_component] = ACTIONS(3048), + [anon_sym_COMPONENT] = ACTIONS(3048), + [anon_sym_Continue] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_CONTINUE] = ACTIONS(3048), + [anon_sym_Debugger] = ACTIONS(3048), + [anon_sym_debugger] = ACTIONS(3048), + [anon_sym_DEBUGGER] = ACTIONS(3048), + [anon_sym_Default] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_DEFAULT] = ACTIONS(3048), + [anon_sym_Do] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_DO] = ACTIONS(3048), + [anon_sym_Final] = ACTIONS(3048), + [anon_sym_final] = ACTIONS(3048), + [anon_sym_FINAL] = ACTIONS(3048), + [anon_sym_For] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_FOR] = ACTIONS(3048), + [anon_sym_Function] = ACTIONS(3048), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_FUNCTION] = ACTIONS(3048), + [anon_sym_If] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_IF] = ACTIONS(3048), + [anon_sym_Import] = ACTIONS(3048), + [anon_sym_import] = ACTIONS(3048), + [anon_sym_IMPORT] = ACTIONS(3048), + [anon_sym_Include] = ACTIONS(3048), + [anon_sym_include] = ACTIONS(3048), + [anon_sym_INCLUDE] = ACTIONS(3048), + [anon_sym_Interface] = ACTIONS(3048), + [anon_sym_interface] = ACTIONS(3048), + [anon_sym_INTERFACE] = ACTIONS(3048), + [anon_sym_New] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_NEW] = ACTIONS(3048), + [anon_sym_Package] = ACTIONS(3048), + [anon_sym_package] = ACTIONS(3048), + [anon_sym_PACKAGE] = ACTIONS(3048), + [anon_sym_Private] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_PRIVATE] = ACTIONS(3048), + [anon_sym_Property] = ACTIONS(3048), + [anon_sym_property] = ACTIONS(3048), + [anon_sym_PROPERTY] = ACTIONS(3048), + [anon_sym_Public] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_PUBLIC] = ACTIONS(3048), + [anon_sym_Remote] = ACTIONS(3048), + [anon_sym_remote] = ACTIONS(3048), + [anon_sym_REMOTE] = ACTIONS(3048), + [anon_sym_Return] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_RETURN] = ACTIONS(3048), + [anon_sym_Static] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_STATIC] = ACTIONS(3048), + [anon_sym_Switch] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_SWITCH] = ACTIONS(3048), + [anon_sym_Throw] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_THROW] = ACTIONS(3048), + [anon_sym_Try] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_TRY] = ACTIONS(3048), + [anon_sym_Var] = ACTIONS(3048), + [anon_sym_var] = ACTIONS(3048), + [anon_sym_VAR] = ACTIONS(3048), + [anon_sym_While] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_WHILE] = ACTIONS(3048), + [anon_sym_With] = ACTIONS(3048), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_WITH] = ACTIONS(3048), + [sym_cf_comment] = ACTIONS(3046), + [sym__java_block_open] = ACTIONS(3046), + [sym__static_type_prefix] = ACTIONS(3046), }, - [STATE(870)] = { - [ts_builtin_sym_end] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_Query] = ACTIONS(2962), - [anon_sym_query] = ACTIONS(2962), - [anon_sym_QUERY] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2960), - [aux_sym_unary_operator_token1] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2962), - [aux_sym_number_token2] = ACTIONS(2960), - [anon_sym_This] = ACTIONS(2962), - [anon_sym_this] = ACTIONS(2962), - [anon_sym_THIS] = ACTIONS(2962), - [anon_sym_Super] = ACTIONS(2962), - [anon_sym_super] = ACTIONS(2962), - [anon_sym_SUPER] = ACTIONS(2962), - [anon_sym_True] = ACTIONS(2962), - [anon_sym_true] = ACTIONS(2962), - [anon_sym_TRUE] = ACTIONS(2962), - [anon_sym_False] = ACTIONS(2962), - [anon_sym_false] = ACTIONS(2962), - [anon_sym_FALSE] = ACTIONS(2962), - [anon_sym_Null] = ACTIONS(2962), - [anon_sym_null] = ACTIONS(2962), - [anon_sym_NULL] = ACTIONS(2962), - [anon_sym_Undefined] = ACTIONS(2962), - [anon_sym_undefined] = ACTIONS(2962), - [anon_sym_UNDEFINED] = ACTIONS(2962), - [anon_sym_get] = ACTIONS(2962), - [anon_sym_set] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2962), - [sym_hash_empty] = ACTIONS(2960), - [anon_sym_export] = ACTIONS(2962), - [anon_sym_QueryExecute] = ACTIONS(2962), - [anon_sym_queryexecute] = ACTIONS(2962), - [anon_sym_QUERYEXECUTE] = ACTIONS(2962), - [anon_sym_queryExecute] = ACTIONS(2962), - [anon_sym_BQUOTE] = ACTIONS(2962), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2960), - [anon_sym_Abstract] = ACTIONS(2962), - [anon_sym_abstract] = ACTIONS(2962), - [anon_sym_ABSTRACT] = ACTIONS(2962), - [anon_sym_Break] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_BREAK] = ACTIONS(2962), - [anon_sym_Case] = ACTIONS(2962), - [anon_sym_case] = ACTIONS(2962), - [anon_sym_CASE] = ACTIONS(2962), - [anon_sym_Component] = ACTIONS(2962), - [anon_sym_component] = ACTIONS(2962), - [anon_sym_COMPONENT] = ACTIONS(2962), - [anon_sym_Continue] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_CONTINUE] = ACTIONS(2962), - [anon_sym_Debugger] = ACTIONS(2962), - [anon_sym_debugger] = ACTIONS(2962), - [anon_sym_DEBUGGER] = ACTIONS(2962), - [anon_sym_Default] = ACTIONS(2962), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_DEFAULT] = ACTIONS(2962), - [anon_sym_Do] = ACTIONS(2962), - [anon_sym_do] = ACTIONS(2962), - [anon_sym_DO] = ACTIONS(2962), - [anon_sym_Final] = ACTIONS(2962), - [anon_sym_final] = ACTIONS(2962), - [anon_sym_FINAL] = ACTIONS(2962), - [anon_sym_For] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_FOR] = ACTIONS(2962), - [anon_sym_Function] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2962), - [anon_sym_FUNCTION] = ACTIONS(2962), - [anon_sym_If] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_IF] = ACTIONS(2962), - [anon_sym_Import] = ACTIONS(2962), - [anon_sym_import] = ACTIONS(2962), - [anon_sym_IMPORT] = ACTIONS(2962), - [anon_sym_Include] = ACTIONS(2962), - [anon_sym_include] = ACTIONS(2962), - [anon_sym_INCLUDE] = ACTIONS(2962), - [anon_sym_Interface] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_INTERFACE] = ACTIONS(2962), - [anon_sym_New] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2962), - [anon_sym_NEW] = ACTIONS(2962), - [anon_sym_Package] = ACTIONS(2962), - [anon_sym_package] = ACTIONS(2962), - [anon_sym_PACKAGE] = ACTIONS(2962), - [anon_sym_Private] = ACTIONS(2962), - [anon_sym_private] = ACTIONS(2962), - [anon_sym_PRIVATE] = ACTIONS(2962), - [anon_sym_Property] = ACTIONS(2962), - [anon_sym_property] = ACTIONS(2962), - [anon_sym_PROPERTY] = ACTIONS(2962), - [anon_sym_Public] = ACTIONS(2962), - [anon_sym_public] = ACTIONS(2962), - [anon_sym_PUBLIC] = ACTIONS(2962), - [anon_sym_Remote] = ACTIONS(2962), - [anon_sym_remote] = ACTIONS(2962), - [anon_sym_REMOTE] = ACTIONS(2962), - [anon_sym_Return] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_RETURN] = ACTIONS(2962), - [anon_sym_Static] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(2962), - [anon_sym_STATIC] = ACTIONS(2962), - [anon_sym_Switch] = ACTIONS(2962), - [anon_sym_switch] = ACTIONS(2962), - [anon_sym_SWITCH] = ACTIONS(2962), - [anon_sym_Throw] = ACTIONS(2962), - [anon_sym_throw] = ACTIONS(2962), - [anon_sym_THROW] = ACTIONS(2962), - [anon_sym_Try] = ACTIONS(2962), - [anon_sym_try] = ACTIONS(2962), - [anon_sym_TRY] = ACTIONS(2962), - [anon_sym_Var] = ACTIONS(2962), - [anon_sym_var] = ACTIONS(2962), - [anon_sym_VAR] = ACTIONS(2962), - [anon_sym_While] = ACTIONS(2962), - [anon_sym_while] = ACTIONS(2962), - [anon_sym_WHILE] = ACTIONS(2962), - [anon_sym_With] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2962), - [anon_sym_WITH] = ACTIONS(2962), - [sym_cf_comment] = ACTIONS(2960), - [sym__java_block_open] = ACTIONS(2960), - [sym__static_type_prefix] = ACTIONS(2960), + [STATE(923)] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_Query] = ACTIONS(2848), + [anon_sym_query] = ACTIONS(2848), + [anon_sym_QUERY] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_SLASH] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [aux_sym_unary_operator_token1] = ACTIONS(2848), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2848), + [aux_sym_number_token2] = ACTIONS(2846), + [anon_sym_This] = ACTIONS(2848), + [anon_sym_this] = ACTIONS(2848), + [anon_sym_THIS] = ACTIONS(2848), + [anon_sym_Super] = ACTIONS(2848), + [anon_sym_super] = ACTIONS(2848), + [anon_sym_SUPER] = ACTIONS(2848), + [anon_sym_True] = ACTIONS(2848), + [anon_sym_true] = ACTIONS(2848), + [anon_sym_TRUE] = ACTIONS(2848), + [anon_sym_False] = ACTIONS(2848), + [anon_sym_false] = ACTIONS(2848), + [anon_sym_FALSE] = ACTIONS(2848), + [anon_sym_Null] = ACTIONS(2848), + [anon_sym_null] = ACTIONS(2848), + [anon_sym_NULL] = ACTIONS(2848), + [anon_sym_Undefined] = ACTIONS(2848), + [anon_sym_undefined] = ACTIONS(2848), + [anon_sym_UNDEFINED] = ACTIONS(2848), + [anon_sym_get] = ACTIONS(2848), + [anon_sym_set] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2848), + [sym_hash_empty] = ACTIONS(2846), + [anon_sym_export] = ACTIONS(2848), + [anon_sym_QueryExecute] = ACTIONS(2848), + [anon_sym_queryexecute] = ACTIONS(2848), + [anon_sym_QUERYEXECUTE] = ACTIONS(2848), + [anon_sym_queryExecute] = ACTIONS(2848), + [anon_sym_BQUOTE] = ACTIONS(2848), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2846), + [anon_sym_Abstract] = ACTIONS(2848), + [anon_sym_abstract] = ACTIONS(2848), + [anon_sym_ABSTRACT] = ACTIONS(2848), + [anon_sym_Break] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_BREAK] = ACTIONS(2848), + [anon_sym_Case] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_CASE] = ACTIONS(2848), + [anon_sym_Component] = ACTIONS(2848), + [anon_sym_component] = ACTIONS(2848), + [anon_sym_COMPONENT] = ACTIONS(2848), + [anon_sym_Continue] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_CONTINUE] = ACTIONS(2848), + [anon_sym_Debugger] = ACTIONS(2848), + [anon_sym_debugger] = ACTIONS(2848), + [anon_sym_DEBUGGER] = ACTIONS(2848), + [anon_sym_Default] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_DEFAULT] = ACTIONS(2848), + [anon_sym_Do] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_DO] = ACTIONS(2848), + [anon_sym_Final] = ACTIONS(2848), + [anon_sym_final] = ACTIONS(2848), + [anon_sym_FINAL] = ACTIONS(2848), + [anon_sym_For] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_FOR] = ACTIONS(2848), + [anon_sym_Function] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_FUNCTION] = ACTIONS(2848), + [anon_sym_If] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_IF] = ACTIONS(2848), + [anon_sym_Import] = ACTIONS(2848), + [anon_sym_import] = ACTIONS(2848), + [anon_sym_IMPORT] = ACTIONS(2848), + [anon_sym_Include] = ACTIONS(2848), + [anon_sym_include] = ACTIONS(2848), + [anon_sym_INCLUDE] = ACTIONS(2848), + [anon_sym_Interface] = ACTIONS(2848), + [anon_sym_interface] = ACTIONS(2848), + [anon_sym_INTERFACE] = ACTIONS(2848), + [anon_sym_New] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_NEW] = ACTIONS(2848), + [anon_sym_Package] = ACTIONS(2848), + [anon_sym_package] = ACTIONS(2848), + [anon_sym_PACKAGE] = ACTIONS(2848), + [anon_sym_Private] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_PRIVATE] = ACTIONS(2848), + [anon_sym_Property] = ACTIONS(2848), + [anon_sym_property] = ACTIONS(2848), + [anon_sym_PROPERTY] = ACTIONS(2848), + [anon_sym_Public] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_PUBLIC] = ACTIONS(2848), + [anon_sym_Remote] = ACTIONS(2848), + [anon_sym_remote] = ACTIONS(2848), + [anon_sym_REMOTE] = ACTIONS(2848), + [anon_sym_Return] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_RETURN] = ACTIONS(2848), + [anon_sym_Static] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_STATIC] = ACTIONS(2848), + [anon_sym_Switch] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_SWITCH] = ACTIONS(2848), + [anon_sym_Throw] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_THROW] = ACTIONS(2848), + [anon_sym_Try] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_TRY] = ACTIONS(2848), + [anon_sym_Var] = ACTIONS(2848), + [anon_sym_var] = ACTIONS(2848), + [anon_sym_VAR] = ACTIONS(2848), + [anon_sym_While] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_WHILE] = ACTIONS(2848), + [anon_sym_With] = ACTIONS(2848), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_WITH] = ACTIONS(2848), + [sym_cf_comment] = ACTIONS(2846), + [sym__java_block_open] = ACTIONS(2846), + [sym__static_type_prefix] = ACTIONS(2846), }, - [STATE(871)] = { - [ts_builtin_sym_end] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_SEMI] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_Query] = ACTIONS(2966), - [anon_sym_query] = ACTIONS(2966), - [anon_sym_QUERY] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2964), - [anon_sym_TILDE] = ACTIONS(2964), - [aux_sym_unary_operator_token1] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(2964), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2966), - [aux_sym_number_token2] = ACTIONS(2964), - [anon_sym_This] = ACTIONS(2966), - [anon_sym_this] = ACTIONS(2966), - [anon_sym_THIS] = ACTIONS(2966), - [anon_sym_Super] = ACTIONS(2966), - [anon_sym_super] = ACTIONS(2966), - [anon_sym_SUPER] = ACTIONS(2966), - [anon_sym_True] = ACTIONS(2966), - [anon_sym_true] = ACTIONS(2966), - [anon_sym_TRUE] = ACTIONS(2966), - [anon_sym_False] = ACTIONS(2966), - [anon_sym_false] = ACTIONS(2966), - [anon_sym_FALSE] = ACTIONS(2966), - [anon_sym_Null] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_NULL] = ACTIONS(2966), - [anon_sym_Undefined] = ACTIONS(2966), - [anon_sym_undefined] = ACTIONS(2966), - [anon_sym_UNDEFINED] = ACTIONS(2966), - [anon_sym_get] = ACTIONS(2966), - [anon_sym_set] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2966), - [sym_hash_empty] = ACTIONS(2964), - [anon_sym_export] = ACTIONS(2966), - [anon_sym_QueryExecute] = ACTIONS(2966), - [anon_sym_queryexecute] = ACTIONS(2966), - [anon_sym_QUERYEXECUTE] = ACTIONS(2966), - [anon_sym_queryExecute] = ACTIONS(2966), - [anon_sym_BQUOTE] = ACTIONS(2966), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2964), - [anon_sym_Abstract] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_ABSTRACT] = ACTIONS(2966), - [anon_sym_Break] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_BREAK] = ACTIONS(2966), - [anon_sym_Case] = ACTIONS(2966), - [anon_sym_case] = ACTIONS(2966), - [anon_sym_CASE] = ACTIONS(2966), - [anon_sym_Component] = ACTIONS(2966), - [anon_sym_component] = ACTIONS(2966), - [anon_sym_COMPONENT] = ACTIONS(2966), - [anon_sym_Continue] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_CONTINUE] = ACTIONS(2966), - [anon_sym_Debugger] = ACTIONS(2966), - [anon_sym_debugger] = ACTIONS(2966), - [anon_sym_DEBUGGER] = ACTIONS(2966), - [anon_sym_Default] = ACTIONS(2966), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_DEFAULT] = ACTIONS(2966), - [anon_sym_Do] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_DO] = ACTIONS(2966), - [anon_sym_Final] = ACTIONS(2966), - [anon_sym_final] = ACTIONS(2966), - [anon_sym_FINAL] = ACTIONS(2966), - [anon_sym_For] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_FOR] = ACTIONS(2966), - [anon_sym_Function] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_FUNCTION] = ACTIONS(2966), - [anon_sym_If] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_IF] = ACTIONS(2966), - [anon_sym_Import] = ACTIONS(2966), - [anon_sym_import] = ACTIONS(2966), - [anon_sym_IMPORT] = ACTIONS(2966), - [anon_sym_Include] = ACTIONS(2966), - [anon_sym_include] = ACTIONS(2966), - [anon_sym_INCLUDE] = ACTIONS(2966), - [anon_sym_Interface] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_INTERFACE] = ACTIONS(2966), - [anon_sym_New] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_NEW] = ACTIONS(2966), - [anon_sym_Package] = ACTIONS(2966), - [anon_sym_package] = ACTIONS(2966), - [anon_sym_PACKAGE] = ACTIONS(2966), - [anon_sym_Private] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_PRIVATE] = ACTIONS(2966), - [anon_sym_Property] = ACTIONS(2966), - [anon_sym_property] = ACTIONS(2966), - [anon_sym_PROPERTY] = ACTIONS(2966), - [anon_sym_Public] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_PUBLIC] = ACTIONS(2966), - [anon_sym_Remote] = ACTIONS(2966), - [anon_sym_remote] = ACTIONS(2966), - [anon_sym_REMOTE] = ACTIONS(2966), - [anon_sym_Return] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_RETURN] = ACTIONS(2966), - [anon_sym_Static] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_STATIC] = ACTIONS(2966), - [anon_sym_Switch] = ACTIONS(2966), - [anon_sym_switch] = ACTIONS(2966), - [anon_sym_SWITCH] = ACTIONS(2966), - [anon_sym_Throw] = ACTIONS(2966), - [anon_sym_throw] = ACTIONS(2966), - [anon_sym_THROW] = ACTIONS(2966), - [anon_sym_Try] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_TRY] = ACTIONS(2966), - [anon_sym_Var] = ACTIONS(2966), - [anon_sym_var] = ACTIONS(2966), - [anon_sym_VAR] = ACTIONS(2966), - [anon_sym_While] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_WHILE] = ACTIONS(2966), - [anon_sym_With] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_WITH] = ACTIONS(2966), - [sym_cf_comment] = ACTIONS(2964), - [sym__java_block_open] = ACTIONS(2964), - [sym__static_type_prefix] = ACTIONS(2964), + [STATE(924)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3190), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(872)] = { - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_Query] = ACTIONS(2970), - [anon_sym_query] = ACTIONS(2970), - [anon_sym_QUERY] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_unary_operator_token1] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2968), - [anon_sym_DASH_DASH] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(2968), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2970), - [aux_sym_number_token2] = ACTIONS(2968), - [anon_sym_This] = ACTIONS(2970), - [anon_sym_this] = ACTIONS(2970), - [anon_sym_THIS] = ACTIONS(2970), - [anon_sym_Super] = ACTIONS(2970), - [anon_sym_super] = ACTIONS(2970), - [anon_sym_SUPER] = ACTIONS(2970), - [anon_sym_True] = ACTIONS(2970), - [anon_sym_true] = ACTIONS(2970), - [anon_sym_TRUE] = ACTIONS(2970), - [anon_sym_False] = ACTIONS(2970), - [anon_sym_false] = ACTIONS(2970), - [anon_sym_FALSE] = ACTIONS(2970), - [anon_sym_Null] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_NULL] = ACTIONS(2970), - [anon_sym_Undefined] = ACTIONS(2970), - [anon_sym_undefined] = ACTIONS(2970), - [anon_sym_UNDEFINED] = ACTIONS(2970), - [anon_sym_get] = ACTIONS(2970), - [anon_sym_set] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [sym_hash_empty] = ACTIONS(2968), - [anon_sym_export] = ACTIONS(2970), - [anon_sym_QueryExecute] = ACTIONS(2970), - [anon_sym_queryexecute] = ACTIONS(2970), - [anon_sym_QUERYEXECUTE] = ACTIONS(2970), - [anon_sym_queryExecute] = ACTIONS(2970), - [anon_sym_BQUOTE] = ACTIONS(2970), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2968), - [anon_sym_Abstract] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_ABSTRACT] = ACTIONS(2970), - [anon_sym_Break] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_BREAK] = ACTIONS(2970), - [anon_sym_Case] = ACTIONS(2970), - [anon_sym_case] = ACTIONS(2970), - [anon_sym_CASE] = ACTIONS(2970), - [anon_sym_Component] = ACTIONS(2970), - [anon_sym_component] = ACTIONS(2970), - [anon_sym_COMPONENT] = ACTIONS(2970), - [anon_sym_Continue] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_CONTINUE] = ACTIONS(2970), - [anon_sym_Debugger] = ACTIONS(2970), - [anon_sym_debugger] = ACTIONS(2970), - [anon_sym_DEBUGGER] = ACTIONS(2970), - [anon_sym_Default] = ACTIONS(2970), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_DEFAULT] = ACTIONS(2970), - [anon_sym_Do] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_DO] = ACTIONS(2970), - [anon_sym_Final] = ACTIONS(2970), - [anon_sym_final] = ACTIONS(2970), - [anon_sym_FINAL] = ACTIONS(2970), - [anon_sym_For] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_FOR] = ACTIONS(2970), - [anon_sym_Function] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_FUNCTION] = ACTIONS(2970), - [anon_sym_If] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_IF] = ACTIONS(2970), - [anon_sym_Import] = ACTIONS(2970), - [anon_sym_import] = ACTIONS(2970), - [anon_sym_IMPORT] = ACTIONS(2970), - [anon_sym_Include] = ACTIONS(2970), - [anon_sym_include] = ACTIONS(2970), - [anon_sym_INCLUDE] = ACTIONS(2970), - [anon_sym_Interface] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_INTERFACE] = ACTIONS(2970), - [anon_sym_New] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_NEW] = ACTIONS(2970), - [anon_sym_Package] = ACTIONS(2970), - [anon_sym_package] = ACTIONS(2970), - [anon_sym_PACKAGE] = ACTIONS(2970), - [anon_sym_Private] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_PRIVATE] = ACTIONS(2970), - [anon_sym_Property] = ACTIONS(2970), - [anon_sym_property] = ACTIONS(2970), - [anon_sym_PROPERTY] = ACTIONS(2970), - [anon_sym_Public] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_PUBLIC] = ACTIONS(2970), - [anon_sym_Remote] = ACTIONS(2970), - [anon_sym_remote] = ACTIONS(2970), - [anon_sym_REMOTE] = ACTIONS(2970), - [anon_sym_Return] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_RETURN] = ACTIONS(2970), - [anon_sym_Static] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_STATIC] = ACTIONS(2970), - [anon_sym_Switch] = ACTIONS(2970), - [anon_sym_switch] = ACTIONS(2970), - [anon_sym_SWITCH] = ACTIONS(2970), - [anon_sym_Throw] = ACTIONS(2970), - [anon_sym_throw] = ACTIONS(2970), - [anon_sym_THROW] = ACTIONS(2970), - [anon_sym_Try] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_TRY] = ACTIONS(2970), - [anon_sym_Var] = ACTIONS(2970), - [anon_sym_var] = ACTIONS(2970), - [anon_sym_VAR] = ACTIONS(2970), - [anon_sym_While] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_WHILE] = ACTIONS(2970), - [anon_sym_With] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_WITH] = ACTIONS(2970), - [sym_cf_comment] = ACTIONS(2968), - [sym__java_block_open] = ACTIONS(2968), - [sym__static_type_prefix] = ACTIONS(2968), + [STATE(925)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3471), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4653), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(873)] = { - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_SEMI] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_Query] = ACTIONS(2974), - [anon_sym_query] = ACTIONS(2974), - [anon_sym_QUERY] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_unary_operator_token1] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2972), - [anon_sym_DASH_DASH] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2972), - [anon_sym_SQUOTE] = ACTIONS(2972), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2974), - [aux_sym_number_token2] = ACTIONS(2972), - [anon_sym_This] = ACTIONS(2974), - [anon_sym_this] = ACTIONS(2974), - [anon_sym_THIS] = ACTIONS(2974), - [anon_sym_Super] = ACTIONS(2974), - [anon_sym_super] = ACTIONS(2974), - [anon_sym_SUPER] = ACTIONS(2974), - [anon_sym_True] = ACTIONS(2974), - [anon_sym_true] = ACTIONS(2974), - [anon_sym_TRUE] = ACTIONS(2974), - [anon_sym_False] = ACTIONS(2974), - [anon_sym_false] = ACTIONS(2974), - [anon_sym_FALSE] = ACTIONS(2974), - [anon_sym_Null] = ACTIONS(2974), - [anon_sym_null] = ACTIONS(2974), - [anon_sym_NULL] = ACTIONS(2974), - [anon_sym_Undefined] = ACTIONS(2974), - [anon_sym_undefined] = ACTIONS(2974), - [anon_sym_UNDEFINED] = ACTIONS(2974), - [anon_sym_get] = ACTIONS(2974), - [anon_sym_set] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2974), - [sym_hash_empty] = ACTIONS(2972), - [anon_sym_export] = ACTIONS(2974), - [anon_sym_QueryExecute] = ACTIONS(2974), - [anon_sym_queryexecute] = ACTIONS(2974), - [anon_sym_QUERYEXECUTE] = ACTIONS(2974), - [anon_sym_queryExecute] = ACTIONS(2974), - [anon_sym_BQUOTE] = ACTIONS(2974), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2972), - [anon_sym_Abstract] = ACTIONS(2974), - [anon_sym_abstract] = ACTIONS(2974), - [anon_sym_ABSTRACT] = ACTIONS(2974), - [anon_sym_Break] = ACTIONS(2974), - [anon_sym_break] = ACTIONS(2974), - [anon_sym_BREAK] = ACTIONS(2974), - [anon_sym_Case] = ACTIONS(2974), - [anon_sym_case] = ACTIONS(2974), - [anon_sym_CASE] = ACTIONS(2974), - [anon_sym_Component] = ACTIONS(2974), - [anon_sym_component] = ACTIONS(2974), - [anon_sym_COMPONENT] = ACTIONS(2974), - [anon_sym_Continue] = ACTIONS(2974), - [anon_sym_continue] = ACTIONS(2974), - [anon_sym_CONTINUE] = ACTIONS(2974), - [anon_sym_Debugger] = ACTIONS(2974), - [anon_sym_debugger] = ACTIONS(2974), - [anon_sym_DEBUGGER] = ACTIONS(2974), - [anon_sym_Default] = ACTIONS(2974), - [anon_sym_default] = ACTIONS(2974), - [anon_sym_DEFAULT] = ACTIONS(2974), - [anon_sym_Do] = ACTIONS(2974), - [anon_sym_do] = ACTIONS(2974), - [anon_sym_DO] = ACTIONS(2974), - [anon_sym_Final] = ACTIONS(2974), - [anon_sym_final] = ACTIONS(2974), - [anon_sym_FINAL] = ACTIONS(2974), - [anon_sym_For] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2974), - [anon_sym_FOR] = ACTIONS(2974), - [anon_sym_Function] = ACTIONS(2974), - [anon_sym_function] = ACTIONS(2974), - [anon_sym_FUNCTION] = ACTIONS(2974), - [anon_sym_If] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_IF] = ACTIONS(2974), - [anon_sym_Import] = ACTIONS(2974), - [anon_sym_import] = ACTIONS(2974), - [anon_sym_IMPORT] = ACTIONS(2974), - [anon_sym_Include] = ACTIONS(2974), - [anon_sym_include] = ACTIONS(2974), - [anon_sym_INCLUDE] = ACTIONS(2974), - [anon_sym_Interface] = ACTIONS(2974), - [anon_sym_interface] = ACTIONS(2974), - [anon_sym_INTERFACE] = ACTIONS(2974), - [anon_sym_New] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_NEW] = ACTIONS(2974), - [anon_sym_Package] = ACTIONS(2974), - [anon_sym_package] = ACTIONS(2974), - [anon_sym_PACKAGE] = ACTIONS(2974), - [anon_sym_Private] = ACTIONS(2974), - [anon_sym_private] = ACTIONS(2974), - [anon_sym_PRIVATE] = ACTIONS(2974), - [anon_sym_Property] = ACTIONS(2974), - [anon_sym_property] = ACTIONS(2974), - [anon_sym_PROPERTY] = ACTIONS(2974), - [anon_sym_Public] = ACTIONS(2974), - [anon_sym_public] = ACTIONS(2974), - [anon_sym_PUBLIC] = ACTIONS(2974), - [anon_sym_Remote] = ACTIONS(2974), - [anon_sym_remote] = ACTIONS(2974), - [anon_sym_REMOTE] = ACTIONS(2974), - [anon_sym_Return] = ACTIONS(2974), - [anon_sym_return] = ACTIONS(2974), - [anon_sym_RETURN] = ACTIONS(2974), - [anon_sym_Static] = ACTIONS(2974), - [anon_sym_static] = ACTIONS(2974), - [anon_sym_STATIC] = ACTIONS(2974), - [anon_sym_Switch] = ACTIONS(2974), - [anon_sym_switch] = ACTIONS(2974), - [anon_sym_SWITCH] = ACTIONS(2974), - [anon_sym_Throw] = ACTIONS(2974), - [anon_sym_throw] = ACTIONS(2974), - [anon_sym_THROW] = ACTIONS(2974), - [anon_sym_Try] = ACTIONS(2974), - [anon_sym_try] = ACTIONS(2974), - [anon_sym_TRY] = ACTIONS(2974), - [anon_sym_Var] = ACTIONS(2974), - [anon_sym_var] = ACTIONS(2974), - [anon_sym_VAR] = ACTIONS(2974), - [anon_sym_While] = ACTIONS(2974), - [anon_sym_while] = ACTIONS(2974), - [anon_sym_WHILE] = ACTIONS(2974), - [anon_sym_With] = ACTIONS(2974), - [anon_sym_with] = ACTIONS(2974), - [anon_sym_WITH] = ACTIONS(2974), - [sym_cf_comment] = ACTIONS(2972), - [sym__java_block_open] = ACTIONS(2972), - [sym__static_type_prefix] = ACTIONS(2972), + [STATE(926)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4747), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4500), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4757), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3202), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(874)] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_RBRACE] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_Query] = ACTIONS(2978), - [anon_sym_query] = ACTIONS(2978), - [anon_sym_QUERY] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_SLASH] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2976), - [aux_sym_unary_operator_token1] = ACTIONS(2978), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(2976), - [anon_sym_SQUOTE] = ACTIONS(2976), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2978), - [aux_sym_number_token2] = ACTIONS(2976), - [anon_sym_This] = ACTIONS(2978), - [anon_sym_this] = ACTIONS(2978), - [anon_sym_THIS] = ACTIONS(2978), - [anon_sym_Super] = ACTIONS(2978), - [anon_sym_super] = ACTIONS(2978), - [anon_sym_SUPER] = ACTIONS(2978), - [anon_sym_True] = ACTIONS(2978), - [anon_sym_true] = ACTIONS(2978), - [anon_sym_TRUE] = ACTIONS(2978), - [anon_sym_False] = ACTIONS(2978), - [anon_sym_false] = ACTIONS(2978), - [anon_sym_FALSE] = ACTIONS(2978), - [anon_sym_Null] = ACTIONS(2978), - [anon_sym_null] = ACTIONS(2978), - [anon_sym_NULL] = ACTIONS(2978), - [anon_sym_Undefined] = ACTIONS(2978), - [anon_sym_undefined] = ACTIONS(2978), - [anon_sym_UNDEFINED] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(2978), - [anon_sym_set] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2978), - [sym_hash_empty] = ACTIONS(2976), - [anon_sym_export] = ACTIONS(2978), - [anon_sym_QueryExecute] = ACTIONS(2978), - [anon_sym_queryexecute] = ACTIONS(2978), - [anon_sym_QUERYEXECUTE] = ACTIONS(2978), - [anon_sym_queryExecute] = ACTIONS(2978), - [anon_sym_BQUOTE] = ACTIONS(2978), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2976), - [anon_sym_Abstract] = ACTIONS(2978), - [anon_sym_abstract] = ACTIONS(2978), - [anon_sym_ABSTRACT] = ACTIONS(2978), - [anon_sym_Break] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_BREAK] = ACTIONS(2978), - [anon_sym_Case] = ACTIONS(2978), - [anon_sym_case] = ACTIONS(2978), - [anon_sym_CASE] = ACTIONS(2978), - [anon_sym_Component] = ACTIONS(2978), - [anon_sym_component] = ACTIONS(2978), - [anon_sym_COMPONENT] = ACTIONS(2978), - [anon_sym_Continue] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_CONTINUE] = ACTIONS(2978), - [anon_sym_Debugger] = ACTIONS(2978), - [anon_sym_debugger] = ACTIONS(2978), - [anon_sym_DEBUGGER] = ACTIONS(2978), - [anon_sym_Default] = ACTIONS(2978), - [anon_sym_default] = ACTIONS(2978), - [anon_sym_DEFAULT] = ACTIONS(2978), - [anon_sym_Do] = ACTIONS(2978), - [anon_sym_do] = ACTIONS(2978), - [anon_sym_DO] = ACTIONS(2978), - [anon_sym_Final] = ACTIONS(2978), - [anon_sym_final] = ACTIONS(2978), - [anon_sym_FINAL] = ACTIONS(2978), - [anon_sym_For] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_FOR] = ACTIONS(2978), - [anon_sym_Function] = ACTIONS(2978), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_FUNCTION] = ACTIONS(2978), - [anon_sym_If] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_IF] = ACTIONS(2978), - [anon_sym_Import] = ACTIONS(2978), - [anon_sym_import] = ACTIONS(2978), - [anon_sym_IMPORT] = ACTIONS(2978), - [anon_sym_Include] = ACTIONS(2978), - [anon_sym_include] = ACTIONS(2978), - [anon_sym_INCLUDE] = ACTIONS(2978), - [anon_sym_Interface] = ACTIONS(2978), - [anon_sym_interface] = ACTIONS(2978), - [anon_sym_INTERFACE] = ACTIONS(2978), - [anon_sym_New] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(2978), - [anon_sym_NEW] = ACTIONS(2978), - [anon_sym_Package] = ACTIONS(2978), - [anon_sym_package] = ACTIONS(2978), - [anon_sym_PACKAGE] = ACTIONS(2978), - [anon_sym_Private] = ACTIONS(2978), - [anon_sym_private] = ACTIONS(2978), - [anon_sym_PRIVATE] = ACTIONS(2978), - [anon_sym_Property] = ACTIONS(2978), - [anon_sym_property] = ACTIONS(2978), - [anon_sym_PROPERTY] = ACTIONS(2978), - [anon_sym_Public] = ACTIONS(2978), - [anon_sym_public] = ACTIONS(2978), - [anon_sym_PUBLIC] = ACTIONS(2978), - [anon_sym_Remote] = ACTIONS(2978), - [anon_sym_remote] = ACTIONS(2978), - [anon_sym_REMOTE] = ACTIONS(2978), - [anon_sym_Return] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_RETURN] = ACTIONS(2978), - [anon_sym_Static] = ACTIONS(2978), - [anon_sym_static] = ACTIONS(2978), - [anon_sym_STATIC] = ACTIONS(2978), - [anon_sym_Switch] = ACTIONS(2978), - [anon_sym_switch] = ACTIONS(2978), - [anon_sym_SWITCH] = ACTIONS(2978), - [anon_sym_Throw] = ACTIONS(2978), - [anon_sym_throw] = ACTIONS(2978), - [anon_sym_THROW] = ACTIONS(2978), - [anon_sym_Try] = ACTIONS(2978), - [anon_sym_try] = ACTIONS(2978), - [anon_sym_TRY] = ACTIONS(2978), - [anon_sym_Var] = ACTIONS(2978), - [anon_sym_var] = ACTIONS(2978), - [anon_sym_VAR] = ACTIONS(2978), - [anon_sym_While] = ACTIONS(2978), - [anon_sym_while] = ACTIONS(2978), - [anon_sym_WHILE] = ACTIONS(2978), - [anon_sym_With] = ACTIONS(2978), - [anon_sym_with] = ACTIONS(2978), - [anon_sym_WITH] = ACTIONS(2978), - [sym_cf_comment] = ACTIONS(2976), - [sym__java_block_open] = ACTIONS(2976), - [sym__static_type_prefix] = ACTIONS(2976), + [STATE(927)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3204), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(875)] = { - [ts_builtin_sym_end] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_RBRACE] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_SEMI] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2982), - [anon_sym_LBRACK] = ACTIONS(2980), - [anon_sym_Query] = ACTIONS(2982), - [anon_sym_query] = ACTIONS(2982), - [anon_sym_QUERY] = ACTIONS(2982), - [anon_sym_PLUS] = ACTIONS(2982), - [anon_sym_DASH] = ACTIONS(2982), - [anon_sym_SLASH] = ACTIONS(2982), - [anon_sym_BANG] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2980), - [aux_sym_unary_operator_token1] = ACTIONS(2982), - [anon_sym_PLUS_PLUS] = ACTIONS(2980), - [anon_sym_DASH_DASH] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2980), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2982), - [aux_sym_number_token2] = ACTIONS(2980), - [anon_sym_This] = ACTIONS(2982), - [anon_sym_this] = ACTIONS(2982), - [anon_sym_THIS] = ACTIONS(2982), - [anon_sym_Super] = ACTIONS(2982), - [anon_sym_super] = ACTIONS(2982), - [anon_sym_SUPER] = ACTIONS(2982), - [anon_sym_True] = ACTIONS(2982), - [anon_sym_true] = ACTIONS(2982), - [anon_sym_TRUE] = ACTIONS(2982), - [anon_sym_False] = ACTIONS(2982), - [anon_sym_false] = ACTIONS(2982), - [anon_sym_FALSE] = ACTIONS(2982), - [anon_sym_Null] = ACTIONS(2982), - [anon_sym_null] = ACTIONS(2982), - [anon_sym_NULL] = ACTIONS(2982), - [anon_sym_Undefined] = ACTIONS(2982), - [anon_sym_undefined] = ACTIONS(2982), - [anon_sym_UNDEFINED] = ACTIONS(2982), - [anon_sym_get] = ACTIONS(2982), - [anon_sym_set] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2982), - [sym_hash_empty] = ACTIONS(2980), - [anon_sym_export] = ACTIONS(2982), - [anon_sym_QueryExecute] = ACTIONS(2982), - [anon_sym_queryexecute] = ACTIONS(2982), - [anon_sym_QUERYEXECUTE] = ACTIONS(2982), - [anon_sym_queryExecute] = ACTIONS(2982), - [anon_sym_BQUOTE] = ACTIONS(2982), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2980), - [anon_sym_Abstract] = ACTIONS(2982), - [anon_sym_abstract] = ACTIONS(2982), - [anon_sym_ABSTRACT] = ACTIONS(2982), - [anon_sym_Break] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_BREAK] = ACTIONS(2982), - [anon_sym_Case] = ACTIONS(2982), - [anon_sym_case] = ACTIONS(2982), - [anon_sym_CASE] = ACTIONS(2982), - [anon_sym_Component] = ACTIONS(2982), - [anon_sym_component] = ACTIONS(2982), - [anon_sym_COMPONENT] = ACTIONS(2982), - [anon_sym_Continue] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_CONTINUE] = ACTIONS(2982), - [anon_sym_Debugger] = ACTIONS(2982), - [anon_sym_debugger] = ACTIONS(2982), - [anon_sym_DEBUGGER] = ACTIONS(2982), - [anon_sym_Default] = ACTIONS(2982), - [anon_sym_default] = ACTIONS(2982), - [anon_sym_DEFAULT] = ACTIONS(2982), - [anon_sym_Do] = ACTIONS(2982), - [anon_sym_do] = ACTIONS(2982), - [anon_sym_DO] = ACTIONS(2982), - [anon_sym_Final] = ACTIONS(2982), - [anon_sym_final] = ACTIONS(2982), - [anon_sym_FINAL] = ACTIONS(2982), - [anon_sym_For] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_FOR] = ACTIONS(2982), - [anon_sym_Function] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2982), - [anon_sym_FUNCTION] = ACTIONS(2982), - [anon_sym_If] = ACTIONS(2982), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_IF] = ACTIONS(2982), - [anon_sym_Import] = ACTIONS(2982), - [anon_sym_import] = ACTIONS(2982), - [anon_sym_IMPORT] = ACTIONS(2982), - [anon_sym_Include] = ACTIONS(2982), - [anon_sym_include] = ACTIONS(2982), - [anon_sym_INCLUDE] = ACTIONS(2982), - [anon_sym_Interface] = ACTIONS(2982), - [anon_sym_interface] = ACTIONS(2982), - [anon_sym_INTERFACE] = ACTIONS(2982), - [anon_sym_New] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2982), - [anon_sym_NEW] = ACTIONS(2982), - [anon_sym_Package] = ACTIONS(2982), - [anon_sym_package] = ACTIONS(2982), - [anon_sym_PACKAGE] = ACTIONS(2982), - [anon_sym_Private] = ACTIONS(2982), - [anon_sym_private] = ACTIONS(2982), - [anon_sym_PRIVATE] = ACTIONS(2982), - [anon_sym_Property] = ACTIONS(2982), - [anon_sym_property] = ACTIONS(2982), - [anon_sym_PROPERTY] = ACTIONS(2982), - [anon_sym_Public] = ACTIONS(2982), - [anon_sym_public] = ACTIONS(2982), - [anon_sym_PUBLIC] = ACTIONS(2982), - [anon_sym_Remote] = ACTIONS(2982), - [anon_sym_remote] = ACTIONS(2982), - [anon_sym_REMOTE] = ACTIONS(2982), - [anon_sym_Return] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_RETURN] = ACTIONS(2982), - [anon_sym_Static] = ACTIONS(2982), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_STATIC] = ACTIONS(2982), - [anon_sym_Switch] = ACTIONS(2982), - [anon_sym_switch] = ACTIONS(2982), - [anon_sym_SWITCH] = ACTIONS(2982), - [anon_sym_Throw] = ACTIONS(2982), - [anon_sym_throw] = ACTIONS(2982), - [anon_sym_THROW] = ACTIONS(2982), - [anon_sym_Try] = ACTIONS(2982), - [anon_sym_try] = ACTIONS(2982), - [anon_sym_TRY] = ACTIONS(2982), - [anon_sym_Var] = ACTIONS(2982), - [anon_sym_var] = ACTIONS(2982), - [anon_sym_VAR] = ACTIONS(2982), - [anon_sym_While] = ACTIONS(2982), - [anon_sym_while] = ACTIONS(2982), - [anon_sym_WHILE] = ACTIONS(2982), - [anon_sym_With] = ACTIONS(2982), - [anon_sym_with] = ACTIONS(2982), - [anon_sym_WITH] = ACTIONS(2982), - [sym_cf_comment] = ACTIONS(2980), - [sym__java_block_open] = ACTIONS(2980), - [sym__static_type_prefix] = ACTIONS(2980), + [STATE(928)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3471), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(876)] = { - [ts_builtin_sym_end] = ACTIONS(2984), - [sym_identifier] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_RBRACE] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2984), - [anon_sym_Query] = ACTIONS(2986), - [anon_sym_query] = ACTIONS(2986), - [anon_sym_QUERY] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_SLASH] = ACTIONS(2986), - [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2984), - [aux_sym_unary_operator_token1] = ACTIONS(2986), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2984), - [anon_sym_SQUOTE] = ACTIONS(2984), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2986), - [aux_sym_number_token2] = ACTIONS(2984), - [anon_sym_This] = ACTIONS(2986), - [anon_sym_this] = ACTIONS(2986), - [anon_sym_THIS] = ACTIONS(2986), - [anon_sym_Super] = ACTIONS(2986), - [anon_sym_super] = ACTIONS(2986), - [anon_sym_SUPER] = ACTIONS(2986), - [anon_sym_True] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2986), - [anon_sym_TRUE] = ACTIONS(2986), - [anon_sym_False] = ACTIONS(2986), - [anon_sym_false] = ACTIONS(2986), - [anon_sym_FALSE] = ACTIONS(2986), - [anon_sym_Null] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_NULL] = ACTIONS(2986), - [anon_sym_Undefined] = ACTIONS(2986), - [anon_sym_undefined] = ACTIONS(2986), - [anon_sym_UNDEFINED] = ACTIONS(2986), - [anon_sym_get] = ACTIONS(2986), - [anon_sym_set] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(2986), - [sym_hash_empty] = ACTIONS(2984), - [anon_sym_export] = ACTIONS(2986), - [anon_sym_QueryExecute] = ACTIONS(2986), - [anon_sym_queryexecute] = ACTIONS(2986), - [anon_sym_QUERYEXECUTE] = ACTIONS(2986), - [anon_sym_queryExecute] = ACTIONS(2986), - [anon_sym_BQUOTE] = ACTIONS(2986), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2984), - [anon_sym_Abstract] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_ABSTRACT] = ACTIONS(2986), - [anon_sym_Break] = ACTIONS(2986), - [anon_sym_break] = ACTIONS(2986), - [anon_sym_BREAK] = ACTIONS(2986), - [anon_sym_Case] = ACTIONS(2986), - [anon_sym_case] = ACTIONS(2986), - [anon_sym_CASE] = ACTIONS(2986), - [anon_sym_Component] = ACTIONS(2986), - [anon_sym_component] = ACTIONS(2986), - [anon_sym_COMPONENT] = ACTIONS(2986), - [anon_sym_Continue] = ACTIONS(2986), - [anon_sym_continue] = ACTIONS(2986), - [anon_sym_CONTINUE] = ACTIONS(2986), - [anon_sym_Debugger] = ACTIONS(2986), - [anon_sym_debugger] = ACTIONS(2986), - [anon_sym_DEBUGGER] = ACTIONS(2986), - [anon_sym_Default] = ACTIONS(2986), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_DEFAULT] = ACTIONS(2986), - [anon_sym_Do] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_DO] = ACTIONS(2986), - [anon_sym_Final] = ACTIONS(2986), - [anon_sym_final] = ACTIONS(2986), - [anon_sym_FINAL] = ACTIONS(2986), - [anon_sym_For] = ACTIONS(2986), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_FOR] = ACTIONS(2986), - [anon_sym_Function] = ACTIONS(2986), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_FUNCTION] = ACTIONS(2986), - [anon_sym_If] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_IF] = ACTIONS(2986), - [anon_sym_Import] = ACTIONS(2986), - [anon_sym_import] = ACTIONS(2986), - [anon_sym_IMPORT] = ACTIONS(2986), - [anon_sym_Include] = ACTIONS(2986), - [anon_sym_include] = ACTIONS(2986), - [anon_sym_INCLUDE] = ACTIONS(2986), - [anon_sym_Interface] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_INTERFACE] = ACTIONS(2986), - [anon_sym_New] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_NEW] = ACTIONS(2986), - [anon_sym_Package] = ACTIONS(2986), - [anon_sym_package] = ACTIONS(2986), - [anon_sym_PACKAGE] = ACTIONS(2986), - [anon_sym_Private] = ACTIONS(2986), - [anon_sym_private] = ACTIONS(2986), - [anon_sym_PRIVATE] = ACTIONS(2986), - [anon_sym_Property] = ACTIONS(2986), - [anon_sym_property] = ACTIONS(2986), - [anon_sym_PROPERTY] = ACTIONS(2986), - [anon_sym_Public] = ACTIONS(2986), - [anon_sym_public] = ACTIONS(2986), - [anon_sym_PUBLIC] = ACTIONS(2986), - [anon_sym_Remote] = ACTIONS(2986), - [anon_sym_remote] = ACTIONS(2986), - [anon_sym_REMOTE] = ACTIONS(2986), - [anon_sym_Return] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_RETURN] = ACTIONS(2986), - [anon_sym_Static] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_STATIC] = ACTIONS(2986), - [anon_sym_Switch] = ACTIONS(2986), - [anon_sym_switch] = ACTIONS(2986), - [anon_sym_SWITCH] = ACTIONS(2986), - [anon_sym_Throw] = ACTIONS(2986), - [anon_sym_throw] = ACTIONS(2986), - [anon_sym_THROW] = ACTIONS(2986), - [anon_sym_Try] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_TRY] = ACTIONS(2986), - [anon_sym_Var] = ACTIONS(2986), - [anon_sym_var] = ACTIONS(2986), - [anon_sym_VAR] = ACTIONS(2986), - [anon_sym_While] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_WHILE] = ACTIONS(2986), - [anon_sym_With] = ACTIONS(2986), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_WITH] = ACTIONS(2986), - [sym_cf_comment] = ACTIONS(2984), - [sym__java_block_open] = ACTIONS(2984), - [sym__static_type_prefix] = ACTIONS(2984), + [STATE(929)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4653), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(877)] = { - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2988), - [anon_sym_RBRACE] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_Query] = ACTIONS(2990), - [anon_sym_query] = ACTIONS(2990), - [anon_sym_QUERY] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_SLASH] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_unary_operator_token1] = ACTIONS(2990), - [anon_sym_PLUS_PLUS] = ACTIONS(2988), - [anon_sym_DASH_DASH] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [anon_sym_SQUOTE] = ACTIONS(2988), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2990), - [aux_sym_number_token2] = ACTIONS(2988), - [anon_sym_This] = ACTIONS(2990), - [anon_sym_this] = ACTIONS(2990), - [anon_sym_THIS] = ACTIONS(2990), - [anon_sym_Super] = ACTIONS(2990), - [anon_sym_super] = ACTIONS(2990), - [anon_sym_SUPER] = ACTIONS(2990), - [anon_sym_True] = ACTIONS(2990), - [anon_sym_true] = ACTIONS(2990), - [anon_sym_TRUE] = ACTIONS(2990), - [anon_sym_False] = ACTIONS(2990), - [anon_sym_false] = ACTIONS(2990), - [anon_sym_FALSE] = ACTIONS(2990), - [anon_sym_Null] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2990), - [anon_sym_Undefined] = ACTIONS(2990), - [anon_sym_undefined] = ACTIONS(2990), - [anon_sym_UNDEFINED] = ACTIONS(2990), - [anon_sym_get] = ACTIONS(2990), - [anon_sym_set] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2990), - [sym_hash_empty] = ACTIONS(2988), - [anon_sym_export] = ACTIONS(2990), - [anon_sym_QueryExecute] = ACTIONS(2990), - [anon_sym_queryexecute] = ACTIONS(2990), - [anon_sym_QUERYEXECUTE] = ACTIONS(2990), - [anon_sym_queryExecute] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2988), - [anon_sym_Abstract] = ACTIONS(2990), - [anon_sym_abstract] = ACTIONS(2990), - [anon_sym_ABSTRACT] = ACTIONS(2990), - [anon_sym_Break] = ACTIONS(2990), - [anon_sym_break] = ACTIONS(2990), - [anon_sym_BREAK] = ACTIONS(2990), - [anon_sym_Case] = ACTIONS(2990), - [anon_sym_case] = ACTIONS(2990), - [anon_sym_CASE] = ACTIONS(2990), - [anon_sym_Component] = ACTIONS(2990), - [anon_sym_component] = ACTIONS(2990), - [anon_sym_COMPONENT] = ACTIONS(2990), - [anon_sym_Continue] = ACTIONS(2990), - [anon_sym_continue] = ACTIONS(2990), - [anon_sym_CONTINUE] = ACTIONS(2990), - [anon_sym_Debugger] = ACTIONS(2990), - [anon_sym_debugger] = ACTIONS(2990), - [anon_sym_DEBUGGER] = ACTIONS(2990), - [anon_sym_Default] = ACTIONS(2990), - [anon_sym_default] = ACTIONS(2990), - [anon_sym_DEFAULT] = ACTIONS(2990), - [anon_sym_Do] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_DO] = ACTIONS(2990), - [anon_sym_Final] = ACTIONS(2990), - [anon_sym_final] = ACTIONS(2990), - [anon_sym_FINAL] = ACTIONS(2990), - [anon_sym_For] = ACTIONS(2990), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_FOR] = ACTIONS(2990), - [anon_sym_Function] = ACTIONS(2990), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_FUNCTION] = ACTIONS(2990), - [anon_sym_If] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_IF] = ACTIONS(2990), - [anon_sym_Import] = ACTIONS(2990), - [anon_sym_import] = ACTIONS(2990), - [anon_sym_IMPORT] = ACTIONS(2990), - [anon_sym_Include] = ACTIONS(2990), - [anon_sym_include] = ACTIONS(2990), - [anon_sym_INCLUDE] = ACTIONS(2990), - [anon_sym_Interface] = ACTIONS(2990), - [anon_sym_interface] = ACTIONS(2990), - [anon_sym_INTERFACE] = ACTIONS(2990), - [anon_sym_New] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_NEW] = ACTIONS(2990), - [anon_sym_Package] = ACTIONS(2990), - [anon_sym_package] = ACTIONS(2990), - [anon_sym_PACKAGE] = ACTIONS(2990), - [anon_sym_Private] = ACTIONS(2990), - [anon_sym_private] = ACTIONS(2990), - [anon_sym_PRIVATE] = ACTIONS(2990), - [anon_sym_Property] = ACTIONS(2990), - [anon_sym_property] = ACTIONS(2990), - [anon_sym_PROPERTY] = ACTIONS(2990), - [anon_sym_Public] = ACTIONS(2990), - [anon_sym_public] = ACTIONS(2990), - [anon_sym_PUBLIC] = ACTIONS(2990), - [anon_sym_Remote] = ACTIONS(2990), - [anon_sym_remote] = ACTIONS(2990), - [anon_sym_REMOTE] = ACTIONS(2990), - [anon_sym_Return] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_RETURN] = ACTIONS(2990), - [anon_sym_Static] = ACTIONS(2990), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_STATIC] = ACTIONS(2990), - [anon_sym_Switch] = ACTIONS(2990), - [anon_sym_switch] = ACTIONS(2990), - [anon_sym_SWITCH] = ACTIONS(2990), - [anon_sym_Throw] = ACTIONS(2990), - [anon_sym_throw] = ACTIONS(2990), - [anon_sym_THROW] = ACTIONS(2990), - [anon_sym_Try] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_TRY] = ACTIONS(2990), - [anon_sym_Var] = ACTIONS(2990), - [anon_sym_var] = ACTIONS(2990), - [anon_sym_VAR] = ACTIONS(2990), - [anon_sym_While] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_WHILE] = ACTIONS(2990), - [anon_sym_With] = ACTIONS(2990), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_WITH] = ACTIONS(2990), - [sym_cf_comment] = ACTIONS(2988), - [sym__java_block_open] = ACTIONS(2988), - [sym__static_type_prefix] = ACTIONS(2988), + [STATE(930)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3527), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4788), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4788), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4766), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3210), + [anon_sym_EQ] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3212), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(878)] = { - [ts_builtin_sym_end] = ACTIONS(2992), - [sym_identifier] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2992), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2992), - [anon_sym_Query] = ACTIONS(2994), - [anon_sym_query] = ACTIONS(2994), - [anon_sym_QUERY] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_unary_operator_token1] = ACTIONS(2994), - [anon_sym_PLUS_PLUS] = ACTIONS(2992), - [anon_sym_DASH_DASH] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_SQUOTE] = ACTIONS(2992), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2994), - [aux_sym_number_token2] = ACTIONS(2992), - [anon_sym_This] = ACTIONS(2994), - [anon_sym_this] = ACTIONS(2994), - [anon_sym_THIS] = ACTIONS(2994), - [anon_sym_Super] = ACTIONS(2994), - [anon_sym_super] = ACTIONS(2994), - [anon_sym_SUPER] = ACTIONS(2994), - [anon_sym_True] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2994), - [anon_sym_TRUE] = ACTIONS(2994), - [anon_sym_False] = ACTIONS(2994), - [anon_sym_false] = ACTIONS(2994), - [anon_sym_FALSE] = ACTIONS(2994), - [anon_sym_Null] = ACTIONS(2994), - [anon_sym_null] = ACTIONS(2994), - [anon_sym_NULL] = ACTIONS(2994), - [anon_sym_Undefined] = ACTIONS(2994), - [anon_sym_undefined] = ACTIONS(2994), - [anon_sym_UNDEFINED] = ACTIONS(2994), - [anon_sym_get] = ACTIONS(2994), - [anon_sym_set] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2994), - [sym_hash_empty] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2994), - [anon_sym_QueryExecute] = ACTIONS(2994), - [anon_sym_queryexecute] = ACTIONS(2994), - [anon_sym_QUERYEXECUTE] = ACTIONS(2994), - [anon_sym_queryExecute] = ACTIONS(2994), - [anon_sym_BQUOTE] = ACTIONS(2994), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2992), - [anon_sym_Abstract] = ACTIONS(2994), - [anon_sym_abstract] = ACTIONS(2994), - [anon_sym_ABSTRACT] = ACTIONS(2994), - [anon_sym_Break] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_BREAK] = ACTIONS(2994), - [anon_sym_Case] = ACTIONS(2994), - [anon_sym_case] = ACTIONS(2994), - [anon_sym_CASE] = ACTIONS(2994), - [anon_sym_Component] = ACTIONS(2994), - [anon_sym_component] = ACTIONS(2994), - [anon_sym_COMPONENT] = ACTIONS(2994), - [anon_sym_Continue] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_CONTINUE] = ACTIONS(2994), - [anon_sym_Debugger] = ACTIONS(2994), - [anon_sym_debugger] = ACTIONS(2994), - [anon_sym_DEBUGGER] = ACTIONS(2994), - [anon_sym_Default] = ACTIONS(2994), - [anon_sym_default] = ACTIONS(2994), - [anon_sym_DEFAULT] = ACTIONS(2994), - [anon_sym_Do] = ACTIONS(2994), - [anon_sym_do] = ACTIONS(2994), - [anon_sym_DO] = ACTIONS(2994), - [anon_sym_Final] = ACTIONS(2994), - [anon_sym_final] = ACTIONS(2994), - [anon_sym_FINAL] = ACTIONS(2994), - [anon_sym_For] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2994), - [anon_sym_FOR] = ACTIONS(2994), - [anon_sym_Function] = ACTIONS(2994), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_FUNCTION] = ACTIONS(2994), - [anon_sym_If] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_IF] = ACTIONS(2994), - [anon_sym_Import] = ACTIONS(2994), - [anon_sym_import] = ACTIONS(2994), - [anon_sym_IMPORT] = ACTIONS(2994), - [anon_sym_Include] = ACTIONS(2994), - [anon_sym_include] = ACTIONS(2994), - [anon_sym_INCLUDE] = ACTIONS(2994), - [anon_sym_Interface] = ACTIONS(2994), - [anon_sym_interface] = ACTIONS(2994), - [anon_sym_INTERFACE] = ACTIONS(2994), - [anon_sym_New] = ACTIONS(2994), - [anon_sym_new] = ACTIONS(2994), - [anon_sym_NEW] = ACTIONS(2994), - [anon_sym_Package] = ACTIONS(2994), - [anon_sym_package] = ACTIONS(2994), - [anon_sym_PACKAGE] = ACTIONS(2994), - [anon_sym_Private] = ACTIONS(2994), - [anon_sym_private] = ACTIONS(2994), - [anon_sym_PRIVATE] = ACTIONS(2994), - [anon_sym_Property] = ACTIONS(2994), - [anon_sym_property] = ACTIONS(2994), - [anon_sym_PROPERTY] = ACTIONS(2994), - [anon_sym_Public] = ACTIONS(2994), - [anon_sym_public] = ACTIONS(2994), - [anon_sym_PUBLIC] = ACTIONS(2994), - [anon_sym_Remote] = ACTIONS(2994), - [anon_sym_remote] = ACTIONS(2994), - [anon_sym_REMOTE] = ACTIONS(2994), - [anon_sym_Return] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_RETURN] = ACTIONS(2994), - [anon_sym_Static] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2994), - [anon_sym_STATIC] = ACTIONS(2994), - [anon_sym_Switch] = ACTIONS(2994), - [anon_sym_switch] = ACTIONS(2994), - [anon_sym_SWITCH] = ACTIONS(2994), - [anon_sym_Throw] = ACTIONS(2994), - [anon_sym_throw] = ACTIONS(2994), - [anon_sym_THROW] = ACTIONS(2994), - [anon_sym_Try] = ACTIONS(2994), - [anon_sym_try] = ACTIONS(2994), - [anon_sym_TRY] = ACTIONS(2994), - [anon_sym_Var] = ACTIONS(2994), - [anon_sym_var] = ACTIONS(2994), - [anon_sym_VAR] = ACTIONS(2994), - [anon_sym_While] = ACTIONS(2994), - [anon_sym_while] = ACTIONS(2994), - [anon_sym_WHILE] = ACTIONS(2994), - [anon_sym_With] = ACTIONS(2994), - [anon_sym_with] = ACTIONS(2994), - [anon_sym_WITH] = ACTIONS(2994), - [sym_cf_comment] = ACTIONS(2992), - [sym__java_block_open] = ACTIONS(2992), - [sym__static_type_prefix] = ACTIONS(2992), + [STATE(931)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(879)] = { - [ts_builtin_sym_end] = ACTIONS(2996), - [sym_identifier] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_Query] = ACTIONS(2998), - [anon_sym_query] = ACTIONS(2998), - [anon_sym_QUERY] = ACTIONS(2998), - [anon_sym_PLUS] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_SLASH] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2996), - [aux_sym_unary_operator_token1] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_SQUOTE] = ACTIONS(2996), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2998), - [aux_sym_number_token2] = ACTIONS(2996), - [anon_sym_This] = ACTIONS(2998), - [anon_sym_this] = ACTIONS(2998), - [anon_sym_THIS] = ACTIONS(2998), - [anon_sym_Super] = ACTIONS(2998), - [anon_sym_super] = ACTIONS(2998), - [anon_sym_SUPER] = ACTIONS(2998), - [anon_sym_True] = ACTIONS(2998), - [anon_sym_true] = ACTIONS(2998), - [anon_sym_TRUE] = ACTIONS(2998), - [anon_sym_False] = ACTIONS(2998), - [anon_sym_false] = ACTIONS(2998), - [anon_sym_FALSE] = ACTIONS(2998), - [anon_sym_Null] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2998), - [anon_sym_NULL] = ACTIONS(2998), - [anon_sym_Undefined] = ACTIONS(2998), - [anon_sym_undefined] = ACTIONS(2998), - [anon_sym_UNDEFINED] = ACTIONS(2998), - [anon_sym_get] = ACTIONS(2998), - [anon_sym_set] = ACTIONS(2998), - [anon_sym_POUND] = ACTIONS(2998), - [sym_hash_empty] = ACTIONS(2996), - [anon_sym_export] = ACTIONS(2998), - [anon_sym_QueryExecute] = ACTIONS(2998), - [anon_sym_queryexecute] = ACTIONS(2998), - [anon_sym_QUERYEXECUTE] = ACTIONS(2998), - [anon_sym_queryExecute] = ACTIONS(2998), - [anon_sym_BQUOTE] = ACTIONS(2998), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2996), - [anon_sym_Abstract] = ACTIONS(2998), - [anon_sym_abstract] = ACTIONS(2998), - [anon_sym_ABSTRACT] = ACTIONS(2998), - [anon_sym_Break] = ACTIONS(2998), - [anon_sym_break] = ACTIONS(2998), - [anon_sym_BREAK] = ACTIONS(2998), - [anon_sym_Case] = ACTIONS(2998), - [anon_sym_case] = ACTIONS(2998), - [anon_sym_CASE] = ACTIONS(2998), - [anon_sym_Component] = ACTIONS(2998), - [anon_sym_component] = ACTIONS(2998), - [anon_sym_COMPONENT] = ACTIONS(2998), - [anon_sym_Continue] = ACTIONS(2998), - [anon_sym_continue] = ACTIONS(2998), - [anon_sym_CONTINUE] = ACTIONS(2998), - [anon_sym_Debugger] = ACTIONS(2998), - [anon_sym_debugger] = ACTIONS(2998), - [anon_sym_DEBUGGER] = ACTIONS(2998), - [anon_sym_Default] = ACTIONS(2998), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_DEFAULT] = ACTIONS(2998), - [anon_sym_Do] = ACTIONS(2998), - [anon_sym_do] = ACTIONS(2998), - [anon_sym_DO] = ACTIONS(2998), - [anon_sym_Final] = ACTIONS(2998), - [anon_sym_final] = ACTIONS(2998), - [anon_sym_FINAL] = ACTIONS(2998), - [anon_sym_For] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2998), - [anon_sym_FOR] = ACTIONS(2998), - [anon_sym_Function] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_FUNCTION] = ACTIONS(2998), - [anon_sym_If] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2998), - [anon_sym_IF] = ACTIONS(2998), - [anon_sym_Import] = ACTIONS(2998), - [anon_sym_import] = ACTIONS(2998), - [anon_sym_IMPORT] = ACTIONS(2998), - [anon_sym_Include] = ACTIONS(2998), - [anon_sym_include] = ACTIONS(2998), - [anon_sym_INCLUDE] = ACTIONS(2998), - [anon_sym_Interface] = ACTIONS(2998), - [anon_sym_interface] = ACTIONS(2998), - [anon_sym_INTERFACE] = ACTIONS(2998), - [anon_sym_New] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2998), - [anon_sym_NEW] = ACTIONS(2998), - [anon_sym_Package] = ACTIONS(2998), - [anon_sym_package] = ACTIONS(2998), - [anon_sym_PACKAGE] = ACTIONS(2998), - [anon_sym_Private] = ACTIONS(2998), - [anon_sym_private] = ACTIONS(2998), - [anon_sym_PRIVATE] = ACTIONS(2998), - [anon_sym_Property] = ACTIONS(2998), - [anon_sym_property] = ACTIONS(2998), - [anon_sym_PROPERTY] = ACTIONS(2998), - [anon_sym_Public] = ACTIONS(2998), - [anon_sym_public] = ACTIONS(2998), - [anon_sym_PUBLIC] = ACTIONS(2998), - [anon_sym_Remote] = ACTIONS(2998), - [anon_sym_remote] = ACTIONS(2998), - [anon_sym_REMOTE] = ACTIONS(2998), - [anon_sym_Return] = ACTIONS(2998), - [anon_sym_return] = ACTIONS(2998), - [anon_sym_RETURN] = ACTIONS(2998), - [anon_sym_Static] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(2998), - [anon_sym_STATIC] = ACTIONS(2998), - [anon_sym_Switch] = ACTIONS(2998), - [anon_sym_switch] = ACTIONS(2998), - [anon_sym_SWITCH] = ACTIONS(2998), - [anon_sym_Throw] = ACTIONS(2998), - [anon_sym_throw] = ACTIONS(2998), - [anon_sym_THROW] = ACTIONS(2998), - [anon_sym_Try] = ACTIONS(2998), - [anon_sym_try] = ACTIONS(2998), - [anon_sym_TRY] = ACTIONS(2998), - [anon_sym_Var] = ACTIONS(2998), - [anon_sym_var] = ACTIONS(2998), - [anon_sym_VAR] = ACTIONS(2998), - [anon_sym_While] = ACTIONS(2998), - [anon_sym_while] = ACTIONS(2998), - [anon_sym_WHILE] = ACTIONS(2998), - [anon_sym_With] = ACTIONS(2998), - [anon_sym_with] = ACTIONS(2998), - [anon_sym_WITH] = ACTIONS(2998), - [sym_cf_comment] = ACTIONS(2996), - [sym__java_block_open] = ACTIONS(2996), - [sym__static_type_prefix] = ACTIONS(2996), + [STATE(932)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3629), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4728), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4728), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4736), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3216), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(880)] = { - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_RBRACE] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3000), - [anon_sym_SEMI] = ACTIONS(3000), - [anon_sym_let] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_Query] = ACTIONS(3002), - [anon_sym_query] = ACTIONS(3002), - [anon_sym_QUERY] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3000), - [anon_sym_TILDE] = ACTIONS(3000), - [aux_sym_unary_operator_token1] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3000), - [anon_sym_DASH_DASH] = ACTIONS(3000), - [anon_sym_DQUOTE] = ACTIONS(3000), - [anon_sym_SQUOTE] = ACTIONS(3000), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3002), - [aux_sym_number_token2] = ACTIONS(3000), - [anon_sym_This] = ACTIONS(3002), - [anon_sym_this] = ACTIONS(3002), - [anon_sym_THIS] = ACTIONS(3002), - [anon_sym_Super] = ACTIONS(3002), - [anon_sym_super] = ACTIONS(3002), - [anon_sym_SUPER] = ACTIONS(3002), - [anon_sym_True] = ACTIONS(3002), - [anon_sym_true] = ACTIONS(3002), - [anon_sym_TRUE] = ACTIONS(3002), - [anon_sym_False] = ACTIONS(3002), - [anon_sym_false] = ACTIONS(3002), - [anon_sym_FALSE] = ACTIONS(3002), - [anon_sym_Null] = ACTIONS(3002), - [anon_sym_null] = ACTIONS(3002), - [anon_sym_NULL] = ACTIONS(3002), - [anon_sym_Undefined] = ACTIONS(3002), - [anon_sym_undefined] = ACTIONS(3002), - [anon_sym_UNDEFINED] = ACTIONS(3002), - [anon_sym_get] = ACTIONS(3002), - [anon_sym_set] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3002), - [sym_hash_empty] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3002), - [anon_sym_QueryExecute] = ACTIONS(3002), - [anon_sym_queryexecute] = ACTIONS(3002), - [anon_sym_QUERYEXECUTE] = ACTIONS(3002), - [anon_sym_queryExecute] = ACTIONS(3002), - [anon_sym_BQUOTE] = ACTIONS(3002), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3000), - [anon_sym_Abstract] = ACTIONS(3002), - [anon_sym_abstract] = ACTIONS(3002), - [anon_sym_ABSTRACT] = ACTIONS(3002), - [anon_sym_Break] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_BREAK] = ACTIONS(3002), - [anon_sym_Case] = ACTIONS(3002), - [anon_sym_case] = ACTIONS(3002), - [anon_sym_CASE] = ACTIONS(3002), - [anon_sym_Component] = ACTIONS(3002), - [anon_sym_component] = ACTIONS(3002), - [anon_sym_COMPONENT] = ACTIONS(3002), - [anon_sym_Continue] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_CONTINUE] = ACTIONS(3002), - [anon_sym_Debugger] = ACTIONS(3002), - [anon_sym_debugger] = ACTIONS(3002), - [anon_sym_DEBUGGER] = ACTIONS(3002), - [anon_sym_Default] = ACTIONS(3002), - [anon_sym_default] = ACTIONS(3002), - [anon_sym_DEFAULT] = ACTIONS(3002), - [anon_sym_Do] = ACTIONS(3002), - [anon_sym_do] = ACTIONS(3002), - [anon_sym_DO] = ACTIONS(3002), - [anon_sym_Final] = ACTIONS(3002), - [anon_sym_final] = ACTIONS(3002), - [anon_sym_FINAL] = ACTIONS(3002), - [anon_sym_For] = ACTIONS(3002), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_FOR] = ACTIONS(3002), - [anon_sym_Function] = ACTIONS(3002), - [anon_sym_function] = ACTIONS(3002), - [anon_sym_FUNCTION] = ACTIONS(3002), - [anon_sym_If] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_IF] = ACTIONS(3002), - [anon_sym_Import] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(3002), - [anon_sym_IMPORT] = ACTIONS(3002), - [anon_sym_Include] = ACTIONS(3002), - [anon_sym_include] = ACTIONS(3002), - [anon_sym_INCLUDE] = ACTIONS(3002), - [anon_sym_Interface] = ACTIONS(3002), - [anon_sym_interface] = ACTIONS(3002), - [anon_sym_INTERFACE] = ACTIONS(3002), - [anon_sym_New] = ACTIONS(3002), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_NEW] = ACTIONS(3002), - [anon_sym_Package] = ACTIONS(3002), - [anon_sym_package] = ACTIONS(3002), - [anon_sym_PACKAGE] = ACTIONS(3002), - [anon_sym_Private] = ACTIONS(3002), - [anon_sym_private] = ACTIONS(3002), - [anon_sym_PRIVATE] = ACTIONS(3002), - [anon_sym_Property] = ACTIONS(3002), - [anon_sym_property] = ACTIONS(3002), - [anon_sym_PROPERTY] = ACTIONS(3002), - [anon_sym_Public] = ACTIONS(3002), - [anon_sym_public] = ACTIONS(3002), - [anon_sym_PUBLIC] = ACTIONS(3002), - [anon_sym_Remote] = ACTIONS(3002), - [anon_sym_remote] = ACTIONS(3002), - [anon_sym_REMOTE] = ACTIONS(3002), - [anon_sym_Return] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_RETURN] = ACTIONS(3002), - [anon_sym_Static] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_STATIC] = ACTIONS(3002), - [anon_sym_Switch] = ACTIONS(3002), - [anon_sym_switch] = ACTIONS(3002), - [anon_sym_SWITCH] = ACTIONS(3002), - [anon_sym_Throw] = ACTIONS(3002), - [anon_sym_throw] = ACTIONS(3002), - [anon_sym_THROW] = ACTIONS(3002), - [anon_sym_Try] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [anon_sym_TRY] = ACTIONS(3002), - [anon_sym_Var] = ACTIONS(3002), - [anon_sym_var] = ACTIONS(3002), - [anon_sym_VAR] = ACTIONS(3002), - [anon_sym_While] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_WHILE] = ACTIONS(3002), - [anon_sym_With] = ACTIONS(3002), - [anon_sym_with] = ACTIONS(3002), - [anon_sym_WITH] = ACTIONS(3002), - [sym_cf_comment] = ACTIONS(3000), - [sym__java_block_open] = ACTIONS(3000), - [sym__static_type_prefix] = ACTIONS(3000), + [STATE(933)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4747), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4500), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4757), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3218), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(881)] = { - [ts_builtin_sym_end] = ACTIONS(3004), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_Query] = ACTIONS(3006), - [anon_sym_query] = ACTIONS(3006), - [anon_sym_QUERY] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_SLASH] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3004), - [aux_sym_unary_operator_token1] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3004), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3006), - [aux_sym_number_token2] = ACTIONS(3004), - [anon_sym_This] = ACTIONS(3006), - [anon_sym_this] = ACTIONS(3006), - [anon_sym_THIS] = ACTIONS(3006), - [anon_sym_Super] = ACTIONS(3006), - [anon_sym_super] = ACTIONS(3006), - [anon_sym_SUPER] = ACTIONS(3006), - [anon_sym_True] = ACTIONS(3006), - [anon_sym_true] = ACTIONS(3006), - [anon_sym_TRUE] = ACTIONS(3006), - [anon_sym_False] = ACTIONS(3006), - [anon_sym_false] = ACTIONS(3006), - [anon_sym_FALSE] = ACTIONS(3006), - [anon_sym_Null] = ACTIONS(3006), - [anon_sym_null] = ACTIONS(3006), - [anon_sym_NULL] = ACTIONS(3006), - [anon_sym_Undefined] = ACTIONS(3006), - [anon_sym_undefined] = ACTIONS(3006), - [anon_sym_UNDEFINED] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3006), - [sym_hash_empty] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), - [anon_sym_QueryExecute] = ACTIONS(3006), - [anon_sym_queryexecute] = ACTIONS(3006), - [anon_sym_QUERYEXECUTE] = ACTIONS(3006), - [anon_sym_queryExecute] = ACTIONS(3006), - [anon_sym_BQUOTE] = ACTIONS(3006), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3004), - [anon_sym_Abstract] = ACTIONS(3006), - [anon_sym_abstract] = ACTIONS(3006), - [anon_sym_ABSTRACT] = ACTIONS(3006), - [anon_sym_Break] = ACTIONS(3006), - [anon_sym_break] = ACTIONS(3006), - [anon_sym_BREAK] = ACTIONS(3006), - [anon_sym_Case] = ACTIONS(3006), - [anon_sym_case] = ACTIONS(3006), - [anon_sym_CASE] = ACTIONS(3006), - [anon_sym_Component] = ACTIONS(3006), - [anon_sym_component] = ACTIONS(3006), - [anon_sym_COMPONENT] = ACTIONS(3006), - [anon_sym_Continue] = ACTIONS(3006), - [anon_sym_continue] = ACTIONS(3006), - [anon_sym_CONTINUE] = ACTIONS(3006), - [anon_sym_Debugger] = ACTIONS(3006), - [anon_sym_debugger] = ACTIONS(3006), - [anon_sym_DEBUGGER] = ACTIONS(3006), - [anon_sym_Default] = ACTIONS(3006), - [anon_sym_default] = ACTIONS(3006), - [anon_sym_DEFAULT] = ACTIONS(3006), - [anon_sym_Do] = ACTIONS(3006), - [anon_sym_do] = ACTIONS(3006), - [anon_sym_DO] = ACTIONS(3006), - [anon_sym_Final] = ACTIONS(3006), - [anon_sym_final] = ACTIONS(3006), - [anon_sym_FINAL] = ACTIONS(3006), - [anon_sym_For] = ACTIONS(3006), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_FOR] = ACTIONS(3006), - [anon_sym_Function] = ACTIONS(3006), - [anon_sym_function] = ACTIONS(3006), - [anon_sym_FUNCTION] = ACTIONS(3006), - [anon_sym_If] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_IF] = ACTIONS(3006), - [anon_sym_Import] = ACTIONS(3006), - [anon_sym_import] = ACTIONS(3006), - [anon_sym_IMPORT] = ACTIONS(3006), - [anon_sym_Include] = ACTIONS(3006), - [anon_sym_include] = ACTIONS(3006), - [anon_sym_INCLUDE] = ACTIONS(3006), - [anon_sym_Interface] = ACTIONS(3006), - [anon_sym_interface] = ACTIONS(3006), - [anon_sym_INTERFACE] = ACTIONS(3006), - [anon_sym_New] = ACTIONS(3006), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_NEW] = ACTIONS(3006), - [anon_sym_Package] = ACTIONS(3006), - [anon_sym_package] = ACTIONS(3006), - [anon_sym_PACKAGE] = ACTIONS(3006), - [anon_sym_Private] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_PRIVATE] = ACTIONS(3006), - [anon_sym_Property] = ACTIONS(3006), - [anon_sym_property] = ACTIONS(3006), - [anon_sym_PROPERTY] = ACTIONS(3006), - [anon_sym_Public] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_PUBLIC] = ACTIONS(3006), - [anon_sym_Remote] = ACTIONS(3006), - [anon_sym_remote] = ACTIONS(3006), - [anon_sym_REMOTE] = ACTIONS(3006), - [anon_sym_Return] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_RETURN] = ACTIONS(3006), - [anon_sym_Static] = ACTIONS(3006), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_STATIC] = ACTIONS(3006), - [anon_sym_Switch] = ACTIONS(3006), - [anon_sym_switch] = ACTIONS(3006), - [anon_sym_SWITCH] = ACTIONS(3006), - [anon_sym_Throw] = ACTIONS(3006), - [anon_sym_throw] = ACTIONS(3006), - [anon_sym_THROW] = ACTIONS(3006), - [anon_sym_Try] = ACTIONS(3006), - [anon_sym_try] = ACTIONS(3006), - [anon_sym_TRY] = ACTIONS(3006), - [anon_sym_Var] = ACTIONS(3006), - [anon_sym_var] = ACTIONS(3006), - [anon_sym_VAR] = ACTIONS(3006), - [anon_sym_While] = ACTIONS(3006), - [anon_sym_while] = ACTIONS(3006), - [anon_sym_WHILE] = ACTIONS(3006), - [anon_sym_With] = ACTIONS(3006), - [anon_sym_with] = ACTIONS(3006), - [anon_sym_WITH] = ACTIONS(3006), - [sym_cf_comment] = ACTIONS(3004), - [sym__java_block_open] = ACTIONS(3004), - [sym__static_type_prefix] = ACTIONS(3004), + [STATE(934)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3469), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4726), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4726), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4729), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3220), + [anon_sym_EQ] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(882)] = { - [ts_builtin_sym_end] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_RBRACE] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_Query] = ACTIONS(3010), - [anon_sym_query] = ACTIONS(3010), - [anon_sym_QUERY] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3008), - [aux_sym_unary_operator_token1] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3010), - [aux_sym_number_token2] = ACTIONS(3008), - [anon_sym_This] = ACTIONS(3010), - [anon_sym_this] = ACTIONS(3010), - [anon_sym_THIS] = ACTIONS(3010), - [anon_sym_Super] = ACTIONS(3010), - [anon_sym_super] = ACTIONS(3010), - [anon_sym_SUPER] = ACTIONS(3010), - [anon_sym_True] = ACTIONS(3010), - [anon_sym_true] = ACTIONS(3010), - [anon_sym_TRUE] = ACTIONS(3010), - [anon_sym_False] = ACTIONS(3010), - [anon_sym_false] = ACTIONS(3010), - [anon_sym_FALSE] = ACTIONS(3010), - [anon_sym_Null] = ACTIONS(3010), - [anon_sym_null] = ACTIONS(3010), - [anon_sym_NULL] = ACTIONS(3010), - [anon_sym_Undefined] = ACTIONS(3010), - [anon_sym_undefined] = ACTIONS(3010), - [anon_sym_UNDEFINED] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3010), - [sym_hash_empty] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), - [anon_sym_QueryExecute] = ACTIONS(3010), - [anon_sym_queryexecute] = ACTIONS(3010), - [anon_sym_QUERYEXECUTE] = ACTIONS(3010), - [anon_sym_queryExecute] = ACTIONS(3010), - [anon_sym_BQUOTE] = ACTIONS(3010), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3008), - [anon_sym_Abstract] = ACTIONS(3010), - [anon_sym_abstract] = ACTIONS(3010), - [anon_sym_ABSTRACT] = ACTIONS(3010), - [anon_sym_Break] = ACTIONS(3010), - [anon_sym_break] = ACTIONS(3010), - [anon_sym_BREAK] = ACTIONS(3010), - [anon_sym_Case] = ACTIONS(3010), - [anon_sym_case] = ACTIONS(3010), - [anon_sym_CASE] = ACTIONS(3010), - [anon_sym_Component] = ACTIONS(3010), - [anon_sym_component] = ACTIONS(3010), - [anon_sym_COMPONENT] = ACTIONS(3010), - [anon_sym_Continue] = ACTIONS(3010), - [anon_sym_continue] = ACTIONS(3010), - [anon_sym_CONTINUE] = ACTIONS(3010), - [anon_sym_Debugger] = ACTIONS(3010), - [anon_sym_debugger] = ACTIONS(3010), - [anon_sym_DEBUGGER] = ACTIONS(3010), - [anon_sym_Default] = ACTIONS(3010), - [anon_sym_default] = ACTIONS(3010), - [anon_sym_DEFAULT] = ACTIONS(3010), - [anon_sym_Do] = ACTIONS(3010), - [anon_sym_do] = ACTIONS(3010), - [anon_sym_DO] = ACTIONS(3010), - [anon_sym_Final] = ACTIONS(3010), - [anon_sym_final] = ACTIONS(3010), - [anon_sym_FINAL] = ACTIONS(3010), - [anon_sym_For] = ACTIONS(3010), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_FOR] = ACTIONS(3010), - [anon_sym_Function] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(3010), - [anon_sym_FUNCTION] = ACTIONS(3010), - [anon_sym_If] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_IF] = ACTIONS(3010), - [anon_sym_Import] = ACTIONS(3010), - [anon_sym_import] = ACTIONS(3010), - [anon_sym_IMPORT] = ACTIONS(3010), - [anon_sym_Include] = ACTIONS(3010), - [anon_sym_include] = ACTIONS(3010), - [anon_sym_INCLUDE] = ACTIONS(3010), - [anon_sym_Interface] = ACTIONS(3010), - [anon_sym_interface] = ACTIONS(3010), - [anon_sym_INTERFACE] = ACTIONS(3010), - [anon_sym_New] = ACTIONS(3010), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_NEW] = ACTIONS(3010), - [anon_sym_Package] = ACTIONS(3010), - [anon_sym_package] = ACTIONS(3010), - [anon_sym_PACKAGE] = ACTIONS(3010), - [anon_sym_Private] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_PRIVATE] = ACTIONS(3010), - [anon_sym_Property] = ACTIONS(3010), - [anon_sym_property] = ACTIONS(3010), - [anon_sym_PROPERTY] = ACTIONS(3010), - [anon_sym_Public] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_PUBLIC] = ACTIONS(3010), - [anon_sym_Remote] = ACTIONS(3010), - [anon_sym_remote] = ACTIONS(3010), - [anon_sym_REMOTE] = ACTIONS(3010), - [anon_sym_Return] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_RETURN] = ACTIONS(3010), - [anon_sym_Static] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_STATIC] = ACTIONS(3010), - [anon_sym_Switch] = ACTIONS(3010), - [anon_sym_switch] = ACTIONS(3010), - [anon_sym_SWITCH] = ACTIONS(3010), - [anon_sym_Throw] = ACTIONS(3010), - [anon_sym_throw] = ACTIONS(3010), - [anon_sym_THROW] = ACTIONS(3010), - [anon_sym_Try] = ACTIONS(3010), - [anon_sym_try] = ACTIONS(3010), - [anon_sym_TRY] = ACTIONS(3010), - [anon_sym_Var] = ACTIONS(3010), - [anon_sym_var] = ACTIONS(3010), - [anon_sym_VAR] = ACTIONS(3010), - [anon_sym_While] = ACTIONS(3010), - [anon_sym_while] = ACTIONS(3010), - [anon_sym_WHILE] = ACTIONS(3010), - [anon_sym_With] = ACTIONS(3010), - [anon_sym_with] = ACTIONS(3010), - [anon_sym_WITH] = ACTIONS(3010), - [sym_cf_comment] = ACTIONS(3008), - [sym__java_block_open] = ACTIONS(3008), - [sym__static_type_prefix] = ACTIONS(3008), + [STATE(935)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3224), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(883)] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_Query] = ACTIONS(2736), - [anon_sym_query] = ACTIONS(2736), - [anon_sym_QUERY] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [aux_sym_unary_operator_token1] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [anon_sym_SQUOTE] = ACTIONS(2734), + [STATE(936)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3642), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4783), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4783), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4805), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3228), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2736), - [aux_sym_number_token2] = ACTIONS(2734), - [anon_sym_This] = ACTIONS(2736), - [anon_sym_this] = ACTIONS(2736), - [anon_sym_THIS] = ACTIONS(2736), - [anon_sym_Super] = ACTIONS(2736), - [anon_sym_super] = ACTIONS(2736), - [anon_sym_SUPER] = ACTIONS(2736), - [anon_sym_True] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_TRUE] = ACTIONS(2736), - [anon_sym_False] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [anon_sym_FALSE] = ACTIONS(2736), - [anon_sym_Null] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2736), - [anon_sym_NULL] = ACTIONS(2736), - [anon_sym_Undefined] = ACTIONS(2736), - [anon_sym_undefined] = ACTIONS(2736), - [anon_sym_UNDEFINED] = ACTIONS(2736), - [anon_sym_get] = ACTIONS(2736), - [anon_sym_set] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [sym_hash_empty] = ACTIONS(2734), - [anon_sym_export] = ACTIONS(2736), - [anon_sym_QueryExecute] = ACTIONS(2736), - [anon_sym_queryexecute] = ACTIONS(2736), - [anon_sym_QUERYEXECUTE] = ACTIONS(2736), - [anon_sym_queryExecute] = ACTIONS(2736), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2734), - [anon_sym_Abstract] = ACTIONS(2736), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_ABSTRACT] = ACTIONS(2736), - [anon_sym_Break] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_BREAK] = ACTIONS(2736), - [anon_sym_Case] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_CASE] = ACTIONS(2736), - [anon_sym_Component] = ACTIONS(2736), - [anon_sym_component] = ACTIONS(2736), - [anon_sym_COMPONENT] = ACTIONS(2736), - [anon_sym_Continue] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_CONTINUE] = ACTIONS(2736), - [anon_sym_Debugger] = ACTIONS(2736), - [anon_sym_debugger] = ACTIONS(2736), - [anon_sym_DEBUGGER] = ACTIONS(2736), - [anon_sym_Default] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_DEFAULT] = ACTIONS(2736), - [anon_sym_Do] = ACTIONS(2736), - [anon_sym_do] = ACTIONS(2736), - [anon_sym_DO] = ACTIONS(2736), - [anon_sym_Final] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_FINAL] = ACTIONS(2736), - [anon_sym_For] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_FOR] = ACTIONS(2736), - [anon_sym_Function] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(2736), - [anon_sym_FUNCTION] = ACTIONS(2736), - [anon_sym_If] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_IF] = ACTIONS(2736), - [anon_sym_Import] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_IMPORT] = ACTIONS(2736), - [anon_sym_Include] = ACTIONS(2736), - [anon_sym_include] = ACTIONS(2736), - [anon_sym_INCLUDE] = ACTIONS(2736), - [anon_sym_Interface] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_INTERFACE] = ACTIONS(2736), - [anon_sym_New] = ACTIONS(2736), - [anon_sym_new] = ACTIONS(2736), - [anon_sym_NEW] = ACTIONS(2736), - [anon_sym_Package] = ACTIONS(2736), - [anon_sym_package] = ACTIONS(2736), - [anon_sym_PACKAGE] = ACTIONS(2736), - [anon_sym_Private] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_PRIVATE] = ACTIONS(2736), - [anon_sym_Property] = ACTIONS(2736), - [anon_sym_property] = ACTIONS(2736), - [anon_sym_PROPERTY] = ACTIONS(2736), - [anon_sym_Public] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_PUBLIC] = ACTIONS(2736), - [anon_sym_Remote] = ACTIONS(2736), - [anon_sym_remote] = ACTIONS(2736), - [anon_sym_REMOTE] = ACTIONS(2736), - [anon_sym_Return] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_RETURN] = ACTIONS(2736), - [anon_sym_Static] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_STATIC] = ACTIONS(2736), - [anon_sym_Switch] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2736), - [anon_sym_SWITCH] = ACTIONS(2736), - [anon_sym_Throw] = ACTIONS(2736), - [anon_sym_throw] = ACTIONS(2736), - [anon_sym_THROW] = ACTIONS(2736), - [anon_sym_Try] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2736), - [anon_sym_TRY] = ACTIONS(2736), - [anon_sym_Var] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [anon_sym_VAR] = ACTIONS(2736), - [anon_sym_While] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_WHILE] = ACTIONS(2736), - [anon_sym_With] = ACTIONS(2736), - [anon_sym_with] = ACTIONS(2736), - [anon_sym_WITH] = ACTIONS(2736), - [sym_cf_comment] = ACTIONS(2734), - [sym__java_block_open] = ACTIONS(2734), - [sym__static_type_prefix] = ACTIONS(2734), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(884)] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_Query] = ACTIONS(2736), - [anon_sym_query] = ACTIONS(2736), - [anon_sym_QUERY] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [aux_sym_unary_operator_token1] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [anon_sym_SQUOTE] = ACTIONS(2734), + [STATE(937)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3505), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4709), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4709), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4714), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2736), - [aux_sym_number_token2] = ACTIONS(2734), - [anon_sym_This] = ACTIONS(2736), - [anon_sym_this] = ACTIONS(2736), - [anon_sym_THIS] = ACTIONS(2736), - [anon_sym_Super] = ACTIONS(2736), - [anon_sym_super] = ACTIONS(2736), - [anon_sym_SUPER] = ACTIONS(2736), - [anon_sym_True] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_TRUE] = ACTIONS(2736), - [anon_sym_False] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [anon_sym_FALSE] = ACTIONS(2736), - [anon_sym_Null] = ACTIONS(2736), - [anon_sym_null] = ACTIONS(2736), - [anon_sym_NULL] = ACTIONS(2736), - [anon_sym_Undefined] = ACTIONS(2736), - [anon_sym_undefined] = ACTIONS(2736), - [anon_sym_UNDEFINED] = ACTIONS(2736), - [anon_sym_get] = ACTIONS(2736), - [anon_sym_set] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [sym_hash_empty] = ACTIONS(2734), - [anon_sym_export] = ACTIONS(2736), - [anon_sym_QueryExecute] = ACTIONS(2736), - [anon_sym_queryexecute] = ACTIONS(2736), - [anon_sym_QUERYEXECUTE] = ACTIONS(2736), - [anon_sym_queryExecute] = ACTIONS(2736), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2734), - [anon_sym_Abstract] = ACTIONS(2736), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_ABSTRACT] = ACTIONS(2736), - [anon_sym_Break] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_BREAK] = ACTIONS(2736), - [anon_sym_Case] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_CASE] = ACTIONS(2736), - [anon_sym_Component] = ACTIONS(2736), - [anon_sym_component] = ACTIONS(2736), - [anon_sym_COMPONENT] = ACTIONS(2736), - [anon_sym_Continue] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_CONTINUE] = ACTIONS(2736), - [anon_sym_Debugger] = ACTIONS(2736), - [anon_sym_debugger] = ACTIONS(2736), - [anon_sym_DEBUGGER] = ACTIONS(2736), - [anon_sym_Default] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_DEFAULT] = ACTIONS(2736), - [anon_sym_Do] = ACTIONS(2736), - [anon_sym_do] = ACTIONS(2736), - [anon_sym_DO] = ACTIONS(2736), - [anon_sym_Final] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_FINAL] = ACTIONS(2736), - [anon_sym_For] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_FOR] = ACTIONS(2736), - [anon_sym_Function] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(2736), - [anon_sym_FUNCTION] = ACTIONS(2736), - [anon_sym_If] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_IF] = ACTIONS(2736), - [anon_sym_Import] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_IMPORT] = ACTIONS(2736), - [anon_sym_Include] = ACTIONS(2736), - [anon_sym_include] = ACTIONS(2736), - [anon_sym_INCLUDE] = ACTIONS(2736), - [anon_sym_Interface] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_INTERFACE] = ACTIONS(2736), - [anon_sym_New] = ACTIONS(2736), - [anon_sym_new] = ACTIONS(2736), - [anon_sym_NEW] = ACTIONS(2736), - [anon_sym_Package] = ACTIONS(2736), - [anon_sym_package] = ACTIONS(2736), - [anon_sym_PACKAGE] = ACTIONS(2736), - [anon_sym_Private] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_PRIVATE] = ACTIONS(2736), - [anon_sym_Property] = ACTIONS(2736), - [anon_sym_property] = ACTIONS(2736), - [anon_sym_PROPERTY] = ACTIONS(2736), - [anon_sym_Public] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_PUBLIC] = ACTIONS(2736), - [anon_sym_Remote] = ACTIONS(2736), - [anon_sym_remote] = ACTIONS(2736), - [anon_sym_REMOTE] = ACTIONS(2736), - [anon_sym_Return] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_RETURN] = ACTIONS(2736), - [anon_sym_Static] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_STATIC] = ACTIONS(2736), - [anon_sym_Switch] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2736), - [anon_sym_SWITCH] = ACTIONS(2736), - [anon_sym_Throw] = ACTIONS(2736), - [anon_sym_throw] = ACTIONS(2736), - [anon_sym_THROW] = ACTIONS(2736), - [anon_sym_Try] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2736), - [anon_sym_TRY] = ACTIONS(2736), - [anon_sym_Var] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [anon_sym_VAR] = ACTIONS(2736), - [anon_sym_While] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_WHILE] = ACTIONS(2736), - [anon_sym_With] = ACTIONS(2736), - [anon_sym_with] = ACTIONS(2736), - [anon_sym_WITH] = ACTIONS(2736), - [sym_cf_comment] = ACTIONS(2734), - [sym__java_block_open] = ACTIONS(2734), - [sym__static_type_prefix] = ACTIONS(2734), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(885)] = { - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_RBRACE] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_Query] = ACTIONS(3050), - [anon_sym_query] = ACTIONS(3050), - [anon_sym_QUERY] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3048), - [aux_sym_unary_operator_token1] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3048), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3050), - [aux_sym_number_token2] = ACTIONS(3048), - [anon_sym_This] = ACTIONS(3050), - [anon_sym_this] = ACTIONS(3050), - [anon_sym_THIS] = ACTIONS(3050), - [anon_sym_Super] = ACTIONS(3050), - [anon_sym_super] = ACTIONS(3050), - [anon_sym_SUPER] = ACTIONS(3050), - [anon_sym_True] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3050), - [anon_sym_TRUE] = ACTIONS(3050), - [anon_sym_False] = ACTIONS(3050), - [anon_sym_false] = ACTIONS(3050), - [anon_sym_FALSE] = ACTIONS(3050), - [anon_sym_Null] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3050), - [anon_sym_NULL] = ACTIONS(3050), - [anon_sym_Undefined] = ACTIONS(3050), - [anon_sym_undefined] = ACTIONS(3050), - [anon_sym_UNDEFINED] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(3050), - [anon_sym_set] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [sym_hash_empty] = ACTIONS(3048), - [anon_sym_export] = ACTIONS(3050), - [anon_sym_QueryExecute] = ACTIONS(3050), - [anon_sym_queryexecute] = ACTIONS(3050), - [anon_sym_QUERYEXECUTE] = ACTIONS(3050), - [anon_sym_queryExecute] = ACTIONS(3050), - [anon_sym_BQUOTE] = ACTIONS(3050), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3048), - [anon_sym_Abstract] = ACTIONS(3050), - [anon_sym_abstract] = ACTIONS(3050), - [anon_sym_ABSTRACT] = ACTIONS(3050), - [anon_sym_Break] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_BREAK] = ACTIONS(3050), - [anon_sym_Case] = ACTIONS(3050), - [anon_sym_case] = ACTIONS(3050), - [anon_sym_CASE] = ACTIONS(3050), - [anon_sym_Component] = ACTIONS(3050), - [anon_sym_component] = ACTIONS(3050), - [anon_sym_COMPONENT] = ACTIONS(3050), - [anon_sym_Continue] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_CONTINUE] = ACTIONS(3050), - [anon_sym_Debugger] = ACTIONS(3050), - [anon_sym_debugger] = ACTIONS(3050), - [anon_sym_DEBUGGER] = ACTIONS(3050), - [anon_sym_Default] = ACTIONS(3050), - [anon_sym_default] = ACTIONS(3050), - [anon_sym_DEFAULT] = ACTIONS(3050), - [anon_sym_Do] = ACTIONS(3050), - [anon_sym_do] = ACTIONS(3050), - [anon_sym_DO] = ACTIONS(3050), - [anon_sym_Final] = ACTIONS(3050), - [anon_sym_final] = ACTIONS(3050), - [anon_sym_FINAL] = ACTIONS(3050), - [anon_sym_For] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_FOR] = ACTIONS(3050), - [anon_sym_Function] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3050), - [anon_sym_FUNCTION] = ACTIONS(3050), - [anon_sym_If] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_IF] = ACTIONS(3050), - [anon_sym_Import] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(3050), - [anon_sym_IMPORT] = ACTIONS(3050), - [anon_sym_Include] = ACTIONS(3050), - [anon_sym_include] = ACTIONS(3050), - [anon_sym_INCLUDE] = ACTIONS(3050), - [anon_sym_Interface] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_INTERFACE] = ACTIONS(3050), - [anon_sym_New] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3050), - [anon_sym_NEW] = ACTIONS(3050), - [anon_sym_Package] = ACTIONS(3050), - [anon_sym_package] = ACTIONS(3050), - [anon_sym_PACKAGE] = ACTIONS(3050), - [anon_sym_Private] = ACTIONS(3050), - [anon_sym_private] = ACTIONS(3050), - [anon_sym_PRIVATE] = ACTIONS(3050), - [anon_sym_Property] = ACTIONS(3050), - [anon_sym_property] = ACTIONS(3050), - [anon_sym_PROPERTY] = ACTIONS(3050), - [anon_sym_Public] = ACTIONS(3050), - [anon_sym_public] = ACTIONS(3050), - [anon_sym_PUBLIC] = ACTIONS(3050), - [anon_sym_Remote] = ACTIONS(3050), - [anon_sym_remote] = ACTIONS(3050), - [anon_sym_REMOTE] = ACTIONS(3050), - [anon_sym_Return] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_RETURN] = ACTIONS(3050), - [anon_sym_Static] = ACTIONS(3050), - [anon_sym_static] = ACTIONS(3050), - [anon_sym_STATIC] = ACTIONS(3050), - [anon_sym_Switch] = ACTIONS(3050), - [anon_sym_switch] = ACTIONS(3050), - [anon_sym_SWITCH] = ACTIONS(3050), - [anon_sym_Throw] = ACTIONS(3050), - [anon_sym_throw] = ACTIONS(3050), - [anon_sym_THROW] = ACTIONS(3050), - [anon_sym_Try] = ACTIONS(3050), - [anon_sym_try] = ACTIONS(3050), - [anon_sym_TRY] = ACTIONS(3050), - [anon_sym_Var] = ACTIONS(3050), - [anon_sym_var] = ACTIONS(3050), - [anon_sym_VAR] = ACTIONS(3050), - [anon_sym_While] = ACTIONS(3050), - [anon_sym_while] = ACTIONS(3050), - [anon_sym_WHILE] = ACTIONS(3050), - [anon_sym_With] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3050), - [anon_sym_WITH] = ACTIONS(3050), - [sym_cf_comment] = ACTIONS(3048), - [sym__java_block_open] = ACTIONS(3048), - [sym__static_type_prefix] = ACTIONS(3048), + [STATE(938)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4653), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(886)] = { - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_Query] = ACTIONS(3054), - [anon_sym_query] = ACTIONS(3054), - [anon_sym_QUERY] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_unary_operator_token1] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3054), - [aux_sym_number_token2] = ACTIONS(3052), - [anon_sym_This] = ACTIONS(3054), - [anon_sym_this] = ACTIONS(3054), - [anon_sym_THIS] = ACTIONS(3054), - [anon_sym_Super] = ACTIONS(3054), - [anon_sym_super] = ACTIONS(3054), - [anon_sym_SUPER] = ACTIONS(3054), - [anon_sym_True] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3054), - [anon_sym_TRUE] = ACTIONS(3054), - [anon_sym_False] = ACTIONS(3054), - [anon_sym_false] = ACTIONS(3054), - [anon_sym_FALSE] = ACTIONS(3054), - [anon_sym_Null] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_NULL] = ACTIONS(3054), - [anon_sym_Undefined] = ACTIONS(3054), - [anon_sym_undefined] = ACTIONS(3054), - [anon_sym_UNDEFINED] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(3054), - [anon_sym_set] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [sym_hash_empty] = ACTIONS(3052), - [anon_sym_export] = ACTIONS(3054), - [anon_sym_QueryExecute] = ACTIONS(3054), - [anon_sym_queryexecute] = ACTIONS(3054), - [anon_sym_QUERYEXECUTE] = ACTIONS(3054), - [anon_sym_queryExecute] = ACTIONS(3054), - [anon_sym_BQUOTE] = ACTIONS(3054), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3052), - [anon_sym_Abstract] = ACTIONS(3054), - [anon_sym_abstract] = ACTIONS(3054), - [anon_sym_ABSTRACT] = ACTIONS(3054), - [anon_sym_Break] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_BREAK] = ACTIONS(3054), - [anon_sym_Case] = ACTIONS(3054), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_CASE] = ACTIONS(3054), - [anon_sym_Component] = ACTIONS(3054), - [anon_sym_component] = ACTIONS(3054), - [anon_sym_COMPONENT] = ACTIONS(3054), - [anon_sym_Continue] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_CONTINUE] = ACTIONS(3054), - [anon_sym_Debugger] = ACTIONS(3054), - [anon_sym_debugger] = ACTIONS(3054), - [anon_sym_DEBUGGER] = ACTIONS(3054), - [anon_sym_Default] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_DEFAULT] = ACTIONS(3054), - [anon_sym_Do] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_DO] = ACTIONS(3054), - [anon_sym_Final] = ACTIONS(3054), - [anon_sym_final] = ACTIONS(3054), - [anon_sym_FINAL] = ACTIONS(3054), - [anon_sym_For] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_FOR] = ACTIONS(3054), - [anon_sym_Function] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_FUNCTION] = ACTIONS(3054), - [anon_sym_If] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_IF] = ACTIONS(3054), - [anon_sym_Import] = ACTIONS(3054), - [anon_sym_import] = ACTIONS(3054), - [anon_sym_IMPORT] = ACTIONS(3054), - [anon_sym_Include] = ACTIONS(3054), - [anon_sym_include] = ACTIONS(3054), - [anon_sym_INCLUDE] = ACTIONS(3054), - [anon_sym_Interface] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_INTERFACE] = ACTIONS(3054), - [anon_sym_New] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_NEW] = ACTIONS(3054), - [anon_sym_Package] = ACTIONS(3054), - [anon_sym_package] = ACTIONS(3054), - [anon_sym_PACKAGE] = ACTIONS(3054), - [anon_sym_Private] = ACTIONS(3054), - [anon_sym_private] = ACTIONS(3054), - [anon_sym_PRIVATE] = ACTIONS(3054), - [anon_sym_Property] = ACTIONS(3054), - [anon_sym_property] = ACTIONS(3054), - [anon_sym_PROPERTY] = ACTIONS(3054), - [anon_sym_Public] = ACTIONS(3054), - [anon_sym_public] = ACTIONS(3054), - [anon_sym_PUBLIC] = ACTIONS(3054), - [anon_sym_Remote] = ACTIONS(3054), - [anon_sym_remote] = ACTIONS(3054), - [anon_sym_REMOTE] = ACTIONS(3054), - [anon_sym_Return] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_RETURN] = ACTIONS(3054), - [anon_sym_Static] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_STATIC] = ACTIONS(3054), - [anon_sym_Switch] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_SWITCH] = ACTIONS(3054), - [anon_sym_Throw] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_THROW] = ACTIONS(3054), - [anon_sym_Try] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_TRY] = ACTIONS(3054), - [anon_sym_Var] = ACTIONS(3054), - [anon_sym_var] = ACTIONS(3054), - [anon_sym_VAR] = ACTIONS(3054), - [anon_sym_While] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_WHILE] = ACTIONS(3054), - [anon_sym_With] = ACTIONS(3054), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_WITH] = ACTIONS(3054), - [sym_cf_comment] = ACTIONS(3052), - [sym__java_block_open] = ACTIONS(3052), - [sym__static_type_prefix] = ACTIONS(3052), + [STATE(939)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3234), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(887)] = { - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_Query] = ACTIONS(3058), - [anon_sym_query] = ACTIONS(3058), - [anon_sym_QUERY] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_unary_operator_token1] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3058), - [aux_sym_number_token2] = ACTIONS(3056), - [anon_sym_This] = ACTIONS(3058), - [anon_sym_this] = ACTIONS(3058), - [anon_sym_THIS] = ACTIONS(3058), - [anon_sym_Super] = ACTIONS(3058), - [anon_sym_super] = ACTIONS(3058), - [anon_sym_SUPER] = ACTIONS(3058), - [anon_sym_True] = ACTIONS(3058), - [anon_sym_true] = ACTIONS(3058), - [anon_sym_TRUE] = ACTIONS(3058), - [anon_sym_False] = ACTIONS(3058), - [anon_sym_false] = ACTIONS(3058), - [anon_sym_FALSE] = ACTIONS(3058), - [anon_sym_Null] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_NULL] = ACTIONS(3058), - [anon_sym_Undefined] = ACTIONS(3058), - [anon_sym_undefined] = ACTIONS(3058), - [anon_sym_UNDEFINED] = ACTIONS(3058), - [anon_sym_get] = ACTIONS(3058), - [anon_sym_set] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [sym_hash_empty] = ACTIONS(3056), - [anon_sym_export] = ACTIONS(3058), - [anon_sym_QueryExecute] = ACTIONS(3058), - [anon_sym_queryexecute] = ACTIONS(3058), - [anon_sym_QUERYEXECUTE] = ACTIONS(3058), - [anon_sym_queryExecute] = ACTIONS(3058), - [anon_sym_BQUOTE] = ACTIONS(3058), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3056), - [anon_sym_Abstract] = ACTIONS(3058), - [anon_sym_abstract] = ACTIONS(3058), - [anon_sym_ABSTRACT] = ACTIONS(3058), - [anon_sym_Break] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_BREAK] = ACTIONS(3058), - [anon_sym_Case] = ACTIONS(3058), - [anon_sym_case] = ACTIONS(3058), - [anon_sym_CASE] = ACTIONS(3058), - [anon_sym_Component] = ACTIONS(3058), - [anon_sym_component] = ACTIONS(3058), - [anon_sym_COMPONENT] = ACTIONS(3058), - [anon_sym_Continue] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_CONTINUE] = ACTIONS(3058), - [anon_sym_Debugger] = ACTIONS(3058), - [anon_sym_debugger] = ACTIONS(3058), - [anon_sym_DEBUGGER] = ACTIONS(3058), - [anon_sym_Default] = ACTIONS(3058), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_DEFAULT] = ACTIONS(3058), - [anon_sym_Do] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_DO] = ACTIONS(3058), - [anon_sym_Final] = ACTIONS(3058), - [anon_sym_final] = ACTIONS(3058), - [anon_sym_FINAL] = ACTIONS(3058), - [anon_sym_For] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_FOR] = ACTIONS(3058), - [anon_sym_Function] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_FUNCTION] = ACTIONS(3058), - [anon_sym_If] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_IF] = ACTIONS(3058), - [anon_sym_Import] = ACTIONS(3058), - [anon_sym_import] = ACTIONS(3058), - [anon_sym_IMPORT] = ACTIONS(3058), - [anon_sym_Include] = ACTIONS(3058), - [anon_sym_include] = ACTIONS(3058), - [anon_sym_INCLUDE] = ACTIONS(3058), - [anon_sym_Interface] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_INTERFACE] = ACTIONS(3058), - [anon_sym_New] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_NEW] = ACTIONS(3058), - [anon_sym_Package] = ACTIONS(3058), - [anon_sym_package] = ACTIONS(3058), - [anon_sym_PACKAGE] = ACTIONS(3058), - [anon_sym_Private] = ACTIONS(3058), - [anon_sym_private] = ACTIONS(3058), - [anon_sym_PRIVATE] = ACTIONS(3058), - [anon_sym_Property] = ACTIONS(3058), - [anon_sym_property] = ACTIONS(3058), - [anon_sym_PROPERTY] = ACTIONS(3058), - [anon_sym_Public] = ACTIONS(3058), - [anon_sym_public] = ACTIONS(3058), - [anon_sym_PUBLIC] = ACTIONS(3058), - [anon_sym_Remote] = ACTIONS(3058), - [anon_sym_remote] = ACTIONS(3058), - [anon_sym_REMOTE] = ACTIONS(3058), - [anon_sym_Return] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_RETURN] = ACTIONS(3058), - [anon_sym_Static] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_STATIC] = ACTIONS(3058), - [anon_sym_Switch] = ACTIONS(3058), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_SWITCH] = ACTIONS(3058), - [anon_sym_Throw] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_THROW] = ACTIONS(3058), - [anon_sym_Try] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_TRY] = ACTIONS(3058), - [anon_sym_Var] = ACTIONS(3058), - [anon_sym_var] = ACTIONS(3058), - [anon_sym_VAR] = ACTIONS(3058), - [anon_sym_While] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_WHILE] = ACTIONS(3058), - [anon_sym_With] = ACTIONS(3058), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_WITH] = ACTIONS(3058), - [sym_cf_comment] = ACTIONS(3056), - [sym__java_block_open] = ACTIONS(3056), - [sym__static_type_prefix] = ACTIONS(3056), + [STATE(940)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4783), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4783), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4805), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3228), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(888)] = { - [ts_builtin_sym_end] = ACTIONS(3064), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_RBRACE] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_Query] = ACTIONS(3066), - [anon_sym_query] = ACTIONS(3066), - [anon_sym_QUERY] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [aux_sym_unary_operator_token1] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_SQUOTE] = ACTIONS(3064), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3066), - [aux_sym_number_token2] = ACTIONS(3064), - [anon_sym_This] = ACTIONS(3066), - [anon_sym_this] = ACTIONS(3066), - [anon_sym_THIS] = ACTIONS(3066), - [anon_sym_Super] = ACTIONS(3066), - [anon_sym_super] = ACTIONS(3066), - [anon_sym_SUPER] = ACTIONS(3066), - [anon_sym_True] = ACTIONS(3066), - [anon_sym_true] = ACTIONS(3066), - [anon_sym_TRUE] = ACTIONS(3066), - [anon_sym_False] = ACTIONS(3066), - [anon_sym_false] = ACTIONS(3066), - [anon_sym_FALSE] = ACTIONS(3066), - [anon_sym_Null] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_NULL] = ACTIONS(3066), - [anon_sym_Undefined] = ACTIONS(3066), - [anon_sym_undefined] = ACTIONS(3066), - [anon_sym_UNDEFINED] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_POUND] = ACTIONS(3066), - [sym_hash_empty] = ACTIONS(3064), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_QueryExecute] = ACTIONS(3066), - [anon_sym_queryexecute] = ACTIONS(3066), - [anon_sym_QUERYEXECUTE] = ACTIONS(3066), - [anon_sym_queryExecute] = ACTIONS(3066), - [anon_sym_BQUOTE] = ACTIONS(3066), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3064), - [anon_sym_Abstract] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_ABSTRACT] = ACTIONS(3066), - [anon_sym_Break] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_BREAK] = ACTIONS(3066), - [anon_sym_Case] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_CASE] = ACTIONS(3066), - [anon_sym_Component] = ACTIONS(3066), - [anon_sym_component] = ACTIONS(3066), - [anon_sym_COMPONENT] = ACTIONS(3066), - [anon_sym_Continue] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_CONTINUE] = ACTIONS(3066), - [anon_sym_Debugger] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_DEBUGGER] = ACTIONS(3066), - [anon_sym_Default] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_DEFAULT] = ACTIONS(3066), - [anon_sym_Do] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_DO] = ACTIONS(3066), - [anon_sym_Final] = ACTIONS(3066), - [anon_sym_final] = ACTIONS(3066), - [anon_sym_FINAL] = ACTIONS(3066), - [anon_sym_For] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_FOR] = ACTIONS(3066), - [anon_sym_Function] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_FUNCTION] = ACTIONS(3066), - [anon_sym_If] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_IF] = ACTIONS(3066), - [anon_sym_Import] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_IMPORT] = ACTIONS(3066), - [anon_sym_Include] = ACTIONS(3066), - [anon_sym_include] = ACTIONS(3066), - [anon_sym_INCLUDE] = ACTIONS(3066), - [anon_sym_Interface] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_INTERFACE] = ACTIONS(3066), - [anon_sym_New] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_NEW] = ACTIONS(3066), - [anon_sym_Package] = ACTIONS(3066), - [anon_sym_package] = ACTIONS(3066), - [anon_sym_PACKAGE] = ACTIONS(3066), - [anon_sym_Private] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_PRIVATE] = ACTIONS(3066), - [anon_sym_Property] = ACTIONS(3066), - [anon_sym_property] = ACTIONS(3066), - [anon_sym_PROPERTY] = ACTIONS(3066), - [anon_sym_Public] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_PUBLIC] = ACTIONS(3066), - [anon_sym_Remote] = ACTIONS(3066), - [anon_sym_remote] = ACTIONS(3066), - [anon_sym_REMOTE] = ACTIONS(3066), - [anon_sym_Return] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_RETURN] = ACTIONS(3066), - [anon_sym_Static] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_STATIC] = ACTIONS(3066), - [anon_sym_Switch] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_SWITCH] = ACTIONS(3066), - [anon_sym_Throw] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_THROW] = ACTIONS(3066), - [anon_sym_Try] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_TRY] = ACTIONS(3066), - [anon_sym_Var] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_VAR] = ACTIONS(3066), - [anon_sym_While] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_WHILE] = ACTIONS(3066), - [anon_sym_With] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_WITH] = ACTIONS(3066), - [sym_cf_comment] = ACTIONS(3064), - [sym__java_block_open] = ACTIONS(3064), - [sym__static_type_prefix] = ACTIONS(3064), + [STATE(941)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3471), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4655), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4655), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4657), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3190), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(889)] = { - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_RBRACE] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_SEMI] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_Query] = ACTIONS(3038), - [anon_sym_query] = ACTIONS(3038), - [anon_sym_QUERY] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3036), - [aux_sym_unary_operator_token1] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3036), - [anon_sym_DASH_DASH] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3036), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3038), - [aux_sym_number_token2] = ACTIONS(3036), - [anon_sym_This] = ACTIONS(3038), - [anon_sym_this] = ACTIONS(3038), - [anon_sym_THIS] = ACTIONS(3038), - [anon_sym_Super] = ACTIONS(3038), - [anon_sym_super] = ACTIONS(3038), - [anon_sym_SUPER] = ACTIONS(3038), - [anon_sym_True] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3038), - [anon_sym_TRUE] = ACTIONS(3038), - [anon_sym_False] = ACTIONS(3038), - [anon_sym_false] = ACTIONS(3038), - [anon_sym_FALSE] = ACTIONS(3038), - [anon_sym_Null] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3038), - [anon_sym_NULL] = ACTIONS(3038), - [anon_sym_Undefined] = ACTIONS(3038), - [anon_sym_undefined] = ACTIONS(3038), - [anon_sym_UNDEFINED] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(3038), - [anon_sym_set] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3038), - [sym_hash_empty] = ACTIONS(3036), - [anon_sym_export] = ACTIONS(3038), - [anon_sym_QueryExecute] = ACTIONS(3038), - [anon_sym_queryexecute] = ACTIONS(3038), - [anon_sym_QUERYEXECUTE] = ACTIONS(3038), - [anon_sym_queryExecute] = ACTIONS(3038), - [anon_sym_BQUOTE] = ACTIONS(3038), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3036), - [anon_sym_Abstract] = ACTIONS(3038), - [anon_sym_abstract] = ACTIONS(3038), - [anon_sym_ABSTRACT] = ACTIONS(3038), - [anon_sym_Break] = ACTIONS(3038), - [anon_sym_break] = ACTIONS(3038), - [anon_sym_BREAK] = ACTIONS(3038), - [anon_sym_Case] = ACTIONS(3038), - [anon_sym_case] = ACTIONS(3038), - [anon_sym_CASE] = ACTIONS(3038), - [anon_sym_Component] = ACTIONS(3038), - [anon_sym_component] = ACTIONS(3038), - [anon_sym_COMPONENT] = ACTIONS(3038), - [anon_sym_Continue] = ACTIONS(3038), - [anon_sym_continue] = ACTIONS(3038), - [anon_sym_CONTINUE] = ACTIONS(3038), - [anon_sym_Debugger] = ACTIONS(3038), - [anon_sym_debugger] = ACTIONS(3038), - [anon_sym_DEBUGGER] = ACTIONS(3038), - [anon_sym_Default] = ACTIONS(3038), - [anon_sym_default] = ACTIONS(3038), - [anon_sym_DEFAULT] = ACTIONS(3038), - [anon_sym_Do] = ACTIONS(3038), - [anon_sym_do] = ACTIONS(3038), - [anon_sym_DO] = ACTIONS(3038), - [anon_sym_Final] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_FINAL] = ACTIONS(3038), - [anon_sym_For] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3038), - [anon_sym_FOR] = ACTIONS(3038), - [anon_sym_Function] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3038), - [anon_sym_FUNCTION] = ACTIONS(3038), - [anon_sym_If] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_IF] = ACTIONS(3038), - [anon_sym_Import] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_IMPORT] = ACTIONS(3038), - [anon_sym_Include] = ACTIONS(3038), - [anon_sym_include] = ACTIONS(3038), - [anon_sym_INCLUDE] = ACTIONS(3038), - [anon_sym_Interface] = ACTIONS(3038), - [anon_sym_interface] = ACTIONS(3038), - [anon_sym_INTERFACE] = ACTIONS(3038), - [anon_sym_New] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3038), - [anon_sym_NEW] = ACTIONS(3038), - [anon_sym_Package] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_PACKAGE] = ACTIONS(3038), - [anon_sym_Private] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_PRIVATE] = ACTIONS(3038), - [anon_sym_Property] = ACTIONS(3038), - [anon_sym_property] = ACTIONS(3038), - [anon_sym_PROPERTY] = ACTIONS(3038), - [anon_sym_Public] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_PUBLIC] = ACTIONS(3038), - [anon_sym_Remote] = ACTIONS(3038), - [anon_sym_remote] = ACTIONS(3038), - [anon_sym_REMOTE] = ACTIONS(3038), - [anon_sym_Return] = ACTIONS(3038), - [anon_sym_return] = ACTIONS(3038), - [anon_sym_RETURN] = ACTIONS(3038), - [anon_sym_Static] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_STATIC] = ACTIONS(3038), - [anon_sym_Switch] = ACTIONS(3038), - [anon_sym_switch] = ACTIONS(3038), - [anon_sym_SWITCH] = ACTIONS(3038), - [anon_sym_Throw] = ACTIONS(3038), - [anon_sym_throw] = ACTIONS(3038), - [anon_sym_THROW] = ACTIONS(3038), - [anon_sym_Try] = ACTIONS(3038), - [anon_sym_try] = ACTIONS(3038), - [anon_sym_TRY] = ACTIONS(3038), - [anon_sym_Var] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [anon_sym_VAR] = ACTIONS(3038), - [anon_sym_While] = ACTIONS(3038), - [anon_sym_while] = ACTIONS(3038), - [anon_sym_WHILE] = ACTIONS(3038), - [anon_sym_With] = ACTIONS(3038), - [anon_sym_with] = ACTIONS(3038), - [anon_sym_WITH] = ACTIONS(3038), - [sym_cf_comment] = ACTIONS(3036), - [sym__java_block_open] = ACTIONS(3036), - [sym__static_type_prefix] = ACTIONS(3036), + [STATE(942)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3633), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4751), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4751), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_repeat1] = STATE(4755), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(890)] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_let] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_Query] = ACTIONS(2788), - [anon_sym_query] = ACTIONS(2788), - [anon_sym_QUERY] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_unary_operator_token1] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_DQUOTE] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), + [STATE(943)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3646), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4939), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_spread_element] = STATE(4944), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2843), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2843), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4738), + [sym_rest_pattern] = STATE(4531), + [sym_pair] = STATE(4944), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_Query] = ACTIONS(3184), + [anon_sym_query] = ACTIONS(3184), + [anon_sym_QUERY] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2788), - [aux_sym_number_token2] = ACTIONS(2786), - [anon_sym_This] = ACTIONS(2788), - [anon_sym_this] = ACTIONS(2788), - [anon_sym_THIS] = ACTIONS(2788), - [anon_sym_Super] = ACTIONS(2788), - [anon_sym_super] = ACTIONS(2788), - [anon_sym_SUPER] = ACTIONS(2788), - [anon_sym_True] = ACTIONS(2788), - [anon_sym_true] = ACTIONS(2788), - [anon_sym_TRUE] = ACTIONS(2788), - [anon_sym_False] = ACTIONS(2788), - [anon_sym_false] = ACTIONS(2788), - [anon_sym_FALSE] = ACTIONS(2788), - [anon_sym_Null] = ACTIONS(2788), - [anon_sym_null] = ACTIONS(2788), - [anon_sym_NULL] = ACTIONS(2788), - [anon_sym_Undefined] = ACTIONS(2788), - [anon_sym_undefined] = ACTIONS(2788), - [anon_sym_UNDEFINED] = ACTIONS(2788), - [anon_sym_get] = ACTIONS(2788), - [anon_sym_set] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [sym_hash_empty] = ACTIONS(2786), - [anon_sym_export] = ACTIONS(2788), - [anon_sym_QueryExecute] = ACTIONS(2788), - [anon_sym_queryexecute] = ACTIONS(2788), - [anon_sym_QUERYEXECUTE] = ACTIONS(2788), - [anon_sym_queryExecute] = ACTIONS(2788), - [anon_sym_BQUOTE] = ACTIONS(2788), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2786), - [anon_sym_Abstract] = ACTIONS(2788), - [anon_sym_abstract] = ACTIONS(2788), - [anon_sym_ABSTRACT] = ACTIONS(2788), - [anon_sym_Break] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_BREAK] = ACTIONS(2788), - [anon_sym_Case] = ACTIONS(2788), - [anon_sym_case] = ACTIONS(2788), - [anon_sym_CASE] = ACTIONS(2788), - [anon_sym_Component] = ACTIONS(2788), - [anon_sym_component] = ACTIONS(2788), - [anon_sym_COMPONENT] = ACTIONS(2788), - [anon_sym_Continue] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_CONTINUE] = ACTIONS(2788), - [anon_sym_Debugger] = ACTIONS(2788), - [anon_sym_debugger] = ACTIONS(2788), - [anon_sym_DEBUGGER] = ACTIONS(2788), - [anon_sym_Default] = ACTIONS(2788), - [anon_sym_default] = ACTIONS(2788), - [anon_sym_DEFAULT] = ACTIONS(2788), - [anon_sym_Do] = ACTIONS(2788), - [anon_sym_do] = ACTIONS(2788), - [anon_sym_DO] = ACTIONS(2788), - [anon_sym_Final] = ACTIONS(2788), - [anon_sym_final] = ACTIONS(2788), - [anon_sym_FINAL] = ACTIONS(2788), - [anon_sym_For] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_FOR] = ACTIONS(2788), - [anon_sym_Function] = ACTIONS(2788), - [anon_sym_function] = ACTIONS(2788), - [anon_sym_FUNCTION] = ACTIONS(2788), - [anon_sym_If] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_IF] = ACTIONS(2788), - [anon_sym_Import] = ACTIONS(2788), - [anon_sym_import] = ACTIONS(2788), - [anon_sym_IMPORT] = ACTIONS(2788), - [anon_sym_Include] = ACTIONS(2788), - [anon_sym_include] = ACTIONS(2788), - [anon_sym_INCLUDE] = ACTIONS(2788), - [anon_sym_Interface] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_INTERFACE] = ACTIONS(2788), - [anon_sym_New] = ACTIONS(2788), - [anon_sym_new] = ACTIONS(2788), - [anon_sym_NEW] = ACTIONS(2788), - [anon_sym_Package] = ACTIONS(2788), - [anon_sym_package] = ACTIONS(2788), - [anon_sym_PACKAGE] = ACTIONS(2788), - [anon_sym_Private] = ACTIONS(2788), - [anon_sym_private] = ACTIONS(2788), - [anon_sym_PRIVATE] = ACTIONS(2788), - [anon_sym_Property] = ACTIONS(2788), - [anon_sym_property] = ACTIONS(2788), - [anon_sym_PROPERTY] = ACTIONS(2788), - [anon_sym_Public] = ACTIONS(2788), - [anon_sym_public] = ACTIONS(2788), - [anon_sym_PUBLIC] = ACTIONS(2788), - [anon_sym_Remote] = ACTIONS(2788), - [anon_sym_remote] = ACTIONS(2788), - [anon_sym_REMOTE] = ACTIONS(2788), - [anon_sym_Return] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_RETURN] = ACTIONS(2788), - [anon_sym_Static] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2788), - [anon_sym_STATIC] = ACTIONS(2788), - [anon_sym_Switch] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2788), - [anon_sym_SWITCH] = ACTIONS(2788), - [anon_sym_Throw] = ACTIONS(2788), - [anon_sym_throw] = ACTIONS(2788), - [anon_sym_THROW] = ACTIONS(2788), - [anon_sym_Try] = ACTIONS(2788), - [anon_sym_try] = ACTIONS(2788), - [anon_sym_TRY] = ACTIONS(2788), - [anon_sym_Var] = ACTIONS(2788), - [anon_sym_var] = ACTIONS(2788), - [anon_sym_VAR] = ACTIONS(2788), - [anon_sym_While] = ACTIONS(2788), - [anon_sym_while] = ACTIONS(2788), - [anon_sym_WHILE] = ACTIONS(2788), - [anon_sym_With] = ACTIONS(2788), - [anon_sym_with] = ACTIONS(2788), - [anon_sym_WITH] = ACTIONS(2788), - [sym_cf_comment] = ACTIONS(2786), - [sym__java_block_open] = ACTIONS(2786), - [sym__static_type_prefix] = ACTIONS(2786), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_QueryExecute] = ACTIONS(3194), + [anon_sym_queryexecute] = ACTIONS(3194), + [anon_sym_QUERYEXECUTE] = ACTIONS(3194), + [anon_sym_queryExecute] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_ABSTRACT] = ACTIONS(3184), + [anon_sym_Component] = ACTIONS(3184), + [anon_sym_component] = ACTIONS(3184), + [anon_sym_COMPONENT] = ACTIONS(3184), + [anon_sym_Debugger] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_DEBUGGER] = ACTIONS(3184), + [anon_sym_Final] = ACTIONS(3184), + [anon_sym_final] = ACTIONS(3184), + [anon_sym_FINAL] = ACTIONS(3184), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3184), + [anon_sym_include] = ACTIONS(3184), + [anon_sym_INCLUDE] = ACTIONS(3184), + [anon_sym_New] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_NEW] = ACTIONS(3198), + [anon_sym_Package] = ACTIONS(3184), + [anon_sym_package] = ACTIONS(3184), + [anon_sym_PACKAGE] = ACTIONS(3184), + [anon_sym_Private] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_PRIVATE] = ACTIONS(3184), + [anon_sym_Public] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_PUBLIC] = ACTIONS(3184), + [anon_sym_Remote] = ACTIONS(3184), + [anon_sym_remote] = ACTIONS(3184), + [anon_sym_REMOTE] = ACTIONS(3184), + [anon_sym_Static] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_STATIC] = ACTIONS(3184), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(891)] = { - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2848), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_Query] = ACTIONS(2850), - [anon_sym_query] = ACTIONS(2850), - [anon_sym_QUERY] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_unary_operator_token1] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_DQUOTE] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2850), - [aux_sym_number_token2] = ACTIONS(2848), - [anon_sym_This] = ACTIONS(2850), - [anon_sym_this] = ACTIONS(2850), - [anon_sym_THIS] = ACTIONS(2850), - [anon_sym_Super] = ACTIONS(2850), - [anon_sym_super] = ACTIONS(2850), - [anon_sym_SUPER] = ACTIONS(2850), - [anon_sym_True] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2850), - [anon_sym_TRUE] = ACTIONS(2850), - [anon_sym_False] = ACTIONS(2850), - [anon_sym_false] = ACTIONS(2850), - [anon_sym_FALSE] = ACTIONS(2850), - [anon_sym_Null] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_NULL] = ACTIONS(2850), - [anon_sym_Undefined] = ACTIONS(2850), - [anon_sym_undefined] = ACTIONS(2850), - [anon_sym_UNDEFINED] = ACTIONS(2850), - [anon_sym_get] = ACTIONS(2850), - [anon_sym_set] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [sym_hash_empty] = ACTIONS(2848), - [anon_sym_export] = ACTIONS(2850), - [anon_sym_QueryExecute] = ACTIONS(2850), - [anon_sym_queryexecute] = ACTIONS(2850), - [anon_sym_QUERYEXECUTE] = ACTIONS(2850), - [anon_sym_queryExecute] = ACTIONS(2850), - [anon_sym_BQUOTE] = ACTIONS(2850), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2848), - [anon_sym_Abstract] = ACTIONS(2850), - [anon_sym_abstract] = ACTIONS(2850), - [anon_sym_ABSTRACT] = ACTIONS(2850), - [anon_sym_Break] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_BREAK] = ACTIONS(2850), - [anon_sym_Case] = ACTIONS(2850), - [anon_sym_case] = ACTIONS(2850), - [anon_sym_CASE] = ACTIONS(2850), - [anon_sym_Component] = ACTIONS(2850), - [anon_sym_component] = ACTIONS(2850), - [anon_sym_COMPONENT] = ACTIONS(2850), - [anon_sym_Continue] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_CONTINUE] = ACTIONS(2850), - [anon_sym_Debugger] = ACTIONS(2850), - [anon_sym_debugger] = ACTIONS(2850), - [anon_sym_DEBUGGER] = ACTIONS(2850), - [anon_sym_Default] = ACTIONS(2850), - [anon_sym_default] = ACTIONS(2850), - [anon_sym_DEFAULT] = ACTIONS(2850), - [anon_sym_Do] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_DO] = ACTIONS(2850), - [anon_sym_Final] = ACTIONS(2850), - [anon_sym_final] = ACTIONS(2850), - [anon_sym_FINAL] = ACTIONS(2850), - [anon_sym_For] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_FOR] = ACTIONS(2850), - [anon_sym_Function] = ACTIONS(2850), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_FUNCTION] = ACTIONS(2850), - [anon_sym_If] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_IF] = ACTIONS(2850), - [anon_sym_Import] = ACTIONS(2850), - [anon_sym_import] = ACTIONS(2850), - [anon_sym_IMPORT] = ACTIONS(2850), - [anon_sym_Include] = ACTIONS(2850), - [anon_sym_include] = ACTIONS(2850), - [anon_sym_INCLUDE] = ACTIONS(2850), - [anon_sym_Interface] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_INTERFACE] = ACTIONS(2850), - [anon_sym_New] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_NEW] = ACTIONS(2850), - [anon_sym_Package] = ACTIONS(2850), - [anon_sym_package] = ACTIONS(2850), - [anon_sym_PACKAGE] = ACTIONS(2850), - [anon_sym_Private] = ACTIONS(2850), - [anon_sym_private] = ACTIONS(2850), - [anon_sym_PRIVATE] = ACTIONS(2850), - [anon_sym_Property] = ACTIONS(2850), - [anon_sym_property] = ACTIONS(2850), - [anon_sym_PROPERTY] = ACTIONS(2850), - [anon_sym_Public] = ACTIONS(2850), - [anon_sym_public] = ACTIONS(2850), - [anon_sym_PUBLIC] = ACTIONS(2850), - [anon_sym_Remote] = ACTIONS(2850), - [anon_sym_remote] = ACTIONS(2850), - [anon_sym_REMOTE] = ACTIONS(2850), - [anon_sym_Return] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_RETURN] = ACTIONS(2850), - [anon_sym_Static] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2850), - [anon_sym_STATIC] = ACTIONS(2850), - [anon_sym_Switch] = ACTIONS(2850), - [anon_sym_switch] = ACTIONS(2850), - [anon_sym_SWITCH] = ACTIONS(2850), - [anon_sym_Throw] = ACTIONS(2850), - [anon_sym_throw] = ACTIONS(2850), - [anon_sym_THROW] = ACTIONS(2850), - [anon_sym_Try] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_TRY] = ACTIONS(2850), - [anon_sym_Var] = ACTIONS(2850), - [anon_sym_var] = ACTIONS(2850), - [anon_sym_VAR] = ACTIONS(2850), - [anon_sym_While] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_WHILE] = ACTIONS(2850), - [anon_sym_With] = ACTIONS(2850), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_WITH] = ACTIONS(2850), - [sym_cf_comment] = ACTIONS(2848), - [sym__java_block_open] = ACTIONS(2848), - [sym__static_type_prefix] = ACTIONS(2848), + [STATE(944)] = { + [ts_builtin_sym_end] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_Query] = ACTIONS(3245), + [anon_sym_query] = ACTIONS(3245), + [anon_sym_QUERY] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [aux_sym_unary_operator_token1] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3245), + [aux_sym_number_token2] = ACTIONS(3243), + [anon_sym_This] = ACTIONS(3245), + [anon_sym_this] = ACTIONS(3245), + [anon_sym_THIS] = ACTIONS(3245), + [anon_sym_Super] = ACTIONS(3245), + [anon_sym_super] = ACTIONS(3245), + [anon_sym_SUPER] = ACTIONS(3245), + [anon_sym_True] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3245), + [anon_sym_TRUE] = ACTIONS(3245), + [anon_sym_False] = ACTIONS(3245), + [anon_sym_false] = ACTIONS(3245), + [anon_sym_FALSE] = ACTIONS(3245), + [anon_sym_Null] = ACTIONS(3245), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_NULL] = ACTIONS(3245), + [anon_sym_Undefined] = ACTIONS(3245), + [anon_sym_undefined] = ACTIONS(3245), + [anon_sym_UNDEFINED] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [sym_hash_empty] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_QueryExecute] = ACTIONS(3245), + [anon_sym_queryexecute] = ACTIONS(3245), + [anon_sym_QUERYEXECUTE] = ACTIONS(3245), + [anon_sym_queryExecute] = ACTIONS(3245), + [anon_sym_BQUOTE] = ACTIONS(3245), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3243), + [anon_sym_Abstract] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_ABSTRACT] = ACTIONS(3245), + [anon_sym_Break] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_BREAK] = ACTIONS(3245), + [anon_sym_Component] = ACTIONS(3245), + [anon_sym_component] = ACTIONS(3245), + [anon_sym_COMPONENT] = ACTIONS(3245), + [anon_sym_Continue] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_CONTINUE] = ACTIONS(3245), + [anon_sym_Debugger] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_DEBUGGER] = ACTIONS(3245), + [anon_sym_Do] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_DO] = ACTIONS(3245), + [anon_sym_Final] = ACTIONS(3245), + [anon_sym_final] = ACTIONS(3245), + [anon_sym_FINAL] = ACTIONS(3245), + [anon_sym_For] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_FOR] = ACTIONS(3245), + [anon_sym_Function] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_FUNCTION] = ACTIONS(3245), + [anon_sym_If] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_IF] = ACTIONS(3245), + [anon_sym_Import] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_IMPORT] = ACTIONS(3245), + [anon_sym_Include] = ACTIONS(3245), + [anon_sym_include] = ACTIONS(3245), + [anon_sym_INCLUDE] = ACTIONS(3245), + [anon_sym_Interface] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_INTERFACE] = ACTIONS(3245), + [anon_sym_New] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_NEW] = ACTIONS(3245), + [anon_sym_Package] = ACTIONS(3245), + [anon_sym_package] = ACTIONS(3245), + [anon_sym_PACKAGE] = ACTIONS(3245), + [anon_sym_Private] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_PRIVATE] = ACTIONS(3245), + [anon_sym_Property] = ACTIONS(3245), + [anon_sym_property] = ACTIONS(3245), + [anon_sym_PROPERTY] = ACTIONS(3245), + [anon_sym_Public] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_PUBLIC] = ACTIONS(3245), + [anon_sym_Remote] = ACTIONS(3245), + [anon_sym_remote] = ACTIONS(3245), + [anon_sym_REMOTE] = ACTIONS(3245), + [anon_sym_Return] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_RETURN] = ACTIONS(3245), + [anon_sym_Static] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_STATIC] = ACTIONS(3245), + [anon_sym_Switch] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_SWITCH] = ACTIONS(3245), + [anon_sym_Throw] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_THROW] = ACTIONS(3245), + [anon_sym_Try] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_TRY] = ACTIONS(3245), + [anon_sym_Var] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_VAR] = ACTIONS(3245), + [anon_sym_While] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_WHILE] = ACTIONS(3245), + [anon_sym_With] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_WITH] = ACTIONS(3245), + [sym_cf_comment] = ACTIONS(3243), + [sym__java_block_open] = ACTIONS(3243), + [sym__static_type_prefix] = ACTIONS(3243), }, - [STATE(892)] = { - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_RBRACE] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_Query] = ACTIONS(3046), - [anon_sym_query] = ACTIONS(3046), - [anon_sym_QUERY] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3044), - [aux_sym_unary_operator_token1] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3044), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3046), - [aux_sym_number_token2] = ACTIONS(3044), - [anon_sym_This] = ACTIONS(3046), - [anon_sym_this] = ACTIONS(3046), - [anon_sym_THIS] = ACTIONS(3046), - [anon_sym_Super] = ACTIONS(3046), - [anon_sym_super] = ACTIONS(3046), - [anon_sym_SUPER] = ACTIONS(3046), - [anon_sym_True] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3046), - [anon_sym_TRUE] = ACTIONS(3046), - [anon_sym_False] = ACTIONS(3046), - [anon_sym_false] = ACTIONS(3046), - [anon_sym_FALSE] = ACTIONS(3046), - [anon_sym_Null] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3046), - [anon_sym_NULL] = ACTIONS(3046), - [anon_sym_Undefined] = ACTIONS(3046), - [anon_sym_undefined] = ACTIONS(3046), - [anon_sym_UNDEFINED] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(3046), - [anon_sym_set] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [sym_hash_empty] = ACTIONS(3044), - [anon_sym_export] = ACTIONS(3046), - [anon_sym_QueryExecute] = ACTIONS(3046), - [anon_sym_queryexecute] = ACTIONS(3046), - [anon_sym_QUERYEXECUTE] = ACTIONS(3046), - [anon_sym_queryExecute] = ACTIONS(3046), - [anon_sym_BQUOTE] = ACTIONS(3046), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3044), - [anon_sym_Abstract] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_ABSTRACT] = ACTIONS(3046), - [anon_sym_Break] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_BREAK] = ACTIONS(3046), - [anon_sym_Case] = ACTIONS(3046), - [anon_sym_case] = ACTIONS(3046), - [anon_sym_CASE] = ACTIONS(3046), - [anon_sym_Component] = ACTIONS(3046), - [anon_sym_component] = ACTIONS(3046), - [anon_sym_COMPONENT] = ACTIONS(3046), - [anon_sym_Continue] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_CONTINUE] = ACTIONS(3046), - [anon_sym_Debugger] = ACTIONS(3046), - [anon_sym_debugger] = ACTIONS(3046), - [anon_sym_DEBUGGER] = ACTIONS(3046), - [anon_sym_Default] = ACTIONS(3046), - [anon_sym_default] = ACTIONS(3046), - [anon_sym_DEFAULT] = ACTIONS(3046), - [anon_sym_Do] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_DO] = ACTIONS(3046), - [anon_sym_Final] = ACTIONS(3046), - [anon_sym_final] = ACTIONS(3046), - [anon_sym_FINAL] = ACTIONS(3046), - [anon_sym_For] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_FOR] = ACTIONS(3046), - [anon_sym_Function] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_FUNCTION] = ACTIONS(3046), - [anon_sym_If] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_IF] = ACTIONS(3046), - [anon_sym_Import] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_IMPORT] = ACTIONS(3046), - [anon_sym_Include] = ACTIONS(3046), - [anon_sym_include] = ACTIONS(3046), - [anon_sym_INCLUDE] = ACTIONS(3046), - [anon_sym_Interface] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_INTERFACE] = ACTIONS(3046), - [anon_sym_New] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_NEW] = ACTIONS(3046), - [anon_sym_Package] = ACTIONS(3046), - [anon_sym_package] = ACTIONS(3046), - [anon_sym_PACKAGE] = ACTIONS(3046), - [anon_sym_Private] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_PRIVATE] = ACTIONS(3046), - [anon_sym_Property] = ACTIONS(3046), - [anon_sym_property] = ACTIONS(3046), - [anon_sym_PROPERTY] = ACTIONS(3046), - [anon_sym_Public] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_PUBLIC] = ACTIONS(3046), - [anon_sym_Remote] = ACTIONS(3046), - [anon_sym_remote] = ACTIONS(3046), - [anon_sym_REMOTE] = ACTIONS(3046), - [anon_sym_Return] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_RETURN] = ACTIONS(3046), - [anon_sym_Static] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_STATIC] = ACTIONS(3046), - [anon_sym_Switch] = ACTIONS(3046), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_SWITCH] = ACTIONS(3046), - [anon_sym_Throw] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_THROW] = ACTIONS(3046), - [anon_sym_Try] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_TRY] = ACTIONS(3046), - [anon_sym_Var] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [anon_sym_VAR] = ACTIONS(3046), - [anon_sym_While] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_WHILE] = ACTIONS(3046), - [anon_sym_With] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_WITH] = ACTIONS(3046), - [sym_cf_comment] = ACTIONS(3044), - [sym__java_block_open] = ACTIONS(3044), - [sym__static_type_prefix] = ACTIONS(3044), + [STATE(945)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3526), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4825), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4825), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2774), + [sym_hash_expression] = STATE(2774), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4779), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(893)] = { - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_Query] = ACTIONS(2718), - [anon_sym_query] = ACTIONS(2718), - [anon_sym_QUERY] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_unary_operator_token1] = ACTIONS(2718), - [anon_sym_PLUS_PLUS] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2716), - [anon_sym_DQUOTE] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2718), - [aux_sym_number_token2] = ACTIONS(2716), - [anon_sym_This] = ACTIONS(2718), - [anon_sym_this] = ACTIONS(2718), - [anon_sym_THIS] = ACTIONS(2718), - [anon_sym_Super] = ACTIONS(2718), - [anon_sym_super] = ACTIONS(2718), - [anon_sym_SUPER] = ACTIONS(2718), - [anon_sym_True] = ACTIONS(2718), - [anon_sym_true] = ACTIONS(2718), - [anon_sym_TRUE] = ACTIONS(2718), - [anon_sym_False] = ACTIONS(2718), - [anon_sym_false] = ACTIONS(2718), - [anon_sym_FALSE] = ACTIONS(2718), - [anon_sym_Null] = ACTIONS(2718), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_NULL] = ACTIONS(2718), - [anon_sym_Undefined] = ACTIONS(2718), - [anon_sym_undefined] = ACTIONS(2718), - [anon_sym_UNDEFINED] = ACTIONS(2718), - [anon_sym_get] = ACTIONS(2718), - [anon_sym_set] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(2718), - [sym_hash_empty] = ACTIONS(2716), - [anon_sym_export] = ACTIONS(2718), - [anon_sym_QueryExecute] = ACTIONS(2718), - [anon_sym_queryexecute] = ACTIONS(2718), - [anon_sym_QUERYEXECUTE] = ACTIONS(2718), - [anon_sym_queryExecute] = ACTIONS(2718), - [anon_sym_BQUOTE] = ACTIONS(2718), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2716), - [anon_sym_Abstract] = ACTIONS(2718), - [anon_sym_abstract] = ACTIONS(2718), - [anon_sym_ABSTRACT] = ACTIONS(2718), - [anon_sym_Break] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_BREAK] = ACTIONS(2718), - [anon_sym_Case] = ACTIONS(2718), - [anon_sym_case] = ACTIONS(2718), - [anon_sym_CASE] = ACTIONS(2718), - [anon_sym_Component] = ACTIONS(2718), - [anon_sym_component] = ACTIONS(2718), - [anon_sym_COMPONENT] = ACTIONS(2718), - [anon_sym_Continue] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_CONTINUE] = ACTIONS(2718), - [anon_sym_Debugger] = ACTIONS(2718), - [anon_sym_debugger] = ACTIONS(2718), - [anon_sym_DEBUGGER] = ACTIONS(2718), - [anon_sym_Default] = ACTIONS(2718), - [anon_sym_default] = ACTIONS(2718), - [anon_sym_DEFAULT] = ACTIONS(2718), - [anon_sym_Do] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_DO] = ACTIONS(2718), - [anon_sym_Final] = ACTIONS(2718), - [anon_sym_final] = ACTIONS(2718), - [anon_sym_FINAL] = ACTIONS(2718), - [anon_sym_For] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_FOR] = ACTIONS(2718), - [anon_sym_Function] = ACTIONS(2718), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_FUNCTION] = ACTIONS(2718), - [anon_sym_If] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_IF] = ACTIONS(2718), - [anon_sym_Import] = ACTIONS(2718), - [anon_sym_import] = ACTIONS(2718), - [anon_sym_IMPORT] = ACTIONS(2718), - [anon_sym_Include] = ACTIONS(2718), - [anon_sym_include] = ACTIONS(2718), - [anon_sym_INCLUDE] = ACTIONS(2718), - [anon_sym_Interface] = ACTIONS(2718), - [anon_sym_interface] = ACTIONS(2718), - [anon_sym_INTERFACE] = ACTIONS(2718), - [anon_sym_New] = ACTIONS(2718), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_NEW] = ACTIONS(2718), - [anon_sym_Package] = ACTIONS(2718), - [anon_sym_package] = ACTIONS(2718), - [anon_sym_PACKAGE] = ACTIONS(2718), - [anon_sym_Private] = ACTIONS(2718), - [anon_sym_private] = ACTIONS(2718), - [anon_sym_PRIVATE] = ACTIONS(2718), - [anon_sym_Property] = ACTIONS(2718), - [anon_sym_property] = ACTIONS(2718), - [anon_sym_PROPERTY] = ACTIONS(2718), - [anon_sym_Public] = ACTIONS(2718), - [anon_sym_public] = ACTIONS(2718), - [anon_sym_PUBLIC] = ACTIONS(2718), - [anon_sym_Remote] = ACTIONS(2718), - [anon_sym_remote] = ACTIONS(2718), - [anon_sym_REMOTE] = ACTIONS(2718), - [anon_sym_Return] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_RETURN] = ACTIONS(2718), - [anon_sym_Static] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_STATIC] = ACTIONS(2718), - [anon_sym_Switch] = ACTIONS(2718), - [anon_sym_switch] = ACTIONS(2718), - [anon_sym_SWITCH] = ACTIONS(2718), - [anon_sym_Throw] = ACTIONS(2718), - [anon_sym_throw] = ACTIONS(2718), - [anon_sym_THROW] = ACTIONS(2718), - [anon_sym_Try] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_TRY] = ACTIONS(2718), - [anon_sym_Var] = ACTIONS(2718), - [anon_sym_var] = ACTIONS(2718), - [anon_sym_VAR] = ACTIONS(2718), - [anon_sym_While] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_WHILE] = ACTIONS(2718), - [anon_sym_With] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_WITH] = ACTIONS(2718), - [sym_cf_comment] = ACTIONS(2716), - [sym__java_block_open] = ACTIONS(2716), - [sym__static_type_prefix] = ACTIONS(2716), + [STATE(946)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3488), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4617), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4617), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2663), + [sym_hash_expression] = STATE(2663), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4635), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3265), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(894)] = { - [ts_builtin_sym_end] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_let] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_Query] = ACTIONS(3080), - [anon_sym_query] = ACTIONS(3080), - [anon_sym_QUERY] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_unary_operator_token1] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), + [STATE(947)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3551), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4625), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4625), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2725), + [sym_hash_expression] = STATE(2725), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4634), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3269), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3080), - [aux_sym_number_token2] = ACTIONS(3078), - [anon_sym_This] = ACTIONS(3080), - [anon_sym_this] = ACTIONS(3080), - [anon_sym_THIS] = ACTIONS(3080), - [anon_sym_Super] = ACTIONS(3080), - [anon_sym_super] = ACTIONS(3080), - [anon_sym_SUPER] = ACTIONS(3080), - [anon_sym_True] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3080), - [anon_sym_TRUE] = ACTIONS(3080), - [anon_sym_False] = ACTIONS(3080), - [anon_sym_false] = ACTIONS(3080), - [anon_sym_FALSE] = ACTIONS(3080), - [anon_sym_Null] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3080), - [anon_sym_NULL] = ACTIONS(3080), - [anon_sym_Undefined] = ACTIONS(3080), - [anon_sym_undefined] = ACTIONS(3080), - [anon_sym_UNDEFINED] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3080), - [anon_sym_set] = ACTIONS(3080), - [anon_sym_POUND] = ACTIONS(3080), - [sym_hash_empty] = ACTIONS(3078), - [anon_sym_export] = ACTIONS(3080), - [anon_sym_QueryExecute] = ACTIONS(3080), - [anon_sym_queryexecute] = ACTIONS(3080), - [anon_sym_QUERYEXECUTE] = ACTIONS(3080), - [anon_sym_queryExecute] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3078), - [anon_sym_Abstract] = ACTIONS(3080), - [anon_sym_abstract] = ACTIONS(3080), - [anon_sym_ABSTRACT] = ACTIONS(3080), - [anon_sym_Break] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_BREAK] = ACTIONS(3080), - [anon_sym_Case] = ACTIONS(3080), - [anon_sym_case] = ACTIONS(3080), - [anon_sym_CASE] = ACTIONS(3080), - [anon_sym_Component] = ACTIONS(3080), - [anon_sym_component] = ACTIONS(3080), - [anon_sym_COMPONENT] = ACTIONS(3080), - [anon_sym_Continue] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_CONTINUE] = ACTIONS(3080), - [anon_sym_Debugger] = ACTIONS(3080), - [anon_sym_debugger] = ACTIONS(3080), - [anon_sym_DEBUGGER] = ACTIONS(3080), - [anon_sym_Default] = ACTIONS(3080), - [anon_sym_default] = ACTIONS(3080), - [anon_sym_DEFAULT] = ACTIONS(3080), - [anon_sym_Do] = ACTIONS(3080), - [anon_sym_do] = ACTIONS(3080), - [anon_sym_DO] = ACTIONS(3080), - [anon_sym_Final] = ACTIONS(3080), - [anon_sym_final] = ACTIONS(3080), - [anon_sym_FINAL] = ACTIONS(3080), - [anon_sym_For] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_FOR] = ACTIONS(3080), - [anon_sym_Function] = ACTIONS(3080), - [anon_sym_function] = ACTIONS(3080), - [anon_sym_FUNCTION] = ACTIONS(3080), - [anon_sym_If] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_IF] = ACTIONS(3080), - [anon_sym_Import] = ACTIONS(3080), - [anon_sym_import] = ACTIONS(3080), - [anon_sym_IMPORT] = ACTIONS(3080), - [anon_sym_Include] = ACTIONS(3080), - [anon_sym_include] = ACTIONS(3080), - [anon_sym_INCLUDE] = ACTIONS(3080), - [anon_sym_Interface] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_INTERFACE] = ACTIONS(3080), - [anon_sym_New] = ACTIONS(3080), - [anon_sym_new] = ACTIONS(3080), - [anon_sym_NEW] = ACTIONS(3080), - [anon_sym_Package] = ACTIONS(3080), - [anon_sym_package] = ACTIONS(3080), - [anon_sym_PACKAGE] = ACTIONS(3080), - [anon_sym_Private] = ACTIONS(3080), - [anon_sym_private] = ACTIONS(3080), - [anon_sym_PRIVATE] = ACTIONS(3080), - [anon_sym_Property] = ACTIONS(3080), - [anon_sym_property] = ACTIONS(3080), - [anon_sym_PROPERTY] = ACTIONS(3080), - [anon_sym_Public] = ACTIONS(3080), - [anon_sym_public] = ACTIONS(3080), - [anon_sym_PUBLIC] = ACTIONS(3080), - [anon_sym_Remote] = ACTIONS(3080), - [anon_sym_remote] = ACTIONS(3080), - [anon_sym_REMOTE] = ACTIONS(3080), - [anon_sym_Return] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_RETURN] = ACTIONS(3080), - [anon_sym_Static] = ACTIONS(3080), - [anon_sym_static] = ACTIONS(3080), - [anon_sym_STATIC] = ACTIONS(3080), - [anon_sym_Switch] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(3080), - [anon_sym_SWITCH] = ACTIONS(3080), - [anon_sym_Throw] = ACTIONS(3080), - [anon_sym_throw] = ACTIONS(3080), - [anon_sym_THROW] = ACTIONS(3080), - [anon_sym_Try] = ACTIONS(3080), - [anon_sym_try] = ACTIONS(3080), - [anon_sym_TRY] = ACTIONS(3080), - [anon_sym_Var] = ACTIONS(3080), - [anon_sym_var] = ACTIONS(3080), - [anon_sym_VAR] = ACTIONS(3080), - [anon_sym_While] = ACTIONS(3080), - [anon_sym_while] = ACTIONS(3080), - [anon_sym_WHILE] = ACTIONS(3080), - [anon_sym_With] = ACTIONS(3080), - [anon_sym_with] = ACTIONS(3080), - [anon_sym_WITH] = ACTIONS(3080), - [sym_cf_comment] = ACTIONS(3078), - [sym__java_block_open] = ACTIONS(3078), - [sym__static_type_prefix] = ACTIONS(3078), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(895)] = { - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_Query] = ACTIONS(2728), - [anon_sym_query] = ACTIONS(2728), - [anon_sym_QUERY] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [aux_sym_unary_operator_token1] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2726), + [STATE(948)] = { + [sym_identifier] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_Query] = ACTIONS(3273), + [anon_sym_query] = ACTIONS(3273), + [anon_sym_QUERY] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [aux_sym_unary_operator_token1] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3273), + [aux_sym_number_token2] = ACTIONS(3275), + [anon_sym_This] = ACTIONS(3273), + [anon_sym_this] = ACTIONS(3273), + [anon_sym_THIS] = ACTIONS(3273), + [anon_sym_Super] = ACTIONS(3273), + [anon_sym_super] = ACTIONS(3273), + [anon_sym_SUPER] = ACTIONS(3273), + [anon_sym_True] = ACTIONS(3273), + [anon_sym_true] = ACTIONS(3273), + [anon_sym_TRUE] = ACTIONS(3273), + [anon_sym_False] = ACTIONS(3273), + [anon_sym_false] = ACTIONS(3273), + [anon_sym_FALSE] = ACTIONS(3273), + [anon_sym_Null] = ACTIONS(3273), + [anon_sym_null] = ACTIONS(3273), + [anon_sym_NULL] = ACTIONS(3273), + [anon_sym_Undefined] = ACTIONS(3273), + [anon_sym_undefined] = ACTIONS(3273), + [anon_sym_UNDEFINED] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(3273), + [sym_hash_empty] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_QueryExecute] = ACTIONS(3273), + [anon_sym_queryexecute] = ACTIONS(3273), + [anon_sym_QUERYEXECUTE] = ACTIONS(3273), + [anon_sym_queryExecute] = ACTIONS(3273), + [anon_sym_BQUOTE] = ACTIONS(3273), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3275), + [anon_sym_Abstract] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_ABSTRACT] = ACTIONS(3273), + [anon_sym_Break] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_BREAK] = ACTIONS(3273), + [anon_sym_Component] = ACTIONS(3273), + [anon_sym_component] = ACTIONS(3273), + [anon_sym_COMPONENT] = ACTIONS(3273), + [anon_sym_Continue] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_CONTINUE] = ACTIONS(3273), + [anon_sym_Debugger] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_DEBUGGER] = ACTIONS(3273), + [anon_sym_Do] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_DO] = ACTIONS(3273), + [anon_sym_Final] = ACTIONS(3273), + [anon_sym_final] = ACTIONS(3273), + [anon_sym_FINAL] = ACTIONS(3273), + [anon_sym_For] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_FOR] = ACTIONS(3273), + [anon_sym_Function] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_FUNCTION] = ACTIONS(3273), + [anon_sym_If] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_IF] = ACTIONS(3273), + [anon_sym_Import] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_IMPORT] = ACTIONS(3273), + [anon_sym_Include] = ACTIONS(3273), + [anon_sym_include] = ACTIONS(3273), + [anon_sym_INCLUDE] = ACTIONS(3273), + [anon_sym_Interface] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_INTERFACE] = ACTIONS(3273), + [anon_sym_New] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_NEW] = ACTIONS(3273), + [anon_sym_Package] = ACTIONS(3273), + [anon_sym_package] = ACTIONS(3273), + [anon_sym_PACKAGE] = ACTIONS(3273), + [anon_sym_Private] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_PRIVATE] = ACTIONS(3273), + [anon_sym_Property] = ACTIONS(3273), + [anon_sym_property] = ACTIONS(3273), + [anon_sym_PROPERTY] = ACTIONS(3273), + [anon_sym_Public] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_PUBLIC] = ACTIONS(3273), + [anon_sym_Remote] = ACTIONS(3273), + [anon_sym_remote] = ACTIONS(3273), + [anon_sym_REMOTE] = ACTIONS(3273), + [anon_sym_Return] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_RETURN] = ACTIONS(3273), + [anon_sym_Static] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_STATIC] = ACTIONS(3273), + [anon_sym_Switch] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_SWITCH] = ACTIONS(3273), + [anon_sym_Throw] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_THROW] = ACTIONS(3273), + [anon_sym_Try] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_TRY] = ACTIONS(3273), + [anon_sym_Var] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_VAR] = ACTIONS(3273), + [anon_sym_While] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_WHILE] = ACTIONS(3273), + [anon_sym_With] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_WITH] = ACTIONS(3273), + [sym_cf_comment] = ACTIONS(3275), + [sym__java_block_open] = ACTIONS(3275), + [sym__static_type_prefix] = ACTIONS(3275), + }, + [STATE(949)] = { + [sym_import_statement] = STATE(949), + [sym_tag_statement] = STATE(949), + [aux_sym_program_repeat1] = STATE(949), + [ts_builtin_sym_end] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_Query] = ACTIONS(3282), + [anon_sym_query] = ACTIONS(3282), + [anon_sym_QUERY] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [aux_sym_unary_operator_token1] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [sym_comment] = ACTIONS(3284), + [aux_sym_number_token1] = ACTIONS(3282), + [aux_sym_number_token2] = ACTIONS(3277), + [anon_sym_This] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3282), + [anon_sym_THIS] = ACTIONS(3282), + [anon_sym_Super] = ACTIONS(3282), + [anon_sym_super] = ACTIONS(3282), + [anon_sym_SUPER] = ACTIONS(3282), + [anon_sym_True] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_TRUE] = ACTIONS(3282), + [anon_sym_False] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [anon_sym_FALSE] = ACTIONS(3282), + [anon_sym_Null] = ACTIONS(3282), + [anon_sym_null] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_Undefined] = ACTIONS(3282), + [anon_sym_undefined] = ACTIONS(3282), + [anon_sym_UNDEFINED] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_POUND] = ACTIONS(3282), + [sym_hash_empty] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_QueryExecute] = ACTIONS(3282), + [anon_sym_queryexecute] = ACTIONS(3282), + [anon_sym_QUERYEXECUTE] = ACTIONS(3282), + [anon_sym_queryExecute] = ACTIONS(3282), + [anon_sym_BQUOTE] = ACTIONS(3282), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3277), + [anon_sym_Abstract] = ACTIONS(3282), + [anon_sym_abstract] = ACTIONS(3282), + [anon_sym_ABSTRACT] = ACTIONS(3282), + [anon_sym_Break] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_BREAK] = ACTIONS(3282), + [anon_sym_Component] = ACTIONS(3282), + [anon_sym_component] = ACTIONS(3282), + [anon_sym_COMPONENT] = ACTIONS(3282), + [anon_sym_Continue] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_CONTINUE] = ACTIONS(3282), + [anon_sym_Debugger] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_DEBUGGER] = ACTIONS(3282), + [anon_sym_Do] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_DO] = ACTIONS(3282), + [anon_sym_Final] = ACTIONS(3282), + [anon_sym_final] = ACTIONS(3282), + [anon_sym_FINAL] = ACTIONS(3282), + [anon_sym_For] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_FOR] = ACTIONS(3282), + [anon_sym_Function] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_FUNCTION] = ACTIONS(3282), + [anon_sym_If] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_IF] = ACTIONS(3282), + [anon_sym_Import] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_IMPORT] = ACTIONS(3287), + [anon_sym_Include] = ACTIONS(3282), + [anon_sym_include] = ACTIONS(3282), + [anon_sym_INCLUDE] = ACTIONS(3282), + [anon_sym_Interface] = ACTIONS(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_INTERFACE] = ACTIONS(3282), + [anon_sym_New] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_NEW] = ACTIONS(3282), + [anon_sym_Package] = ACTIONS(3282), + [anon_sym_package] = ACTIONS(3282), + [anon_sym_PACKAGE] = ACTIONS(3282), + [anon_sym_Private] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_PRIVATE] = ACTIONS(3282), + [anon_sym_Public] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_PUBLIC] = ACTIONS(3282), + [anon_sym_Remote] = ACTIONS(3282), + [anon_sym_remote] = ACTIONS(3282), + [anon_sym_REMOTE] = ACTIONS(3282), + [anon_sym_Return] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_RETURN] = ACTIONS(3282), + [anon_sym_Static] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_STATIC] = ACTIONS(3282), + [anon_sym_Switch] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_SWITCH] = ACTIONS(3282), + [anon_sym_Throw] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_THROW] = ACTIONS(3282), + [anon_sym_Try] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_TRY] = ACTIONS(3282), + [anon_sym_Var] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_VAR] = ACTIONS(3282), + [anon_sym_While] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_WHILE] = ACTIONS(3282), + [anon_sym_With] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_WITH] = ACTIONS(3282), + [sym_cf_comment] = ACTIONS(3277), + [sym__java_block_open] = ACTIONS(3277), + [sym__static_type_prefix] = ACTIONS(3277), + }, + [STATE(950)] = { + [sym_identifier] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_Query] = ACTIONS(3290), + [anon_sym_query] = ACTIONS(3290), + [anon_sym_QUERY] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [aux_sym_unary_operator_token1] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3290), + [aux_sym_number_token2] = ACTIONS(3292), + [anon_sym_This] = ACTIONS(3290), + [anon_sym_this] = ACTIONS(3290), + [anon_sym_THIS] = ACTIONS(3290), + [anon_sym_Super] = ACTIONS(3290), + [anon_sym_super] = ACTIONS(3290), + [anon_sym_SUPER] = ACTIONS(3290), + [anon_sym_True] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3290), + [anon_sym_TRUE] = ACTIONS(3290), + [anon_sym_False] = ACTIONS(3290), + [anon_sym_false] = ACTIONS(3290), + [anon_sym_FALSE] = ACTIONS(3290), + [anon_sym_Null] = ACTIONS(3290), + [anon_sym_null] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_Undefined] = ACTIONS(3290), + [anon_sym_undefined] = ACTIONS(3290), + [anon_sym_UNDEFINED] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3290), + [anon_sym_set] = ACTIONS(3290), + [anon_sym_POUND] = ACTIONS(3290), + [sym_hash_empty] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_QueryExecute] = ACTIONS(3290), + [anon_sym_queryexecute] = ACTIONS(3290), + [anon_sym_QUERYEXECUTE] = ACTIONS(3290), + [anon_sym_queryExecute] = ACTIONS(3290), + [anon_sym_BQUOTE] = ACTIONS(3290), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3292), + [anon_sym_Abstract] = ACTIONS(3290), + [anon_sym_abstract] = ACTIONS(3290), + [anon_sym_ABSTRACT] = ACTIONS(3290), + [anon_sym_Break] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_BREAK] = ACTIONS(3290), + [anon_sym_Component] = ACTIONS(3290), + [anon_sym_component] = ACTIONS(3290), + [anon_sym_COMPONENT] = ACTIONS(3290), + [anon_sym_Continue] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_CONTINUE] = ACTIONS(3290), + [anon_sym_Debugger] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_DEBUGGER] = ACTIONS(3290), + [anon_sym_Do] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_DO] = ACTIONS(3290), + [anon_sym_Final] = ACTIONS(3290), + [anon_sym_final] = ACTIONS(3290), + [anon_sym_FINAL] = ACTIONS(3290), + [anon_sym_For] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_FOR] = ACTIONS(3290), + [anon_sym_Function] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_FUNCTION] = ACTIONS(3290), + [anon_sym_If] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_IF] = ACTIONS(3290), + [anon_sym_Import] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_IMPORT] = ACTIONS(3290), + [anon_sym_Include] = ACTIONS(3290), + [anon_sym_include] = ACTIONS(3290), + [anon_sym_INCLUDE] = ACTIONS(3290), + [anon_sym_Interface] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_INTERFACE] = ACTIONS(3290), + [anon_sym_New] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_NEW] = ACTIONS(3290), + [anon_sym_Package] = ACTIONS(3290), + [anon_sym_package] = ACTIONS(3290), + [anon_sym_PACKAGE] = ACTIONS(3290), + [anon_sym_Private] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_PRIVATE] = ACTIONS(3290), + [anon_sym_Property] = ACTIONS(3290), + [anon_sym_property] = ACTIONS(3290), + [anon_sym_PROPERTY] = ACTIONS(3290), + [anon_sym_Public] = ACTIONS(3290), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_PUBLIC] = ACTIONS(3290), + [anon_sym_Remote] = ACTIONS(3290), + [anon_sym_remote] = ACTIONS(3290), + [anon_sym_REMOTE] = ACTIONS(3290), + [anon_sym_Return] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_RETURN] = ACTIONS(3290), + [anon_sym_Static] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_STATIC] = ACTIONS(3290), + [anon_sym_Switch] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_SWITCH] = ACTIONS(3290), + [anon_sym_Throw] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_THROW] = ACTIONS(3290), + [anon_sym_Try] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_TRY] = ACTIONS(3290), + [anon_sym_Var] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_VAR] = ACTIONS(3290), + [anon_sym_While] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_WHILE] = ACTIONS(3290), + [anon_sym_With] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_WITH] = ACTIONS(3290), + [sym_cf_comment] = ACTIONS(3292), + [sym__java_block_open] = ACTIONS(3292), + [sym__static_type_prefix] = ACTIONS(3292), + }, + [STATE(951)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3543), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4768), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4768), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2737), + [sym_hash_expression] = STATE(2737), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4773), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3294), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2728), - [aux_sym_number_token2] = ACTIONS(2726), - [anon_sym_This] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2728), - [anon_sym_THIS] = ACTIONS(2728), - [anon_sym_Super] = ACTIONS(2728), - [anon_sym_super] = ACTIONS(2728), - [anon_sym_SUPER] = ACTIONS(2728), - [anon_sym_True] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_TRUE] = ACTIONS(2728), - [anon_sym_False] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [anon_sym_FALSE] = ACTIONS(2728), - [anon_sym_Null] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2728), - [anon_sym_NULL] = ACTIONS(2728), - [anon_sym_Undefined] = ACTIONS(2728), - [anon_sym_undefined] = ACTIONS(2728), - [anon_sym_UNDEFINED] = ACTIONS(2728), - [anon_sym_get] = ACTIONS(2728), - [anon_sym_set] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [sym_hash_empty] = ACTIONS(2726), - [anon_sym_export] = ACTIONS(2728), - [anon_sym_QueryExecute] = ACTIONS(2728), - [anon_sym_queryexecute] = ACTIONS(2728), - [anon_sym_QUERYEXECUTE] = ACTIONS(2728), - [anon_sym_queryExecute] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2726), - [anon_sym_Abstract] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_ABSTRACT] = ACTIONS(2728), - [anon_sym_Break] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_BREAK] = ACTIONS(2728), - [anon_sym_Case] = ACTIONS(2728), - [anon_sym_case] = ACTIONS(2728), - [anon_sym_CASE] = ACTIONS(2728), - [anon_sym_Component] = ACTIONS(2728), - [anon_sym_component] = ACTIONS(2728), - [anon_sym_COMPONENT] = ACTIONS(2728), - [anon_sym_Continue] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_CONTINUE] = ACTIONS(2728), - [anon_sym_Debugger] = ACTIONS(2728), - [anon_sym_debugger] = ACTIONS(2728), - [anon_sym_DEBUGGER] = ACTIONS(2728), - [anon_sym_Default] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_DEFAULT] = ACTIONS(2728), - [anon_sym_Do] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_DO] = ACTIONS(2728), - [anon_sym_Final] = ACTIONS(2728), - [anon_sym_final] = ACTIONS(2728), - [anon_sym_FINAL] = ACTIONS(2728), - [anon_sym_For] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_FOR] = ACTIONS(2728), - [anon_sym_Function] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_FUNCTION] = ACTIONS(2728), - [anon_sym_If] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_IF] = ACTIONS(2728), - [anon_sym_Import] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_IMPORT] = ACTIONS(2728), - [anon_sym_Include] = ACTIONS(2728), - [anon_sym_include] = ACTIONS(2728), - [anon_sym_INCLUDE] = ACTIONS(2728), - [anon_sym_Interface] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_INTERFACE] = ACTIONS(2728), - [anon_sym_New] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_NEW] = ACTIONS(2728), - [anon_sym_Package] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2728), - [anon_sym_PACKAGE] = ACTIONS(2728), - [anon_sym_Private] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_PRIVATE] = ACTIONS(2728), - [anon_sym_Property] = ACTIONS(2728), - [anon_sym_property] = ACTIONS(2728), - [anon_sym_PROPERTY] = ACTIONS(2728), - [anon_sym_Public] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_PUBLIC] = ACTIONS(2728), - [anon_sym_Remote] = ACTIONS(2728), - [anon_sym_remote] = ACTIONS(2728), - [anon_sym_REMOTE] = ACTIONS(2728), - [anon_sym_Return] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_RETURN] = ACTIONS(2728), - [anon_sym_Static] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_STATIC] = ACTIONS(2728), - [anon_sym_Switch] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_SWITCH] = ACTIONS(2728), - [anon_sym_Throw] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_THROW] = ACTIONS(2728), - [anon_sym_Try] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_TRY] = ACTIONS(2728), - [anon_sym_Var] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [anon_sym_VAR] = ACTIONS(2728), - [anon_sym_While] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_WHILE] = ACTIONS(2728), - [anon_sym_With] = ACTIONS(2728), - [anon_sym_with] = ACTIONS(2728), - [anon_sym_WITH] = ACTIONS(2728), - [sym_cf_comment] = ACTIONS(2726), - [sym__java_block_open] = ACTIONS(2726), - [sym__static_type_prefix] = ACTIONS(2726), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(896)] = { - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_Query] = ACTIONS(2728), - [anon_sym_query] = ACTIONS(2728), - [anon_sym_QUERY] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [aux_sym_unary_operator_token1] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2726), + [STATE(952)] = { + [sym_identifier] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_Query] = ACTIONS(3298), + [anon_sym_query] = ACTIONS(3298), + [anon_sym_QUERY] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [aux_sym_unary_operator_token1] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3298), + [aux_sym_number_token2] = ACTIONS(3300), + [anon_sym_This] = ACTIONS(3298), + [anon_sym_this] = ACTIONS(3298), + [anon_sym_THIS] = ACTIONS(3298), + [anon_sym_Super] = ACTIONS(3298), + [anon_sym_super] = ACTIONS(3298), + [anon_sym_SUPER] = ACTIONS(3298), + [anon_sym_True] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_TRUE] = ACTIONS(3298), + [anon_sym_False] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_FALSE] = ACTIONS(3298), + [anon_sym_Null] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3298), + [anon_sym_NULL] = ACTIONS(3298), + [anon_sym_Undefined] = ACTIONS(3298), + [anon_sym_undefined] = ACTIONS(3298), + [anon_sym_UNDEFINED] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_POUND] = ACTIONS(3298), + [sym_hash_empty] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_QueryExecute] = ACTIONS(3298), + [anon_sym_queryexecute] = ACTIONS(3298), + [anon_sym_QUERYEXECUTE] = ACTIONS(3298), + [anon_sym_queryExecute] = ACTIONS(3298), + [anon_sym_BQUOTE] = ACTIONS(3298), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3300), + [anon_sym_Abstract] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_ABSTRACT] = ACTIONS(3298), + [anon_sym_Break] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_BREAK] = ACTIONS(3298), + [anon_sym_Component] = ACTIONS(3298), + [anon_sym_component] = ACTIONS(3298), + [anon_sym_COMPONENT] = ACTIONS(3298), + [anon_sym_Continue] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_CONTINUE] = ACTIONS(3298), + [anon_sym_Debugger] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_DEBUGGER] = ACTIONS(3298), + [anon_sym_Do] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_DO] = ACTIONS(3298), + [anon_sym_Final] = ACTIONS(3298), + [anon_sym_final] = ACTIONS(3298), + [anon_sym_FINAL] = ACTIONS(3298), + [anon_sym_For] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_FOR] = ACTIONS(3298), + [anon_sym_Function] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_FUNCTION] = ACTIONS(3298), + [anon_sym_If] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_IF] = ACTIONS(3298), + [anon_sym_Import] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_IMPORT] = ACTIONS(3298), + [anon_sym_Include] = ACTIONS(3298), + [anon_sym_include] = ACTIONS(3298), + [anon_sym_INCLUDE] = ACTIONS(3298), + [anon_sym_Interface] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_INTERFACE] = ACTIONS(3298), + [anon_sym_New] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_NEW] = ACTIONS(3298), + [anon_sym_Package] = ACTIONS(3298), + [anon_sym_package] = ACTIONS(3298), + [anon_sym_PACKAGE] = ACTIONS(3298), + [anon_sym_Private] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_PRIVATE] = ACTIONS(3298), + [anon_sym_Property] = ACTIONS(3298), + [anon_sym_property] = ACTIONS(3298), + [anon_sym_PROPERTY] = ACTIONS(3298), + [anon_sym_Public] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_PUBLIC] = ACTIONS(3298), + [anon_sym_Remote] = ACTIONS(3298), + [anon_sym_remote] = ACTIONS(3298), + [anon_sym_REMOTE] = ACTIONS(3298), + [anon_sym_Return] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_RETURN] = ACTIONS(3298), + [anon_sym_Static] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_STATIC] = ACTIONS(3298), + [anon_sym_Switch] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_SWITCH] = ACTIONS(3298), + [anon_sym_Throw] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_THROW] = ACTIONS(3298), + [anon_sym_Try] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_TRY] = ACTIONS(3298), + [anon_sym_Var] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_VAR] = ACTIONS(3298), + [anon_sym_While] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_WHILE] = ACTIONS(3298), + [anon_sym_With] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_WITH] = ACTIONS(3298), + [sym_cf_comment] = ACTIONS(3300), + [sym__java_block_open] = ACTIONS(3300), + [sym__static_type_prefix] = ACTIONS(3300), + }, + [STATE(953)] = { + [sym_variable_declaration] = STATE(1192), + [sym_empty_statement] = STATE(1192), + [sym_parenthesized_expression] = STATE(2234), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4154), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2234), + [sym_subscript_expression] = STATE(2234), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4154), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5244), + [sym_string] = STATE(2639), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2639), + [sym_undefined] = STATE(2639), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3425), + [sym_hash_expression] = STATE(3425), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_Query] = ACTIONS(3312), + [anon_sym_query] = ACTIONS(3312), + [anon_sym_QUERY] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2728), - [aux_sym_number_token2] = ACTIONS(2726), - [anon_sym_This] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2728), - [anon_sym_THIS] = ACTIONS(2728), - [anon_sym_Super] = ACTIONS(2728), - [anon_sym_super] = ACTIONS(2728), - [anon_sym_SUPER] = ACTIONS(2728), - [anon_sym_True] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_TRUE] = ACTIONS(2728), - [anon_sym_False] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [anon_sym_FALSE] = ACTIONS(2728), - [anon_sym_Null] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2728), - [anon_sym_NULL] = ACTIONS(2728), - [anon_sym_Undefined] = ACTIONS(2728), - [anon_sym_undefined] = ACTIONS(2728), - [anon_sym_UNDEFINED] = ACTIONS(2728), - [anon_sym_get] = ACTIONS(2728), - [anon_sym_set] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [sym_hash_empty] = ACTIONS(2726), - [anon_sym_export] = ACTIONS(2728), - [anon_sym_QueryExecute] = ACTIONS(2728), - [anon_sym_queryexecute] = ACTIONS(2728), - [anon_sym_QUERYEXECUTE] = ACTIONS(2728), - [anon_sym_queryExecute] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2726), - [anon_sym_Abstract] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_ABSTRACT] = ACTIONS(2728), - [anon_sym_Break] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_BREAK] = ACTIONS(2728), - [anon_sym_Case] = ACTIONS(2728), - [anon_sym_case] = ACTIONS(2728), - [anon_sym_CASE] = ACTIONS(2728), - [anon_sym_Component] = ACTIONS(2728), - [anon_sym_component] = ACTIONS(2728), - [anon_sym_COMPONENT] = ACTIONS(2728), - [anon_sym_Continue] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_CONTINUE] = ACTIONS(2728), - [anon_sym_Debugger] = ACTIONS(2728), - [anon_sym_debugger] = ACTIONS(2728), - [anon_sym_DEBUGGER] = ACTIONS(2728), - [anon_sym_Default] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_DEFAULT] = ACTIONS(2728), - [anon_sym_Do] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_DO] = ACTIONS(2728), - [anon_sym_Final] = ACTIONS(2728), - [anon_sym_final] = ACTIONS(2728), - [anon_sym_FINAL] = ACTIONS(2728), - [anon_sym_For] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_FOR] = ACTIONS(2728), - [anon_sym_Function] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_FUNCTION] = ACTIONS(2728), - [anon_sym_If] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_IF] = ACTIONS(2728), - [anon_sym_Import] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_IMPORT] = ACTIONS(2728), - [anon_sym_Include] = ACTIONS(2728), - [anon_sym_include] = ACTIONS(2728), - [anon_sym_INCLUDE] = ACTIONS(2728), - [anon_sym_Interface] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_INTERFACE] = ACTIONS(2728), - [anon_sym_New] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_NEW] = ACTIONS(2728), - [anon_sym_Package] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2728), - [anon_sym_PACKAGE] = ACTIONS(2728), - [anon_sym_Private] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_PRIVATE] = ACTIONS(2728), - [anon_sym_Property] = ACTIONS(2728), - [anon_sym_property] = ACTIONS(2728), - [anon_sym_PROPERTY] = ACTIONS(2728), - [anon_sym_Public] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_PUBLIC] = ACTIONS(2728), - [anon_sym_Remote] = ACTIONS(2728), - [anon_sym_remote] = ACTIONS(2728), - [anon_sym_REMOTE] = ACTIONS(2728), - [anon_sym_Return] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_RETURN] = ACTIONS(2728), - [anon_sym_Static] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_STATIC] = ACTIONS(2728), - [anon_sym_Switch] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_SWITCH] = ACTIONS(2728), - [anon_sym_Throw] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_THROW] = ACTIONS(2728), - [anon_sym_Try] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_TRY] = ACTIONS(2728), - [anon_sym_Var] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [anon_sym_VAR] = ACTIONS(2728), - [anon_sym_While] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_WHILE] = ACTIONS(2728), - [anon_sym_With] = ACTIONS(2728), - [anon_sym_with] = ACTIONS(2728), - [anon_sym_WITH] = ACTIONS(2728), - [sym_cf_comment] = ACTIONS(2726), - [sym__java_block_open] = ACTIONS(2726), - [sym__static_type_prefix] = ACTIONS(2726), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_QueryExecute] = ACTIONS(3316), + [anon_sym_queryexecute] = ACTIONS(3316), + [anon_sym_QUERYEXECUTE] = ACTIONS(3316), + [anon_sym_queryExecute] = ACTIONS(3316), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_ABSTRACT] = ACTIONS(3312), + [anon_sym_Component] = ACTIONS(3312), + [anon_sym_component] = ACTIONS(3312), + [anon_sym_COMPONENT] = ACTIONS(3312), + [anon_sym_Debugger] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_DEBUGGER] = ACTIONS(3312), + [anon_sym_Final] = ACTIONS(3318), + [anon_sym_final] = ACTIONS(3318), + [anon_sym_FINAL] = ACTIONS(3318), + [anon_sym_Function] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_FUNCTION] = ACTIONS(3320), + [anon_sym_Include] = ACTIONS(3312), + [anon_sym_include] = ACTIONS(3312), + [anon_sym_INCLUDE] = ACTIONS(3312), + [anon_sym_New] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_NEW] = ACTIONS(3322), + [anon_sym_Package] = ACTIONS(3324), + [anon_sym_package] = ACTIONS(3324), + [anon_sym_PACKAGE] = ACTIONS(3324), + [anon_sym_Private] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_PRIVATE] = ACTIONS(3324), + [anon_sym_Public] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_PUBLIC] = ACTIONS(3324), + [anon_sym_Remote] = ACTIONS(3324), + [anon_sym_remote] = ACTIONS(3324), + [anon_sym_REMOTE] = ACTIONS(3324), + [anon_sym_Static] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_STATIC] = ACTIONS(3312), + [anon_sym_Var] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_VAR] = ACTIONS(3326), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(897)] = { - [ts_builtin_sym_end] = ACTIONS(3020), - [sym_identifier] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3020), - [anon_sym_RBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3020), - [anon_sym_SEMI] = ACTIONS(3020), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_Query] = ACTIONS(3022), - [anon_sym_query] = ACTIONS(3022), - [anon_sym_QUERY] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3020), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_unary_operator_token1] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3020), - [anon_sym_DASH_DASH] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3022), - [aux_sym_number_token2] = ACTIONS(3020), - [anon_sym_This] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_THIS] = ACTIONS(3022), - [anon_sym_Super] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_SUPER] = ACTIONS(3022), - [anon_sym_True] = ACTIONS(3022), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_TRUE] = ACTIONS(3022), - [anon_sym_False] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_FALSE] = ACTIONS(3022), - [anon_sym_Null] = ACTIONS(3022), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_NULL] = ACTIONS(3022), - [anon_sym_Undefined] = ACTIONS(3022), - [anon_sym_undefined] = ACTIONS(3022), - [anon_sym_UNDEFINED] = ACTIONS(3022), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3022), - [sym_hash_empty] = ACTIONS(3020), - [anon_sym_export] = ACTIONS(3022), - [anon_sym_QueryExecute] = ACTIONS(3022), - [anon_sym_queryexecute] = ACTIONS(3022), - [anon_sym_QUERYEXECUTE] = ACTIONS(3022), - [anon_sym_queryExecute] = ACTIONS(3022), - [anon_sym_BQUOTE] = ACTIONS(3022), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3020), - [anon_sym_Abstract] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_ABSTRACT] = ACTIONS(3022), - [anon_sym_Break] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_BREAK] = ACTIONS(3022), - [anon_sym_Case] = ACTIONS(3022), - [anon_sym_case] = ACTIONS(3022), - [anon_sym_CASE] = ACTIONS(3022), - [anon_sym_Component] = ACTIONS(3022), - [anon_sym_component] = ACTIONS(3022), - [anon_sym_COMPONENT] = ACTIONS(3022), - [anon_sym_Continue] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_CONTINUE] = ACTIONS(3022), - [anon_sym_Debugger] = ACTIONS(3022), - [anon_sym_debugger] = ACTIONS(3022), - [anon_sym_DEBUGGER] = ACTIONS(3022), - [anon_sym_Default] = ACTIONS(3022), - [anon_sym_default] = ACTIONS(3022), - [anon_sym_DEFAULT] = ACTIONS(3022), - [anon_sym_Do] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_DO] = ACTIONS(3022), - [anon_sym_Final] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_FINAL] = ACTIONS(3022), - [anon_sym_For] = ACTIONS(3022), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_FOR] = ACTIONS(3022), - [anon_sym_Function] = ACTIONS(3022), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_FUNCTION] = ACTIONS(3022), - [anon_sym_If] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_IF] = ACTIONS(3022), - [anon_sym_Import] = ACTIONS(3022), - [anon_sym_import] = ACTIONS(3022), - [anon_sym_IMPORT] = ACTIONS(3022), - [anon_sym_Include] = ACTIONS(3022), - [anon_sym_include] = ACTIONS(3022), - [anon_sym_INCLUDE] = ACTIONS(3022), - [anon_sym_Interface] = ACTIONS(3022), - [anon_sym_interface] = ACTIONS(3022), - [anon_sym_INTERFACE] = ACTIONS(3022), - [anon_sym_New] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_NEW] = ACTIONS(3022), - [anon_sym_Package] = ACTIONS(3022), - [anon_sym_package] = ACTIONS(3022), - [anon_sym_PACKAGE] = ACTIONS(3022), - [anon_sym_Private] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_PRIVATE] = ACTIONS(3022), - [anon_sym_Property] = ACTIONS(3022), - [anon_sym_property] = ACTIONS(3022), - [anon_sym_PROPERTY] = ACTIONS(3022), - [anon_sym_Public] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_PUBLIC] = ACTIONS(3022), - [anon_sym_Remote] = ACTIONS(3022), - [anon_sym_remote] = ACTIONS(3022), - [anon_sym_REMOTE] = ACTIONS(3022), - [anon_sym_Return] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_RETURN] = ACTIONS(3022), - [anon_sym_Static] = ACTIONS(3022), - [anon_sym_static] = ACTIONS(3022), - [anon_sym_STATIC] = ACTIONS(3022), - [anon_sym_Switch] = ACTIONS(3022), - [anon_sym_switch] = ACTIONS(3022), - [anon_sym_SWITCH] = ACTIONS(3022), - [anon_sym_Throw] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_THROW] = ACTIONS(3022), - [anon_sym_Try] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_TRY] = ACTIONS(3022), - [anon_sym_Var] = ACTIONS(3022), - [anon_sym_var] = ACTIONS(3022), - [anon_sym_VAR] = ACTIONS(3022), - [anon_sym_While] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_WHILE] = ACTIONS(3022), - [anon_sym_With] = ACTIONS(3022), - [anon_sym_with] = ACTIONS(3022), - [anon_sym_WITH] = ACTIONS(3022), - [sym_cf_comment] = ACTIONS(3020), - [sym__java_block_open] = ACTIONS(3020), - [sym__static_type_prefix] = ACTIONS(3020), + [STATE(954)] = { + [sym_identifier] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_Query] = ACTIONS(3328), + [anon_sym_query] = ACTIONS(3328), + [anon_sym_QUERY] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [aux_sym_unary_operator_token1] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3328), + [aux_sym_number_token2] = ACTIONS(3330), + [anon_sym_This] = ACTIONS(3328), + [anon_sym_this] = ACTIONS(3328), + [anon_sym_THIS] = ACTIONS(3328), + [anon_sym_Super] = ACTIONS(3328), + [anon_sym_super] = ACTIONS(3328), + [anon_sym_SUPER] = ACTIONS(3328), + [anon_sym_True] = ACTIONS(3328), + [anon_sym_true] = ACTIONS(3328), + [anon_sym_TRUE] = ACTIONS(3328), + [anon_sym_False] = ACTIONS(3328), + [anon_sym_false] = ACTIONS(3328), + [anon_sym_FALSE] = ACTIONS(3328), + [anon_sym_Null] = ACTIONS(3328), + [anon_sym_null] = ACTIONS(3328), + [anon_sym_NULL] = ACTIONS(3328), + [anon_sym_Undefined] = ACTIONS(3328), + [anon_sym_undefined] = ACTIONS(3328), + [anon_sym_UNDEFINED] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_POUND] = ACTIONS(3328), + [sym_hash_empty] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_QueryExecute] = ACTIONS(3328), + [anon_sym_queryexecute] = ACTIONS(3328), + [anon_sym_QUERYEXECUTE] = ACTIONS(3328), + [anon_sym_queryExecute] = ACTIONS(3328), + [anon_sym_BQUOTE] = ACTIONS(3328), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3330), + [anon_sym_Abstract] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_ABSTRACT] = ACTIONS(3328), + [anon_sym_Break] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_BREAK] = ACTIONS(3328), + [anon_sym_Component] = ACTIONS(3328), + [anon_sym_component] = ACTIONS(3328), + [anon_sym_COMPONENT] = ACTIONS(3328), + [anon_sym_Continue] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_CONTINUE] = ACTIONS(3328), + [anon_sym_Debugger] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_DEBUGGER] = ACTIONS(3328), + [anon_sym_Do] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_DO] = ACTIONS(3328), + [anon_sym_Final] = ACTIONS(3328), + [anon_sym_final] = ACTIONS(3328), + [anon_sym_FINAL] = ACTIONS(3328), + [anon_sym_For] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_FOR] = ACTIONS(3328), + [anon_sym_Function] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_FUNCTION] = ACTIONS(3328), + [anon_sym_If] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_IF] = ACTIONS(3328), + [anon_sym_Import] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_IMPORT] = ACTIONS(3328), + [anon_sym_Include] = ACTIONS(3328), + [anon_sym_include] = ACTIONS(3328), + [anon_sym_INCLUDE] = ACTIONS(3328), + [anon_sym_Interface] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_INTERFACE] = ACTIONS(3328), + [anon_sym_New] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_NEW] = ACTIONS(3328), + [anon_sym_Package] = ACTIONS(3328), + [anon_sym_package] = ACTIONS(3328), + [anon_sym_PACKAGE] = ACTIONS(3328), + [anon_sym_Private] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_PRIVATE] = ACTIONS(3328), + [anon_sym_Property] = ACTIONS(3328), + [anon_sym_property] = ACTIONS(3328), + [anon_sym_PROPERTY] = ACTIONS(3328), + [anon_sym_Public] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_PUBLIC] = ACTIONS(3328), + [anon_sym_Remote] = ACTIONS(3328), + [anon_sym_remote] = ACTIONS(3328), + [anon_sym_REMOTE] = ACTIONS(3328), + [anon_sym_Return] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_RETURN] = ACTIONS(3328), + [anon_sym_Static] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_STATIC] = ACTIONS(3328), + [anon_sym_Switch] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_SWITCH] = ACTIONS(3328), + [anon_sym_Throw] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_THROW] = ACTIONS(3328), + [anon_sym_Try] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_TRY] = ACTIONS(3328), + [anon_sym_Var] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_VAR] = ACTIONS(3328), + [anon_sym_While] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_WHILE] = ACTIONS(3328), + [anon_sym_With] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_WITH] = ACTIONS(3328), + [sym_cf_comment] = ACTIONS(3330), + [sym__java_block_open] = ACTIONS(3330), + [sym__static_type_prefix] = ACTIONS(3330), }, - [STATE(898)] = { - [ts_builtin_sym_end] = ACTIONS(3024), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3024), - [anon_sym_RBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_Query] = ACTIONS(3026), - [anon_sym_query] = ACTIONS(3026), - [anon_sym_QUERY] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3024), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_unary_operator_token1] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3024), - [anon_sym_DASH_DASH] = ACTIONS(3024), - [anon_sym_DQUOTE] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3026), - [aux_sym_number_token2] = ACTIONS(3024), - [anon_sym_This] = ACTIONS(3026), - [anon_sym_this] = ACTIONS(3026), - [anon_sym_THIS] = ACTIONS(3026), - [anon_sym_Super] = ACTIONS(3026), - [anon_sym_super] = ACTIONS(3026), - [anon_sym_SUPER] = ACTIONS(3026), - [anon_sym_True] = ACTIONS(3026), - [anon_sym_true] = ACTIONS(3026), - [anon_sym_TRUE] = ACTIONS(3026), - [anon_sym_False] = ACTIONS(3026), - [anon_sym_false] = ACTIONS(3026), - [anon_sym_FALSE] = ACTIONS(3026), - [anon_sym_Null] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_NULL] = ACTIONS(3026), - [anon_sym_Undefined] = ACTIONS(3026), - [anon_sym_undefined] = ACTIONS(3026), - [anon_sym_UNDEFINED] = ACTIONS(3026), - [anon_sym_get] = ACTIONS(3026), - [anon_sym_set] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3026), - [sym_hash_empty] = ACTIONS(3024), - [anon_sym_export] = ACTIONS(3026), - [anon_sym_QueryExecute] = ACTIONS(3026), - [anon_sym_queryexecute] = ACTIONS(3026), - [anon_sym_QUERYEXECUTE] = ACTIONS(3026), - [anon_sym_queryExecute] = ACTIONS(3026), - [anon_sym_BQUOTE] = ACTIONS(3026), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3024), - [anon_sym_Abstract] = ACTIONS(3026), - [anon_sym_abstract] = ACTIONS(3026), - [anon_sym_ABSTRACT] = ACTIONS(3026), - [anon_sym_Break] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_BREAK] = ACTIONS(3026), - [anon_sym_Case] = ACTIONS(3026), - [anon_sym_case] = ACTIONS(3026), - [anon_sym_CASE] = ACTIONS(3026), - [anon_sym_Component] = ACTIONS(3026), - [anon_sym_component] = ACTIONS(3026), - [anon_sym_COMPONENT] = ACTIONS(3026), - [anon_sym_Continue] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_CONTINUE] = ACTIONS(3026), - [anon_sym_Debugger] = ACTIONS(3026), - [anon_sym_debugger] = ACTIONS(3026), - [anon_sym_DEBUGGER] = ACTIONS(3026), - [anon_sym_Default] = ACTIONS(3026), - [anon_sym_default] = ACTIONS(3026), - [anon_sym_DEFAULT] = ACTIONS(3026), - [anon_sym_Do] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_DO] = ACTIONS(3026), - [anon_sym_Final] = ACTIONS(3026), - [anon_sym_final] = ACTIONS(3026), - [anon_sym_FINAL] = ACTIONS(3026), - [anon_sym_For] = ACTIONS(3026), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_FOR] = ACTIONS(3026), - [anon_sym_Function] = ACTIONS(3026), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_FUNCTION] = ACTIONS(3026), - [anon_sym_If] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_IF] = ACTIONS(3026), - [anon_sym_Import] = ACTIONS(3026), - [anon_sym_import] = ACTIONS(3026), - [anon_sym_IMPORT] = ACTIONS(3026), - [anon_sym_Include] = ACTIONS(3026), - [anon_sym_include] = ACTIONS(3026), - [anon_sym_INCLUDE] = ACTIONS(3026), - [anon_sym_Interface] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_INTERFACE] = ACTIONS(3026), - [anon_sym_New] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_NEW] = ACTIONS(3026), - [anon_sym_Package] = ACTIONS(3026), - [anon_sym_package] = ACTIONS(3026), - [anon_sym_PACKAGE] = ACTIONS(3026), - [anon_sym_Private] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_PRIVATE] = ACTIONS(3026), - [anon_sym_Property] = ACTIONS(3026), - [anon_sym_property] = ACTIONS(3026), - [anon_sym_PROPERTY] = ACTIONS(3026), - [anon_sym_Public] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_PUBLIC] = ACTIONS(3026), - [anon_sym_Remote] = ACTIONS(3026), - [anon_sym_remote] = ACTIONS(3026), - [anon_sym_REMOTE] = ACTIONS(3026), - [anon_sym_Return] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_RETURN] = ACTIONS(3026), - [anon_sym_Static] = ACTIONS(3026), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_STATIC] = ACTIONS(3026), - [anon_sym_Switch] = ACTIONS(3026), - [anon_sym_switch] = ACTIONS(3026), - [anon_sym_SWITCH] = ACTIONS(3026), - [anon_sym_Throw] = ACTIONS(3026), - [anon_sym_throw] = ACTIONS(3026), - [anon_sym_THROW] = ACTIONS(3026), - [anon_sym_Try] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_TRY] = ACTIONS(3026), - [anon_sym_Var] = ACTIONS(3026), - [anon_sym_var] = ACTIONS(3026), - [anon_sym_VAR] = ACTIONS(3026), - [anon_sym_While] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_WHILE] = ACTIONS(3026), - [anon_sym_With] = ACTIONS(3026), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_WITH] = ACTIONS(3026), - [sym_cf_comment] = ACTIONS(3024), - [sym__java_block_open] = ACTIONS(3024), - [sym__static_type_prefix] = ACTIONS(3024), + [STATE(955)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4808), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4808), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2804), + [sym_hash_expression] = STATE(2804), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4661), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(899)] = { - [ts_builtin_sym_end] = ACTIONS(3032), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_RBRACE] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_SEMI] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_Query] = ACTIONS(3034), - [anon_sym_query] = ACTIONS(3034), - [anon_sym_QUERY] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3032), - [aux_sym_unary_operator_token1] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3032), - [anon_sym_DASH_DASH] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_SQUOTE] = ACTIONS(3032), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3034), - [aux_sym_number_token2] = ACTIONS(3032), - [anon_sym_This] = ACTIONS(3034), - [anon_sym_this] = ACTIONS(3034), - [anon_sym_THIS] = ACTIONS(3034), - [anon_sym_Super] = ACTIONS(3034), - [anon_sym_super] = ACTIONS(3034), - [anon_sym_SUPER] = ACTIONS(3034), - [anon_sym_True] = ACTIONS(3034), - [anon_sym_true] = ACTIONS(3034), - [anon_sym_TRUE] = ACTIONS(3034), - [anon_sym_False] = ACTIONS(3034), - [anon_sym_false] = ACTIONS(3034), - [anon_sym_FALSE] = ACTIONS(3034), - [anon_sym_Null] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3034), - [anon_sym_NULL] = ACTIONS(3034), - [anon_sym_Undefined] = ACTIONS(3034), - [anon_sym_undefined] = ACTIONS(3034), - [anon_sym_UNDEFINED] = ACTIONS(3034), - [anon_sym_get] = ACTIONS(3034), - [anon_sym_set] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3034), - [sym_hash_empty] = ACTIONS(3032), - [anon_sym_export] = ACTIONS(3034), - [anon_sym_QueryExecute] = ACTIONS(3034), - [anon_sym_queryexecute] = ACTIONS(3034), - [anon_sym_QUERYEXECUTE] = ACTIONS(3034), - [anon_sym_queryExecute] = ACTIONS(3034), - [anon_sym_BQUOTE] = ACTIONS(3034), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3032), - [anon_sym_Abstract] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3034), - [anon_sym_ABSTRACT] = ACTIONS(3034), - [anon_sym_Break] = ACTIONS(3034), - [anon_sym_break] = ACTIONS(3034), - [anon_sym_BREAK] = ACTIONS(3034), - [anon_sym_Case] = ACTIONS(3034), - [anon_sym_case] = ACTIONS(3034), - [anon_sym_CASE] = ACTIONS(3034), - [anon_sym_Component] = ACTIONS(3034), - [anon_sym_component] = ACTIONS(3034), - [anon_sym_COMPONENT] = ACTIONS(3034), - [anon_sym_Continue] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(3034), - [anon_sym_CONTINUE] = ACTIONS(3034), - [anon_sym_Debugger] = ACTIONS(3034), - [anon_sym_debugger] = ACTIONS(3034), - [anon_sym_DEBUGGER] = ACTIONS(3034), - [anon_sym_Default] = ACTIONS(3034), - [anon_sym_default] = ACTIONS(3034), - [anon_sym_DEFAULT] = ACTIONS(3034), - [anon_sym_Do] = ACTIONS(3034), - [anon_sym_do] = ACTIONS(3034), - [anon_sym_DO] = ACTIONS(3034), - [anon_sym_Final] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_FINAL] = ACTIONS(3034), - [anon_sym_For] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3034), - [anon_sym_FOR] = ACTIONS(3034), - [anon_sym_Function] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3034), - [anon_sym_FUNCTION] = ACTIONS(3034), - [anon_sym_If] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_IF] = ACTIONS(3034), - [anon_sym_Import] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_IMPORT] = ACTIONS(3034), - [anon_sym_Include] = ACTIONS(3034), - [anon_sym_include] = ACTIONS(3034), - [anon_sym_INCLUDE] = ACTIONS(3034), - [anon_sym_Interface] = ACTIONS(3034), - [anon_sym_interface] = ACTIONS(3034), - [anon_sym_INTERFACE] = ACTIONS(3034), - [anon_sym_New] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3034), - [anon_sym_NEW] = ACTIONS(3034), - [anon_sym_Package] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_PACKAGE] = ACTIONS(3034), - [anon_sym_Private] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_PRIVATE] = ACTIONS(3034), - [anon_sym_Property] = ACTIONS(3034), - [anon_sym_property] = ACTIONS(3034), - [anon_sym_PROPERTY] = ACTIONS(3034), - [anon_sym_Public] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_PUBLIC] = ACTIONS(3034), - [anon_sym_Remote] = ACTIONS(3034), - [anon_sym_remote] = ACTIONS(3034), - [anon_sym_REMOTE] = ACTIONS(3034), - [anon_sym_Return] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3034), - [anon_sym_RETURN] = ACTIONS(3034), - [anon_sym_Static] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_STATIC] = ACTIONS(3034), - [anon_sym_Switch] = ACTIONS(3034), - [anon_sym_switch] = ACTIONS(3034), - [anon_sym_SWITCH] = ACTIONS(3034), - [anon_sym_Throw] = ACTIONS(3034), - [anon_sym_throw] = ACTIONS(3034), - [anon_sym_THROW] = ACTIONS(3034), - [anon_sym_Try] = ACTIONS(3034), - [anon_sym_try] = ACTIONS(3034), - [anon_sym_TRY] = ACTIONS(3034), - [anon_sym_Var] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [anon_sym_VAR] = ACTIONS(3034), - [anon_sym_While] = ACTIONS(3034), - [anon_sym_while] = ACTIONS(3034), - [anon_sym_WHILE] = ACTIONS(3034), - [anon_sym_With] = ACTIONS(3034), - [anon_sym_with] = ACTIONS(3034), - [anon_sym_WITH] = ACTIONS(3034), - [sym_cf_comment] = ACTIONS(3032), - [sym__java_block_open] = ACTIONS(3032), - [sym__static_type_prefix] = ACTIONS(3032), + [STATE(956)] = { + [sym_identifier] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_Query] = ACTIONS(3336), + [anon_sym_query] = ACTIONS(3336), + [anon_sym_QUERY] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_unary_operator_token1] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3336), + [aux_sym_number_token2] = ACTIONS(3338), + [anon_sym_This] = ACTIONS(3336), + [anon_sym_this] = ACTIONS(3336), + [anon_sym_THIS] = ACTIONS(3336), + [anon_sym_Super] = ACTIONS(3336), + [anon_sym_super] = ACTIONS(3336), + [anon_sym_SUPER] = ACTIONS(3336), + [anon_sym_True] = ACTIONS(3336), + [anon_sym_true] = ACTIONS(3336), + [anon_sym_TRUE] = ACTIONS(3336), + [anon_sym_False] = ACTIONS(3336), + [anon_sym_false] = ACTIONS(3336), + [anon_sym_FALSE] = ACTIONS(3336), + [anon_sym_Null] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_NULL] = ACTIONS(3336), + [anon_sym_Undefined] = ACTIONS(3336), + [anon_sym_undefined] = ACTIONS(3336), + [anon_sym_UNDEFINED] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(3336), + [sym_hash_empty] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_QueryExecute] = ACTIONS(3336), + [anon_sym_queryexecute] = ACTIONS(3336), + [anon_sym_QUERYEXECUTE] = ACTIONS(3336), + [anon_sym_queryExecute] = ACTIONS(3336), + [anon_sym_BQUOTE] = ACTIONS(3336), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3338), + [anon_sym_Abstract] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_ABSTRACT] = ACTIONS(3336), + [anon_sym_Break] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_BREAK] = ACTIONS(3336), + [anon_sym_Component] = ACTIONS(3336), + [anon_sym_component] = ACTIONS(3336), + [anon_sym_COMPONENT] = ACTIONS(3336), + [anon_sym_Continue] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_CONTINUE] = ACTIONS(3336), + [anon_sym_Debugger] = ACTIONS(3336), + [anon_sym_debugger] = ACTIONS(3336), + [anon_sym_DEBUGGER] = ACTIONS(3336), + [anon_sym_Do] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_DO] = ACTIONS(3336), + [anon_sym_Final] = ACTIONS(3336), + [anon_sym_final] = ACTIONS(3336), + [anon_sym_FINAL] = ACTIONS(3336), + [anon_sym_For] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_FOR] = ACTIONS(3336), + [anon_sym_Function] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_FUNCTION] = ACTIONS(3336), + [anon_sym_If] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_IF] = ACTIONS(3336), + [anon_sym_Import] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_IMPORT] = ACTIONS(3336), + [anon_sym_Include] = ACTIONS(3336), + [anon_sym_include] = ACTIONS(3336), + [anon_sym_INCLUDE] = ACTIONS(3336), + [anon_sym_Interface] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_INTERFACE] = ACTIONS(3336), + [anon_sym_New] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_NEW] = ACTIONS(3336), + [anon_sym_Package] = ACTIONS(3336), + [anon_sym_package] = ACTIONS(3336), + [anon_sym_PACKAGE] = ACTIONS(3336), + [anon_sym_Private] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_PRIVATE] = ACTIONS(3336), + [anon_sym_Property] = ACTIONS(3336), + [anon_sym_property] = ACTIONS(3336), + [anon_sym_PROPERTY] = ACTIONS(3336), + [anon_sym_Public] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_PUBLIC] = ACTIONS(3336), + [anon_sym_Remote] = ACTIONS(3336), + [anon_sym_remote] = ACTIONS(3336), + [anon_sym_REMOTE] = ACTIONS(3336), + [anon_sym_Return] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_RETURN] = ACTIONS(3336), + [anon_sym_Static] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_STATIC] = ACTIONS(3336), + [anon_sym_Switch] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_SWITCH] = ACTIONS(3336), + [anon_sym_Throw] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_THROW] = ACTIONS(3336), + [anon_sym_Try] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_TRY] = ACTIONS(3336), + [anon_sym_Var] = ACTIONS(3336), + [anon_sym_var] = ACTIONS(3336), + [anon_sym_VAR] = ACTIONS(3336), + [anon_sym_While] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_WHILE] = ACTIONS(3336), + [anon_sym_With] = ACTIONS(3336), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_WITH] = ACTIONS(3336), + [sym_cf_comment] = ACTIONS(3338), + [sym__java_block_open] = ACTIONS(3338), + [sym__static_type_prefix] = ACTIONS(3338), }, - [STATE(900)] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_Query] = ACTIONS(1686), - [anon_sym_query] = ACTIONS(1686), - [anon_sym_QUERY] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [aux_sym_unary_operator_token1] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1686), - [aux_sym_number_token2] = ACTIONS(1684), - [anon_sym_This] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1686), - [anon_sym_THIS] = ACTIONS(1686), - [anon_sym_Super] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(1686), - [anon_sym_SUPER] = ACTIONS(1686), - [anon_sym_True] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_TRUE] = ACTIONS(1686), - [anon_sym_False] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_FALSE] = ACTIONS(1686), - [anon_sym_Null] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_Undefined] = ACTIONS(1686), - [anon_sym_undefined] = ACTIONS(1686), - [anon_sym_UNDEFINED] = ACTIONS(1686), - [anon_sym_get] = ACTIONS(1686), - [anon_sym_set] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [sym_hash_empty] = ACTIONS(1684), - [anon_sym_export] = ACTIONS(1686), - [anon_sym_QueryExecute] = ACTIONS(1686), - [anon_sym_queryexecute] = ACTIONS(1686), - [anon_sym_QUERYEXECUTE] = ACTIONS(1686), - [anon_sym_queryExecute] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1684), - [anon_sym_Abstract] = ACTIONS(1686), - [anon_sym_abstract] = ACTIONS(1686), - [anon_sym_ABSTRACT] = ACTIONS(1686), - [anon_sym_Break] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BREAK] = ACTIONS(1686), - [anon_sym_Case] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_CASE] = ACTIONS(1686), - [anon_sym_Component] = ACTIONS(1686), - [anon_sym_component] = ACTIONS(1686), - [anon_sym_COMPONENT] = ACTIONS(1686), - [anon_sym_Continue] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_CONTINUE] = ACTIONS(1686), - [anon_sym_Debugger] = ACTIONS(1686), - [anon_sym_debugger] = ACTIONS(1686), - [anon_sym_DEBUGGER] = ACTIONS(1686), - [anon_sym_Default] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_DEFAULT] = ACTIONS(1686), - [anon_sym_Do] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_DO] = ACTIONS(1686), - [anon_sym_Final] = ACTIONS(1686), - [anon_sym_final] = ACTIONS(1686), - [anon_sym_FINAL] = ACTIONS(1686), - [anon_sym_For] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_FOR] = ACTIONS(1686), - [anon_sym_Function] = ACTIONS(1686), - [anon_sym_function] = ACTIONS(1686), - [anon_sym_FUNCTION] = ACTIONS(1686), - [anon_sym_If] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_IF] = ACTIONS(1686), - [anon_sym_Import] = ACTIONS(1686), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_IMPORT] = ACTIONS(1686), - [anon_sym_Include] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_INCLUDE] = ACTIONS(1686), - [anon_sym_Interface] = ACTIONS(1686), - [anon_sym_interface] = ACTIONS(1686), - [anon_sym_INTERFACE] = ACTIONS(1686), - [anon_sym_New] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_NEW] = ACTIONS(1686), - [anon_sym_Package] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1686), - [anon_sym_PACKAGE] = ACTIONS(1686), - [anon_sym_Private] = ACTIONS(1686), - [anon_sym_private] = ACTIONS(1686), - [anon_sym_PRIVATE] = ACTIONS(1686), - [anon_sym_Property] = ACTIONS(1686), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_PROPERTY] = ACTIONS(1686), - [anon_sym_Public] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_PUBLIC] = ACTIONS(1686), - [anon_sym_Remote] = ACTIONS(1686), - [anon_sym_remote] = ACTIONS(1686), - [anon_sym_REMOTE] = ACTIONS(1686), - [anon_sym_Return] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_RETURN] = ACTIONS(1686), - [anon_sym_Static] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_STATIC] = ACTIONS(1686), - [anon_sym_Switch] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_SWITCH] = ACTIONS(1686), - [anon_sym_Throw] = ACTIONS(1686), - [anon_sym_throw] = ACTIONS(1686), - [anon_sym_THROW] = ACTIONS(1686), - [anon_sym_Try] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_TRY] = ACTIONS(1686), - [anon_sym_Var] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_VAR] = ACTIONS(1686), - [anon_sym_While] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_WHILE] = ACTIONS(1686), - [anon_sym_With] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_WITH] = ACTIONS(1686), - [sym_cf_comment] = ACTIONS(1684), - [sym__java_block_open] = ACTIONS(1684), - [sym__static_type_prefix] = ACTIONS(1684), + [STATE(957)] = { + [sym_variable_declaration] = STATE(1188), + [sym_empty_statement] = STATE(1188), + [sym_parenthesized_expression] = STATE(2234), + [sym_expression] = STATE(3639), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4154), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2234), + [sym_subscript_expression] = STATE(2234), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4154), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5290), + [sym_string] = STATE(2639), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2639), + [sym_undefined] = STATE(2639), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3149), + [sym_hash_expression] = STATE(3149), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_Query] = ACTIONS(3312), + [anon_sym_query] = ACTIONS(3312), + [anon_sym_QUERY] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_QueryExecute] = ACTIONS(3316), + [anon_sym_queryexecute] = ACTIONS(3316), + [anon_sym_QUERYEXECUTE] = ACTIONS(3316), + [anon_sym_queryExecute] = ACTIONS(3316), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_ABSTRACT] = ACTIONS(3312), + [anon_sym_Component] = ACTIONS(3312), + [anon_sym_component] = ACTIONS(3312), + [anon_sym_COMPONENT] = ACTIONS(3312), + [anon_sym_Debugger] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_DEBUGGER] = ACTIONS(3312), + [anon_sym_Final] = ACTIONS(3318), + [anon_sym_final] = ACTIONS(3318), + [anon_sym_FINAL] = ACTIONS(3318), + [anon_sym_Function] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_FUNCTION] = ACTIONS(3320), + [anon_sym_Include] = ACTIONS(3312), + [anon_sym_include] = ACTIONS(3312), + [anon_sym_INCLUDE] = ACTIONS(3312), + [anon_sym_New] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_NEW] = ACTIONS(3322), + [anon_sym_Package] = ACTIONS(3324), + [anon_sym_package] = ACTIONS(3324), + [anon_sym_PACKAGE] = ACTIONS(3324), + [anon_sym_Private] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_PRIVATE] = ACTIONS(3324), + [anon_sym_Public] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_PUBLIC] = ACTIONS(3324), + [anon_sym_Remote] = ACTIONS(3324), + [anon_sym_remote] = ACTIONS(3324), + [anon_sym_REMOTE] = ACTIONS(3324), + [anon_sym_Static] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_STATIC] = ACTIONS(3312), + [anon_sym_Var] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_VAR] = ACTIONS(3326), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(901)] = { - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_Query] = ACTIONS(3076), - [anon_sym_query] = ACTIONS(3076), - [anon_sym_QUERY] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_SLASH] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_unary_operator_token1] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), + [STATE(958)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3473), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4824), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4824), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2704), + [sym_hash_expression] = STATE(2704), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4677), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3076), - [aux_sym_number_token2] = ACTIONS(3074), - [anon_sym_This] = ACTIONS(3076), - [anon_sym_this] = ACTIONS(3076), - [anon_sym_THIS] = ACTIONS(3076), - [anon_sym_Super] = ACTIONS(3076), - [anon_sym_super] = ACTIONS(3076), - [anon_sym_SUPER] = ACTIONS(3076), - [anon_sym_True] = ACTIONS(3076), - [anon_sym_true] = ACTIONS(3076), - [anon_sym_TRUE] = ACTIONS(3076), - [anon_sym_False] = ACTIONS(3076), - [anon_sym_false] = ACTIONS(3076), - [anon_sym_FALSE] = ACTIONS(3076), - [anon_sym_Null] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_Undefined] = ACTIONS(3076), - [anon_sym_undefined] = ACTIONS(3076), - [anon_sym_UNDEFINED] = ACTIONS(3076), - [anon_sym_get] = ACTIONS(3076), - [anon_sym_set] = ACTIONS(3076), - [anon_sym_POUND] = ACTIONS(3076), - [sym_hash_empty] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3076), - [anon_sym_QueryExecute] = ACTIONS(3076), - [anon_sym_queryexecute] = ACTIONS(3076), - [anon_sym_QUERYEXECUTE] = ACTIONS(3076), - [anon_sym_queryExecute] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3074), - [anon_sym_Abstract] = ACTIONS(3076), - [anon_sym_abstract] = ACTIONS(3076), - [anon_sym_ABSTRACT] = ACTIONS(3076), - [anon_sym_Break] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_BREAK] = ACTIONS(3076), - [anon_sym_Case] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3076), - [anon_sym_CASE] = ACTIONS(3076), - [anon_sym_Component] = ACTIONS(3076), - [anon_sym_component] = ACTIONS(3076), - [anon_sym_COMPONENT] = ACTIONS(3076), - [anon_sym_Continue] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_CONTINUE] = ACTIONS(3076), - [anon_sym_Debugger] = ACTIONS(3076), - [anon_sym_debugger] = ACTIONS(3076), - [anon_sym_DEBUGGER] = ACTIONS(3076), - [anon_sym_Default] = ACTIONS(3076), - [anon_sym_default] = ACTIONS(3076), - [anon_sym_DEFAULT] = ACTIONS(3076), - [anon_sym_Do] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_DO] = ACTIONS(3076), - [anon_sym_Final] = ACTIONS(3076), - [anon_sym_final] = ACTIONS(3076), - [anon_sym_FINAL] = ACTIONS(3076), - [anon_sym_For] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_FOR] = ACTIONS(3076), - [anon_sym_Function] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_FUNCTION] = ACTIONS(3076), - [anon_sym_If] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_IF] = ACTIONS(3076), - [anon_sym_Import] = ACTIONS(3076), - [anon_sym_import] = ACTIONS(3076), - [anon_sym_IMPORT] = ACTIONS(3076), - [anon_sym_Include] = ACTIONS(3076), - [anon_sym_include] = ACTIONS(3076), - [anon_sym_INCLUDE] = ACTIONS(3076), - [anon_sym_Interface] = ACTIONS(3076), - [anon_sym_interface] = ACTIONS(3076), - [anon_sym_INTERFACE] = ACTIONS(3076), - [anon_sym_New] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_NEW] = ACTIONS(3076), - [anon_sym_Package] = ACTIONS(3076), - [anon_sym_package] = ACTIONS(3076), - [anon_sym_PACKAGE] = ACTIONS(3076), - [anon_sym_Private] = ACTIONS(3076), - [anon_sym_private] = ACTIONS(3076), - [anon_sym_PRIVATE] = ACTIONS(3076), - [anon_sym_Property] = ACTIONS(3076), - [anon_sym_property] = ACTIONS(3076), - [anon_sym_PROPERTY] = ACTIONS(3076), - [anon_sym_Public] = ACTIONS(3076), - [anon_sym_public] = ACTIONS(3076), - [anon_sym_PUBLIC] = ACTIONS(3076), - [anon_sym_Remote] = ACTIONS(3076), - [anon_sym_remote] = ACTIONS(3076), - [anon_sym_REMOTE] = ACTIONS(3076), - [anon_sym_Return] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_RETURN] = ACTIONS(3076), - [anon_sym_Static] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_STATIC] = ACTIONS(3076), - [anon_sym_Switch] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_SWITCH] = ACTIONS(3076), - [anon_sym_Throw] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_THROW] = ACTIONS(3076), - [anon_sym_Try] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_TRY] = ACTIONS(3076), - [anon_sym_Var] = ACTIONS(3076), - [anon_sym_var] = ACTIONS(3076), - [anon_sym_VAR] = ACTIONS(3076), - [anon_sym_While] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_WHILE] = ACTIONS(3076), - [anon_sym_With] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_WITH] = ACTIONS(3076), - [sym_cf_comment] = ACTIONS(3074), - [sym__java_block_open] = ACTIONS(3074), - [sym__static_type_prefix] = ACTIONS(3074), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3344), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(902)] = { - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_Query] = ACTIONS(3076), - [anon_sym_query] = ACTIONS(3076), - [anon_sym_QUERY] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_SLASH] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_unary_operator_token1] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), + [STATE(959)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3521), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4611), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4611), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2718), + [sym_hash_expression] = STATE(2718), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4626), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3076), - [aux_sym_number_token2] = ACTIONS(3074), - [anon_sym_This] = ACTIONS(3076), - [anon_sym_this] = ACTIONS(3076), - [anon_sym_THIS] = ACTIONS(3076), - [anon_sym_Super] = ACTIONS(3076), - [anon_sym_super] = ACTIONS(3076), - [anon_sym_SUPER] = ACTIONS(3076), - [anon_sym_True] = ACTIONS(3076), - [anon_sym_true] = ACTIONS(3076), - [anon_sym_TRUE] = ACTIONS(3076), - [anon_sym_False] = ACTIONS(3076), - [anon_sym_false] = ACTIONS(3076), - [anon_sym_FALSE] = ACTIONS(3076), - [anon_sym_Null] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_Undefined] = ACTIONS(3076), - [anon_sym_undefined] = ACTIONS(3076), - [anon_sym_UNDEFINED] = ACTIONS(3076), - [anon_sym_get] = ACTIONS(3076), - [anon_sym_set] = ACTIONS(3076), - [anon_sym_POUND] = ACTIONS(3076), - [sym_hash_empty] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3076), - [anon_sym_QueryExecute] = ACTIONS(3076), - [anon_sym_queryexecute] = ACTIONS(3076), - [anon_sym_QUERYEXECUTE] = ACTIONS(3076), - [anon_sym_queryExecute] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3074), - [anon_sym_Abstract] = ACTIONS(3076), - [anon_sym_abstract] = ACTIONS(3076), - [anon_sym_ABSTRACT] = ACTIONS(3076), - [anon_sym_Break] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_BREAK] = ACTIONS(3076), - [anon_sym_Case] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3076), - [anon_sym_CASE] = ACTIONS(3076), - [anon_sym_Component] = ACTIONS(3076), - [anon_sym_component] = ACTIONS(3076), - [anon_sym_COMPONENT] = ACTIONS(3076), - [anon_sym_Continue] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_CONTINUE] = ACTIONS(3076), - [anon_sym_Debugger] = ACTIONS(3076), - [anon_sym_debugger] = ACTIONS(3076), - [anon_sym_DEBUGGER] = ACTIONS(3076), - [anon_sym_Default] = ACTIONS(3076), - [anon_sym_default] = ACTIONS(3076), - [anon_sym_DEFAULT] = ACTIONS(3076), - [anon_sym_Do] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_DO] = ACTIONS(3076), - [anon_sym_Final] = ACTIONS(3076), - [anon_sym_final] = ACTIONS(3076), - [anon_sym_FINAL] = ACTIONS(3076), - [anon_sym_For] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_FOR] = ACTIONS(3076), - [anon_sym_Function] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_FUNCTION] = ACTIONS(3076), - [anon_sym_If] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_IF] = ACTIONS(3076), - [anon_sym_Import] = ACTIONS(3076), - [anon_sym_import] = ACTIONS(3076), - [anon_sym_IMPORT] = ACTIONS(3076), - [anon_sym_Include] = ACTIONS(3076), - [anon_sym_include] = ACTIONS(3076), - [anon_sym_INCLUDE] = ACTIONS(3076), - [anon_sym_Interface] = ACTIONS(3076), - [anon_sym_interface] = ACTIONS(3076), - [anon_sym_INTERFACE] = ACTIONS(3076), - [anon_sym_New] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_NEW] = ACTIONS(3076), - [anon_sym_Package] = ACTIONS(3076), - [anon_sym_package] = ACTIONS(3076), - [anon_sym_PACKAGE] = ACTIONS(3076), - [anon_sym_Private] = ACTIONS(3076), - [anon_sym_private] = ACTIONS(3076), - [anon_sym_PRIVATE] = ACTIONS(3076), - [anon_sym_Property] = ACTIONS(3076), - [anon_sym_property] = ACTIONS(3076), - [anon_sym_PROPERTY] = ACTIONS(3076), - [anon_sym_Public] = ACTIONS(3076), - [anon_sym_public] = ACTIONS(3076), - [anon_sym_PUBLIC] = ACTIONS(3076), - [anon_sym_Remote] = ACTIONS(3076), - [anon_sym_remote] = ACTIONS(3076), - [anon_sym_REMOTE] = ACTIONS(3076), - [anon_sym_Return] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_RETURN] = ACTIONS(3076), - [anon_sym_Static] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_STATIC] = ACTIONS(3076), - [anon_sym_Switch] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_SWITCH] = ACTIONS(3076), - [anon_sym_Throw] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_THROW] = ACTIONS(3076), - [anon_sym_Try] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_TRY] = ACTIONS(3076), - [anon_sym_Var] = ACTIONS(3076), - [anon_sym_var] = ACTIONS(3076), - [anon_sym_VAR] = ACTIONS(3076), - [anon_sym_While] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_WHILE] = ACTIONS(3076), - [anon_sym_With] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_WITH] = ACTIONS(3076), - [sym_cf_comment] = ACTIONS(3074), - [sym__java_block_open] = ACTIONS(3074), - [sym__static_type_prefix] = ACTIONS(3074), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(903)] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_Query] = ACTIONS(2740), - [anon_sym_query] = ACTIONS(2740), - [anon_sym_QUERY] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2738), - [aux_sym_unary_operator_token1] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2738), + [STATE(960)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3497), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4641), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4641), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2745), + [sym_hash_expression] = STATE(2745), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_arguments_repeat1] = STATE(4694), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3352), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(961)] = { + [sym_variable_declaration] = STATE(1197), + [sym_empty_statement] = STATE(1197), + [sym_parenthesized_expression] = STATE(2234), + [sym_expression] = STATE(3630), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4154), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2234), + [sym_subscript_expression] = STATE(2234), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4154), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5306), + [sym_string] = STATE(2639), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2639), + [sym_undefined] = STATE(2639), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3451), + [sym_hash_expression] = STATE(3451), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_Query] = ACTIONS(3312), + [anon_sym_query] = ACTIONS(3312), + [anon_sym_QUERY] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2740), - [aux_sym_number_token2] = ACTIONS(2738), - [anon_sym_This] = ACTIONS(2740), - [anon_sym_this] = ACTIONS(2740), - [anon_sym_THIS] = ACTIONS(2740), - [anon_sym_Super] = ACTIONS(2740), - [anon_sym_super] = ACTIONS(2740), - [anon_sym_SUPER] = ACTIONS(2740), - [anon_sym_True] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_TRUE] = ACTIONS(2740), - [anon_sym_False] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [anon_sym_FALSE] = ACTIONS(2740), - [anon_sym_Null] = ACTIONS(2740), - [anon_sym_null] = ACTIONS(2740), - [anon_sym_NULL] = ACTIONS(2740), - [anon_sym_Undefined] = ACTIONS(2740), - [anon_sym_undefined] = ACTIONS(2740), - [anon_sym_UNDEFINED] = ACTIONS(2740), - [anon_sym_get] = ACTIONS(2740), - [anon_sym_set] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [sym_hash_empty] = ACTIONS(2738), - [anon_sym_export] = ACTIONS(2740), - [anon_sym_QueryExecute] = ACTIONS(2740), - [anon_sym_queryexecute] = ACTIONS(2740), - [anon_sym_QUERYEXECUTE] = ACTIONS(2740), - [anon_sym_queryExecute] = ACTIONS(2740), - [anon_sym_BQUOTE] = ACTIONS(2740), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2738), - [anon_sym_Abstract] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2740), - [anon_sym_ABSTRACT] = ACTIONS(2740), - [anon_sym_Break] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_BREAK] = ACTIONS(2740), - [anon_sym_Case] = ACTIONS(2740), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_CASE] = ACTIONS(2740), - [anon_sym_Component] = ACTIONS(2740), - [anon_sym_component] = ACTIONS(2740), - [anon_sym_COMPONENT] = ACTIONS(2740), - [anon_sym_Continue] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_CONTINUE] = ACTIONS(2740), - [anon_sym_Debugger] = ACTIONS(2740), - [anon_sym_debugger] = ACTIONS(2740), - [anon_sym_DEBUGGER] = ACTIONS(2740), - [anon_sym_Default] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_DEFAULT] = ACTIONS(2740), - [anon_sym_Do] = ACTIONS(2740), - [anon_sym_do] = ACTIONS(2740), - [anon_sym_DO] = ACTIONS(2740), - [anon_sym_Final] = ACTIONS(2740), - [anon_sym_final] = ACTIONS(2740), - [anon_sym_FINAL] = ACTIONS(2740), - [anon_sym_For] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_FOR] = ACTIONS(2740), - [anon_sym_Function] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2740), - [anon_sym_FUNCTION] = ACTIONS(2740), - [anon_sym_If] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_IF] = ACTIONS(2740), - [anon_sym_Import] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_IMPORT] = ACTIONS(2740), - [anon_sym_Include] = ACTIONS(2740), - [anon_sym_include] = ACTIONS(2740), - [anon_sym_INCLUDE] = ACTIONS(2740), - [anon_sym_Interface] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_INTERFACE] = ACTIONS(2740), - [anon_sym_New] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(2740), - [anon_sym_NEW] = ACTIONS(2740), - [anon_sym_Package] = ACTIONS(2740), - [anon_sym_package] = ACTIONS(2740), - [anon_sym_PACKAGE] = ACTIONS(2740), - [anon_sym_Private] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_PRIVATE] = ACTIONS(2740), - [anon_sym_Property] = ACTIONS(2740), - [anon_sym_property] = ACTIONS(2740), - [anon_sym_PROPERTY] = ACTIONS(2740), - [anon_sym_Public] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_PUBLIC] = ACTIONS(2740), - [anon_sym_Remote] = ACTIONS(2740), - [anon_sym_remote] = ACTIONS(2740), - [anon_sym_REMOTE] = ACTIONS(2740), - [anon_sym_Return] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_RETURN] = ACTIONS(2740), - [anon_sym_Static] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_STATIC] = ACTIONS(2740), - [anon_sym_Switch] = ACTIONS(2740), - [anon_sym_switch] = ACTIONS(2740), - [anon_sym_SWITCH] = ACTIONS(2740), - [anon_sym_Throw] = ACTIONS(2740), - [anon_sym_throw] = ACTIONS(2740), - [anon_sym_THROW] = ACTIONS(2740), - [anon_sym_Try] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [anon_sym_TRY] = ACTIONS(2740), - [anon_sym_Var] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [anon_sym_VAR] = ACTIONS(2740), - [anon_sym_While] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_WHILE] = ACTIONS(2740), - [anon_sym_With] = ACTIONS(2740), - [anon_sym_with] = ACTIONS(2740), - [anon_sym_WITH] = ACTIONS(2740), - [sym_cf_comment] = ACTIONS(2738), - [sym__java_block_open] = ACTIONS(2738), - [sym__static_type_prefix] = ACTIONS(2738), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_QueryExecute] = ACTIONS(3316), + [anon_sym_queryexecute] = ACTIONS(3316), + [anon_sym_QUERYEXECUTE] = ACTIONS(3316), + [anon_sym_queryExecute] = ACTIONS(3316), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_ABSTRACT] = ACTIONS(3312), + [anon_sym_Component] = ACTIONS(3312), + [anon_sym_component] = ACTIONS(3312), + [anon_sym_COMPONENT] = ACTIONS(3312), + [anon_sym_Debugger] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_DEBUGGER] = ACTIONS(3312), + [anon_sym_Final] = ACTIONS(3318), + [anon_sym_final] = ACTIONS(3318), + [anon_sym_FINAL] = ACTIONS(3318), + [anon_sym_Function] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_FUNCTION] = ACTIONS(3320), + [anon_sym_Include] = ACTIONS(3312), + [anon_sym_include] = ACTIONS(3312), + [anon_sym_INCLUDE] = ACTIONS(3312), + [anon_sym_New] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_NEW] = ACTIONS(3322), + [anon_sym_Package] = ACTIONS(3324), + [anon_sym_package] = ACTIONS(3324), + [anon_sym_PACKAGE] = ACTIONS(3324), + [anon_sym_Private] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_PRIVATE] = ACTIONS(3324), + [anon_sym_Public] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_PUBLIC] = ACTIONS(3324), + [anon_sym_Remote] = ACTIONS(3324), + [anon_sym_remote] = ACTIONS(3324), + [anon_sym_REMOTE] = ACTIONS(3324), + [anon_sym_Static] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_STATIC] = ACTIONS(3312), + [anon_sym_Var] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_VAR] = ACTIONS(3326), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(904)] = { - [ts_builtin_sym_end] = ACTIONS(2750), - [sym_identifier] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_let] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_Query] = ACTIONS(2752), - [anon_sym_query] = ACTIONS(2752), - [anon_sym_QUERY] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_SLASH] = ACTIONS(2752), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2750), - [aux_sym_unary_operator_token1] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_DQUOTE] = ACTIONS(2750), - [anon_sym_SQUOTE] = ACTIONS(2750), + [STATE(962)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4747), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4575), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2401), + [sym_subscript_expression] = STATE(2401), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4575), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3443), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3443), + [sym_undefined] = STATE(3443), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4500), + [sym_rest_pattern] = STATE(4531), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_pattern_repeat1] = STATE(4757), + [sym_identifier] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_RBRACK] = ACTIONS(3364), + [anon_sym_Query] = ACTIONS(3360), + [anon_sym_query] = ACTIONS(3360), + [anon_sym_QUERY] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2752), - [aux_sym_number_token2] = ACTIONS(2750), - [anon_sym_This] = ACTIONS(2752), - [anon_sym_this] = ACTIONS(2752), - [anon_sym_THIS] = ACTIONS(2752), - [anon_sym_Super] = ACTIONS(2752), - [anon_sym_super] = ACTIONS(2752), - [anon_sym_SUPER] = ACTIONS(2752), - [anon_sym_True] = ACTIONS(2752), - [anon_sym_true] = ACTIONS(2752), - [anon_sym_TRUE] = ACTIONS(2752), - [anon_sym_False] = ACTIONS(2752), - [anon_sym_false] = ACTIONS(2752), - [anon_sym_FALSE] = ACTIONS(2752), - [anon_sym_Null] = ACTIONS(2752), - [anon_sym_null] = ACTIONS(2752), - [anon_sym_NULL] = ACTIONS(2752), - [anon_sym_Undefined] = ACTIONS(2752), - [anon_sym_undefined] = ACTIONS(2752), - [anon_sym_UNDEFINED] = ACTIONS(2752), - [anon_sym_get] = ACTIONS(2752), - [anon_sym_set] = ACTIONS(2752), - [anon_sym_POUND] = ACTIONS(2752), - [sym_hash_empty] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2752), - [anon_sym_QueryExecute] = ACTIONS(2752), - [anon_sym_queryexecute] = ACTIONS(2752), - [anon_sym_QUERYEXECUTE] = ACTIONS(2752), - [anon_sym_queryExecute] = ACTIONS(2752), - [anon_sym_BQUOTE] = ACTIONS(2752), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2750), - [anon_sym_Abstract] = ACTIONS(2752), - [anon_sym_abstract] = ACTIONS(2752), - [anon_sym_ABSTRACT] = ACTIONS(2752), - [anon_sym_Break] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_BREAK] = ACTIONS(2752), - [anon_sym_Case] = ACTIONS(2752), - [anon_sym_case] = ACTIONS(2752), - [anon_sym_CASE] = ACTIONS(2752), - [anon_sym_Component] = ACTIONS(2752), - [anon_sym_component] = ACTIONS(2752), - [anon_sym_COMPONENT] = ACTIONS(2752), - [anon_sym_Continue] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_CONTINUE] = ACTIONS(2752), - [anon_sym_Debugger] = ACTIONS(2752), - [anon_sym_debugger] = ACTIONS(2752), - [anon_sym_DEBUGGER] = ACTIONS(2752), - [anon_sym_Default] = ACTIONS(2752), - [anon_sym_default] = ACTIONS(2752), - [anon_sym_DEFAULT] = ACTIONS(2752), - [anon_sym_Do] = ACTIONS(2752), - [anon_sym_do] = ACTIONS(2752), - [anon_sym_DO] = ACTIONS(2752), - [anon_sym_Final] = ACTIONS(2752), - [anon_sym_final] = ACTIONS(2752), - [anon_sym_FINAL] = ACTIONS(2752), - [anon_sym_For] = ACTIONS(2752), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_FOR] = ACTIONS(2752), - [anon_sym_Function] = ACTIONS(2752), - [anon_sym_function] = ACTIONS(2752), - [anon_sym_FUNCTION] = ACTIONS(2752), - [anon_sym_If] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_IF] = ACTIONS(2752), - [anon_sym_Import] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2752), - [anon_sym_IMPORT] = ACTIONS(2752), - [anon_sym_Include] = ACTIONS(2752), - [anon_sym_include] = ACTIONS(2752), - [anon_sym_INCLUDE] = ACTIONS(2752), - [anon_sym_Interface] = ACTIONS(2752), - [anon_sym_interface] = ACTIONS(2752), - [anon_sym_INTERFACE] = ACTIONS(2752), - [anon_sym_New] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(2752), - [anon_sym_NEW] = ACTIONS(2752), - [anon_sym_Package] = ACTIONS(2752), - [anon_sym_package] = ACTIONS(2752), - [anon_sym_PACKAGE] = ACTIONS(2752), - [anon_sym_Private] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_PRIVATE] = ACTIONS(2752), - [anon_sym_Property] = ACTIONS(2752), - [anon_sym_property] = ACTIONS(2752), - [anon_sym_PROPERTY] = ACTIONS(2752), - [anon_sym_Public] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_PUBLIC] = ACTIONS(2752), - [anon_sym_Remote] = ACTIONS(2752), - [anon_sym_remote] = ACTIONS(2752), - [anon_sym_REMOTE] = ACTIONS(2752), - [anon_sym_Return] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_RETURN] = ACTIONS(2752), - [anon_sym_Static] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_STATIC] = ACTIONS(2752), - [anon_sym_Switch] = ACTIONS(2752), - [anon_sym_switch] = ACTIONS(2752), - [anon_sym_SWITCH] = ACTIONS(2752), - [anon_sym_Throw] = ACTIONS(2752), - [anon_sym_throw] = ACTIONS(2752), - [anon_sym_THROW] = ACTIONS(2752), - [anon_sym_Try] = ACTIONS(2752), - [anon_sym_try] = ACTIONS(2752), - [anon_sym_TRY] = ACTIONS(2752), - [anon_sym_Var] = ACTIONS(2752), - [anon_sym_var] = ACTIONS(2752), - [anon_sym_VAR] = ACTIONS(2752), - [anon_sym_While] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_WHILE] = ACTIONS(2752), - [anon_sym_With] = ACTIONS(2752), - [anon_sym_with] = ACTIONS(2752), - [anon_sym_WITH] = ACTIONS(2752), - [sym_cf_comment] = ACTIONS(2750), - [sym__java_block_open] = ACTIONS(2750), - [sym__static_type_prefix] = ACTIONS(2750), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_QueryExecute] = ACTIONS(3368), + [anon_sym_queryexecute] = ACTIONS(3368), + [anon_sym_QUERYEXECUTE] = ACTIONS(3368), + [anon_sym_queryExecute] = ACTIONS(3368), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_ABSTRACT] = ACTIONS(3360), + [anon_sym_Component] = ACTIONS(3360), + [anon_sym_component] = ACTIONS(3360), + [anon_sym_COMPONENT] = ACTIONS(3360), + [anon_sym_Debugger] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_DEBUGGER] = ACTIONS(3360), + [anon_sym_Final] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_FINAL] = ACTIONS(3360), + [anon_sym_Function] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_FUNCTION] = ACTIONS(3370), + [anon_sym_Include] = ACTIONS(3360), + [anon_sym_include] = ACTIONS(3360), + [anon_sym_INCLUDE] = ACTIONS(3360), + [anon_sym_New] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_NEW] = ACTIONS(3372), + [anon_sym_Package] = ACTIONS(3360), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_PACKAGE] = ACTIONS(3360), + [anon_sym_Private] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_PRIVATE] = ACTIONS(3360), + [anon_sym_Public] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_PUBLIC] = ACTIONS(3360), + [anon_sym_Remote] = ACTIONS(3360), + [anon_sym_remote] = ACTIONS(3360), + [anon_sym_REMOTE] = ACTIONS(3360), + [anon_sym_Static] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_STATIC] = ACTIONS(3360), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(905)] = { - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_Query] = ACTIONS(2756), - [anon_sym_query] = ACTIONS(2756), - [anon_sym_QUERY] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2754), - [aux_sym_unary_operator_token1] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_SQUOTE] = ACTIONS(2754), + [STATE(963)] = { + [sym_statement_block] = STATE(279), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(980), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(558), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1270), + [aux_sym_function_declaration_repeat3] = STATE(980), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2756), - [aux_sym_number_token2] = ACTIONS(2754), - [anon_sym_This] = ACTIONS(2756), - [anon_sym_this] = ACTIONS(2756), - [anon_sym_THIS] = ACTIONS(2756), - [anon_sym_Super] = ACTIONS(2756), - [anon_sym_super] = ACTIONS(2756), - [anon_sym_SUPER] = ACTIONS(2756), - [anon_sym_True] = ACTIONS(2756), - [anon_sym_true] = ACTIONS(2756), - [anon_sym_TRUE] = ACTIONS(2756), - [anon_sym_False] = ACTIONS(2756), - [anon_sym_false] = ACTIONS(2756), - [anon_sym_FALSE] = ACTIONS(2756), - [anon_sym_Null] = ACTIONS(2756), - [anon_sym_null] = ACTIONS(2756), - [anon_sym_NULL] = ACTIONS(2756), - [anon_sym_Undefined] = ACTIONS(2756), - [anon_sym_undefined] = ACTIONS(2756), - [anon_sym_UNDEFINED] = ACTIONS(2756), - [anon_sym_get] = ACTIONS(2756), - [anon_sym_set] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [sym_hash_empty] = ACTIONS(2754), - [anon_sym_export] = ACTIONS(2756), - [anon_sym_QueryExecute] = ACTIONS(2756), - [anon_sym_queryexecute] = ACTIONS(2756), - [anon_sym_QUERYEXECUTE] = ACTIONS(2756), - [anon_sym_queryExecute] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2754), - [anon_sym_Abstract] = ACTIONS(2756), - [anon_sym_abstract] = ACTIONS(2756), - [anon_sym_ABSTRACT] = ACTIONS(2756), - [anon_sym_Break] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_BREAK] = ACTIONS(2756), - [anon_sym_Case] = ACTIONS(2756), - [anon_sym_case] = ACTIONS(2756), - [anon_sym_CASE] = ACTIONS(2756), - [anon_sym_Component] = ACTIONS(2756), - [anon_sym_component] = ACTIONS(2756), - [anon_sym_COMPONENT] = ACTIONS(2756), - [anon_sym_Continue] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_CONTINUE] = ACTIONS(2756), - [anon_sym_Debugger] = ACTIONS(2756), - [anon_sym_debugger] = ACTIONS(2756), - [anon_sym_DEBUGGER] = ACTIONS(2756), - [anon_sym_Default] = ACTIONS(2756), - [anon_sym_default] = ACTIONS(2756), - [anon_sym_DEFAULT] = ACTIONS(2756), - [anon_sym_Do] = ACTIONS(2756), - [anon_sym_do] = ACTIONS(2756), - [anon_sym_DO] = ACTIONS(2756), - [anon_sym_Final] = ACTIONS(2756), - [anon_sym_final] = ACTIONS(2756), - [anon_sym_FINAL] = ACTIONS(2756), - [anon_sym_For] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_FOR] = ACTIONS(2756), - [anon_sym_Function] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2756), - [anon_sym_FUNCTION] = ACTIONS(2756), - [anon_sym_If] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_IF] = ACTIONS(2756), - [anon_sym_Import] = ACTIONS(2756), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_IMPORT] = ACTIONS(2756), - [anon_sym_Include] = ACTIONS(2756), - [anon_sym_include] = ACTIONS(2756), - [anon_sym_INCLUDE] = ACTIONS(2756), - [anon_sym_Interface] = ACTIONS(2756), - [anon_sym_interface] = ACTIONS(2756), - [anon_sym_INTERFACE] = ACTIONS(2756), - [anon_sym_New] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2756), - [anon_sym_NEW] = ACTIONS(2756), - [anon_sym_Package] = ACTIONS(2756), - [anon_sym_package] = ACTIONS(2756), - [anon_sym_PACKAGE] = ACTIONS(2756), - [anon_sym_Private] = ACTIONS(2756), - [anon_sym_private] = ACTIONS(2756), - [anon_sym_PRIVATE] = ACTIONS(2756), - [anon_sym_Property] = ACTIONS(2756), - [anon_sym_property] = ACTIONS(2756), - [anon_sym_PROPERTY] = ACTIONS(2756), - [anon_sym_Public] = ACTIONS(2756), - [anon_sym_public] = ACTIONS(2756), - [anon_sym_PUBLIC] = ACTIONS(2756), - [anon_sym_Remote] = ACTIONS(2756), - [anon_sym_remote] = ACTIONS(2756), - [anon_sym_REMOTE] = ACTIONS(2756), - [anon_sym_Return] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_RETURN] = ACTIONS(2756), - [anon_sym_Static] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_STATIC] = ACTIONS(2756), - [anon_sym_Switch] = ACTIONS(2756), - [anon_sym_switch] = ACTIONS(2756), - [anon_sym_SWITCH] = ACTIONS(2756), - [anon_sym_Throw] = ACTIONS(2756), - [anon_sym_throw] = ACTIONS(2756), - [anon_sym_THROW] = ACTIONS(2756), - [anon_sym_Try] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(2756), - [anon_sym_TRY] = ACTIONS(2756), - [anon_sym_Var] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2756), - [anon_sym_VAR] = ACTIONS(2756), - [anon_sym_While] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_WHILE] = ACTIONS(2756), - [anon_sym_With] = ACTIONS(2756), - [anon_sym_with] = ACTIONS(2756), - [anon_sym_WITH] = ACTIONS(2756), - [sym_cf_comment] = ACTIONS(2754), - [sym__java_block_open] = ACTIONS(2754), - [sym__static_type_prefix] = ACTIONS(2754), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3378), + [sym_tag_linefeed] = ACTIONS(3382), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(906)] = { - [ts_builtin_sym_end] = ACTIONS(2758), - [sym_identifier] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_Query] = ACTIONS(2760), - [anon_sym_query] = ACTIONS(2760), - [anon_sym_QUERY] = ACTIONS(2760), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_SLASH] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2758), - [aux_sym_unary_operator_token1] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_SQUOTE] = ACTIONS(2758), + [STATE(964)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3679), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(5001), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(5001), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2931), + [sym_hash_expression] = STATE(2931), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2760), - [aux_sym_number_token2] = ACTIONS(2758), - [anon_sym_This] = ACTIONS(2760), - [anon_sym_this] = ACTIONS(2760), - [anon_sym_THIS] = ACTIONS(2760), - [anon_sym_Super] = ACTIONS(2760), - [anon_sym_super] = ACTIONS(2760), - [anon_sym_SUPER] = ACTIONS(2760), - [anon_sym_True] = ACTIONS(2760), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_TRUE] = ACTIONS(2760), - [anon_sym_False] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [anon_sym_FALSE] = ACTIONS(2760), - [anon_sym_Null] = ACTIONS(2760), - [anon_sym_null] = ACTIONS(2760), - [anon_sym_NULL] = ACTIONS(2760), - [anon_sym_Undefined] = ACTIONS(2760), - [anon_sym_undefined] = ACTIONS(2760), - [anon_sym_UNDEFINED] = ACTIONS(2760), - [anon_sym_get] = ACTIONS(2760), - [anon_sym_set] = ACTIONS(2760), - [anon_sym_POUND] = ACTIONS(2760), - [sym_hash_empty] = ACTIONS(2758), - [anon_sym_export] = ACTIONS(2760), - [anon_sym_QueryExecute] = ACTIONS(2760), - [anon_sym_queryexecute] = ACTIONS(2760), - [anon_sym_QUERYEXECUTE] = ACTIONS(2760), - [anon_sym_queryExecute] = ACTIONS(2760), - [anon_sym_BQUOTE] = ACTIONS(2760), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2758), - [anon_sym_Abstract] = ACTIONS(2760), - [anon_sym_abstract] = ACTIONS(2760), - [anon_sym_ABSTRACT] = ACTIONS(2760), - [anon_sym_Break] = ACTIONS(2760), - [anon_sym_break] = ACTIONS(2760), - [anon_sym_BREAK] = ACTIONS(2760), - [anon_sym_Case] = ACTIONS(2760), - [anon_sym_case] = ACTIONS(2760), - [anon_sym_CASE] = ACTIONS(2760), - [anon_sym_Component] = ACTIONS(2760), - [anon_sym_component] = ACTIONS(2760), - [anon_sym_COMPONENT] = ACTIONS(2760), - [anon_sym_Continue] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2760), - [anon_sym_CONTINUE] = ACTIONS(2760), - [anon_sym_Debugger] = ACTIONS(2760), - [anon_sym_debugger] = ACTIONS(2760), - [anon_sym_DEBUGGER] = ACTIONS(2760), - [anon_sym_Default] = ACTIONS(2760), - [anon_sym_default] = ACTIONS(2760), - [anon_sym_DEFAULT] = ACTIONS(2760), - [anon_sym_Do] = ACTIONS(2760), - [anon_sym_do] = ACTIONS(2760), - [anon_sym_DO] = ACTIONS(2760), - [anon_sym_Final] = ACTIONS(2760), - [anon_sym_final] = ACTIONS(2760), - [anon_sym_FINAL] = ACTIONS(2760), - [anon_sym_For] = ACTIONS(2760), - [anon_sym_for] = ACTIONS(2760), - [anon_sym_FOR] = ACTIONS(2760), - [anon_sym_Function] = ACTIONS(2760), - [anon_sym_function] = ACTIONS(2760), - [anon_sym_FUNCTION] = ACTIONS(2760), - [anon_sym_If] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2760), - [anon_sym_IF] = ACTIONS(2760), - [anon_sym_Import] = ACTIONS(2760), - [anon_sym_import] = ACTIONS(2760), - [anon_sym_IMPORT] = ACTIONS(2760), - [anon_sym_Include] = ACTIONS(2760), - [anon_sym_include] = ACTIONS(2760), - [anon_sym_INCLUDE] = ACTIONS(2760), - [anon_sym_Interface] = ACTIONS(2760), - [anon_sym_interface] = ACTIONS(2760), - [anon_sym_INTERFACE] = ACTIONS(2760), - [anon_sym_New] = ACTIONS(2760), - [anon_sym_new] = ACTIONS(2760), - [anon_sym_NEW] = ACTIONS(2760), - [anon_sym_Package] = ACTIONS(2760), - [anon_sym_package] = ACTIONS(2760), - [anon_sym_PACKAGE] = ACTIONS(2760), - [anon_sym_Private] = ACTIONS(2760), - [anon_sym_private] = ACTIONS(2760), - [anon_sym_PRIVATE] = ACTIONS(2760), - [anon_sym_Property] = ACTIONS(2760), - [anon_sym_property] = ACTIONS(2760), - [anon_sym_PROPERTY] = ACTIONS(2760), - [anon_sym_Public] = ACTIONS(2760), - [anon_sym_public] = ACTIONS(2760), - [anon_sym_PUBLIC] = ACTIONS(2760), - [anon_sym_Remote] = ACTIONS(2760), - [anon_sym_remote] = ACTIONS(2760), - [anon_sym_REMOTE] = ACTIONS(2760), - [anon_sym_Return] = ACTIONS(2760), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_RETURN] = ACTIONS(2760), - [anon_sym_Static] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_STATIC] = ACTIONS(2760), - [anon_sym_Switch] = ACTIONS(2760), - [anon_sym_switch] = ACTIONS(2760), - [anon_sym_SWITCH] = ACTIONS(2760), - [anon_sym_Throw] = ACTIONS(2760), - [anon_sym_throw] = ACTIONS(2760), - [anon_sym_THROW] = ACTIONS(2760), - [anon_sym_Try] = ACTIONS(2760), - [anon_sym_try] = ACTIONS(2760), - [anon_sym_TRY] = ACTIONS(2760), - [anon_sym_Var] = ACTIONS(2760), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_VAR] = ACTIONS(2760), - [anon_sym_While] = ACTIONS(2760), - [anon_sym_while] = ACTIONS(2760), - [anon_sym_WHILE] = ACTIONS(2760), - [anon_sym_With] = ACTIONS(2760), - [anon_sym_with] = ACTIONS(2760), - [anon_sym_WITH] = ACTIONS(2760), - [sym_cf_comment] = ACTIONS(2758), - [sym__java_block_open] = ACTIONS(2758), - [sym__static_type_prefix] = ACTIONS(2758), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(907)] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_Query] = ACTIONS(2784), - [anon_sym_query] = ACTIONS(2784), - [anon_sym_QUERY] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_TILDE] = ACTIONS(2782), - [aux_sym_unary_operator_token1] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), + [STATE(965)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3806), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3315), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3315), + [sym_undefined] = STATE(3315), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_RBRACK] = ACTIONS(3394), + [anon_sym_Query] = ACTIONS(3390), + [anon_sym_query] = ACTIONS(3390), + [anon_sym_QUERY] = ACTIONS(3390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2784), - [aux_sym_number_token2] = ACTIONS(2782), - [anon_sym_This] = ACTIONS(2784), - [anon_sym_this] = ACTIONS(2784), - [anon_sym_THIS] = ACTIONS(2784), - [anon_sym_Super] = ACTIONS(2784), - [anon_sym_super] = ACTIONS(2784), - [anon_sym_SUPER] = ACTIONS(2784), - [anon_sym_True] = ACTIONS(2784), - [anon_sym_true] = ACTIONS(2784), - [anon_sym_TRUE] = ACTIONS(2784), - [anon_sym_False] = ACTIONS(2784), - [anon_sym_false] = ACTIONS(2784), - [anon_sym_FALSE] = ACTIONS(2784), - [anon_sym_Null] = ACTIONS(2784), - [anon_sym_null] = ACTIONS(2784), - [anon_sym_NULL] = ACTIONS(2784), - [anon_sym_Undefined] = ACTIONS(2784), - [anon_sym_undefined] = ACTIONS(2784), - [anon_sym_UNDEFINED] = ACTIONS(2784), - [anon_sym_get] = ACTIONS(2784), - [anon_sym_set] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [sym_hash_empty] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2784), - [anon_sym_QueryExecute] = ACTIONS(2784), - [anon_sym_queryexecute] = ACTIONS(2784), - [anon_sym_QUERYEXECUTE] = ACTIONS(2784), - [anon_sym_queryExecute] = ACTIONS(2784), - [anon_sym_BQUOTE] = ACTIONS(2784), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2782), - [anon_sym_Abstract] = ACTIONS(2784), - [anon_sym_abstract] = ACTIONS(2784), - [anon_sym_ABSTRACT] = ACTIONS(2784), - [anon_sym_Break] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_BREAK] = ACTIONS(2784), - [anon_sym_Case] = ACTIONS(2784), - [anon_sym_case] = ACTIONS(2784), - [anon_sym_CASE] = ACTIONS(2784), - [anon_sym_Component] = ACTIONS(2784), - [anon_sym_component] = ACTIONS(2784), - [anon_sym_COMPONENT] = ACTIONS(2784), - [anon_sym_Continue] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_CONTINUE] = ACTIONS(2784), - [anon_sym_Debugger] = ACTIONS(2784), - [anon_sym_debugger] = ACTIONS(2784), - [anon_sym_DEBUGGER] = ACTIONS(2784), - [anon_sym_Default] = ACTIONS(2784), - [anon_sym_default] = ACTIONS(2784), - [anon_sym_DEFAULT] = ACTIONS(2784), - [anon_sym_Do] = ACTIONS(2784), - [anon_sym_do] = ACTIONS(2784), - [anon_sym_DO] = ACTIONS(2784), - [anon_sym_Final] = ACTIONS(2784), - [anon_sym_final] = ACTIONS(2784), - [anon_sym_FINAL] = ACTIONS(2784), - [anon_sym_For] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_FOR] = ACTIONS(2784), - [anon_sym_Function] = ACTIONS(2784), - [anon_sym_function] = ACTIONS(2784), - [anon_sym_FUNCTION] = ACTIONS(2784), - [anon_sym_If] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_IF] = ACTIONS(2784), - [anon_sym_Import] = ACTIONS(2784), - [anon_sym_import] = ACTIONS(2784), - [anon_sym_IMPORT] = ACTIONS(2784), - [anon_sym_Include] = ACTIONS(2784), - [anon_sym_include] = ACTIONS(2784), - [anon_sym_INCLUDE] = ACTIONS(2784), - [anon_sym_Interface] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_INTERFACE] = ACTIONS(2784), - [anon_sym_New] = ACTIONS(2784), - [anon_sym_new] = ACTIONS(2784), - [anon_sym_NEW] = ACTIONS(2784), - [anon_sym_Package] = ACTIONS(2784), - [anon_sym_package] = ACTIONS(2784), - [anon_sym_PACKAGE] = ACTIONS(2784), - [anon_sym_Private] = ACTIONS(2784), - [anon_sym_private] = ACTIONS(2784), - [anon_sym_PRIVATE] = ACTIONS(2784), - [anon_sym_Property] = ACTIONS(2784), - [anon_sym_property] = ACTIONS(2784), - [anon_sym_PROPERTY] = ACTIONS(2784), - [anon_sym_Public] = ACTIONS(2784), - [anon_sym_public] = ACTIONS(2784), - [anon_sym_PUBLIC] = ACTIONS(2784), - [anon_sym_Remote] = ACTIONS(2784), - [anon_sym_remote] = ACTIONS(2784), - [anon_sym_REMOTE] = ACTIONS(2784), - [anon_sym_Return] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_RETURN] = ACTIONS(2784), - [anon_sym_Static] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_STATIC] = ACTIONS(2784), - [anon_sym_Switch] = ACTIONS(2784), - [anon_sym_switch] = ACTIONS(2784), - [anon_sym_SWITCH] = ACTIONS(2784), - [anon_sym_Throw] = ACTIONS(2784), - [anon_sym_throw] = ACTIONS(2784), - [anon_sym_THROW] = ACTIONS(2784), - [anon_sym_Try] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [anon_sym_TRY] = ACTIONS(2784), - [anon_sym_Var] = ACTIONS(2784), - [anon_sym_var] = ACTIONS(2784), - [anon_sym_VAR] = ACTIONS(2784), - [anon_sym_While] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_WHILE] = ACTIONS(2784), - [anon_sym_With] = ACTIONS(2784), - [anon_sym_with] = ACTIONS(2784), - [anon_sym_WITH] = ACTIONS(2784), - [sym_cf_comment] = ACTIONS(2782), - [sym__java_block_open] = ACTIONS(2782), - [sym__static_type_prefix] = ACTIONS(2782), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3390), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3390), + [anon_sym_QueryExecute] = ACTIONS(3396), + [anon_sym_queryexecute] = ACTIONS(3396), + [anon_sym_QUERYEXECUTE] = ACTIONS(3396), + [anon_sym_queryExecute] = ACTIONS(3396), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3390), + [anon_sym_abstract] = ACTIONS(3390), + [anon_sym_ABSTRACT] = ACTIONS(3390), + [anon_sym_Component] = ACTIONS(3390), + [anon_sym_component] = ACTIONS(3390), + [anon_sym_COMPONENT] = ACTIONS(3390), + [anon_sym_Debugger] = ACTIONS(3390), + [anon_sym_debugger] = ACTIONS(3390), + [anon_sym_DEBUGGER] = ACTIONS(3390), + [anon_sym_Final] = ACTIONS(3390), + [anon_sym_final] = ACTIONS(3390), + [anon_sym_FINAL] = ACTIONS(3390), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3390), + [anon_sym_include] = ACTIONS(3390), + [anon_sym_INCLUDE] = ACTIONS(3390), + [anon_sym_New] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_NEW] = ACTIONS(3398), + [anon_sym_Package] = ACTIONS(3390), + [anon_sym_package] = ACTIONS(3390), + [anon_sym_PACKAGE] = ACTIONS(3390), + [anon_sym_Private] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_PRIVATE] = ACTIONS(3390), + [anon_sym_Public] = ACTIONS(3390), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_PUBLIC] = ACTIONS(3390), + [anon_sym_Remote] = ACTIONS(3390), + [anon_sym_remote] = ACTIONS(3390), + [anon_sym_REMOTE] = ACTIONS(3390), + [anon_sym_Static] = ACTIONS(3390), + [anon_sym_static] = ACTIONS(3390), + [anon_sym_STATIC] = ACTIONS(3390), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(908)] = { - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_SEMI] = ACTIONS(2920), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_Query] = ACTIONS(2922), - [anon_sym_query] = ACTIONS(2922), - [anon_sym_QUERY] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [aux_sym_unary_operator_token1] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2922), - [aux_sym_number_token2] = ACTIONS(2920), - [anon_sym_This] = ACTIONS(2922), - [anon_sym_this] = ACTIONS(2922), - [anon_sym_THIS] = ACTIONS(2922), - [anon_sym_Super] = ACTIONS(2922), - [anon_sym_super] = ACTIONS(2922), - [anon_sym_SUPER] = ACTIONS(2922), - [anon_sym_True] = ACTIONS(2922), - [anon_sym_true] = ACTIONS(2922), - [anon_sym_TRUE] = ACTIONS(2922), - [anon_sym_False] = ACTIONS(2922), - [anon_sym_false] = ACTIONS(2922), - [anon_sym_FALSE] = ACTIONS(2922), - [anon_sym_Null] = ACTIONS(2922), - [anon_sym_null] = ACTIONS(2922), - [anon_sym_NULL] = ACTIONS(2922), - [anon_sym_Undefined] = ACTIONS(2922), - [anon_sym_undefined] = ACTIONS(2922), - [anon_sym_UNDEFINED] = ACTIONS(2922), - [anon_sym_get] = ACTIONS(2922), - [anon_sym_set] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [sym_hash_empty] = ACTIONS(2920), - [anon_sym_export] = ACTIONS(2922), - [anon_sym_QueryExecute] = ACTIONS(2922), - [anon_sym_queryexecute] = ACTIONS(2922), - [anon_sym_QUERYEXECUTE] = ACTIONS(2922), - [anon_sym_queryExecute] = ACTIONS(2922), - [anon_sym_BQUOTE] = ACTIONS(2922), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2920), - [anon_sym_Abstract] = ACTIONS(2922), - [anon_sym_abstract] = ACTIONS(2922), - [anon_sym_ABSTRACT] = ACTIONS(2922), - [anon_sym_Break] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_BREAK] = ACTIONS(2922), - [anon_sym_Case] = ACTIONS(2922), - [anon_sym_case] = ACTIONS(2922), - [anon_sym_CASE] = ACTIONS(2922), - [anon_sym_Component] = ACTIONS(2922), - [anon_sym_component] = ACTIONS(2922), - [anon_sym_COMPONENT] = ACTIONS(2922), - [anon_sym_Continue] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_CONTINUE] = ACTIONS(2922), - [anon_sym_Debugger] = ACTIONS(2922), - [anon_sym_debugger] = ACTIONS(2922), - [anon_sym_DEBUGGER] = ACTIONS(2922), - [anon_sym_Default] = ACTIONS(2922), - [anon_sym_default] = ACTIONS(2922), - [anon_sym_DEFAULT] = ACTIONS(2922), - [anon_sym_Do] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_DO] = ACTIONS(2922), - [anon_sym_Final] = ACTIONS(2922), - [anon_sym_final] = ACTIONS(2922), - [anon_sym_FINAL] = ACTIONS(2922), - [anon_sym_For] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_FOR] = ACTIONS(2922), - [anon_sym_Function] = ACTIONS(2922), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_FUNCTION] = ACTIONS(2922), - [anon_sym_If] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_IF] = ACTIONS(2922), - [anon_sym_Import] = ACTIONS(2922), - [anon_sym_import] = ACTIONS(2922), - [anon_sym_IMPORT] = ACTIONS(2922), - [anon_sym_Include] = ACTIONS(2922), - [anon_sym_include] = ACTIONS(2922), - [anon_sym_INCLUDE] = ACTIONS(2922), - [anon_sym_Interface] = ACTIONS(2922), - [anon_sym_interface] = ACTIONS(2922), - [anon_sym_INTERFACE] = ACTIONS(2922), - [anon_sym_New] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_NEW] = ACTIONS(2922), - [anon_sym_Package] = ACTIONS(2922), - [anon_sym_package] = ACTIONS(2922), - [anon_sym_PACKAGE] = ACTIONS(2922), - [anon_sym_Private] = ACTIONS(2922), - [anon_sym_private] = ACTIONS(2922), - [anon_sym_PRIVATE] = ACTIONS(2922), - [anon_sym_Property] = ACTIONS(2922), - [anon_sym_property] = ACTIONS(2922), - [anon_sym_PROPERTY] = ACTIONS(2922), - [anon_sym_Public] = ACTIONS(2922), - [anon_sym_public] = ACTIONS(2922), - [anon_sym_PUBLIC] = ACTIONS(2922), - [anon_sym_Remote] = ACTIONS(2922), - [anon_sym_remote] = ACTIONS(2922), - [anon_sym_REMOTE] = ACTIONS(2922), - [anon_sym_Return] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_RETURN] = ACTIONS(2922), - [anon_sym_Static] = ACTIONS(2922), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_STATIC] = ACTIONS(2922), - [anon_sym_Switch] = ACTIONS(2922), - [anon_sym_switch] = ACTIONS(2922), - [anon_sym_SWITCH] = ACTIONS(2922), - [anon_sym_Throw] = ACTIONS(2922), - [anon_sym_throw] = ACTIONS(2922), - [anon_sym_THROW] = ACTIONS(2922), - [anon_sym_Try] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_TRY] = ACTIONS(2922), - [anon_sym_Var] = ACTIONS(2922), - [anon_sym_var] = ACTIONS(2922), - [anon_sym_VAR] = ACTIONS(2922), - [anon_sym_While] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_WHILE] = ACTIONS(2922), - [anon_sym_With] = ACTIONS(2922), - [anon_sym_with] = ACTIONS(2922), - [anon_sym_WITH] = ACTIONS(2922), - [sym_cf_comment] = ACTIONS(2920), - [sym__java_block_open] = ACTIONS(2920), - [sym__static_type_prefix] = ACTIONS(2920), + [STATE(966)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3648), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(5001), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(5001), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2931), + [sym_hash_expression] = STATE(2931), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(909)] = { - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_RBRACE] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_Query] = ACTIONS(2764), - [anon_sym_query] = ACTIONS(2764), - [anon_sym_QUERY] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_TILDE] = ACTIONS(2762), - [aux_sym_unary_operator_token1] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2762), - [anon_sym_DQUOTE] = ACTIONS(2762), - [anon_sym_SQUOTE] = ACTIONS(2762), + [STATE(967)] = { + [sym_statement_block] = STATE(280), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1001), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(558), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1285), + [aux_sym_function_declaration_repeat3] = STATE(1001), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2764), - [aux_sym_number_token2] = ACTIONS(2762), - [anon_sym_This] = ACTIONS(2764), - [anon_sym_this] = ACTIONS(2764), - [anon_sym_THIS] = ACTIONS(2764), - [anon_sym_Super] = ACTIONS(2764), - [anon_sym_super] = ACTIONS(2764), - [anon_sym_SUPER] = ACTIONS(2764), - [anon_sym_True] = ACTIONS(2764), - [anon_sym_true] = ACTIONS(2764), - [anon_sym_TRUE] = ACTIONS(2764), - [anon_sym_False] = ACTIONS(2764), - [anon_sym_false] = ACTIONS(2764), - [anon_sym_FALSE] = ACTIONS(2764), - [anon_sym_Null] = ACTIONS(2764), - [anon_sym_null] = ACTIONS(2764), - [anon_sym_NULL] = ACTIONS(2764), - [anon_sym_Undefined] = ACTIONS(2764), - [anon_sym_undefined] = ACTIONS(2764), - [anon_sym_UNDEFINED] = ACTIONS(2764), - [anon_sym_get] = ACTIONS(2764), - [anon_sym_set] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2764), - [sym_hash_empty] = ACTIONS(2762), - [anon_sym_export] = ACTIONS(2764), - [anon_sym_QueryExecute] = ACTIONS(2764), - [anon_sym_queryexecute] = ACTIONS(2764), - [anon_sym_QUERYEXECUTE] = ACTIONS(2764), - [anon_sym_queryExecute] = ACTIONS(2764), - [anon_sym_BQUOTE] = ACTIONS(2764), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2762), - [anon_sym_Abstract] = ACTIONS(2764), - [anon_sym_abstract] = ACTIONS(2764), - [anon_sym_ABSTRACT] = ACTIONS(2764), - [anon_sym_Break] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_BREAK] = ACTIONS(2764), - [anon_sym_Case] = ACTIONS(2764), - [anon_sym_case] = ACTIONS(2764), - [anon_sym_CASE] = ACTIONS(2764), - [anon_sym_Component] = ACTIONS(2764), - [anon_sym_component] = ACTIONS(2764), - [anon_sym_COMPONENT] = ACTIONS(2764), - [anon_sym_Continue] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_CONTINUE] = ACTIONS(2764), - [anon_sym_Debugger] = ACTIONS(2764), - [anon_sym_debugger] = ACTIONS(2764), - [anon_sym_DEBUGGER] = ACTIONS(2764), - [anon_sym_Default] = ACTIONS(2764), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_DEFAULT] = ACTIONS(2764), - [anon_sym_Do] = ACTIONS(2764), - [anon_sym_do] = ACTIONS(2764), - [anon_sym_DO] = ACTIONS(2764), - [anon_sym_Final] = ACTIONS(2764), - [anon_sym_final] = ACTIONS(2764), - [anon_sym_FINAL] = ACTIONS(2764), - [anon_sym_For] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_FOR] = ACTIONS(2764), - [anon_sym_Function] = ACTIONS(2764), - [anon_sym_function] = ACTIONS(2764), - [anon_sym_FUNCTION] = ACTIONS(2764), - [anon_sym_If] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_IF] = ACTIONS(2764), - [anon_sym_Import] = ACTIONS(2764), - [anon_sym_import] = ACTIONS(2764), - [anon_sym_IMPORT] = ACTIONS(2764), - [anon_sym_Include] = ACTIONS(2764), - [anon_sym_include] = ACTIONS(2764), - [anon_sym_INCLUDE] = ACTIONS(2764), - [anon_sym_Interface] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_INTERFACE] = ACTIONS(2764), - [anon_sym_New] = ACTIONS(2764), - [anon_sym_new] = ACTIONS(2764), - [anon_sym_NEW] = ACTIONS(2764), - [anon_sym_Package] = ACTIONS(2764), - [anon_sym_package] = ACTIONS(2764), - [anon_sym_PACKAGE] = ACTIONS(2764), - [anon_sym_Private] = ACTIONS(2764), - [anon_sym_private] = ACTIONS(2764), - [anon_sym_PRIVATE] = ACTIONS(2764), - [anon_sym_Property] = ACTIONS(2764), - [anon_sym_property] = ACTIONS(2764), - [anon_sym_PROPERTY] = ACTIONS(2764), - [anon_sym_Public] = ACTIONS(2764), - [anon_sym_public] = ACTIONS(2764), - [anon_sym_PUBLIC] = ACTIONS(2764), - [anon_sym_Remote] = ACTIONS(2764), - [anon_sym_remote] = ACTIONS(2764), - [anon_sym_REMOTE] = ACTIONS(2764), - [anon_sym_Return] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_RETURN] = ACTIONS(2764), - [anon_sym_Static] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_STATIC] = ACTIONS(2764), - [anon_sym_Switch] = ACTIONS(2764), - [anon_sym_switch] = ACTIONS(2764), - [anon_sym_SWITCH] = ACTIONS(2764), - [anon_sym_Throw] = ACTIONS(2764), - [anon_sym_throw] = ACTIONS(2764), - [anon_sym_THROW] = ACTIONS(2764), - [anon_sym_Try] = ACTIONS(2764), - [anon_sym_try] = ACTIONS(2764), - [anon_sym_TRY] = ACTIONS(2764), - [anon_sym_Var] = ACTIONS(2764), - [anon_sym_var] = ACTIONS(2764), - [anon_sym_VAR] = ACTIONS(2764), - [anon_sym_While] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_WHILE] = ACTIONS(2764), - [anon_sym_With] = ACTIONS(2764), - [anon_sym_with] = ACTIONS(2764), - [anon_sym_WITH] = ACTIONS(2764), - [sym_cf_comment] = ACTIONS(2762), - [sym__java_block_open] = ACTIONS(2762), - [sym__static_type_prefix] = ACTIONS(2762), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3402), + [sym_tag_linefeed] = ACTIONS(3404), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(910)] = { - [ts_builtin_sym_end] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_let] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_Query] = ACTIONS(2768), - [anon_sym_query] = ACTIONS(2768), - [anon_sym_QUERY] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2766), - [aux_sym_unary_operator_token1] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_DQUOTE] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2766), + [STATE(968)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3646), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_spread_element] = STATE(4944), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2717), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2873), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2717), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pair] = STATE(4944), + [sym__property_name] = STATE(5345), + [sym__hash_always_eval] = STATE(2852), + [sym_hash_expression] = STATE(2852), + [sym_computed_property_name] = STATE(5345), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_RBRACK] = ACTIONS(3406), + [anon_sym_Query] = ACTIONS(3251), + [anon_sym_query] = ACTIONS(3251), + [anon_sym_QUERY] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2768), - [aux_sym_number_token2] = ACTIONS(2766), - [anon_sym_This] = ACTIONS(2768), - [anon_sym_this] = ACTIONS(2768), - [anon_sym_THIS] = ACTIONS(2768), - [anon_sym_Super] = ACTIONS(2768), - [anon_sym_super] = ACTIONS(2768), - [anon_sym_SUPER] = ACTIONS(2768), - [anon_sym_True] = ACTIONS(2768), - [anon_sym_true] = ACTIONS(2768), - [anon_sym_TRUE] = ACTIONS(2768), - [anon_sym_False] = ACTIONS(2768), - [anon_sym_false] = ACTIONS(2768), - [anon_sym_FALSE] = ACTIONS(2768), - [anon_sym_Null] = ACTIONS(2768), - [anon_sym_null] = ACTIONS(2768), - [anon_sym_NULL] = ACTIONS(2768), - [anon_sym_Undefined] = ACTIONS(2768), - [anon_sym_undefined] = ACTIONS(2768), - [anon_sym_UNDEFINED] = ACTIONS(2768), - [anon_sym_get] = ACTIONS(2768), - [anon_sym_set] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(2768), - [sym_hash_empty] = ACTIONS(2766), - [anon_sym_export] = ACTIONS(2768), - [anon_sym_QueryExecute] = ACTIONS(2768), - [anon_sym_queryexecute] = ACTIONS(2768), - [anon_sym_QUERYEXECUTE] = ACTIONS(2768), - [anon_sym_queryExecute] = ACTIONS(2768), - [anon_sym_BQUOTE] = ACTIONS(2768), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2766), - [anon_sym_Abstract] = ACTIONS(2768), - [anon_sym_abstract] = ACTIONS(2768), - [anon_sym_ABSTRACT] = ACTIONS(2768), - [anon_sym_Break] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_BREAK] = ACTIONS(2768), - [anon_sym_Case] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_CASE] = ACTIONS(2768), - [anon_sym_Component] = ACTIONS(2768), - [anon_sym_component] = ACTIONS(2768), - [anon_sym_COMPONENT] = ACTIONS(2768), - [anon_sym_Continue] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_CONTINUE] = ACTIONS(2768), - [anon_sym_Debugger] = ACTIONS(2768), - [anon_sym_debugger] = ACTIONS(2768), - [anon_sym_DEBUGGER] = ACTIONS(2768), - [anon_sym_Default] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_DEFAULT] = ACTIONS(2768), - [anon_sym_Do] = ACTIONS(2768), - [anon_sym_do] = ACTIONS(2768), - [anon_sym_DO] = ACTIONS(2768), - [anon_sym_Final] = ACTIONS(2768), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_FINAL] = ACTIONS(2768), - [anon_sym_For] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_FOR] = ACTIONS(2768), - [anon_sym_Function] = ACTIONS(2768), - [anon_sym_function] = ACTIONS(2768), - [anon_sym_FUNCTION] = ACTIONS(2768), - [anon_sym_If] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_IF] = ACTIONS(2768), - [anon_sym_Import] = ACTIONS(2768), - [anon_sym_import] = ACTIONS(2768), - [anon_sym_IMPORT] = ACTIONS(2768), - [anon_sym_Include] = ACTIONS(2768), - [anon_sym_include] = ACTIONS(2768), - [anon_sym_INCLUDE] = ACTIONS(2768), - [anon_sym_Interface] = ACTIONS(2768), - [anon_sym_interface] = ACTIONS(2768), - [anon_sym_INTERFACE] = ACTIONS(2768), - [anon_sym_New] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_NEW] = ACTIONS(2768), - [anon_sym_Package] = ACTIONS(2768), - [anon_sym_package] = ACTIONS(2768), - [anon_sym_PACKAGE] = ACTIONS(2768), - [anon_sym_Private] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_PRIVATE] = ACTIONS(2768), - [anon_sym_Property] = ACTIONS(2768), - [anon_sym_property] = ACTIONS(2768), - [anon_sym_PROPERTY] = ACTIONS(2768), - [anon_sym_Public] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_PUBLIC] = ACTIONS(2768), - [anon_sym_Remote] = ACTIONS(2768), - [anon_sym_remote] = ACTIONS(2768), - [anon_sym_REMOTE] = ACTIONS(2768), - [anon_sym_Return] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_RETURN] = ACTIONS(2768), - [anon_sym_Static] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_STATIC] = ACTIONS(2768), - [anon_sym_Switch] = ACTIONS(2768), - [anon_sym_switch] = ACTIONS(2768), - [anon_sym_SWITCH] = ACTIONS(2768), - [anon_sym_Throw] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_THROW] = ACTIONS(2768), - [anon_sym_Try] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [anon_sym_TRY] = ACTIONS(2768), - [anon_sym_Var] = ACTIONS(2768), - [anon_sym_var] = ACTIONS(2768), - [anon_sym_VAR] = ACTIONS(2768), - [anon_sym_While] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_WHILE] = ACTIONS(2768), - [anon_sym_With] = ACTIONS(2768), - [anon_sym_with] = ACTIONS(2768), - [anon_sym_WITH] = ACTIONS(2768), - [sym_cf_comment] = ACTIONS(2766), - [sym__java_block_open] = ACTIONS(2766), - [sym__static_type_prefix] = ACTIONS(2766), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3251), + [anon_sym_set] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3251), + [anon_sym_QueryExecute] = ACTIONS(3259), + [anon_sym_queryexecute] = ACTIONS(3259), + [anon_sym_QUERYEXECUTE] = ACTIONS(3259), + [anon_sym_queryExecute] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_ABSTRACT] = ACTIONS(3251), + [anon_sym_Component] = ACTIONS(3251), + [anon_sym_component] = ACTIONS(3251), + [anon_sym_COMPONENT] = ACTIONS(3251), + [anon_sym_Debugger] = ACTIONS(3251), + [anon_sym_debugger] = ACTIONS(3251), + [anon_sym_DEBUGGER] = ACTIONS(3251), + [anon_sym_Final] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_FINAL] = ACTIONS(3251), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3251), + [anon_sym_include] = ACTIONS(3251), + [anon_sym_INCLUDE] = ACTIONS(3251), + [anon_sym_New] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_NEW] = ACTIONS(3263), + [anon_sym_Package] = ACTIONS(3251), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_PACKAGE] = ACTIONS(3251), + [anon_sym_Private] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_PRIVATE] = ACTIONS(3251), + [anon_sym_Public] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_PUBLIC] = ACTIONS(3251), + [anon_sym_Remote] = ACTIONS(3251), + [anon_sym_remote] = ACTIONS(3251), + [anon_sym_REMOTE] = ACTIONS(3251), + [anon_sym_Static] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_STATIC] = ACTIONS(3251), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(911)] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_let] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_Query] = ACTIONS(2772), - [anon_sym_query] = ACTIONS(2772), - [anon_sym_QUERY] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [aux_sym_unary_operator_token1] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2770), + [STATE(969)] = { + [sym_statement_block] = STATE(261), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(977), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(558), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1285), + [aux_sym_function_declaration_repeat3] = STATE(977), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2772), - [aux_sym_number_token2] = ACTIONS(2770), - [anon_sym_This] = ACTIONS(2772), - [anon_sym_this] = ACTIONS(2772), - [anon_sym_THIS] = ACTIONS(2772), - [anon_sym_Super] = ACTIONS(2772), - [anon_sym_super] = ACTIONS(2772), - [anon_sym_SUPER] = ACTIONS(2772), - [anon_sym_True] = ACTIONS(2772), - [anon_sym_true] = ACTIONS(2772), - [anon_sym_TRUE] = ACTIONS(2772), - [anon_sym_False] = ACTIONS(2772), - [anon_sym_false] = ACTIONS(2772), - [anon_sym_FALSE] = ACTIONS(2772), - [anon_sym_Null] = ACTIONS(2772), - [anon_sym_null] = ACTIONS(2772), - [anon_sym_NULL] = ACTIONS(2772), - [anon_sym_Undefined] = ACTIONS(2772), - [anon_sym_undefined] = ACTIONS(2772), - [anon_sym_UNDEFINED] = ACTIONS(2772), - [anon_sym_get] = ACTIONS(2772), - [anon_sym_set] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [sym_hash_empty] = ACTIONS(2770), - [anon_sym_export] = ACTIONS(2772), - [anon_sym_QueryExecute] = ACTIONS(2772), - [anon_sym_queryexecute] = ACTIONS(2772), - [anon_sym_QUERYEXECUTE] = ACTIONS(2772), - [anon_sym_queryExecute] = ACTIONS(2772), - [anon_sym_BQUOTE] = ACTIONS(2772), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2770), - [anon_sym_Abstract] = ACTIONS(2772), - [anon_sym_abstract] = ACTIONS(2772), - [anon_sym_ABSTRACT] = ACTIONS(2772), - [anon_sym_Break] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_BREAK] = ACTIONS(2772), - [anon_sym_Case] = ACTIONS(2772), - [anon_sym_case] = ACTIONS(2772), - [anon_sym_CASE] = ACTIONS(2772), - [anon_sym_Component] = ACTIONS(2772), - [anon_sym_component] = ACTIONS(2772), - [anon_sym_COMPONENT] = ACTIONS(2772), - [anon_sym_Continue] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_CONTINUE] = ACTIONS(2772), - [anon_sym_Debugger] = ACTIONS(2772), - [anon_sym_debugger] = ACTIONS(2772), - [anon_sym_DEBUGGER] = ACTIONS(2772), - [anon_sym_Default] = ACTIONS(2772), - [anon_sym_default] = ACTIONS(2772), - [anon_sym_DEFAULT] = ACTIONS(2772), - [anon_sym_Do] = ACTIONS(2772), - [anon_sym_do] = ACTIONS(2772), - [anon_sym_DO] = ACTIONS(2772), - [anon_sym_Final] = ACTIONS(2772), - [anon_sym_final] = ACTIONS(2772), - [anon_sym_FINAL] = ACTIONS(2772), - [anon_sym_For] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_FOR] = ACTIONS(2772), - [anon_sym_Function] = ACTIONS(2772), - [anon_sym_function] = ACTIONS(2772), - [anon_sym_FUNCTION] = ACTIONS(2772), - [anon_sym_If] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_IF] = ACTIONS(2772), - [anon_sym_Import] = ACTIONS(2772), - [anon_sym_import] = ACTIONS(2772), - [anon_sym_IMPORT] = ACTIONS(2772), - [anon_sym_Include] = ACTIONS(2772), - [anon_sym_include] = ACTIONS(2772), - [anon_sym_INCLUDE] = ACTIONS(2772), - [anon_sym_Interface] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_INTERFACE] = ACTIONS(2772), - [anon_sym_New] = ACTIONS(2772), - [anon_sym_new] = ACTIONS(2772), - [anon_sym_NEW] = ACTIONS(2772), - [anon_sym_Package] = ACTIONS(2772), - [anon_sym_package] = ACTIONS(2772), - [anon_sym_PACKAGE] = ACTIONS(2772), - [anon_sym_Private] = ACTIONS(2772), - [anon_sym_private] = ACTIONS(2772), - [anon_sym_PRIVATE] = ACTIONS(2772), - [anon_sym_Property] = ACTIONS(2772), - [anon_sym_property] = ACTIONS(2772), - [anon_sym_PROPERTY] = ACTIONS(2772), - [anon_sym_Public] = ACTIONS(2772), - [anon_sym_public] = ACTIONS(2772), - [anon_sym_PUBLIC] = ACTIONS(2772), - [anon_sym_Remote] = ACTIONS(2772), - [anon_sym_remote] = ACTIONS(2772), - [anon_sym_REMOTE] = ACTIONS(2772), - [anon_sym_Return] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_RETURN] = ACTIONS(2772), - [anon_sym_Static] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_STATIC] = ACTIONS(2772), - [anon_sym_Switch] = ACTIONS(2772), - [anon_sym_switch] = ACTIONS(2772), - [anon_sym_SWITCH] = ACTIONS(2772), - [anon_sym_Throw] = ACTIONS(2772), - [anon_sym_throw] = ACTIONS(2772), - [anon_sym_THROW] = ACTIONS(2772), - [anon_sym_Try] = ACTIONS(2772), - [anon_sym_try] = ACTIONS(2772), - [anon_sym_TRY] = ACTIONS(2772), - [anon_sym_Var] = ACTIONS(2772), - [anon_sym_var] = ACTIONS(2772), - [anon_sym_VAR] = ACTIONS(2772), - [anon_sym_While] = ACTIONS(2772), - [anon_sym_while] = ACTIONS(2772), - [anon_sym_WHILE] = ACTIONS(2772), - [anon_sym_With] = ACTIONS(2772), - [anon_sym_with] = ACTIONS(2772), - [anon_sym_WITH] = ACTIONS(2772), - [sym_cf_comment] = ACTIONS(2770), - [sym__java_block_open] = ACTIONS(2770), - [sym__static_type_prefix] = ACTIONS(2770), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3408), + [sym_tag_linefeed] = ACTIONS(3410), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(912)] = { - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_Query] = ACTIONS(2316), - [anon_sym_query] = ACTIONS(2316), - [anon_sym_QUERY] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_BANG] = ACTIONS(2318), - [anon_sym_TILDE] = ACTIONS(2318), - [aux_sym_unary_operator_token1] = ACTIONS(2316), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_DQUOTE] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2318), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2316), - [aux_sym_number_token2] = ACTIONS(2318), - [anon_sym_This] = ACTIONS(2316), - [anon_sym_this] = ACTIONS(2316), - [anon_sym_THIS] = ACTIONS(2316), - [anon_sym_Super] = ACTIONS(2316), - [anon_sym_super] = ACTIONS(2316), - [anon_sym_SUPER] = ACTIONS(2316), - [anon_sym_True] = ACTIONS(2316), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_TRUE] = ACTIONS(2316), - [anon_sym_False] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [anon_sym_FALSE] = ACTIONS(2316), - [anon_sym_Null] = ACTIONS(2316), - [anon_sym_null] = ACTIONS(2316), - [anon_sym_NULL] = ACTIONS(2316), - [anon_sym_Undefined] = ACTIONS(2316), - [anon_sym_undefined] = ACTIONS(2316), - [anon_sym_UNDEFINED] = ACTIONS(2316), - [anon_sym_get] = ACTIONS(2316), - [anon_sym_set] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2316), - [sym_hash_empty] = ACTIONS(2318), - [anon_sym_export] = ACTIONS(2316), - [anon_sym_QueryExecute] = ACTIONS(2316), - [anon_sym_queryexecute] = ACTIONS(2316), - [anon_sym_QUERYEXECUTE] = ACTIONS(2316), - [anon_sym_queryExecute] = ACTIONS(2316), - [anon_sym_BQUOTE] = ACTIONS(2316), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2318), - [anon_sym_Abstract] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2316), - [anon_sym_ABSTRACT] = ACTIONS(2316), - [anon_sym_Break] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_BREAK] = ACTIONS(2316), - [anon_sym_Case] = ACTIONS(2316), - [anon_sym_case] = ACTIONS(2316), - [anon_sym_CASE] = ACTIONS(2316), - [anon_sym_Component] = ACTIONS(2316), - [anon_sym_component] = ACTIONS(2316), - [anon_sym_COMPONENT] = ACTIONS(2316), - [anon_sym_Continue] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_CONTINUE] = ACTIONS(2316), - [anon_sym_Debugger] = ACTIONS(2316), - [anon_sym_debugger] = ACTIONS(2316), - [anon_sym_DEBUGGER] = ACTIONS(2316), - [anon_sym_Default] = ACTIONS(2316), - [anon_sym_default] = ACTIONS(2316), - [anon_sym_DEFAULT] = ACTIONS(2316), - [anon_sym_Do] = ACTIONS(2316), - [anon_sym_do] = ACTIONS(2316), - [anon_sym_DO] = ACTIONS(2316), - [anon_sym_Final] = ACTIONS(2316), - [anon_sym_final] = ACTIONS(2316), - [anon_sym_FINAL] = ACTIONS(2316), - [anon_sym_For] = ACTIONS(2316), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_FOR] = ACTIONS(2316), - [anon_sym_Function] = ACTIONS(2316), - [anon_sym_function] = ACTIONS(2316), - [anon_sym_FUNCTION] = ACTIONS(2316), - [anon_sym_If] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_IF] = ACTIONS(2316), - [anon_sym_Import] = ACTIONS(2316), - [anon_sym_import] = ACTIONS(2316), - [anon_sym_IMPORT] = ACTIONS(2316), - [anon_sym_Include] = ACTIONS(2316), - [anon_sym_include] = ACTIONS(2316), - [anon_sym_INCLUDE] = ACTIONS(2316), - [anon_sym_Interface] = ACTIONS(2316), - [anon_sym_interface] = ACTIONS(2316), - [anon_sym_INTERFACE] = ACTIONS(2316), - [anon_sym_New] = ACTIONS(2316), - [anon_sym_new] = ACTIONS(2316), - [anon_sym_NEW] = ACTIONS(2316), - [anon_sym_Package] = ACTIONS(2316), - [anon_sym_package] = ACTIONS(2316), - [anon_sym_PACKAGE] = ACTIONS(2316), - [anon_sym_Private] = ACTIONS(2316), - [anon_sym_private] = ACTIONS(2316), - [anon_sym_PRIVATE] = ACTIONS(2316), - [anon_sym_Property] = ACTIONS(2316), - [anon_sym_property] = ACTIONS(2316), - [anon_sym_PROPERTY] = ACTIONS(2316), - [anon_sym_Public] = ACTIONS(2316), - [anon_sym_public] = ACTIONS(2316), - [anon_sym_PUBLIC] = ACTIONS(2316), - [anon_sym_Remote] = ACTIONS(2316), - [anon_sym_remote] = ACTIONS(2316), - [anon_sym_REMOTE] = ACTIONS(2316), - [anon_sym_Return] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_RETURN] = ACTIONS(2316), - [anon_sym_Static] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_STATIC] = ACTIONS(2316), - [anon_sym_Switch] = ACTIONS(2316), - [anon_sym_switch] = ACTIONS(2316), - [anon_sym_SWITCH] = ACTIONS(2316), - [anon_sym_Throw] = ACTIONS(2316), - [anon_sym_throw] = ACTIONS(2316), - [anon_sym_THROW] = ACTIONS(2316), - [anon_sym_Try] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(2316), - [anon_sym_TRY] = ACTIONS(2316), - [anon_sym_Var] = ACTIONS(2316), - [anon_sym_var] = ACTIONS(2316), - [anon_sym_VAR] = ACTIONS(2316), - [anon_sym_While] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_WHILE] = ACTIONS(2316), - [anon_sym_With] = ACTIONS(2316), - [anon_sym_with] = ACTIONS(2316), - [anon_sym_WITH] = ACTIONS(2316), - [sym_cf_comment] = ACTIONS(2318), - [sym__java_block_open] = ACTIONS(2318), - [sym__static_type_prefix] = ACTIONS(2318), + [STATE(970)] = { + [sym_statement_block] = STATE(2444), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(993), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(558), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1285), + [aux_sym_function_declaration_repeat3] = STATE(993), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3414), + [sym_tag_linefeed] = ACTIONS(3416), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(913)] = { - [ts_builtin_sym_end] = ACTIONS(2774), - [sym_identifier] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_Query] = ACTIONS(2776), - [anon_sym_query] = ACTIONS(2776), - [anon_sym_QUERY] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_SLASH] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2774), - [anon_sym_TILDE] = ACTIONS(2774), - [aux_sym_unary_operator_token1] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2774), + [STATE(971)] = { + [sym_statement_block] = STATE(2570), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(996), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(558), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1270), + [aux_sym_function_declaration_repeat3] = STATE(996), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2776), - [aux_sym_number_token2] = ACTIONS(2774), - [anon_sym_This] = ACTIONS(2776), - [anon_sym_this] = ACTIONS(2776), - [anon_sym_THIS] = ACTIONS(2776), - [anon_sym_Super] = ACTIONS(2776), - [anon_sym_super] = ACTIONS(2776), - [anon_sym_SUPER] = ACTIONS(2776), - [anon_sym_True] = ACTIONS(2776), - [anon_sym_true] = ACTIONS(2776), - [anon_sym_TRUE] = ACTIONS(2776), - [anon_sym_False] = ACTIONS(2776), - [anon_sym_false] = ACTIONS(2776), - [anon_sym_FALSE] = ACTIONS(2776), - [anon_sym_Null] = ACTIONS(2776), - [anon_sym_null] = ACTIONS(2776), - [anon_sym_NULL] = ACTIONS(2776), - [anon_sym_Undefined] = ACTIONS(2776), - [anon_sym_undefined] = ACTIONS(2776), - [anon_sym_UNDEFINED] = ACTIONS(2776), - [anon_sym_get] = ACTIONS(2776), - [anon_sym_set] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(2776), - [sym_hash_empty] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_QueryExecute] = ACTIONS(2776), - [anon_sym_queryexecute] = ACTIONS(2776), - [anon_sym_QUERYEXECUTE] = ACTIONS(2776), - [anon_sym_queryExecute] = ACTIONS(2776), - [anon_sym_BQUOTE] = ACTIONS(2776), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2774), - [anon_sym_Abstract] = ACTIONS(2776), - [anon_sym_abstract] = ACTIONS(2776), - [anon_sym_ABSTRACT] = ACTIONS(2776), - [anon_sym_Break] = ACTIONS(2776), - [anon_sym_break] = ACTIONS(2776), - [anon_sym_BREAK] = ACTIONS(2776), - [anon_sym_Case] = ACTIONS(2776), - [anon_sym_case] = ACTIONS(2776), - [anon_sym_CASE] = ACTIONS(2776), - [anon_sym_Component] = ACTIONS(2776), - [anon_sym_component] = ACTIONS(2776), - [anon_sym_COMPONENT] = ACTIONS(2776), - [anon_sym_Continue] = ACTIONS(2776), - [anon_sym_continue] = ACTIONS(2776), - [anon_sym_CONTINUE] = ACTIONS(2776), - [anon_sym_Debugger] = ACTIONS(2776), - [anon_sym_debugger] = ACTIONS(2776), - [anon_sym_DEBUGGER] = ACTIONS(2776), - [anon_sym_Default] = ACTIONS(2776), - [anon_sym_default] = ACTIONS(2776), - [anon_sym_DEFAULT] = ACTIONS(2776), - [anon_sym_Do] = ACTIONS(2776), - [anon_sym_do] = ACTIONS(2776), - [anon_sym_DO] = ACTIONS(2776), - [anon_sym_Final] = ACTIONS(2776), - [anon_sym_final] = ACTIONS(2776), - [anon_sym_FINAL] = ACTIONS(2776), - [anon_sym_For] = ACTIONS(2776), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_FOR] = ACTIONS(2776), - [anon_sym_Function] = ACTIONS(2776), - [anon_sym_function] = ACTIONS(2776), - [anon_sym_FUNCTION] = ACTIONS(2776), - [anon_sym_If] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_IF] = ACTIONS(2776), - [anon_sym_Import] = ACTIONS(2776), - [anon_sym_import] = ACTIONS(2776), - [anon_sym_IMPORT] = ACTIONS(2776), - [anon_sym_Include] = ACTIONS(2776), - [anon_sym_include] = ACTIONS(2776), - [anon_sym_INCLUDE] = ACTIONS(2776), - [anon_sym_Interface] = ACTIONS(2776), - [anon_sym_interface] = ACTIONS(2776), - [anon_sym_INTERFACE] = ACTIONS(2776), - [anon_sym_New] = ACTIONS(2776), - [anon_sym_new] = ACTIONS(2776), - [anon_sym_NEW] = ACTIONS(2776), - [anon_sym_Package] = ACTIONS(2776), - [anon_sym_package] = ACTIONS(2776), - [anon_sym_PACKAGE] = ACTIONS(2776), - [anon_sym_Private] = ACTIONS(2776), - [anon_sym_private] = ACTIONS(2776), - [anon_sym_PRIVATE] = ACTIONS(2776), - [anon_sym_Property] = ACTIONS(2776), - [anon_sym_property] = ACTIONS(2776), - [anon_sym_PROPERTY] = ACTIONS(2776), - [anon_sym_Public] = ACTIONS(2776), - [anon_sym_public] = ACTIONS(2776), - [anon_sym_PUBLIC] = ACTIONS(2776), - [anon_sym_Remote] = ACTIONS(2776), - [anon_sym_remote] = ACTIONS(2776), - [anon_sym_REMOTE] = ACTIONS(2776), - [anon_sym_Return] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_RETURN] = ACTIONS(2776), - [anon_sym_Static] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2776), - [anon_sym_STATIC] = ACTIONS(2776), - [anon_sym_Switch] = ACTIONS(2776), - [anon_sym_switch] = ACTIONS(2776), - [anon_sym_SWITCH] = ACTIONS(2776), - [anon_sym_Throw] = ACTIONS(2776), - [anon_sym_throw] = ACTIONS(2776), - [anon_sym_THROW] = ACTIONS(2776), - [anon_sym_Try] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [anon_sym_TRY] = ACTIONS(2776), - [anon_sym_Var] = ACTIONS(2776), - [anon_sym_var] = ACTIONS(2776), - [anon_sym_VAR] = ACTIONS(2776), - [anon_sym_While] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_WHILE] = ACTIONS(2776), - [anon_sym_With] = ACTIONS(2776), - [anon_sym_with] = ACTIONS(2776), - [anon_sym_WITH] = ACTIONS(2776), - [sym_cf_comment] = ACTIONS(2774), - [sym__java_block_open] = ACTIONS(2774), - [sym__static_type_prefix] = ACTIONS(2774), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3418), + [sym_tag_linefeed] = ACTIONS(3420), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(972)] = { + [sym_statement_block] = STATE(287), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(975), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(558), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1270), + [aux_sym_function_declaration_repeat3] = STATE(975), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_tag_linefeed] = ACTIONS(3424), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(914)] = { - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_Query] = ACTIONS(3062), - [anon_sym_query] = ACTIONS(3062), - [anon_sym_QUERY] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [aux_sym_unary_operator_token1] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3062), - [aux_sym_number_token2] = ACTIONS(3060), - [anon_sym_This] = ACTIONS(3062), - [anon_sym_this] = ACTIONS(3062), - [anon_sym_THIS] = ACTIONS(3062), - [anon_sym_Super] = ACTIONS(3062), - [anon_sym_super] = ACTIONS(3062), - [anon_sym_SUPER] = ACTIONS(3062), - [anon_sym_True] = ACTIONS(3062), - [anon_sym_true] = ACTIONS(3062), - [anon_sym_TRUE] = ACTIONS(3062), - [anon_sym_False] = ACTIONS(3062), - [anon_sym_false] = ACTIONS(3062), - [anon_sym_FALSE] = ACTIONS(3062), - [anon_sym_Null] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3062), - [anon_sym_NULL] = ACTIONS(3062), - [anon_sym_Undefined] = ACTIONS(3062), - [anon_sym_undefined] = ACTIONS(3062), - [anon_sym_UNDEFINED] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [sym_hash_empty] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_QueryExecute] = ACTIONS(3062), - [anon_sym_queryexecute] = ACTIONS(3062), - [anon_sym_QUERYEXECUTE] = ACTIONS(3062), - [anon_sym_queryExecute] = ACTIONS(3062), - [anon_sym_BQUOTE] = ACTIONS(3062), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3060), - [anon_sym_Abstract] = ACTIONS(3062), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_ABSTRACT] = ACTIONS(3062), - [anon_sym_Break] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_BREAK] = ACTIONS(3062), - [anon_sym_Case] = ACTIONS(3062), - [anon_sym_case] = ACTIONS(3062), - [anon_sym_CASE] = ACTIONS(3062), - [anon_sym_Component] = ACTIONS(3062), - [anon_sym_component] = ACTIONS(3062), - [anon_sym_COMPONENT] = ACTIONS(3062), - [anon_sym_Continue] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_CONTINUE] = ACTIONS(3062), - [anon_sym_Debugger] = ACTIONS(3062), - [anon_sym_debugger] = ACTIONS(3062), - [anon_sym_DEBUGGER] = ACTIONS(3062), - [anon_sym_Default] = ACTIONS(3062), - [anon_sym_default] = ACTIONS(3062), - [anon_sym_DEFAULT] = ACTIONS(3062), - [anon_sym_Do] = ACTIONS(3062), - [anon_sym_do] = ACTIONS(3062), - [anon_sym_DO] = ACTIONS(3062), - [anon_sym_Final] = ACTIONS(3062), - [anon_sym_final] = ACTIONS(3062), - [anon_sym_FINAL] = ACTIONS(3062), - [anon_sym_For] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_FOR] = ACTIONS(3062), - [anon_sym_Function] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_FUNCTION] = ACTIONS(3062), - [anon_sym_If] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_IF] = ACTIONS(3062), - [anon_sym_Import] = ACTIONS(3062), - [anon_sym_import] = ACTIONS(3062), - [anon_sym_IMPORT] = ACTIONS(3062), - [anon_sym_Include] = ACTIONS(3062), - [anon_sym_include] = ACTIONS(3062), - [anon_sym_INCLUDE] = ACTIONS(3062), - [anon_sym_Interface] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_INTERFACE] = ACTIONS(3062), - [anon_sym_New] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_NEW] = ACTIONS(3062), - [anon_sym_Package] = ACTIONS(3062), - [anon_sym_package] = ACTIONS(3062), - [anon_sym_PACKAGE] = ACTIONS(3062), - [anon_sym_Private] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_PRIVATE] = ACTIONS(3062), - [anon_sym_Property] = ACTIONS(3062), - [anon_sym_property] = ACTIONS(3062), - [anon_sym_PROPERTY] = ACTIONS(3062), - [anon_sym_Public] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_PUBLIC] = ACTIONS(3062), - [anon_sym_Remote] = ACTIONS(3062), - [anon_sym_remote] = ACTIONS(3062), - [anon_sym_REMOTE] = ACTIONS(3062), - [anon_sym_Return] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_RETURN] = ACTIONS(3062), - [anon_sym_Static] = ACTIONS(3062), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_STATIC] = ACTIONS(3062), - [anon_sym_Switch] = ACTIONS(3062), - [anon_sym_switch] = ACTIONS(3062), - [anon_sym_SWITCH] = ACTIONS(3062), - [anon_sym_Throw] = ACTIONS(3062), - [anon_sym_throw] = ACTIONS(3062), - [anon_sym_THROW] = ACTIONS(3062), - [anon_sym_Try] = ACTIONS(3062), - [anon_sym_try] = ACTIONS(3062), - [anon_sym_TRY] = ACTIONS(3062), - [anon_sym_Var] = ACTIONS(3062), - [anon_sym_var] = ACTIONS(3062), - [anon_sym_VAR] = ACTIONS(3062), - [anon_sym_While] = ACTIONS(3062), - [anon_sym_while] = ACTIONS(3062), - [anon_sym_WHILE] = ACTIONS(3062), - [anon_sym_With] = ACTIONS(3062), - [anon_sym_with] = ACTIONS(3062), - [anon_sym_WITH] = ACTIONS(3062), - [sym_cf_comment] = ACTIONS(3060), - [sym__java_block_open] = ACTIONS(3060), - [sym__static_type_prefix] = ACTIONS(3060), + [STATE(973)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4772), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4575), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2401), + [sym_subscript_expression] = STATE(2401), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4575), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3443), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3443), + [sym_undefined] = STATE(3443), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4462), + [sym_rest_pattern] = STATE(4531), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_array_pattern_repeat1] = STATE(4816), + [sym_identifier] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_RBRACK] = ACTIONS(3394), + [anon_sym_Query] = ACTIONS(3360), + [anon_sym_query] = ACTIONS(3360), + [anon_sym_QUERY] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_QueryExecute] = ACTIONS(3368), + [anon_sym_queryexecute] = ACTIONS(3368), + [anon_sym_QUERYEXECUTE] = ACTIONS(3368), + [anon_sym_queryExecute] = ACTIONS(3368), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_ABSTRACT] = ACTIONS(3360), + [anon_sym_Component] = ACTIONS(3360), + [anon_sym_component] = ACTIONS(3360), + [anon_sym_COMPONENT] = ACTIONS(3360), + [anon_sym_Debugger] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_DEBUGGER] = ACTIONS(3360), + [anon_sym_Final] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_FINAL] = ACTIONS(3360), + [anon_sym_Function] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_FUNCTION] = ACTIONS(3370), + [anon_sym_Include] = ACTIONS(3360), + [anon_sym_include] = ACTIONS(3360), + [anon_sym_INCLUDE] = ACTIONS(3360), + [anon_sym_New] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_NEW] = ACTIONS(3372), + [anon_sym_Package] = ACTIONS(3360), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_PACKAGE] = ACTIONS(3360), + [anon_sym_Private] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_PRIVATE] = ACTIONS(3360), + [anon_sym_Public] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_PUBLIC] = ACTIONS(3360), + [anon_sym_Remote] = ACTIONS(3360), + [anon_sym_remote] = ACTIONS(3360), + [anon_sym_REMOTE] = ACTIONS(3360), + [anon_sym_Static] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_STATIC] = ACTIONS(3360), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(915)] = { - [ts_builtin_sym_end] = ACTIONS(2778), - [sym_identifier] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_Query] = ACTIONS(2780), - [anon_sym_query] = ACTIONS(2780), - [anon_sym_QUERY] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_SLASH] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2778), - [aux_sym_unary_operator_token1] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2778), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), + [STATE(974)] = { + [sym_statement_block] = STATE(815), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(975), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(975), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2780), - [aux_sym_number_token2] = ACTIONS(2778), - [anon_sym_This] = ACTIONS(2780), - [anon_sym_this] = ACTIONS(2780), - [anon_sym_THIS] = ACTIONS(2780), - [anon_sym_Super] = ACTIONS(2780), - [anon_sym_super] = ACTIONS(2780), - [anon_sym_SUPER] = ACTIONS(2780), - [anon_sym_True] = ACTIONS(2780), - [anon_sym_true] = ACTIONS(2780), - [anon_sym_TRUE] = ACTIONS(2780), - [anon_sym_False] = ACTIONS(2780), - [anon_sym_false] = ACTIONS(2780), - [anon_sym_FALSE] = ACTIONS(2780), - [anon_sym_Null] = ACTIONS(2780), - [anon_sym_null] = ACTIONS(2780), - [anon_sym_NULL] = ACTIONS(2780), - [anon_sym_Undefined] = ACTIONS(2780), - [anon_sym_undefined] = ACTIONS(2780), - [anon_sym_UNDEFINED] = ACTIONS(2780), - [anon_sym_get] = ACTIONS(2780), - [anon_sym_set] = ACTIONS(2780), - [anon_sym_POUND] = ACTIONS(2780), - [sym_hash_empty] = ACTIONS(2778), - [anon_sym_export] = ACTIONS(2780), - [anon_sym_QueryExecute] = ACTIONS(2780), - [anon_sym_queryexecute] = ACTIONS(2780), - [anon_sym_QUERYEXECUTE] = ACTIONS(2780), - [anon_sym_queryExecute] = ACTIONS(2780), - [anon_sym_BQUOTE] = ACTIONS(2780), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2778), - [anon_sym_Abstract] = ACTIONS(2780), - [anon_sym_abstract] = ACTIONS(2780), - [anon_sym_ABSTRACT] = ACTIONS(2780), - [anon_sym_Break] = ACTIONS(2780), - [anon_sym_break] = ACTIONS(2780), - [anon_sym_BREAK] = ACTIONS(2780), - [anon_sym_Case] = ACTIONS(2780), - [anon_sym_case] = ACTIONS(2780), - [anon_sym_CASE] = ACTIONS(2780), - [anon_sym_Component] = ACTIONS(2780), - [anon_sym_component] = ACTIONS(2780), - [anon_sym_COMPONENT] = ACTIONS(2780), - [anon_sym_Continue] = ACTIONS(2780), - [anon_sym_continue] = ACTIONS(2780), - [anon_sym_CONTINUE] = ACTIONS(2780), - [anon_sym_Debugger] = ACTIONS(2780), - [anon_sym_debugger] = ACTIONS(2780), - [anon_sym_DEBUGGER] = ACTIONS(2780), - [anon_sym_Default] = ACTIONS(2780), - [anon_sym_default] = ACTIONS(2780), - [anon_sym_DEFAULT] = ACTIONS(2780), - [anon_sym_Do] = ACTIONS(2780), - [anon_sym_do] = ACTIONS(2780), - [anon_sym_DO] = ACTIONS(2780), - [anon_sym_Final] = ACTIONS(2780), - [anon_sym_final] = ACTIONS(2780), - [anon_sym_FINAL] = ACTIONS(2780), - [anon_sym_For] = ACTIONS(2780), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_FOR] = ACTIONS(2780), - [anon_sym_Function] = ACTIONS(2780), - [anon_sym_function] = ACTIONS(2780), - [anon_sym_FUNCTION] = ACTIONS(2780), - [anon_sym_If] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_IF] = ACTIONS(2780), - [anon_sym_Import] = ACTIONS(2780), - [anon_sym_import] = ACTIONS(2780), - [anon_sym_IMPORT] = ACTIONS(2780), - [anon_sym_Include] = ACTIONS(2780), - [anon_sym_include] = ACTIONS(2780), - [anon_sym_INCLUDE] = ACTIONS(2780), - [anon_sym_Interface] = ACTIONS(2780), - [anon_sym_interface] = ACTIONS(2780), - [anon_sym_INTERFACE] = ACTIONS(2780), - [anon_sym_New] = ACTIONS(2780), - [anon_sym_new] = ACTIONS(2780), - [anon_sym_NEW] = ACTIONS(2780), - [anon_sym_Package] = ACTIONS(2780), - [anon_sym_package] = ACTIONS(2780), - [anon_sym_PACKAGE] = ACTIONS(2780), - [anon_sym_Private] = ACTIONS(2780), - [anon_sym_private] = ACTIONS(2780), - [anon_sym_PRIVATE] = ACTIONS(2780), - [anon_sym_Property] = ACTIONS(2780), - [anon_sym_property] = ACTIONS(2780), - [anon_sym_PROPERTY] = ACTIONS(2780), - [anon_sym_Public] = ACTIONS(2780), - [anon_sym_public] = ACTIONS(2780), - [anon_sym_PUBLIC] = ACTIONS(2780), - [anon_sym_Remote] = ACTIONS(2780), - [anon_sym_remote] = ACTIONS(2780), - [anon_sym_REMOTE] = ACTIONS(2780), - [anon_sym_Return] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_RETURN] = ACTIONS(2780), - [anon_sym_Static] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2780), - [anon_sym_STATIC] = ACTIONS(2780), - [anon_sym_Switch] = ACTIONS(2780), - [anon_sym_switch] = ACTIONS(2780), - [anon_sym_SWITCH] = ACTIONS(2780), - [anon_sym_Throw] = ACTIONS(2780), - [anon_sym_throw] = ACTIONS(2780), - [anon_sym_THROW] = ACTIONS(2780), - [anon_sym_Try] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [anon_sym_TRY] = ACTIONS(2780), - [anon_sym_Var] = ACTIONS(2780), - [anon_sym_var] = ACTIONS(2780), - [anon_sym_VAR] = ACTIONS(2780), - [anon_sym_While] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_WHILE] = ACTIONS(2780), - [anon_sym_With] = ACTIONS(2780), - [anon_sym_with] = ACTIONS(2780), - [anon_sym_WITH] = ACTIONS(2780), - [sym_cf_comment] = ACTIONS(2778), - [sym__java_block_open] = ACTIONS(2778), - [sym__static_type_prefix] = ACTIONS(2778), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3422), + [sym_tag_linefeed] = ACTIONS(3424), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(916)] = { - [ts_builtin_sym_end] = ACTIONS(3082), - [sym_identifier] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_Query] = ACTIONS(3084), - [anon_sym_query] = ACTIONS(3084), - [anon_sym_QUERY] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [aux_sym_unary_operator_token1] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), + [STATE(975)] = { + [sym_statement_block] = STATE(814), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3084), - [aux_sym_number_token2] = ACTIONS(3082), - [anon_sym_This] = ACTIONS(3084), - [anon_sym_this] = ACTIONS(3084), - [anon_sym_THIS] = ACTIONS(3084), - [anon_sym_Super] = ACTIONS(3084), - [anon_sym_super] = ACTIONS(3084), - [anon_sym_SUPER] = ACTIONS(3084), - [anon_sym_True] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3084), - [anon_sym_TRUE] = ACTIONS(3084), - [anon_sym_False] = ACTIONS(3084), - [anon_sym_false] = ACTIONS(3084), - [anon_sym_FALSE] = ACTIONS(3084), - [anon_sym_Null] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3084), - [anon_sym_NULL] = ACTIONS(3084), - [anon_sym_Undefined] = ACTIONS(3084), - [anon_sym_undefined] = ACTIONS(3084), - [anon_sym_UNDEFINED] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(3084), - [anon_sym_set] = ACTIONS(3084), - [anon_sym_POUND] = ACTIONS(3084), - [sym_hash_empty] = ACTIONS(3082), - [anon_sym_export] = ACTIONS(3084), - [anon_sym_QueryExecute] = ACTIONS(3084), - [anon_sym_queryexecute] = ACTIONS(3084), - [anon_sym_QUERYEXECUTE] = ACTIONS(3084), - [anon_sym_queryExecute] = ACTIONS(3084), - [anon_sym_BQUOTE] = ACTIONS(3084), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3082), - [anon_sym_Abstract] = ACTIONS(3084), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_ABSTRACT] = ACTIONS(3084), - [anon_sym_Break] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_BREAK] = ACTIONS(3084), - [anon_sym_Case] = ACTIONS(3084), - [anon_sym_case] = ACTIONS(3084), - [anon_sym_CASE] = ACTIONS(3084), - [anon_sym_Component] = ACTIONS(3084), - [anon_sym_component] = ACTIONS(3084), - [anon_sym_COMPONENT] = ACTIONS(3084), - [anon_sym_Continue] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_CONTINUE] = ACTIONS(3084), - [anon_sym_Debugger] = ACTIONS(3084), - [anon_sym_debugger] = ACTIONS(3084), - [anon_sym_DEBUGGER] = ACTIONS(3084), - [anon_sym_Default] = ACTIONS(3084), - [anon_sym_default] = ACTIONS(3084), - [anon_sym_DEFAULT] = ACTIONS(3084), - [anon_sym_Do] = ACTIONS(3084), - [anon_sym_do] = ACTIONS(3084), - [anon_sym_DO] = ACTIONS(3084), - [anon_sym_Final] = ACTIONS(3084), - [anon_sym_final] = ACTIONS(3084), - [anon_sym_FINAL] = ACTIONS(3084), - [anon_sym_For] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3084), - [anon_sym_FOR] = ACTIONS(3084), - [anon_sym_Function] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3084), - [anon_sym_FUNCTION] = ACTIONS(3084), - [anon_sym_If] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_IF] = ACTIONS(3084), - [anon_sym_Import] = ACTIONS(3084), - [anon_sym_import] = ACTIONS(3084), - [anon_sym_IMPORT] = ACTIONS(3084), - [anon_sym_Include] = ACTIONS(3084), - [anon_sym_include] = ACTIONS(3084), - [anon_sym_INCLUDE] = ACTIONS(3084), - [anon_sym_Interface] = ACTIONS(3084), - [anon_sym_interface] = ACTIONS(3084), - [anon_sym_INTERFACE] = ACTIONS(3084), - [anon_sym_New] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_NEW] = ACTIONS(3084), - [anon_sym_Package] = ACTIONS(3084), - [anon_sym_package] = ACTIONS(3084), - [anon_sym_PACKAGE] = ACTIONS(3084), - [anon_sym_Private] = ACTIONS(3084), - [anon_sym_private] = ACTIONS(3084), - [anon_sym_PRIVATE] = ACTIONS(3084), - [anon_sym_Property] = ACTIONS(3084), - [anon_sym_property] = ACTIONS(3084), - [anon_sym_PROPERTY] = ACTIONS(3084), - [anon_sym_Public] = ACTIONS(3084), - [anon_sym_public] = ACTIONS(3084), - [anon_sym_PUBLIC] = ACTIONS(3084), - [anon_sym_Remote] = ACTIONS(3084), - [anon_sym_remote] = ACTIONS(3084), - [anon_sym_REMOTE] = ACTIONS(3084), - [anon_sym_Return] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_RETURN] = ACTIONS(3084), - [anon_sym_Static] = ACTIONS(3084), - [anon_sym_static] = ACTIONS(3084), - [anon_sym_STATIC] = ACTIONS(3084), - [anon_sym_Switch] = ACTIONS(3084), - [anon_sym_switch] = ACTIONS(3084), - [anon_sym_SWITCH] = ACTIONS(3084), - [anon_sym_Throw] = ACTIONS(3084), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_THROW] = ACTIONS(3084), - [anon_sym_Try] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3084), - [anon_sym_TRY] = ACTIONS(3084), - [anon_sym_Var] = ACTIONS(3084), - [anon_sym_var] = ACTIONS(3084), - [anon_sym_VAR] = ACTIONS(3084), - [anon_sym_While] = ACTIONS(3084), - [anon_sym_while] = ACTIONS(3084), - [anon_sym_WHILE] = ACTIONS(3084), - [anon_sym_With] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3084), - [anon_sym_WITH] = ACTIONS(3084), - [sym_cf_comment] = ACTIONS(3082), - [sym__java_block_open] = ACTIONS(3082), - [sym__static_type_prefix] = ACTIONS(3082), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3428), + [sym_tag_linefeed] = ACTIONS(3430), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(917)] = { - [ts_builtin_sym_end] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_RBRACE] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_let] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_Query] = ACTIONS(2946), - [anon_sym_query] = ACTIONS(2946), - [anon_sym_QUERY] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [aux_sym_unary_operator_token1] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2946), - [aux_sym_number_token2] = ACTIONS(2944), - [anon_sym_This] = ACTIONS(2946), - [anon_sym_this] = ACTIONS(2946), - [anon_sym_THIS] = ACTIONS(2946), - [anon_sym_Super] = ACTIONS(2946), - [anon_sym_super] = ACTIONS(2946), - [anon_sym_SUPER] = ACTIONS(2946), - [anon_sym_True] = ACTIONS(2946), - [anon_sym_true] = ACTIONS(2946), - [anon_sym_TRUE] = ACTIONS(2946), - [anon_sym_False] = ACTIONS(2946), - [anon_sym_false] = ACTIONS(2946), - [anon_sym_FALSE] = ACTIONS(2946), - [anon_sym_Null] = ACTIONS(2946), - [anon_sym_null] = ACTIONS(2946), - [anon_sym_NULL] = ACTIONS(2946), - [anon_sym_Undefined] = ACTIONS(2946), - [anon_sym_undefined] = ACTIONS(2946), - [anon_sym_UNDEFINED] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(2946), - [sym_hash_empty] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_QueryExecute] = ACTIONS(2946), - [anon_sym_queryexecute] = ACTIONS(2946), - [anon_sym_QUERYEXECUTE] = ACTIONS(2946), - [anon_sym_queryExecute] = ACTIONS(2946), - [anon_sym_BQUOTE] = ACTIONS(2946), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2944), - [anon_sym_Abstract] = ACTIONS(2946), - [anon_sym_abstract] = ACTIONS(2946), - [anon_sym_ABSTRACT] = ACTIONS(2946), - [anon_sym_Break] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_BREAK] = ACTIONS(2946), - [anon_sym_Case] = ACTIONS(2946), - [anon_sym_case] = ACTIONS(2946), - [anon_sym_CASE] = ACTIONS(2946), - [anon_sym_Component] = ACTIONS(2946), - [anon_sym_component] = ACTIONS(2946), - [anon_sym_COMPONENT] = ACTIONS(2946), - [anon_sym_Continue] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_CONTINUE] = ACTIONS(2946), - [anon_sym_Debugger] = ACTIONS(2946), - [anon_sym_debugger] = ACTIONS(2946), - [anon_sym_DEBUGGER] = ACTIONS(2946), - [anon_sym_Default] = ACTIONS(2946), - [anon_sym_default] = ACTIONS(2946), - [anon_sym_DEFAULT] = ACTIONS(2946), - [anon_sym_Do] = ACTIONS(2946), - [anon_sym_do] = ACTIONS(2946), - [anon_sym_DO] = ACTIONS(2946), - [anon_sym_Final] = ACTIONS(2946), - [anon_sym_final] = ACTIONS(2946), - [anon_sym_FINAL] = ACTIONS(2946), - [anon_sym_For] = ACTIONS(2946), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_FOR] = ACTIONS(2946), - [anon_sym_Function] = ACTIONS(2946), - [anon_sym_function] = ACTIONS(2946), - [anon_sym_FUNCTION] = ACTIONS(2946), - [anon_sym_If] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_IF] = ACTIONS(2946), - [anon_sym_Import] = ACTIONS(2946), - [anon_sym_import] = ACTIONS(2946), - [anon_sym_IMPORT] = ACTIONS(2946), - [anon_sym_Include] = ACTIONS(2946), - [anon_sym_include] = ACTIONS(2946), - [anon_sym_INCLUDE] = ACTIONS(2946), - [anon_sym_Interface] = ACTIONS(2946), - [anon_sym_interface] = ACTIONS(2946), - [anon_sym_INTERFACE] = ACTIONS(2946), - [anon_sym_New] = ACTIONS(2946), - [anon_sym_new] = ACTIONS(2946), - [anon_sym_NEW] = ACTIONS(2946), - [anon_sym_Package] = ACTIONS(2946), - [anon_sym_package] = ACTIONS(2946), - [anon_sym_PACKAGE] = ACTIONS(2946), - [anon_sym_Private] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_PRIVATE] = ACTIONS(2946), - [anon_sym_Property] = ACTIONS(2946), - [anon_sym_property] = ACTIONS(2946), - [anon_sym_PROPERTY] = ACTIONS(2946), - [anon_sym_Public] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_PUBLIC] = ACTIONS(2946), - [anon_sym_Remote] = ACTIONS(2946), - [anon_sym_remote] = ACTIONS(2946), - [anon_sym_REMOTE] = ACTIONS(2946), - [anon_sym_Return] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_RETURN] = ACTIONS(2946), - [anon_sym_Static] = ACTIONS(2946), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_STATIC] = ACTIONS(2946), - [anon_sym_Switch] = ACTIONS(2946), - [anon_sym_switch] = ACTIONS(2946), - [anon_sym_SWITCH] = ACTIONS(2946), - [anon_sym_Throw] = ACTIONS(2946), - [anon_sym_throw] = ACTIONS(2946), - [anon_sym_THROW] = ACTIONS(2946), - [anon_sym_Try] = ACTIONS(2946), - [anon_sym_try] = ACTIONS(2946), - [anon_sym_TRY] = ACTIONS(2946), - [anon_sym_Var] = ACTIONS(2946), - [anon_sym_var] = ACTIONS(2946), - [anon_sym_VAR] = ACTIONS(2946), - [anon_sym_While] = ACTIONS(2946), - [anon_sym_while] = ACTIONS(2946), - [anon_sym_WHILE] = ACTIONS(2946), - [anon_sym_With] = ACTIONS(2946), - [anon_sym_with] = ACTIONS(2946), - [anon_sym_WITH] = ACTIONS(2946), - [sym_cf_comment] = ACTIONS(2944), - [sym__java_block_open] = ACTIONS(2944), - [sym__static_type_prefix] = ACTIONS(2944), + [STATE(976)] = { + [sym_statement_block] = STATE(799), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3432), + [sym_tag_linefeed] = ACTIONS(3434), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(918)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3428), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4749), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4749), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4753), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3178), - [anon_sym_EQ] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3182), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(977)] = { + [sym_statement_block] = STATE(567), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -183204,132 +191635,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3438), + [sym_tag_linefeed] = ACTIONS(3440), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(919)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3558), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3194), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(978)] = { + [sym_statement_block] = STATE(572), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(980), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(980), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -183348,132 +191771,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3378), + [sym_tag_linefeed] = ACTIONS(3382), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(920)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3194), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(979)] = { + [sym_statement_block] = STATE(573), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(981), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(981), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -183492,132 +191907,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3442), + [sym_tag_linefeed] = ACTIONS(3444), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(921)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3558), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4620), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4432), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4674), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(980)] = { + [sym_statement_block] = STATE(574), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -183636,132 +192043,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3446), + [sym_tag_linefeed] = ACTIONS(3448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(922)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4691), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4452), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4695), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(981)] = { + [sym_statement_block] = STATE(564), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3450), + [sym_tag_linefeed] = ACTIONS(3452), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(982)] = { + [sym_statement_block] = STATE(563), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(983), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(983), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -183780,132 +192315,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3454), + [sym_tag_linefeed] = ACTIONS(3456), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(923)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3558), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3200), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(983)] = { + [sym_statement_block] = STATE(570), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -183924,132 +192451,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3458), + [sym_tag_linefeed] = ACTIONS(3460), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(924)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3544), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4636), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4636), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4678), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3202), - [anon_sym_EQ] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3204), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(984)] = { + [sym_statement_block] = STATE(575), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(985), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(985), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -184068,132 +192587,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3462), + [sym_tag_linefeed] = ACTIONS(3464), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(925)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4620), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4432), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4674), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(985)] = { + [sym_statement_block] = STATE(578), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -184212,132 +192723,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3466), + [sym_tag_linefeed] = ACTIONS(3468), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(926)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3542), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4636), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4636), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4678), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3202), - [anon_sym_EQ] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3204), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(986)] = { + [sym_statement_block] = STATE(4147), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -184356,132 +192859,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3470), + [sym_tag_linefeed] = ACTIONS(3472), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(927)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), + [STATE(987)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(4939), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4575), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2401), + [sym_subscript_expression] = STATE(2401), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4575), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3443), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3443), + [sym_undefined] = STATE(3443), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4738), + [sym_rest_pattern] = STATE(4531), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3474), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3200), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_RBRACK] = ACTIONS(3474), + [anon_sym_Query] = ACTIONS(3360), + [anon_sym_query] = ACTIONS(3360), + [anon_sym_QUERY] = ACTIONS(3360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3366), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -184500,132 +192997,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3360), + [anon_sym_QueryExecute] = ACTIONS(3368), + [anon_sym_queryexecute] = ACTIONS(3368), + [anon_sym_QUERYEXECUTE] = ACTIONS(3368), + [anon_sym_queryExecute] = ACTIONS(3368), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(3360), + [anon_sym_abstract] = ACTIONS(3360), + [anon_sym_ABSTRACT] = ACTIONS(3360), + [anon_sym_Component] = ACTIONS(3360), + [anon_sym_component] = ACTIONS(3360), + [anon_sym_COMPONENT] = ACTIONS(3360), + [anon_sym_Debugger] = ACTIONS(3360), + [anon_sym_debugger] = ACTIONS(3360), + [anon_sym_DEBUGGER] = ACTIONS(3360), + [anon_sym_Final] = ACTIONS(3360), + [anon_sym_final] = ACTIONS(3360), + [anon_sym_FINAL] = ACTIONS(3360), + [anon_sym_Function] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_FUNCTION] = ACTIONS(3370), + [anon_sym_Include] = ACTIONS(3360), + [anon_sym_include] = ACTIONS(3360), + [anon_sym_INCLUDE] = ACTIONS(3360), + [anon_sym_New] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_NEW] = ACTIONS(3372), + [anon_sym_Package] = ACTIONS(3360), + [anon_sym_package] = ACTIONS(3360), + [anon_sym_PACKAGE] = ACTIONS(3360), + [anon_sym_Private] = ACTIONS(3360), + [anon_sym_private] = ACTIONS(3360), + [anon_sym_PRIVATE] = ACTIONS(3360), + [anon_sym_Public] = ACTIONS(3360), + [anon_sym_public] = ACTIONS(3360), + [anon_sym_PUBLIC] = ACTIONS(3360), + [anon_sym_Remote] = ACTIONS(3360), + [anon_sym_remote] = ACTIONS(3360), + [anon_sym_REMOTE] = ACTIONS(3360), + [anon_sym_Static] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_STATIC] = ACTIONS(3360), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(928)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3208), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(988)] = { + [sym_statement_block] = STATE(807), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(989), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(989), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -184644,132 +193131,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3476), + [sym_tag_linefeed] = ACTIONS(3478), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(929)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3210), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(989)] = { + [sym_statement_block] = STATE(809), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -184788,132 +193267,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3480), + [sym_tag_linefeed] = ACTIONS(3482), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(930)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3577), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4693), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4693), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4694), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3214), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(990)] = { + [sym_statement_block] = STATE(801), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(991), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(991), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -184932,132 +193403,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3484), + [sym_tag_linefeed] = ACTIONS(3486), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(931)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3216), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(991)] = { + [sym_statement_block] = STATE(797), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -185076,132 +193539,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3488), + [sym_tag_linefeed] = ACTIONS(3490), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(932)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3456), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4598), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4598), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4599), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3218), - [anon_sym_EQ] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3220), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(992)] = { + [sym_statement_block] = STATE(812), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(976), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(976), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -185220,132 +193675,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3492), + [sym_tag_linefeed] = ACTIONS(3494), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(933)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3550), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4713), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4713), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4714), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3222), - [anon_sym_EQ] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3224), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(993)] = { + [sym_statement_block] = STATE(4143), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -185364,132 +193811,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3496), + [sym_tag_linefeed] = ACTIONS(3498), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(934)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4691), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4452), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4695), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3226), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(994)] = { + [sym_statement_block] = STATE(4151), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(996), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(996), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -185508,132 +193947,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3418), + [sym_tag_linefeed] = ACTIONS(3420), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(935)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3508), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4766), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4766), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4770), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3228), - [anon_sym_EQ] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3230), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(995)] = { + [sym_statement_block] = STATE(4167), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(997), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(997), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -185652,132 +194083,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3500), + [sym_tag_linefeed] = ACTIONS(3502), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(936)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4620), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(4658), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4432), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(4658), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_repeat1] = STATE(4671), - [aux_sym_array_pattern_repeat1] = STATE(4674), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_COLON] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(996)] = { + [sym_statement_block] = STATE(4172), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -185796,128 +194219,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3504), + [sym_tag_linefeed] = ACTIONS(3506), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(937)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3618), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4868), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_spread_element] = STATE(5043), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3023), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3023), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4720), - [sym_rest_pattern] = STATE(4411), - [sym_pair] = STATE(5043), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3172), - [anon_sym_COMMA] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_RBRACK] = ACTIONS(3232), - [anon_sym_Query] = ACTIONS(3176), - [anon_sym_query] = ACTIONS(3176), - [anon_sym_QUERY] = ACTIONS(3176), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [STATE(997)] = { + [sym_statement_block] = STATE(4183), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -185936,541 +194355,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_QueryExecute] = ACTIONS(3186), - [anon_sym_queryexecute] = ACTIONS(3186), - [anon_sym_QUERYEXECUTE] = ACTIONS(3186), - [anon_sym_queryExecute] = ACTIONS(3186), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_ABSTRACT] = ACTIONS(3176), - [anon_sym_Component] = ACTIONS(3176), - [anon_sym_component] = ACTIONS(3176), - [anon_sym_COMPONENT] = ACTIONS(3176), - [anon_sym_Debugger] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_DEBUGGER] = ACTIONS(3176), - [anon_sym_Final] = ACTIONS(3176), - [anon_sym_final] = ACTIONS(3176), - [anon_sym_FINAL] = ACTIONS(3176), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3176), - [anon_sym_include] = ACTIONS(3176), - [anon_sym_INCLUDE] = ACTIONS(3176), - [anon_sym_New] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_NEW] = ACTIONS(3190), - [anon_sym_Package] = ACTIONS(3176), - [anon_sym_package] = ACTIONS(3176), - [anon_sym_PACKAGE] = ACTIONS(3176), - [anon_sym_Private] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_PRIVATE] = ACTIONS(3176), - [anon_sym_Public] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_PUBLIC] = ACTIONS(3176), - [anon_sym_Remote] = ACTIONS(3176), - [anon_sym_remote] = ACTIONS(3176), - [anon_sym_REMOTE] = ACTIONS(3176), - [anon_sym_Static] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_STATIC] = ACTIONS(3176), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3508), + [sym_tag_linefeed] = ACTIONS(3510), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(938)] = { - [ts_builtin_sym_end] = ACTIONS(3235), - [sym_identifier] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_Query] = ACTIONS(3237), - [anon_sym_query] = ACTIONS(3237), - [anon_sym_QUERY] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [aux_sym_unary_operator_token1] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3237), - [aux_sym_number_token2] = ACTIONS(3235), - [anon_sym_This] = ACTIONS(3237), - [anon_sym_this] = ACTIONS(3237), - [anon_sym_THIS] = ACTIONS(3237), - [anon_sym_Super] = ACTIONS(3237), - [anon_sym_super] = ACTIONS(3237), - [anon_sym_SUPER] = ACTIONS(3237), - [anon_sym_True] = ACTIONS(3237), - [anon_sym_true] = ACTIONS(3237), - [anon_sym_TRUE] = ACTIONS(3237), - [anon_sym_False] = ACTIONS(3237), - [anon_sym_false] = ACTIONS(3237), - [anon_sym_FALSE] = ACTIONS(3237), - [anon_sym_Null] = ACTIONS(3237), - [anon_sym_null] = ACTIONS(3237), - [anon_sym_NULL] = ACTIONS(3237), - [anon_sym_Undefined] = ACTIONS(3237), - [anon_sym_undefined] = ACTIONS(3237), - [anon_sym_UNDEFINED] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_POUND] = ACTIONS(3237), - [sym_hash_empty] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_QueryExecute] = ACTIONS(3237), - [anon_sym_queryexecute] = ACTIONS(3237), - [anon_sym_QUERYEXECUTE] = ACTIONS(3237), - [anon_sym_queryExecute] = ACTIONS(3237), - [anon_sym_BQUOTE] = ACTIONS(3237), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3235), - [anon_sym_Abstract] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_ABSTRACT] = ACTIONS(3237), - [anon_sym_Break] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_BREAK] = ACTIONS(3237), - [anon_sym_Component] = ACTIONS(3237), - [anon_sym_component] = ACTIONS(3237), - [anon_sym_COMPONENT] = ACTIONS(3237), - [anon_sym_Continue] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_CONTINUE] = ACTIONS(3237), - [anon_sym_Debugger] = ACTIONS(3237), - [anon_sym_debugger] = ACTIONS(3237), - [anon_sym_DEBUGGER] = ACTIONS(3237), - [anon_sym_Do] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_DO] = ACTIONS(3237), - [anon_sym_Final] = ACTIONS(3237), - [anon_sym_final] = ACTIONS(3237), - [anon_sym_FINAL] = ACTIONS(3237), - [anon_sym_For] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_FOR] = ACTIONS(3237), - [anon_sym_Function] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_FUNCTION] = ACTIONS(3237), - [anon_sym_If] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_IF] = ACTIONS(3237), - [anon_sym_Import] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_IMPORT] = ACTIONS(3237), - [anon_sym_Include] = ACTIONS(3237), - [anon_sym_include] = ACTIONS(3237), - [anon_sym_INCLUDE] = ACTIONS(3237), - [anon_sym_Interface] = ACTIONS(3237), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_INTERFACE] = ACTIONS(3237), - [anon_sym_New] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_NEW] = ACTIONS(3237), - [anon_sym_Package] = ACTIONS(3237), - [anon_sym_package] = ACTIONS(3237), - [anon_sym_PACKAGE] = ACTIONS(3237), - [anon_sym_Private] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_PRIVATE] = ACTIONS(3237), - [anon_sym_Property] = ACTIONS(3237), - [anon_sym_property] = ACTIONS(3237), - [anon_sym_PROPERTY] = ACTIONS(3237), - [anon_sym_Public] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_PUBLIC] = ACTIONS(3237), - [anon_sym_Remote] = ACTIONS(3237), - [anon_sym_remote] = ACTIONS(3237), - [anon_sym_REMOTE] = ACTIONS(3237), - [anon_sym_Return] = ACTIONS(3237), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_RETURN] = ACTIONS(3237), - [anon_sym_Static] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_STATIC] = ACTIONS(3237), - [anon_sym_Switch] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_SWITCH] = ACTIONS(3237), - [anon_sym_Throw] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_THROW] = ACTIONS(3237), - [anon_sym_Try] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_TRY] = ACTIONS(3237), - [anon_sym_Var] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [anon_sym_VAR] = ACTIONS(3237), - [anon_sym_While] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_WHILE] = ACTIONS(3237), - [anon_sym_With] = ACTIONS(3237), - [anon_sym_with] = ACTIONS(3237), - [anon_sym_WITH] = ACTIONS(3237), - [sym_cf_comment] = ACTIONS(3235), - [sym__java_block_open] = ACTIONS(3235), - [sym__static_type_prefix] = ACTIONS(3235), - }, - [STATE(939)] = { - [sym_identifier] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_Query] = ACTIONS(3239), - [anon_sym_query] = ACTIONS(3239), - [anon_sym_QUERY] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_unary_operator_token1] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3239), - [aux_sym_number_token2] = ACTIONS(3241), - [anon_sym_This] = ACTIONS(3239), - [anon_sym_this] = ACTIONS(3239), - [anon_sym_THIS] = ACTIONS(3239), - [anon_sym_Super] = ACTIONS(3239), - [anon_sym_super] = ACTIONS(3239), - [anon_sym_SUPER] = ACTIONS(3239), - [anon_sym_True] = ACTIONS(3239), - [anon_sym_true] = ACTIONS(3239), - [anon_sym_TRUE] = ACTIONS(3239), - [anon_sym_False] = ACTIONS(3239), - [anon_sym_false] = ACTIONS(3239), - [anon_sym_FALSE] = ACTIONS(3239), - [anon_sym_Null] = ACTIONS(3239), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_NULL] = ACTIONS(3239), - [anon_sym_Undefined] = ACTIONS(3239), - [anon_sym_undefined] = ACTIONS(3239), - [anon_sym_UNDEFINED] = ACTIONS(3239), - [anon_sym_get] = ACTIONS(3239), - [anon_sym_set] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(3239), - [sym_hash_empty] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_QueryExecute] = ACTIONS(3239), - [anon_sym_queryexecute] = ACTIONS(3239), - [anon_sym_QUERYEXECUTE] = ACTIONS(3239), - [anon_sym_queryExecute] = ACTIONS(3239), - [anon_sym_BQUOTE] = ACTIONS(3239), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3241), - [anon_sym_Abstract] = ACTIONS(3239), - [anon_sym_abstract] = ACTIONS(3239), - [anon_sym_ABSTRACT] = ACTIONS(3239), - [anon_sym_Break] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_BREAK] = ACTIONS(3239), - [anon_sym_Component] = ACTIONS(3239), - [anon_sym_component] = ACTIONS(3239), - [anon_sym_COMPONENT] = ACTIONS(3239), - [anon_sym_Continue] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_CONTINUE] = ACTIONS(3239), - [anon_sym_Debugger] = ACTIONS(3239), - [anon_sym_debugger] = ACTIONS(3239), - [anon_sym_DEBUGGER] = ACTIONS(3239), - [anon_sym_Do] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_DO] = ACTIONS(3239), - [anon_sym_Final] = ACTIONS(3239), - [anon_sym_final] = ACTIONS(3239), - [anon_sym_FINAL] = ACTIONS(3239), - [anon_sym_For] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_FOR] = ACTIONS(3239), - [anon_sym_Function] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_FUNCTION] = ACTIONS(3239), - [anon_sym_If] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_IF] = ACTIONS(3239), - [anon_sym_Import] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_IMPORT] = ACTIONS(3239), - [anon_sym_Include] = ACTIONS(3239), - [anon_sym_include] = ACTIONS(3239), - [anon_sym_INCLUDE] = ACTIONS(3239), - [anon_sym_Interface] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_INTERFACE] = ACTIONS(3239), - [anon_sym_New] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_NEW] = ACTIONS(3239), - [anon_sym_Package] = ACTIONS(3239), - [anon_sym_package] = ACTIONS(3239), - [anon_sym_PACKAGE] = ACTIONS(3239), - [anon_sym_Private] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_PRIVATE] = ACTIONS(3239), - [anon_sym_Property] = ACTIONS(3239), - [anon_sym_property] = ACTIONS(3239), - [anon_sym_PROPERTY] = ACTIONS(3239), - [anon_sym_Public] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_PUBLIC] = ACTIONS(3239), - [anon_sym_Remote] = ACTIONS(3239), - [anon_sym_remote] = ACTIONS(3239), - [anon_sym_REMOTE] = ACTIONS(3239), - [anon_sym_Return] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_RETURN] = ACTIONS(3239), - [anon_sym_Static] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_STATIC] = ACTIONS(3239), - [anon_sym_Switch] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_SWITCH] = ACTIONS(3239), - [anon_sym_Throw] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_THROW] = ACTIONS(3239), - [anon_sym_Try] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_TRY] = ACTIONS(3239), - [anon_sym_Var] = ACTIONS(3239), - [anon_sym_var] = ACTIONS(3239), - [anon_sym_VAR] = ACTIONS(3239), - [anon_sym_While] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_WHILE] = ACTIONS(3239), - [anon_sym_With] = ACTIONS(3239), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_WITH] = ACTIONS(3239), - [sym_cf_comment] = ACTIONS(3241), - [sym__java_block_open] = ACTIONS(3241), - [sym__static_type_prefix] = ACTIONS(3241), - }, - [STATE(940)] = { - [sym_identifier] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_Query] = ACTIONS(3243), - [anon_sym_query] = ACTIONS(3243), - [anon_sym_QUERY] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [aux_sym_unary_operator_token1] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3243), - [aux_sym_number_token2] = ACTIONS(3245), - [anon_sym_This] = ACTIONS(3243), - [anon_sym_this] = ACTIONS(3243), - [anon_sym_THIS] = ACTIONS(3243), - [anon_sym_Super] = ACTIONS(3243), - [anon_sym_super] = ACTIONS(3243), - [anon_sym_SUPER] = ACTIONS(3243), - [anon_sym_True] = ACTIONS(3243), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_TRUE] = ACTIONS(3243), - [anon_sym_False] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_FALSE] = ACTIONS(3243), - [anon_sym_Null] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3243), - [anon_sym_NULL] = ACTIONS(3243), - [anon_sym_Undefined] = ACTIONS(3243), - [anon_sym_undefined] = ACTIONS(3243), - [anon_sym_UNDEFINED] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_POUND] = ACTIONS(3243), - [sym_hash_empty] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_QueryExecute] = ACTIONS(3243), - [anon_sym_queryexecute] = ACTIONS(3243), - [anon_sym_QUERYEXECUTE] = ACTIONS(3243), - [anon_sym_queryExecute] = ACTIONS(3243), - [anon_sym_BQUOTE] = ACTIONS(3243), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3245), - [anon_sym_Abstract] = ACTIONS(3243), - [anon_sym_abstract] = ACTIONS(3243), - [anon_sym_ABSTRACT] = ACTIONS(3243), - [anon_sym_Break] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_BREAK] = ACTIONS(3243), - [anon_sym_Component] = ACTIONS(3243), - [anon_sym_component] = ACTIONS(3243), - [anon_sym_COMPONENT] = ACTIONS(3243), - [anon_sym_Continue] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_CONTINUE] = ACTIONS(3243), - [anon_sym_Debugger] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_DEBUGGER] = ACTIONS(3243), - [anon_sym_Do] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_DO] = ACTIONS(3243), - [anon_sym_Final] = ACTIONS(3243), - [anon_sym_final] = ACTIONS(3243), - [anon_sym_FINAL] = ACTIONS(3243), - [anon_sym_For] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_FOR] = ACTIONS(3243), - [anon_sym_Function] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_FUNCTION] = ACTIONS(3243), - [anon_sym_If] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_IF] = ACTIONS(3243), - [anon_sym_Import] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_IMPORT] = ACTIONS(3243), - [anon_sym_Include] = ACTIONS(3243), - [anon_sym_include] = ACTIONS(3243), - [anon_sym_INCLUDE] = ACTIONS(3243), - [anon_sym_Interface] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_INTERFACE] = ACTIONS(3243), - [anon_sym_New] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_NEW] = ACTIONS(3243), - [anon_sym_Package] = ACTIONS(3243), - [anon_sym_package] = ACTIONS(3243), - [anon_sym_PACKAGE] = ACTIONS(3243), - [anon_sym_Private] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_PRIVATE] = ACTIONS(3243), - [anon_sym_Property] = ACTIONS(3243), - [anon_sym_property] = ACTIONS(3243), - [anon_sym_PROPERTY] = ACTIONS(3243), - [anon_sym_Public] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_PUBLIC] = ACTIONS(3243), - [anon_sym_Remote] = ACTIONS(3243), - [anon_sym_remote] = ACTIONS(3243), - [anon_sym_REMOTE] = ACTIONS(3243), - [anon_sym_Return] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_RETURN] = ACTIONS(3243), - [anon_sym_Static] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_STATIC] = ACTIONS(3243), - [anon_sym_Switch] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_SWITCH] = ACTIONS(3243), - [anon_sym_Throw] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_THROW] = ACTIONS(3243), - [anon_sym_Try] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_TRY] = ACTIONS(3243), - [anon_sym_Var] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_VAR] = ACTIONS(3243), - [anon_sym_While] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_WHILE] = ACTIONS(3243), - [anon_sym_With] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_WITH] = ACTIONS(3243), - [sym_cf_comment] = ACTIONS(3245), - [sym__java_block_open] = ACTIONS(3245), - [sym__static_type_prefix] = ACTIONS(3245), - }, - [STATE(941)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3540), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4647), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4647), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2635), - [sym_hash_expression] = STATE(2635), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4648), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [STATE(998)] = { + [sym_statement_block] = STATE(4107), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(999), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(999), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -186489,264 +194491,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3512), + [sym_tag_linefeed] = ACTIONS(3514), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(942)] = { - [sym_import_statement] = STATE(942), - [sym_tag_statement] = STATE(942), - [aux_sym_program_repeat1] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_Query] = ACTIONS(3270), - [anon_sym_query] = ACTIONS(3270), - [anon_sym_QUERY] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3265), - [aux_sym_unary_operator_token1] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_SQUOTE] = ACTIONS(3265), - [sym_comment] = ACTIONS(3272), - [aux_sym_number_token1] = ACTIONS(3270), - [aux_sym_number_token2] = ACTIONS(3265), - [anon_sym_This] = ACTIONS(3270), - [anon_sym_this] = ACTIONS(3270), - [anon_sym_THIS] = ACTIONS(3270), - [anon_sym_Super] = ACTIONS(3270), - [anon_sym_super] = ACTIONS(3270), - [anon_sym_SUPER] = ACTIONS(3270), - [anon_sym_True] = ACTIONS(3270), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_TRUE] = ACTIONS(3270), - [anon_sym_False] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_FALSE] = ACTIONS(3270), - [anon_sym_Null] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_Undefined] = ACTIONS(3270), - [anon_sym_undefined] = ACTIONS(3270), - [anon_sym_UNDEFINED] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_POUND] = ACTIONS(3270), - [sym_hash_empty] = ACTIONS(3265), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_QueryExecute] = ACTIONS(3270), - [anon_sym_queryexecute] = ACTIONS(3270), - [anon_sym_QUERYEXECUTE] = ACTIONS(3270), - [anon_sym_queryExecute] = ACTIONS(3270), - [anon_sym_BQUOTE] = ACTIONS(3270), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3265), - [anon_sym_Abstract] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_ABSTRACT] = ACTIONS(3270), - [anon_sym_Break] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_BREAK] = ACTIONS(3270), - [anon_sym_Component] = ACTIONS(3270), - [anon_sym_component] = ACTIONS(3270), - [anon_sym_COMPONENT] = ACTIONS(3270), - [anon_sym_Continue] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_CONTINUE] = ACTIONS(3270), - [anon_sym_Debugger] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_DEBUGGER] = ACTIONS(3270), - [anon_sym_Do] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_DO] = ACTIONS(3270), - [anon_sym_Final] = ACTIONS(3270), - [anon_sym_final] = ACTIONS(3270), - [anon_sym_FINAL] = ACTIONS(3270), - [anon_sym_For] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_FOR] = ACTIONS(3270), - [anon_sym_Function] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_FUNCTION] = ACTIONS(3270), - [anon_sym_If] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_IF] = ACTIONS(3270), - [anon_sym_Import] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_IMPORT] = ACTIONS(3275), - [anon_sym_Include] = ACTIONS(3270), - [anon_sym_include] = ACTIONS(3270), - [anon_sym_INCLUDE] = ACTIONS(3270), - [anon_sym_Interface] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_INTERFACE] = ACTIONS(3270), - [anon_sym_New] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_NEW] = ACTIONS(3270), - [anon_sym_Package] = ACTIONS(3270), - [anon_sym_package] = ACTIONS(3270), - [anon_sym_PACKAGE] = ACTIONS(3270), - [anon_sym_Private] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_PRIVATE] = ACTIONS(3270), - [anon_sym_Public] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_PUBLIC] = ACTIONS(3270), - [anon_sym_Remote] = ACTIONS(3270), - [anon_sym_remote] = ACTIONS(3270), - [anon_sym_REMOTE] = ACTIONS(3270), - [anon_sym_Return] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_RETURN] = ACTIONS(3270), - [anon_sym_Static] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_STATIC] = ACTIONS(3270), - [anon_sym_Switch] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_SWITCH] = ACTIONS(3270), - [anon_sym_Throw] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_THROW] = ACTIONS(3270), - [anon_sym_Try] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_TRY] = ACTIONS(3270), - [anon_sym_Var] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_VAR] = ACTIONS(3270), - [anon_sym_While] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_WHILE] = ACTIONS(3270), - [anon_sym_With] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_WITH] = ACTIONS(3270), - [sym_cf_comment] = ACTIONS(3265), - [sym__java_block_open] = ACTIONS(3265), - [sym__static_type_prefix] = ACTIONS(3265), - }, - [STATE(943)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3548), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4760), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4760), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2718), - [sym_hash_expression] = STATE(2718), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4763), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [STATE(999)] = { + [sym_statement_block] = STATE(4130), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -186765,126 +194627,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3280), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3516), + [sym_tag_linefeed] = ACTIONS(3518), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(944)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3531), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4605), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4605), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2715), - [sym_hash_expression] = STATE(2715), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4607), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [STATE(1000)] = { + [sym_statement_block] = STATE(4141), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(986), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(986), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -186903,264 +194763,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3520), + [sym_tag_linefeed] = ACTIONS(3522), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(945)] = { - [sym_identifier] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_Query] = ACTIONS(3286), - [anon_sym_query] = ACTIONS(3286), - [anon_sym_QUERY] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [aux_sym_unary_operator_token1] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3286), - [aux_sym_number_token2] = ACTIONS(3288), - [anon_sym_This] = ACTIONS(3286), - [anon_sym_this] = ACTIONS(3286), - [anon_sym_THIS] = ACTIONS(3286), - [anon_sym_Super] = ACTIONS(3286), - [anon_sym_super] = ACTIONS(3286), - [anon_sym_SUPER] = ACTIONS(3286), - [anon_sym_True] = ACTIONS(3286), - [anon_sym_true] = ACTIONS(3286), - [anon_sym_TRUE] = ACTIONS(3286), - [anon_sym_False] = ACTIONS(3286), - [anon_sym_false] = ACTIONS(3286), - [anon_sym_FALSE] = ACTIONS(3286), - [anon_sym_Null] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3286), - [anon_sym_NULL] = ACTIONS(3286), - [anon_sym_Undefined] = ACTIONS(3286), - [anon_sym_undefined] = ACTIONS(3286), - [anon_sym_UNDEFINED] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_POUND] = ACTIONS(3286), - [sym_hash_empty] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_QueryExecute] = ACTIONS(3286), - [anon_sym_queryexecute] = ACTIONS(3286), - [anon_sym_QUERYEXECUTE] = ACTIONS(3286), - [anon_sym_queryExecute] = ACTIONS(3286), - [anon_sym_BQUOTE] = ACTIONS(3286), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3288), - [anon_sym_Abstract] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_ABSTRACT] = ACTIONS(3286), - [anon_sym_Break] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_BREAK] = ACTIONS(3286), - [anon_sym_Component] = ACTIONS(3286), - [anon_sym_component] = ACTIONS(3286), - [anon_sym_COMPONENT] = ACTIONS(3286), - [anon_sym_Continue] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_CONTINUE] = ACTIONS(3286), - [anon_sym_Debugger] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_DEBUGGER] = ACTIONS(3286), - [anon_sym_Do] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_DO] = ACTIONS(3286), - [anon_sym_Final] = ACTIONS(3286), - [anon_sym_final] = ACTIONS(3286), - [anon_sym_FINAL] = ACTIONS(3286), - [anon_sym_For] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_FOR] = ACTIONS(3286), - [anon_sym_Function] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_FUNCTION] = ACTIONS(3286), - [anon_sym_If] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_IF] = ACTIONS(3286), - [anon_sym_Import] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_IMPORT] = ACTIONS(3286), - [anon_sym_Include] = ACTIONS(3286), - [anon_sym_include] = ACTIONS(3286), - [anon_sym_INCLUDE] = ACTIONS(3286), - [anon_sym_Interface] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_INTERFACE] = ACTIONS(3286), - [anon_sym_New] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_NEW] = ACTIONS(3286), - [anon_sym_Package] = ACTIONS(3286), - [anon_sym_package] = ACTIONS(3286), - [anon_sym_PACKAGE] = ACTIONS(3286), - [anon_sym_Private] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_PRIVATE] = ACTIONS(3286), - [anon_sym_Property] = ACTIONS(3286), - [anon_sym_property] = ACTIONS(3286), - [anon_sym_PROPERTY] = ACTIONS(3286), - [anon_sym_Public] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_PUBLIC] = ACTIONS(3286), - [anon_sym_Remote] = ACTIONS(3286), - [anon_sym_remote] = ACTIONS(3286), - [anon_sym_REMOTE] = ACTIONS(3286), - [anon_sym_Return] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_RETURN] = ACTIONS(3286), - [anon_sym_Static] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_STATIC] = ACTIONS(3286), - [anon_sym_Switch] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_SWITCH] = ACTIONS(3286), - [anon_sym_Throw] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_THROW] = ACTIONS(3286), - [anon_sym_Try] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_TRY] = ACTIONS(3286), - [anon_sym_Var] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_VAR] = ACTIONS(3286), - [anon_sym_While] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_WHILE] = ACTIONS(3286), - [anon_sym_With] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_WITH] = ACTIONS(3286), - [sym_cf_comment] = ACTIONS(3288), - [sym__java_block_open] = ACTIONS(3288), - [sym__static_type_prefix] = ACTIONS(3288), - }, - [STATE(946)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3499), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4567), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4567), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2700), - [sym_hash_expression] = STATE(2700), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4568), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [STATE(1001)] = { + [sym_statement_block] = STATE(805), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -187179,126 +194899,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3524), + [sym_tag_linefeed] = ACTIONS(3526), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(947)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3512), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4699), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4699), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2750), - [sym_hash_expression] = STATE(2750), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4562), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3294), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [STATE(1002)] = { + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_Query] = ACTIONS(2964), + [anon_sym_query] = ACTIONS(2964), + [anon_sym_QUERY] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [aux_sym_unary_operator_token1] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_SQUOTE] = ACTIONS(2962), + [sym_comment] = ACTIONS(2962), + [aux_sym_number_token1] = ACTIONS(2964), + [aux_sym_number_token2] = ACTIONS(2962), + [anon_sym_This] = ACTIONS(2964), + [anon_sym_this] = ACTIONS(2964), + [anon_sym_THIS] = ACTIONS(2964), + [anon_sym_Super] = ACTIONS(2964), + [anon_sym_super] = ACTIONS(2964), + [anon_sym_SUPER] = ACTIONS(2964), + [anon_sym_True] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2964), + [anon_sym_TRUE] = ACTIONS(2964), + [anon_sym_False] = ACTIONS(2964), + [anon_sym_false] = ACTIONS(2964), + [anon_sym_FALSE] = ACTIONS(2964), + [anon_sym_Null] = ACTIONS(2964), + [anon_sym_null] = ACTIONS(2964), + [anon_sym_NULL] = ACTIONS(2964), + [anon_sym_Undefined] = ACTIONS(2964), + [anon_sym_undefined] = ACTIONS(2964), + [anon_sym_UNDEFINED] = ACTIONS(2964), + [anon_sym_get] = ACTIONS(2964), + [anon_sym_set] = ACTIONS(2964), + [anon_sym_POUND] = ACTIONS(2964), + [sym_hash_empty] = ACTIONS(2962), + [anon_sym_export] = ACTIONS(2964), + [anon_sym_QueryExecute] = ACTIONS(2964), + [anon_sym_queryexecute] = ACTIONS(2964), + [anon_sym_QUERYEXECUTE] = ACTIONS(2964), + [anon_sym_queryExecute] = ACTIONS(2964), + [anon_sym_BQUOTE] = ACTIONS(2964), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2962), + [anon_sym_Abstract] = ACTIONS(2964), + [anon_sym_abstract] = ACTIONS(2964), + [anon_sym_ABSTRACT] = ACTIONS(2964), + [anon_sym_Break] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2964), + [anon_sym_BREAK] = ACTIONS(2964), + [anon_sym_Component] = ACTIONS(2964), + [anon_sym_component] = ACTIONS(2964), + [anon_sym_COMPONENT] = ACTIONS(2964), + [anon_sym_Continue] = ACTIONS(2964), + [anon_sym_continue] = ACTIONS(2964), + [anon_sym_CONTINUE] = ACTIONS(2964), + [anon_sym_Debugger] = ACTIONS(2964), + [anon_sym_debugger] = ACTIONS(2964), + [anon_sym_DEBUGGER] = ACTIONS(2964), + [anon_sym_Do] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_DO] = ACTIONS(2964), + [anon_sym_Final] = ACTIONS(2964), + [anon_sym_final] = ACTIONS(2964), + [anon_sym_FINAL] = ACTIONS(2964), + [anon_sym_For] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_FOR] = ACTIONS(2964), + [anon_sym_Function] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_FUNCTION] = ACTIONS(2964), + [anon_sym_If] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_IF] = ACTIONS(2964), + [anon_sym_Import] = ACTIONS(2964), + [anon_sym_import] = ACTIONS(2964), + [anon_sym_IMPORT] = ACTIONS(2964), + [anon_sym_Include] = ACTIONS(2964), + [anon_sym_include] = ACTIONS(2964), + [anon_sym_INCLUDE] = ACTIONS(2964), + [anon_sym_Interface] = ACTIONS(2964), + [anon_sym_interface] = ACTIONS(2964), + [anon_sym_INTERFACE] = ACTIONS(2964), + [anon_sym_New] = ACTIONS(2964), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_NEW] = ACTIONS(2964), + [anon_sym_Package] = ACTIONS(2964), + [anon_sym_package] = ACTIONS(2964), + [anon_sym_PACKAGE] = ACTIONS(2964), + [anon_sym_Private] = ACTIONS(2964), + [anon_sym_private] = ACTIONS(2964), + [anon_sym_PRIVATE] = ACTIONS(2964), + [anon_sym_Public] = ACTIONS(2964), + [anon_sym_public] = ACTIONS(2964), + [anon_sym_PUBLIC] = ACTIONS(2964), + [anon_sym_Remote] = ACTIONS(2964), + [anon_sym_remote] = ACTIONS(2964), + [anon_sym_REMOTE] = ACTIONS(2964), + [anon_sym_Return] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_RETURN] = ACTIONS(2964), + [anon_sym_Static] = ACTIONS(2964), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_STATIC] = ACTIONS(2964), + [anon_sym_Switch] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2964), + [anon_sym_SWITCH] = ACTIONS(2964), + [anon_sym_Throw] = ACTIONS(2964), + [anon_sym_throw] = ACTIONS(2964), + [anon_sym_THROW] = ACTIONS(2964), + [anon_sym_Try] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_TRY] = ACTIONS(2964), + [anon_sym_Var] = ACTIONS(2964), + [anon_sym_var] = ACTIONS(2964), + [anon_sym_VAR] = ACTIONS(2964), + [anon_sym_While] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_WHILE] = ACTIONS(2964), + [anon_sym_With] = ACTIONS(2964), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_WITH] = ACTIONS(2964), + [sym_cf_comment] = ACTIONS(2962), + [sym__java_block_open] = ACTIONS(2962), + [sym__static_type_prefix] = ACTIONS(2962), + }, + [STATE(1003)] = { + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_let] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_Query] = ACTIONS(3016), + [anon_sym_query] = ACTIONS(3016), + [anon_sym_QUERY] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [aux_sym_unary_operator_token1] = ACTIONS(3016), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3016), + [aux_sym_number_token2] = ACTIONS(3014), + [anon_sym_This] = ACTIONS(3016), + [anon_sym_this] = ACTIONS(3016), + [anon_sym_THIS] = ACTIONS(3016), + [anon_sym_Super] = ACTIONS(3016), + [anon_sym_super] = ACTIONS(3016), + [anon_sym_SUPER] = ACTIONS(3016), + [anon_sym_True] = ACTIONS(3016), + [anon_sym_true] = ACTIONS(3016), + [anon_sym_TRUE] = ACTIONS(3016), + [anon_sym_False] = ACTIONS(3016), + [anon_sym_false] = ACTIONS(3016), + [anon_sym_FALSE] = ACTIONS(3016), + [anon_sym_Null] = ACTIONS(3016), + [anon_sym_null] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_Undefined] = ACTIONS(3016), + [anon_sym_undefined] = ACTIONS(3016), + [anon_sym_UNDEFINED] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [sym_hash_empty] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_QueryExecute] = ACTIONS(3016), + [anon_sym_queryexecute] = ACTIONS(3016), + [anon_sym_QUERYEXECUTE] = ACTIONS(3016), + [anon_sym_queryExecute] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3014), + [anon_sym_Abstract] = ACTIONS(3016), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_ABSTRACT] = ACTIONS(3016), + [anon_sym_Break] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_BREAK] = ACTIONS(3016), + [anon_sym_Component] = ACTIONS(3016), + [anon_sym_component] = ACTIONS(3016), + [anon_sym_COMPONENT] = ACTIONS(3016), + [anon_sym_Continue] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_CONTINUE] = ACTIONS(3016), + [anon_sym_Debugger] = ACTIONS(3016), + [anon_sym_debugger] = ACTIONS(3016), + [anon_sym_DEBUGGER] = ACTIONS(3016), + [anon_sym_Do] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_DO] = ACTIONS(3016), + [anon_sym_Final] = ACTIONS(3016), + [anon_sym_final] = ACTIONS(3016), + [anon_sym_FINAL] = ACTIONS(3016), + [anon_sym_For] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_FOR] = ACTIONS(3016), + [anon_sym_Function] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(3016), + [anon_sym_FUNCTION] = ACTIONS(3016), + [anon_sym_If] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_IF] = ACTIONS(3016), + [anon_sym_Import] = ACTIONS(3016), + [anon_sym_import] = ACTIONS(3016), + [anon_sym_IMPORT] = ACTIONS(3016), + [anon_sym_Include] = ACTIONS(3016), + [anon_sym_include] = ACTIONS(3016), + [anon_sym_INCLUDE] = ACTIONS(3016), + [anon_sym_Interface] = ACTIONS(3016), + [anon_sym_interface] = ACTIONS(3016), + [anon_sym_INTERFACE] = ACTIONS(3016), + [anon_sym_New] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_NEW] = ACTIONS(3016), + [anon_sym_Package] = ACTIONS(3016), + [anon_sym_package] = ACTIONS(3016), + [anon_sym_PACKAGE] = ACTIONS(3016), + [anon_sym_Private] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_PRIVATE] = ACTIONS(3016), + [anon_sym_Public] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_PUBLIC] = ACTIONS(3016), + [anon_sym_Remote] = ACTIONS(3016), + [anon_sym_remote] = ACTIONS(3016), + [anon_sym_REMOTE] = ACTIONS(3016), + [anon_sym_Return] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_RETURN] = ACTIONS(3016), + [anon_sym_Static] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_STATIC] = ACTIONS(3016), + [anon_sym_Switch] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_SWITCH] = ACTIONS(3016), + [anon_sym_Throw] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_THROW] = ACTIONS(3016), + [anon_sym_Try] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_TRY] = ACTIONS(3016), + [anon_sym_Var] = ACTIONS(3016), + [anon_sym_var] = ACTIONS(3016), + [anon_sym_VAR] = ACTIONS(3016), + [anon_sym_While] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_WHILE] = ACTIONS(3016), + [anon_sym_With] = ACTIONS(3016), + [anon_sym_with] = ACTIONS(3016), + [anon_sym_WITH] = ACTIONS(3016), + [sym_cf_comment] = ACTIONS(3014), + [sym__java_block_open] = ACTIONS(3014), + [sym__static_type_prefix] = ACTIONS(3014), + }, + [STATE(1004)] = { + [sym_statement_block] = STATE(864), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_query_tag_repeat1] = STATE(1099), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3531), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -187317,123 +195304,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3533), + [sym_tag_linefeed] = ACTIONS(3535), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(948)] = { - [sym_variable_declaration] = STATE(1191), - [sym_empty_statement] = STATE(1191), - [sym_parenthesized_expression] = STATE(2230), - [sym_expression] = STATE(3438), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4110), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2230), - [sym_subscript_expression] = STATE(2230), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4110), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5207), - [sym_string] = STATE(2580), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2580), - [sym_undefined] = STATE(2580), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3263), - [sym_hash_expression] = STATE(3263), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_Query] = ACTIONS(3308), - [anon_sym_query] = ACTIONS(3308), - [anon_sym_QUERY] = ACTIONS(3308), + [STATE(1005)] = { + [sym_statement_block] = STATE(5104), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3868), + [sym_primary_expression] = STATE(3706), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2387), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3222), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(5052), + [sym_tag_call_arguments] = STATE(5052), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1023), + [sym_identifier] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -187452,129 +195440,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_QueryExecute] = ACTIONS(3312), - [anon_sym_queryexecute] = ACTIONS(3312), - [anon_sym_QUERYEXECUTE] = ACTIONS(3312), - [anon_sym_queryExecute] = ACTIONS(3312), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_ABSTRACT] = ACTIONS(3308), - [anon_sym_Component] = ACTIONS(3308), - [anon_sym_component] = ACTIONS(3308), - [anon_sym_COMPONENT] = ACTIONS(3308), - [anon_sym_Debugger] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_DEBUGGER] = ACTIONS(3308), - [anon_sym_Final] = ACTIONS(3314), - [anon_sym_final] = ACTIONS(3314), - [anon_sym_FINAL] = ACTIONS(3314), - [anon_sym_Function] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_FUNCTION] = ACTIONS(3316), - [anon_sym_Include] = ACTIONS(3308), - [anon_sym_include] = ACTIONS(3308), - [anon_sym_INCLUDE] = ACTIONS(3308), - [anon_sym_New] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_NEW] = ACTIONS(3318), - [anon_sym_Package] = ACTIONS(3320), - [anon_sym_package] = ACTIONS(3320), - [anon_sym_PACKAGE] = ACTIONS(3320), - [anon_sym_Private] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_PRIVATE] = ACTIONS(3320), - [anon_sym_Public] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_PUBLIC] = ACTIONS(3320), - [anon_sym_Remote] = ACTIONS(3320), - [anon_sym_remote] = ACTIONS(3320), - [anon_sym_REMOTE] = ACTIONS(3320), - [anon_sym_Static] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_STATIC] = ACTIONS(3308), - [anon_sym_Var] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_VAR] = ACTIONS(3322), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym_tag_linefeed] = ACTIONS(596), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(949)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3464), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4686), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4686), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2647), - [sym_hash_expression] = STATE(2647), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4690), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [STATE(1006)] = { + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_Query] = ACTIONS(2968), + [anon_sym_query] = ACTIONS(2968), + [anon_sym_QUERY] = ACTIONS(2968), + [anon_sym_PLUS] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_SLASH] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2966), + [aux_sym_unary_operator_token1] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_SQUOTE] = ACTIONS(2966), + [sym_comment] = ACTIONS(2966), + [aux_sym_number_token1] = ACTIONS(2968), + [aux_sym_number_token2] = ACTIONS(2966), + [anon_sym_This] = ACTIONS(2968), + [anon_sym_this] = ACTIONS(2968), + [anon_sym_THIS] = ACTIONS(2968), + [anon_sym_Super] = ACTIONS(2968), + [anon_sym_super] = ACTIONS(2968), + [anon_sym_SUPER] = ACTIONS(2968), + [anon_sym_True] = ACTIONS(2968), + [anon_sym_true] = ACTIONS(2968), + [anon_sym_TRUE] = ACTIONS(2968), + [anon_sym_False] = ACTIONS(2968), + [anon_sym_false] = ACTIONS(2968), + [anon_sym_FALSE] = ACTIONS(2968), + [anon_sym_Null] = ACTIONS(2968), + [anon_sym_null] = ACTIONS(2968), + [anon_sym_NULL] = ACTIONS(2968), + [anon_sym_Undefined] = ACTIONS(2968), + [anon_sym_undefined] = ACTIONS(2968), + [anon_sym_UNDEFINED] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), + [anon_sym_POUND] = ACTIONS(2968), + [sym_hash_empty] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2968), + [anon_sym_QueryExecute] = ACTIONS(2968), + [anon_sym_queryexecute] = ACTIONS(2968), + [anon_sym_QUERYEXECUTE] = ACTIONS(2968), + [anon_sym_queryExecute] = ACTIONS(2968), + [anon_sym_BQUOTE] = ACTIONS(2968), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2966), + [anon_sym_Abstract] = ACTIONS(2968), + [anon_sym_abstract] = ACTIONS(2968), + [anon_sym_ABSTRACT] = ACTIONS(2968), + [anon_sym_Break] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_BREAK] = ACTIONS(2968), + [anon_sym_Component] = ACTIONS(2968), + [anon_sym_component] = ACTIONS(2968), + [anon_sym_COMPONENT] = ACTIONS(2968), + [anon_sym_Continue] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_CONTINUE] = ACTIONS(2968), + [anon_sym_Debugger] = ACTIONS(2968), + [anon_sym_debugger] = ACTIONS(2968), + [anon_sym_DEBUGGER] = ACTIONS(2968), + [anon_sym_Do] = ACTIONS(2968), + [anon_sym_do] = ACTIONS(2968), + [anon_sym_DO] = ACTIONS(2968), + [anon_sym_Final] = ACTIONS(2968), + [anon_sym_final] = ACTIONS(2968), + [anon_sym_FINAL] = ACTIONS(2968), + [anon_sym_For] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2968), + [anon_sym_FOR] = ACTIONS(2968), + [anon_sym_Function] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2968), + [anon_sym_FUNCTION] = ACTIONS(2968), + [anon_sym_If] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_IF] = ACTIONS(2968), + [anon_sym_Import] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(2968), + [anon_sym_IMPORT] = ACTIONS(2968), + [anon_sym_Include] = ACTIONS(2968), + [anon_sym_include] = ACTIONS(2968), + [anon_sym_INCLUDE] = ACTIONS(2968), + [anon_sym_Interface] = ACTIONS(2968), + [anon_sym_interface] = ACTIONS(2968), + [anon_sym_INTERFACE] = ACTIONS(2968), + [anon_sym_New] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2968), + [anon_sym_NEW] = ACTIONS(2968), + [anon_sym_Package] = ACTIONS(2968), + [anon_sym_package] = ACTIONS(2968), + [anon_sym_PACKAGE] = ACTIONS(2968), + [anon_sym_Private] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_PRIVATE] = ACTIONS(2968), + [anon_sym_Public] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_PUBLIC] = ACTIONS(2968), + [anon_sym_Remote] = ACTIONS(2968), + [anon_sym_remote] = ACTIONS(2968), + [anon_sym_REMOTE] = ACTIONS(2968), + [anon_sym_Return] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_RETURN] = ACTIONS(2968), + [anon_sym_Static] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_STATIC] = ACTIONS(2968), + [anon_sym_Switch] = ACTIONS(2968), + [anon_sym_switch] = ACTIONS(2968), + [anon_sym_SWITCH] = ACTIONS(2968), + [anon_sym_Throw] = ACTIONS(2968), + [anon_sym_throw] = ACTIONS(2968), + [anon_sym_THROW] = ACTIONS(2968), + [anon_sym_Try] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2968), + [anon_sym_TRY] = ACTIONS(2968), + [anon_sym_Var] = ACTIONS(2968), + [anon_sym_var] = ACTIONS(2968), + [anon_sym_VAR] = ACTIONS(2968), + [anon_sym_While] = ACTIONS(2968), + [anon_sym_while] = ACTIONS(2968), + [anon_sym_WHILE] = ACTIONS(2968), + [anon_sym_With] = ACTIONS(2968), + [anon_sym_with] = ACTIONS(2968), + [anon_sym_WITH] = ACTIONS(2968), + [sym_cf_comment] = ACTIONS(2966), + [sym__java_block_open] = ACTIONS(2966), + [sym__static_type_prefix] = ACTIONS(2966), + }, + [STATE(1007)] = { + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_Query] = ACTIONS(2936), + [anon_sym_query] = ACTIONS(2936), + [anon_sym_QUERY] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [aux_sym_unary_operator_token1] = ACTIONS(2936), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [sym_comment] = ACTIONS(2934), + [aux_sym_number_token1] = ACTIONS(2936), + [aux_sym_number_token2] = ACTIONS(2934), + [anon_sym_This] = ACTIONS(2936), + [anon_sym_this] = ACTIONS(2936), + [anon_sym_THIS] = ACTIONS(2936), + [anon_sym_Super] = ACTIONS(2936), + [anon_sym_super] = ACTIONS(2936), + [anon_sym_SUPER] = ACTIONS(2936), + [anon_sym_True] = ACTIONS(2936), + [anon_sym_true] = ACTIONS(2936), + [anon_sym_TRUE] = ACTIONS(2936), + [anon_sym_False] = ACTIONS(2936), + [anon_sym_false] = ACTIONS(2936), + [anon_sym_FALSE] = ACTIONS(2936), + [anon_sym_Null] = ACTIONS(2936), + [anon_sym_null] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_Undefined] = ACTIONS(2936), + [anon_sym_undefined] = ACTIONS(2936), + [anon_sym_UNDEFINED] = ACTIONS(2936), + [anon_sym_get] = ACTIONS(2936), + [anon_sym_set] = ACTIONS(2936), + [anon_sym_POUND] = ACTIONS(2936), + [sym_hash_empty] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2936), + [anon_sym_QueryExecute] = ACTIONS(2936), + [anon_sym_queryexecute] = ACTIONS(2936), + [anon_sym_QUERYEXECUTE] = ACTIONS(2936), + [anon_sym_queryExecute] = ACTIONS(2936), + [anon_sym_BQUOTE] = ACTIONS(2936), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2934), + [anon_sym_Abstract] = ACTIONS(2936), + [anon_sym_abstract] = ACTIONS(2936), + [anon_sym_ABSTRACT] = ACTIONS(2936), + [anon_sym_Break] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_BREAK] = ACTIONS(2936), + [anon_sym_Component] = ACTIONS(2936), + [anon_sym_component] = ACTIONS(2936), + [anon_sym_COMPONENT] = ACTIONS(2936), + [anon_sym_Continue] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_CONTINUE] = ACTIONS(2936), + [anon_sym_Debugger] = ACTIONS(2936), + [anon_sym_debugger] = ACTIONS(2936), + [anon_sym_DEBUGGER] = ACTIONS(2936), + [anon_sym_Do] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_DO] = ACTIONS(2936), + [anon_sym_Final] = ACTIONS(2936), + [anon_sym_final] = ACTIONS(2936), + [anon_sym_FINAL] = ACTIONS(2936), + [anon_sym_For] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_FOR] = ACTIONS(2936), + [anon_sym_Function] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2936), + [anon_sym_FUNCTION] = ACTIONS(2936), + [anon_sym_If] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_IF] = ACTIONS(2936), + [anon_sym_Import] = ACTIONS(2936), + [anon_sym_import] = ACTIONS(2936), + [anon_sym_IMPORT] = ACTIONS(2936), + [anon_sym_Include] = ACTIONS(2936), + [anon_sym_include] = ACTIONS(2936), + [anon_sym_INCLUDE] = ACTIONS(2936), + [anon_sym_Interface] = ACTIONS(2936), + [anon_sym_interface] = ACTIONS(2936), + [anon_sym_INTERFACE] = ACTIONS(2936), + [anon_sym_New] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_NEW] = ACTIONS(2936), + [anon_sym_Package] = ACTIONS(2936), + [anon_sym_package] = ACTIONS(2936), + [anon_sym_PACKAGE] = ACTIONS(2936), + [anon_sym_Private] = ACTIONS(2936), + [anon_sym_private] = ACTIONS(2936), + [anon_sym_PRIVATE] = ACTIONS(2936), + [anon_sym_Public] = ACTIONS(2936), + [anon_sym_public] = ACTIONS(2936), + [anon_sym_PUBLIC] = ACTIONS(2936), + [anon_sym_Remote] = ACTIONS(2936), + [anon_sym_remote] = ACTIONS(2936), + [anon_sym_REMOTE] = ACTIONS(2936), + [anon_sym_Return] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_RETURN] = ACTIONS(2936), + [anon_sym_Static] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_STATIC] = ACTIONS(2936), + [anon_sym_Switch] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_SWITCH] = ACTIONS(2936), + [anon_sym_Throw] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_THROW] = ACTIONS(2936), + [anon_sym_Try] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_TRY] = ACTIONS(2936), + [anon_sym_Var] = ACTIONS(2936), + [anon_sym_var] = ACTIONS(2936), + [anon_sym_VAR] = ACTIONS(2936), + [anon_sym_While] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_WHILE] = ACTIONS(2936), + [anon_sym_With] = ACTIONS(2936), + [anon_sym_with] = ACTIONS(2936), + [anon_sym_WITH] = ACTIONS(2936), + [sym_cf_comment] = ACTIONS(2934), + [sym__java_block_open] = ACTIONS(2934), + [sym__static_type_prefix] = ACTIONS(2934), + }, + [STATE(1008)] = { + [sym_statement_block] = STATE(4838), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -187593,126 +195844,1068 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3539), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(950)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3421), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4633), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4633), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2729), - [sym_hash_expression] = STATE(2729), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4637), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [STATE(1009)] = { + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_Query] = ACTIONS(2940), + [anon_sym_query] = ACTIONS(2940), + [anon_sym_QUERY] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [aux_sym_unary_operator_token1] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [sym_comment] = ACTIONS(2938), + [aux_sym_number_token1] = ACTIONS(2940), + [aux_sym_number_token2] = ACTIONS(2938), + [anon_sym_This] = ACTIONS(2940), + [anon_sym_this] = ACTIONS(2940), + [anon_sym_THIS] = ACTIONS(2940), + [anon_sym_Super] = ACTIONS(2940), + [anon_sym_super] = ACTIONS(2940), + [anon_sym_SUPER] = ACTIONS(2940), + [anon_sym_True] = ACTIONS(2940), + [anon_sym_true] = ACTIONS(2940), + [anon_sym_TRUE] = ACTIONS(2940), + [anon_sym_False] = ACTIONS(2940), + [anon_sym_false] = ACTIONS(2940), + [anon_sym_FALSE] = ACTIONS(2940), + [anon_sym_Null] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_Undefined] = ACTIONS(2940), + [anon_sym_undefined] = ACTIONS(2940), + [anon_sym_UNDEFINED] = ACTIONS(2940), + [anon_sym_get] = ACTIONS(2940), + [anon_sym_set] = ACTIONS(2940), + [anon_sym_POUND] = ACTIONS(2940), + [sym_hash_empty] = ACTIONS(2938), + [anon_sym_export] = ACTIONS(2940), + [anon_sym_QueryExecute] = ACTIONS(2940), + [anon_sym_queryexecute] = ACTIONS(2940), + [anon_sym_QUERYEXECUTE] = ACTIONS(2940), + [anon_sym_queryExecute] = ACTIONS(2940), + [anon_sym_BQUOTE] = ACTIONS(2940), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2938), + [anon_sym_Abstract] = ACTIONS(2940), + [anon_sym_abstract] = ACTIONS(2940), + [anon_sym_ABSTRACT] = ACTIONS(2940), + [anon_sym_Break] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_BREAK] = ACTIONS(2940), + [anon_sym_Component] = ACTIONS(2940), + [anon_sym_component] = ACTIONS(2940), + [anon_sym_COMPONENT] = ACTIONS(2940), + [anon_sym_Continue] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_CONTINUE] = ACTIONS(2940), + [anon_sym_Debugger] = ACTIONS(2940), + [anon_sym_debugger] = ACTIONS(2940), + [anon_sym_DEBUGGER] = ACTIONS(2940), + [anon_sym_Do] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_DO] = ACTIONS(2940), + [anon_sym_Final] = ACTIONS(2940), + [anon_sym_final] = ACTIONS(2940), + [anon_sym_FINAL] = ACTIONS(2940), + [anon_sym_For] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_FOR] = ACTIONS(2940), + [anon_sym_Function] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2940), + [anon_sym_FUNCTION] = ACTIONS(2940), + [anon_sym_If] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_IF] = ACTIONS(2940), + [anon_sym_Import] = ACTIONS(2940), + [anon_sym_import] = ACTIONS(2940), + [anon_sym_IMPORT] = ACTIONS(2940), + [anon_sym_Include] = ACTIONS(2940), + [anon_sym_include] = ACTIONS(2940), + [anon_sym_INCLUDE] = ACTIONS(2940), + [anon_sym_Interface] = ACTIONS(2940), + [anon_sym_interface] = ACTIONS(2940), + [anon_sym_INTERFACE] = ACTIONS(2940), + [anon_sym_New] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_NEW] = ACTIONS(2940), + [anon_sym_Package] = ACTIONS(2940), + [anon_sym_package] = ACTIONS(2940), + [anon_sym_PACKAGE] = ACTIONS(2940), + [anon_sym_Private] = ACTIONS(2940), + [anon_sym_private] = ACTIONS(2940), + [anon_sym_PRIVATE] = ACTIONS(2940), + [anon_sym_Public] = ACTIONS(2940), + [anon_sym_public] = ACTIONS(2940), + [anon_sym_PUBLIC] = ACTIONS(2940), + [anon_sym_Remote] = ACTIONS(2940), + [anon_sym_remote] = ACTIONS(2940), + [anon_sym_REMOTE] = ACTIONS(2940), + [anon_sym_Return] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_RETURN] = ACTIONS(2940), + [anon_sym_Static] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_STATIC] = ACTIONS(2940), + [anon_sym_Switch] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_SWITCH] = ACTIONS(2940), + [anon_sym_Throw] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_THROW] = ACTIONS(2940), + [anon_sym_Try] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_TRY] = ACTIONS(2940), + [anon_sym_Var] = ACTIONS(2940), + [anon_sym_var] = ACTIONS(2940), + [anon_sym_VAR] = ACTIONS(2940), + [anon_sym_While] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_WHILE] = ACTIONS(2940), + [anon_sym_With] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2940), + [anon_sym_WITH] = ACTIONS(2940), + [sym_cf_comment] = ACTIONS(2938), + [sym__java_block_open] = ACTIONS(2938), + [sym__static_type_prefix] = ACTIONS(2938), + }, + [STATE(1010)] = { + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_let] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_Query] = ACTIONS(2928), + [anon_sym_query] = ACTIONS(2928), + [anon_sym_QUERY] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [aux_sym_unary_operator_token1] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [sym_comment] = ACTIONS(2926), + [aux_sym_number_token1] = ACTIONS(2928), + [aux_sym_number_token2] = ACTIONS(2926), + [anon_sym_This] = ACTIONS(2928), + [anon_sym_this] = ACTIONS(2928), + [anon_sym_THIS] = ACTIONS(2928), + [anon_sym_Super] = ACTIONS(2928), + [anon_sym_super] = ACTIONS(2928), + [anon_sym_SUPER] = ACTIONS(2928), + [anon_sym_True] = ACTIONS(2928), + [anon_sym_true] = ACTIONS(2928), + [anon_sym_TRUE] = ACTIONS(2928), + [anon_sym_False] = ACTIONS(2928), + [anon_sym_false] = ACTIONS(2928), + [anon_sym_FALSE] = ACTIONS(2928), + [anon_sym_Null] = ACTIONS(2928), + [anon_sym_null] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_Undefined] = ACTIONS(2928), + [anon_sym_undefined] = ACTIONS(2928), + [anon_sym_UNDEFINED] = ACTIONS(2928), + [anon_sym_get] = ACTIONS(2928), + [anon_sym_set] = ACTIONS(2928), + [anon_sym_POUND] = ACTIONS(2928), + [sym_hash_empty] = ACTIONS(2926), + [anon_sym_export] = ACTIONS(2928), + [anon_sym_QueryExecute] = ACTIONS(2928), + [anon_sym_queryexecute] = ACTIONS(2928), + [anon_sym_QUERYEXECUTE] = ACTIONS(2928), + [anon_sym_queryExecute] = ACTIONS(2928), + [anon_sym_BQUOTE] = ACTIONS(2928), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2926), + [anon_sym_Abstract] = ACTIONS(2928), + [anon_sym_abstract] = ACTIONS(2928), + [anon_sym_ABSTRACT] = ACTIONS(2928), + [anon_sym_Break] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_BREAK] = ACTIONS(2928), + [anon_sym_Component] = ACTIONS(2928), + [anon_sym_component] = ACTIONS(2928), + [anon_sym_COMPONENT] = ACTIONS(2928), + [anon_sym_Continue] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_CONTINUE] = ACTIONS(2928), + [anon_sym_Debugger] = ACTIONS(2928), + [anon_sym_debugger] = ACTIONS(2928), + [anon_sym_DEBUGGER] = ACTIONS(2928), + [anon_sym_Do] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_DO] = ACTIONS(2928), + [anon_sym_Final] = ACTIONS(2928), + [anon_sym_final] = ACTIONS(2928), + [anon_sym_FINAL] = ACTIONS(2928), + [anon_sym_For] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_FOR] = ACTIONS(2928), + [anon_sym_Function] = ACTIONS(2928), + [anon_sym_function] = ACTIONS(2928), + [anon_sym_FUNCTION] = ACTIONS(2928), + [anon_sym_If] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_IF] = ACTIONS(2928), + [anon_sym_Import] = ACTIONS(2928), + [anon_sym_import] = ACTIONS(2928), + [anon_sym_IMPORT] = ACTIONS(2928), + [anon_sym_Include] = ACTIONS(2928), + [anon_sym_include] = ACTIONS(2928), + [anon_sym_INCLUDE] = ACTIONS(2928), + [anon_sym_Interface] = ACTIONS(2928), + [anon_sym_interface] = ACTIONS(2928), + [anon_sym_INTERFACE] = ACTIONS(2928), + [anon_sym_New] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_NEW] = ACTIONS(2928), + [anon_sym_Package] = ACTIONS(2928), + [anon_sym_package] = ACTIONS(2928), + [anon_sym_PACKAGE] = ACTIONS(2928), + [anon_sym_Private] = ACTIONS(2928), + [anon_sym_private] = ACTIONS(2928), + [anon_sym_PRIVATE] = ACTIONS(2928), + [anon_sym_Public] = ACTIONS(2928), + [anon_sym_public] = ACTIONS(2928), + [anon_sym_PUBLIC] = ACTIONS(2928), + [anon_sym_Remote] = ACTIONS(2928), + [anon_sym_remote] = ACTIONS(2928), + [anon_sym_REMOTE] = ACTIONS(2928), + [anon_sym_Return] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_RETURN] = ACTIONS(2928), + [anon_sym_Static] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_STATIC] = ACTIONS(2928), + [anon_sym_Switch] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_SWITCH] = ACTIONS(2928), + [anon_sym_Throw] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_THROW] = ACTIONS(2928), + [anon_sym_Try] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_TRY] = ACTIONS(2928), + [anon_sym_Var] = ACTIONS(2928), + [anon_sym_var] = ACTIONS(2928), + [anon_sym_VAR] = ACTIONS(2928), + [anon_sym_While] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_WHILE] = ACTIONS(2928), + [anon_sym_With] = ACTIONS(2928), + [anon_sym_with] = ACTIONS(2928), + [anon_sym_WITH] = ACTIONS(2928), + [sym_cf_comment] = ACTIONS(2926), + [sym__java_block_open] = ACTIONS(2926), + [sym__static_type_prefix] = ACTIONS(2926), + }, + [STATE(1011)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(1011), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(557), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_declaration_repeat3] = STATE(1011), + [sym_identifier] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3547), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3553), + [anon_sym_Query] = ACTIONS(3550), + [anon_sym_query] = ACTIONS(3550), + [anon_sym_QUERY] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [aux_sym_unary_operator_token1] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3565), + [anon_sym_DASH_DASH] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(3571), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3574), + [aux_sym_number_token2] = ACTIONS(3577), + [anon_sym_This] = ACTIONS(3580), + [anon_sym_this] = ACTIONS(3580), + [anon_sym_THIS] = ACTIONS(3580), + [anon_sym_Super] = ACTIONS(3583), + [anon_sym_super] = ACTIONS(3583), + [anon_sym_SUPER] = ACTIONS(3583), + [anon_sym_True] = ACTIONS(3586), + [anon_sym_true] = ACTIONS(3586), + [anon_sym_TRUE] = ACTIONS(3586), + [anon_sym_False] = ACTIONS(3589), + [anon_sym_false] = ACTIONS(3589), + [anon_sym_FALSE] = ACTIONS(3589), + [anon_sym_Null] = ACTIONS(3592), + [anon_sym_null] = ACTIONS(3592), + [anon_sym_NULL] = ACTIONS(3592), + [anon_sym_Undefined] = ACTIONS(3595), + [anon_sym_undefined] = ACTIONS(3595), + [anon_sym_UNDEFINED] = ACTIONS(3595), + [anon_sym_get] = ACTIONS(3550), + [anon_sym_set] = ACTIONS(3550), + [anon_sym_POUND] = ACTIONS(3598), + [sym_hash_empty] = ACTIONS(3601), + [anon_sym_export] = ACTIONS(3550), + [anon_sym_QueryExecute] = ACTIONS(3604), + [anon_sym_queryexecute] = ACTIONS(3604), + [anon_sym_QUERYEXECUTE] = ACTIONS(3604), + [anon_sym_queryExecute] = ACTIONS(3604), + [anon_sym_BQUOTE] = ACTIONS(3607), + [anon_sym_Abstract] = ACTIONS(3550), + [anon_sym_abstract] = ACTIONS(3550), + [anon_sym_ABSTRACT] = ACTIONS(3550), + [anon_sym_Component] = ACTIONS(3550), + [anon_sym_component] = ACTIONS(3550), + [anon_sym_COMPONENT] = ACTIONS(3550), + [anon_sym_Debugger] = ACTIONS(3550), + [anon_sym_debugger] = ACTIONS(3550), + [anon_sym_DEBUGGER] = ACTIONS(3550), + [anon_sym_Final] = ACTIONS(3550), + [anon_sym_final] = ACTIONS(3550), + [anon_sym_FINAL] = ACTIONS(3550), + [anon_sym_Function] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3610), + [anon_sym_FUNCTION] = ACTIONS(3610), + [anon_sym_Include] = ACTIONS(3550), + [anon_sym_include] = ACTIONS(3550), + [anon_sym_INCLUDE] = ACTIONS(3550), + [anon_sym_New] = ACTIONS(3613), + [anon_sym_new] = ACTIONS(3613), + [anon_sym_NEW] = ACTIONS(3613), + [anon_sym_Package] = ACTIONS(3550), + [anon_sym_package] = ACTIONS(3550), + [anon_sym_PACKAGE] = ACTIONS(3550), + [anon_sym_Private] = ACTIONS(3550), + [anon_sym_private] = ACTIONS(3550), + [anon_sym_PRIVATE] = ACTIONS(3550), + [anon_sym_Public] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3550), + [anon_sym_PUBLIC] = ACTIONS(3550), + [anon_sym_Remote] = ACTIONS(3550), + [anon_sym_remote] = ACTIONS(3550), + [anon_sym_REMOTE] = ACTIONS(3550), + [anon_sym_Static] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3550), + [anon_sym_STATIC] = ACTIONS(3550), + [sym__automatic_semicolon] = ACTIONS(1910), + [sym_tag_linefeed] = ACTIONS(3616), + [sym__java_block_open] = ACTIONS(3619), + [sym__static_type_prefix] = ACTIONS(3622), + }, + [STATE(1012)] = { + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_Query] = ACTIONS(2904), + [anon_sym_query] = ACTIONS(2904), + [anon_sym_QUERY] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [aux_sym_unary_operator_token1] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [sym_comment] = ACTIONS(2902), + [aux_sym_number_token1] = ACTIONS(2904), + [aux_sym_number_token2] = ACTIONS(2902), + [anon_sym_This] = ACTIONS(2904), + [anon_sym_this] = ACTIONS(2904), + [anon_sym_THIS] = ACTIONS(2904), + [anon_sym_Super] = ACTIONS(2904), + [anon_sym_super] = ACTIONS(2904), + [anon_sym_SUPER] = ACTIONS(2904), + [anon_sym_True] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2904), + [anon_sym_TRUE] = ACTIONS(2904), + [anon_sym_False] = ACTIONS(2904), + [anon_sym_false] = ACTIONS(2904), + [anon_sym_FALSE] = ACTIONS(2904), + [anon_sym_Null] = ACTIONS(2904), + [anon_sym_null] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_Undefined] = ACTIONS(2904), + [anon_sym_undefined] = ACTIONS(2904), + [anon_sym_UNDEFINED] = ACTIONS(2904), + [anon_sym_get] = ACTIONS(2904), + [anon_sym_set] = ACTIONS(2904), + [anon_sym_POUND] = ACTIONS(2904), + [sym_hash_empty] = ACTIONS(2902), + [anon_sym_export] = ACTIONS(2904), + [anon_sym_QueryExecute] = ACTIONS(2904), + [anon_sym_queryexecute] = ACTIONS(2904), + [anon_sym_QUERYEXECUTE] = ACTIONS(2904), + [anon_sym_queryExecute] = ACTIONS(2904), + [anon_sym_BQUOTE] = ACTIONS(2904), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2902), + [anon_sym_Abstract] = ACTIONS(2904), + [anon_sym_abstract] = ACTIONS(2904), + [anon_sym_ABSTRACT] = ACTIONS(2904), + [anon_sym_Break] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_BREAK] = ACTIONS(2904), + [anon_sym_Component] = ACTIONS(2904), + [anon_sym_component] = ACTIONS(2904), + [anon_sym_COMPONENT] = ACTIONS(2904), + [anon_sym_Continue] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_CONTINUE] = ACTIONS(2904), + [anon_sym_Debugger] = ACTIONS(2904), + [anon_sym_debugger] = ACTIONS(2904), + [anon_sym_DEBUGGER] = ACTIONS(2904), + [anon_sym_Do] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_DO] = ACTIONS(2904), + [anon_sym_Final] = ACTIONS(2904), + [anon_sym_final] = ACTIONS(2904), + [anon_sym_FINAL] = ACTIONS(2904), + [anon_sym_For] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_FOR] = ACTIONS(2904), + [anon_sym_Function] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_FUNCTION] = ACTIONS(2904), + [anon_sym_If] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_IF] = ACTIONS(2904), + [anon_sym_Import] = ACTIONS(2904), + [anon_sym_import] = ACTIONS(2904), + [anon_sym_IMPORT] = ACTIONS(2904), + [anon_sym_Include] = ACTIONS(2904), + [anon_sym_include] = ACTIONS(2904), + [anon_sym_INCLUDE] = ACTIONS(2904), + [anon_sym_Interface] = ACTIONS(2904), + [anon_sym_interface] = ACTIONS(2904), + [anon_sym_INTERFACE] = ACTIONS(2904), + [anon_sym_New] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_NEW] = ACTIONS(2904), + [anon_sym_Package] = ACTIONS(2904), + [anon_sym_package] = ACTIONS(2904), + [anon_sym_PACKAGE] = ACTIONS(2904), + [anon_sym_Private] = ACTIONS(2904), + [anon_sym_private] = ACTIONS(2904), + [anon_sym_PRIVATE] = ACTIONS(2904), + [anon_sym_Public] = ACTIONS(2904), + [anon_sym_public] = ACTIONS(2904), + [anon_sym_PUBLIC] = ACTIONS(2904), + [anon_sym_Remote] = ACTIONS(2904), + [anon_sym_remote] = ACTIONS(2904), + [anon_sym_REMOTE] = ACTIONS(2904), + [anon_sym_Return] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_RETURN] = ACTIONS(2904), + [anon_sym_Static] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_STATIC] = ACTIONS(2904), + [anon_sym_Switch] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_SWITCH] = ACTIONS(2904), + [anon_sym_Throw] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_THROW] = ACTIONS(2904), + [anon_sym_Try] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_TRY] = ACTIONS(2904), + [anon_sym_Var] = ACTIONS(2904), + [anon_sym_var] = ACTIONS(2904), + [anon_sym_VAR] = ACTIONS(2904), + [anon_sym_While] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_WHILE] = ACTIONS(2904), + [anon_sym_With] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_WITH] = ACTIONS(2904), + [sym_cf_comment] = ACTIONS(2902), + [sym__java_block_open] = ACTIONS(2902), + [sym__static_type_prefix] = ACTIONS(2902), + }, + [STATE(1013)] = { + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_Query] = ACTIONS(2908), + [anon_sym_query] = ACTIONS(2908), + [anon_sym_QUERY] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [aux_sym_unary_operator_token1] = ACTIONS(2908), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [sym_comment] = ACTIONS(2906), + [aux_sym_number_token1] = ACTIONS(2908), + [aux_sym_number_token2] = ACTIONS(2906), + [anon_sym_This] = ACTIONS(2908), + [anon_sym_this] = ACTIONS(2908), + [anon_sym_THIS] = ACTIONS(2908), + [anon_sym_Super] = ACTIONS(2908), + [anon_sym_super] = ACTIONS(2908), + [anon_sym_SUPER] = ACTIONS(2908), + [anon_sym_True] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2908), + [anon_sym_TRUE] = ACTIONS(2908), + [anon_sym_False] = ACTIONS(2908), + [anon_sym_false] = ACTIONS(2908), + [anon_sym_FALSE] = ACTIONS(2908), + [anon_sym_Null] = ACTIONS(2908), + [anon_sym_null] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_Undefined] = ACTIONS(2908), + [anon_sym_undefined] = ACTIONS(2908), + [anon_sym_UNDEFINED] = ACTIONS(2908), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_POUND] = ACTIONS(2908), + [sym_hash_empty] = ACTIONS(2906), + [anon_sym_export] = ACTIONS(2908), + [anon_sym_QueryExecute] = ACTIONS(2908), + [anon_sym_queryexecute] = ACTIONS(2908), + [anon_sym_QUERYEXECUTE] = ACTIONS(2908), + [anon_sym_queryExecute] = ACTIONS(2908), + [anon_sym_BQUOTE] = ACTIONS(2908), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2906), + [anon_sym_Abstract] = ACTIONS(2908), + [anon_sym_abstract] = ACTIONS(2908), + [anon_sym_ABSTRACT] = ACTIONS(2908), + [anon_sym_Break] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_BREAK] = ACTIONS(2908), + [anon_sym_Component] = ACTIONS(2908), + [anon_sym_component] = ACTIONS(2908), + [anon_sym_COMPONENT] = ACTIONS(2908), + [anon_sym_Continue] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_CONTINUE] = ACTIONS(2908), + [anon_sym_Debugger] = ACTIONS(2908), + [anon_sym_debugger] = ACTIONS(2908), + [anon_sym_DEBUGGER] = ACTIONS(2908), + [anon_sym_Do] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_DO] = ACTIONS(2908), + [anon_sym_Final] = ACTIONS(2908), + [anon_sym_final] = ACTIONS(2908), + [anon_sym_FINAL] = ACTIONS(2908), + [anon_sym_For] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_FOR] = ACTIONS(2908), + [anon_sym_Function] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_FUNCTION] = ACTIONS(2908), + [anon_sym_If] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_IF] = ACTIONS(2908), + [anon_sym_Import] = ACTIONS(2908), + [anon_sym_import] = ACTIONS(2908), + [anon_sym_IMPORT] = ACTIONS(2908), + [anon_sym_Include] = ACTIONS(2908), + [anon_sym_include] = ACTIONS(2908), + [anon_sym_INCLUDE] = ACTIONS(2908), + [anon_sym_Interface] = ACTIONS(2908), + [anon_sym_interface] = ACTIONS(2908), + [anon_sym_INTERFACE] = ACTIONS(2908), + [anon_sym_New] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_NEW] = ACTIONS(2908), + [anon_sym_Package] = ACTIONS(2908), + [anon_sym_package] = ACTIONS(2908), + [anon_sym_PACKAGE] = ACTIONS(2908), + [anon_sym_Private] = ACTIONS(2908), + [anon_sym_private] = ACTIONS(2908), + [anon_sym_PRIVATE] = ACTIONS(2908), + [anon_sym_Public] = ACTIONS(2908), + [anon_sym_public] = ACTIONS(2908), + [anon_sym_PUBLIC] = ACTIONS(2908), + [anon_sym_Remote] = ACTIONS(2908), + [anon_sym_remote] = ACTIONS(2908), + [anon_sym_REMOTE] = ACTIONS(2908), + [anon_sym_Return] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_RETURN] = ACTIONS(2908), + [anon_sym_Static] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_STATIC] = ACTIONS(2908), + [anon_sym_Switch] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_SWITCH] = ACTIONS(2908), + [anon_sym_Throw] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_THROW] = ACTIONS(2908), + [anon_sym_Try] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_TRY] = ACTIONS(2908), + [anon_sym_Var] = ACTIONS(2908), + [anon_sym_var] = ACTIONS(2908), + [anon_sym_VAR] = ACTIONS(2908), + [anon_sym_While] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_WHILE] = ACTIONS(2908), + [anon_sym_With] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_WITH] = ACTIONS(2908), + [sym_cf_comment] = ACTIONS(2906), + [sym__java_block_open] = ACTIONS(2906), + [sym__static_type_prefix] = ACTIONS(2906), + }, + [STATE(1014)] = { + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_Query] = ACTIONS(2912), + [anon_sym_query] = ACTIONS(2912), + [anon_sym_QUERY] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [aux_sym_unary_operator_token1] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [sym_comment] = ACTIONS(2910), + [aux_sym_number_token1] = ACTIONS(2912), + [aux_sym_number_token2] = ACTIONS(2910), + [anon_sym_This] = ACTIONS(2912), + [anon_sym_this] = ACTIONS(2912), + [anon_sym_THIS] = ACTIONS(2912), + [anon_sym_Super] = ACTIONS(2912), + [anon_sym_super] = ACTIONS(2912), + [anon_sym_SUPER] = ACTIONS(2912), + [anon_sym_True] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2912), + [anon_sym_TRUE] = ACTIONS(2912), + [anon_sym_False] = ACTIONS(2912), + [anon_sym_false] = ACTIONS(2912), + [anon_sym_FALSE] = ACTIONS(2912), + [anon_sym_Null] = ACTIONS(2912), + [anon_sym_null] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_Undefined] = ACTIONS(2912), + [anon_sym_undefined] = ACTIONS(2912), + [anon_sym_UNDEFINED] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2912), + [anon_sym_set] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2912), + [sym_hash_empty] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_QueryExecute] = ACTIONS(2912), + [anon_sym_queryexecute] = ACTIONS(2912), + [anon_sym_QUERYEXECUTE] = ACTIONS(2912), + [anon_sym_queryExecute] = ACTIONS(2912), + [anon_sym_BQUOTE] = ACTIONS(2912), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2910), + [anon_sym_Abstract] = ACTIONS(2912), + [anon_sym_abstract] = ACTIONS(2912), + [anon_sym_ABSTRACT] = ACTIONS(2912), + [anon_sym_Break] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_BREAK] = ACTIONS(2912), + [anon_sym_Component] = ACTIONS(2912), + [anon_sym_component] = ACTIONS(2912), + [anon_sym_COMPONENT] = ACTIONS(2912), + [anon_sym_Continue] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_CONTINUE] = ACTIONS(2912), + [anon_sym_Debugger] = ACTIONS(2912), + [anon_sym_debugger] = ACTIONS(2912), + [anon_sym_DEBUGGER] = ACTIONS(2912), + [anon_sym_Do] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_DO] = ACTIONS(2912), + [anon_sym_Final] = ACTIONS(2912), + [anon_sym_final] = ACTIONS(2912), + [anon_sym_FINAL] = ACTIONS(2912), + [anon_sym_For] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_FOR] = ACTIONS(2912), + [anon_sym_Function] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_FUNCTION] = ACTIONS(2912), + [anon_sym_If] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_IF] = ACTIONS(2912), + [anon_sym_Import] = ACTIONS(2912), + [anon_sym_import] = ACTIONS(2912), + [anon_sym_IMPORT] = ACTIONS(2912), + [anon_sym_Include] = ACTIONS(2912), + [anon_sym_include] = ACTIONS(2912), + [anon_sym_INCLUDE] = ACTIONS(2912), + [anon_sym_Interface] = ACTIONS(2912), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_INTERFACE] = ACTIONS(2912), + [anon_sym_New] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_NEW] = ACTIONS(2912), + [anon_sym_Package] = ACTIONS(2912), + [anon_sym_package] = ACTIONS(2912), + [anon_sym_PACKAGE] = ACTIONS(2912), + [anon_sym_Private] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_PRIVATE] = ACTIONS(2912), + [anon_sym_Public] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_PUBLIC] = ACTIONS(2912), + [anon_sym_Remote] = ACTIONS(2912), + [anon_sym_remote] = ACTIONS(2912), + [anon_sym_REMOTE] = ACTIONS(2912), + [anon_sym_Return] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_RETURN] = ACTIONS(2912), + [anon_sym_Static] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_STATIC] = ACTIONS(2912), + [anon_sym_Switch] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_SWITCH] = ACTIONS(2912), + [anon_sym_Throw] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_THROW] = ACTIONS(2912), + [anon_sym_Try] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_TRY] = ACTIONS(2912), + [anon_sym_Var] = ACTIONS(2912), + [anon_sym_var] = ACTIONS(2912), + [anon_sym_VAR] = ACTIONS(2912), + [anon_sym_While] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_WHILE] = ACTIONS(2912), + [anon_sym_With] = ACTIONS(2912), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_WITH] = ACTIONS(2912), + [sym_cf_comment] = ACTIONS(2910), + [sym__java_block_open] = ACTIONS(2910), + [sym__static_type_prefix] = ACTIONS(2910), + }, + [STATE(1015)] = { + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_let] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_Query] = ACTIONS(2952), + [anon_sym_query] = ACTIONS(2952), + [anon_sym_QUERY] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_unary_operator_token1] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [sym_comment] = ACTIONS(2950), + [aux_sym_number_token1] = ACTIONS(2952), + [aux_sym_number_token2] = ACTIONS(2950), + [anon_sym_This] = ACTIONS(2952), + [anon_sym_this] = ACTIONS(2952), + [anon_sym_THIS] = ACTIONS(2952), + [anon_sym_Super] = ACTIONS(2952), + [anon_sym_super] = ACTIONS(2952), + [anon_sym_SUPER] = ACTIONS(2952), + [anon_sym_True] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2952), + [anon_sym_TRUE] = ACTIONS(2952), + [anon_sym_False] = ACTIONS(2952), + [anon_sym_false] = ACTIONS(2952), + [anon_sym_FALSE] = ACTIONS(2952), + [anon_sym_Null] = ACTIONS(2952), + [anon_sym_null] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_Undefined] = ACTIONS(2952), + [anon_sym_undefined] = ACTIONS(2952), + [anon_sym_UNDEFINED] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2952), + [anon_sym_set] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [sym_hash_empty] = ACTIONS(2950), + [anon_sym_export] = ACTIONS(2952), + [anon_sym_QueryExecute] = ACTIONS(2952), + [anon_sym_queryexecute] = ACTIONS(2952), + [anon_sym_QUERYEXECUTE] = ACTIONS(2952), + [anon_sym_queryExecute] = ACTIONS(2952), + [anon_sym_BQUOTE] = ACTIONS(2952), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2950), + [anon_sym_Abstract] = ACTIONS(2952), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_ABSTRACT] = ACTIONS(2952), + [anon_sym_Break] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_BREAK] = ACTIONS(2952), + [anon_sym_Component] = ACTIONS(2952), + [anon_sym_component] = ACTIONS(2952), + [anon_sym_COMPONENT] = ACTIONS(2952), + [anon_sym_Continue] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_CONTINUE] = ACTIONS(2952), + [anon_sym_Debugger] = ACTIONS(2952), + [anon_sym_debugger] = ACTIONS(2952), + [anon_sym_DEBUGGER] = ACTIONS(2952), + [anon_sym_Do] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_DO] = ACTIONS(2952), + [anon_sym_Final] = ACTIONS(2952), + [anon_sym_final] = ACTIONS(2952), + [anon_sym_FINAL] = ACTIONS(2952), + [anon_sym_For] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_FOR] = ACTIONS(2952), + [anon_sym_Function] = ACTIONS(2952), + [anon_sym_function] = ACTIONS(2952), + [anon_sym_FUNCTION] = ACTIONS(2952), + [anon_sym_If] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_IF] = ACTIONS(2952), + [anon_sym_Import] = ACTIONS(2952), + [anon_sym_import] = ACTIONS(2952), + [anon_sym_IMPORT] = ACTIONS(2952), + [anon_sym_Include] = ACTIONS(2952), + [anon_sym_include] = ACTIONS(2952), + [anon_sym_INCLUDE] = ACTIONS(2952), + [anon_sym_Interface] = ACTIONS(2952), + [anon_sym_interface] = ACTIONS(2952), + [anon_sym_INTERFACE] = ACTIONS(2952), + [anon_sym_New] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_NEW] = ACTIONS(2952), + [anon_sym_Package] = ACTIONS(2952), + [anon_sym_package] = ACTIONS(2952), + [anon_sym_PACKAGE] = ACTIONS(2952), + [anon_sym_Private] = ACTIONS(2952), + [anon_sym_private] = ACTIONS(2952), + [anon_sym_PRIVATE] = ACTIONS(2952), + [anon_sym_Public] = ACTIONS(2952), + [anon_sym_public] = ACTIONS(2952), + [anon_sym_PUBLIC] = ACTIONS(2952), + [anon_sym_Remote] = ACTIONS(2952), + [anon_sym_remote] = ACTIONS(2952), + [anon_sym_REMOTE] = ACTIONS(2952), + [anon_sym_Return] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_RETURN] = ACTIONS(2952), + [anon_sym_Static] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_STATIC] = ACTIONS(2952), + [anon_sym_Switch] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_SWITCH] = ACTIONS(2952), + [anon_sym_Throw] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_THROW] = ACTIONS(2952), + [anon_sym_Try] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_TRY] = ACTIONS(2952), + [anon_sym_Var] = ACTIONS(2952), + [anon_sym_var] = ACTIONS(2952), + [anon_sym_VAR] = ACTIONS(2952), + [anon_sym_While] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_WHILE] = ACTIONS(2952), + [anon_sym_With] = ACTIONS(2952), + [anon_sym_with] = ACTIONS(2952), + [anon_sym_WITH] = ACTIONS(2952), + [sym_cf_comment] = ACTIONS(2950), + [sym__java_block_open] = ACTIONS(2950), + [sym__static_type_prefix] = ACTIONS(2950), + }, + [STATE(1016)] = { + [sym_statement_block] = STATE(4222), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_query_tag_repeat1] = STATE(1099), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3625), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -187731,126 +196924,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3627), + [sym_tag_linefeed] = ACTIONS(3629), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(951)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3430), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4737), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4737), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2737), - [sym_hash_expression] = STATE(2737), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_arguments_repeat1] = STATE(4739), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [STATE(1017)] = { + [sym_statement_block] = STATE(4869), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3631), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -187869,537 +197059,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3631), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(952)] = { - [sym_identifier] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_Query] = ACTIONS(3336), - [anon_sym_query] = ACTIONS(3336), - [anon_sym_QUERY] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [aux_sym_unary_operator_token1] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3336), - [aux_sym_number_token2] = ACTIONS(3338), - [anon_sym_This] = ACTIONS(3336), - [anon_sym_this] = ACTIONS(3336), - [anon_sym_THIS] = ACTIONS(3336), - [anon_sym_Super] = ACTIONS(3336), - [anon_sym_super] = ACTIONS(3336), - [anon_sym_SUPER] = ACTIONS(3336), - [anon_sym_True] = ACTIONS(3336), - [anon_sym_true] = ACTIONS(3336), - [anon_sym_TRUE] = ACTIONS(3336), - [anon_sym_False] = ACTIONS(3336), - [anon_sym_false] = ACTIONS(3336), - [anon_sym_FALSE] = ACTIONS(3336), - [anon_sym_Null] = ACTIONS(3336), - [anon_sym_null] = ACTIONS(3336), - [anon_sym_NULL] = ACTIONS(3336), - [anon_sym_Undefined] = ACTIONS(3336), - [anon_sym_undefined] = ACTIONS(3336), - [anon_sym_UNDEFINED] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_POUND] = ACTIONS(3336), - [sym_hash_empty] = ACTIONS(3338), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_QueryExecute] = ACTIONS(3336), - [anon_sym_queryexecute] = ACTIONS(3336), - [anon_sym_QUERYEXECUTE] = ACTIONS(3336), - [anon_sym_queryExecute] = ACTIONS(3336), - [anon_sym_BQUOTE] = ACTIONS(3336), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3338), - [anon_sym_Abstract] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_ABSTRACT] = ACTIONS(3336), - [anon_sym_Break] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_BREAK] = ACTIONS(3336), - [anon_sym_Component] = ACTIONS(3336), - [anon_sym_component] = ACTIONS(3336), - [anon_sym_COMPONENT] = ACTIONS(3336), - [anon_sym_Continue] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_CONTINUE] = ACTIONS(3336), - [anon_sym_Debugger] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_DEBUGGER] = ACTIONS(3336), - [anon_sym_Do] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_DO] = ACTIONS(3336), - [anon_sym_Final] = ACTIONS(3336), - [anon_sym_final] = ACTIONS(3336), - [anon_sym_FINAL] = ACTIONS(3336), - [anon_sym_For] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_FOR] = ACTIONS(3336), - [anon_sym_Function] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_FUNCTION] = ACTIONS(3336), - [anon_sym_If] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_IF] = ACTIONS(3336), - [anon_sym_Import] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_IMPORT] = ACTIONS(3336), - [anon_sym_Include] = ACTIONS(3336), - [anon_sym_include] = ACTIONS(3336), - [anon_sym_INCLUDE] = ACTIONS(3336), - [anon_sym_Interface] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_INTERFACE] = ACTIONS(3336), - [anon_sym_New] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_NEW] = ACTIONS(3336), - [anon_sym_Package] = ACTIONS(3336), - [anon_sym_package] = ACTIONS(3336), - [anon_sym_PACKAGE] = ACTIONS(3336), - [anon_sym_Private] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_PRIVATE] = ACTIONS(3336), - [anon_sym_Property] = ACTIONS(3336), - [anon_sym_property] = ACTIONS(3336), - [anon_sym_PROPERTY] = ACTIONS(3336), - [anon_sym_Public] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_PUBLIC] = ACTIONS(3336), - [anon_sym_Remote] = ACTIONS(3336), - [anon_sym_remote] = ACTIONS(3336), - [anon_sym_REMOTE] = ACTIONS(3336), - [anon_sym_Return] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_RETURN] = ACTIONS(3336), - [anon_sym_Static] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_STATIC] = ACTIONS(3336), - [anon_sym_Switch] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_SWITCH] = ACTIONS(3336), - [anon_sym_Throw] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_THROW] = ACTIONS(3336), - [anon_sym_Try] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_TRY] = ACTIONS(3336), - [anon_sym_Var] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_VAR] = ACTIONS(3336), - [anon_sym_While] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_WHILE] = ACTIONS(3336), - [anon_sym_With] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_WITH] = ACTIONS(3336), - [sym_cf_comment] = ACTIONS(3338), - [sym__java_block_open] = ACTIONS(3338), - [sym__static_type_prefix] = ACTIONS(3338), + [STATE(1018)] = { + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_LPAREN] = ACTIONS(3633), + [anon_sym_SEMI] = ACTIONS(3633), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_Query] = ACTIONS(3636), + [anon_sym_query] = ACTIONS(3636), + [anon_sym_QUERY] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [aux_sym_unary_operator_token1] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3633), + [anon_sym_DASH_DASH] = ACTIONS(3633), + [anon_sym_DQUOTE] = ACTIONS(3633), + [anon_sym_SQUOTE] = ACTIONS(3633), + [sym_comment] = ACTIONS(3639), + [aux_sym_number_token1] = ACTIONS(3636), + [aux_sym_number_token2] = ACTIONS(3633), + [anon_sym_This] = ACTIONS(3636), + [anon_sym_this] = ACTIONS(3636), + [anon_sym_THIS] = ACTIONS(3636), + [anon_sym_Super] = ACTIONS(3636), + [anon_sym_super] = ACTIONS(3636), + [anon_sym_SUPER] = ACTIONS(3636), + [anon_sym_True] = ACTIONS(3636), + [anon_sym_true] = ACTIONS(3636), + [anon_sym_TRUE] = ACTIONS(3636), + [anon_sym_False] = ACTIONS(3636), + [anon_sym_false] = ACTIONS(3636), + [anon_sym_FALSE] = ACTIONS(3636), + [anon_sym_Null] = ACTIONS(3636), + [anon_sym_null] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_Undefined] = ACTIONS(3636), + [anon_sym_undefined] = ACTIONS(3636), + [anon_sym_UNDEFINED] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_POUND] = ACTIONS(3636), + [sym_hash_empty] = ACTIONS(3633), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_QueryExecute] = ACTIONS(3636), + [anon_sym_queryexecute] = ACTIONS(3636), + [anon_sym_QUERYEXECUTE] = ACTIONS(3636), + [anon_sym_queryExecute] = ACTIONS(3636), + [anon_sym_BQUOTE] = ACTIONS(3636), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3633), + [anon_sym_Abstract] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_ABSTRACT] = ACTIONS(3636), + [anon_sym_Break] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_BREAK] = ACTIONS(3636), + [anon_sym_Component] = ACTIONS(3636), + [anon_sym_component] = ACTIONS(3636), + [anon_sym_COMPONENT] = ACTIONS(3636), + [anon_sym_Continue] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_CONTINUE] = ACTIONS(3636), + [anon_sym_Debugger] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_DEBUGGER] = ACTIONS(3636), + [anon_sym_Do] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_DO] = ACTIONS(3636), + [anon_sym_Final] = ACTIONS(3636), + [anon_sym_final] = ACTIONS(3636), + [anon_sym_FINAL] = ACTIONS(3636), + [anon_sym_For] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_FOR] = ACTIONS(3636), + [anon_sym_Function] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_FUNCTION] = ACTIONS(3636), + [anon_sym_If] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_IF] = ACTIONS(3636), + [anon_sym_Import] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_IMPORT] = ACTIONS(3636), + [anon_sym_Include] = ACTIONS(3636), + [anon_sym_include] = ACTIONS(3636), + [anon_sym_INCLUDE] = ACTIONS(3636), + [anon_sym_Interface] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_INTERFACE] = ACTIONS(3636), + [anon_sym_New] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_NEW] = ACTIONS(3636), + [anon_sym_Package] = ACTIONS(3636), + [anon_sym_package] = ACTIONS(3636), + [anon_sym_PACKAGE] = ACTIONS(3636), + [anon_sym_Private] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_PRIVATE] = ACTIONS(3636), + [anon_sym_Public] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_PUBLIC] = ACTIONS(3636), + [anon_sym_Remote] = ACTIONS(3636), + [anon_sym_remote] = ACTIONS(3636), + [anon_sym_REMOTE] = ACTIONS(3636), + [anon_sym_Return] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_RETURN] = ACTIONS(3636), + [anon_sym_Static] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_STATIC] = ACTIONS(3636), + [anon_sym_Switch] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_SWITCH] = ACTIONS(3636), + [anon_sym_Throw] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_THROW] = ACTIONS(3636), + [anon_sym_Try] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_TRY] = ACTIONS(3636), + [anon_sym_Var] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_VAR] = ACTIONS(3636), + [anon_sym_While] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_WHILE] = ACTIONS(3636), + [anon_sym_With] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_WITH] = ACTIONS(3636), + [sym_cf_comment] = ACTIONS(3633), + [sym__java_block_open] = ACTIONS(3633), + [sym__static_type_prefix] = ACTIONS(3633), }, - [STATE(953)] = { - [sym_identifier] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_Query] = ACTIONS(3340), - [anon_sym_query] = ACTIONS(3340), - [anon_sym_QUERY] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [aux_sym_unary_operator_token1] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3340), - [aux_sym_number_token2] = ACTIONS(3342), - [anon_sym_This] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3340), - [anon_sym_THIS] = ACTIONS(3340), - [anon_sym_Super] = ACTIONS(3340), - [anon_sym_super] = ACTIONS(3340), - [anon_sym_SUPER] = ACTIONS(3340), - [anon_sym_True] = ACTIONS(3340), - [anon_sym_true] = ACTIONS(3340), - [anon_sym_TRUE] = ACTIONS(3340), - [anon_sym_False] = ACTIONS(3340), - [anon_sym_false] = ACTIONS(3340), - [anon_sym_FALSE] = ACTIONS(3340), - [anon_sym_Null] = ACTIONS(3340), - [anon_sym_null] = ACTIONS(3340), - [anon_sym_NULL] = ACTIONS(3340), - [anon_sym_Undefined] = ACTIONS(3340), - [anon_sym_undefined] = ACTIONS(3340), - [anon_sym_UNDEFINED] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_POUND] = ACTIONS(3340), - [sym_hash_empty] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_QueryExecute] = ACTIONS(3340), - [anon_sym_queryexecute] = ACTIONS(3340), - [anon_sym_QUERYEXECUTE] = ACTIONS(3340), - [anon_sym_queryExecute] = ACTIONS(3340), - [anon_sym_BQUOTE] = ACTIONS(3340), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3342), - [anon_sym_Abstract] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_ABSTRACT] = ACTIONS(3340), - [anon_sym_Break] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_BREAK] = ACTIONS(3340), - [anon_sym_Component] = ACTIONS(3340), - [anon_sym_component] = ACTIONS(3340), - [anon_sym_COMPONENT] = ACTIONS(3340), - [anon_sym_Continue] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_CONTINUE] = ACTIONS(3340), - [anon_sym_Debugger] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_DEBUGGER] = ACTIONS(3340), - [anon_sym_Do] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_DO] = ACTIONS(3340), - [anon_sym_Final] = ACTIONS(3340), - [anon_sym_final] = ACTIONS(3340), - [anon_sym_FINAL] = ACTIONS(3340), - [anon_sym_For] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_FOR] = ACTIONS(3340), - [anon_sym_Function] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_FUNCTION] = ACTIONS(3340), - [anon_sym_If] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_IF] = ACTIONS(3340), - [anon_sym_Import] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_IMPORT] = ACTIONS(3340), - [anon_sym_Include] = ACTIONS(3340), - [anon_sym_include] = ACTIONS(3340), - [anon_sym_INCLUDE] = ACTIONS(3340), - [anon_sym_Interface] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_INTERFACE] = ACTIONS(3340), - [anon_sym_New] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_NEW] = ACTIONS(3340), - [anon_sym_Package] = ACTIONS(3340), - [anon_sym_package] = ACTIONS(3340), - [anon_sym_PACKAGE] = ACTIONS(3340), - [anon_sym_Private] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_PRIVATE] = ACTIONS(3340), - [anon_sym_Property] = ACTIONS(3340), - [anon_sym_property] = ACTIONS(3340), - [anon_sym_PROPERTY] = ACTIONS(3340), - [anon_sym_Public] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_PUBLIC] = ACTIONS(3340), - [anon_sym_Remote] = ACTIONS(3340), - [anon_sym_remote] = ACTIONS(3340), - [anon_sym_REMOTE] = ACTIONS(3340), - [anon_sym_Return] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_RETURN] = ACTIONS(3340), - [anon_sym_Static] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_STATIC] = ACTIONS(3340), - [anon_sym_Switch] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_SWITCH] = ACTIONS(3340), - [anon_sym_Throw] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_THROW] = ACTIONS(3340), - [anon_sym_Try] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_TRY] = ACTIONS(3340), - [anon_sym_Var] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_VAR] = ACTIONS(3340), - [anon_sym_While] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_WHILE] = ACTIONS(3340), - [anon_sym_With] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_WITH] = ACTIONS(3340), - [sym_cf_comment] = ACTIONS(3342), - [sym__java_block_open] = ACTIONS(3342), - [sym__static_type_prefix] = ACTIONS(3342), + [STATE(1019)] = { + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_Query] = ACTIONS(2980), + [anon_sym_query] = ACTIONS(2980), + [anon_sym_QUERY] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [aux_sym_unary_operator_token1] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [sym_comment] = ACTIONS(2978), + [aux_sym_number_token1] = ACTIONS(2980), + [aux_sym_number_token2] = ACTIONS(2978), + [anon_sym_This] = ACTIONS(2980), + [anon_sym_this] = ACTIONS(2980), + [anon_sym_THIS] = ACTIONS(2980), + [anon_sym_Super] = ACTIONS(2980), + [anon_sym_super] = ACTIONS(2980), + [anon_sym_SUPER] = ACTIONS(2980), + [anon_sym_True] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2980), + [anon_sym_TRUE] = ACTIONS(2980), + [anon_sym_False] = ACTIONS(2980), + [anon_sym_false] = ACTIONS(2980), + [anon_sym_FALSE] = ACTIONS(2980), + [anon_sym_Null] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_Undefined] = ACTIONS(2980), + [anon_sym_undefined] = ACTIONS(2980), + [anon_sym_UNDEFINED] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [sym_hash_empty] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_QueryExecute] = ACTIONS(2980), + [anon_sym_queryexecute] = ACTIONS(2980), + [anon_sym_QUERYEXECUTE] = ACTIONS(2980), + [anon_sym_queryExecute] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2978), + [anon_sym_Abstract] = ACTIONS(2980), + [anon_sym_abstract] = ACTIONS(2980), + [anon_sym_ABSTRACT] = ACTIONS(2980), + [anon_sym_Break] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_BREAK] = ACTIONS(2980), + [anon_sym_Component] = ACTIONS(2980), + [anon_sym_component] = ACTIONS(2980), + [anon_sym_COMPONENT] = ACTIONS(2980), + [anon_sym_Continue] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_CONTINUE] = ACTIONS(2980), + [anon_sym_Debugger] = ACTIONS(2980), + [anon_sym_debugger] = ACTIONS(2980), + [anon_sym_DEBUGGER] = ACTIONS(2980), + [anon_sym_Do] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_DO] = ACTIONS(2980), + [anon_sym_Final] = ACTIONS(2980), + [anon_sym_final] = ACTIONS(2980), + [anon_sym_FINAL] = ACTIONS(2980), + [anon_sym_For] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_FOR] = ACTIONS(2980), + [anon_sym_Function] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_FUNCTION] = ACTIONS(2980), + [anon_sym_If] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_IF] = ACTIONS(2980), + [anon_sym_Import] = ACTIONS(2980), + [anon_sym_import] = ACTIONS(2980), + [anon_sym_IMPORT] = ACTIONS(2980), + [anon_sym_Include] = ACTIONS(2980), + [anon_sym_include] = ACTIONS(2980), + [anon_sym_INCLUDE] = ACTIONS(2980), + [anon_sym_Interface] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_INTERFACE] = ACTIONS(2980), + [anon_sym_New] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_NEW] = ACTIONS(2980), + [anon_sym_Package] = ACTIONS(2980), + [anon_sym_package] = ACTIONS(2980), + [anon_sym_PACKAGE] = ACTIONS(2980), + [anon_sym_Private] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_PRIVATE] = ACTIONS(2980), + [anon_sym_Public] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_PUBLIC] = ACTIONS(2980), + [anon_sym_Remote] = ACTIONS(2980), + [anon_sym_remote] = ACTIONS(2980), + [anon_sym_REMOTE] = ACTIONS(2980), + [anon_sym_Return] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_RETURN] = ACTIONS(2980), + [anon_sym_Static] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_STATIC] = ACTIONS(2980), + [anon_sym_Switch] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_SWITCH] = ACTIONS(2980), + [anon_sym_Throw] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_THROW] = ACTIONS(2980), + [anon_sym_Try] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_TRY] = ACTIONS(2980), + [anon_sym_Var] = ACTIONS(2980), + [anon_sym_var] = ACTIONS(2980), + [anon_sym_VAR] = ACTIONS(2980), + [anon_sym_While] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_WHILE] = ACTIONS(2980), + [anon_sym_With] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2980), + [anon_sym_WITH] = ACTIONS(2980), + [sym_cf_comment] = ACTIONS(2978), + [sym__java_block_open] = ACTIONS(2978), + [sym__static_type_prefix] = ACTIONS(2978), }, - [STATE(954)] = { - [sym_variable_declaration] = STATE(1186), - [sym_empty_statement] = STATE(1186), - [sym_parenthesized_expression] = STATE(2230), - [sym_expression] = STATE(3552), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4110), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2230), - [sym_subscript_expression] = STATE(2230), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4110), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5204), - [sym_string] = STATE(2580), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2580), - [sym_undefined] = STATE(2580), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3394), - [sym_hash_expression] = STATE(3394), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_Query] = ACTIONS(3308), - [anon_sym_query] = ACTIONS(3308), - [anon_sym_QUERY] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_QueryExecute] = ACTIONS(3312), - [anon_sym_queryexecute] = ACTIONS(3312), - [anon_sym_QUERYEXECUTE] = ACTIONS(3312), - [anon_sym_queryExecute] = ACTIONS(3312), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_ABSTRACT] = ACTIONS(3308), - [anon_sym_Component] = ACTIONS(3308), - [anon_sym_component] = ACTIONS(3308), - [anon_sym_COMPONENT] = ACTIONS(3308), - [anon_sym_Debugger] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_DEBUGGER] = ACTIONS(3308), - [anon_sym_Final] = ACTIONS(3314), - [anon_sym_final] = ACTIONS(3314), - [anon_sym_FINAL] = ACTIONS(3314), - [anon_sym_Function] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_FUNCTION] = ACTIONS(3316), - [anon_sym_Include] = ACTIONS(3308), - [anon_sym_include] = ACTIONS(3308), - [anon_sym_INCLUDE] = ACTIONS(3308), - [anon_sym_New] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_NEW] = ACTIONS(3318), - [anon_sym_Package] = ACTIONS(3320), - [anon_sym_package] = ACTIONS(3320), - [anon_sym_PACKAGE] = ACTIONS(3320), - [anon_sym_Private] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_PRIVATE] = ACTIONS(3320), - [anon_sym_Public] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_PUBLIC] = ACTIONS(3320), - [anon_sym_Remote] = ACTIONS(3320), - [anon_sym_remote] = ACTIONS(3320), - [anon_sym_REMOTE] = ACTIONS(3320), - [anon_sym_Static] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_STATIC] = ACTIONS(3308), - [anon_sym_Var] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_VAR] = ACTIONS(3322), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1020)] = { + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_let] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_Query] = ACTIONS(2952), + [anon_sym_query] = ACTIONS(2952), + [anon_sym_QUERY] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [aux_sym_unary_operator_token1] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [sym_comment] = ACTIONS(2950), + [aux_sym_number_token1] = ACTIONS(2952), + [aux_sym_number_token2] = ACTIONS(2950), + [anon_sym_This] = ACTIONS(2952), + [anon_sym_this] = ACTIONS(2952), + [anon_sym_THIS] = ACTIONS(2952), + [anon_sym_Super] = ACTIONS(2952), + [anon_sym_super] = ACTIONS(2952), + [anon_sym_SUPER] = ACTIONS(2952), + [anon_sym_True] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2952), + [anon_sym_TRUE] = ACTIONS(2952), + [anon_sym_False] = ACTIONS(2952), + [anon_sym_false] = ACTIONS(2952), + [anon_sym_FALSE] = ACTIONS(2952), + [anon_sym_Null] = ACTIONS(2952), + [anon_sym_null] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_Undefined] = ACTIONS(2952), + [anon_sym_undefined] = ACTIONS(2952), + [anon_sym_UNDEFINED] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2952), + [anon_sym_set] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [sym_hash_empty] = ACTIONS(2950), + [anon_sym_export] = ACTIONS(2952), + [anon_sym_QueryExecute] = ACTIONS(2952), + [anon_sym_queryexecute] = ACTIONS(2952), + [anon_sym_QUERYEXECUTE] = ACTIONS(2952), + [anon_sym_queryExecute] = ACTIONS(2952), + [anon_sym_BQUOTE] = ACTIONS(2952), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2950), + [anon_sym_Abstract] = ACTIONS(2952), + [anon_sym_abstract] = ACTIONS(2952), + [anon_sym_ABSTRACT] = ACTIONS(2952), + [anon_sym_Break] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_BREAK] = ACTIONS(2952), + [anon_sym_Component] = ACTIONS(2952), + [anon_sym_component] = ACTIONS(2952), + [anon_sym_COMPONENT] = ACTIONS(2952), + [anon_sym_Continue] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_CONTINUE] = ACTIONS(2952), + [anon_sym_Debugger] = ACTIONS(2952), + [anon_sym_debugger] = ACTIONS(2952), + [anon_sym_DEBUGGER] = ACTIONS(2952), + [anon_sym_Do] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_DO] = ACTIONS(2952), + [anon_sym_Final] = ACTIONS(2952), + [anon_sym_final] = ACTIONS(2952), + [anon_sym_FINAL] = ACTIONS(2952), + [anon_sym_For] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_FOR] = ACTIONS(2952), + [anon_sym_Function] = ACTIONS(2952), + [anon_sym_function] = ACTIONS(2952), + [anon_sym_FUNCTION] = ACTIONS(2952), + [anon_sym_If] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_IF] = ACTIONS(2952), + [anon_sym_Import] = ACTIONS(2952), + [anon_sym_import] = ACTIONS(2952), + [anon_sym_IMPORT] = ACTIONS(2952), + [anon_sym_Include] = ACTIONS(2952), + [anon_sym_include] = ACTIONS(2952), + [anon_sym_INCLUDE] = ACTIONS(2952), + [anon_sym_Interface] = ACTIONS(2952), + [anon_sym_interface] = ACTIONS(2952), + [anon_sym_INTERFACE] = ACTIONS(2952), + [anon_sym_New] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_NEW] = ACTIONS(2952), + [anon_sym_Package] = ACTIONS(2952), + [anon_sym_package] = ACTIONS(2952), + [anon_sym_PACKAGE] = ACTIONS(2952), + [anon_sym_Private] = ACTIONS(2952), + [anon_sym_private] = ACTIONS(2952), + [anon_sym_PRIVATE] = ACTIONS(2952), + [anon_sym_Public] = ACTIONS(2952), + [anon_sym_public] = ACTIONS(2952), + [anon_sym_PUBLIC] = ACTIONS(2952), + [anon_sym_Remote] = ACTIONS(2952), + [anon_sym_remote] = ACTIONS(2952), + [anon_sym_REMOTE] = ACTIONS(2952), + [anon_sym_Return] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_RETURN] = ACTIONS(2952), + [anon_sym_Static] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_STATIC] = ACTIONS(2952), + [anon_sym_Switch] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_SWITCH] = ACTIONS(2952), + [anon_sym_Throw] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_THROW] = ACTIONS(2952), + [anon_sym_Try] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_TRY] = ACTIONS(2952), + [anon_sym_Var] = ACTIONS(2952), + [anon_sym_var] = ACTIONS(2952), + [anon_sym_VAR] = ACTIONS(2952), + [anon_sym_While] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_WHILE] = ACTIONS(2952), + [anon_sym_With] = ACTIONS(2952), + [anon_sym_with] = ACTIONS(2952), + [anon_sym_WITH] = ACTIONS(2952), + [sym_cf_comment] = ACTIONS(2950), + [sym__java_block_open] = ACTIONS(2950), + [sym__static_type_prefix] = ACTIONS(2950), }, - [STATE(955)] = { - [sym_variable_declaration] = STATE(1193), - [sym_empty_statement] = STATE(1193), - [sym_parenthesized_expression] = STATE(2230), - [sym_expression] = STATE(3573), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4110), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2230), - [sym_subscript_expression] = STATE(2230), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4110), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5258), - [sym_string] = STATE(2580), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2580), - [sym_undefined] = STATE(2580), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3405), - [sym_hash_expression] = STATE(3405), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_Query] = ACTIONS(3308), - [anon_sym_query] = ACTIONS(3308), - [anon_sym_QUERY] = ACTIONS(3308), + [STATE(1021)] = { + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_Query] = ACTIONS(2980), + [anon_sym_query] = ACTIONS(2980), + [anon_sym_QUERY] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [aux_sym_unary_operator_token1] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [sym_comment] = ACTIONS(2978), + [aux_sym_number_token1] = ACTIONS(2980), + [aux_sym_number_token2] = ACTIONS(2978), + [anon_sym_This] = ACTIONS(2980), + [anon_sym_this] = ACTIONS(2980), + [anon_sym_THIS] = ACTIONS(2980), + [anon_sym_Super] = ACTIONS(2980), + [anon_sym_super] = ACTIONS(2980), + [anon_sym_SUPER] = ACTIONS(2980), + [anon_sym_True] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2980), + [anon_sym_TRUE] = ACTIONS(2980), + [anon_sym_False] = ACTIONS(2980), + [anon_sym_false] = ACTIONS(2980), + [anon_sym_FALSE] = ACTIONS(2980), + [anon_sym_Null] = ACTIONS(2980), + [anon_sym_null] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_Undefined] = ACTIONS(2980), + [anon_sym_undefined] = ACTIONS(2980), + [anon_sym_UNDEFINED] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [sym_hash_empty] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_QueryExecute] = ACTIONS(2980), + [anon_sym_queryexecute] = ACTIONS(2980), + [anon_sym_QUERYEXECUTE] = ACTIONS(2980), + [anon_sym_queryExecute] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2978), + [anon_sym_Abstract] = ACTIONS(2980), + [anon_sym_abstract] = ACTIONS(2980), + [anon_sym_ABSTRACT] = ACTIONS(2980), + [anon_sym_Break] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_BREAK] = ACTIONS(2980), + [anon_sym_Component] = ACTIONS(2980), + [anon_sym_component] = ACTIONS(2980), + [anon_sym_COMPONENT] = ACTIONS(2980), + [anon_sym_Continue] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_CONTINUE] = ACTIONS(2980), + [anon_sym_Debugger] = ACTIONS(2980), + [anon_sym_debugger] = ACTIONS(2980), + [anon_sym_DEBUGGER] = ACTIONS(2980), + [anon_sym_Do] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_DO] = ACTIONS(2980), + [anon_sym_Final] = ACTIONS(2980), + [anon_sym_final] = ACTIONS(2980), + [anon_sym_FINAL] = ACTIONS(2980), + [anon_sym_For] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_FOR] = ACTIONS(2980), + [anon_sym_Function] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2980), + [anon_sym_FUNCTION] = ACTIONS(2980), + [anon_sym_If] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_IF] = ACTIONS(2980), + [anon_sym_Import] = ACTIONS(2980), + [anon_sym_import] = ACTIONS(2980), + [anon_sym_IMPORT] = ACTIONS(2980), + [anon_sym_Include] = ACTIONS(2980), + [anon_sym_include] = ACTIONS(2980), + [anon_sym_INCLUDE] = ACTIONS(2980), + [anon_sym_Interface] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_INTERFACE] = ACTIONS(2980), + [anon_sym_New] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_NEW] = ACTIONS(2980), + [anon_sym_Package] = ACTIONS(2980), + [anon_sym_package] = ACTIONS(2980), + [anon_sym_PACKAGE] = ACTIONS(2980), + [anon_sym_Private] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_PRIVATE] = ACTIONS(2980), + [anon_sym_Public] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_PUBLIC] = ACTIONS(2980), + [anon_sym_Remote] = ACTIONS(2980), + [anon_sym_remote] = ACTIONS(2980), + [anon_sym_REMOTE] = ACTIONS(2980), + [anon_sym_Return] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_RETURN] = ACTIONS(2980), + [anon_sym_Static] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_STATIC] = ACTIONS(2980), + [anon_sym_Switch] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_SWITCH] = ACTIONS(2980), + [anon_sym_Throw] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_THROW] = ACTIONS(2980), + [anon_sym_Try] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_TRY] = ACTIONS(2980), + [anon_sym_Var] = ACTIONS(2980), + [anon_sym_var] = ACTIONS(2980), + [anon_sym_VAR] = ACTIONS(2980), + [anon_sym_While] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_WHILE] = ACTIONS(2980), + [anon_sym_With] = ACTIONS(2980), + [anon_sym_with] = ACTIONS(2980), + [anon_sym_WITH] = ACTIONS(2980), + [sym_cf_comment] = ACTIONS(2978), + [sym__java_block_open] = ACTIONS(2978), + [sym__static_type_prefix] = ACTIONS(2978), + }, + [STATE(1022)] = { + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2918), + [anon_sym_Query] = ACTIONS(2920), + [anon_sym_query] = ACTIONS(2920), + [anon_sym_QUERY] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [aux_sym_unary_operator_token1] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [sym_comment] = ACTIONS(2918), + [aux_sym_number_token1] = ACTIONS(2920), + [aux_sym_number_token2] = ACTIONS(2918), + [anon_sym_This] = ACTIONS(2920), + [anon_sym_this] = ACTIONS(2920), + [anon_sym_THIS] = ACTIONS(2920), + [anon_sym_Super] = ACTIONS(2920), + [anon_sym_super] = ACTIONS(2920), + [anon_sym_SUPER] = ACTIONS(2920), + [anon_sym_True] = ACTIONS(2920), + [anon_sym_true] = ACTIONS(2920), + [anon_sym_TRUE] = ACTIONS(2920), + [anon_sym_False] = ACTIONS(2920), + [anon_sym_false] = ACTIONS(2920), + [anon_sym_FALSE] = ACTIONS(2920), + [anon_sym_Null] = ACTIONS(2920), + [anon_sym_null] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_Undefined] = ACTIONS(2920), + [anon_sym_undefined] = ACTIONS(2920), + [anon_sym_UNDEFINED] = ACTIONS(2920), + [anon_sym_get] = ACTIONS(2920), + [anon_sym_set] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(2920), + [sym_hash_empty] = ACTIONS(2918), + [anon_sym_export] = ACTIONS(2920), + [anon_sym_QueryExecute] = ACTIONS(2920), + [anon_sym_queryexecute] = ACTIONS(2920), + [anon_sym_QUERYEXECUTE] = ACTIONS(2920), + [anon_sym_queryExecute] = ACTIONS(2920), + [anon_sym_BQUOTE] = ACTIONS(2920), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2918), + [anon_sym_Abstract] = ACTIONS(2920), + [anon_sym_abstract] = ACTIONS(2920), + [anon_sym_ABSTRACT] = ACTIONS(2920), + [anon_sym_Break] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_BREAK] = ACTIONS(2920), + [anon_sym_Component] = ACTIONS(2920), + [anon_sym_component] = ACTIONS(2920), + [anon_sym_COMPONENT] = ACTIONS(2920), + [anon_sym_Continue] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_CONTINUE] = ACTIONS(2920), + [anon_sym_Debugger] = ACTIONS(2920), + [anon_sym_debugger] = ACTIONS(2920), + [anon_sym_DEBUGGER] = ACTIONS(2920), + [anon_sym_Do] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_DO] = ACTIONS(2920), + [anon_sym_Final] = ACTIONS(2920), + [anon_sym_final] = ACTIONS(2920), + [anon_sym_FINAL] = ACTIONS(2920), + [anon_sym_For] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_FOR] = ACTIONS(2920), + [anon_sym_Function] = ACTIONS(2920), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_FUNCTION] = ACTIONS(2920), + [anon_sym_If] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_IF] = ACTIONS(2920), + [anon_sym_Import] = ACTIONS(2920), + [anon_sym_import] = ACTIONS(2920), + [anon_sym_IMPORT] = ACTIONS(2920), + [anon_sym_Include] = ACTIONS(2920), + [anon_sym_include] = ACTIONS(2920), + [anon_sym_INCLUDE] = ACTIONS(2920), + [anon_sym_Interface] = ACTIONS(2920), + [anon_sym_interface] = ACTIONS(2920), + [anon_sym_INTERFACE] = ACTIONS(2920), + [anon_sym_New] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_NEW] = ACTIONS(2920), + [anon_sym_Package] = ACTIONS(2920), + [anon_sym_package] = ACTIONS(2920), + [anon_sym_PACKAGE] = ACTIONS(2920), + [anon_sym_Private] = ACTIONS(2920), + [anon_sym_private] = ACTIONS(2920), + [anon_sym_PRIVATE] = ACTIONS(2920), + [anon_sym_Public] = ACTIONS(2920), + [anon_sym_public] = ACTIONS(2920), + [anon_sym_PUBLIC] = ACTIONS(2920), + [anon_sym_Remote] = ACTIONS(2920), + [anon_sym_remote] = ACTIONS(2920), + [anon_sym_REMOTE] = ACTIONS(2920), + [anon_sym_Return] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_RETURN] = ACTIONS(2920), + [anon_sym_Static] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_STATIC] = ACTIONS(2920), + [anon_sym_Switch] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_SWITCH] = ACTIONS(2920), + [anon_sym_Throw] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_THROW] = ACTIONS(2920), + [anon_sym_Try] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_TRY] = ACTIONS(2920), + [anon_sym_Var] = ACTIONS(2920), + [anon_sym_var] = ACTIONS(2920), + [anon_sym_VAR] = ACTIONS(2920), + [anon_sym_While] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_WHILE] = ACTIONS(2920), + [anon_sym_With] = ACTIONS(2920), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_WITH] = ACTIONS(2920), + [sym_cf_comment] = ACTIONS(2918), + [sym__java_block_open] = ACTIONS(2918), + [sym__static_type_prefix] = ACTIONS(2918), + }, + [STATE(1023)] = { + [sym_statement_block] = STATE(5016), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3641), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -188418,128 +197869,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_QueryExecute] = ACTIONS(3312), - [anon_sym_queryexecute] = ACTIONS(3312), - [anon_sym_QUERYEXECUTE] = ACTIONS(3312), - [anon_sym_queryExecute] = ACTIONS(3312), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_ABSTRACT] = ACTIONS(3308), - [anon_sym_Component] = ACTIONS(3308), - [anon_sym_component] = ACTIONS(3308), - [anon_sym_COMPONENT] = ACTIONS(3308), - [anon_sym_Debugger] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_DEBUGGER] = ACTIONS(3308), - [anon_sym_Final] = ACTIONS(3314), - [anon_sym_final] = ACTIONS(3314), - [anon_sym_FINAL] = ACTIONS(3314), - [anon_sym_Function] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_FUNCTION] = ACTIONS(3316), - [anon_sym_Include] = ACTIONS(3308), - [anon_sym_include] = ACTIONS(3308), - [anon_sym_INCLUDE] = ACTIONS(3308), - [anon_sym_New] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_NEW] = ACTIONS(3318), - [anon_sym_Package] = ACTIONS(3320), - [anon_sym_package] = ACTIONS(3320), - [anon_sym_PACKAGE] = ACTIONS(3320), - [anon_sym_Private] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_PRIVATE] = ACTIONS(3320), - [anon_sym_Public] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_PUBLIC] = ACTIONS(3320), - [anon_sym_Remote] = ACTIONS(3320), - [anon_sym_remote] = ACTIONS(3320), - [anon_sym_REMOTE] = ACTIONS(3320), - [anon_sym_Static] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_STATIC] = ACTIONS(3308), - [anon_sym_Var] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_VAR] = ACTIONS(3322), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3641), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(956)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4691), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4511), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4511), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3096), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3096), - [sym_undefined] = STATE(3096), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4452), - [sym_rest_pattern] = STATE(4411), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_pattern_repeat1] = STATE(4695), - [sym_identifier] = ACTIONS(3348), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_RBRACK] = ACTIONS(3356), - [anon_sym_Query] = ACTIONS(3352), - [anon_sym_query] = ACTIONS(3352), - [anon_sym_QUERY] = ACTIONS(3352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [STATE(1024)] = { + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_Query] = ACTIONS(2948), + [anon_sym_query] = ACTIONS(2948), + [anon_sym_QUERY] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [aux_sym_unary_operator_token1] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(2946), + [aux_sym_number_token1] = ACTIONS(2948), + [aux_sym_number_token2] = ACTIONS(2946), + [anon_sym_This] = ACTIONS(2948), + [anon_sym_this] = ACTIONS(2948), + [anon_sym_THIS] = ACTIONS(2948), + [anon_sym_Super] = ACTIONS(2948), + [anon_sym_super] = ACTIONS(2948), + [anon_sym_SUPER] = ACTIONS(2948), + [anon_sym_True] = ACTIONS(2948), + [anon_sym_true] = ACTIONS(2948), + [anon_sym_TRUE] = ACTIONS(2948), + [anon_sym_False] = ACTIONS(2948), + [anon_sym_false] = ACTIONS(2948), + [anon_sym_FALSE] = ACTIONS(2948), + [anon_sym_Null] = ACTIONS(2948), + [anon_sym_null] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_Undefined] = ACTIONS(2948), + [anon_sym_undefined] = ACTIONS(2948), + [anon_sym_UNDEFINED] = ACTIONS(2948), + [anon_sym_get] = ACTIONS(2948), + [anon_sym_set] = ACTIONS(2948), + [anon_sym_POUND] = ACTIONS(2948), + [sym_hash_empty] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2948), + [anon_sym_QueryExecute] = ACTIONS(2948), + [anon_sym_queryexecute] = ACTIONS(2948), + [anon_sym_QUERYEXECUTE] = ACTIONS(2948), + [anon_sym_queryExecute] = ACTIONS(2948), + [anon_sym_BQUOTE] = ACTIONS(2948), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2946), + [anon_sym_Abstract] = ACTIONS(2948), + [anon_sym_abstract] = ACTIONS(2948), + [anon_sym_ABSTRACT] = ACTIONS(2948), + [anon_sym_Break] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_BREAK] = ACTIONS(2948), + [anon_sym_Component] = ACTIONS(2948), + [anon_sym_component] = ACTIONS(2948), + [anon_sym_COMPONENT] = ACTIONS(2948), + [anon_sym_Continue] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_CONTINUE] = ACTIONS(2948), + [anon_sym_Debugger] = ACTIONS(2948), + [anon_sym_debugger] = ACTIONS(2948), + [anon_sym_DEBUGGER] = ACTIONS(2948), + [anon_sym_Do] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_DO] = ACTIONS(2948), + [anon_sym_Final] = ACTIONS(2948), + [anon_sym_final] = ACTIONS(2948), + [anon_sym_FINAL] = ACTIONS(2948), + [anon_sym_For] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_FOR] = ACTIONS(2948), + [anon_sym_Function] = ACTIONS(2948), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_FUNCTION] = ACTIONS(2948), + [anon_sym_If] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_IF] = ACTIONS(2948), + [anon_sym_Import] = ACTIONS(2948), + [anon_sym_import] = ACTIONS(2948), + [anon_sym_IMPORT] = ACTIONS(2948), + [anon_sym_Include] = ACTIONS(2948), + [anon_sym_include] = ACTIONS(2948), + [anon_sym_INCLUDE] = ACTIONS(2948), + [anon_sym_Interface] = ACTIONS(2948), + [anon_sym_interface] = ACTIONS(2948), + [anon_sym_INTERFACE] = ACTIONS(2948), + [anon_sym_New] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_NEW] = ACTIONS(2948), + [anon_sym_Package] = ACTIONS(2948), + [anon_sym_package] = ACTIONS(2948), + [anon_sym_PACKAGE] = ACTIONS(2948), + [anon_sym_Private] = ACTIONS(2948), + [anon_sym_private] = ACTIONS(2948), + [anon_sym_PRIVATE] = ACTIONS(2948), + [anon_sym_Public] = ACTIONS(2948), + [anon_sym_public] = ACTIONS(2948), + [anon_sym_PUBLIC] = ACTIONS(2948), + [anon_sym_Remote] = ACTIONS(2948), + [anon_sym_remote] = ACTIONS(2948), + [anon_sym_REMOTE] = ACTIONS(2948), + [anon_sym_Return] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_RETURN] = ACTIONS(2948), + [anon_sym_Static] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_STATIC] = ACTIONS(2948), + [anon_sym_Switch] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_SWITCH] = ACTIONS(2948), + [anon_sym_Throw] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_THROW] = ACTIONS(2948), + [anon_sym_Try] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_TRY] = ACTIONS(2948), + [anon_sym_Var] = ACTIONS(2948), + [anon_sym_var] = ACTIONS(2948), + [anon_sym_VAR] = ACTIONS(2948), + [anon_sym_While] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_WHILE] = ACTIONS(2948), + [anon_sym_With] = ACTIONS(2948), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_WITH] = ACTIONS(2948), + [sym_cf_comment] = ACTIONS(2946), + [sym__java_block_open] = ACTIONS(2946), + [sym__static_type_prefix] = ACTIONS(2946), + }, + [STATE(1025)] = { + [ts_builtin_sym_end] = ACTIONS(2970), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_Query] = ACTIONS(2972), + [anon_sym_query] = ACTIONS(2972), + [anon_sym_QUERY] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2970), + [aux_sym_unary_operator_token1] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2970), + [sym_comment] = ACTIONS(2970), + [aux_sym_number_token1] = ACTIONS(2972), + [aux_sym_number_token2] = ACTIONS(2970), + [anon_sym_This] = ACTIONS(2972), + [anon_sym_this] = ACTIONS(2972), + [anon_sym_THIS] = ACTIONS(2972), + [anon_sym_Super] = ACTIONS(2972), + [anon_sym_super] = ACTIONS(2972), + [anon_sym_SUPER] = ACTIONS(2972), + [anon_sym_True] = ACTIONS(2972), + [anon_sym_true] = ACTIONS(2972), + [anon_sym_TRUE] = ACTIONS(2972), + [anon_sym_False] = ACTIONS(2972), + [anon_sym_false] = ACTIONS(2972), + [anon_sym_FALSE] = ACTIONS(2972), + [anon_sym_Null] = ACTIONS(2972), + [anon_sym_null] = ACTIONS(2972), + [anon_sym_NULL] = ACTIONS(2972), + [anon_sym_Undefined] = ACTIONS(2972), + [anon_sym_undefined] = ACTIONS(2972), + [anon_sym_UNDEFINED] = ACTIONS(2972), + [anon_sym_get] = ACTIONS(2972), + [anon_sym_set] = ACTIONS(2972), + [anon_sym_POUND] = ACTIONS(2972), + [sym_hash_empty] = ACTIONS(2970), + [anon_sym_export] = ACTIONS(2972), + [anon_sym_QueryExecute] = ACTIONS(2972), + [anon_sym_queryexecute] = ACTIONS(2972), + [anon_sym_QUERYEXECUTE] = ACTIONS(2972), + [anon_sym_queryExecute] = ACTIONS(2972), + [anon_sym_BQUOTE] = ACTIONS(2972), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2970), + [anon_sym_Abstract] = ACTIONS(2972), + [anon_sym_abstract] = ACTIONS(2972), + [anon_sym_ABSTRACT] = ACTIONS(2972), + [anon_sym_Break] = ACTIONS(2972), + [anon_sym_break] = ACTIONS(2972), + [anon_sym_BREAK] = ACTIONS(2972), + [anon_sym_Component] = ACTIONS(2972), + [anon_sym_component] = ACTIONS(2972), + [anon_sym_COMPONENT] = ACTIONS(2972), + [anon_sym_Continue] = ACTIONS(2972), + [anon_sym_continue] = ACTIONS(2972), + [anon_sym_CONTINUE] = ACTIONS(2972), + [anon_sym_Debugger] = ACTIONS(2972), + [anon_sym_debugger] = ACTIONS(2972), + [anon_sym_DEBUGGER] = ACTIONS(2972), + [anon_sym_Do] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2972), + [anon_sym_DO] = ACTIONS(2972), + [anon_sym_Final] = ACTIONS(2972), + [anon_sym_final] = ACTIONS(2972), + [anon_sym_FINAL] = ACTIONS(2972), + [anon_sym_For] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2972), + [anon_sym_FOR] = ACTIONS(2972), + [anon_sym_Function] = ACTIONS(2972), + [anon_sym_function] = ACTIONS(2972), + [anon_sym_FUNCTION] = ACTIONS(2972), + [anon_sym_If] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_IF] = ACTIONS(2972), + [anon_sym_Import] = ACTIONS(2972), + [anon_sym_import] = ACTIONS(2972), + [anon_sym_IMPORT] = ACTIONS(2972), + [anon_sym_Include] = ACTIONS(2972), + [anon_sym_include] = ACTIONS(2972), + [anon_sym_INCLUDE] = ACTIONS(2972), + [anon_sym_Interface] = ACTIONS(2972), + [anon_sym_interface] = ACTIONS(2972), + [anon_sym_INTERFACE] = ACTIONS(2972), + [anon_sym_New] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2972), + [anon_sym_NEW] = ACTIONS(2972), + [anon_sym_Package] = ACTIONS(2972), + [anon_sym_package] = ACTIONS(2972), + [anon_sym_PACKAGE] = ACTIONS(2972), + [anon_sym_Private] = ACTIONS(2972), + [anon_sym_private] = ACTIONS(2972), + [anon_sym_PRIVATE] = ACTIONS(2972), + [anon_sym_Public] = ACTIONS(2972), + [anon_sym_public] = ACTIONS(2972), + [anon_sym_PUBLIC] = ACTIONS(2972), + [anon_sym_Remote] = ACTIONS(2972), + [anon_sym_remote] = ACTIONS(2972), + [anon_sym_REMOTE] = ACTIONS(2972), + [anon_sym_Return] = ACTIONS(2972), + [anon_sym_return] = ACTIONS(2972), + [anon_sym_RETURN] = ACTIONS(2972), + [anon_sym_Static] = ACTIONS(2972), + [anon_sym_static] = ACTIONS(2972), + [anon_sym_STATIC] = ACTIONS(2972), + [anon_sym_Switch] = ACTIONS(2972), + [anon_sym_switch] = ACTIONS(2972), + [anon_sym_SWITCH] = ACTIONS(2972), + [anon_sym_Throw] = ACTIONS(2972), + [anon_sym_throw] = ACTIONS(2972), + [anon_sym_THROW] = ACTIONS(2972), + [anon_sym_Try] = ACTIONS(2972), + [anon_sym_try] = ACTIONS(2972), + [anon_sym_TRY] = ACTIONS(2972), + [anon_sym_Var] = ACTIONS(2972), + [anon_sym_var] = ACTIONS(2972), + [anon_sym_VAR] = ACTIONS(2972), + [anon_sym_While] = ACTIONS(2972), + [anon_sym_while] = ACTIONS(2972), + [anon_sym_WHILE] = ACTIONS(2972), + [anon_sym_With] = ACTIONS(2972), + [anon_sym_with] = ACTIONS(2972), + [anon_sym_WITH] = ACTIONS(2972), + [sym_cf_comment] = ACTIONS(2970), + [sym__java_block_open] = ACTIONS(2970), + [sym__static_type_prefix] = ACTIONS(2970), + }, + [STATE(1026)] = { + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_Query] = ACTIONS(2932), + [anon_sym_query] = ACTIONS(2932), + [anon_sym_QUERY] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [aux_sym_unary_operator_token1] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [sym_comment] = ACTIONS(2930), + [aux_sym_number_token1] = ACTIONS(2932), + [aux_sym_number_token2] = ACTIONS(2930), + [anon_sym_This] = ACTIONS(2932), + [anon_sym_this] = ACTIONS(2932), + [anon_sym_THIS] = ACTIONS(2932), + [anon_sym_Super] = ACTIONS(2932), + [anon_sym_super] = ACTIONS(2932), + [anon_sym_SUPER] = ACTIONS(2932), + [anon_sym_True] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2932), + [anon_sym_TRUE] = ACTIONS(2932), + [anon_sym_False] = ACTIONS(2932), + [anon_sym_false] = ACTIONS(2932), + [anon_sym_FALSE] = ACTIONS(2932), + [anon_sym_Null] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_Undefined] = ACTIONS(2932), + [anon_sym_undefined] = ACTIONS(2932), + [anon_sym_UNDEFINED] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_POUND] = ACTIONS(2932), + [sym_hash_empty] = ACTIONS(2930), + [anon_sym_export] = ACTIONS(2932), + [anon_sym_QueryExecute] = ACTIONS(2932), + [anon_sym_queryexecute] = ACTIONS(2932), + [anon_sym_QUERYEXECUTE] = ACTIONS(2932), + [anon_sym_queryExecute] = ACTIONS(2932), + [anon_sym_BQUOTE] = ACTIONS(2932), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2930), + [anon_sym_Abstract] = ACTIONS(2932), + [anon_sym_abstract] = ACTIONS(2932), + [anon_sym_ABSTRACT] = ACTIONS(2932), + [anon_sym_Break] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_BREAK] = ACTIONS(2932), + [anon_sym_Component] = ACTIONS(2932), + [anon_sym_component] = ACTIONS(2932), + [anon_sym_COMPONENT] = ACTIONS(2932), + [anon_sym_Continue] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_CONTINUE] = ACTIONS(2932), + [anon_sym_Debugger] = ACTIONS(2932), + [anon_sym_debugger] = ACTIONS(2932), + [anon_sym_DEBUGGER] = ACTIONS(2932), + [anon_sym_Do] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_DO] = ACTIONS(2932), + [anon_sym_Final] = ACTIONS(2932), + [anon_sym_final] = ACTIONS(2932), + [anon_sym_FINAL] = ACTIONS(2932), + [anon_sym_For] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_FOR] = ACTIONS(2932), + [anon_sym_Function] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2932), + [anon_sym_FUNCTION] = ACTIONS(2932), + [anon_sym_If] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_IF] = ACTIONS(2932), + [anon_sym_Import] = ACTIONS(2932), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_IMPORT] = ACTIONS(2932), + [anon_sym_Include] = ACTIONS(2932), + [anon_sym_include] = ACTIONS(2932), + [anon_sym_INCLUDE] = ACTIONS(2932), + [anon_sym_Interface] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2932), + [anon_sym_INTERFACE] = ACTIONS(2932), + [anon_sym_New] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_NEW] = ACTIONS(2932), + [anon_sym_Package] = ACTIONS(2932), + [anon_sym_package] = ACTIONS(2932), + [anon_sym_PACKAGE] = ACTIONS(2932), + [anon_sym_Private] = ACTIONS(2932), + [anon_sym_private] = ACTIONS(2932), + [anon_sym_PRIVATE] = ACTIONS(2932), + [anon_sym_Public] = ACTIONS(2932), + [anon_sym_public] = ACTIONS(2932), + [anon_sym_PUBLIC] = ACTIONS(2932), + [anon_sym_Remote] = ACTIONS(2932), + [anon_sym_remote] = ACTIONS(2932), + [anon_sym_REMOTE] = ACTIONS(2932), + [anon_sym_Return] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_RETURN] = ACTIONS(2932), + [anon_sym_Static] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_STATIC] = ACTIONS(2932), + [anon_sym_Switch] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_SWITCH] = ACTIONS(2932), + [anon_sym_Throw] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_THROW] = ACTIONS(2932), + [anon_sym_Try] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_TRY] = ACTIONS(2932), + [anon_sym_Var] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2932), + [anon_sym_VAR] = ACTIONS(2932), + [anon_sym_While] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_WHILE] = ACTIONS(2932), + [anon_sym_With] = ACTIONS(2932), + [anon_sym_with] = ACTIONS(2932), + [anon_sym_WITH] = ACTIONS(2932), + [sym_cf_comment] = ACTIONS(2930), + [sym__java_block_open] = ACTIONS(2930), + [sym__static_type_prefix] = ACTIONS(2930), + }, + [STATE(1027)] = { + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_Query] = ACTIONS(2924), + [anon_sym_query] = ACTIONS(2924), + [anon_sym_QUERY] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [aux_sym_unary_operator_token1] = ACTIONS(2924), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [sym_comment] = ACTIONS(2922), + [aux_sym_number_token1] = ACTIONS(2924), + [aux_sym_number_token2] = ACTIONS(2922), + [anon_sym_This] = ACTIONS(2924), + [anon_sym_this] = ACTIONS(2924), + [anon_sym_THIS] = ACTIONS(2924), + [anon_sym_Super] = ACTIONS(2924), + [anon_sym_super] = ACTIONS(2924), + [anon_sym_SUPER] = ACTIONS(2924), + [anon_sym_True] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2924), + [anon_sym_TRUE] = ACTIONS(2924), + [anon_sym_False] = ACTIONS(2924), + [anon_sym_false] = ACTIONS(2924), + [anon_sym_FALSE] = ACTIONS(2924), + [anon_sym_Null] = ACTIONS(2924), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_Undefined] = ACTIONS(2924), + [anon_sym_undefined] = ACTIONS(2924), + [anon_sym_UNDEFINED] = ACTIONS(2924), + [anon_sym_get] = ACTIONS(2924), + [anon_sym_set] = ACTIONS(2924), + [anon_sym_POUND] = ACTIONS(2924), + [sym_hash_empty] = ACTIONS(2922), + [anon_sym_export] = ACTIONS(2924), + [anon_sym_QueryExecute] = ACTIONS(2924), + [anon_sym_queryexecute] = ACTIONS(2924), + [anon_sym_QUERYEXECUTE] = ACTIONS(2924), + [anon_sym_queryExecute] = ACTIONS(2924), + [anon_sym_BQUOTE] = ACTIONS(2924), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2922), + [anon_sym_Abstract] = ACTIONS(2924), + [anon_sym_abstract] = ACTIONS(2924), + [anon_sym_ABSTRACT] = ACTIONS(2924), + [anon_sym_Break] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_BREAK] = ACTIONS(2924), + [anon_sym_Component] = ACTIONS(2924), + [anon_sym_component] = ACTIONS(2924), + [anon_sym_COMPONENT] = ACTIONS(2924), + [anon_sym_Continue] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_CONTINUE] = ACTIONS(2924), + [anon_sym_Debugger] = ACTIONS(2924), + [anon_sym_debugger] = ACTIONS(2924), + [anon_sym_DEBUGGER] = ACTIONS(2924), + [anon_sym_Do] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_DO] = ACTIONS(2924), + [anon_sym_Final] = ACTIONS(2924), + [anon_sym_final] = ACTIONS(2924), + [anon_sym_FINAL] = ACTIONS(2924), + [anon_sym_For] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_FOR] = ACTIONS(2924), + [anon_sym_Function] = ACTIONS(2924), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_FUNCTION] = ACTIONS(2924), + [anon_sym_If] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_IF] = ACTIONS(2924), + [anon_sym_Import] = ACTIONS(2924), + [anon_sym_import] = ACTIONS(2924), + [anon_sym_IMPORT] = ACTIONS(2924), + [anon_sym_Include] = ACTIONS(2924), + [anon_sym_include] = ACTIONS(2924), + [anon_sym_INCLUDE] = ACTIONS(2924), + [anon_sym_Interface] = ACTIONS(2924), + [anon_sym_interface] = ACTIONS(2924), + [anon_sym_INTERFACE] = ACTIONS(2924), + [anon_sym_New] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_NEW] = ACTIONS(2924), + [anon_sym_Package] = ACTIONS(2924), + [anon_sym_package] = ACTIONS(2924), + [anon_sym_PACKAGE] = ACTIONS(2924), + [anon_sym_Private] = ACTIONS(2924), + [anon_sym_private] = ACTIONS(2924), + [anon_sym_PRIVATE] = ACTIONS(2924), + [anon_sym_Public] = ACTIONS(2924), + [anon_sym_public] = ACTIONS(2924), + [anon_sym_PUBLIC] = ACTIONS(2924), + [anon_sym_Remote] = ACTIONS(2924), + [anon_sym_remote] = ACTIONS(2924), + [anon_sym_REMOTE] = ACTIONS(2924), + [anon_sym_Return] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_RETURN] = ACTIONS(2924), + [anon_sym_Static] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_STATIC] = ACTIONS(2924), + [anon_sym_Switch] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_SWITCH] = ACTIONS(2924), + [anon_sym_Throw] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_THROW] = ACTIONS(2924), + [anon_sym_Try] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_TRY] = ACTIONS(2924), + [anon_sym_Var] = ACTIONS(2924), + [anon_sym_var] = ACTIONS(2924), + [anon_sym_VAR] = ACTIONS(2924), + [anon_sym_While] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_WHILE] = ACTIONS(2924), + [anon_sym_With] = ACTIONS(2924), + [anon_sym_with] = ACTIONS(2924), + [anon_sym_WITH] = ACTIONS(2924), + [sym_cf_comment] = ACTIONS(2922), + [sym__java_block_open] = ACTIONS(2922), + [sym__static_type_prefix] = ACTIONS(2922), + }, + [STATE(1028)] = { + [ts_builtin_sym_end] = ACTIONS(3643), + [sym_identifier] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_let] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_Query] = ACTIONS(3016), + [anon_sym_query] = ACTIONS(3016), + [anon_sym_QUERY] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [aux_sym_unary_operator_token1] = ACTIONS(3016), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3016), + [aux_sym_number_token2] = ACTIONS(3014), + [anon_sym_This] = ACTIONS(3016), + [anon_sym_this] = ACTIONS(3016), + [anon_sym_THIS] = ACTIONS(3016), + [anon_sym_Super] = ACTIONS(3016), + [anon_sym_super] = ACTIONS(3016), + [anon_sym_SUPER] = ACTIONS(3016), + [anon_sym_True] = ACTIONS(3016), + [anon_sym_true] = ACTIONS(3016), + [anon_sym_TRUE] = ACTIONS(3016), + [anon_sym_False] = ACTIONS(3016), + [anon_sym_false] = ACTIONS(3016), + [anon_sym_FALSE] = ACTIONS(3016), + [anon_sym_Null] = ACTIONS(3016), + [anon_sym_null] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_Undefined] = ACTIONS(3016), + [anon_sym_undefined] = ACTIONS(3016), + [anon_sym_UNDEFINED] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [sym_hash_empty] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_QueryExecute] = ACTIONS(3016), + [anon_sym_queryexecute] = ACTIONS(3016), + [anon_sym_QUERYEXECUTE] = ACTIONS(3016), + [anon_sym_queryExecute] = ACTIONS(3016), + [anon_sym_BQUOTE] = ACTIONS(3016), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3014), + [anon_sym_Abstract] = ACTIONS(3016), + [anon_sym_abstract] = ACTIONS(3016), + [anon_sym_ABSTRACT] = ACTIONS(3016), + [anon_sym_Break] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_BREAK] = ACTIONS(3016), + [anon_sym_Component] = ACTIONS(3016), + [anon_sym_component] = ACTIONS(3016), + [anon_sym_COMPONENT] = ACTIONS(3016), + [anon_sym_Continue] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_CONTINUE] = ACTIONS(3016), + [anon_sym_Debugger] = ACTIONS(3016), + [anon_sym_debugger] = ACTIONS(3016), + [anon_sym_DEBUGGER] = ACTIONS(3016), + [anon_sym_Do] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_DO] = ACTIONS(3016), + [anon_sym_Final] = ACTIONS(3016), + [anon_sym_final] = ACTIONS(3016), + [anon_sym_FINAL] = ACTIONS(3016), + [anon_sym_For] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_FOR] = ACTIONS(3016), + [anon_sym_Function] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(3016), + [anon_sym_FUNCTION] = ACTIONS(3016), + [anon_sym_If] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_IF] = ACTIONS(3016), + [anon_sym_Import] = ACTIONS(3016), + [anon_sym_import] = ACTIONS(3016), + [anon_sym_IMPORT] = ACTIONS(3016), + [anon_sym_Include] = ACTIONS(3016), + [anon_sym_include] = ACTIONS(3016), + [anon_sym_INCLUDE] = ACTIONS(3016), + [anon_sym_Interface] = ACTIONS(3016), + [anon_sym_interface] = ACTIONS(3016), + [anon_sym_INTERFACE] = ACTIONS(3016), + [anon_sym_New] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_NEW] = ACTIONS(3016), + [anon_sym_Package] = ACTIONS(3016), + [anon_sym_package] = ACTIONS(3016), + [anon_sym_PACKAGE] = ACTIONS(3016), + [anon_sym_Private] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_PRIVATE] = ACTIONS(3016), + [anon_sym_Public] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_PUBLIC] = ACTIONS(3016), + [anon_sym_Remote] = ACTIONS(3016), + [anon_sym_remote] = ACTIONS(3016), + [anon_sym_REMOTE] = ACTIONS(3016), + [anon_sym_Return] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_RETURN] = ACTIONS(3016), + [anon_sym_Static] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_STATIC] = ACTIONS(3016), + [anon_sym_Switch] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_SWITCH] = ACTIONS(3016), + [anon_sym_Throw] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_THROW] = ACTIONS(3016), + [anon_sym_Try] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_TRY] = ACTIONS(3016), + [anon_sym_Var] = ACTIONS(3016), + [anon_sym_var] = ACTIONS(3016), + [anon_sym_VAR] = ACTIONS(3016), + [anon_sym_While] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_WHILE] = ACTIONS(3016), + [anon_sym_With] = ACTIONS(3016), + [anon_sym_with] = ACTIONS(3016), + [anon_sym_WITH] = ACTIONS(3016), + [sym_cf_comment] = ACTIONS(3014), + [sym__java_block_open] = ACTIONS(3014), + [sym__static_type_prefix] = ACTIONS(3014), + }, + [STATE(1029)] = { + [sym_statement_block] = STATE(719), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_query_tag_repeat1] = STATE(1099), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -188558,123 +198679,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_QueryExecute] = ACTIONS(3360), - [anon_sym_queryexecute] = ACTIONS(3360), - [anon_sym_QUERYEXECUTE] = ACTIONS(3360), - [anon_sym_queryExecute] = ACTIONS(3360), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_ABSTRACT] = ACTIONS(3352), - [anon_sym_Component] = ACTIONS(3352), - [anon_sym_component] = ACTIONS(3352), - [anon_sym_COMPONENT] = ACTIONS(3352), - [anon_sym_Debugger] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_DEBUGGER] = ACTIONS(3352), - [anon_sym_Final] = ACTIONS(3352), - [anon_sym_final] = ACTIONS(3352), - [anon_sym_FINAL] = ACTIONS(3352), - [anon_sym_Function] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3362), - [anon_sym_FUNCTION] = ACTIONS(3362), - [anon_sym_Include] = ACTIONS(3352), - [anon_sym_include] = ACTIONS(3352), - [anon_sym_INCLUDE] = ACTIONS(3352), - [anon_sym_New] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_NEW] = ACTIONS(3364), - [anon_sym_Package] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3352), - [anon_sym_PACKAGE] = ACTIONS(3352), - [anon_sym_Private] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_PRIVATE] = ACTIONS(3352), - [anon_sym_Public] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_PUBLIC] = ACTIONS(3352), - [anon_sym_Remote] = ACTIONS(3352), - [anon_sym_remote] = ACTIONS(3352), - [anon_sym_REMOTE] = ACTIONS(3352), - [anon_sym_Static] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_STATIC] = ACTIONS(3352), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3648), + [sym_tag_linefeed] = ACTIONS(3650), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(957)] = { - [sym_statement_block] = STATE(286), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(970), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(555), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1215), - [aux_sym_function_declaration_repeat3] = STATE(970), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3370), + [STATE(1030)] = { + [sym_statement_block] = STATE(5012), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3652), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -188715,9 +198836,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -188739,81 +198860,612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3370), - [sym_tag_linefeed] = ACTIONS(3374), + [sym__automatic_semicolon] = ACTIONS(3652), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(958)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2368), - [sym_subscript_expression] = STATE(2368), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3349), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3349), - [sym_undefined] = STATE(3349), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3376), - [anon_sym_COMMA] = ACTIONS(3350), + [STATE(1031)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1032)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1033)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1034)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1035)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(517), [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_RBRACK] = ACTIONS(3382), - [anon_sym_Query] = ACTIONS(3378), - [anon_sym_query] = ACTIONS(3378), - [anon_sym_QUERY] = ACTIONS(3378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -188832,123 +199484,2802 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3378), - [anon_sym_set] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3378), - [anon_sym_QueryExecute] = ACTIONS(3384), - [anon_sym_queryexecute] = ACTIONS(3384), - [anon_sym_QUERYEXECUTE] = ACTIONS(3384), - [anon_sym_queryExecute] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3378), - [anon_sym_abstract] = ACTIONS(3378), - [anon_sym_ABSTRACT] = ACTIONS(3378), - [anon_sym_Component] = ACTIONS(3378), - [anon_sym_component] = ACTIONS(3378), - [anon_sym_COMPONENT] = ACTIONS(3378), - [anon_sym_Debugger] = ACTIONS(3378), - [anon_sym_debugger] = ACTIONS(3378), - [anon_sym_DEBUGGER] = ACTIONS(3378), - [anon_sym_Final] = ACTIONS(3378), - [anon_sym_final] = ACTIONS(3378), - [anon_sym_FINAL] = ACTIONS(3378), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3378), - [anon_sym_include] = ACTIONS(3378), - [anon_sym_INCLUDE] = ACTIONS(3378), - [anon_sym_New] = ACTIONS(3386), - [anon_sym_new] = ACTIONS(3386), - [anon_sym_NEW] = ACTIONS(3386), - [anon_sym_Package] = ACTIONS(3378), - [anon_sym_package] = ACTIONS(3378), - [anon_sym_PACKAGE] = ACTIONS(3378), - [anon_sym_Private] = ACTIONS(3378), - [anon_sym_private] = ACTIONS(3378), - [anon_sym_PRIVATE] = ACTIONS(3378), - [anon_sym_Public] = ACTIONS(3378), - [anon_sym_public] = ACTIONS(3378), - [anon_sym_PUBLIC] = ACTIONS(3378), - [anon_sym_Remote] = ACTIONS(3378), - [anon_sym_remote] = ACTIONS(3378), - [anon_sym_REMOTE] = ACTIONS(3378), - [anon_sym_Static] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3378), - [anon_sym_STATIC] = ACTIONS(3378), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3662), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(959)] = { - [sym_statement_block] = STATE(231), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(979), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(555), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1258), - [aux_sym_function_declaration_repeat3] = STATE(979), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3390), + [STATE(1036)] = { + [sym_identifier] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_Query] = ACTIONS(3664), + [anon_sym_query] = ACTIONS(3664), + [anon_sym_QUERY] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [aux_sym_unary_operator_token1] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3664), + [aux_sym_number_token2] = ACTIONS(3666), + [anon_sym_This] = ACTIONS(3664), + [anon_sym_this] = ACTIONS(3664), + [anon_sym_THIS] = ACTIONS(3664), + [anon_sym_Super] = ACTIONS(3664), + [anon_sym_super] = ACTIONS(3664), + [anon_sym_SUPER] = ACTIONS(3664), + [anon_sym_True] = ACTIONS(3664), + [anon_sym_true] = ACTIONS(3664), + [anon_sym_TRUE] = ACTIONS(3664), + [anon_sym_False] = ACTIONS(3664), + [anon_sym_false] = ACTIONS(3664), + [anon_sym_FALSE] = ACTIONS(3664), + [anon_sym_Null] = ACTIONS(3664), + [anon_sym_null] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_Undefined] = ACTIONS(3664), + [anon_sym_undefined] = ACTIONS(3664), + [anon_sym_UNDEFINED] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_POUND] = ACTIONS(3664), + [sym_hash_empty] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_QueryExecute] = ACTIONS(3664), + [anon_sym_queryexecute] = ACTIONS(3664), + [anon_sym_QUERYEXECUTE] = ACTIONS(3664), + [anon_sym_queryExecute] = ACTIONS(3664), + [anon_sym_BQUOTE] = ACTIONS(3664), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3666), + [anon_sym_Abstract] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_ABSTRACT] = ACTIONS(3664), + [anon_sym_Break] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_BREAK] = ACTIONS(3664), + [anon_sym_Component] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_COMPONENT] = ACTIONS(3664), + [anon_sym_Continue] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_CONTINUE] = ACTIONS(3664), + [anon_sym_Debugger] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_DEBUGGER] = ACTIONS(3664), + [anon_sym_Do] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_DO] = ACTIONS(3664), + [anon_sym_Final] = ACTIONS(3664), + [anon_sym_final] = ACTIONS(3664), + [anon_sym_FINAL] = ACTIONS(3664), + [anon_sym_For] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_FOR] = ACTIONS(3664), + [anon_sym_Function] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_FUNCTION] = ACTIONS(3664), + [anon_sym_If] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_IF] = ACTIONS(3664), + [anon_sym_Import] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_IMPORT] = ACTIONS(3664), + [anon_sym_Include] = ACTIONS(3664), + [anon_sym_include] = ACTIONS(3664), + [anon_sym_INCLUDE] = ACTIONS(3664), + [anon_sym_Interface] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_INTERFACE] = ACTIONS(3664), + [anon_sym_New] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_NEW] = ACTIONS(3664), + [anon_sym_Package] = ACTIONS(3664), + [anon_sym_package] = ACTIONS(3664), + [anon_sym_PACKAGE] = ACTIONS(3664), + [anon_sym_Private] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_PRIVATE] = ACTIONS(3664), + [anon_sym_Public] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_PUBLIC] = ACTIONS(3664), + [anon_sym_Remote] = ACTIONS(3664), + [anon_sym_remote] = ACTIONS(3664), + [anon_sym_REMOTE] = ACTIONS(3664), + [anon_sym_Return] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_RETURN] = ACTIONS(3664), + [anon_sym_Static] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_STATIC] = ACTIONS(3664), + [anon_sym_Switch] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_SWITCH] = ACTIONS(3664), + [anon_sym_Throw] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_THROW] = ACTIONS(3664), + [anon_sym_Try] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_TRY] = ACTIONS(3664), + [anon_sym_Var] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_VAR] = ACTIONS(3664), + [anon_sym_While] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_WHILE] = ACTIONS(3664), + [anon_sym_With] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_WITH] = ACTIONS(3664), + [sym_cf_comment] = ACTIONS(3666), + [sym__java_block_open] = ACTIONS(3666), + [sym__static_type_prefix] = ACTIONS(3666), + }, + [STATE(1037)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1038)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1039)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1040)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1041)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1042)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1043)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1044)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1045)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1046)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1047)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1048)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1049)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1050)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1051)] = { + [sym_identifier] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_Query] = ACTIONS(3668), + [anon_sym_query] = ACTIONS(3668), + [anon_sym_QUERY] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [aux_sym_unary_operator_token1] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3668), + [aux_sym_number_token2] = ACTIONS(3670), + [anon_sym_This] = ACTIONS(3668), + [anon_sym_this] = ACTIONS(3668), + [anon_sym_THIS] = ACTIONS(3668), + [anon_sym_Super] = ACTIONS(3668), + [anon_sym_super] = ACTIONS(3668), + [anon_sym_SUPER] = ACTIONS(3668), + [anon_sym_True] = ACTIONS(3668), + [anon_sym_true] = ACTIONS(3668), + [anon_sym_TRUE] = ACTIONS(3668), + [anon_sym_False] = ACTIONS(3668), + [anon_sym_false] = ACTIONS(3668), + [anon_sym_FALSE] = ACTIONS(3668), + [anon_sym_Null] = ACTIONS(3668), + [anon_sym_null] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_Undefined] = ACTIONS(3668), + [anon_sym_undefined] = ACTIONS(3668), + [anon_sym_UNDEFINED] = ACTIONS(3668), + [anon_sym_get] = ACTIONS(3668), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_POUND] = ACTIONS(3668), + [sym_hash_empty] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_QueryExecute] = ACTIONS(3668), + [anon_sym_queryexecute] = ACTIONS(3668), + [anon_sym_QUERYEXECUTE] = ACTIONS(3668), + [anon_sym_queryExecute] = ACTIONS(3668), + [anon_sym_BQUOTE] = ACTIONS(3668), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3670), + [anon_sym_Abstract] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_ABSTRACT] = ACTIONS(3668), + [anon_sym_Break] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_BREAK] = ACTIONS(3668), + [anon_sym_Component] = ACTIONS(3668), + [anon_sym_component] = ACTIONS(3668), + [anon_sym_COMPONENT] = ACTIONS(3668), + [anon_sym_Continue] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_CONTINUE] = ACTIONS(3668), + [anon_sym_Debugger] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_DEBUGGER] = ACTIONS(3668), + [anon_sym_Do] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_DO] = ACTIONS(3668), + [anon_sym_Final] = ACTIONS(3668), + [anon_sym_final] = ACTIONS(3668), + [anon_sym_FINAL] = ACTIONS(3668), + [anon_sym_For] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_FOR] = ACTIONS(3668), + [anon_sym_Function] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_FUNCTION] = ACTIONS(3668), + [anon_sym_If] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_IF] = ACTIONS(3668), + [anon_sym_Import] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_IMPORT] = ACTIONS(3668), + [anon_sym_Include] = ACTIONS(3668), + [anon_sym_include] = ACTIONS(3668), + [anon_sym_INCLUDE] = ACTIONS(3668), + [anon_sym_Interface] = ACTIONS(3668), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_INTERFACE] = ACTIONS(3668), + [anon_sym_New] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_NEW] = ACTIONS(3668), + [anon_sym_Package] = ACTIONS(3668), + [anon_sym_package] = ACTIONS(3668), + [anon_sym_PACKAGE] = ACTIONS(3668), + [anon_sym_Private] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_PRIVATE] = ACTIONS(3668), + [anon_sym_Public] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_PUBLIC] = ACTIONS(3668), + [anon_sym_Remote] = ACTIONS(3668), + [anon_sym_remote] = ACTIONS(3668), + [anon_sym_REMOTE] = ACTIONS(3668), + [anon_sym_Return] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_RETURN] = ACTIONS(3668), + [anon_sym_Static] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_STATIC] = ACTIONS(3668), + [anon_sym_Switch] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_SWITCH] = ACTIONS(3668), + [anon_sym_Throw] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_THROW] = ACTIONS(3668), + [anon_sym_Try] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_TRY] = ACTIONS(3668), + [anon_sym_Var] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_VAR] = ACTIONS(3668), + [anon_sym_While] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_WHILE] = ACTIONS(3668), + [anon_sym_With] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_WITH] = ACTIONS(3668), + [sym_cf_comment] = ACTIONS(3670), + [sym__java_block_open] = ACTIONS(3670), + [sym__static_type_prefix] = ACTIONS(3670), + }, + [STATE(1052)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1053)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1054)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1055)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1056)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3672), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -188989,9 +202320,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -189013,81 +202344,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3390), - [sym_tag_linefeed] = ACTIONS(3392), + [sym__automatic_semicolon] = ACTIONS(3672), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(960)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3618), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(5043), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(5043), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(3054), - [sym_hash_expression] = STATE(3054), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3394), + [STATE(1057)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_RBRACK] = ACTIONS(3394), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -189106,260 +202432,4546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(3674), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(961)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3640), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4859), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4859), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2869), - [sym_hash_expression] = STATE(2869), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3396), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3398), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1058)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1059)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1060)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1061)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1062)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1063)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1064)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1065)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1066)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1067)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1068)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1069)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1070)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1071)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1072)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1073)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1074)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1075)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1076)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1077)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1078)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1079)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1080)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1081)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1082)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1083)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1084)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1085)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1086)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1087)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1088)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1089)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(962)] = { - [sym_statement_block] = STATE(278), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(983), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(555), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1215), - [aux_sym_function_declaration_repeat3] = STATE(983), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3388), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1090)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1091)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(5072), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4575), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2402), + [sym_subscript_expression] = STATE(2402), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4575), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3240), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3240), + [sym_undefined] = STATE(3240), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym_pattern] = STATE(4781), + [sym_rest_pattern] = STATE(4531), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_Query] = ACTIONS(3678), + [anon_sym_query] = ACTIONS(3678), + [anon_sym_QUERY] = ACTIONS(3678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3680), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -189378,125 +206990,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_QueryExecute] = ACTIONS(3682), + [anon_sym_queryexecute] = ACTIONS(3682), + [anon_sym_QUERYEXECUTE] = ACTIONS(3682), + [anon_sym_queryExecute] = ACTIONS(3682), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3400), - [sym_tag_linefeed] = ACTIONS(3402), + [anon_sym_Abstract] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_ABSTRACT] = ACTIONS(3678), + [anon_sym_Component] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_COMPONENT] = ACTIONS(3678), + [anon_sym_Debugger] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_DEBUGGER] = ACTIONS(3678), + [anon_sym_Final] = ACTIONS(3678), + [anon_sym_final] = ACTIONS(3678), + [anon_sym_FINAL] = ACTIONS(3678), + [anon_sym_Function] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_FUNCTION] = ACTIONS(3370), + [anon_sym_Include] = ACTIONS(3678), + [anon_sym_include] = ACTIONS(3678), + [anon_sym_INCLUDE] = ACTIONS(3678), + [anon_sym_New] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_NEW] = ACTIONS(3684), + [anon_sym_Package] = ACTIONS(3678), + [anon_sym_package] = ACTIONS(3678), + [anon_sym_PACKAGE] = ACTIONS(3678), + [anon_sym_Private] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_PRIVATE] = ACTIONS(3678), + [anon_sym_Public] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_PUBLIC] = ACTIONS(3678), + [anon_sym_Remote] = ACTIONS(3678), + [anon_sym_remote] = ACTIONS(3678), + [anon_sym_REMOTE] = ACTIONS(3678), + [anon_sym_Static] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_STATIC] = ACTIONS(3678), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(963)] = { - [sym_statement_block] = STATE(2491), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(990), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(555), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1215), - [aux_sym_function_declaration_repeat3] = STATE(990), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3406), + [STATE(1092)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1093)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3686), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -189537,9 +207278,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -189561,2802 +207302,5838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3406), - [sym_tag_linefeed] = ACTIONS(3408), + [sym__automatic_semicolon] = ACTIONS(3686), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(964)] = { - [sym_statement_block] = STATE(2417), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(976), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(555), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1258), - [aux_sym_function_declaration_repeat3] = STATE(976), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1094)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1095)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3154), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4390), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5048), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_arguments] = STATE(5058), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2912), + [sym_hash_expression] = STATE(2912), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4390), + [sym_identifier] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3410), - [sym_tag_linefeed] = ACTIONS(3412), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1096)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1097)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1098)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1099)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(560), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_query_tag_repeat1] = STATE(1099), + [sym_identifier] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3703), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_Query] = ACTIONS(3703), + [anon_sym_query] = ACTIONS(3703), + [anon_sym_QUERY] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3709), + [anon_sym_DASH] = ACTIONS(3709), + [anon_sym_SLASH] = ACTIONS(3712), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [aux_sym_unary_operator_token1] = ACTIONS(3709), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3721), + [anon_sym_SQUOTE] = ACTIONS(3724), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3727), + [aux_sym_number_token2] = ACTIONS(3730), + [anon_sym_This] = ACTIONS(3733), + [anon_sym_this] = ACTIONS(3733), + [anon_sym_THIS] = ACTIONS(3733), + [anon_sym_Super] = ACTIONS(3736), + [anon_sym_super] = ACTIONS(3736), + [anon_sym_SUPER] = ACTIONS(3736), + [anon_sym_True] = ACTIONS(3739), + [anon_sym_true] = ACTIONS(3739), + [anon_sym_TRUE] = ACTIONS(3739), + [anon_sym_False] = ACTIONS(3742), + [anon_sym_false] = ACTIONS(3742), + [anon_sym_FALSE] = ACTIONS(3742), + [anon_sym_Null] = ACTIONS(3745), + [anon_sym_null] = ACTIONS(3745), + [anon_sym_NULL] = ACTIONS(3745), + [anon_sym_Undefined] = ACTIONS(3748), + [anon_sym_undefined] = ACTIONS(3748), + [anon_sym_UNDEFINED] = ACTIONS(3748), + [anon_sym_get] = ACTIONS(3703), + [anon_sym_set] = ACTIONS(3703), + [anon_sym_POUND] = ACTIONS(3751), + [sym_hash_empty] = ACTIONS(3754), + [anon_sym_export] = ACTIONS(3703), + [anon_sym_QueryExecute] = ACTIONS(3757), + [anon_sym_queryexecute] = ACTIONS(3757), + [anon_sym_QUERYEXECUTE] = ACTIONS(3757), + [anon_sym_queryExecute] = ACTIONS(3757), + [anon_sym_BQUOTE] = ACTIONS(3760), + [anon_sym_Abstract] = ACTIONS(3703), + [anon_sym_abstract] = ACTIONS(3703), + [anon_sym_ABSTRACT] = ACTIONS(3703), + [anon_sym_Component] = ACTIONS(3703), + [anon_sym_component] = ACTIONS(3703), + [anon_sym_COMPONENT] = ACTIONS(3703), + [anon_sym_Debugger] = ACTIONS(3703), + [anon_sym_debugger] = ACTIONS(3703), + [anon_sym_DEBUGGER] = ACTIONS(3703), + [anon_sym_Final] = ACTIONS(3703), + [anon_sym_final] = ACTIONS(3703), + [anon_sym_FINAL] = ACTIONS(3703), + [anon_sym_Function] = ACTIONS(3763), + [anon_sym_function] = ACTIONS(3763), + [anon_sym_FUNCTION] = ACTIONS(3763), + [anon_sym_Include] = ACTIONS(3703), + [anon_sym_include] = ACTIONS(3703), + [anon_sym_INCLUDE] = ACTIONS(3703), + [anon_sym_New] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_NEW] = ACTIONS(3766), + [anon_sym_Package] = ACTIONS(3703), + [anon_sym_package] = ACTIONS(3703), + [anon_sym_PACKAGE] = ACTIONS(3703), + [anon_sym_Private] = ACTIONS(3703), + [anon_sym_private] = ACTIONS(3703), + [anon_sym_PRIVATE] = ACTIONS(3703), + [anon_sym_Public] = ACTIONS(3703), + [anon_sym_public] = ACTIONS(3703), + [anon_sym_PUBLIC] = ACTIONS(3703), + [anon_sym_Remote] = ACTIONS(3703), + [anon_sym_remote] = ACTIONS(3703), + [anon_sym_REMOTE] = ACTIONS(3703), + [anon_sym_Static] = ACTIONS(3703), + [anon_sym_static] = ACTIONS(3703), + [anon_sym_STATIC] = ACTIONS(3703), + [sym__automatic_semicolon] = ACTIONS(3701), + [sym_tag_linefeed] = ACTIONS(3769), + [sym__java_block_open] = ACTIONS(3772), + [sym__static_type_prefix] = ACTIONS(3775), + }, + [STATE(1100)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1101)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1102)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1103)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1104)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1105)] = { + [sym_identifier] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_Query] = ACTIONS(3778), + [anon_sym_query] = ACTIONS(3778), + [anon_sym_QUERY] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_SLASH] = ACTIONS(3778), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_unary_operator_token1] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3778), + [aux_sym_number_token2] = ACTIONS(3780), + [anon_sym_This] = ACTIONS(3778), + [anon_sym_this] = ACTIONS(3778), + [anon_sym_THIS] = ACTIONS(3778), + [anon_sym_Super] = ACTIONS(3778), + [anon_sym_super] = ACTIONS(3778), + [anon_sym_SUPER] = ACTIONS(3778), + [anon_sym_True] = ACTIONS(3778), + [anon_sym_true] = ACTIONS(3778), + [anon_sym_TRUE] = ACTIONS(3778), + [anon_sym_False] = ACTIONS(3778), + [anon_sym_false] = ACTIONS(3778), + [anon_sym_FALSE] = ACTIONS(3778), + [anon_sym_Null] = ACTIONS(3778), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_NULL] = ACTIONS(3778), + [anon_sym_Undefined] = ACTIONS(3778), + [anon_sym_undefined] = ACTIONS(3778), + [anon_sym_UNDEFINED] = ACTIONS(3778), + [anon_sym_get] = ACTIONS(3778), + [anon_sym_set] = ACTIONS(3778), + [anon_sym_POUND] = ACTIONS(3778), + [sym_hash_empty] = ACTIONS(3780), + [anon_sym_export] = ACTIONS(3778), + [anon_sym_QueryExecute] = ACTIONS(3778), + [anon_sym_queryexecute] = ACTIONS(3778), + [anon_sym_QUERYEXECUTE] = ACTIONS(3778), + [anon_sym_queryExecute] = ACTIONS(3778), + [anon_sym_BQUOTE] = ACTIONS(3778), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3780), + [anon_sym_Abstract] = ACTIONS(3778), + [anon_sym_abstract] = ACTIONS(3778), + [anon_sym_ABSTRACT] = ACTIONS(3778), + [anon_sym_Break] = ACTIONS(3778), + [anon_sym_break] = ACTIONS(3778), + [anon_sym_BREAK] = ACTIONS(3778), + [anon_sym_Component] = ACTIONS(3778), + [anon_sym_component] = ACTIONS(3778), + [anon_sym_COMPONENT] = ACTIONS(3778), + [anon_sym_Continue] = ACTIONS(3778), + [anon_sym_continue] = ACTIONS(3778), + [anon_sym_CONTINUE] = ACTIONS(3778), + [anon_sym_Debugger] = ACTIONS(3778), + [anon_sym_debugger] = ACTIONS(3778), + [anon_sym_DEBUGGER] = ACTIONS(3778), + [anon_sym_Do] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_DO] = ACTIONS(3778), + [anon_sym_Final] = ACTIONS(3778), + [anon_sym_final] = ACTIONS(3778), + [anon_sym_FINAL] = ACTIONS(3778), + [anon_sym_For] = ACTIONS(3778), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_FOR] = ACTIONS(3778), + [anon_sym_Function] = ACTIONS(3778), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_FUNCTION] = ACTIONS(3778), + [anon_sym_If] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_IF] = ACTIONS(3778), + [anon_sym_Import] = ACTIONS(3778), + [anon_sym_import] = ACTIONS(3778), + [anon_sym_IMPORT] = ACTIONS(3778), + [anon_sym_Include] = ACTIONS(3778), + [anon_sym_include] = ACTIONS(3778), + [anon_sym_INCLUDE] = ACTIONS(3778), + [anon_sym_Interface] = ACTIONS(3778), + [anon_sym_interface] = ACTIONS(3778), + [anon_sym_INTERFACE] = ACTIONS(3778), + [anon_sym_New] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_NEW] = ACTIONS(3778), + [anon_sym_Package] = ACTIONS(3778), + [anon_sym_package] = ACTIONS(3778), + [anon_sym_PACKAGE] = ACTIONS(3778), + [anon_sym_Private] = ACTIONS(3778), + [anon_sym_private] = ACTIONS(3778), + [anon_sym_PRIVATE] = ACTIONS(3778), + [anon_sym_Public] = ACTIONS(3778), + [anon_sym_public] = ACTIONS(3778), + [anon_sym_PUBLIC] = ACTIONS(3778), + [anon_sym_Remote] = ACTIONS(3778), + [anon_sym_remote] = ACTIONS(3778), + [anon_sym_REMOTE] = ACTIONS(3778), + [anon_sym_Return] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_RETURN] = ACTIONS(3778), + [anon_sym_Static] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_STATIC] = ACTIONS(3778), + [anon_sym_Switch] = ACTIONS(3778), + [anon_sym_switch] = ACTIONS(3778), + [anon_sym_SWITCH] = ACTIONS(3778), + [anon_sym_Throw] = ACTIONS(3778), + [anon_sym_throw] = ACTIONS(3778), + [anon_sym_THROW] = ACTIONS(3778), + [anon_sym_Try] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_TRY] = ACTIONS(3778), + [anon_sym_Var] = ACTIONS(3778), + [anon_sym_var] = ACTIONS(3778), + [anon_sym_VAR] = ACTIONS(3778), + [anon_sym_While] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_WHILE] = ACTIONS(3778), + [anon_sym_With] = ACTIONS(3778), + [anon_sym_with] = ACTIONS(3778), + [anon_sym_WITH] = ACTIONS(3778), + [sym_cf_comment] = ACTIONS(3780), + [sym__java_block_open] = ACTIONS(3780), + [sym__static_type_prefix] = ACTIONS(3780), + }, + [STATE(1106)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1107)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1108)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1109)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1110)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1111)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1112)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1113)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1114)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(965)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4619), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4511), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4511), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3096), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3096), - [sym_undefined] = STATE(3096), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4423), - [sym_rest_pattern] = STATE(4411), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_array_pattern_repeat1] = STATE(4684), - [sym_identifier] = ACTIONS(3348), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_RBRACK] = ACTIONS(3382), - [anon_sym_Query] = ACTIONS(3352), - [anon_sym_query] = ACTIONS(3352), - [anon_sym_QUERY] = ACTIONS(3352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_QueryExecute] = ACTIONS(3360), - [anon_sym_queryexecute] = ACTIONS(3360), - [anon_sym_QUERYEXECUTE] = ACTIONS(3360), - [anon_sym_queryExecute] = ACTIONS(3360), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_ABSTRACT] = ACTIONS(3352), - [anon_sym_Component] = ACTIONS(3352), - [anon_sym_component] = ACTIONS(3352), - [anon_sym_COMPONENT] = ACTIONS(3352), - [anon_sym_Debugger] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_DEBUGGER] = ACTIONS(3352), - [anon_sym_Final] = ACTIONS(3352), - [anon_sym_final] = ACTIONS(3352), - [anon_sym_FINAL] = ACTIONS(3352), - [anon_sym_Function] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3362), - [anon_sym_FUNCTION] = ACTIONS(3362), - [anon_sym_Include] = ACTIONS(3352), - [anon_sym_include] = ACTIONS(3352), - [anon_sym_INCLUDE] = ACTIONS(3352), - [anon_sym_New] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_NEW] = ACTIONS(3364), - [anon_sym_Package] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3352), - [anon_sym_PACKAGE] = ACTIONS(3352), - [anon_sym_Private] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_PRIVATE] = ACTIONS(3352), - [anon_sym_Public] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_PUBLIC] = ACTIONS(3352), - [anon_sym_Remote] = ACTIONS(3352), - [anon_sym_remote] = ACTIONS(3352), - [anon_sym_REMOTE] = ACTIONS(3352), - [anon_sym_Static] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_STATIC] = ACTIONS(3352), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1115)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(966)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3616), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_spread_element] = STATE(4859), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2696), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2785), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2696), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pair] = STATE(4859), - [sym__property_name] = STATE(5179), - [sym__hash_always_eval] = STATE(2869), - [sym_hash_expression] = STATE(2869), - [sym_computed_property_name] = STATE(5179), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(3396), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_Query] = ACTIONS(3251), - [anon_sym_query] = ACTIONS(3251), - [anon_sym_QUERY] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3398), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_QueryExecute] = ACTIONS(3259), - [anon_sym_queryexecute] = ACTIONS(3259), - [anon_sym_QUERYEXECUTE] = ACTIONS(3259), - [anon_sym_queryExecute] = ACTIONS(3259), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_ABSTRACT] = ACTIONS(3251), - [anon_sym_Component] = ACTIONS(3251), - [anon_sym_component] = ACTIONS(3251), - [anon_sym_COMPONENT] = ACTIONS(3251), - [anon_sym_Debugger] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_DEBUGGER] = ACTIONS(3251), - [anon_sym_Final] = ACTIONS(3251), - [anon_sym_final] = ACTIONS(3251), - [anon_sym_FINAL] = ACTIONS(3251), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3251), - [anon_sym_include] = ACTIONS(3251), - [anon_sym_INCLUDE] = ACTIONS(3251), - [anon_sym_New] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_NEW] = ACTIONS(3263), - [anon_sym_Package] = ACTIONS(3251), - [anon_sym_package] = ACTIONS(3251), - [anon_sym_PACKAGE] = ACTIONS(3251), - [anon_sym_Private] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_PRIVATE] = ACTIONS(3251), - [anon_sym_Public] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_PUBLIC] = ACTIONS(3251), - [anon_sym_Remote] = ACTIONS(3251), - [anon_sym_remote] = ACTIONS(3251), - [anon_sym_REMOTE] = ACTIONS(3251), - [anon_sym_Static] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_STATIC] = ACTIONS(3251), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1116)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(967)] = { - [sym_statement_block] = STATE(285), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(969), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(555), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1258), - [aux_sym_function_declaration_repeat3] = STATE(969), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3414), - [sym_tag_linefeed] = ACTIONS(3416), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1117)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(968)] = { - [sym_statement_block] = STATE(797), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3420), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3420), - [sym_tag_linefeed] = ACTIONS(3422), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1118)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3785), + [anon_sym_LPAREN] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(3791), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_Query] = ACTIONS(3791), + [anon_sym_query] = ACTIONS(3791), + [anon_sym_QUERY] = ACTIONS(3791), + [anon_sym_PLUS] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_SLASH] = ACTIONS(3800), + [anon_sym_BANG] = ACTIONS(3803), + [anon_sym_TILDE] = ACTIONS(3803), + [aux_sym_unary_operator_token1] = ACTIONS(3797), + [anon_sym_PLUS_PLUS] = ACTIONS(3806), + [anon_sym_DASH_DASH] = ACTIONS(3806), + [anon_sym_DQUOTE] = ACTIONS(3809), + [anon_sym_SQUOTE] = ACTIONS(3812), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3815), + [aux_sym_number_token2] = ACTIONS(3818), + [anon_sym_This] = ACTIONS(3821), + [anon_sym_this] = ACTIONS(3821), + [anon_sym_THIS] = ACTIONS(3821), + [anon_sym_Super] = ACTIONS(3824), + [anon_sym_super] = ACTIONS(3824), + [anon_sym_SUPER] = ACTIONS(3824), + [anon_sym_True] = ACTIONS(3827), + [anon_sym_true] = ACTIONS(3827), + [anon_sym_TRUE] = ACTIONS(3827), + [anon_sym_False] = ACTIONS(3830), + [anon_sym_false] = ACTIONS(3830), + [anon_sym_FALSE] = ACTIONS(3830), + [anon_sym_Null] = ACTIONS(3833), + [anon_sym_null] = ACTIONS(3833), + [anon_sym_NULL] = ACTIONS(3833), + [anon_sym_Undefined] = ACTIONS(3836), + [anon_sym_undefined] = ACTIONS(3836), + [anon_sym_UNDEFINED] = ACTIONS(3836), + [anon_sym_get] = ACTIONS(3791), + [anon_sym_set] = ACTIONS(3791), + [anon_sym_POUND] = ACTIONS(3839), + [sym_hash_empty] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3791), + [anon_sym_QueryExecute] = ACTIONS(3845), + [anon_sym_queryexecute] = ACTIONS(3845), + [anon_sym_QUERYEXECUTE] = ACTIONS(3845), + [anon_sym_queryExecute] = ACTIONS(3845), + [anon_sym_BQUOTE] = ACTIONS(3848), + [anon_sym_Abstract] = ACTIONS(3791), + [anon_sym_abstract] = ACTIONS(3791), + [anon_sym_ABSTRACT] = ACTIONS(3791), + [anon_sym_Component] = ACTIONS(3791), + [anon_sym_component] = ACTIONS(3791), + [anon_sym_COMPONENT] = ACTIONS(3791), + [anon_sym_Debugger] = ACTIONS(3791), + [anon_sym_debugger] = ACTIONS(3791), + [anon_sym_DEBUGGER] = ACTIONS(3791), + [anon_sym_Final] = ACTIONS(3791), + [anon_sym_final] = ACTIONS(3791), + [anon_sym_FINAL] = ACTIONS(3791), + [anon_sym_Function] = ACTIONS(3851), + [anon_sym_function] = ACTIONS(3851), + [anon_sym_FUNCTION] = ACTIONS(3851), + [anon_sym_Include] = ACTIONS(3791), + [anon_sym_include] = ACTIONS(3791), + [anon_sym_INCLUDE] = ACTIONS(3791), + [anon_sym_New] = ACTIONS(3854), + [anon_sym_new] = ACTIONS(3854), + [anon_sym_NEW] = ACTIONS(3854), + [anon_sym_Package] = ACTIONS(3791), + [anon_sym_package] = ACTIONS(3791), + [anon_sym_PACKAGE] = ACTIONS(3791), + [anon_sym_Private] = ACTIONS(3791), + [anon_sym_private] = ACTIONS(3791), + [anon_sym_PRIVATE] = ACTIONS(3791), + [anon_sym_Public] = ACTIONS(3791), + [anon_sym_public] = ACTIONS(3791), + [anon_sym_PUBLIC] = ACTIONS(3791), + [anon_sym_Remote] = ACTIONS(3791), + [anon_sym_remote] = ACTIONS(3791), + [anon_sym_REMOTE] = ACTIONS(3791), + [anon_sym_Static] = ACTIONS(3791), + [anon_sym_static] = ACTIONS(3791), + [anon_sym_STATIC] = ACTIONS(3791), + [sym__automatic_semicolon] = ACTIONS(2428), + [sym_tag_linefeed] = ACTIONS(3857), + [sym__java_block_open] = ACTIONS(3860), + [sym__static_type_prefix] = ACTIONS(3863), }, - [STATE(969)] = { - [sym_statement_block] = STATE(808), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3424), - [sym_tag_linefeed] = ACTIONS(3426), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1119)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(970)] = { - [sym_statement_block] = STATE(804), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3428), - [sym_tag_linefeed] = ACTIONS(3430), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1120)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(971)] = { - [sym_statement_block] = STATE(4053), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(972), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(972), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3432), - [sym_tag_linefeed] = ACTIONS(3434), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1121)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(972)] = { - [sym_statement_block] = STATE(4134), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3436), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3436), - [sym_tag_linefeed] = ACTIONS(3438), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1122)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(973)] = { - [sym_statement_block] = STATE(789), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(974), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(974), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3440), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3440), - [sym_tag_linefeed] = ACTIONS(3442), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1123)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1124)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(974)] = { - [sym_statement_block] = STATE(806), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3444), - [sym_tag_linefeed] = ACTIONS(3446), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1125)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(975)] = { - [sym_statement_block] = STATE(800), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(970), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(970), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3370), - [sym_tag_linefeed] = ACTIONS(3374), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1126)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(976)] = { - [sym_statement_block] = STATE(4111), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3448), - [sym_tag_linefeed] = ACTIONS(3450), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1127)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(977)] = { - [sym_statement_block] = STATE(4112), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(990), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(990), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3406), - [sym_tag_linefeed] = ACTIONS(3408), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1128)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(978)] = { - [sym_statement_block] = STATE(793), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(992), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(992), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3452), - [sym_tag_linefeed] = ACTIONS(3454), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1129)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(979)] = { - [sym_statement_block] = STATE(563), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3458), - [sym_tag_linefeed] = ACTIONS(3460), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1130)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(980)] = { - [sym_statement_block] = STATE(564), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(983), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(983), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3400), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3400), - [sym_tag_linefeed] = ACTIONS(3402), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1131)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(981)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4868), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4511), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4511), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3096), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3096), - [sym_undefined] = STATE(3096), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4720), - [sym_rest_pattern] = STATE(4411), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3348), - [anon_sym_COMMA] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_RBRACK] = ACTIONS(3462), - [anon_sym_Query] = ACTIONS(3352), - [anon_sym_query] = ACTIONS(3352), - [anon_sym_QUERY] = ACTIONS(3352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_QueryExecute] = ACTIONS(3360), - [anon_sym_queryexecute] = ACTIONS(3360), - [anon_sym_QUERYEXECUTE] = ACTIONS(3360), - [anon_sym_queryExecute] = ACTIONS(3360), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_ABSTRACT] = ACTIONS(3352), - [anon_sym_Component] = ACTIONS(3352), - [anon_sym_component] = ACTIONS(3352), - [anon_sym_COMPONENT] = ACTIONS(3352), - [anon_sym_Debugger] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_DEBUGGER] = ACTIONS(3352), - [anon_sym_Final] = ACTIONS(3352), - [anon_sym_final] = ACTIONS(3352), - [anon_sym_FINAL] = ACTIONS(3352), - [anon_sym_Function] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3362), - [anon_sym_FUNCTION] = ACTIONS(3362), - [anon_sym_Include] = ACTIONS(3352), - [anon_sym_include] = ACTIONS(3352), - [anon_sym_INCLUDE] = ACTIONS(3352), - [anon_sym_New] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_NEW] = ACTIONS(3364), - [anon_sym_Package] = ACTIONS(3352), - [anon_sym_package] = ACTIONS(3352), - [anon_sym_PACKAGE] = ACTIONS(3352), - [anon_sym_Private] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_PRIVATE] = ACTIONS(3352), - [anon_sym_Public] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_PUBLIC] = ACTIONS(3352), - [anon_sym_Remote] = ACTIONS(3352), - [anon_sym_remote] = ACTIONS(3352), - [anon_sym_REMOTE] = ACTIONS(3352), - [anon_sym_Static] = ACTIONS(3352), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_STATIC] = ACTIONS(3352), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1132)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(982)] = { - [sym_statement_block] = STATE(565), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(984), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(984), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3464), - [sym_tag_linefeed] = ACTIONS(3466), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1133)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1134)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1135)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(983)] = { - [sym_statement_block] = STATE(566), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3468), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3468), - [sym_tag_linefeed] = ACTIONS(3470), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1136)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(984)] = { - [sym_statement_block] = STATE(569), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3472), + [STATE(1137)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3866), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -192397,9 +213174,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -192421,622 +213198,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3472), - [sym_tag_linefeed] = ACTIONS(3474), + [sym__automatic_semicolon] = ACTIONS(3866), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(985)] = { - [sym_statement_block] = STATE(570), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(986), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(986), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3476), - [sym_tag_linefeed] = ACTIONS(3478), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1138)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(986)] = { - [sym_statement_block] = STATE(572), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3480), - [sym_tag_linefeed] = ACTIONS(3482), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1139)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(987)] = { - [sym_statement_block] = STATE(573), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(988), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(988), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3484), - [sym_tag_linefeed] = ACTIONS(3486), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1140)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(988)] = { - [sym_statement_block] = STATE(575), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3488), - [sym_tag_linefeed] = ACTIONS(3490), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1141)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(989)] = { - [sym_statement_block] = STATE(4114), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(991), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(991), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1142)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3379), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_assignment_pattern] = STATE(5072), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4529), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4529), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3091), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3091), + [sym_undefined] = STATE(3091), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym_pattern] = STATE(4781), + [sym_rest_pattern] = STATE(4531), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3870), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(3870), + [anon_sym_query] = ACTIONS(3870), + [anon_sym_QUERY] = ACTIONS(3870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3680), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -193055,668 +213824,1058 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3870), + [anon_sym_set] = ACTIONS(3870), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(3870), + [anon_sym_QueryExecute] = ACTIONS(3872), + [anon_sym_queryexecute] = ACTIONS(3872), + [anon_sym_QUERYEXECUTE] = ACTIONS(3872), + [anon_sym_queryExecute] = ACTIONS(3872), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3492), - [sym_tag_linefeed] = ACTIONS(3494), + [anon_sym_Abstract] = ACTIONS(3870), + [anon_sym_abstract] = ACTIONS(3870), + [anon_sym_ABSTRACT] = ACTIONS(3870), + [anon_sym_Component] = ACTIONS(3870), + [anon_sym_component] = ACTIONS(3870), + [anon_sym_COMPONENT] = ACTIONS(3870), + [anon_sym_Debugger] = ACTIONS(3870), + [anon_sym_debugger] = ACTIONS(3870), + [anon_sym_DEBUGGER] = ACTIONS(3870), + [anon_sym_Final] = ACTIONS(3870), + [anon_sym_final] = ACTIONS(3870), + [anon_sym_FINAL] = ACTIONS(3870), + [anon_sym_Function] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_FUNCTION] = ACTIONS(3196), + [anon_sym_Include] = ACTIONS(3870), + [anon_sym_include] = ACTIONS(3870), + [anon_sym_INCLUDE] = ACTIONS(3870), + [anon_sym_New] = ACTIONS(3874), + [anon_sym_new] = ACTIONS(3874), + [anon_sym_NEW] = ACTIONS(3874), + [anon_sym_Package] = ACTIONS(3870), + [anon_sym_package] = ACTIONS(3870), + [anon_sym_PACKAGE] = ACTIONS(3870), + [anon_sym_Private] = ACTIONS(3870), + [anon_sym_private] = ACTIONS(3870), + [anon_sym_PRIVATE] = ACTIONS(3870), + [anon_sym_Public] = ACTIONS(3870), + [anon_sym_public] = ACTIONS(3870), + [anon_sym_PUBLIC] = ACTIONS(3870), + [anon_sym_Remote] = ACTIONS(3870), + [anon_sym_remote] = ACTIONS(3870), + [anon_sym_REMOTE] = ACTIONS(3870), + [anon_sym_Static] = ACTIONS(3870), + [anon_sym_static] = ACTIONS(3870), + [anon_sym_STATIC] = ACTIONS(3870), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(990)] = { - [sym_statement_block] = STATE(4115), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3496), - [sym_tag_linefeed] = ACTIONS(3498), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1143)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(991)] = { - [sym_statement_block] = STATE(4119), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3500), - [sym_tag_linefeed] = ACTIONS(3502), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1144)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(992)] = { - [sym_statement_block] = STATE(796), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3504), - [sym_tag_linefeed] = ACTIONS(3506), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1145)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(993)] = { - [sym_statement_block] = STATE(4121), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(994), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(994), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3508), - [sym_tag_linefeed] = ACTIONS(3510), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1146)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(994)] = { - [sym_statement_block] = STATE(4123), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3512), + [STATE(1147)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1148)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1149)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1150)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3876), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -193757,9 +214916,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -193781,618 +214940,880 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3512), - [sym_tag_linefeed] = ACTIONS(3514), + [sym__automatic_semicolon] = ACTIONS(3876), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(995)] = { - [sym_statement_block] = STATE(805), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(968), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(968), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1151)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1152)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1153)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3429), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4446), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5061), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_arguments] = STATE(5062), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2876), + [sym_hash_expression] = STATE(2876), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3516), - [sym_tag_linefeed] = ACTIONS(3518), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(3878), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(996)] = { - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_Query] = ACTIONS(3046), - [anon_sym_query] = ACTIONS(3046), - [anon_sym_QUERY] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3044), - [aux_sym_unary_operator_token1] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3044), - [sym_comment] = ACTIONS(3044), - [aux_sym_number_token1] = ACTIONS(3046), - [aux_sym_number_token2] = ACTIONS(3044), - [anon_sym_This] = ACTIONS(3046), - [anon_sym_this] = ACTIONS(3046), - [anon_sym_THIS] = ACTIONS(3046), - [anon_sym_Super] = ACTIONS(3046), - [anon_sym_super] = ACTIONS(3046), - [anon_sym_SUPER] = ACTIONS(3046), - [anon_sym_True] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3046), - [anon_sym_TRUE] = ACTIONS(3046), - [anon_sym_False] = ACTIONS(3046), - [anon_sym_false] = ACTIONS(3046), - [anon_sym_FALSE] = ACTIONS(3046), - [anon_sym_Null] = ACTIONS(3046), - [anon_sym_null] = ACTIONS(3046), - [anon_sym_NULL] = ACTIONS(3046), - [anon_sym_Undefined] = ACTIONS(3046), - [anon_sym_undefined] = ACTIONS(3046), - [anon_sym_UNDEFINED] = ACTIONS(3046), - [anon_sym_get] = ACTIONS(3046), - [anon_sym_set] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [sym_hash_empty] = ACTIONS(3044), - [anon_sym_export] = ACTIONS(3046), - [anon_sym_QueryExecute] = ACTIONS(3046), - [anon_sym_queryexecute] = ACTIONS(3046), - [anon_sym_QUERYEXECUTE] = ACTIONS(3046), - [anon_sym_queryExecute] = ACTIONS(3046), - [anon_sym_BQUOTE] = ACTIONS(3046), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3044), - [anon_sym_Abstract] = ACTIONS(3046), - [anon_sym_abstract] = ACTIONS(3046), - [anon_sym_ABSTRACT] = ACTIONS(3046), - [anon_sym_Break] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_BREAK] = ACTIONS(3046), - [anon_sym_Component] = ACTIONS(3046), - [anon_sym_component] = ACTIONS(3046), - [anon_sym_COMPONENT] = ACTIONS(3046), - [anon_sym_Continue] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_CONTINUE] = ACTIONS(3046), - [anon_sym_Debugger] = ACTIONS(3046), - [anon_sym_debugger] = ACTIONS(3046), - [anon_sym_DEBUGGER] = ACTIONS(3046), - [anon_sym_Do] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_DO] = ACTIONS(3046), - [anon_sym_Final] = ACTIONS(3046), - [anon_sym_final] = ACTIONS(3046), - [anon_sym_FINAL] = ACTIONS(3046), - [anon_sym_For] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_FOR] = ACTIONS(3046), - [anon_sym_Function] = ACTIONS(3046), - [anon_sym_function] = ACTIONS(3046), - [anon_sym_FUNCTION] = ACTIONS(3046), - [anon_sym_If] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_IF] = ACTIONS(3046), - [anon_sym_Import] = ACTIONS(3046), - [anon_sym_import] = ACTIONS(3046), - [anon_sym_IMPORT] = ACTIONS(3046), - [anon_sym_Include] = ACTIONS(3046), - [anon_sym_include] = ACTIONS(3046), - [anon_sym_INCLUDE] = ACTIONS(3046), - [anon_sym_Interface] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_INTERFACE] = ACTIONS(3046), - [anon_sym_New] = ACTIONS(3046), - [anon_sym_new] = ACTIONS(3046), - [anon_sym_NEW] = ACTIONS(3046), - [anon_sym_Package] = ACTIONS(3046), - [anon_sym_package] = ACTIONS(3046), - [anon_sym_PACKAGE] = ACTIONS(3046), - [anon_sym_Private] = ACTIONS(3046), - [anon_sym_private] = ACTIONS(3046), - [anon_sym_PRIVATE] = ACTIONS(3046), - [anon_sym_Public] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3046), - [anon_sym_PUBLIC] = ACTIONS(3046), - [anon_sym_Remote] = ACTIONS(3046), - [anon_sym_remote] = ACTIONS(3046), - [anon_sym_REMOTE] = ACTIONS(3046), - [anon_sym_Return] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_RETURN] = ACTIONS(3046), - [anon_sym_Static] = ACTIONS(3046), - [anon_sym_static] = ACTIONS(3046), - [anon_sym_STATIC] = ACTIONS(3046), - [anon_sym_Switch] = ACTIONS(3046), - [anon_sym_switch] = ACTIONS(3046), - [anon_sym_SWITCH] = ACTIONS(3046), - [anon_sym_Throw] = ACTIONS(3046), - [anon_sym_throw] = ACTIONS(3046), - [anon_sym_THROW] = ACTIONS(3046), - [anon_sym_Try] = ACTIONS(3046), - [anon_sym_try] = ACTIONS(3046), - [anon_sym_TRY] = ACTIONS(3046), - [anon_sym_Var] = ACTIONS(3046), - [anon_sym_var] = ACTIONS(3046), - [anon_sym_VAR] = ACTIONS(3046), - [anon_sym_While] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_WHILE] = ACTIONS(3046), - [anon_sym_With] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_WITH] = ACTIONS(3046), - [sym_cf_comment] = ACTIONS(3044), - [sym__java_block_open] = ACTIONS(3044), - [sym__static_type_prefix] = ACTIONS(3044), + [STATE(1154)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(997)] = { - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2848), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_Query] = ACTIONS(2850), - [anon_sym_query] = ACTIONS(2850), - [anon_sym_QUERY] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_unary_operator_token1] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_DQUOTE] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [sym_comment] = ACTIONS(2848), - [aux_sym_number_token1] = ACTIONS(2850), - [aux_sym_number_token2] = ACTIONS(2848), - [anon_sym_This] = ACTIONS(2850), - [anon_sym_this] = ACTIONS(2850), - [anon_sym_THIS] = ACTIONS(2850), - [anon_sym_Super] = ACTIONS(2850), - [anon_sym_super] = ACTIONS(2850), - [anon_sym_SUPER] = ACTIONS(2850), - [anon_sym_True] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2850), - [anon_sym_TRUE] = ACTIONS(2850), - [anon_sym_False] = ACTIONS(2850), - [anon_sym_false] = ACTIONS(2850), - [anon_sym_FALSE] = ACTIONS(2850), - [anon_sym_Null] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_NULL] = ACTIONS(2850), - [anon_sym_Undefined] = ACTIONS(2850), - [anon_sym_undefined] = ACTIONS(2850), - [anon_sym_UNDEFINED] = ACTIONS(2850), - [anon_sym_get] = ACTIONS(2850), - [anon_sym_set] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [sym_hash_empty] = ACTIONS(2848), - [anon_sym_export] = ACTIONS(2850), - [anon_sym_QueryExecute] = ACTIONS(2850), - [anon_sym_queryexecute] = ACTIONS(2850), - [anon_sym_QUERYEXECUTE] = ACTIONS(2850), - [anon_sym_queryExecute] = ACTIONS(2850), - [anon_sym_BQUOTE] = ACTIONS(2850), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2848), - [anon_sym_Abstract] = ACTIONS(2850), - [anon_sym_abstract] = ACTIONS(2850), - [anon_sym_ABSTRACT] = ACTIONS(2850), - [anon_sym_Break] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_BREAK] = ACTIONS(2850), - [anon_sym_Component] = ACTIONS(2850), - [anon_sym_component] = ACTIONS(2850), - [anon_sym_COMPONENT] = ACTIONS(2850), - [anon_sym_Continue] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_CONTINUE] = ACTIONS(2850), - [anon_sym_Debugger] = ACTIONS(2850), - [anon_sym_debugger] = ACTIONS(2850), - [anon_sym_DEBUGGER] = ACTIONS(2850), - [anon_sym_Do] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_DO] = ACTIONS(2850), - [anon_sym_Final] = ACTIONS(2850), - [anon_sym_final] = ACTIONS(2850), - [anon_sym_FINAL] = ACTIONS(2850), - [anon_sym_For] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_FOR] = ACTIONS(2850), - [anon_sym_Function] = ACTIONS(2850), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_FUNCTION] = ACTIONS(2850), - [anon_sym_If] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_IF] = ACTIONS(2850), - [anon_sym_Import] = ACTIONS(2850), - [anon_sym_import] = ACTIONS(2850), - [anon_sym_IMPORT] = ACTIONS(2850), - [anon_sym_Include] = ACTIONS(2850), - [anon_sym_include] = ACTIONS(2850), - [anon_sym_INCLUDE] = ACTIONS(2850), - [anon_sym_Interface] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_INTERFACE] = ACTIONS(2850), - [anon_sym_New] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_NEW] = ACTIONS(2850), - [anon_sym_Package] = ACTIONS(2850), - [anon_sym_package] = ACTIONS(2850), - [anon_sym_PACKAGE] = ACTIONS(2850), - [anon_sym_Private] = ACTIONS(2850), - [anon_sym_private] = ACTIONS(2850), - [anon_sym_PRIVATE] = ACTIONS(2850), - [anon_sym_Public] = ACTIONS(2850), - [anon_sym_public] = ACTIONS(2850), - [anon_sym_PUBLIC] = ACTIONS(2850), - [anon_sym_Remote] = ACTIONS(2850), - [anon_sym_remote] = ACTIONS(2850), - [anon_sym_REMOTE] = ACTIONS(2850), - [anon_sym_Return] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_RETURN] = ACTIONS(2850), - [anon_sym_Static] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2850), - [anon_sym_STATIC] = ACTIONS(2850), - [anon_sym_Switch] = ACTIONS(2850), - [anon_sym_switch] = ACTIONS(2850), - [anon_sym_SWITCH] = ACTIONS(2850), - [anon_sym_Throw] = ACTIONS(2850), - [anon_sym_throw] = ACTIONS(2850), - [anon_sym_THROW] = ACTIONS(2850), - [anon_sym_Try] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_TRY] = ACTIONS(2850), - [anon_sym_Var] = ACTIONS(2850), - [anon_sym_var] = ACTIONS(2850), - [anon_sym_VAR] = ACTIONS(2850), - [anon_sym_While] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_WHILE] = ACTIONS(2850), - [anon_sym_With] = ACTIONS(2850), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_WITH] = ACTIONS(2850), - [sym_cf_comment] = ACTIONS(2848), - [sym__java_block_open] = ACTIONS(2848), - [sym__static_type_prefix] = ACTIONS(2848), + [STATE(1155)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), }, - [STATE(998)] = { - [ts_builtin_sym_end] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3080), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_let] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_Query] = ACTIONS(3080), - [anon_sym_query] = ACTIONS(3080), - [anon_sym_QUERY] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3080), - [anon_sym_DASH] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3080), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [aux_sym_unary_operator_token1] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [sym_comment] = ACTIONS(3078), - [aux_sym_number_token1] = ACTIONS(3080), - [aux_sym_number_token2] = ACTIONS(3078), - [anon_sym_This] = ACTIONS(3080), - [anon_sym_this] = ACTIONS(3080), - [anon_sym_THIS] = ACTIONS(3080), - [anon_sym_Super] = ACTIONS(3080), - [anon_sym_super] = ACTIONS(3080), - [anon_sym_SUPER] = ACTIONS(3080), - [anon_sym_True] = ACTIONS(3080), - [anon_sym_true] = ACTIONS(3080), - [anon_sym_TRUE] = ACTIONS(3080), - [anon_sym_False] = ACTIONS(3080), - [anon_sym_false] = ACTIONS(3080), - [anon_sym_FALSE] = ACTIONS(3080), - [anon_sym_Null] = ACTIONS(3080), - [anon_sym_null] = ACTIONS(3080), - [anon_sym_NULL] = ACTIONS(3080), - [anon_sym_Undefined] = ACTIONS(3080), - [anon_sym_undefined] = ACTIONS(3080), - [anon_sym_UNDEFINED] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(3080), - [anon_sym_set] = ACTIONS(3080), - [anon_sym_POUND] = ACTIONS(3080), - [sym_hash_empty] = ACTIONS(3078), - [anon_sym_export] = ACTIONS(3080), - [anon_sym_QueryExecute] = ACTIONS(3080), - [anon_sym_queryexecute] = ACTIONS(3080), - [anon_sym_QUERYEXECUTE] = ACTIONS(3080), - [anon_sym_queryExecute] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3078), - [anon_sym_Abstract] = ACTIONS(3080), - [anon_sym_abstract] = ACTIONS(3080), - [anon_sym_ABSTRACT] = ACTIONS(3080), - [anon_sym_Break] = ACTIONS(3080), - [anon_sym_break] = ACTIONS(3080), - [anon_sym_BREAK] = ACTIONS(3080), - [anon_sym_Component] = ACTIONS(3080), - [anon_sym_component] = ACTIONS(3080), - [anon_sym_COMPONENT] = ACTIONS(3080), - [anon_sym_Continue] = ACTIONS(3080), - [anon_sym_continue] = ACTIONS(3080), - [anon_sym_CONTINUE] = ACTIONS(3080), - [anon_sym_Debugger] = ACTIONS(3080), - [anon_sym_debugger] = ACTIONS(3080), - [anon_sym_DEBUGGER] = ACTIONS(3080), - [anon_sym_Do] = ACTIONS(3080), - [anon_sym_do] = ACTIONS(3080), - [anon_sym_DO] = ACTIONS(3080), - [anon_sym_Final] = ACTIONS(3080), - [anon_sym_final] = ACTIONS(3080), - [anon_sym_FINAL] = ACTIONS(3080), - [anon_sym_For] = ACTIONS(3080), - [anon_sym_for] = ACTIONS(3080), - [anon_sym_FOR] = ACTIONS(3080), - [anon_sym_Function] = ACTIONS(3080), - [anon_sym_function] = ACTIONS(3080), - [anon_sym_FUNCTION] = ACTIONS(3080), - [anon_sym_If] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3080), - [anon_sym_IF] = ACTIONS(3080), - [anon_sym_Import] = ACTIONS(3080), - [anon_sym_import] = ACTIONS(3080), - [anon_sym_IMPORT] = ACTIONS(3080), - [anon_sym_Include] = ACTIONS(3080), - [anon_sym_include] = ACTIONS(3080), - [anon_sym_INCLUDE] = ACTIONS(3080), - [anon_sym_Interface] = ACTIONS(3080), - [anon_sym_interface] = ACTIONS(3080), - [anon_sym_INTERFACE] = ACTIONS(3080), - [anon_sym_New] = ACTIONS(3080), - [anon_sym_new] = ACTIONS(3080), - [anon_sym_NEW] = ACTIONS(3080), - [anon_sym_Package] = ACTIONS(3080), - [anon_sym_package] = ACTIONS(3080), - [anon_sym_PACKAGE] = ACTIONS(3080), - [anon_sym_Private] = ACTIONS(3080), - [anon_sym_private] = ACTIONS(3080), - [anon_sym_PRIVATE] = ACTIONS(3080), - [anon_sym_Public] = ACTIONS(3080), - [anon_sym_public] = ACTIONS(3080), - [anon_sym_PUBLIC] = ACTIONS(3080), - [anon_sym_Remote] = ACTIONS(3080), - [anon_sym_remote] = ACTIONS(3080), - [anon_sym_REMOTE] = ACTIONS(3080), - [anon_sym_Return] = ACTIONS(3080), - [anon_sym_return] = ACTIONS(3080), - [anon_sym_RETURN] = ACTIONS(3080), - [anon_sym_Static] = ACTIONS(3080), - [anon_sym_static] = ACTIONS(3080), - [anon_sym_STATIC] = ACTIONS(3080), - [anon_sym_Switch] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(3080), - [anon_sym_SWITCH] = ACTIONS(3080), - [anon_sym_Throw] = ACTIONS(3080), - [anon_sym_throw] = ACTIONS(3080), - [anon_sym_THROW] = ACTIONS(3080), - [anon_sym_Try] = ACTIONS(3080), - [anon_sym_try] = ACTIONS(3080), - [anon_sym_TRY] = ACTIONS(3080), - [anon_sym_Var] = ACTIONS(3080), - [anon_sym_var] = ACTIONS(3080), - [anon_sym_VAR] = ACTIONS(3080), - [anon_sym_While] = ACTIONS(3080), - [anon_sym_while] = ACTIONS(3080), - [anon_sym_WHILE] = ACTIONS(3080), - [anon_sym_With] = ACTIONS(3080), - [anon_sym_with] = ACTIONS(3080), - [anon_sym_WITH] = ACTIONS(3080), - [sym_cf_comment] = ACTIONS(3078), - [sym__java_block_open] = ACTIONS(3078), - [sym__static_type_prefix] = ACTIONS(3078), + [STATE(1156)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), }, - [STATE(999)] = { - [sym_statement_block] = STATE(607), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_query_tag_repeat1] = STATE(1154), + [STATE(1157)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3880), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -194433,9 +215854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -194457,77 +215878,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3522), - [sym_tag_linefeed] = ACTIONS(3524), + [sym__automatic_semicolon] = ACTIONS(3880), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1000)] = { - [sym_statement_block] = STATE(4790), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), + [STATE(1158)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(482), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_tag_statement_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3882), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -194568,9 +215988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -194592,212 +216012,2623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3526), - [sym_tag_linefeed] = ACTIONS(1456), + [sym__automatic_semicolon] = ACTIONS(3882), + [sym_tag_linefeed] = ACTIONS(1448), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1001)] = { - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_Query] = ACTIONS(2728), - [anon_sym_query] = ACTIONS(2728), - [anon_sym_QUERY] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [aux_sym_unary_operator_token1] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2726), - [sym_comment] = ACTIONS(2726), - [aux_sym_number_token1] = ACTIONS(2728), - [aux_sym_number_token2] = ACTIONS(2726), - [anon_sym_This] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2728), - [anon_sym_THIS] = ACTIONS(2728), - [anon_sym_Super] = ACTIONS(2728), - [anon_sym_super] = ACTIONS(2728), - [anon_sym_SUPER] = ACTIONS(2728), - [anon_sym_True] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_TRUE] = ACTIONS(2728), - [anon_sym_False] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [anon_sym_FALSE] = ACTIONS(2728), - [anon_sym_Null] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2728), - [anon_sym_NULL] = ACTIONS(2728), - [anon_sym_Undefined] = ACTIONS(2728), - [anon_sym_undefined] = ACTIONS(2728), - [anon_sym_UNDEFINED] = ACTIONS(2728), - [anon_sym_get] = ACTIONS(2728), - [anon_sym_set] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [sym_hash_empty] = ACTIONS(2726), - [anon_sym_export] = ACTIONS(2728), - [anon_sym_QueryExecute] = ACTIONS(2728), - [anon_sym_queryexecute] = ACTIONS(2728), - [anon_sym_QUERYEXECUTE] = ACTIONS(2728), - [anon_sym_queryExecute] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2726), - [anon_sym_Abstract] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_ABSTRACT] = ACTIONS(2728), - [anon_sym_Break] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_BREAK] = ACTIONS(2728), - [anon_sym_Component] = ACTIONS(2728), - [anon_sym_component] = ACTIONS(2728), - [anon_sym_COMPONENT] = ACTIONS(2728), - [anon_sym_Continue] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_CONTINUE] = ACTIONS(2728), - [anon_sym_Debugger] = ACTIONS(2728), - [anon_sym_debugger] = ACTIONS(2728), - [anon_sym_DEBUGGER] = ACTIONS(2728), - [anon_sym_Do] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_DO] = ACTIONS(2728), - [anon_sym_Final] = ACTIONS(2728), - [anon_sym_final] = ACTIONS(2728), - [anon_sym_FINAL] = ACTIONS(2728), - [anon_sym_For] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_FOR] = ACTIONS(2728), - [anon_sym_Function] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_FUNCTION] = ACTIONS(2728), - [anon_sym_If] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_IF] = ACTIONS(2728), - [anon_sym_Import] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_IMPORT] = ACTIONS(2728), - [anon_sym_Include] = ACTIONS(2728), - [anon_sym_include] = ACTIONS(2728), - [anon_sym_INCLUDE] = ACTIONS(2728), - [anon_sym_Interface] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_INTERFACE] = ACTIONS(2728), - [anon_sym_New] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_NEW] = ACTIONS(2728), - [anon_sym_Package] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2728), - [anon_sym_PACKAGE] = ACTIONS(2728), - [anon_sym_Private] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_PRIVATE] = ACTIONS(2728), - [anon_sym_Public] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_PUBLIC] = ACTIONS(2728), - [anon_sym_Remote] = ACTIONS(2728), - [anon_sym_remote] = ACTIONS(2728), - [anon_sym_REMOTE] = ACTIONS(2728), - [anon_sym_Return] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_RETURN] = ACTIONS(2728), - [anon_sym_Static] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_STATIC] = ACTIONS(2728), - [anon_sym_Switch] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_SWITCH] = ACTIONS(2728), - [anon_sym_Throw] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_THROW] = ACTIONS(2728), - [anon_sym_Try] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_TRY] = ACTIONS(2728), - [anon_sym_Var] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [anon_sym_VAR] = ACTIONS(2728), - [anon_sym_While] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_WHILE] = ACTIONS(2728), - [anon_sym_With] = ACTIONS(2728), - [anon_sym_with] = ACTIONS(2728), - [anon_sym_WITH] = ACTIONS(2728), - [sym_cf_comment] = ACTIONS(2726), - [sym__java_block_open] = ACTIONS(2726), - [sym__static_type_prefix] = ACTIONS(2726), + [STATE(1159)] = { + [sym_identifier] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_Query] = ACTIONS(3884), + [anon_sym_query] = ACTIONS(3884), + [anon_sym_QUERY] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_SLASH] = ACTIONS(3884), + [anon_sym_BANG] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_unary_operator_token1] = ACTIONS(3884), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_SQUOTE] = ACTIONS(3886), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3884), + [aux_sym_number_token2] = ACTIONS(3886), + [anon_sym_This] = ACTIONS(3884), + [anon_sym_this] = ACTIONS(3884), + [anon_sym_THIS] = ACTIONS(3884), + [anon_sym_Super] = ACTIONS(3884), + [anon_sym_super] = ACTIONS(3884), + [anon_sym_SUPER] = ACTIONS(3884), + [anon_sym_True] = ACTIONS(3884), + [anon_sym_true] = ACTIONS(3884), + [anon_sym_TRUE] = ACTIONS(3884), + [anon_sym_False] = ACTIONS(3884), + [anon_sym_false] = ACTIONS(3884), + [anon_sym_FALSE] = ACTIONS(3884), + [anon_sym_Null] = ACTIONS(3884), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_NULL] = ACTIONS(3884), + [anon_sym_Undefined] = ACTIONS(3884), + [anon_sym_undefined] = ACTIONS(3884), + [anon_sym_UNDEFINED] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(3884), + [anon_sym_set] = ACTIONS(3884), + [anon_sym_POUND] = ACTIONS(3884), + [sym_hash_empty] = ACTIONS(3886), + [anon_sym_export] = ACTIONS(3884), + [anon_sym_QueryExecute] = ACTIONS(3884), + [anon_sym_queryexecute] = ACTIONS(3884), + [anon_sym_QUERYEXECUTE] = ACTIONS(3884), + [anon_sym_queryExecute] = ACTIONS(3884), + [anon_sym_BQUOTE] = ACTIONS(3884), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3886), + [anon_sym_Abstract] = ACTIONS(3884), + [anon_sym_abstract] = ACTIONS(3884), + [anon_sym_ABSTRACT] = ACTIONS(3884), + [anon_sym_Break] = ACTIONS(3884), + [anon_sym_break] = ACTIONS(3884), + [anon_sym_BREAK] = ACTIONS(3884), + [anon_sym_Component] = ACTIONS(3884), + [anon_sym_component] = ACTIONS(3884), + [anon_sym_COMPONENT] = ACTIONS(3884), + [anon_sym_Continue] = ACTIONS(3884), + [anon_sym_continue] = ACTIONS(3884), + [anon_sym_CONTINUE] = ACTIONS(3884), + [anon_sym_Debugger] = ACTIONS(3884), + [anon_sym_debugger] = ACTIONS(3884), + [anon_sym_DEBUGGER] = ACTIONS(3884), + [anon_sym_Do] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_DO] = ACTIONS(3884), + [anon_sym_Final] = ACTIONS(3884), + [anon_sym_final] = ACTIONS(3884), + [anon_sym_FINAL] = ACTIONS(3884), + [anon_sym_For] = ACTIONS(3884), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_FOR] = ACTIONS(3884), + [anon_sym_Function] = ACTIONS(3884), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_FUNCTION] = ACTIONS(3884), + [anon_sym_If] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_IF] = ACTIONS(3884), + [anon_sym_Import] = ACTIONS(3884), + [anon_sym_import] = ACTIONS(3884), + [anon_sym_IMPORT] = ACTIONS(3884), + [anon_sym_Include] = ACTIONS(3884), + [anon_sym_include] = ACTIONS(3884), + [anon_sym_INCLUDE] = ACTIONS(3884), + [anon_sym_Interface] = ACTIONS(3884), + [anon_sym_interface] = ACTIONS(3884), + [anon_sym_INTERFACE] = ACTIONS(3884), + [anon_sym_New] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_NEW] = ACTIONS(3884), + [anon_sym_Package] = ACTIONS(3884), + [anon_sym_package] = ACTIONS(3884), + [anon_sym_PACKAGE] = ACTIONS(3884), + [anon_sym_Private] = ACTIONS(3884), + [anon_sym_private] = ACTIONS(3884), + [anon_sym_PRIVATE] = ACTIONS(3884), + [anon_sym_Public] = ACTIONS(3884), + [anon_sym_public] = ACTIONS(3884), + [anon_sym_PUBLIC] = ACTIONS(3884), + [anon_sym_Remote] = ACTIONS(3884), + [anon_sym_remote] = ACTIONS(3884), + [anon_sym_REMOTE] = ACTIONS(3884), + [anon_sym_Return] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_RETURN] = ACTIONS(3884), + [anon_sym_Static] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_STATIC] = ACTIONS(3884), + [anon_sym_Switch] = ACTIONS(3884), + [anon_sym_switch] = ACTIONS(3884), + [anon_sym_SWITCH] = ACTIONS(3884), + [anon_sym_Throw] = ACTIONS(3884), + [anon_sym_throw] = ACTIONS(3884), + [anon_sym_THROW] = ACTIONS(3884), + [anon_sym_Try] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_TRY] = ACTIONS(3884), + [anon_sym_Var] = ACTIONS(3884), + [anon_sym_var] = ACTIONS(3884), + [anon_sym_VAR] = ACTIONS(3884), + [anon_sym_While] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_WHILE] = ACTIONS(3884), + [anon_sym_With] = ACTIONS(3884), + [anon_sym_with] = ACTIONS(3884), + [anon_sym_WITH] = ACTIONS(3884), + [sym_cf_comment] = ACTIONS(3886), + [sym__java_block_open] = ACTIONS(3886), + [sym__static_type_prefix] = ACTIONS(3886), }, - [STATE(1002)] = { - [sym_statement_block] = STATE(4290), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_query_tag_repeat1] = STATE(1154), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1160)] = { + [sym_identifier] = ACTIONS(3888), + [anon_sym_LBRACE] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3890), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_Query] = ACTIONS(3888), + [anon_sym_query] = ACTIONS(3888), + [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_SLASH] = ACTIONS(3888), + [anon_sym_BANG] = ACTIONS(3890), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_unary_operator_token1] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3890), + [anon_sym_DASH_DASH] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(3890), + [anon_sym_SQUOTE] = ACTIONS(3890), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3888), + [aux_sym_number_token2] = ACTIONS(3890), + [anon_sym_This] = ACTIONS(3888), + [anon_sym_this] = ACTIONS(3888), + [anon_sym_THIS] = ACTIONS(3888), + [anon_sym_Super] = ACTIONS(3888), + [anon_sym_super] = ACTIONS(3888), + [anon_sym_SUPER] = ACTIONS(3888), + [anon_sym_True] = ACTIONS(3888), + [anon_sym_true] = ACTIONS(3888), + [anon_sym_TRUE] = ACTIONS(3888), + [anon_sym_False] = ACTIONS(3888), + [anon_sym_false] = ACTIONS(3888), + [anon_sym_FALSE] = ACTIONS(3888), + [anon_sym_Null] = ACTIONS(3888), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_NULL] = ACTIONS(3888), + [anon_sym_Undefined] = ACTIONS(3888), + [anon_sym_undefined] = ACTIONS(3888), + [anon_sym_UNDEFINED] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3888), + [anon_sym_set] = ACTIONS(3888), + [anon_sym_POUND] = ACTIONS(3888), + [sym_hash_empty] = ACTIONS(3890), + [anon_sym_export] = ACTIONS(3888), + [anon_sym_QueryExecute] = ACTIONS(3888), + [anon_sym_queryexecute] = ACTIONS(3888), + [anon_sym_QUERYEXECUTE] = ACTIONS(3888), + [anon_sym_queryExecute] = ACTIONS(3888), + [anon_sym_BQUOTE] = ACTIONS(3888), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3890), + [anon_sym_Abstract] = ACTIONS(3888), + [anon_sym_abstract] = ACTIONS(3888), + [anon_sym_ABSTRACT] = ACTIONS(3888), + [anon_sym_Break] = ACTIONS(3888), + [anon_sym_break] = ACTIONS(3888), + [anon_sym_BREAK] = ACTIONS(3888), + [anon_sym_Component] = ACTIONS(3888), + [anon_sym_component] = ACTIONS(3888), + [anon_sym_COMPONENT] = ACTIONS(3888), + [anon_sym_Continue] = ACTIONS(3888), + [anon_sym_continue] = ACTIONS(3888), + [anon_sym_CONTINUE] = ACTIONS(3888), + [anon_sym_Debugger] = ACTIONS(3888), + [anon_sym_debugger] = ACTIONS(3888), + [anon_sym_DEBUGGER] = ACTIONS(3888), + [anon_sym_Do] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_DO] = ACTIONS(3888), + [anon_sym_Final] = ACTIONS(3888), + [anon_sym_final] = ACTIONS(3888), + [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_For] = ACTIONS(3888), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_FOR] = ACTIONS(3888), + [anon_sym_Function] = ACTIONS(3888), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_FUNCTION] = ACTIONS(3888), + [anon_sym_If] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_IF] = ACTIONS(3888), + [anon_sym_Import] = ACTIONS(3888), + [anon_sym_import] = ACTIONS(3888), + [anon_sym_IMPORT] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3888), + [anon_sym_include] = ACTIONS(3888), + [anon_sym_INCLUDE] = ACTIONS(3888), + [anon_sym_Interface] = ACTIONS(3888), + [anon_sym_interface] = ACTIONS(3888), + [anon_sym_INTERFACE] = ACTIONS(3888), + [anon_sym_New] = ACTIONS(3888), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_NEW] = ACTIONS(3888), + [anon_sym_Package] = ACTIONS(3888), + [anon_sym_package] = ACTIONS(3888), + [anon_sym_PACKAGE] = ACTIONS(3888), + [anon_sym_Private] = ACTIONS(3888), + [anon_sym_private] = ACTIONS(3888), + [anon_sym_PRIVATE] = ACTIONS(3888), + [anon_sym_Public] = ACTIONS(3888), + [anon_sym_public] = ACTIONS(3888), + [anon_sym_PUBLIC] = ACTIONS(3888), + [anon_sym_Remote] = ACTIONS(3888), + [anon_sym_remote] = ACTIONS(3888), + [anon_sym_REMOTE] = ACTIONS(3888), + [anon_sym_Return] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_RETURN] = ACTIONS(3888), + [anon_sym_Static] = ACTIONS(3888), + [anon_sym_static] = ACTIONS(3888), + [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Switch] = ACTIONS(3888), + [anon_sym_switch] = ACTIONS(3888), + [anon_sym_SWITCH] = ACTIONS(3888), + [anon_sym_Throw] = ACTIONS(3888), + [anon_sym_throw] = ACTIONS(3888), + [anon_sym_THROW] = ACTIONS(3888), + [anon_sym_Try] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_TRY] = ACTIONS(3888), + [anon_sym_Var] = ACTIONS(3888), + [anon_sym_var] = ACTIONS(3888), + [anon_sym_VAR] = ACTIONS(3888), + [anon_sym_While] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_WHILE] = ACTIONS(3888), + [anon_sym_With] = ACTIONS(3888), + [anon_sym_with] = ACTIONS(3888), + [anon_sym_WITH] = ACTIONS(3888), + [sym_cf_comment] = ACTIONS(3890), + [sym__java_block_open] = ACTIONS(3890), + [sym__static_type_prefix] = ACTIONS(3890), + }, + [STATE(1161)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1162)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1163)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1164)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_Query] = ACTIONS(3654), + [anon_sym_query] = ACTIONS(3654), + [anon_sym_QUERY] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [aux_sym_unary_operator_token1] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3654), + [aux_sym_number_token2] = ACTIONS(3656), + [anon_sym_This] = ACTIONS(3654), + [anon_sym_this] = ACTIONS(3654), + [anon_sym_THIS] = ACTIONS(3654), + [anon_sym_Super] = ACTIONS(3654), + [anon_sym_super] = ACTIONS(3654), + [anon_sym_SUPER] = ACTIONS(3654), + [anon_sym_True] = ACTIONS(3654), + [anon_sym_true] = ACTIONS(3654), + [anon_sym_TRUE] = ACTIONS(3654), + [anon_sym_False] = ACTIONS(3654), + [anon_sym_false] = ACTIONS(3654), + [anon_sym_FALSE] = ACTIONS(3654), + [anon_sym_Null] = ACTIONS(3654), + [anon_sym_null] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_Undefined] = ACTIONS(3654), + [anon_sym_undefined] = ACTIONS(3654), + [anon_sym_UNDEFINED] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_POUND] = ACTIONS(3654), + [sym_hash_empty] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_QueryExecute] = ACTIONS(3654), + [anon_sym_queryexecute] = ACTIONS(3654), + [anon_sym_QUERYEXECUTE] = ACTIONS(3654), + [anon_sym_queryExecute] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3654), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3656), + [anon_sym_Abstract] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_ABSTRACT] = ACTIONS(3654), + [anon_sym_Break] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_BREAK] = ACTIONS(3654), + [anon_sym_Component] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_COMPONENT] = ACTIONS(3654), + [anon_sym_Continue] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_CONTINUE] = ACTIONS(3654), + [anon_sym_Debugger] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_DEBUGGER] = ACTIONS(3654), + [anon_sym_Do] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_DO] = ACTIONS(3654), + [anon_sym_Final] = ACTIONS(3654), + [anon_sym_final] = ACTIONS(3654), + [anon_sym_FINAL] = ACTIONS(3654), + [anon_sym_For] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_FOR] = ACTIONS(3654), + [anon_sym_Function] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_FUNCTION] = ACTIONS(3654), + [anon_sym_If] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_IF] = ACTIONS(3654), + [anon_sym_Import] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_IMPORT] = ACTIONS(3654), + [anon_sym_Include] = ACTIONS(3654), + [anon_sym_include] = ACTIONS(3654), + [anon_sym_INCLUDE] = ACTIONS(3654), + [anon_sym_Interface] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_INTERFACE] = ACTIONS(3654), + [anon_sym_New] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_NEW] = ACTIONS(3654), + [anon_sym_Package] = ACTIONS(3654), + [anon_sym_package] = ACTIONS(3654), + [anon_sym_PACKAGE] = ACTIONS(3654), + [anon_sym_Private] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_PRIVATE] = ACTIONS(3654), + [anon_sym_Public] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_PUBLIC] = ACTIONS(3654), + [anon_sym_Remote] = ACTIONS(3654), + [anon_sym_remote] = ACTIONS(3654), + [anon_sym_REMOTE] = ACTIONS(3654), + [anon_sym_Return] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_RETURN] = ACTIONS(3654), + [anon_sym_Static] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_STATIC] = ACTIONS(3654), + [anon_sym_Switch] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_SWITCH] = ACTIONS(3654), + [anon_sym_Throw] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_THROW] = ACTIONS(3654), + [anon_sym_Try] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_TRY] = ACTIONS(3654), + [anon_sym_Var] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_VAR] = ACTIONS(3654), + [anon_sym_While] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_WHILE] = ACTIONS(3654), + [anon_sym_With] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_WITH] = ACTIONS(3654), + [sym_cf_comment] = ACTIONS(3656), + [sym__java_block_open] = ACTIONS(3656), + [sym__static_type_prefix] = ACTIONS(3656), + }, + [STATE(1165)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1166)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1167)] = { + [sym_identifier] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_Query] = ACTIONS(1957), + [anon_sym_query] = ACTIONS(1957), + [anon_sym_QUERY] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1959), + [aux_sym_unary_operator_token1] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1957), + [aux_sym_number_token2] = ACTIONS(1959), + [anon_sym_This] = ACTIONS(1957), + [anon_sym_this] = ACTIONS(1957), + [anon_sym_THIS] = ACTIONS(1957), + [anon_sym_Super] = ACTIONS(1957), + [anon_sym_super] = ACTIONS(1957), + [anon_sym_SUPER] = ACTIONS(1957), + [anon_sym_True] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_TRUE] = ACTIONS(1957), + [anon_sym_False] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_FALSE] = ACTIONS(1957), + [anon_sym_Null] = ACTIONS(1957), + [anon_sym_null] = ACTIONS(1957), + [anon_sym_NULL] = ACTIONS(1957), + [anon_sym_Undefined] = ACTIONS(1957), + [anon_sym_undefined] = ACTIONS(1957), + [anon_sym_UNDEFINED] = ACTIONS(1957), + [anon_sym_get] = ACTIONS(1957), + [anon_sym_set] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1957), + [sym_hash_empty] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_QueryExecute] = ACTIONS(1957), + [anon_sym_queryexecute] = ACTIONS(1957), + [anon_sym_QUERYEXECUTE] = ACTIONS(1957), + [anon_sym_queryExecute] = ACTIONS(1957), + [anon_sym_BQUOTE] = ACTIONS(1957), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1959), + [anon_sym_Abstract] = ACTIONS(1957), + [anon_sym_abstract] = ACTIONS(1957), + [anon_sym_ABSTRACT] = ACTIONS(1957), + [anon_sym_Break] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_BREAK] = ACTIONS(1957), + [anon_sym_Component] = ACTIONS(1957), + [anon_sym_component] = ACTIONS(1957), + [anon_sym_COMPONENT] = ACTIONS(1957), + [anon_sym_Continue] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_CONTINUE] = ACTIONS(1957), + [anon_sym_Debugger] = ACTIONS(1957), + [anon_sym_debugger] = ACTIONS(1957), + [anon_sym_DEBUGGER] = ACTIONS(1957), + [anon_sym_Do] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_DO] = ACTIONS(1957), + [anon_sym_Final] = ACTIONS(1957), + [anon_sym_final] = ACTIONS(1957), + [anon_sym_FINAL] = ACTIONS(1957), + [anon_sym_For] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_FOR] = ACTIONS(1957), + [anon_sym_Function] = ACTIONS(1957), + [anon_sym_function] = ACTIONS(1957), + [anon_sym_FUNCTION] = ACTIONS(1957), + [anon_sym_If] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_IF] = ACTIONS(1957), + [anon_sym_Import] = ACTIONS(1957), + [anon_sym_import] = ACTIONS(1957), + [anon_sym_IMPORT] = ACTIONS(1957), + [anon_sym_Include] = ACTIONS(1957), + [anon_sym_include] = ACTIONS(1957), + [anon_sym_INCLUDE] = ACTIONS(1957), + [anon_sym_Interface] = ACTIONS(1957), + [anon_sym_interface] = ACTIONS(1957), + [anon_sym_INTERFACE] = ACTIONS(1957), + [anon_sym_New] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_NEW] = ACTIONS(1957), + [anon_sym_Package] = ACTIONS(1957), + [anon_sym_package] = ACTIONS(1957), + [anon_sym_PACKAGE] = ACTIONS(1957), + [anon_sym_Private] = ACTIONS(1957), + [anon_sym_private] = ACTIONS(1957), + [anon_sym_PRIVATE] = ACTIONS(1957), + [anon_sym_Public] = ACTIONS(1957), + [anon_sym_public] = ACTIONS(1957), + [anon_sym_PUBLIC] = ACTIONS(1957), + [anon_sym_Remote] = ACTIONS(1957), + [anon_sym_remote] = ACTIONS(1957), + [anon_sym_REMOTE] = ACTIONS(1957), + [anon_sym_Return] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_RETURN] = ACTIONS(1957), + [anon_sym_Static] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_STATIC] = ACTIONS(1957), + [anon_sym_Switch] = ACTIONS(1957), + [anon_sym_switch] = ACTIONS(1957), + [anon_sym_SWITCH] = ACTIONS(1957), + [anon_sym_Throw] = ACTIONS(1957), + [anon_sym_throw] = ACTIONS(1957), + [anon_sym_THROW] = ACTIONS(1957), + [anon_sym_Try] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_TRY] = ACTIONS(1957), + [anon_sym_Var] = ACTIONS(1957), + [anon_sym_var] = ACTIONS(1957), + [anon_sym_VAR] = ACTIONS(1957), + [anon_sym_While] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_WHILE] = ACTIONS(1957), + [anon_sym_With] = ACTIONS(1957), + [anon_sym_with] = ACTIONS(1957), + [anon_sym_WITH] = ACTIONS(1957), + [sym_cf_comment] = ACTIONS(1959), + [sym__java_block_open] = ACTIONS(1959), + [sym__static_type_prefix] = ACTIONS(1959), + }, + [STATE(1168)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1169)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3353), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_parameter_attribute] = STATE(4442), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4947), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_arguments] = STATE(4948), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3033), + [sym_hash_expression] = STATE(3033), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [aux_sym_throw_statement_repeat1] = STATE(4442), + [sym_identifier] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(3892), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1170)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1171)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1172)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1173)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1174)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1175)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1176)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1177)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_Query] = ACTIONS(3658), + [anon_sym_query] = ACTIONS(3658), + [anon_sym_QUERY] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [aux_sym_unary_operator_token1] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(3658), + [aux_sym_number_token2] = ACTIONS(3660), + [anon_sym_This] = ACTIONS(3658), + [anon_sym_this] = ACTIONS(3658), + [anon_sym_THIS] = ACTIONS(3658), + [anon_sym_Super] = ACTIONS(3658), + [anon_sym_super] = ACTIONS(3658), + [anon_sym_SUPER] = ACTIONS(3658), + [anon_sym_True] = ACTIONS(3658), + [anon_sym_true] = ACTIONS(3658), + [anon_sym_TRUE] = ACTIONS(3658), + [anon_sym_False] = ACTIONS(3658), + [anon_sym_false] = ACTIONS(3658), + [anon_sym_FALSE] = ACTIONS(3658), + [anon_sym_Null] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_Undefined] = ACTIONS(3658), + [anon_sym_undefined] = ACTIONS(3658), + [anon_sym_UNDEFINED] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_POUND] = ACTIONS(3658), + [sym_hash_empty] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_QueryExecute] = ACTIONS(3658), + [anon_sym_queryexecute] = ACTIONS(3658), + [anon_sym_QUERYEXECUTE] = ACTIONS(3658), + [anon_sym_queryExecute] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3658), + [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3660), + [anon_sym_Abstract] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_ABSTRACT] = ACTIONS(3658), + [anon_sym_Break] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_BREAK] = ACTIONS(3658), + [anon_sym_Component] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_COMPONENT] = ACTIONS(3658), + [anon_sym_Continue] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_CONTINUE] = ACTIONS(3658), + [anon_sym_Debugger] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_DEBUGGER] = ACTIONS(3658), + [anon_sym_Do] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_DO] = ACTIONS(3658), + [anon_sym_Final] = ACTIONS(3658), + [anon_sym_final] = ACTIONS(3658), + [anon_sym_FINAL] = ACTIONS(3658), + [anon_sym_For] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_FOR] = ACTIONS(3658), + [anon_sym_Function] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_FUNCTION] = ACTIONS(3658), + [anon_sym_If] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_IF] = ACTIONS(3658), + [anon_sym_Import] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_IMPORT] = ACTIONS(3658), + [anon_sym_Include] = ACTIONS(3658), + [anon_sym_include] = ACTIONS(3658), + [anon_sym_INCLUDE] = ACTIONS(3658), + [anon_sym_Interface] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_INTERFACE] = ACTIONS(3658), + [anon_sym_New] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_NEW] = ACTIONS(3658), + [anon_sym_Package] = ACTIONS(3658), + [anon_sym_package] = ACTIONS(3658), + [anon_sym_PACKAGE] = ACTIONS(3658), + [anon_sym_Private] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_PRIVATE] = ACTIONS(3658), + [anon_sym_Public] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_PUBLIC] = ACTIONS(3658), + [anon_sym_Remote] = ACTIONS(3658), + [anon_sym_remote] = ACTIONS(3658), + [anon_sym_REMOTE] = ACTIONS(3658), + [anon_sym_Return] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_RETURN] = ACTIONS(3658), + [anon_sym_Static] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Switch] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_SWITCH] = ACTIONS(3658), + [anon_sym_Throw] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_THROW] = ACTIONS(3658), + [anon_sym_Try] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_TRY] = ACTIONS(3658), + [anon_sym_Var] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_VAR] = ACTIONS(3658), + [anon_sym_While] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_WHILE] = ACTIONS(3658), + [anon_sym_With] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_WITH] = ACTIONS(3658), + [sym_cf_comment] = ACTIONS(3660), + [sym__java_block_open] = ACTIONS(3660), + [sym__static_type_prefix] = ACTIONS(3660), + }, + [STATE(1178)] = { + [sym_empty_statement] = STATE(1277), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3492), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5208), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3215), + [sym_hash_expression] = STATE(3215), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -194816,2148 +218647,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(3900), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3530), - [sym_tag_linefeed] = ACTIONS(3532), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1003)] = { - [ts_builtin_sym_end] = ACTIONS(3032), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_SEMI] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_Query] = ACTIONS(3034), - [anon_sym_query] = ACTIONS(3034), - [anon_sym_QUERY] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3032), - [anon_sym_TILDE] = ACTIONS(3032), - [aux_sym_unary_operator_token1] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3032), - [anon_sym_DASH_DASH] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3032), - [anon_sym_SQUOTE] = ACTIONS(3032), - [sym_comment] = ACTIONS(3032), - [aux_sym_number_token1] = ACTIONS(3034), - [aux_sym_number_token2] = ACTIONS(3032), - [anon_sym_This] = ACTIONS(3034), - [anon_sym_this] = ACTIONS(3034), - [anon_sym_THIS] = ACTIONS(3034), - [anon_sym_Super] = ACTIONS(3034), - [anon_sym_super] = ACTIONS(3034), - [anon_sym_SUPER] = ACTIONS(3034), - [anon_sym_True] = ACTIONS(3034), - [anon_sym_true] = ACTIONS(3034), - [anon_sym_TRUE] = ACTIONS(3034), - [anon_sym_False] = ACTIONS(3034), - [anon_sym_false] = ACTIONS(3034), - [anon_sym_FALSE] = ACTIONS(3034), - [anon_sym_Null] = ACTIONS(3034), - [anon_sym_null] = ACTIONS(3034), - [anon_sym_NULL] = ACTIONS(3034), - [anon_sym_Undefined] = ACTIONS(3034), - [anon_sym_undefined] = ACTIONS(3034), - [anon_sym_UNDEFINED] = ACTIONS(3034), - [anon_sym_get] = ACTIONS(3034), - [anon_sym_set] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3034), - [sym_hash_empty] = ACTIONS(3032), - [anon_sym_export] = ACTIONS(3034), - [anon_sym_QueryExecute] = ACTIONS(3034), - [anon_sym_queryexecute] = ACTIONS(3034), - [anon_sym_QUERYEXECUTE] = ACTIONS(3034), - [anon_sym_queryExecute] = ACTIONS(3034), - [anon_sym_BQUOTE] = ACTIONS(3034), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3032), - [anon_sym_Abstract] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3034), - [anon_sym_ABSTRACT] = ACTIONS(3034), - [anon_sym_Break] = ACTIONS(3034), - [anon_sym_break] = ACTIONS(3034), - [anon_sym_BREAK] = ACTIONS(3034), - [anon_sym_Component] = ACTIONS(3034), - [anon_sym_component] = ACTIONS(3034), - [anon_sym_COMPONENT] = ACTIONS(3034), - [anon_sym_Continue] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(3034), - [anon_sym_CONTINUE] = ACTIONS(3034), - [anon_sym_Debugger] = ACTIONS(3034), - [anon_sym_debugger] = ACTIONS(3034), - [anon_sym_DEBUGGER] = ACTIONS(3034), - [anon_sym_Do] = ACTIONS(3034), - [anon_sym_do] = ACTIONS(3034), - [anon_sym_DO] = ACTIONS(3034), - [anon_sym_Final] = ACTIONS(3034), - [anon_sym_final] = ACTIONS(3034), - [anon_sym_FINAL] = ACTIONS(3034), - [anon_sym_For] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3034), - [anon_sym_FOR] = ACTIONS(3034), - [anon_sym_Function] = ACTIONS(3034), - [anon_sym_function] = ACTIONS(3034), - [anon_sym_FUNCTION] = ACTIONS(3034), - [anon_sym_If] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_IF] = ACTIONS(3034), - [anon_sym_Import] = ACTIONS(3034), - [anon_sym_import] = ACTIONS(3034), - [anon_sym_IMPORT] = ACTIONS(3034), - [anon_sym_Include] = ACTIONS(3034), - [anon_sym_include] = ACTIONS(3034), - [anon_sym_INCLUDE] = ACTIONS(3034), - [anon_sym_Interface] = ACTIONS(3034), - [anon_sym_interface] = ACTIONS(3034), - [anon_sym_INTERFACE] = ACTIONS(3034), - [anon_sym_New] = ACTIONS(3034), - [anon_sym_new] = ACTIONS(3034), - [anon_sym_NEW] = ACTIONS(3034), - [anon_sym_Package] = ACTIONS(3034), - [anon_sym_package] = ACTIONS(3034), - [anon_sym_PACKAGE] = ACTIONS(3034), - [anon_sym_Private] = ACTIONS(3034), - [anon_sym_private] = ACTIONS(3034), - [anon_sym_PRIVATE] = ACTIONS(3034), - [anon_sym_Public] = ACTIONS(3034), - [anon_sym_public] = ACTIONS(3034), - [anon_sym_PUBLIC] = ACTIONS(3034), - [anon_sym_Remote] = ACTIONS(3034), - [anon_sym_remote] = ACTIONS(3034), - [anon_sym_REMOTE] = ACTIONS(3034), - [anon_sym_Return] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3034), - [anon_sym_RETURN] = ACTIONS(3034), - [anon_sym_Static] = ACTIONS(3034), - [anon_sym_static] = ACTIONS(3034), - [anon_sym_STATIC] = ACTIONS(3034), - [anon_sym_Switch] = ACTIONS(3034), - [anon_sym_switch] = ACTIONS(3034), - [anon_sym_SWITCH] = ACTIONS(3034), - [anon_sym_Throw] = ACTIONS(3034), - [anon_sym_throw] = ACTIONS(3034), - [anon_sym_THROW] = ACTIONS(3034), - [anon_sym_Try] = ACTIONS(3034), - [anon_sym_try] = ACTIONS(3034), - [anon_sym_TRY] = ACTIONS(3034), - [anon_sym_Var] = ACTIONS(3034), - [anon_sym_var] = ACTIONS(3034), - [anon_sym_VAR] = ACTIONS(3034), - [anon_sym_While] = ACTIONS(3034), - [anon_sym_while] = ACTIONS(3034), - [anon_sym_WHILE] = ACTIONS(3034), - [anon_sym_With] = ACTIONS(3034), - [anon_sym_with] = ACTIONS(3034), - [anon_sym_WITH] = ACTIONS(3034), - [sym_cf_comment] = ACTIONS(3032), - [sym__java_block_open] = ACTIONS(3032), - [sym__static_type_prefix] = ACTIONS(3032), - }, - [STATE(1004)] = { - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_SEMI] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_Query] = ACTIONS(3038), - [anon_sym_query] = ACTIONS(3038), - [anon_sym_QUERY] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3036), - [anon_sym_TILDE] = ACTIONS(3036), - [aux_sym_unary_operator_token1] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3036), - [anon_sym_DASH_DASH] = ACTIONS(3036), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3036), - [sym_comment] = ACTIONS(3036), - [aux_sym_number_token1] = ACTIONS(3038), - [aux_sym_number_token2] = ACTIONS(3036), - [anon_sym_This] = ACTIONS(3038), - [anon_sym_this] = ACTIONS(3038), - [anon_sym_THIS] = ACTIONS(3038), - [anon_sym_Super] = ACTIONS(3038), - [anon_sym_super] = ACTIONS(3038), - [anon_sym_SUPER] = ACTIONS(3038), - [anon_sym_True] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3038), - [anon_sym_TRUE] = ACTIONS(3038), - [anon_sym_False] = ACTIONS(3038), - [anon_sym_false] = ACTIONS(3038), - [anon_sym_FALSE] = ACTIONS(3038), - [anon_sym_Null] = ACTIONS(3038), - [anon_sym_null] = ACTIONS(3038), - [anon_sym_NULL] = ACTIONS(3038), - [anon_sym_Undefined] = ACTIONS(3038), - [anon_sym_undefined] = ACTIONS(3038), - [anon_sym_UNDEFINED] = ACTIONS(3038), - [anon_sym_get] = ACTIONS(3038), - [anon_sym_set] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3038), - [sym_hash_empty] = ACTIONS(3036), - [anon_sym_export] = ACTIONS(3038), - [anon_sym_QueryExecute] = ACTIONS(3038), - [anon_sym_queryexecute] = ACTIONS(3038), - [anon_sym_QUERYEXECUTE] = ACTIONS(3038), - [anon_sym_queryExecute] = ACTIONS(3038), - [anon_sym_BQUOTE] = ACTIONS(3038), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3036), - [anon_sym_Abstract] = ACTIONS(3038), - [anon_sym_abstract] = ACTIONS(3038), - [anon_sym_ABSTRACT] = ACTIONS(3038), - [anon_sym_Break] = ACTIONS(3038), - [anon_sym_break] = ACTIONS(3038), - [anon_sym_BREAK] = ACTIONS(3038), - [anon_sym_Component] = ACTIONS(3038), - [anon_sym_component] = ACTIONS(3038), - [anon_sym_COMPONENT] = ACTIONS(3038), - [anon_sym_Continue] = ACTIONS(3038), - [anon_sym_continue] = ACTIONS(3038), - [anon_sym_CONTINUE] = ACTIONS(3038), - [anon_sym_Debugger] = ACTIONS(3038), - [anon_sym_debugger] = ACTIONS(3038), - [anon_sym_DEBUGGER] = ACTIONS(3038), - [anon_sym_Do] = ACTIONS(3038), - [anon_sym_do] = ACTIONS(3038), - [anon_sym_DO] = ACTIONS(3038), - [anon_sym_Final] = ACTIONS(3038), - [anon_sym_final] = ACTIONS(3038), - [anon_sym_FINAL] = ACTIONS(3038), - [anon_sym_For] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3038), - [anon_sym_FOR] = ACTIONS(3038), - [anon_sym_Function] = ACTIONS(3038), - [anon_sym_function] = ACTIONS(3038), - [anon_sym_FUNCTION] = ACTIONS(3038), - [anon_sym_If] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_IF] = ACTIONS(3038), - [anon_sym_Import] = ACTIONS(3038), - [anon_sym_import] = ACTIONS(3038), - [anon_sym_IMPORT] = ACTIONS(3038), - [anon_sym_Include] = ACTIONS(3038), - [anon_sym_include] = ACTIONS(3038), - [anon_sym_INCLUDE] = ACTIONS(3038), - [anon_sym_Interface] = ACTIONS(3038), - [anon_sym_interface] = ACTIONS(3038), - [anon_sym_INTERFACE] = ACTIONS(3038), - [anon_sym_New] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(3038), - [anon_sym_NEW] = ACTIONS(3038), - [anon_sym_Package] = ACTIONS(3038), - [anon_sym_package] = ACTIONS(3038), - [anon_sym_PACKAGE] = ACTIONS(3038), - [anon_sym_Private] = ACTIONS(3038), - [anon_sym_private] = ACTIONS(3038), - [anon_sym_PRIVATE] = ACTIONS(3038), - [anon_sym_Public] = ACTIONS(3038), - [anon_sym_public] = ACTIONS(3038), - [anon_sym_PUBLIC] = ACTIONS(3038), - [anon_sym_Remote] = ACTIONS(3038), - [anon_sym_remote] = ACTIONS(3038), - [anon_sym_REMOTE] = ACTIONS(3038), - [anon_sym_Return] = ACTIONS(3038), - [anon_sym_return] = ACTIONS(3038), - [anon_sym_RETURN] = ACTIONS(3038), - [anon_sym_Static] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(3038), - [anon_sym_STATIC] = ACTIONS(3038), - [anon_sym_Switch] = ACTIONS(3038), - [anon_sym_switch] = ACTIONS(3038), - [anon_sym_SWITCH] = ACTIONS(3038), - [anon_sym_Throw] = ACTIONS(3038), - [anon_sym_throw] = ACTIONS(3038), - [anon_sym_THROW] = ACTIONS(3038), - [anon_sym_Try] = ACTIONS(3038), - [anon_sym_try] = ACTIONS(3038), - [anon_sym_TRY] = ACTIONS(3038), - [anon_sym_Var] = ACTIONS(3038), - [anon_sym_var] = ACTIONS(3038), - [anon_sym_VAR] = ACTIONS(3038), - [anon_sym_While] = ACTIONS(3038), - [anon_sym_while] = ACTIONS(3038), - [anon_sym_WHILE] = ACTIONS(3038), - [anon_sym_With] = ACTIONS(3038), - [anon_sym_with] = ACTIONS(3038), - [anon_sym_WITH] = ACTIONS(3038), - [sym_cf_comment] = ACTIONS(3036), - [sym__java_block_open] = ACTIONS(3036), - [sym__static_type_prefix] = ACTIONS(3036), - }, - [STATE(1005)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(1005), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(553), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_declaration_repeat3] = STATE(1005), - [sym_identifier] = ACTIONS(3534), - [anon_sym_LBRACE] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3546), - [anon_sym_Query] = ACTIONS(3543), - [anon_sym_query] = ACTIONS(3543), - [anon_sym_QUERY] = ACTIONS(3543), - [anon_sym_PLUS] = ACTIONS(3549), - [anon_sym_DASH] = ACTIONS(3549), - [anon_sym_SLASH] = ACTIONS(3552), - [anon_sym_BANG] = ACTIONS(3555), - [anon_sym_TILDE] = ACTIONS(3555), - [aux_sym_unary_operator_token1] = ACTIONS(3549), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3561), - [anon_sym_SQUOTE] = ACTIONS(3564), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3567), - [aux_sym_number_token2] = ACTIONS(3570), - [anon_sym_This] = ACTIONS(3573), - [anon_sym_this] = ACTIONS(3573), - [anon_sym_THIS] = ACTIONS(3573), - [anon_sym_Super] = ACTIONS(3576), - [anon_sym_super] = ACTIONS(3576), - [anon_sym_SUPER] = ACTIONS(3576), - [anon_sym_True] = ACTIONS(3579), - [anon_sym_true] = ACTIONS(3579), - [anon_sym_TRUE] = ACTIONS(3579), - [anon_sym_False] = ACTIONS(3582), - [anon_sym_false] = ACTIONS(3582), - [anon_sym_FALSE] = ACTIONS(3582), - [anon_sym_Null] = ACTIONS(3585), - [anon_sym_null] = ACTIONS(3585), - [anon_sym_NULL] = ACTIONS(3585), - [anon_sym_Undefined] = ACTIONS(3588), - [anon_sym_undefined] = ACTIONS(3588), - [anon_sym_UNDEFINED] = ACTIONS(3588), - [anon_sym_get] = ACTIONS(3543), - [anon_sym_set] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3591), - [sym_hash_empty] = ACTIONS(3594), - [anon_sym_export] = ACTIONS(3543), - [anon_sym_QueryExecute] = ACTIONS(3597), - [anon_sym_queryexecute] = ACTIONS(3597), - [anon_sym_QUERYEXECUTE] = ACTIONS(3597), - [anon_sym_queryExecute] = ACTIONS(3597), - [anon_sym_BQUOTE] = ACTIONS(3600), - [anon_sym_Abstract] = ACTIONS(3543), - [anon_sym_abstract] = ACTIONS(3543), - [anon_sym_ABSTRACT] = ACTIONS(3543), - [anon_sym_Component] = ACTIONS(3543), - [anon_sym_component] = ACTIONS(3543), - [anon_sym_COMPONENT] = ACTIONS(3543), - [anon_sym_Debugger] = ACTIONS(3543), - [anon_sym_debugger] = ACTIONS(3543), - [anon_sym_DEBUGGER] = ACTIONS(3543), - [anon_sym_Final] = ACTIONS(3543), - [anon_sym_final] = ACTIONS(3543), - [anon_sym_FINAL] = ACTIONS(3543), - [anon_sym_Function] = ACTIONS(3603), - [anon_sym_function] = ACTIONS(3603), - [anon_sym_FUNCTION] = ACTIONS(3603), - [anon_sym_Include] = ACTIONS(3543), - [anon_sym_include] = ACTIONS(3543), - [anon_sym_INCLUDE] = ACTIONS(3543), - [anon_sym_New] = ACTIONS(3606), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_NEW] = ACTIONS(3606), - [anon_sym_Package] = ACTIONS(3543), - [anon_sym_package] = ACTIONS(3543), - [anon_sym_PACKAGE] = ACTIONS(3543), - [anon_sym_Private] = ACTIONS(3543), - [anon_sym_private] = ACTIONS(3543), - [anon_sym_PRIVATE] = ACTIONS(3543), - [anon_sym_Public] = ACTIONS(3543), - [anon_sym_public] = ACTIONS(3543), - [anon_sym_PUBLIC] = ACTIONS(3543), - [anon_sym_Remote] = ACTIONS(3543), - [anon_sym_remote] = ACTIONS(3543), - [anon_sym_REMOTE] = ACTIONS(3543), - [anon_sym_Static] = ACTIONS(3543), - [anon_sym_static] = ACTIONS(3543), - [anon_sym_STATIC] = ACTIONS(3543), - [sym__automatic_semicolon] = ACTIONS(1923), - [sym_tag_linefeed] = ACTIONS(3609), - [sym__java_block_open] = ACTIONS(3612), - [sym__static_type_prefix] = ACTIONS(3615), - }, - [STATE(1006)] = { - [ts_builtin_sym_end] = ACTIONS(3618), - [sym_identifier] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_Query] = ACTIONS(3621), - [anon_sym_query] = ACTIONS(3621), - [anon_sym_QUERY] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [aux_sym_unary_operator_token1] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [sym_comment] = ACTIONS(3624), - [aux_sym_number_token1] = ACTIONS(3621), - [aux_sym_number_token2] = ACTIONS(3618), - [anon_sym_This] = ACTIONS(3621), - [anon_sym_this] = ACTIONS(3621), - [anon_sym_THIS] = ACTIONS(3621), - [anon_sym_Super] = ACTIONS(3621), - [anon_sym_super] = ACTIONS(3621), - [anon_sym_SUPER] = ACTIONS(3621), - [anon_sym_True] = ACTIONS(3621), - [anon_sym_true] = ACTIONS(3621), - [anon_sym_TRUE] = ACTIONS(3621), - [anon_sym_False] = ACTIONS(3621), - [anon_sym_false] = ACTIONS(3621), - [anon_sym_FALSE] = ACTIONS(3621), - [anon_sym_Null] = ACTIONS(3621), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_NULL] = ACTIONS(3621), - [anon_sym_Undefined] = ACTIONS(3621), - [anon_sym_undefined] = ACTIONS(3621), - [anon_sym_UNDEFINED] = ACTIONS(3621), - [anon_sym_get] = ACTIONS(3621), - [anon_sym_set] = ACTIONS(3621), - [anon_sym_POUND] = ACTIONS(3621), - [sym_hash_empty] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3621), - [anon_sym_QueryExecute] = ACTIONS(3621), - [anon_sym_queryexecute] = ACTIONS(3621), - [anon_sym_QUERYEXECUTE] = ACTIONS(3621), - [anon_sym_queryExecute] = ACTIONS(3621), - [anon_sym_BQUOTE] = ACTIONS(3621), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3618), - [anon_sym_Abstract] = ACTIONS(3621), - [anon_sym_abstract] = ACTIONS(3621), - [anon_sym_ABSTRACT] = ACTIONS(3621), - [anon_sym_Break] = ACTIONS(3621), - [anon_sym_break] = ACTIONS(3621), - [anon_sym_BREAK] = ACTIONS(3621), - [anon_sym_Component] = ACTIONS(3621), - [anon_sym_component] = ACTIONS(3621), - [anon_sym_COMPONENT] = ACTIONS(3621), - [anon_sym_Continue] = ACTIONS(3621), - [anon_sym_continue] = ACTIONS(3621), - [anon_sym_CONTINUE] = ACTIONS(3621), - [anon_sym_Debugger] = ACTIONS(3621), - [anon_sym_debugger] = ACTIONS(3621), - [anon_sym_DEBUGGER] = ACTIONS(3621), - [anon_sym_Do] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_DO] = ACTIONS(3621), - [anon_sym_Final] = ACTIONS(3621), - [anon_sym_final] = ACTIONS(3621), - [anon_sym_FINAL] = ACTIONS(3621), - [anon_sym_For] = ACTIONS(3621), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_FOR] = ACTIONS(3621), - [anon_sym_Function] = ACTIONS(3621), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_FUNCTION] = ACTIONS(3621), - [anon_sym_If] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_IF] = ACTIONS(3621), - [anon_sym_Import] = ACTIONS(3621), - [anon_sym_import] = ACTIONS(3621), - [anon_sym_IMPORT] = ACTIONS(3621), - [anon_sym_Include] = ACTIONS(3621), - [anon_sym_include] = ACTIONS(3621), - [anon_sym_INCLUDE] = ACTIONS(3621), - [anon_sym_Interface] = ACTIONS(3621), - [anon_sym_interface] = ACTIONS(3621), - [anon_sym_INTERFACE] = ACTIONS(3621), - [anon_sym_New] = ACTIONS(3621), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_NEW] = ACTIONS(3621), - [anon_sym_Package] = ACTIONS(3621), - [anon_sym_package] = ACTIONS(3621), - [anon_sym_PACKAGE] = ACTIONS(3621), - [anon_sym_Private] = ACTIONS(3621), - [anon_sym_private] = ACTIONS(3621), - [anon_sym_PRIVATE] = ACTIONS(3621), - [anon_sym_Public] = ACTIONS(3621), - [anon_sym_public] = ACTIONS(3621), - [anon_sym_PUBLIC] = ACTIONS(3621), - [anon_sym_Remote] = ACTIONS(3621), - [anon_sym_remote] = ACTIONS(3621), - [anon_sym_REMOTE] = ACTIONS(3621), - [anon_sym_Return] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_RETURN] = ACTIONS(3621), - [anon_sym_Static] = ACTIONS(3621), - [anon_sym_static] = ACTIONS(3621), - [anon_sym_STATIC] = ACTIONS(3621), - [anon_sym_Switch] = ACTIONS(3621), - [anon_sym_switch] = ACTIONS(3621), - [anon_sym_SWITCH] = ACTIONS(3621), - [anon_sym_Throw] = ACTIONS(3621), - [anon_sym_throw] = ACTIONS(3621), - [anon_sym_THROW] = ACTIONS(3621), - [anon_sym_Try] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_TRY] = ACTIONS(3621), - [anon_sym_Var] = ACTIONS(3621), - [anon_sym_var] = ACTIONS(3621), - [anon_sym_VAR] = ACTIONS(3621), - [anon_sym_While] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_WHILE] = ACTIONS(3621), - [anon_sym_With] = ACTIONS(3621), - [anon_sym_with] = ACTIONS(3621), - [anon_sym_WITH] = ACTIONS(3621), - [sym_cf_comment] = ACTIONS(3618), - [sym__java_block_open] = ACTIONS(3618), - [sym__static_type_prefix] = ACTIONS(3618), - }, - [STATE(1007)] = { - [ts_builtin_sym_end] = ACTIONS(3020), - [sym_identifier] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3020), - [anon_sym_SEMI] = ACTIONS(3020), - [anon_sym_let] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_Query] = ACTIONS(3022), - [anon_sym_query] = ACTIONS(3022), - [anon_sym_QUERY] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3020), - [anon_sym_TILDE] = ACTIONS(3020), - [aux_sym_unary_operator_token1] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3020), - [anon_sym_DASH_DASH] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(3020), - [anon_sym_SQUOTE] = ACTIONS(3020), - [sym_comment] = ACTIONS(3020), - [aux_sym_number_token1] = ACTIONS(3022), - [aux_sym_number_token2] = ACTIONS(3020), - [anon_sym_This] = ACTIONS(3022), - [anon_sym_this] = ACTIONS(3022), - [anon_sym_THIS] = ACTIONS(3022), - [anon_sym_Super] = ACTIONS(3022), - [anon_sym_super] = ACTIONS(3022), - [anon_sym_SUPER] = ACTIONS(3022), - [anon_sym_True] = ACTIONS(3022), - [anon_sym_true] = ACTIONS(3022), - [anon_sym_TRUE] = ACTIONS(3022), - [anon_sym_False] = ACTIONS(3022), - [anon_sym_false] = ACTIONS(3022), - [anon_sym_FALSE] = ACTIONS(3022), - [anon_sym_Null] = ACTIONS(3022), - [anon_sym_null] = ACTIONS(3022), - [anon_sym_NULL] = ACTIONS(3022), - [anon_sym_Undefined] = ACTIONS(3022), - [anon_sym_undefined] = ACTIONS(3022), - [anon_sym_UNDEFINED] = ACTIONS(3022), - [anon_sym_get] = ACTIONS(3022), - [anon_sym_set] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3022), - [sym_hash_empty] = ACTIONS(3020), - [anon_sym_export] = ACTIONS(3022), - [anon_sym_QueryExecute] = ACTIONS(3022), - [anon_sym_queryexecute] = ACTIONS(3022), - [anon_sym_QUERYEXECUTE] = ACTIONS(3022), - [anon_sym_queryExecute] = ACTIONS(3022), - [anon_sym_BQUOTE] = ACTIONS(3022), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3020), - [anon_sym_Abstract] = ACTIONS(3022), - [anon_sym_abstract] = ACTIONS(3022), - [anon_sym_ABSTRACT] = ACTIONS(3022), - [anon_sym_Break] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_BREAK] = ACTIONS(3022), - [anon_sym_Component] = ACTIONS(3022), - [anon_sym_component] = ACTIONS(3022), - [anon_sym_COMPONENT] = ACTIONS(3022), - [anon_sym_Continue] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_CONTINUE] = ACTIONS(3022), - [anon_sym_Debugger] = ACTIONS(3022), - [anon_sym_debugger] = ACTIONS(3022), - [anon_sym_DEBUGGER] = ACTIONS(3022), - [anon_sym_Do] = ACTIONS(3022), - [anon_sym_do] = ACTIONS(3022), - [anon_sym_DO] = ACTIONS(3022), - [anon_sym_Final] = ACTIONS(3022), - [anon_sym_final] = ACTIONS(3022), - [anon_sym_FINAL] = ACTIONS(3022), - [anon_sym_For] = ACTIONS(3022), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_FOR] = ACTIONS(3022), - [anon_sym_Function] = ACTIONS(3022), - [anon_sym_function] = ACTIONS(3022), - [anon_sym_FUNCTION] = ACTIONS(3022), - [anon_sym_If] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_IF] = ACTIONS(3022), - [anon_sym_Import] = ACTIONS(3022), - [anon_sym_import] = ACTIONS(3022), - [anon_sym_IMPORT] = ACTIONS(3022), - [anon_sym_Include] = ACTIONS(3022), - [anon_sym_include] = ACTIONS(3022), - [anon_sym_INCLUDE] = ACTIONS(3022), - [anon_sym_Interface] = ACTIONS(3022), - [anon_sym_interface] = ACTIONS(3022), - [anon_sym_INTERFACE] = ACTIONS(3022), - [anon_sym_New] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(3022), - [anon_sym_NEW] = ACTIONS(3022), - [anon_sym_Package] = ACTIONS(3022), - [anon_sym_package] = ACTIONS(3022), - [anon_sym_PACKAGE] = ACTIONS(3022), - [anon_sym_Private] = ACTIONS(3022), - [anon_sym_private] = ACTIONS(3022), - [anon_sym_PRIVATE] = ACTIONS(3022), - [anon_sym_Public] = ACTIONS(3022), - [anon_sym_public] = ACTIONS(3022), - [anon_sym_PUBLIC] = ACTIONS(3022), - [anon_sym_Remote] = ACTIONS(3022), - [anon_sym_remote] = ACTIONS(3022), - [anon_sym_REMOTE] = ACTIONS(3022), - [anon_sym_Return] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_RETURN] = ACTIONS(3022), - [anon_sym_Static] = ACTIONS(3022), - [anon_sym_static] = ACTIONS(3022), - [anon_sym_STATIC] = ACTIONS(3022), - [anon_sym_Switch] = ACTIONS(3022), - [anon_sym_switch] = ACTIONS(3022), - [anon_sym_SWITCH] = ACTIONS(3022), - [anon_sym_Throw] = ACTIONS(3022), - [anon_sym_throw] = ACTIONS(3022), - [anon_sym_THROW] = ACTIONS(3022), - [anon_sym_Try] = ACTIONS(3022), - [anon_sym_try] = ACTIONS(3022), - [anon_sym_TRY] = ACTIONS(3022), - [anon_sym_Var] = ACTIONS(3022), - [anon_sym_var] = ACTIONS(3022), - [anon_sym_VAR] = ACTIONS(3022), - [anon_sym_While] = ACTIONS(3022), - [anon_sym_while] = ACTIONS(3022), - [anon_sym_WHILE] = ACTIONS(3022), - [anon_sym_With] = ACTIONS(3022), - [anon_sym_with] = ACTIONS(3022), - [anon_sym_WITH] = ACTIONS(3022), - [sym_cf_comment] = ACTIONS(3020), - [sym__java_block_open] = ACTIONS(3020), - [sym__static_type_prefix] = ACTIONS(3020), - }, - [STATE(1008)] = { - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_Query] = ACTIONS(3050), - [anon_sym_query] = ACTIONS(3050), - [anon_sym_QUERY] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3048), - [aux_sym_unary_operator_token1] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_SQUOTE] = ACTIONS(3048), - [sym_comment] = ACTIONS(3048), - [aux_sym_number_token1] = ACTIONS(3050), - [aux_sym_number_token2] = ACTIONS(3048), - [anon_sym_This] = ACTIONS(3050), - [anon_sym_this] = ACTIONS(3050), - [anon_sym_THIS] = ACTIONS(3050), - [anon_sym_Super] = ACTIONS(3050), - [anon_sym_super] = ACTIONS(3050), - [anon_sym_SUPER] = ACTIONS(3050), - [anon_sym_True] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3050), - [anon_sym_TRUE] = ACTIONS(3050), - [anon_sym_False] = ACTIONS(3050), - [anon_sym_false] = ACTIONS(3050), - [anon_sym_FALSE] = ACTIONS(3050), - [anon_sym_Null] = ACTIONS(3050), - [anon_sym_null] = ACTIONS(3050), - [anon_sym_NULL] = ACTIONS(3050), - [anon_sym_Undefined] = ACTIONS(3050), - [anon_sym_undefined] = ACTIONS(3050), - [anon_sym_UNDEFINED] = ACTIONS(3050), - [anon_sym_get] = ACTIONS(3050), - [anon_sym_set] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [sym_hash_empty] = ACTIONS(3048), - [anon_sym_export] = ACTIONS(3050), - [anon_sym_QueryExecute] = ACTIONS(3050), - [anon_sym_queryexecute] = ACTIONS(3050), - [anon_sym_QUERYEXECUTE] = ACTIONS(3050), - [anon_sym_queryExecute] = ACTIONS(3050), - [anon_sym_BQUOTE] = ACTIONS(3050), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3048), - [anon_sym_Abstract] = ACTIONS(3050), - [anon_sym_abstract] = ACTIONS(3050), - [anon_sym_ABSTRACT] = ACTIONS(3050), - [anon_sym_Break] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_BREAK] = ACTIONS(3050), - [anon_sym_Component] = ACTIONS(3050), - [anon_sym_component] = ACTIONS(3050), - [anon_sym_COMPONENT] = ACTIONS(3050), - [anon_sym_Continue] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_CONTINUE] = ACTIONS(3050), - [anon_sym_Debugger] = ACTIONS(3050), - [anon_sym_debugger] = ACTIONS(3050), - [anon_sym_DEBUGGER] = ACTIONS(3050), - [anon_sym_Do] = ACTIONS(3050), - [anon_sym_do] = ACTIONS(3050), - [anon_sym_DO] = ACTIONS(3050), - [anon_sym_Final] = ACTIONS(3050), - [anon_sym_final] = ACTIONS(3050), - [anon_sym_FINAL] = ACTIONS(3050), - [anon_sym_For] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_FOR] = ACTIONS(3050), - [anon_sym_Function] = ACTIONS(3050), - [anon_sym_function] = ACTIONS(3050), - [anon_sym_FUNCTION] = ACTIONS(3050), - [anon_sym_If] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_IF] = ACTIONS(3050), - [anon_sym_Import] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(3050), - [anon_sym_IMPORT] = ACTIONS(3050), - [anon_sym_Include] = ACTIONS(3050), - [anon_sym_include] = ACTIONS(3050), - [anon_sym_INCLUDE] = ACTIONS(3050), - [anon_sym_Interface] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_INTERFACE] = ACTIONS(3050), - [anon_sym_New] = ACTIONS(3050), - [anon_sym_new] = ACTIONS(3050), - [anon_sym_NEW] = ACTIONS(3050), - [anon_sym_Package] = ACTIONS(3050), - [anon_sym_package] = ACTIONS(3050), - [anon_sym_PACKAGE] = ACTIONS(3050), - [anon_sym_Private] = ACTIONS(3050), - [anon_sym_private] = ACTIONS(3050), - [anon_sym_PRIVATE] = ACTIONS(3050), - [anon_sym_Public] = ACTIONS(3050), - [anon_sym_public] = ACTIONS(3050), - [anon_sym_PUBLIC] = ACTIONS(3050), - [anon_sym_Remote] = ACTIONS(3050), - [anon_sym_remote] = ACTIONS(3050), - [anon_sym_REMOTE] = ACTIONS(3050), - [anon_sym_Return] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_RETURN] = ACTIONS(3050), - [anon_sym_Static] = ACTIONS(3050), - [anon_sym_static] = ACTIONS(3050), - [anon_sym_STATIC] = ACTIONS(3050), - [anon_sym_Switch] = ACTIONS(3050), - [anon_sym_switch] = ACTIONS(3050), - [anon_sym_SWITCH] = ACTIONS(3050), - [anon_sym_Throw] = ACTIONS(3050), - [anon_sym_throw] = ACTIONS(3050), - [anon_sym_THROW] = ACTIONS(3050), - [anon_sym_Try] = ACTIONS(3050), - [anon_sym_try] = ACTIONS(3050), - [anon_sym_TRY] = ACTIONS(3050), - [anon_sym_Var] = ACTIONS(3050), - [anon_sym_var] = ACTIONS(3050), - [anon_sym_VAR] = ACTIONS(3050), - [anon_sym_While] = ACTIONS(3050), - [anon_sym_while] = ACTIONS(3050), - [anon_sym_WHILE] = ACTIONS(3050), - [anon_sym_With] = ACTIONS(3050), - [anon_sym_with] = ACTIONS(3050), - [anon_sym_WITH] = ACTIONS(3050), - [sym_cf_comment] = ACTIONS(3048), - [sym__java_block_open] = ACTIONS(3048), - [sym__static_type_prefix] = ACTIONS(3048), - }, - [STATE(1009)] = { - [ts_builtin_sym_end] = ACTIONS(3064), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_Query] = ACTIONS(3066), - [anon_sym_query] = ACTIONS(3066), - [anon_sym_QUERY] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_TILDE] = ACTIONS(3064), - [aux_sym_unary_operator_token1] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3064), - [anon_sym_SQUOTE] = ACTIONS(3064), - [sym_comment] = ACTIONS(3064), - [aux_sym_number_token1] = ACTIONS(3066), - [aux_sym_number_token2] = ACTIONS(3064), - [anon_sym_This] = ACTIONS(3066), - [anon_sym_this] = ACTIONS(3066), - [anon_sym_THIS] = ACTIONS(3066), - [anon_sym_Super] = ACTIONS(3066), - [anon_sym_super] = ACTIONS(3066), - [anon_sym_SUPER] = ACTIONS(3066), - [anon_sym_True] = ACTIONS(3066), - [anon_sym_true] = ACTIONS(3066), - [anon_sym_TRUE] = ACTIONS(3066), - [anon_sym_False] = ACTIONS(3066), - [anon_sym_false] = ACTIONS(3066), - [anon_sym_FALSE] = ACTIONS(3066), - [anon_sym_Null] = ACTIONS(3066), - [anon_sym_null] = ACTIONS(3066), - [anon_sym_NULL] = ACTIONS(3066), - [anon_sym_Undefined] = ACTIONS(3066), - [anon_sym_undefined] = ACTIONS(3066), - [anon_sym_UNDEFINED] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_POUND] = ACTIONS(3066), - [sym_hash_empty] = ACTIONS(3064), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_QueryExecute] = ACTIONS(3066), - [anon_sym_queryexecute] = ACTIONS(3066), - [anon_sym_QUERYEXECUTE] = ACTIONS(3066), - [anon_sym_queryExecute] = ACTIONS(3066), - [anon_sym_BQUOTE] = ACTIONS(3066), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3064), - [anon_sym_Abstract] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_ABSTRACT] = ACTIONS(3066), - [anon_sym_Break] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_BREAK] = ACTIONS(3066), - [anon_sym_Component] = ACTIONS(3066), - [anon_sym_component] = ACTIONS(3066), - [anon_sym_COMPONENT] = ACTIONS(3066), - [anon_sym_Continue] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_CONTINUE] = ACTIONS(3066), - [anon_sym_Debugger] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_DEBUGGER] = ACTIONS(3066), - [anon_sym_Do] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_DO] = ACTIONS(3066), - [anon_sym_Final] = ACTIONS(3066), - [anon_sym_final] = ACTIONS(3066), - [anon_sym_FINAL] = ACTIONS(3066), - [anon_sym_For] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_FOR] = ACTIONS(3066), - [anon_sym_Function] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_FUNCTION] = ACTIONS(3066), - [anon_sym_If] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_IF] = ACTIONS(3066), - [anon_sym_Import] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_IMPORT] = ACTIONS(3066), - [anon_sym_Include] = ACTIONS(3066), - [anon_sym_include] = ACTIONS(3066), - [anon_sym_INCLUDE] = ACTIONS(3066), - [anon_sym_Interface] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_INTERFACE] = ACTIONS(3066), - [anon_sym_New] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_NEW] = ACTIONS(3066), - [anon_sym_Package] = ACTIONS(3066), - [anon_sym_package] = ACTIONS(3066), - [anon_sym_PACKAGE] = ACTIONS(3066), - [anon_sym_Private] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_PRIVATE] = ACTIONS(3066), - [anon_sym_Public] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_PUBLIC] = ACTIONS(3066), - [anon_sym_Remote] = ACTIONS(3066), - [anon_sym_remote] = ACTIONS(3066), - [anon_sym_REMOTE] = ACTIONS(3066), - [anon_sym_Return] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_RETURN] = ACTIONS(3066), - [anon_sym_Static] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_STATIC] = ACTIONS(3066), - [anon_sym_Switch] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_SWITCH] = ACTIONS(3066), - [anon_sym_Throw] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_THROW] = ACTIONS(3066), - [anon_sym_Try] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_TRY] = ACTIONS(3066), - [anon_sym_Var] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_VAR] = ACTIONS(3066), - [anon_sym_While] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_WHILE] = ACTIONS(3066), - [anon_sym_With] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_WITH] = ACTIONS(3066), - [sym_cf_comment] = ACTIONS(3064), - [sym__java_block_open] = ACTIONS(3064), - [sym__static_type_prefix] = ACTIONS(3064), - }, - [STATE(1010)] = { - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_Query] = ACTIONS(3054), - [anon_sym_query] = ACTIONS(3054), - [anon_sym_QUERY] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_TILDE] = ACTIONS(3052), - [aux_sym_unary_operator_token1] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [sym_comment] = ACTIONS(3052), - [aux_sym_number_token1] = ACTIONS(3054), - [aux_sym_number_token2] = ACTIONS(3052), - [anon_sym_This] = ACTIONS(3054), - [anon_sym_this] = ACTIONS(3054), - [anon_sym_THIS] = ACTIONS(3054), - [anon_sym_Super] = ACTIONS(3054), - [anon_sym_super] = ACTIONS(3054), - [anon_sym_SUPER] = ACTIONS(3054), - [anon_sym_True] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3054), - [anon_sym_TRUE] = ACTIONS(3054), - [anon_sym_False] = ACTIONS(3054), - [anon_sym_false] = ACTIONS(3054), - [anon_sym_FALSE] = ACTIONS(3054), - [anon_sym_Null] = ACTIONS(3054), - [anon_sym_null] = ACTIONS(3054), - [anon_sym_NULL] = ACTIONS(3054), - [anon_sym_Undefined] = ACTIONS(3054), - [anon_sym_undefined] = ACTIONS(3054), - [anon_sym_UNDEFINED] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(3054), - [anon_sym_set] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [sym_hash_empty] = ACTIONS(3052), - [anon_sym_export] = ACTIONS(3054), - [anon_sym_QueryExecute] = ACTIONS(3054), - [anon_sym_queryexecute] = ACTIONS(3054), - [anon_sym_QUERYEXECUTE] = ACTIONS(3054), - [anon_sym_queryExecute] = ACTIONS(3054), - [anon_sym_BQUOTE] = ACTIONS(3054), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3052), - [anon_sym_Abstract] = ACTIONS(3054), - [anon_sym_abstract] = ACTIONS(3054), - [anon_sym_ABSTRACT] = ACTIONS(3054), - [anon_sym_Break] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_BREAK] = ACTIONS(3054), - [anon_sym_Component] = ACTIONS(3054), - [anon_sym_component] = ACTIONS(3054), - [anon_sym_COMPONENT] = ACTIONS(3054), - [anon_sym_Continue] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_CONTINUE] = ACTIONS(3054), - [anon_sym_Debugger] = ACTIONS(3054), - [anon_sym_debugger] = ACTIONS(3054), - [anon_sym_DEBUGGER] = ACTIONS(3054), - [anon_sym_Do] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_DO] = ACTIONS(3054), - [anon_sym_Final] = ACTIONS(3054), - [anon_sym_final] = ACTIONS(3054), - [anon_sym_FINAL] = ACTIONS(3054), - [anon_sym_For] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_FOR] = ACTIONS(3054), - [anon_sym_Function] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_FUNCTION] = ACTIONS(3054), - [anon_sym_If] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_IF] = ACTIONS(3054), - [anon_sym_Import] = ACTIONS(3054), - [anon_sym_import] = ACTIONS(3054), - [anon_sym_IMPORT] = ACTIONS(3054), - [anon_sym_Include] = ACTIONS(3054), - [anon_sym_include] = ACTIONS(3054), - [anon_sym_INCLUDE] = ACTIONS(3054), - [anon_sym_Interface] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_INTERFACE] = ACTIONS(3054), - [anon_sym_New] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_NEW] = ACTIONS(3054), - [anon_sym_Package] = ACTIONS(3054), - [anon_sym_package] = ACTIONS(3054), - [anon_sym_PACKAGE] = ACTIONS(3054), - [anon_sym_Private] = ACTIONS(3054), - [anon_sym_private] = ACTIONS(3054), - [anon_sym_PRIVATE] = ACTIONS(3054), - [anon_sym_Public] = ACTIONS(3054), - [anon_sym_public] = ACTIONS(3054), - [anon_sym_PUBLIC] = ACTIONS(3054), - [anon_sym_Remote] = ACTIONS(3054), - [anon_sym_remote] = ACTIONS(3054), - [anon_sym_REMOTE] = ACTIONS(3054), - [anon_sym_Return] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_RETURN] = ACTIONS(3054), - [anon_sym_Static] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_STATIC] = ACTIONS(3054), - [anon_sym_Switch] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_SWITCH] = ACTIONS(3054), - [anon_sym_Throw] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_THROW] = ACTIONS(3054), - [anon_sym_Try] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_TRY] = ACTIONS(3054), - [anon_sym_Var] = ACTIONS(3054), - [anon_sym_var] = ACTIONS(3054), - [anon_sym_VAR] = ACTIONS(3054), - [anon_sym_While] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_WHILE] = ACTIONS(3054), - [anon_sym_With] = ACTIONS(3054), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_WITH] = ACTIONS(3054), - [sym_cf_comment] = ACTIONS(3052), - [sym__java_block_open] = ACTIONS(3052), - [sym__static_type_prefix] = ACTIONS(3052), - }, - [STATE(1011)] = { - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_Query] = ACTIONS(3058), - [anon_sym_query] = ACTIONS(3058), - [anon_sym_QUERY] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [aux_sym_unary_operator_token1] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [sym_comment] = ACTIONS(3056), - [aux_sym_number_token1] = ACTIONS(3058), - [aux_sym_number_token2] = ACTIONS(3056), - [anon_sym_This] = ACTIONS(3058), - [anon_sym_this] = ACTIONS(3058), - [anon_sym_THIS] = ACTIONS(3058), - [anon_sym_Super] = ACTIONS(3058), - [anon_sym_super] = ACTIONS(3058), - [anon_sym_SUPER] = ACTIONS(3058), - [anon_sym_True] = ACTIONS(3058), - [anon_sym_true] = ACTIONS(3058), - [anon_sym_TRUE] = ACTIONS(3058), - [anon_sym_False] = ACTIONS(3058), - [anon_sym_false] = ACTIONS(3058), - [anon_sym_FALSE] = ACTIONS(3058), - [anon_sym_Null] = ACTIONS(3058), - [anon_sym_null] = ACTIONS(3058), - [anon_sym_NULL] = ACTIONS(3058), - [anon_sym_Undefined] = ACTIONS(3058), - [anon_sym_undefined] = ACTIONS(3058), - [anon_sym_UNDEFINED] = ACTIONS(3058), - [anon_sym_get] = ACTIONS(3058), - [anon_sym_set] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [sym_hash_empty] = ACTIONS(3056), - [anon_sym_export] = ACTIONS(3058), - [anon_sym_QueryExecute] = ACTIONS(3058), - [anon_sym_queryexecute] = ACTIONS(3058), - [anon_sym_QUERYEXECUTE] = ACTIONS(3058), - [anon_sym_queryExecute] = ACTIONS(3058), - [anon_sym_BQUOTE] = ACTIONS(3058), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3056), - [anon_sym_Abstract] = ACTIONS(3058), - [anon_sym_abstract] = ACTIONS(3058), - [anon_sym_ABSTRACT] = ACTIONS(3058), - [anon_sym_Break] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_BREAK] = ACTIONS(3058), - [anon_sym_Component] = ACTIONS(3058), - [anon_sym_component] = ACTIONS(3058), - [anon_sym_COMPONENT] = ACTIONS(3058), - [anon_sym_Continue] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_CONTINUE] = ACTIONS(3058), - [anon_sym_Debugger] = ACTIONS(3058), - [anon_sym_debugger] = ACTIONS(3058), - [anon_sym_DEBUGGER] = ACTIONS(3058), - [anon_sym_Do] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_DO] = ACTIONS(3058), - [anon_sym_Final] = ACTIONS(3058), - [anon_sym_final] = ACTIONS(3058), - [anon_sym_FINAL] = ACTIONS(3058), - [anon_sym_For] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_FOR] = ACTIONS(3058), - [anon_sym_Function] = ACTIONS(3058), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_FUNCTION] = ACTIONS(3058), - [anon_sym_If] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_IF] = ACTIONS(3058), - [anon_sym_Import] = ACTIONS(3058), - [anon_sym_import] = ACTIONS(3058), - [anon_sym_IMPORT] = ACTIONS(3058), - [anon_sym_Include] = ACTIONS(3058), - [anon_sym_include] = ACTIONS(3058), - [anon_sym_INCLUDE] = ACTIONS(3058), - [anon_sym_Interface] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_INTERFACE] = ACTIONS(3058), - [anon_sym_New] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_NEW] = ACTIONS(3058), - [anon_sym_Package] = ACTIONS(3058), - [anon_sym_package] = ACTIONS(3058), - [anon_sym_PACKAGE] = ACTIONS(3058), - [anon_sym_Private] = ACTIONS(3058), - [anon_sym_private] = ACTIONS(3058), - [anon_sym_PRIVATE] = ACTIONS(3058), - [anon_sym_Public] = ACTIONS(3058), - [anon_sym_public] = ACTIONS(3058), - [anon_sym_PUBLIC] = ACTIONS(3058), - [anon_sym_Remote] = ACTIONS(3058), - [anon_sym_remote] = ACTIONS(3058), - [anon_sym_REMOTE] = ACTIONS(3058), - [anon_sym_Return] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_RETURN] = ACTIONS(3058), - [anon_sym_Static] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_STATIC] = ACTIONS(3058), - [anon_sym_Switch] = ACTIONS(3058), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_SWITCH] = ACTIONS(3058), - [anon_sym_Throw] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_THROW] = ACTIONS(3058), - [anon_sym_Try] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_TRY] = ACTIONS(3058), - [anon_sym_Var] = ACTIONS(3058), - [anon_sym_var] = ACTIONS(3058), - [anon_sym_VAR] = ACTIONS(3058), - [anon_sym_While] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_WHILE] = ACTIONS(3058), - [anon_sym_With] = ACTIONS(3058), - [anon_sym_with] = ACTIONS(3058), - [anon_sym_WITH] = ACTIONS(3058), - [sym_cf_comment] = ACTIONS(3056), - [sym__java_block_open] = ACTIONS(3056), - [sym__static_type_prefix] = ACTIONS(3056), - }, - [STATE(1012)] = { - [sym_statement_block] = STATE(5044), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1179)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3427), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5006), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2878), + [sym_hash_expression] = STATE(2878), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3626), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1013)] = { - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_Query] = ACTIONS(2728), - [anon_sym_query] = ACTIONS(2728), - [anon_sym_QUERY] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [aux_sym_unary_operator_token1] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2726), - [sym_comment] = ACTIONS(2726), - [aux_sym_number_token1] = ACTIONS(2728), - [aux_sym_number_token2] = ACTIONS(2726), - [anon_sym_This] = ACTIONS(2728), - [anon_sym_this] = ACTIONS(2728), - [anon_sym_THIS] = ACTIONS(2728), - [anon_sym_Super] = ACTIONS(2728), - [anon_sym_super] = ACTIONS(2728), - [anon_sym_SUPER] = ACTIONS(2728), - [anon_sym_True] = ACTIONS(2728), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_TRUE] = ACTIONS(2728), - [anon_sym_False] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [anon_sym_FALSE] = ACTIONS(2728), - [anon_sym_Null] = ACTIONS(2728), - [anon_sym_null] = ACTIONS(2728), - [anon_sym_NULL] = ACTIONS(2728), - [anon_sym_Undefined] = ACTIONS(2728), - [anon_sym_undefined] = ACTIONS(2728), - [anon_sym_UNDEFINED] = ACTIONS(2728), - [anon_sym_get] = ACTIONS(2728), - [anon_sym_set] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [sym_hash_empty] = ACTIONS(2726), - [anon_sym_export] = ACTIONS(2728), - [anon_sym_QueryExecute] = ACTIONS(2728), - [anon_sym_queryexecute] = ACTIONS(2728), - [anon_sym_QUERYEXECUTE] = ACTIONS(2728), - [anon_sym_queryExecute] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2726), - [anon_sym_Abstract] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_ABSTRACT] = ACTIONS(2728), - [anon_sym_Break] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_BREAK] = ACTIONS(2728), - [anon_sym_Component] = ACTIONS(2728), - [anon_sym_component] = ACTIONS(2728), - [anon_sym_COMPONENT] = ACTIONS(2728), - [anon_sym_Continue] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_CONTINUE] = ACTIONS(2728), - [anon_sym_Debugger] = ACTIONS(2728), - [anon_sym_debugger] = ACTIONS(2728), - [anon_sym_DEBUGGER] = ACTIONS(2728), - [anon_sym_Do] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_DO] = ACTIONS(2728), - [anon_sym_Final] = ACTIONS(2728), - [anon_sym_final] = ACTIONS(2728), - [anon_sym_FINAL] = ACTIONS(2728), - [anon_sym_For] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_FOR] = ACTIONS(2728), - [anon_sym_Function] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_FUNCTION] = ACTIONS(2728), - [anon_sym_If] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_IF] = ACTIONS(2728), - [anon_sym_Import] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_IMPORT] = ACTIONS(2728), - [anon_sym_Include] = ACTIONS(2728), - [anon_sym_include] = ACTIONS(2728), - [anon_sym_INCLUDE] = ACTIONS(2728), - [anon_sym_Interface] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_INTERFACE] = ACTIONS(2728), - [anon_sym_New] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_NEW] = ACTIONS(2728), - [anon_sym_Package] = ACTIONS(2728), - [anon_sym_package] = ACTIONS(2728), - [anon_sym_PACKAGE] = ACTIONS(2728), - [anon_sym_Private] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_PRIVATE] = ACTIONS(2728), - [anon_sym_Public] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_PUBLIC] = ACTIONS(2728), - [anon_sym_Remote] = ACTIONS(2728), - [anon_sym_remote] = ACTIONS(2728), - [anon_sym_REMOTE] = ACTIONS(2728), - [anon_sym_Return] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_RETURN] = ACTIONS(2728), - [anon_sym_Static] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_STATIC] = ACTIONS(2728), - [anon_sym_Switch] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_SWITCH] = ACTIONS(2728), - [anon_sym_Throw] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_THROW] = ACTIONS(2728), - [anon_sym_Try] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_TRY] = ACTIONS(2728), - [anon_sym_Var] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [anon_sym_VAR] = ACTIONS(2728), - [anon_sym_While] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_WHILE] = ACTIONS(2728), - [anon_sym_With] = ACTIONS(2728), - [anon_sym_with] = ACTIONS(2728), - [anon_sym_WITH] = ACTIONS(2728), - [sym_cf_comment] = ACTIONS(2726), - [sym__java_block_open] = ACTIONS(2726), - [sym__static_type_prefix] = ACTIONS(2726), - }, - [STATE(1014)] = { - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_Query] = ACTIONS(3076), - [anon_sym_query] = ACTIONS(3076), - [anon_sym_QUERY] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_SLASH] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_unary_operator_token1] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [sym_comment] = ACTIONS(3074), - [aux_sym_number_token1] = ACTIONS(3076), - [aux_sym_number_token2] = ACTIONS(3074), - [anon_sym_This] = ACTIONS(3076), - [anon_sym_this] = ACTIONS(3076), - [anon_sym_THIS] = ACTIONS(3076), - [anon_sym_Super] = ACTIONS(3076), - [anon_sym_super] = ACTIONS(3076), - [anon_sym_SUPER] = ACTIONS(3076), - [anon_sym_True] = ACTIONS(3076), - [anon_sym_true] = ACTIONS(3076), - [anon_sym_TRUE] = ACTIONS(3076), - [anon_sym_False] = ACTIONS(3076), - [anon_sym_false] = ACTIONS(3076), - [anon_sym_FALSE] = ACTIONS(3076), - [anon_sym_Null] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_Undefined] = ACTIONS(3076), - [anon_sym_undefined] = ACTIONS(3076), - [anon_sym_UNDEFINED] = ACTIONS(3076), - [anon_sym_get] = ACTIONS(3076), - [anon_sym_set] = ACTIONS(3076), - [anon_sym_POUND] = ACTIONS(3076), - [sym_hash_empty] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3076), - [anon_sym_QueryExecute] = ACTIONS(3076), - [anon_sym_queryexecute] = ACTIONS(3076), - [anon_sym_QUERYEXECUTE] = ACTIONS(3076), - [anon_sym_queryExecute] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3074), - [anon_sym_Abstract] = ACTIONS(3076), - [anon_sym_abstract] = ACTIONS(3076), - [anon_sym_ABSTRACT] = ACTIONS(3076), - [anon_sym_Break] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_BREAK] = ACTIONS(3076), - [anon_sym_Component] = ACTIONS(3076), - [anon_sym_component] = ACTIONS(3076), - [anon_sym_COMPONENT] = ACTIONS(3076), - [anon_sym_Continue] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_CONTINUE] = ACTIONS(3076), - [anon_sym_Debugger] = ACTIONS(3076), - [anon_sym_debugger] = ACTIONS(3076), - [anon_sym_DEBUGGER] = ACTIONS(3076), - [anon_sym_Do] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_DO] = ACTIONS(3076), - [anon_sym_Final] = ACTIONS(3076), - [anon_sym_final] = ACTIONS(3076), - [anon_sym_FINAL] = ACTIONS(3076), - [anon_sym_For] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_FOR] = ACTIONS(3076), - [anon_sym_Function] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_FUNCTION] = ACTIONS(3076), - [anon_sym_If] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_IF] = ACTIONS(3076), - [anon_sym_Import] = ACTIONS(3076), - [anon_sym_import] = ACTIONS(3076), - [anon_sym_IMPORT] = ACTIONS(3076), - [anon_sym_Include] = ACTIONS(3076), - [anon_sym_include] = ACTIONS(3076), - [anon_sym_INCLUDE] = ACTIONS(3076), - [anon_sym_Interface] = ACTIONS(3076), - [anon_sym_interface] = ACTIONS(3076), - [anon_sym_INTERFACE] = ACTIONS(3076), - [anon_sym_New] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_NEW] = ACTIONS(3076), - [anon_sym_Package] = ACTIONS(3076), - [anon_sym_package] = ACTIONS(3076), - [anon_sym_PACKAGE] = ACTIONS(3076), - [anon_sym_Private] = ACTIONS(3076), - [anon_sym_private] = ACTIONS(3076), - [anon_sym_PRIVATE] = ACTIONS(3076), - [anon_sym_Public] = ACTIONS(3076), - [anon_sym_public] = ACTIONS(3076), - [anon_sym_PUBLIC] = ACTIONS(3076), - [anon_sym_Remote] = ACTIONS(3076), - [anon_sym_remote] = ACTIONS(3076), - [anon_sym_REMOTE] = ACTIONS(3076), - [anon_sym_Return] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_RETURN] = ACTIONS(3076), - [anon_sym_Static] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_STATIC] = ACTIONS(3076), - [anon_sym_Switch] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_SWITCH] = ACTIONS(3076), - [anon_sym_Throw] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_THROW] = ACTIONS(3076), - [anon_sym_Try] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_TRY] = ACTIONS(3076), - [anon_sym_Var] = ACTIONS(3076), - [anon_sym_var] = ACTIONS(3076), - [anon_sym_VAR] = ACTIONS(3076), - [anon_sym_While] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_WHILE] = ACTIONS(3076), - [anon_sym_With] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_WITH] = ACTIONS(3076), - [sym_cf_comment] = ACTIONS(3074), - [sym__java_block_open] = ACTIONS(3074), - [sym__static_type_prefix] = ACTIONS(3074), - }, - [STATE(1015)] = { - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_let] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3074), - [anon_sym_Query] = ACTIONS(3076), - [anon_sym_query] = ACTIONS(3076), - [anon_sym_QUERY] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_SLASH] = ACTIONS(3076), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [aux_sym_unary_operator_token1] = ACTIONS(3076), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [sym_comment] = ACTIONS(3074), - [aux_sym_number_token1] = ACTIONS(3076), - [aux_sym_number_token2] = ACTIONS(3074), - [anon_sym_This] = ACTIONS(3076), - [anon_sym_this] = ACTIONS(3076), - [anon_sym_THIS] = ACTIONS(3076), - [anon_sym_Super] = ACTIONS(3076), - [anon_sym_super] = ACTIONS(3076), - [anon_sym_SUPER] = ACTIONS(3076), - [anon_sym_True] = ACTIONS(3076), - [anon_sym_true] = ACTIONS(3076), - [anon_sym_TRUE] = ACTIONS(3076), - [anon_sym_False] = ACTIONS(3076), - [anon_sym_false] = ACTIONS(3076), - [anon_sym_FALSE] = ACTIONS(3076), - [anon_sym_Null] = ACTIONS(3076), - [anon_sym_null] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_Undefined] = ACTIONS(3076), - [anon_sym_undefined] = ACTIONS(3076), - [anon_sym_UNDEFINED] = ACTIONS(3076), - [anon_sym_get] = ACTIONS(3076), - [anon_sym_set] = ACTIONS(3076), - [anon_sym_POUND] = ACTIONS(3076), - [sym_hash_empty] = ACTIONS(3074), - [anon_sym_export] = ACTIONS(3076), - [anon_sym_QueryExecute] = ACTIONS(3076), - [anon_sym_queryexecute] = ACTIONS(3076), - [anon_sym_QUERYEXECUTE] = ACTIONS(3076), - [anon_sym_queryExecute] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3074), - [anon_sym_Abstract] = ACTIONS(3076), - [anon_sym_abstract] = ACTIONS(3076), - [anon_sym_ABSTRACT] = ACTIONS(3076), - [anon_sym_Break] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_BREAK] = ACTIONS(3076), - [anon_sym_Component] = ACTIONS(3076), - [anon_sym_component] = ACTIONS(3076), - [anon_sym_COMPONENT] = ACTIONS(3076), - [anon_sym_Continue] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_CONTINUE] = ACTIONS(3076), - [anon_sym_Debugger] = ACTIONS(3076), - [anon_sym_debugger] = ACTIONS(3076), - [anon_sym_DEBUGGER] = ACTIONS(3076), - [anon_sym_Do] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_DO] = ACTIONS(3076), - [anon_sym_Final] = ACTIONS(3076), - [anon_sym_final] = ACTIONS(3076), - [anon_sym_FINAL] = ACTIONS(3076), - [anon_sym_For] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_FOR] = ACTIONS(3076), - [anon_sym_Function] = ACTIONS(3076), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_FUNCTION] = ACTIONS(3076), - [anon_sym_If] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_IF] = ACTIONS(3076), - [anon_sym_Import] = ACTIONS(3076), - [anon_sym_import] = ACTIONS(3076), - [anon_sym_IMPORT] = ACTIONS(3076), - [anon_sym_Include] = ACTIONS(3076), - [anon_sym_include] = ACTIONS(3076), - [anon_sym_INCLUDE] = ACTIONS(3076), - [anon_sym_Interface] = ACTIONS(3076), - [anon_sym_interface] = ACTIONS(3076), - [anon_sym_INTERFACE] = ACTIONS(3076), - [anon_sym_New] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_NEW] = ACTIONS(3076), - [anon_sym_Package] = ACTIONS(3076), - [anon_sym_package] = ACTIONS(3076), - [anon_sym_PACKAGE] = ACTIONS(3076), - [anon_sym_Private] = ACTIONS(3076), - [anon_sym_private] = ACTIONS(3076), - [anon_sym_PRIVATE] = ACTIONS(3076), - [anon_sym_Public] = ACTIONS(3076), - [anon_sym_public] = ACTIONS(3076), - [anon_sym_PUBLIC] = ACTIONS(3076), - [anon_sym_Remote] = ACTIONS(3076), - [anon_sym_remote] = ACTIONS(3076), - [anon_sym_REMOTE] = ACTIONS(3076), - [anon_sym_Return] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_RETURN] = ACTIONS(3076), - [anon_sym_Static] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_STATIC] = ACTIONS(3076), - [anon_sym_Switch] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_SWITCH] = ACTIONS(3076), - [anon_sym_Throw] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_THROW] = ACTIONS(3076), - [anon_sym_Try] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_TRY] = ACTIONS(3076), - [anon_sym_Var] = ACTIONS(3076), - [anon_sym_var] = ACTIONS(3076), - [anon_sym_VAR] = ACTIONS(3076), - [anon_sym_While] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_WHILE] = ACTIONS(3076), - [anon_sym_With] = ACTIONS(3076), - [anon_sym_with] = ACTIONS(3076), - [anon_sym_WITH] = ACTIONS(3076), - [sym_cf_comment] = ACTIONS(3074), - [sym__java_block_open] = ACTIONS(3074), - [sym__static_type_prefix] = ACTIONS(3074), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(3910), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(3908), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1016)] = { - [sym_statement_block] = STATE(5040), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1180)] = { + [sym_expression_statement] = STATE(425), + [sym_statement_block] = STATE(425), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3324), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4885), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3012), + [sym_hash_expression] = STATE(3012), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3628), - [sym_tag_linefeed] = ACTIONS(1456), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1017)] = { - [ts_builtin_sym_end] = ACTIONS(3024), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_SEMI] = ACTIONS(3024), - [anon_sym_let] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_Query] = ACTIONS(3026), - [anon_sym_query] = ACTIONS(3026), - [anon_sym_QUERY] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3024), - [anon_sym_TILDE] = ACTIONS(3024), - [aux_sym_unary_operator_token1] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3024), - [anon_sym_DASH_DASH] = ACTIONS(3024), - [anon_sym_DQUOTE] = ACTIONS(3024), - [anon_sym_SQUOTE] = ACTIONS(3024), - [sym_comment] = ACTIONS(3024), - [aux_sym_number_token1] = ACTIONS(3026), - [aux_sym_number_token2] = ACTIONS(3024), - [anon_sym_This] = ACTIONS(3026), - [anon_sym_this] = ACTIONS(3026), - [anon_sym_THIS] = ACTIONS(3026), - [anon_sym_Super] = ACTIONS(3026), - [anon_sym_super] = ACTIONS(3026), - [anon_sym_SUPER] = ACTIONS(3026), - [anon_sym_True] = ACTIONS(3026), - [anon_sym_true] = ACTIONS(3026), - [anon_sym_TRUE] = ACTIONS(3026), - [anon_sym_False] = ACTIONS(3026), - [anon_sym_false] = ACTIONS(3026), - [anon_sym_FALSE] = ACTIONS(3026), - [anon_sym_Null] = ACTIONS(3026), - [anon_sym_null] = ACTIONS(3026), - [anon_sym_NULL] = ACTIONS(3026), - [anon_sym_Undefined] = ACTIONS(3026), - [anon_sym_undefined] = ACTIONS(3026), - [anon_sym_UNDEFINED] = ACTIONS(3026), - [anon_sym_get] = ACTIONS(3026), - [anon_sym_set] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3026), - [sym_hash_empty] = ACTIONS(3024), - [anon_sym_export] = ACTIONS(3026), - [anon_sym_QueryExecute] = ACTIONS(3026), - [anon_sym_queryexecute] = ACTIONS(3026), - [anon_sym_QUERYEXECUTE] = ACTIONS(3026), - [anon_sym_queryExecute] = ACTIONS(3026), - [anon_sym_BQUOTE] = ACTIONS(3026), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3024), - [anon_sym_Abstract] = ACTIONS(3026), - [anon_sym_abstract] = ACTIONS(3026), - [anon_sym_ABSTRACT] = ACTIONS(3026), - [anon_sym_Break] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_BREAK] = ACTIONS(3026), - [anon_sym_Component] = ACTIONS(3026), - [anon_sym_component] = ACTIONS(3026), - [anon_sym_COMPONENT] = ACTIONS(3026), - [anon_sym_Continue] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_CONTINUE] = ACTIONS(3026), - [anon_sym_Debugger] = ACTIONS(3026), - [anon_sym_debugger] = ACTIONS(3026), - [anon_sym_DEBUGGER] = ACTIONS(3026), - [anon_sym_Do] = ACTIONS(3026), - [anon_sym_do] = ACTIONS(3026), - [anon_sym_DO] = ACTIONS(3026), - [anon_sym_Final] = ACTIONS(3026), - [anon_sym_final] = ACTIONS(3026), - [anon_sym_FINAL] = ACTIONS(3026), - [anon_sym_For] = ACTIONS(3026), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_FOR] = ACTIONS(3026), - [anon_sym_Function] = ACTIONS(3026), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_FUNCTION] = ACTIONS(3026), - [anon_sym_If] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_IF] = ACTIONS(3026), - [anon_sym_Import] = ACTIONS(3026), - [anon_sym_import] = ACTIONS(3026), - [anon_sym_IMPORT] = ACTIONS(3026), - [anon_sym_Include] = ACTIONS(3026), - [anon_sym_include] = ACTIONS(3026), - [anon_sym_INCLUDE] = ACTIONS(3026), - [anon_sym_Interface] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_INTERFACE] = ACTIONS(3026), - [anon_sym_New] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_NEW] = ACTIONS(3026), - [anon_sym_Package] = ACTIONS(3026), - [anon_sym_package] = ACTIONS(3026), - [anon_sym_PACKAGE] = ACTIONS(3026), - [anon_sym_Private] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_PRIVATE] = ACTIONS(3026), - [anon_sym_Public] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_PUBLIC] = ACTIONS(3026), - [anon_sym_Remote] = ACTIONS(3026), - [anon_sym_remote] = ACTIONS(3026), - [anon_sym_REMOTE] = ACTIONS(3026), - [anon_sym_Return] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_RETURN] = ACTIONS(3026), - [anon_sym_Static] = ACTIONS(3026), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_STATIC] = ACTIONS(3026), - [anon_sym_Switch] = ACTIONS(3026), - [anon_sym_switch] = ACTIONS(3026), - [anon_sym_SWITCH] = ACTIONS(3026), - [anon_sym_Throw] = ACTIONS(3026), - [anon_sym_throw] = ACTIONS(3026), - [anon_sym_THROW] = ACTIONS(3026), - [anon_sym_Try] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_TRY] = ACTIONS(3026), - [anon_sym_Var] = ACTIONS(3026), - [anon_sym_var] = ACTIONS(3026), - [anon_sym_VAR] = ACTIONS(3026), - [anon_sym_While] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_WHILE] = ACTIONS(3026), - [anon_sym_With] = ACTIONS(3026), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_WITH] = ACTIONS(3026), - [sym_cf_comment] = ACTIONS(3024), - [sym__java_block_open] = ACTIONS(3024), - [sym__static_type_prefix] = ACTIONS(3024), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(3914), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1018)] = { - [sym_statement_block] = STATE(5002), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1181)] = { + [sym_empty_statement] = STATE(1284), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3480), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5362), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3243), + [sym_hash_expression] = STATE(3243), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -196976,258 +219046,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(3916), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3630), - [sym_tag_linefeed] = ACTIONS(1456), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1019)] = { - [ts_builtin_sym_end] = ACTIONS(3632), - [sym_identifier] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_Query] = ACTIONS(3084), - [anon_sym_query] = ACTIONS(3084), - [anon_sym_QUERY] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [aux_sym_unary_operator_token1] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), + [STATE(1182)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3351), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4943), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3031), + [sym_hash_expression] = STATE(3031), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(3918), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3084), - [aux_sym_number_token2] = ACTIONS(3082), - [anon_sym_This] = ACTIONS(3084), - [anon_sym_this] = ACTIONS(3084), - [anon_sym_THIS] = ACTIONS(3084), - [anon_sym_Super] = ACTIONS(3084), - [anon_sym_super] = ACTIONS(3084), - [anon_sym_SUPER] = ACTIONS(3084), - [anon_sym_True] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3084), - [anon_sym_TRUE] = ACTIONS(3084), - [anon_sym_False] = ACTIONS(3084), - [anon_sym_false] = ACTIONS(3084), - [anon_sym_FALSE] = ACTIONS(3084), - [anon_sym_Null] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3084), - [anon_sym_NULL] = ACTIONS(3084), - [anon_sym_Undefined] = ACTIONS(3084), - [anon_sym_undefined] = ACTIONS(3084), - [anon_sym_UNDEFINED] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(3084), - [anon_sym_set] = ACTIONS(3084), - [anon_sym_POUND] = ACTIONS(3084), - [sym_hash_empty] = ACTIONS(3082), - [anon_sym_export] = ACTIONS(3084), - [anon_sym_QueryExecute] = ACTIONS(3084), - [anon_sym_queryexecute] = ACTIONS(3084), - [anon_sym_QUERYEXECUTE] = ACTIONS(3084), - [anon_sym_queryExecute] = ACTIONS(3084), - [anon_sym_BQUOTE] = ACTIONS(3084), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3082), - [anon_sym_Abstract] = ACTIONS(3084), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_ABSTRACT] = ACTIONS(3084), - [anon_sym_Break] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_BREAK] = ACTIONS(3084), - [anon_sym_Component] = ACTIONS(3084), - [anon_sym_component] = ACTIONS(3084), - [anon_sym_COMPONENT] = ACTIONS(3084), - [anon_sym_Continue] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_CONTINUE] = ACTIONS(3084), - [anon_sym_Debugger] = ACTIONS(3084), - [anon_sym_debugger] = ACTIONS(3084), - [anon_sym_DEBUGGER] = ACTIONS(3084), - [anon_sym_Do] = ACTIONS(3084), - [anon_sym_do] = ACTIONS(3084), - [anon_sym_DO] = ACTIONS(3084), - [anon_sym_Final] = ACTIONS(3084), - [anon_sym_final] = ACTIONS(3084), - [anon_sym_FINAL] = ACTIONS(3084), - [anon_sym_For] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3084), - [anon_sym_FOR] = ACTIONS(3084), - [anon_sym_Function] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3084), - [anon_sym_FUNCTION] = ACTIONS(3084), - [anon_sym_If] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_IF] = ACTIONS(3084), - [anon_sym_Import] = ACTIONS(3084), - [anon_sym_import] = ACTIONS(3084), - [anon_sym_IMPORT] = ACTIONS(3084), - [anon_sym_Include] = ACTIONS(3084), - [anon_sym_include] = ACTIONS(3084), - [anon_sym_INCLUDE] = ACTIONS(3084), - [anon_sym_Interface] = ACTIONS(3084), - [anon_sym_interface] = ACTIONS(3084), - [anon_sym_INTERFACE] = ACTIONS(3084), - [anon_sym_New] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_NEW] = ACTIONS(3084), - [anon_sym_Package] = ACTIONS(3084), - [anon_sym_package] = ACTIONS(3084), - [anon_sym_PACKAGE] = ACTIONS(3084), - [anon_sym_Private] = ACTIONS(3084), - [anon_sym_private] = ACTIONS(3084), - [anon_sym_PRIVATE] = ACTIONS(3084), - [anon_sym_Public] = ACTIONS(3084), - [anon_sym_public] = ACTIONS(3084), - [anon_sym_PUBLIC] = ACTIONS(3084), - [anon_sym_Remote] = ACTIONS(3084), - [anon_sym_remote] = ACTIONS(3084), - [anon_sym_REMOTE] = ACTIONS(3084), - [anon_sym_Return] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_RETURN] = ACTIONS(3084), - [anon_sym_Static] = ACTIONS(3084), - [anon_sym_static] = ACTIONS(3084), - [anon_sym_STATIC] = ACTIONS(3084), - [anon_sym_Switch] = ACTIONS(3084), - [anon_sym_switch] = ACTIONS(3084), - [anon_sym_SWITCH] = ACTIONS(3084), - [anon_sym_Throw] = ACTIONS(3084), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_THROW] = ACTIONS(3084), - [anon_sym_Try] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3084), - [anon_sym_TRY] = ACTIONS(3084), - [anon_sym_Var] = ACTIONS(3084), - [anon_sym_var] = ACTIONS(3084), - [anon_sym_VAR] = ACTIONS(3084), - [anon_sym_While] = ACTIONS(3084), - [anon_sym_while] = ACTIONS(3084), - [anon_sym_WHILE] = ACTIONS(3084), - [anon_sym_With] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3084), - [anon_sym_WITH] = ACTIONS(3084), - [sym_cf_comment] = ACTIONS(3082), - [sym__java_block_open] = ACTIONS(3082), - [sym__static_type_prefix] = ACTIONS(3082), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(3920), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(3918), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1020)] = { - [sym_statement_block] = STATE(906), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_query_tag_repeat1] = STATE(1154), + [STATE(1183)] = { + [sym_expression_statement] = STATE(415), + [sym_statement_block] = STATE(415), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3420), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4924), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2853), + [sym_hash_expression] = STATE(2853), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(3922), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(3924), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1184)] = { + [sym_statement_block] = STATE(4958), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(489), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4971), + [sym_tag_call_arguments] = STATE(4971), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(3537), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -197268,9 +219467,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -197292,213 +219491,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3637), - [sym_tag_linefeed] = ACTIONS(3639), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1021)] = { - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_Query] = ACTIONS(2718), - [anon_sym_query] = ACTIONS(2718), - [anon_sym_QUERY] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_TILDE] = ACTIONS(2716), - [aux_sym_unary_operator_token1] = ACTIONS(2718), - [anon_sym_PLUS_PLUS] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2716), - [anon_sym_DQUOTE] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [sym_comment] = ACTIONS(2716), - [aux_sym_number_token1] = ACTIONS(2718), - [aux_sym_number_token2] = ACTIONS(2716), - [anon_sym_This] = ACTIONS(2718), - [anon_sym_this] = ACTIONS(2718), - [anon_sym_THIS] = ACTIONS(2718), - [anon_sym_Super] = ACTIONS(2718), - [anon_sym_super] = ACTIONS(2718), - [anon_sym_SUPER] = ACTIONS(2718), - [anon_sym_True] = ACTIONS(2718), - [anon_sym_true] = ACTIONS(2718), - [anon_sym_TRUE] = ACTIONS(2718), - [anon_sym_False] = ACTIONS(2718), - [anon_sym_false] = ACTIONS(2718), - [anon_sym_FALSE] = ACTIONS(2718), - [anon_sym_Null] = ACTIONS(2718), - [anon_sym_null] = ACTIONS(2718), - [anon_sym_NULL] = ACTIONS(2718), - [anon_sym_Undefined] = ACTIONS(2718), - [anon_sym_undefined] = ACTIONS(2718), - [anon_sym_UNDEFINED] = ACTIONS(2718), - [anon_sym_get] = ACTIONS(2718), - [anon_sym_set] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(2718), - [sym_hash_empty] = ACTIONS(2716), - [anon_sym_export] = ACTIONS(2718), - [anon_sym_QueryExecute] = ACTIONS(2718), - [anon_sym_queryexecute] = ACTIONS(2718), - [anon_sym_QUERYEXECUTE] = ACTIONS(2718), - [anon_sym_queryExecute] = ACTIONS(2718), - [anon_sym_BQUOTE] = ACTIONS(2718), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2716), - [anon_sym_Abstract] = ACTIONS(2718), - [anon_sym_abstract] = ACTIONS(2718), - [anon_sym_ABSTRACT] = ACTIONS(2718), - [anon_sym_Break] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_BREAK] = ACTIONS(2718), - [anon_sym_Component] = ACTIONS(2718), - [anon_sym_component] = ACTIONS(2718), - [anon_sym_COMPONENT] = ACTIONS(2718), - [anon_sym_Continue] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_CONTINUE] = ACTIONS(2718), - [anon_sym_Debugger] = ACTIONS(2718), - [anon_sym_debugger] = ACTIONS(2718), - [anon_sym_DEBUGGER] = ACTIONS(2718), - [anon_sym_Do] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_DO] = ACTIONS(2718), - [anon_sym_Final] = ACTIONS(2718), - [anon_sym_final] = ACTIONS(2718), - [anon_sym_FINAL] = ACTIONS(2718), - [anon_sym_For] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_FOR] = ACTIONS(2718), - [anon_sym_Function] = ACTIONS(2718), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_FUNCTION] = ACTIONS(2718), - [anon_sym_If] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_IF] = ACTIONS(2718), - [anon_sym_Import] = ACTIONS(2718), - [anon_sym_import] = ACTIONS(2718), - [anon_sym_IMPORT] = ACTIONS(2718), - [anon_sym_Include] = ACTIONS(2718), - [anon_sym_include] = ACTIONS(2718), - [anon_sym_INCLUDE] = ACTIONS(2718), - [anon_sym_Interface] = ACTIONS(2718), - [anon_sym_interface] = ACTIONS(2718), - [anon_sym_INTERFACE] = ACTIONS(2718), - [anon_sym_New] = ACTIONS(2718), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_NEW] = ACTIONS(2718), - [anon_sym_Package] = ACTIONS(2718), - [anon_sym_package] = ACTIONS(2718), - [anon_sym_PACKAGE] = ACTIONS(2718), - [anon_sym_Private] = ACTIONS(2718), - [anon_sym_private] = ACTIONS(2718), - [anon_sym_PRIVATE] = ACTIONS(2718), - [anon_sym_Public] = ACTIONS(2718), - [anon_sym_public] = ACTIONS(2718), - [anon_sym_PUBLIC] = ACTIONS(2718), - [anon_sym_Remote] = ACTIONS(2718), - [anon_sym_remote] = ACTIONS(2718), - [anon_sym_REMOTE] = ACTIONS(2718), - [anon_sym_Return] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_RETURN] = ACTIONS(2718), - [anon_sym_Static] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_STATIC] = ACTIONS(2718), - [anon_sym_Switch] = ACTIONS(2718), - [anon_sym_switch] = ACTIONS(2718), - [anon_sym_SWITCH] = ACTIONS(2718), - [anon_sym_Throw] = ACTIONS(2718), - [anon_sym_throw] = ACTIONS(2718), - [anon_sym_THROW] = ACTIONS(2718), - [anon_sym_Try] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_TRY] = ACTIONS(2718), - [anon_sym_Var] = ACTIONS(2718), - [anon_sym_var] = ACTIONS(2718), - [anon_sym_VAR] = ACTIONS(2718), - [anon_sym_While] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_WHILE] = ACTIONS(2718), - [anon_sym_With] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_WITH] = ACTIONS(2718), - [sym_cf_comment] = ACTIONS(2716), - [sym__java_block_open] = ACTIONS(2716), - [sym__static_type_prefix] = ACTIONS(2716), - }, - [STATE(1022)] = { - [sym_statement_block] = STATE(5031), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3792), - [sym_primary_expression] = STATE(3661), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2371), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3293), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(4791), - [sym_tag_call_arguments] = STATE(4791), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(3641), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1185)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3382), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5353), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5353), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2858), + [sym_hash_expression] = STATE(2858), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -197517,15533 +219578,653 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(3934), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym_tag_linefeed] = ACTIONS(588), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1023)] = { - [ts_builtin_sym_end] = ACTIONS(3643), - [sym_identifier] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_let] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_Query] = ACTIONS(3084), - [anon_sym_query] = ACTIONS(3084), - [anon_sym_QUERY] = ACTIONS(3084), - [anon_sym_PLUS] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [aux_sym_unary_operator_token1] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(3082), + [STATE(1186)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3423), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(5057), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2875), + [sym_hash_expression] = STATE(2875), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3084), - [aux_sym_number_token2] = ACTIONS(3082), - [anon_sym_This] = ACTIONS(3084), - [anon_sym_this] = ACTIONS(3084), - [anon_sym_THIS] = ACTIONS(3084), - [anon_sym_Super] = ACTIONS(3084), - [anon_sym_super] = ACTIONS(3084), - [anon_sym_SUPER] = ACTIONS(3084), - [anon_sym_True] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3084), - [anon_sym_TRUE] = ACTIONS(3084), - [anon_sym_False] = ACTIONS(3084), - [anon_sym_false] = ACTIONS(3084), - [anon_sym_FALSE] = ACTIONS(3084), - [anon_sym_Null] = ACTIONS(3084), - [anon_sym_null] = ACTIONS(3084), - [anon_sym_NULL] = ACTIONS(3084), - [anon_sym_Undefined] = ACTIONS(3084), - [anon_sym_undefined] = ACTIONS(3084), - [anon_sym_UNDEFINED] = ACTIONS(3084), - [anon_sym_get] = ACTIONS(3084), - [anon_sym_set] = ACTIONS(3084), - [anon_sym_POUND] = ACTIONS(3084), - [sym_hash_empty] = ACTIONS(3082), - [anon_sym_export] = ACTIONS(3084), - [anon_sym_QueryExecute] = ACTIONS(3084), - [anon_sym_queryexecute] = ACTIONS(3084), - [anon_sym_QUERYEXECUTE] = ACTIONS(3084), - [anon_sym_queryExecute] = ACTIONS(3084), - [anon_sym_BQUOTE] = ACTIONS(3084), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3082), - [anon_sym_Abstract] = ACTIONS(3084), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_ABSTRACT] = ACTIONS(3084), - [anon_sym_Break] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_BREAK] = ACTIONS(3084), - [anon_sym_Component] = ACTIONS(3084), - [anon_sym_component] = ACTIONS(3084), - [anon_sym_COMPONENT] = ACTIONS(3084), - [anon_sym_Continue] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_CONTINUE] = ACTIONS(3084), - [anon_sym_Debugger] = ACTIONS(3084), - [anon_sym_debugger] = ACTIONS(3084), - [anon_sym_DEBUGGER] = ACTIONS(3084), - [anon_sym_Do] = ACTIONS(3084), - [anon_sym_do] = ACTIONS(3084), - [anon_sym_DO] = ACTIONS(3084), - [anon_sym_Final] = ACTIONS(3084), - [anon_sym_final] = ACTIONS(3084), - [anon_sym_FINAL] = ACTIONS(3084), - [anon_sym_For] = ACTIONS(3084), - [anon_sym_for] = ACTIONS(3084), - [anon_sym_FOR] = ACTIONS(3084), - [anon_sym_Function] = ACTIONS(3084), - [anon_sym_function] = ACTIONS(3084), - [anon_sym_FUNCTION] = ACTIONS(3084), - [anon_sym_If] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_IF] = ACTIONS(3084), - [anon_sym_Import] = ACTIONS(3084), - [anon_sym_import] = ACTIONS(3084), - [anon_sym_IMPORT] = ACTIONS(3084), - [anon_sym_Include] = ACTIONS(3084), - [anon_sym_include] = ACTIONS(3084), - [anon_sym_INCLUDE] = ACTIONS(3084), - [anon_sym_Interface] = ACTIONS(3084), - [anon_sym_interface] = ACTIONS(3084), - [anon_sym_INTERFACE] = ACTIONS(3084), - [anon_sym_New] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_NEW] = ACTIONS(3084), - [anon_sym_Package] = ACTIONS(3084), - [anon_sym_package] = ACTIONS(3084), - [anon_sym_PACKAGE] = ACTIONS(3084), - [anon_sym_Private] = ACTIONS(3084), - [anon_sym_private] = ACTIONS(3084), - [anon_sym_PRIVATE] = ACTIONS(3084), - [anon_sym_Public] = ACTIONS(3084), - [anon_sym_public] = ACTIONS(3084), - [anon_sym_PUBLIC] = ACTIONS(3084), - [anon_sym_Remote] = ACTIONS(3084), - [anon_sym_remote] = ACTIONS(3084), - [anon_sym_REMOTE] = ACTIONS(3084), - [anon_sym_Return] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_RETURN] = ACTIONS(3084), - [anon_sym_Static] = ACTIONS(3084), - [anon_sym_static] = ACTIONS(3084), - [anon_sym_STATIC] = ACTIONS(3084), - [anon_sym_Switch] = ACTIONS(3084), - [anon_sym_switch] = ACTIONS(3084), - [anon_sym_SWITCH] = ACTIONS(3084), - [anon_sym_Throw] = ACTIONS(3084), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_THROW] = ACTIONS(3084), - [anon_sym_Try] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3084), - [anon_sym_TRY] = ACTIONS(3084), - [anon_sym_Var] = ACTIONS(3084), - [anon_sym_var] = ACTIONS(3084), - [anon_sym_VAR] = ACTIONS(3084), - [anon_sym_While] = ACTIONS(3084), - [anon_sym_while] = ACTIONS(3084), - [anon_sym_WHILE] = ACTIONS(3084), - [anon_sym_With] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3084), - [anon_sym_WITH] = ACTIONS(3084), - [sym_cf_comment] = ACTIONS(3082), - [sym__java_block_open] = ACTIONS(3082), - [sym__static_type_prefix] = ACTIONS(3082), - }, - [STATE(1024)] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_let] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_Query] = ACTIONS(2788), - [anon_sym_query] = ACTIONS(2788), - [anon_sym_QUERY] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_TILDE] = ACTIONS(2786), - [aux_sym_unary_operator_token1] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_DQUOTE] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2786), - [sym_comment] = ACTIONS(2786), - [aux_sym_number_token1] = ACTIONS(2788), - [aux_sym_number_token2] = ACTIONS(2786), - [anon_sym_This] = ACTIONS(2788), - [anon_sym_this] = ACTIONS(2788), - [anon_sym_THIS] = ACTIONS(2788), - [anon_sym_Super] = ACTIONS(2788), - [anon_sym_super] = ACTIONS(2788), - [anon_sym_SUPER] = ACTIONS(2788), - [anon_sym_True] = ACTIONS(2788), - [anon_sym_true] = ACTIONS(2788), - [anon_sym_TRUE] = ACTIONS(2788), - [anon_sym_False] = ACTIONS(2788), - [anon_sym_false] = ACTIONS(2788), - [anon_sym_FALSE] = ACTIONS(2788), - [anon_sym_Null] = ACTIONS(2788), - [anon_sym_null] = ACTIONS(2788), - [anon_sym_NULL] = ACTIONS(2788), - [anon_sym_Undefined] = ACTIONS(2788), - [anon_sym_undefined] = ACTIONS(2788), - [anon_sym_UNDEFINED] = ACTIONS(2788), - [anon_sym_get] = ACTIONS(2788), - [anon_sym_set] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [sym_hash_empty] = ACTIONS(2786), - [anon_sym_export] = ACTIONS(2788), - [anon_sym_QueryExecute] = ACTIONS(2788), - [anon_sym_queryexecute] = ACTIONS(2788), - [anon_sym_QUERYEXECUTE] = ACTIONS(2788), - [anon_sym_queryExecute] = ACTIONS(2788), - [anon_sym_BQUOTE] = ACTIONS(2788), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2786), - [anon_sym_Abstract] = ACTIONS(2788), - [anon_sym_abstract] = ACTIONS(2788), - [anon_sym_ABSTRACT] = ACTIONS(2788), - [anon_sym_Break] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_BREAK] = ACTIONS(2788), - [anon_sym_Component] = ACTIONS(2788), - [anon_sym_component] = ACTIONS(2788), - [anon_sym_COMPONENT] = ACTIONS(2788), - [anon_sym_Continue] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_CONTINUE] = ACTIONS(2788), - [anon_sym_Debugger] = ACTIONS(2788), - [anon_sym_debugger] = ACTIONS(2788), - [anon_sym_DEBUGGER] = ACTIONS(2788), - [anon_sym_Do] = ACTIONS(2788), - [anon_sym_do] = ACTIONS(2788), - [anon_sym_DO] = ACTIONS(2788), - [anon_sym_Final] = ACTIONS(2788), - [anon_sym_final] = ACTIONS(2788), - [anon_sym_FINAL] = ACTIONS(2788), - [anon_sym_For] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_FOR] = ACTIONS(2788), - [anon_sym_Function] = ACTIONS(2788), - [anon_sym_function] = ACTIONS(2788), - [anon_sym_FUNCTION] = ACTIONS(2788), - [anon_sym_If] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_IF] = ACTIONS(2788), - [anon_sym_Import] = ACTIONS(2788), - [anon_sym_import] = ACTIONS(2788), - [anon_sym_IMPORT] = ACTIONS(2788), - [anon_sym_Include] = ACTIONS(2788), - [anon_sym_include] = ACTIONS(2788), - [anon_sym_INCLUDE] = ACTIONS(2788), - [anon_sym_Interface] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_INTERFACE] = ACTIONS(2788), - [anon_sym_New] = ACTIONS(2788), - [anon_sym_new] = ACTIONS(2788), - [anon_sym_NEW] = ACTIONS(2788), - [anon_sym_Package] = ACTIONS(2788), - [anon_sym_package] = ACTIONS(2788), - [anon_sym_PACKAGE] = ACTIONS(2788), - [anon_sym_Private] = ACTIONS(2788), - [anon_sym_private] = ACTIONS(2788), - [anon_sym_PRIVATE] = ACTIONS(2788), - [anon_sym_Public] = ACTIONS(2788), - [anon_sym_public] = ACTIONS(2788), - [anon_sym_PUBLIC] = ACTIONS(2788), - [anon_sym_Remote] = ACTIONS(2788), - [anon_sym_remote] = ACTIONS(2788), - [anon_sym_REMOTE] = ACTIONS(2788), - [anon_sym_Return] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_RETURN] = ACTIONS(2788), - [anon_sym_Static] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2788), - [anon_sym_STATIC] = ACTIONS(2788), - [anon_sym_Switch] = ACTIONS(2788), - [anon_sym_switch] = ACTIONS(2788), - [anon_sym_SWITCH] = ACTIONS(2788), - [anon_sym_Throw] = ACTIONS(2788), - [anon_sym_throw] = ACTIONS(2788), - [anon_sym_THROW] = ACTIONS(2788), - [anon_sym_Try] = ACTIONS(2788), - [anon_sym_try] = ACTIONS(2788), - [anon_sym_TRY] = ACTIONS(2788), - [anon_sym_Var] = ACTIONS(2788), - [anon_sym_var] = ACTIONS(2788), - [anon_sym_VAR] = ACTIONS(2788), - [anon_sym_While] = ACTIONS(2788), - [anon_sym_while] = ACTIONS(2788), - [anon_sym_WHILE] = ACTIONS(2788), - [anon_sym_With] = ACTIONS(2788), - [anon_sym_with] = ACTIONS(2788), - [anon_sym_WITH] = ACTIONS(2788), - [sym_cf_comment] = ACTIONS(2786), - [sym__java_block_open] = ACTIONS(2786), - [sym__static_type_prefix] = ACTIONS(2786), - }, - [STATE(1025)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1026)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1027)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1028)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1029)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1030)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1031)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1032)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1033)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1034)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1035)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1036)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1037)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1038)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1039)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1040)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1041)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1042)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1043)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1044)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1045)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1046)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1047)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1048)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1049)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1050)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1051)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1052)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1053)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1054)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1055)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1056)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1057)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1058)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1059)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1060)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1061)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1062)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1063)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1064)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1065)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1066)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1067)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1068)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1069)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1070)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1071)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1072)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1073)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1074)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1075)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1076)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1077)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1078)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1079)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1080)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1081)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1082)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1083)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1084)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1085)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1086)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1087)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1088)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1089)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1090)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1091)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1092)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1093)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1094)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1095)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1096)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1097)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1098)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1099)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1100)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1101)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1102)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1103)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1104)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1105)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1106)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1107)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1108)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1109)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1110)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1111)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1112)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1113)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1114)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1115)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1116)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1117)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1118)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1119)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1120)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1121)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1122)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1123)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1124)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1125)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1126)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1127)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1128)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1129)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1130)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1131)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1132)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1133)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1134)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(3944), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(3942), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1135)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), + [STATE(1187)] = { + [sym_expression_statement] = STATE(3940), + [sym_statement_block] = STATE(3940), + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_sequence_expression] = STATE(4849), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2838), + [sym_hash_expression] = STATE(2838), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1136)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), + [STATE(1188)] = { + [sym_empty_statement] = STATE(1271), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3528), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5239), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3392), + [sym_hash_expression] = STATE(3392), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3946), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1137)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), + [STATE(1189)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3394), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5357), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5357), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2869), + [sym_hash_expression] = STATE(2869), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3948), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1138)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), + [STATE(1190)] = { + [sym_statement_block] = STATE(4851), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(489), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(5009), + [sym_tag_call_arguments] = STATE(5009), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(3537), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -213084,9 +220265,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -213108,78 +220289,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3654), - [sym_tag_linefeed] = ACTIONS(1456), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1139)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4894), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4511), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2367), - [sym_subscript_expression] = STATE(2367), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4511), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3296), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3296), - [sym_undefined] = STATE(3296), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym_pattern] = STATE(4712), - [sym_rest_pattern] = STATE(4411), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3656), + [STATE(1191)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3163), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5330), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5330), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2914), + [sym_hash_expression] = STATE(2914), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_Query] = ACTIONS(3658), - [anon_sym_query] = ACTIONS(3658), - [anon_sym_QUERY] = ACTIONS(3658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -213198,388 +220376,520 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3658), - [anon_sym_set] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_QueryExecute] = ACTIONS(3662), - [anon_sym_queryexecute] = ACTIONS(3662), - [anon_sym_QUERYEXECUTE] = ACTIONS(3662), - [anon_sym_queryExecute] = ACTIONS(3662), + [sym_hash_empty] = ACTIONS(3950), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3658), - [anon_sym_abstract] = ACTIONS(3658), - [anon_sym_ABSTRACT] = ACTIONS(3658), - [anon_sym_Component] = ACTIONS(3658), - [anon_sym_component] = ACTIONS(3658), - [anon_sym_COMPONENT] = ACTIONS(3658), - [anon_sym_Debugger] = ACTIONS(3658), - [anon_sym_debugger] = ACTIONS(3658), - [anon_sym_DEBUGGER] = ACTIONS(3658), - [anon_sym_Final] = ACTIONS(3658), - [anon_sym_final] = ACTIONS(3658), - [anon_sym_FINAL] = ACTIONS(3658), - [anon_sym_Function] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3362), - [anon_sym_FUNCTION] = ACTIONS(3362), - [anon_sym_Include] = ACTIONS(3658), - [anon_sym_include] = ACTIONS(3658), - [anon_sym_INCLUDE] = ACTIONS(3658), - [anon_sym_New] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_NEW] = ACTIONS(3664), - [anon_sym_Package] = ACTIONS(3658), - [anon_sym_package] = ACTIONS(3658), - [anon_sym_PACKAGE] = ACTIONS(3658), - [anon_sym_Private] = ACTIONS(3658), - [anon_sym_private] = ACTIONS(3658), - [anon_sym_PRIVATE] = ACTIONS(3658), - [anon_sym_Public] = ACTIONS(3658), - [anon_sym_public] = ACTIONS(3658), - [anon_sym_PUBLIC] = ACTIONS(3658), - [anon_sym_Remote] = ACTIONS(3658), - [anon_sym_remote] = ACTIONS(3658), - [anon_sym_REMOTE] = ACTIONS(3658), - [anon_sym_Static] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_STATIC] = ACTIONS(3658), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1140)] = { - [sym_identifier] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_Query] = ACTIONS(3666), - [anon_sym_query] = ACTIONS(3666), - [anon_sym_QUERY] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [aux_sym_unary_operator_token1] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3666), - [aux_sym_number_token2] = ACTIONS(3668), - [anon_sym_This] = ACTIONS(3666), - [anon_sym_this] = ACTIONS(3666), - [anon_sym_THIS] = ACTIONS(3666), - [anon_sym_Super] = ACTIONS(3666), - [anon_sym_super] = ACTIONS(3666), - [anon_sym_SUPER] = ACTIONS(3666), - [anon_sym_True] = ACTIONS(3666), - [anon_sym_true] = ACTIONS(3666), - [anon_sym_TRUE] = ACTIONS(3666), - [anon_sym_False] = ACTIONS(3666), - [anon_sym_false] = ACTIONS(3666), - [anon_sym_FALSE] = ACTIONS(3666), - [anon_sym_Null] = ACTIONS(3666), - [anon_sym_null] = ACTIONS(3666), - [anon_sym_NULL] = ACTIONS(3666), - [anon_sym_Undefined] = ACTIONS(3666), - [anon_sym_undefined] = ACTIONS(3666), - [anon_sym_UNDEFINED] = ACTIONS(3666), - [anon_sym_get] = ACTIONS(3666), - [anon_sym_set] = ACTIONS(3666), - [anon_sym_POUND] = ACTIONS(3666), - [sym_hash_empty] = ACTIONS(3668), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_QueryExecute] = ACTIONS(3666), - [anon_sym_queryexecute] = ACTIONS(3666), - [anon_sym_QUERYEXECUTE] = ACTIONS(3666), - [anon_sym_queryExecute] = ACTIONS(3666), - [anon_sym_BQUOTE] = ACTIONS(3666), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3668), - [anon_sym_Abstract] = ACTIONS(3666), - [anon_sym_abstract] = ACTIONS(3666), - [anon_sym_ABSTRACT] = ACTIONS(3666), - [anon_sym_Break] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_BREAK] = ACTIONS(3666), - [anon_sym_Component] = ACTIONS(3666), - [anon_sym_component] = ACTIONS(3666), - [anon_sym_COMPONENT] = ACTIONS(3666), - [anon_sym_Continue] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_CONTINUE] = ACTIONS(3666), - [anon_sym_Debugger] = ACTIONS(3666), - [anon_sym_debugger] = ACTIONS(3666), - [anon_sym_DEBUGGER] = ACTIONS(3666), - [anon_sym_Do] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_DO] = ACTIONS(3666), - [anon_sym_Final] = ACTIONS(3666), - [anon_sym_final] = ACTIONS(3666), - [anon_sym_FINAL] = ACTIONS(3666), - [anon_sym_For] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_FOR] = ACTIONS(3666), - [anon_sym_Function] = ACTIONS(3666), - [anon_sym_function] = ACTIONS(3666), - [anon_sym_FUNCTION] = ACTIONS(3666), - [anon_sym_If] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_IF] = ACTIONS(3666), - [anon_sym_Import] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_IMPORT] = ACTIONS(3666), - [anon_sym_Include] = ACTIONS(3666), - [anon_sym_include] = ACTIONS(3666), - [anon_sym_INCLUDE] = ACTIONS(3666), - [anon_sym_Interface] = ACTIONS(3666), - [anon_sym_interface] = ACTIONS(3666), - [anon_sym_INTERFACE] = ACTIONS(3666), - [anon_sym_New] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_NEW] = ACTIONS(3666), - [anon_sym_Package] = ACTIONS(3666), - [anon_sym_package] = ACTIONS(3666), - [anon_sym_PACKAGE] = ACTIONS(3666), - [anon_sym_Private] = ACTIONS(3666), - [anon_sym_private] = ACTIONS(3666), - [anon_sym_PRIVATE] = ACTIONS(3666), - [anon_sym_Public] = ACTIONS(3666), - [anon_sym_public] = ACTIONS(3666), - [anon_sym_PUBLIC] = ACTIONS(3666), - [anon_sym_Remote] = ACTIONS(3666), - [anon_sym_remote] = ACTIONS(3666), - [anon_sym_REMOTE] = ACTIONS(3666), - [anon_sym_Return] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_RETURN] = ACTIONS(3666), - [anon_sym_Static] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_STATIC] = ACTIONS(3666), - [anon_sym_Switch] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_SWITCH] = ACTIONS(3666), - [anon_sym_Throw] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_THROW] = ACTIONS(3666), - [anon_sym_Try] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_TRY] = ACTIONS(3666), - [anon_sym_Var] = ACTIONS(3666), - [anon_sym_var] = ACTIONS(3666), - [anon_sym_VAR] = ACTIONS(3666), - [anon_sym_While] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_WHILE] = ACTIONS(3666), - [anon_sym_With] = ACTIONS(3666), - [anon_sym_with] = ACTIONS(3666), - [anon_sym_WITH] = ACTIONS(3666), - [sym_cf_comment] = ACTIONS(3668), - [sym__java_block_open] = ACTIONS(3668), - [sym__static_type_prefix] = ACTIONS(3668), + [STATE(1192)] = { + [sym_empty_statement] = STATE(1258), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3484), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5199), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3213), + [sym_hash_expression] = STATE(3213), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3952), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1141)] = { - [sym_identifier] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_Query] = ACTIONS(3670), - [anon_sym_query] = ACTIONS(3670), - [anon_sym_QUERY] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [aux_sym_unary_operator_token1] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3670), - [aux_sym_number_token2] = ACTIONS(3672), - [anon_sym_This] = ACTIONS(3670), - [anon_sym_this] = ACTIONS(3670), - [anon_sym_THIS] = ACTIONS(3670), - [anon_sym_Super] = ACTIONS(3670), - [anon_sym_super] = ACTIONS(3670), - [anon_sym_SUPER] = ACTIONS(3670), - [anon_sym_True] = ACTIONS(3670), - [anon_sym_true] = ACTIONS(3670), - [anon_sym_TRUE] = ACTIONS(3670), - [anon_sym_False] = ACTIONS(3670), - [anon_sym_false] = ACTIONS(3670), - [anon_sym_FALSE] = ACTIONS(3670), - [anon_sym_Null] = ACTIONS(3670), - [anon_sym_null] = ACTIONS(3670), - [anon_sym_NULL] = ACTIONS(3670), - [anon_sym_Undefined] = ACTIONS(3670), - [anon_sym_undefined] = ACTIONS(3670), - [anon_sym_UNDEFINED] = ACTIONS(3670), - [anon_sym_get] = ACTIONS(3670), - [anon_sym_set] = ACTIONS(3670), - [anon_sym_POUND] = ACTIONS(3670), - [sym_hash_empty] = ACTIONS(3672), - [anon_sym_export] = ACTIONS(3670), - [anon_sym_QueryExecute] = ACTIONS(3670), - [anon_sym_queryexecute] = ACTIONS(3670), - [anon_sym_QUERYEXECUTE] = ACTIONS(3670), - [anon_sym_queryExecute] = ACTIONS(3670), - [anon_sym_BQUOTE] = ACTIONS(3670), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3672), - [anon_sym_Abstract] = ACTIONS(3670), - [anon_sym_abstract] = ACTIONS(3670), - [anon_sym_ABSTRACT] = ACTIONS(3670), - [anon_sym_Break] = ACTIONS(3670), - [anon_sym_break] = ACTIONS(3670), - [anon_sym_BREAK] = ACTIONS(3670), - [anon_sym_Component] = ACTIONS(3670), - [anon_sym_component] = ACTIONS(3670), - [anon_sym_COMPONENT] = ACTIONS(3670), - [anon_sym_Continue] = ACTIONS(3670), - [anon_sym_continue] = ACTIONS(3670), - [anon_sym_CONTINUE] = ACTIONS(3670), - [anon_sym_Debugger] = ACTIONS(3670), - [anon_sym_debugger] = ACTIONS(3670), - [anon_sym_DEBUGGER] = ACTIONS(3670), - [anon_sym_Do] = ACTIONS(3670), - [anon_sym_do] = ACTIONS(3670), - [anon_sym_DO] = ACTIONS(3670), - [anon_sym_Final] = ACTIONS(3670), - [anon_sym_final] = ACTIONS(3670), - [anon_sym_FINAL] = ACTIONS(3670), - [anon_sym_For] = ACTIONS(3670), - [anon_sym_for] = ACTIONS(3670), - [anon_sym_FOR] = ACTIONS(3670), - [anon_sym_Function] = ACTIONS(3670), - [anon_sym_function] = ACTIONS(3670), - [anon_sym_FUNCTION] = ACTIONS(3670), - [anon_sym_If] = ACTIONS(3670), - [anon_sym_if] = ACTIONS(3670), - [anon_sym_IF] = ACTIONS(3670), - [anon_sym_Import] = ACTIONS(3670), - [anon_sym_import] = ACTIONS(3670), - [anon_sym_IMPORT] = ACTIONS(3670), - [anon_sym_Include] = ACTIONS(3670), - [anon_sym_include] = ACTIONS(3670), - [anon_sym_INCLUDE] = ACTIONS(3670), - [anon_sym_Interface] = ACTIONS(3670), - [anon_sym_interface] = ACTIONS(3670), - [anon_sym_INTERFACE] = ACTIONS(3670), - [anon_sym_New] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3670), - [anon_sym_NEW] = ACTIONS(3670), - [anon_sym_Package] = ACTIONS(3670), - [anon_sym_package] = ACTIONS(3670), - [anon_sym_PACKAGE] = ACTIONS(3670), - [anon_sym_Private] = ACTIONS(3670), - [anon_sym_private] = ACTIONS(3670), - [anon_sym_PRIVATE] = ACTIONS(3670), - [anon_sym_Public] = ACTIONS(3670), - [anon_sym_public] = ACTIONS(3670), - [anon_sym_PUBLIC] = ACTIONS(3670), - [anon_sym_Remote] = ACTIONS(3670), - [anon_sym_remote] = ACTIONS(3670), - [anon_sym_REMOTE] = ACTIONS(3670), - [anon_sym_Return] = ACTIONS(3670), - [anon_sym_return] = ACTIONS(3670), - [anon_sym_RETURN] = ACTIONS(3670), - [anon_sym_Static] = ACTIONS(3670), - [anon_sym_static] = ACTIONS(3670), - [anon_sym_STATIC] = ACTIONS(3670), - [anon_sym_Switch] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_SWITCH] = ACTIONS(3670), - [anon_sym_Throw] = ACTIONS(3670), - [anon_sym_throw] = ACTIONS(3670), - [anon_sym_THROW] = ACTIONS(3670), - [anon_sym_Try] = ACTIONS(3670), - [anon_sym_try] = ACTIONS(3670), - [anon_sym_TRY] = ACTIONS(3670), - [anon_sym_Var] = ACTIONS(3670), - [anon_sym_var] = ACTIONS(3670), - [anon_sym_VAR] = ACTIONS(3670), - [anon_sym_While] = ACTIONS(3670), - [anon_sym_while] = ACTIONS(3670), - [anon_sym_WHILE] = ACTIONS(3670), - [anon_sym_With] = ACTIONS(3670), - [anon_sym_with] = ACTIONS(3670), - [anon_sym_WITH] = ACTIONS(3670), - [sym_cf_comment] = ACTIONS(3672), - [sym__java_block_open] = ACTIONS(3672), - [sym__static_type_prefix] = ACTIONS(3672), + [STATE(1193)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3189), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5286), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5286), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2932), + [sym_hash_expression] = STATE(2932), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3954), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1142)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), + [STATE(1194)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3325), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5215), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5215), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2836), + [sym_hash_expression] = STATE(2836), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3956), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1195)] = { + [sym_statement_block] = STATE(5003), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(489), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(4969), + [sym_tag_call_arguments] = STATE(4969), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(3537), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -213620,9 +220930,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -213644,76 +220954,740 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3674), - [sym_tag_linefeed] = ACTIONS(1456), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1143)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), + [STATE(1196)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3383), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5192), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5192), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3063), + [sym_hash_expression] = STATE(3063), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3958), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1197)] = { + [sym_empty_statement] = STATE(1215), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3504), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5289), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3370), + [sym_hash_expression] = STATE(3370), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3960), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1198)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3406), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5268), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5268), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3086), + [sym_hash_expression] = STATE(3086), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3962), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1199)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3408), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5271), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5271), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3087), + [sym_hash_expression] = STATE(3087), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3964), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1200)] = { + [sym_empty_statement] = STATE(1286), + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3507), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5312), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3372), + [sym_hash_expression] = STATE(3372), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3966), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1201)] = { + [sym_statement_block] = STATE(5099), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(489), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_arguments] = STATE(5005), + [sym_tag_call_arguments] = STATE(5005), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(3537), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -213754,9 +221728,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -213778,76 +221752,1935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3676), - [sym_tag_linefeed] = ACTIONS(1456), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1144)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), + [STATE(1202)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3450), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5129), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5129), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2866), + [sym_hash_expression] = STATE(2866), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3968), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1203)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3301), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5143), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5143), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3049), + [sym_hash_expression] = STATE(3049), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3970), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1204)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3303), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5158), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5158), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3077), + [sym_hash_expression] = STATE(3077), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3972), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1205)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3307), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5329), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5329), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3130), + [sym_hash_expression] = STATE(3130), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3974), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1206)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3361), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5123), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5123), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2874), + [sym_hash_expression] = STATE(2874), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3976), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1207)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3363), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5155), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5155), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2877), + [sym_hash_expression] = STATE(2877), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3978), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1208)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3236), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5183), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5183), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2950), + [sym_hash_expression] = STATE(2950), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3980), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1209)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3176), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5273), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5273), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3017), + [sym_hash_expression] = STATE(3017), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3982), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1210)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3181), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5287), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3023), + [sym_hash_expression] = STATE(3023), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3984), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1211)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3183), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5292), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5292), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3026), + [sym_hash_expression] = STATE(3026), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3986), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1212)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3311), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5157), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5157), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2833), + [sym_hash_expression] = STATE(2833), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3988), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1213)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3321), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5203), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5203), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2835), + [sym_hash_expression] = STATE(2835), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3990), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1214)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3190), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_slice_expression] = STATE(5349), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5349), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2933), + [sym_hash_expression] = STATE(2933), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3992), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1215)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3567), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5284), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3413), + [sym_hash_expression] = STATE(3413), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(3994), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(3996), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1216)] = { + [sym_statement_block] = STATE(4130), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -213888,9 +223721,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -213912,76 +223745,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3678), - [sym_tag_linefeed] = ACTIONS(1456), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1145)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1217)] = { + [sym_statement_block] = STATE(3440), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1218)] = { + [sym_statement_block] = STATE(3452), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1219)] = { + [sym_statement_block] = STATE(3456), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -214000,122 +224095,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3680), - [sym_tag_linefeed] = ACTIONS(1456), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1146)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3682), + [STATE(1220)] = { + [sym_statement_block] = STATE(4144), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -214156,9 +224249,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -214180,76 +224273,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3682), - [sym_tag_linefeed] = ACTIONS(1456), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1147)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3684), + [STATE(1221)] = { + [sym_statement_block] = STATE(4147), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -214290,9 +224381,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -214314,76 +224405,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3684), - [sym_tag_linefeed] = ACTIONS(1456), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1148)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3686), + [STATE(1222)] = { + [sym_statement_block] = STATE(4149), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -214424,9 +224513,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -214448,78 +224537,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(517), [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), - [sym__automatic_semicolon] = ACTIONS(3686), - [sym_tag_linefeed] = ACTIONS(1456), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1149)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3350), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_assignment_pattern] = STATE(4894), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4407), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2310), - [sym_subscript_expression] = STATE(2310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4407), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2787), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2787), - [sym_undefined] = STATE(2787), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym_pattern] = STATE(4712), - [sym_rest_pattern] = STATE(4411), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3690), - [anon_sym_query] = ACTIONS(3690), - [anon_sym_QUERY] = ACTIONS(3690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3660), + [STATE(1223)] = { + [sym_statement_block] = STATE(2540), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1270), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -214538,3202 +224623,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3690), - [anon_sym_set] = ACTIONS(3690), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3690), - [anon_sym_QueryExecute] = ACTIONS(3692), - [anon_sym_queryexecute] = ACTIONS(3692), - [anon_sym_QUERYEXECUTE] = ACTIONS(3692), - [anon_sym_queryExecute] = ACTIONS(3692), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3690), - [anon_sym_abstract] = ACTIONS(3690), - [anon_sym_ABSTRACT] = ACTIONS(3690), - [anon_sym_Component] = ACTIONS(3690), - [anon_sym_component] = ACTIONS(3690), - [anon_sym_COMPONENT] = ACTIONS(3690), - [anon_sym_Debugger] = ACTIONS(3690), - [anon_sym_debugger] = ACTIONS(3690), - [anon_sym_DEBUGGER] = ACTIONS(3690), - [anon_sym_Final] = ACTIONS(3690), - [anon_sym_final] = ACTIONS(3690), - [anon_sym_FINAL] = ACTIONS(3690), - [anon_sym_Function] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_FUNCTION] = ACTIONS(3188), - [anon_sym_Include] = ACTIONS(3690), - [anon_sym_include] = ACTIONS(3690), - [anon_sym_INCLUDE] = ACTIONS(3690), - [anon_sym_New] = ACTIONS(3694), - [anon_sym_new] = ACTIONS(3694), - [anon_sym_NEW] = ACTIONS(3694), - [anon_sym_Package] = ACTIONS(3690), - [anon_sym_package] = ACTIONS(3690), - [anon_sym_PACKAGE] = ACTIONS(3690), - [anon_sym_Private] = ACTIONS(3690), - [anon_sym_private] = ACTIONS(3690), - [anon_sym_PRIVATE] = ACTIONS(3690), - [anon_sym_Public] = ACTIONS(3690), - [anon_sym_public] = ACTIONS(3690), - [anon_sym_PUBLIC] = ACTIONS(3690), - [anon_sym_Remote] = ACTIONS(3690), - [anon_sym_remote] = ACTIONS(3690), - [anon_sym_REMOTE] = ACTIONS(3690), - [anon_sym_Static] = ACTIONS(3690), - [anon_sym_static] = ACTIONS(3690), - [anon_sym_STATIC] = ACTIONS(3690), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1150)] = { - [sym_identifier] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3698), - [anon_sym_Query] = ACTIONS(3696), - [anon_sym_query] = ACTIONS(3696), - [anon_sym_QUERY] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [aux_sym_unary_operator_token1] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_DASH_DASH] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3696), - [aux_sym_number_token2] = ACTIONS(3698), - [anon_sym_This] = ACTIONS(3696), - [anon_sym_this] = ACTIONS(3696), - [anon_sym_THIS] = ACTIONS(3696), - [anon_sym_Super] = ACTIONS(3696), - [anon_sym_super] = ACTIONS(3696), - [anon_sym_SUPER] = ACTIONS(3696), - [anon_sym_True] = ACTIONS(3696), - [anon_sym_true] = ACTIONS(3696), - [anon_sym_TRUE] = ACTIONS(3696), - [anon_sym_False] = ACTIONS(3696), - [anon_sym_false] = ACTIONS(3696), - [anon_sym_FALSE] = ACTIONS(3696), - [anon_sym_Null] = ACTIONS(3696), - [anon_sym_null] = ACTIONS(3696), - [anon_sym_NULL] = ACTIONS(3696), - [anon_sym_Undefined] = ACTIONS(3696), - [anon_sym_undefined] = ACTIONS(3696), - [anon_sym_UNDEFINED] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3696), - [anon_sym_POUND] = ACTIONS(3696), - [sym_hash_empty] = ACTIONS(3698), - [anon_sym_export] = ACTIONS(3696), - [anon_sym_QueryExecute] = ACTIONS(3696), - [anon_sym_queryexecute] = ACTIONS(3696), - [anon_sym_QUERYEXECUTE] = ACTIONS(3696), - [anon_sym_queryExecute] = ACTIONS(3696), - [anon_sym_BQUOTE] = ACTIONS(3696), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3698), - [anon_sym_Abstract] = ACTIONS(3696), - [anon_sym_abstract] = ACTIONS(3696), - [anon_sym_ABSTRACT] = ACTIONS(3696), - [anon_sym_Break] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_BREAK] = ACTIONS(3696), - [anon_sym_Component] = ACTIONS(3696), - [anon_sym_component] = ACTIONS(3696), - [anon_sym_COMPONENT] = ACTIONS(3696), - [anon_sym_Continue] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_CONTINUE] = ACTIONS(3696), - [anon_sym_Debugger] = ACTIONS(3696), - [anon_sym_debugger] = ACTIONS(3696), - [anon_sym_DEBUGGER] = ACTIONS(3696), - [anon_sym_Do] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_DO] = ACTIONS(3696), - [anon_sym_Final] = ACTIONS(3696), - [anon_sym_final] = ACTIONS(3696), - [anon_sym_FINAL] = ACTIONS(3696), - [anon_sym_For] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_FOR] = ACTIONS(3696), - [anon_sym_Function] = ACTIONS(3696), - [anon_sym_function] = ACTIONS(3696), - [anon_sym_FUNCTION] = ACTIONS(3696), - [anon_sym_If] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_IF] = ACTIONS(3696), - [anon_sym_Import] = ACTIONS(3696), - [anon_sym_import] = ACTIONS(3696), - [anon_sym_IMPORT] = ACTIONS(3696), - [anon_sym_Include] = ACTIONS(3696), - [anon_sym_include] = ACTIONS(3696), - [anon_sym_INCLUDE] = ACTIONS(3696), - [anon_sym_Interface] = ACTIONS(3696), - [anon_sym_interface] = ACTIONS(3696), - [anon_sym_INTERFACE] = ACTIONS(3696), - [anon_sym_New] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_NEW] = ACTIONS(3696), - [anon_sym_Package] = ACTIONS(3696), - [anon_sym_package] = ACTIONS(3696), - [anon_sym_PACKAGE] = ACTIONS(3696), - [anon_sym_Private] = ACTIONS(3696), - [anon_sym_private] = ACTIONS(3696), - [anon_sym_PRIVATE] = ACTIONS(3696), - [anon_sym_Public] = ACTIONS(3696), - [anon_sym_public] = ACTIONS(3696), - [anon_sym_PUBLIC] = ACTIONS(3696), - [anon_sym_Remote] = ACTIONS(3696), - [anon_sym_remote] = ACTIONS(3696), - [anon_sym_REMOTE] = ACTIONS(3696), - [anon_sym_Return] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_RETURN] = ACTIONS(3696), - [anon_sym_Static] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_STATIC] = ACTIONS(3696), - [anon_sym_Switch] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_SWITCH] = ACTIONS(3696), - [anon_sym_Throw] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_THROW] = ACTIONS(3696), - [anon_sym_Try] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_TRY] = ACTIONS(3696), - [anon_sym_Var] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3696), - [anon_sym_VAR] = ACTIONS(3696), - [anon_sym_While] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_WHILE] = ACTIONS(3696), - [anon_sym_With] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [anon_sym_WITH] = ACTIONS(3696), - [sym_cf_comment] = ACTIONS(3698), - [sym__java_block_open] = ACTIONS(3698), - [sym__static_type_prefix] = ACTIONS(3698), - }, - [STATE(1151)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3145), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4381), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4850), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_arguments] = STATE(4997), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2866), - [sym_hash_expression] = STATE(2866), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4381), - [sym_identifier] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(3702), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1152)] = { - [sym_identifier] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_LPAREN] = ACTIONS(3706), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym_let] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3706), - [anon_sym_Query] = ACTIONS(3704), - [anon_sym_query] = ACTIONS(3704), - [anon_sym_QUERY] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(3704), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [aux_sym_unary_operator_token1] = ACTIONS(3704), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3704), - [aux_sym_number_token2] = ACTIONS(3706), - [anon_sym_This] = ACTIONS(3704), - [anon_sym_this] = ACTIONS(3704), - [anon_sym_THIS] = ACTIONS(3704), - [anon_sym_Super] = ACTIONS(3704), - [anon_sym_super] = ACTIONS(3704), - [anon_sym_SUPER] = ACTIONS(3704), - [anon_sym_True] = ACTIONS(3704), - [anon_sym_true] = ACTIONS(3704), - [anon_sym_TRUE] = ACTIONS(3704), - [anon_sym_False] = ACTIONS(3704), - [anon_sym_false] = ACTIONS(3704), - [anon_sym_FALSE] = ACTIONS(3704), - [anon_sym_Null] = ACTIONS(3704), - [anon_sym_null] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_Undefined] = ACTIONS(3704), - [anon_sym_undefined] = ACTIONS(3704), - [anon_sym_UNDEFINED] = ACTIONS(3704), - [anon_sym_get] = ACTIONS(3704), - [anon_sym_set] = ACTIONS(3704), - [anon_sym_POUND] = ACTIONS(3704), - [sym_hash_empty] = ACTIONS(3706), - [anon_sym_export] = ACTIONS(3704), - [anon_sym_QueryExecute] = ACTIONS(3704), - [anon_sym_queryexecute] = ACTIONS(3704), - [anon_sym_QUERYEXECUTE] = ACTIONS(3704), - [anon_sym_queryExecute] = ACTIONS(3704), - [anon_sym_BQUOTE] = ACTIONS(3704), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3706), - [anon_sym_Abstract] = ACTIONS(3704), - [anon_sym_abstract] = ACTIONS(3704), - [anon_sym_ABSTRACT] = ACTIONS(3704), - [anon_sym_Break] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_BREAK] = ACTIONS(3704), - [anon_sym_Component] = ACTIONS(3704), - [anon_sym_component] = ACTIONS(3704), - [anon_sym_COMPONENT] = ACTIONS(3704), - [anon_sym_Continue] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_CONTINUE] = ACTIONS(3704), - [anon_sym_Debugger] = ACTIONS(3704), - [anon_sym_debugger] = ACTIONS(3704), - [anon_sym_DEBUGGER] = ACTIONS(3704), - [anon_sym_Do] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_DO] = ACTIONS(3704), - [anon_sym_Final] = ACTIONS(3704), - [anon_sym_final] = ACTIONS(3704), - [anon_sym_FINAL] = ACTIONS(3704), - [anon_sym_For] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_FOR] = ACTIONS(3704), - [anon_sym_Function] = ACTIONS(3704), - [anon_sym_function] = ACTIONS(3704), - [anon_sym_FUNCTION] = ACTIONS(3704), - [anon_sym_If] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_IF] = ACTIONS(3704), - [anon_sym_Import] = ACTIONS(3704), - [anon_sym_import] = ACTIONS(3704), - [anon_sym_IMPORT] = ACTIONS(3704), - [anon_sym_Include] = ACTIONS(3704), - [anon_sym_include] = ACTIONS(3704), - [anon_sym_INCLUDE] = ACTIONS(3704), - [anon_sym_Interface] = ACTIONS(3704), - [anon_sym_interface] = ACTIONS(3704), - [anon_sym_INTERFACE] = ACTIONS(3704), - [anon_sym_New] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_NEW] = ACTIONS(3704), - [anon_sym_Package] = ACTIONS(3704), - [anon_sym_package] = ACTIONS(3704), - [anon_sym_PACKAGE] = ACTIONS(3704), - [anon_sym_Private] = ACTIONS(3704), - [anon_sym_private] = ACTIONS(3704), - [anon_sym_PRIVATE] = ACTIONS(3704), - [anon_sym_Public] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3704), - [anon_sym_PUBLIC] = ACTIONS(3704), - [anon_sym_Remote] = ACTIONS(3704), - [anon_sym_remote] = ACTIONS(3704), - [anon_sym_REMOTE] = ACTIONS(3704), - [anon_sym_Return] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_RETURN] = ACTIONS(3704), - [anon_sym_Static] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_STATIC] = ACTIONS(3704), - [anon_sym_Switch] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_SWITCH] = ACTIONS(3704), - [anon_sym_Throw] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_THROW] = ACTIONS(3704), - [anon_sym_Try] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_TRY] = ACTIONS(3704), - [anon_sym_Var] = ACTIONS(3704), - [anon_sym_var] = ACTIONS(3704), - [anon_sym_VAR] = ACTIONS(3704), - [anon_sym_While] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_WHILE] = ACTIONS(3704), - [anon_sym_With] = ACTIONS(3704), - [anon_sym_with] = ACTIONS(3704), - [anon_sym_WITH] = ACTIONS(3704), - [sym_cf_comment] = ACTIONS(3706), - [sym__java_block_open] = ACTIONS(3706), - [sym__static_type_prefix] = ACTIONS(3706), - }, - [STATE(1153)] = { - [sym_identifier] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_Query] = ACTIONS(2007), - [anon_sym_query] = ACTIONS(2007), - [anon_sym_QUERY] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_TILDE] = ACTIONS(2009), - [aux_sym_unary_operator_token1] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [anon_sym_SQUOTE] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2007), - [aux_sym_number_token2] = ACTIONS(2009), - [anon_sym_This] = ACTIONS(2007), - [anon_sym_this] = ACTIONS(2007), - [anon_sym_THIS] = ACTIONS(2007), - [anon_sym_Super] = ACTIONS(2007), - [anon_sym_super] = ACTIONS(2007), - [anon_sym_SUPER] = ACTIONS(2007), - [anon_sym_True] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_TRUE] = ACTIONS(2007), - [anon_sym_False] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_FALSE] = ACTIONS(2007), - [anon_sym_Null] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_NULL] = ACTIONS(2007), - [anon_sym_Undefined] = ACTIONS(2007), - [anon_sym_undefined] = ACTIONS(2007), - [anon_sym_UNDEFINED] = ACTIONS(2007), - [anon_sym_get] = ACTIONS(2007), - [anon_sym_set] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [sym_hash_empty] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_QueryExecute] = ACTIONS(2007), - [anon_sym_queryexecute] = ACTIONS(2007), - [anon_sym_QUERYEXECUTE] = ACTIONS(2007), - [anon_sym_queryExecute] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(2009), - [anon_sym_Abstract] = ACTIONS(2007), - [anon_sym_abstract] = ACTIONS(2007), - [anon_sym_ABSTRACT] = ACTIONS(2007), - [anon_sym_Break] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_BREAK] = ACTIONS(2007), - [anon_sym_Component] = ACTIONS(2007), - [anon_sym_component] = ACTIONS(2007), - [anon_sym_COMPONENT] = ACTIONS(2007), - [anon_sym_Continue] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_CONTINUE] = ACTIONS(2007), - [anon_sym_Debugger] = ACTIONS(2007), - [anon_sym_debugger] = ACTIONS(2007), - [anon_sym_DEBUGGER] = ACTIONS(2007), - [anon_sym_Do] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_DO] = ACTIONS(2007), - [anon_sym_Final] = ACTIONS(2007), - [anon_sym_final] = ACTIONS(2007), - [anon_sym_FINAL] = ACTIONS(2007), - [anon_sym_For] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_FOR] = ACTIONS(2007), - [anon_sym_Function] = ACTIONS(2007), - [anon_sym_function] = ACTIONS(2007), - [anon_sym_FUNCTION] = ACTIONS(2007), - [anon_sym_If] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_IF] = ACTIONS(2007), - [anon_sym_Import] = ACTIONS(2007), - [anon_sym_import] = ACTIONS(2007), - [anon_sym_IMPORT] = ACTIONS(2007), - [anon_sym_Include] = ACTIONS(2007), - [anon_sym_include] = ACTIONS(2007), - [anon_sym_INCLUDE] = ACTIONS(2007), - [anon_sym_Interface] = ACTIONS(2007), - [anon_sym_interface] = ACTIONS(2007), - [anon_sym_INTERFACE] = ACTIONS(2007), - [anon_sym_New] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_NEW] = ACTIONS(2007), - [anon_sym_Package] = ACTIONS(2007), - [anon_sym_package] = ACTIONS(2007), - [anon_sym_PACKAGE] = ACTIONS(2007), - [anon_sym_Private] = ACTIONS(2007), - [anon_sym_private] = ACTIONS(2007), - [anon_sym_PRIVATE] = ACTIONS(2007), - [anon_sym_Public] = ACTIONS(2007), - [anon_sym_public] = ACTIONS(2007), - [anon_sym_PUBLIC] = ACTIONS(2007), - [anon_sym_Remote] = ACTIONS(2007), - [anon_sym_remote] = ACTIONS(2007), - [anon_sym_REMOTE] = ACTIONS(2007), - [anon_sym_Return] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_RETURN] = ACTIONS(2007), - [anon_sym_Static] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_STATIC] = ACTIONS(2007), - [anon_sym_Switch] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(2007), - [anon_sym_SWITCH] = ACTIONS(2007), - [anon_sym_Throw] = ACTIONS(2007), - [anon_sym_throw] = ACTIONS(2007), - [anon_sym_THROW] = ACTIONS(2007), - [anon_sym_Try] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_TRY] = ACTIONS(2007), - [anon_sym_Var] = ACTIONS(2007), - [anon_sym_var] = ACTIONS(2007), - [anon_sym_VAR] = ACTIONS(2007), - [anon_sym_While] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_WHILE] = ACTIONS(2007), - [anon_sym_With] = ACTIONS(2007), - [anon_sym_with] = ACTIONS(2007), - [anon_sym_WITH] = ACTIONS(2007), - [sym_cf_comment] = ACTIONS(2009), - [sym__java_block_open] = ACTIONS(2009), - [sym__static_type_prefix] = ACTIONS(2009), - }, - [STATE(1154)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(556), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_query_tag_repeat1] = STATE(1154), - [sym_identifier] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_SEMI] = ACTIONS(3717), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_LBRACK] = ACTIONS(3722), - [anon_sym_Query] = ACTIONS(3719), - [anon_sym_query] = ACTIONS(3719), - [anon_sym_QUERY] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3725), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_SLASH] = ACTIONS(3728), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(3731), - [aux_sym_unary_operator_token1] = ACTIONS(3725), - [anon_sym_PLUS_PLUS] = ACTIONS(3734), - [anon_sym_DASH_DASH] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3737), - [anon_sym_SQUOTE] = ACTIONS(3740), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3743), - [aux_sym_number_token2] = ACTIONS(3746), - [anon_sym_This] = ACTIONS(3749), - [anon_sym_this] = ACTIONS(3749), - [anon_sym_THIS] = ACTIONS(3749), - [anon_sym_Super] = ACTIONS(3752), - [anon_sym_super] = ACTIONS(3752), - [anon_sym_SUPER] = ACTIONS(3752), - [anon_sym_True] = ACTIONS(3755), - [anon_sym_true] = ACTIONS(3755), - [anon_sym_TRUE] = ACTIONS(3755), - [anon_sym_False] = ACTIONS(3758), - [anon_sym_false] = ACTIONS(3758), - [anon_sym_FALSE] = ACTIONS(3758), - [anon_sym_Null] = ACTIONS(3761), - [anon_sym_null] = ACTIONS(3761), - [anon_sym_NULL] = ACTIONS(3761), - [anon_sym_Undefined] = ACTIONS(3764), - [anon_sym_undefined] = ACTIONS(3764), - [anon_sym_UNDEFINED] = ACTIONS(3764), - [anon_sym_get] = ACTIONS(3719), - [anon_sym_set] = ACTIONS(3719), - [anon_sym_POUND] = ACTIONS(3767), - [sym_hash_empty] = ACTIONS(3770), - [anon_sym_export] = ACTIONS(3719), - [anon_sym_QueryExecute] = ACTIONS(3773), - [anon_sym_queryexecute] = ACTIONS(3773), - [anon_sym_QUERYEXECUTE] = ACTIONS(3773), - [anon_sym_queryExecute] = ACTIONS(3773), - [anon_sym_BQUOTE] = ACTIONS(3776), - [anon_sym_Abstract] = ACTIONS(3719), - [anon_sym_abstract] = ACTIONS(3719), - [anon_sym_ABSTRACT] = ACTIONS(3719), - [anon_sym_Component] = ACTIONS(3719), - [anon_sym_component] = ACTIONS(3719), - [anon_sym_COMPONENT] = ACTIONS(3719), - [anon_sym_Debugger] = ACTIONS(3719), - [anon_sym_debugger] = ACTIONS(3719), - [anon_sym_DEBUGGER] = ACTIONS(3719), - [anon_sym_Final] = ACTIONS(3719), - [anon_sym_final] = ACTIONS(3719), - [anon_sym_FINAL] = ACTIONS(3719), - [anon_sym_Function] = ACTIONS(3779), - [anon_sym_function] = ACTIONS(3779), - [anon_sym_FUNCTION] = ACTIONS(3779), - [anon_sym_Include] = ACTIONS(3719), - [anon_sym_include] = ACTIONS(3719), - [anon_sym_INCLUDE] = ACTIONS(3719), - [anon_sym_New] = ACTIONS(3782), - [anon_sym_new] = ACTIONS(3782), - [anon_sym_NEW] = ACTIONS(3782), - [anon_sym_Package] = ACTIONS(3719), - [anon_sym_package] = ACTIONS(3719), - [anon_sym_PACKAGE] = ACTIONS(3719), - [anon_sym_Private] = ACTIONS(3719), - [anon_sym_private] = ACTIONS(3719), - [anon_sym_PRIVATE] = ACTIONS(3719), - [anon_sym_Public] = ACTIONS(3719), - [anon_sym_public] = ACTIONS(3719), - [anon_sym_PUBLIC] = ACTIONS(3719), - [anon_sym_Remote] = ACTIONS(3719), - [anon_sym_remote] = ACTIONS(3719), - [anon_sym_REMOTE] = ACTIONS(3719), - [anon_sym_Static] = ACTIONS(3719), - [anon_sym_static] = ACTIONS(3719), - [anon_sym_STATIC] = ACTIONS(3719), - [sym__automatic_semicolon] = ACTIONS(3717), - [sym_tag_linefeed] = ACTIONS(3785), - [sym__java_block_open] = ACTIONS(3788), - [sym__static_type_prefix] = ACTIONS(3791), - }, - [STATE(1155)] = { - [sym_identifier] = ACTIONS(3794), - [anon_sym_LBRACE] = ACTIONS(3796), - [anon_sym_LPAREN] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3796), - [anon_sym_let] = ACTIONS(3794), - [anon_sym_LBRACK] = ACTIONS(3796), - [anon_sym_Query] = ACTIONS(3794), - [anon_sym_query] = ACTIONS(3794), - [anon_sym_QUERY] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(3794), - [anon_sym_DASH] = ACTIONS(3794), - [anon_sym_SLASH] = ACTIONS(3794), - [anon_sym_BANG] = ACTIONS(3796), - [anon_sym_TILDE] = ACTIONS(3796), - [aux_sym_unary_operator_token1] = ACTIONS(3794), - [anon_sym_PLUS_PLUS] = ACTIONS(3796), - [anon_sym_DASH_DASH] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_SQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3794), - [aux_sym_number_token2] = ACTIONS(3796), - [anon_sym_This] = ACTIONS(3794), - [anon_sym_this] = ACTIONS(3794), - [anon_sym_THIS] = ACTIONS(3794), - [anon_sym_Super] = ACTIONS(3794), - [anon_sym_super] = ACTIONS(3794), - [anon_sym_SUPER] = ACTIONS(3794), - [anon_sym_True] = ACTIONS(3794), - [anon_sym_true] = ACTIONS(3794), - [anon_sym_TRUE] = ACTIONS(3794), - [anon_sym_False] = ACTIONS(3794), - [anon_sym_false] = ACTIONS(3794), - [anon_sym_FALSE] = ACTIONS(3794), - [anon_sym_Null] = ACTIONS(3794), - [anon_sym_null] = ACTIONS(3794), - [anon_sym_NULL] = ACTIONS(3794), - [anon_sym_Undefined] = ACTIONS(3794), - [anon_sym_undefined] = ACTIONS(3794), - [anon_sym_UNDEFINED] = ACTIONS(3794), - [anon_sym_get] = ACTIONS(3794), - [anon_sym_set] = ACTIONS(3794), - [anon_sym_POUND] = ACTIONS(3794), - [sym_hash_empty] = ACTIONS(3796), - [anon_sym_export] = ACTIONS(3794), - [anon_sym_QueryExecute] = ACTIONS(3794), - [anon_sym_queryexecute] = ACTIONS(3794), - [anon_sym_QUERYEXECUTE] = ACTIONS(3794), - [anon_sym_queryExecute] = ACTIONS(3794), - [anon_sym_BQUOTE] = ACTIONS(3794), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3796), - [anon_sym_Abstract] = ACTIONS(3794), - [anon_sym_abstract] = ACTIONS(3794), - [anon_sym_ABSTRACT] = ACTIONS(3794), - [anon_sym_Break] = ACTIONS(3794), - [anon_sym_break] = ACTIONS(3794), - [anon_sym_BREAK] = ACTIONS(3794), - [anon_sym_Component] = ACTIONS(3794), - [anon_sym_component] = ACTIONS(3794), - [anon_sym_COMPONENT] = ACTIONS(3794), - [anon_sym_Continue] = ACTIONS(3794), - [anon_sym_continue] = ACTIONS(3794), - [anon_sym_CONTINUE] = ACTIONS(3794), - [anon_sym_Debugger] = ACTIONS(3794), - [anon_sym_debugger] = ACTIONS(3794), - [anon_sym_DEBUGGER] = ACTIONS(3794), - [anon_sym_Do] = ACTIONS(3794), - [anon_sym_do] = ACTIONS(3794), - [anon_sym_DO] = ACTIONS(3794), - [anon_sym_Final] = ACTIONS(3794), - [anon_sym_final] = ACTIONS(3794), - [anon_sym_FINAL] = ACTIONS(3794), - [anon_sym_For] = ACTIONS(3794), - [anon_sym_for] = ACTIONS(3794), - [anon_sym_FOR] = ACTIONS(3794), - [anon_sym_Function] = ACTIONS(3794), - [anon_sym_function] = ACTIONS(3794), - [anon_sym_FUNCTION] = ACTIONS(3794), - [anon_sym_If] = ACTIONS(3794), - [anon_sym_if] = ACTIONS(3794), - [anon_sym_IF] = ACTIONS(3794), - [anon_sym_Import] = ACTIONS(3794), - [anon_sym_import] = ACTIONS(3794), - [anon_sym_IMPORT] = ACTIONS(3794), - [anon_sym_Include] = ACTIONS(3794), - [anon_sym_include] = ACTIONS(3794), - [anon_sym_INCLUDE] = ACTIONS(3794), - [anon_sym_Interface] = ACTIONS(3794), - [anon_sym_interface] = ACTIONS(3794), - [anon_sym_INTERFACE] = ACTIONS(3794), - [anon_sym_New] = ACTIONS(3794), - [anon_sym_new] = ACTIONS(3794), - [anon_sym_NEW] = ACTIONS(3794), - [anon_sym_Package] = ACTIONS(3794), - [anon_sym_package] = ACTIONS(3794), - [anon_sym_PACKAGE] = ACTIONS(3794), - [anon_sym_Private] = ACTIONS(3794), - [anon_sym_private] = ACTIONS(3794), - [anon_sym_PRIVATE] = ACTIONS(3794), - [anon_sym_Public] = ACTIONS(3794), - [anon_sym_public] = ACTIONS(3794), - [anon_sym_PUBLIC] = ACTIONS(3794), - [anon_sym_Remote] = ACTIONS(3794), - [anon_sym_remote] = ACTIONS(3794), - [anon_sym_REMOTE] = ACTIONS(3794), - [anon_sym_Return] = ACTIONS(3794), - [anon_sym_return] = ACTIONS(3794), - [anon_sym_RETURN] = ACTIONS(3794), - [anon_sym_Static] = ACTIONS(3794), - [anon_sym_static] = ACTIONS(3794), - [anon_sym_STATIC] = ACTIONS(3794), - [anon_sym_Switch] = ACTIONS(3794), - [anon_sym_switch] = ACTIONS(3794), - [anon_sym_SWITCH] = ACTIONS(3794), - [anon_sym_Throw] = ACTIONS(3794), - [anon_sym_throw] = ACTIONS(3794), - [anon_sym_THROW] = ACTIONS(3794), - [anon_sym_Try] = ACTIONS(3794), - [anon_sym_try] = ACTIONS(3794), - [anon_sym_TRY] = ACTIONS(3794), - [anon_sym_Var] = ACTIONS(3794), - [anon_sym_var] = ACTIONS(3794), - [anon_sym_VAR] = ACTIONS(3794), - [anon_sym_While] = ACTIONS(3794), - [anon_sym_while] = ACTIONS(3794), - [anon_sym_WHILE] = ACTIONS(3794), - [anon_sym_With] = ACTIONS(3794), - [anon_sym_with] = ACTIONS(3794), - [anon_sym_WITH] = ACTIONS(3794), - [sym_cf_comment] = ACTIONS(3796), - [sym__java_block_open] = ACTIONS(3796), - [sym__static_type_prefix] = ACTIONS(3796), - }, - [STATE(1156)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1157)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(505), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_tag_statement_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(3798), - [anon_sym_LBRACE] = ACTIONS(3801), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_let] = ACTIONS(3807), - [anon_sym_LBRACK] = ACTIONS(3810), - [anon_sym_Query] = ACTIONS(3807), - [anon_sym_query] = ACTIONS(3807), - [anon_sym_QUERY] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3813), - [anon_sym_DASH] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3816), - [anon_sym_BANG] = ACTIONS(3819), - [anon_sym_TILDE] = ACTIONS(3819), - [aux_sym_unary_operator_token1] = ACTIONS(3813), - [anon_sym_PLUS_PLUS] = ACTIONS(3822), - [anon_sym_DASH_DASH] = ACTIONS(3822), - [anon_sym_DQUOTE] = ACTIONS(3825), - [anon_sym_SQUOTE] = ACTIONS(3828), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3831), - [aux_sym_number_token2] = ACTIONS(3834), - [anon_sym_This] = ACTIONS(3837), - [anon_sym_this] = ACTIONS(3837), - [anon_sym_THIS] = ACTIONS(3837), - [anon_sym_Super] = ACTIONS(3840), - [anon_sym_super] = ACTIONS(3840), - [anon_sym_SUPER] = ACTIONS(3840), - [anon_sym_True] = ACTIONS(3843), - [anon_sym_true] = ACTIONS(3843), - [anon_sym_TRUE] = ACTIONS(3843), - [anon_sym_False] = ACTIONS(3846), - [anon_sym_false] = ACTIONS(3846), - [anon_sym_FALSE] = ACTIONS(3846), - [anon_sym_Null] = ACTIONS(3849), - [anon_sym_null] = ACTIONS(3849), - [anon_sym_NULL] = ACTIONS(3849), - [anon_sym_Undefined] = ACTIONS(3852), - [anon_sym_undefined] = ACTIONS(3852), - [anon_sym_UNDEFINED] = ACTIONS(3852), - [anon_sym_get] = ACTIONS(3807), - [anon_sym_set] = ACTIONS(3807), - [anon_sym_POUND] = ACTIONS(3855), - [sym_hash_empty] = ACTIONS(3858), - [anon_sym_export] = ACTIONS(3807), - [anon_sym_QueryExecute] = ACTIONS(3861), - [anon_sym_queryexecute] = ACTIONS(3861), - [anon_sym_QUERYEXECUTE] = ACTIONS(3861), - [anon_sym_queryExecute] = ACTIONS(3861), - [anon_sym_BQUOTE] = ACTIONS(3864), - [anon_sym_Abstract] = ACTIONS(3807), - [anon_sym_abstract] = ACTIONS(3807), - [anon_sym_ABSTRACT] = ACTIONS(3807), - [anon_sym_Component] = ACTIONS(3807), - [anon_sym_component] = ACTIONS(3807), - [anon_sym_COMPONENT] = ACTIONS(3807), - [anon_sym_Debugger] = ACTIONS(3807), - [anon_sym_debugger] = ACTIONS(3807), - [anon_sym_DEBUGGER] = ACTIONS(3807), - [anon_sym_Final] = ACTIONS(3807), - [anon_sym_final] = ACTIONS(3807), - [anon_sym_FINAL] = ACTIONS(3807), - [anon_sym_Function] = ACTIONS(3867), - [anon_sym_function] = ACTIONS(3867), - [anon_sym_FUNCTION] = ACTIONS(3867), - [anon_sym_Include] = ACTIONS(3807), - [anon_sym_include] = ACTIONS(3807), - [anon_sym_INCLUDE] = ACTIONS(3807), - [anon_sym_New] = ACTIONS(3870), - [anon_sym_new] = ACTIONS(3870), - [anon_sym_NEW] = ACTIONS(3870), - [anon_sym_Package] = ACTIONS(3807), - [anon_sym_package] = ACTIONS(3807), - [anon_sym_PACKAGE] = ACTIONS(3807), - [anon_sym_Private] = ACTIONS(3807), - [anon_sym_private] = ACTIONS(3807), - [anon_sym_PRIVATE] = ACTIONS(3807), - [anon_sym_Public] = ACTIONS(3807), - [anon_sym_public] = ACTIONS(3807), - [anon_sym_PUBLIC] = ACTIONS(3807), - [anon_sym_Remote] = ACTIONS(3807), - [anon_sym_remote] = ACTIONS(3807), - [anon_sym_REMOTE] = ACTIONS(3807), - [anon_sym_Static] = ACTIONS(3807), - [anon_sym_static] = ACTIONS(3807), - [anon_sym_STATIC] = ACTIONS(3807), - [sym__automatic_semicolon] = ACTIONS(2360), - [sym_tag_linefeed] = ACTIONS(3873), - [sym__java_block_open] = ACTIONS(3876), - [sym__static_type_prefix] = ACTIONS(3879), - }, - [STATE(1158)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1159)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1160)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1161)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3305), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4368), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4830), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_arguments] = STATE(4831), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2772), - [sym_hash_expression] = STATE(2772), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4368), - [sym_identifier] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(3882), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1162)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1163)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1164)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1165)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1166)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3136), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_parameter_attribute] = STATE(4391), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5014), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_arguments] = STATE(4781), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2805), - [sym_hash_expression] = STATE(2805), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [aux_sym_throw_statement_repeat1] = STATE(4391), - [sym_identifier] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(3884), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1167)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1168)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1169)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1170)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_Query] = ACTIONS(3650), - [anon_sym_query] = ACTIONS(3650), - [anon_sym_QUERY] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [aux_sym_unary_operator_token1] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3650), - [aux_sym_number_token2] = ACTIONS(3652), - [anon_sym_This] = ACTIONS(3650), - [anon_sym_this] = ACTIONS(3650), - [anon_sym_THIS] = ACTIONS(3650), - [anon_sym_Super] = ACTIONS(3650), - [anon_sym_super] = ACTIONS(3650), - [anon_sym_SUPER] = ACTIONS(3650), - [anon_sym_True] = ACTIONS(3650), - [anon_sym_true] = ACTIONS(3650), - [anon_sym_TRUE] = ACTIONS(3650), - [anon_sym_False] = ACTIONS(3650), - [anon_sym_false] = ACTIONS(3650), - [anon_sym_FALSE] = ACTIONS(3650), - [anon_sym_Null] = ACTIONS(3650), - [anon_sym_null] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_Undefined] = ACTIONS(3650), - [anon_sym_undefined] = ACTIONS(3650), - [anon_sym_UNDEFINED] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_POUND] = ACTIONS(3650), - [sym_hash_empty] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_QueryExecute] = ACTIONS(3650), - [anon_sym_queryexecute] = ACTIONS(3650), - [anon_sym_QUERYEXECUTE] = ACTIONS(3650), - [anon_sym_queryExecute] = ACTIONS(3650), - [anon_sym_BQUOTE] = ACTIONS(3650), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3652), - [anon_sym_Abstract] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_ABSTRACT] = ACTIONS(3650), - [anon_sym_Break] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_BREAK] = ACTIONS(3650), - [anon_sym_Component] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_COMPONENT] = ACTIONS(3650), - [anon_sym_Continue] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_CONTINUE] = ACTIONS(3650), - [anon_sym_Debugger] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_DEBUGGER] = ACTIONS(3650), - [anon_sym_Do] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_DO] = ACTIONS(3650), - [anon_sym_Final] = ACTIONS(3650), - [anon_sym_final] = ACTIONS(3650), - [anon_sym_FINAL] = ACTIONS(3650), - [anon_sym_For] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_FOR] = ACTIONS(3650), - [anon_sym_Function] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_FUNCTION] = ACTIONS(3650), - [anon_sym_If] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_IF] = ACTIONS(3650), - [anon_sym_Import] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_IMPORT] = ACTIONS(3650), - [anon_sym_Include] = ACTIONS(3650), - [anon_sym_include] = ACTIONS(3650), - [anon_sym_INCLUDE] = ACTIONS(3650), - [anon_sym_Interface] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_INTERFACE] = ACTIONS(3650), - [anon_sym_New] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_NEW] = ACTIONS(3650), - [anon_sym_Package] = ACTIONS(3650), - [anon_sym_package] = ACTIONS(3650), - [anon_sym_PACKAGE] = ACTIONS(3650), - [anon_sym_Private] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_PRIVATE] = ACTIONS(3650), - [anon_sym_Public] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_PUBLIC] = ACTIONS(3650), - [anon_sym_Remote] = ACTIONS(3650), - [anon_sym_remote] = ACTIONS(3650), - [anon_sym_REMOTE] = ACTIONS(3650), - [anon_sym_Return] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_RETURN] = ACTIONS(3650), - [anon_sym_Static] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_STATIC] = ACTIONS(3650), - [anon_sym_Switch] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_SWITCH] = ACTIONS(3650), - [anon_sym_Throw] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_THROW] = ACTIONS(3650), - [anon_sym_Try] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_TRY] = ACTIONS(3650), - [anon_sym_Var] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_VAR] = ACTIONS(3650), - [anon_sym_While] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_WHILE] = ACTIONS(3650), - [anon_sym_With] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_WITH] = ACTIONS(3650), - [sym_cf_comment] = ACTIONS(3652), - [sym__java_block_open] = ACTIONS(3652), - [sym__static_type_prefix] = ACTIONS(3652), - }, - [STATE(1171)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_Query] = ACTIONS(3646), - [anon_sym_query] = ACTIONS(3646), - [anon_sym_QUERY] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [aux_sym_unary_operator_token1] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3646), - [aux_sym_number_token2] = ACTIONS(3648), - [anon_sym_This] = ACTIONS(3646), - [anon_sym_this] = ACTIONS(3646), - [anon_sym_THIS] = ACTIONS(3646), - [anon_sym_Super] = ACTIONS(3646), - [anon_sym_super] = ACTIONS(3646), - [anon_sym_SUPER] = ACTIONS(3646), - [anon_sym_True] = ACTIONS(3646), - [anon_sym_true] = ACTIONS(3646), - [anon_sym_TRUE] = ACTIONS(3646), - [anon_sym_False] = ACTIONS(3646), - [anon_sym_false] = ACTIONS(3646), - [anon_sym_FALSE] = ACTIONS(3646), - [anon_sym_Null] = ACTIONS(3646), - [anon_sym_null] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_Undefined] = ACTIONS(3646), - [anon_sym_undefined] = ACTIONS(3646), - [anon_sym_UNDEFINED] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3646), - [sym_hash_empty] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_QueryExecute] = ACTIONS(3646), - [anon_sym_queryexecute] = ACTIONS(3646), - [anon_sym_QUERYEXECUTE] = ACTIONS(3646), - [anon_sym_queryExecute] = ACTIONS(3646), - [anon_sym_BQUOTE] = ACTIONS(3646), - [anon_sym_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(3648), - [anon_sym_Abstract] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_ABSTRACT] = ACTIONS(3646), - [anon_sym_Break] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_BREAK] = ACTIONS(3646), - [anon_sym_Component] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_COMPONENT] = ACTIONS(3646), - [anon_sym_Continue] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_CONTINUE] = ACTIONS(3646), - [anon_sym_Debugger] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_DEBUGGER] = ACTIONS(3646), - [anon_sym_Do] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_DO] = ACTIONS(3646), - [anon_sym_Final] = ACTIONS(3646), - [anon_sym_final] = ACTIONS(3646), - [anon_sym_FINAL] = ACTIONS(3646), - [anon_sym_For] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_FOR] = ACTIONS(3646), - [anon_sym_Function] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_FUNCTION] = ACTIONS(3646), - [anon_sym_If] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_IF] = ACTIONS(3646), - [anon_sym_Import] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_IMPORT] = ACTIONS(3646), - [anon_sym_Include] = ACTIONS(3646), - [anon_sym_include] = ACTIONS(3646), - [anon_sym_INCLUDE] = ACTIONS(3646), - [anon_sym_Interface] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_INTERFACE] = ACTIONS(3646), - [anon_sym_New] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_NEW] = ACTIONS(3646), - [anon_sym_Package] = ACTIONS(3646), - [anon_sym_package] = ACTIONS(3646), - [anon_sym_PACKAGE] = ACTIONS(3646), - [anon_sym_Private] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_PRIVATE] = ACTIONS(3646), - [anon_sym_Public] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_PUBLIC] = ACTIONS(3646), - [anon_sym_Remote] = ACTIONS(3646), - [anon_sym_remote] = ACTIONS(3646), - [anon_sym_REMOTE] = ACTIONS(3646), - [anon_sym_Return] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_RETURN] = ACTIONS(3646), - [anon_sym_Static] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_STATIC] = ACTIONS(3646), - [anon_sym_Switch] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_SWITCH] = ACTIONS(3646), - [anon_sym_Throw] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_THROW] = ACTIONS(3646), - [anon_sym_Try] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_TRY] = ACTIONS(3646), - [anon_sym_Var] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_VAR] = ACTIONS(3646), - [anon_sym_While] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_WHILE] = ACTIONS(3646), - [anon_sym_With] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_WITH] = ACTIONS(3646), - [sym_cf_comment] = ACTIONS(3648), - [sym__java_block_open] = ACTIONS(3648), - [sym__static_type_prefix] = ACTIONS(3648), - }, - [STATE(1172)] = { - [sym_empty_statement] = STATE(1270), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3516), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5298), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3367), - [sym_hash_expression] = STATE(3367), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3892), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1173)] = { - [sym_statement_block] = STATE(4861), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(481), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(4949), - [sym_tag_call_arguments] = STATE(4949), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(3641), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1224)] = { + [sym_statement_block] = STATE(765), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1225), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -217752,653 +224755,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1174)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3129), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4993), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2804), - [sym_hash_expression] = STATE(2804), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(3900), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(3902), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(3900), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1175)] = { - [sym_expression_statement] = STATE(416), - [sym_statement_block] = STATE(416), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3088), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4857), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2895), - [sym_hash_expression] = STATE(2895), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(3906), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1176)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3407), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4796), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2932), - [sym_hash_expression] = STATE(2932), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(3908), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(3910), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(3908), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1177)] = { - [sym_expression_statement] = STATE(3882), - [sym_statement_block] = STATE(3882), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(5049), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3061), - [sym_hash_expression] = STATE(3061), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(1588), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1178)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3268), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5178), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5178), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2994), - [sym_hash_expression] = STATE(2994), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1225)] = { + [sym_statement_block] = STATE(781), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -218417,387 +224887,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3920), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1179)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3218), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4991), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2791), - [sym_hash_expression] = STATE(2791), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(3930), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__automatic_semicolon] = ACTIONS(3928), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1180)] = { - [sym_expression_statement] = STATE(435), - [sym_statement_block] = STATE(435), - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3075), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_sequence_expression] = STATE(4849), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2792), - [sym_hash_expression] = STATE(2792), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3932), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [STATE(1226)] = { + [sym_statement_block] = STATE(784), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(3934), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1181)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3401), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5310), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5310), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(3071), - [sym_hash_expression] = STATE(3071), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1227)] = { + [sym_statement_block] = STATE(785), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -218816,121 +225151,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3936), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1182)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3259), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5291), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5291), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2993), - [sym_hash_expression] = STATE(2993), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1228)] = { + [sym_statement_block] = STATE(2566), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -218949,121 +225283,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3938), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1183)] = { - [sym_empty_statement] = STATE(1236), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3463), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3345), - [sym_hash_expression] = STATE(3345), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1229)] = { + [sym_statement_block] = STATE(797), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -219082,121 +225415,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3940), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1184)] = { - [sym_statement_block] = STATE(5010), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(481), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(4931), - [sym_tag_call_arguments] = STATE(4931), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(3641), + [STATE(1230)] = { + [sym_statement_block] = STATE(809), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -219237,9 +225569,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -219264,72 +225596,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1185)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3122), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5144), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5144), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2779), - [sym_hash_expression] = STATE(2779), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1231)] = { + [sym_statement_block] = STATE(3083), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1233), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -219348,121 +225679,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3942), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1186)] = { - [sym_empty_statement] = STATE(1261), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3410), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5087), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3288), - [sym_hash_expression] = STATE(3288), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1232)] = { + [sym_statement_block] = STATE(549), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -219481,121 +225811,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3944), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1187)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3220), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5108), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5108), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2781), - [sym_hash_expression] = STATE(2781), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1233)] = { + [sym_statement_block] = STATE(3118), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -219614,121 +225943,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3946), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1188)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3196), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5090), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5090), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2938), - [sym_hash_expression] = STATE(2938), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1234)] = { + [sym_statement_block] = STATE(3053), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -219747,121 +226075,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3948), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1189)] = { - [sym_empty_statement] = STATE(1240), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3527), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5099), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3289), - [sym_hash_expression] = STATE(3289), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1235)] = { + [sym_statement_block] = STATE(2862), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -219880,121 +226207,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3950), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1190)] = { - [sym_statement_block] = STATE(5004), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(481), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(4885), - [sym_tag_call_arguments] = STATE(4885), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(3641), + [STATE(1236)] = { + [sym_statement_block] = STATE(808), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -220035,9 +226361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -220062,338 +226388,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1191)] = { - [sym_empty_statement] = STATE(1244), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5069), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3152), - [sym_hash_expression] = STATE(3152), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3952), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1192)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3199), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5143), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5143), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2816), - [sym_hash_expression] = STATE(2816), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3954), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1193)] = { - [sym_empty_statement] = STATE(1265), - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3514), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5290), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3366), - [sym_hash_expression] = STATE(3366), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1237)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3658), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_RBRACK] = ACTIONS(4022), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -220412,121 +226471,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3956), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1194)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5130), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5130), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2829), - [sym_hash_expression] = STATE(2829), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1238)] = { + [sym_statement_block] = STATE(810), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -220545,121 +226603,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3958), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1195)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3231), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5136), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5136), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2830), - [sym_hash_expression] = STATE(2830), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1239)] = { + [sym_statement_block] = STATE(2564), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1285), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -220678,121 +226735,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3960), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1196)] = { - [sym_statement_block] = STATE(4958), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(481), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_arguments] = STATE(4778), - [sym_tag_call_arguments] = STATE(4778), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(3641), + [STATE(1240)] = { + [sym_statement_block] = STATE(814), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -220833,9 +226889,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -220860,72 +226916,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1197)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3403), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5156), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5156), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2882), - [sym_hash_expression] = STATE(2882), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1241)] = { + [sym_statement_block] = STATE(795), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -220944,121 +226999,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1198)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3080), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5244), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5244), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2890), - [sym_hash_expression] = STATE(2890), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1242)] = { + [sym_statement_block] = STATE(2903), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1244), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -221077,121 +227131,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3964), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1199)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3081), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5257), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5257), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2891), - [sym_hash_expression] = STATE(2891), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1243)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3542), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5235), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3218), + [sym_hash_expression] = STATE(3218), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4026), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -221210,121 +227263,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3966), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(4028), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1200)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5183), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5183), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2897), - [sym_hash_expression] = STATE(2897), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1244)] = { + [sym_statement_block] = STATE(2845), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -221343,121 +227395,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3968), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1201)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3106), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5233), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5233), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2901), - [sym_hash_expression] = STATE(2901), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1245)] = { + [sym_statement_block] = STATE(2859), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1248), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -221476,121 +227527,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3970), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1202)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3107), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5237), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5237), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2902), - [sym_hash_expression] = STATE(2902), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1246)] = { + [sym_statement_block] = STATE(799), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -221609,121 +227659,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3972), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1203)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3143), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5165), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5165), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2919), - [sym_hash_expression] = STATE(2919), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1247)] = { + [sym_statement_block] = STATE(567), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -221742,121 +227791,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3974), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1204)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3147), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5287), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5287), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2921), - [sym_hash_expression] = STATE(2921), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1248)] = { + [sym_statement_block] = STATE(2890), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -221875,121 +227923,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3976), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1205)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3148), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5074), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5074), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2922), - [sym_hash_expression] = STATE(2922), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1249)] = { + [sym_statement_block] = STATE(574), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -222008,121 +228055,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3978), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1206)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3192), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5238), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5238), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2936), - [sym_hash_expression] = STATE(2936), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1250)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3578), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5320), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3419), + [sym_hash_expression] = STATE(3419), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -222141,121 +228187,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3980), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(4032), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1207)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3194), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5294), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5294), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2937), - [sym_hash_expression] = STATE(2937), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1251)] = { + [sym_statement_block] = STATE(4129), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -222274,121 +228319,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3982), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1208)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_slice_expression] = STATE(5121), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5121), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2782), - [sym_hash_expression] = STATE(2782), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1252)] = { + [sym_statement_block] = STATE(2573), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1257), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -222407,120 +228451,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(3984), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1209)] = { - [sym_statement_block] = STATE(802), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1253)] = { + [sym_statement_block] = STATE(568), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -222561,9 +228605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -222588,71 +228632,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1210)] = { - [sym_statement_block] = STATE(576), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1254)] = { + [sym_statement_block] = STATE(800), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -222693,9 +228737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -222718,205 +228762,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(517), [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1211)] = { - [sym_statement_block] = STATE(539), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1213), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1212)] = { - [sym_statement_block] = STATE(4111), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1255)] = { + [sym_statement_block] = STATE(564), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -222957,9 +228869,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -222984,335 +228896,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1213)] = { - [sym_statement_block] = STATE(476), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1214)] = { - [sym_statement_block] = STATE(516), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1216), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1215)] = { - [sym_statement_block] = STATE(2494), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1256)] = { + [sym_statement_block] = STATE(562), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -223331,120 +228979,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1216)] = { - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1257)] = { + [sym_statement_block] = STATE(2560), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -223463,120 +229111,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1217)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3475), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5264), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3098), - [sym_hash_expression] = STATE(3098), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1258)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3520), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5120), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3192), + [sym_hash_expression] = STATE(3192), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4002), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4034), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -223595,120 +229243,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4004), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4036), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1218)] = { - [sym_statement_block] = STATE(4115), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), + [STATE(1259)] = { + [sym_statement_block] = STATE(4143), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -223749,9 +229397,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -223776,203 +229424,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1219)] = { - [sym_statement_block] = STATE(3338), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1220), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1220)] = { - [sym_statement_block] = STATE(3202), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1260)] = { + [sym_statement_block] = STATE(531), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -223991,120 +229507,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1221)] = { - [sym_statement_block] = STATE(3211), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1222), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [STATE(1261)] = { + [sym_statement_block] = STATE(548), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1272), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -224123,120 +229639,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1222)] = { - [sym_statement_block] = STATE(3214), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1262)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3592), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5222), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3426), + [sym_hash_expression] = STATE(3426), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4038), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -224255,120 +229771,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [sym_hash_empty] = ACTIONS(4040), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1223)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3589), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_RBRACK] = ACTIONS(4010), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [STATE(1263)] = { + [sym_statement_block] = STATE(2576), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1228), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -224387,120 +229903,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1224)] = { - [sym_statement_block] = STATE(788), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1225), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1264)] = { + [sym_statement_block] = STATE(569), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -224519,120 +230035,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1225)] = { - [sym_statement_block] = STATE(744), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1265)] = { + [sym_statement_block] = STATE(570), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -224651,120 +230167,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1226)] = { - [sym_statement_block] = STATE(756), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1266)] = { + [sym_statement_block] = STATE(576), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -224783,120 +230299,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1227)] = { - [sym_statement_block] = STATE(762), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1267)] = { + [sym_statement_block] = STATE(578), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -224915,120 +230431,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1228)] = { - [sym_statement_block] = STATE(808), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1268)] = { + [sym_statement_block] = STATE(579), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -225069,9 +230585,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -225096,71 +230612,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1229)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3454), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5169), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3257), - [sym_hash_expression] = STATE(3257), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1269)] = { + [sym_statement_block] = STATE(796), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -225179,120 +230695,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4016), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1230)] = { - [sym_statement_block] = STATE(2862), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1231), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1270)] = { + [sym_statement_block] = STATE(2567), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -225311,120 +230827,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1231)] = { - [sym_statement_block] = STATE(2877), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1271)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3472), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5207), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3238), + [sym_hash_expression] = STATE(3238), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4042), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -225443,120 +230959,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [sym_hash_empty] = ACTIONS(4044), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1232)] = { - [sym_statement_block] = STATE(2881), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1233), - [sym_identifier] = ACTIONS(3988), + [STATE(1272)] = { + [sym_statement_block] = STATE(479), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -225575,120 +231091,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1233)] = { - [sym_statement_block] = STATE(2884), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1273)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3693), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_COLON] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_RBRACK] = ACTIONS(4048), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -225707,120 +231223,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1234)] = { - [sym_statement_block] = STATE(806), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1274)] = { + [sym_statement_block] = STATE(4172), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -225861,9 +231377,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -225888,71 +231404,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1235)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3446), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5266), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3297), - [sym_hash_expression] = STATE(3297), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1275)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3541), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5154), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3223), + [sym_hash_expression] = STATE(3223), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4020), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -225971,120 +231487,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4022), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4052), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1236)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3526), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5308), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3078), - [sym_hash_expression] = STATE(3078), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1276)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3525), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5164), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3220), + [sym_hash_expression] = STATE(3220), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4024), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -226103,120 +231619,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4026), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4056), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1237)] = { - [sym_statement_block] = STATE(796), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1277)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3533), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5170), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3221), + [sym_hash_expression] = STATE(3221), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4058), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -226235,120 +231751,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4060), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1238)] = { - [sym_statement_block] = STATE(797), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1278)] = { + [sym_statement_block] = STATE(805), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -226389,9 +231905,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -226416,71 +231932,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1239)] = { - [sym_statement_block] = STATE(795), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1279)] = { + [sym_statement_block] = STATE(4106), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -226521,9 +232037,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -226548,203 +232064,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1240)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3459), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5194), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3260), - [sym_hash_expression] = STATE(3260), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4028), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4030), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1241)] = { - [sym_statement_block] = STATE(4118), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), + [STATE(1280)] = { + [sym_statement_block] = STATE(4183), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -226785,9 +232169,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -226812,71 +232196,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1242)] = { - [sym_statement_block] = STATE(4119), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), + [STATE(1281)] = { + [sym_statement_block] = STATE(4187), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -226917,9 +232301,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -226944,71 +232328,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1243)] = { - [sym_statement_block] = STATE(2528), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1279), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [STATE(1282)] = { + [sym_statement_block] = STATE(3344), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1217), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -227027,120 +232411,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1244)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5278), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3340), - [sym_hash_expression] = STATE(3340), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1283)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3545), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5200), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3224), + [sym_hash_expression] = STATE(3224), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4032), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4062), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -227159,120 +232543,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4034), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4064), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1245)] = { - [sym_statement_block] = STATE(2482), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1284)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3460), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5316), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3227), + [sym_hash_expression] = STATE(3227), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4066), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4068), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1285)] = { + [sym_statement_block] = STATE(2601), + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4004), + [anon_sym_query] = ACTIONS(4004), + [anon_sym_QUERY] = ACTIONS(4004), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -227291,120 +232807,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(4004), + [anon_sym_set] = ACTIONS(4004), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_QueryExecute] = ACTIONS(4006), + [anon_sym_queryexecute] = ACTIONS(4006), + [anon_sym_QUERYEXECUTE] = ACTIONS(4006), + [anon_sym_queryExecute] = ACTIONS(4006), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(4004), + [anon_sym_abstract] = ACTIONS(4004), + [anon_sym_ABSTRACT] = ACTIONS(4004), + [anon_sym_Component] = ACTIONS(4004), + [anon_sym_component] = ACTIONS(4004), + [anon_sym_COMPONENT] = ACTIONS(4004), + [anon_sym_Debugger] = ACTIONS(4004), + [anon_sym_debugger] = ACTIONS(4004), + [anon_sym_DEBUGGER] = ACTIONS(4004), + [anon_sym_Final] = ACTIONS(4004), + [anon_sym_final] = ACTIONS(4004), + [anon_sym_FINAL] = ACTIONS(4004), + [anon_sym_Function] = ACTIONS(4008), + [anon_sym_function] = ACTIONS(4008), + [anon_sym_FUNCTION] = ACTIONS(4008), + [anon_sym_Include] = ACTIONS(4004), + [anon_sym_include] = ACTIONS(4004), + [anon_sym_INCLUDE] = ACTIONS(4004), + [anon_sym_New] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_NEW] = ACTIONS(4010), + [anon_sym_Package] = ACTIONS(4004), + [anon_sym_package] = ACTIONS(4004), + [anon_sym_PACKAGE] = ACTIONS(4004), + [anon_sym_Private] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_PRIVATE] = ACTIONS(4004), + [anon_sym_Public] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_PUBLIC] = ACTIONS(4004), + [anon_sym_Remote] = ACTIONS(4004), + [anon_sym_remote] = ACTIONS(4004), + [anon_sym_REMOTE] = ACTIONS(4004), + [anon_sym_Static] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_STATIC] = ACTIONS(4004), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1246)] = { - [sym_statement_block] = STATE(798), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1286)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3580), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5343), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3422), + [sym_hash_expression] = STATE(3422), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -227423,120 +232939,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4072), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1247)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3660), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1287)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3624), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5231), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3410), + [sym_hash_expression] = STATE(3410), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_COLON] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_RBRACK] = ACTIONS(4038), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -227555,120 +233070,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(4074), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1248)] = { - [sym_statement_block] = STATE(799), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1288)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3682), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3612), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(458), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -227687,120 +233201,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1249)] = { - [sym_statement_block] = STATE(2461), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1245), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [STATE(1289)] = { + [sym_statement_block] = STATE(2525), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2646), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1290)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3476), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5308), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3191), + [sym_hash_expression] = STATE(3191), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -227819,120 +233463,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [sym_hash_empty] = ACTIONS(4096), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1250)] = { - [sym_statement_block] = STATE(2543), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [STATE(1291)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5226), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3428), + [sym_hash_expression] = STATE(3428), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -227951,120 +233594,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [sym_hash_empty] = ACTIONS(4098), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1251)] = { - [sym_statement_block] = STATE(803), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1292)] = { + [sym_statement_block] = STATE(3057), + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2955), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1293)] = { + [sym_statement_block] = STATE(588), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(561), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -228105,9 +233878,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -228132,71 +233905,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1252)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3498), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5243), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3269), - [sym_hash_expression] = STATE(3269), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1294)] = { + [sym_statement_block] = STATE(3335), + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3244), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1295)] = { + [sym_statement_block] = STATE(3080), + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1296)] = { + [sym_statement_block] = STATE(3108), + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2841), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1297)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3597), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5259), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3430), + [sym_hash_expression] = STATE(3430), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4040), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -228215,120 +234380,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4042), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4200), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1253)] = { - [sym_statement_block] = STATE(4122), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1298)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3559), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5122), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3343), + [sym_hash_expression] = STATE(3343), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -228347,120 +234511,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4202), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1254)] = { - [sym_statement_block] = STATE(4123), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1299)] = { + [sym_statement_block] = STATE(776), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(748), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1300)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_function_annotation] = STATE(2107), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(559), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -228501,9 +234795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -228528,71 +234822,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1255)] = { - [sym_statement_block] = STATE(4125), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1301)] = { + [sym_statement_block] = STATE(3319), + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3237), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1302)] = { + [sym_statement_block] = STATE(2571), + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3736), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -228611,120 +235035,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1256)] = { - [sym_statement_block] = STATE(4134), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1303)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3465), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5252), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3347), + [sym_hash_expression] = STATE(3347), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -228743,120 +235166,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4268), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1257)] = { - [sym_statement_block] = STATE(4136), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1304)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3760), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_RBRACK] = ACTIONS(4270), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -228875,120 +235297,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1258)] = { - [sym_statement_block] = STATE(2548), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1305)] = { + [sym_statement_block] = STATE(2529), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1306)] = { + [sym_statement_block] = STATE(544), + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(497), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1307)] = { + [sym_parenthesized_expression] = STATE(2415), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_assignment_expression] = STATE(774), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3705), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3705), + [sym_undefined] = STATE(3705), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [aux_sym_function_expression_repeat1] = STATE(1307), + [sym_identifier] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym_let] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4334), + [anon_sym_Query] = ACTIONS(4331), + [anon_sym_query] = ACTIONS(4331), + [anon_sym_QUERY] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4337), + [anon_sym_SLASH] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_TILDE] = ACTIONS(4343), + [aux_sym_unary_operator_token1] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4346), + [anon_sym_DASH_DASH] = ACTIONS(4346), + [anon_sym_DQUOTE] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4352), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4355), + [aux_sym_number_token2] = ACTIONS(4358), + [anon_sym_This] = ACTIONS(4361), + [anon_sym_this] = ACTIONS(4361), + [anon_sym_THIS] = ACTIONS(4361), + [anon_sym_Super] = ACTIONS(4364), + [anon_sym_super] = ACTIONS(4364), + [anon_sym_SUPER] = ACTIONS(4364), + [anon_sym_True] = ACTIONS(4367), + [anon_sym_true] = ACTIONS(4367), + [anon_sym_TRUE] = ACTIONS(4367), + [anon_sym_False] = ACTIONS(4370), + [anon_sym_false] = ACTIONS(4370), + [anon_sym_FALSE] = ACTIONS(4370), + [anon_sym_Null] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4373), + [anon_sym_NULL] = ACTIONS(4373), + [anon_sym_Undefined] = ACTIONS(4376), + [anon_sym_undefined] = ACTIONS(4376), + [anon_sym_UNDEFINED] = ACTIONS(4376), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_POUND] = ACTIONS(4379), + [sym_hash_empty] = ACTIONS(4382), + [anon_sym_export] = ACTIONS(4331), + [anon_sym_QueryExecute] = ACTIONS(4385), + [anon_sym_queryexecute] = ACTIONS(4385), + [anon_sym_QUERYEXECUTE] = ACTIONS(4385), + [anon_sym_queryExecute] = ACTIONS(4385), + [anon_sym_BQUOTE] = ACTIONS(4388), + [anon_sym_Abstract] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_ABSTRACT] = ACTIONS(4331), + [anon_sym_Component] = ACTIONS(4331), + [anon_sym_component] = ACTIONS(4331), + [anon_sym_COMPONENT] = ACTIONS(4331), + [anon_sym_Debugger] = ACTIONS(4331), + [anon_sym_debugger] = ACTIONS(4331), + [anon_sym_DEBUGGER] = ACTIONS(4331), + [anon_sym_Final] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_FINAL] = ACTIONS(4331), + [anon_sym_Function] = ACTIONS(4391), + [anon_sym_function] = ACTIONS(4391), + [anon_sym_FUNCTION] = ACTIONS(4391), + [anon_sym_Include] = ACTIONS(4331), + [anon_sym_include] = ACTIONS(4331), + [anon_sym_INCLUDE] = ACTIONS(4331), + [anon_sym_New] = ACTIONS(4394), + [anon_sym_new] = ACTIONS(4394), + [anon_sym_NEW] = ACTIONS(4394), + [anon_sym_Package] = ACTIONS(4331), + [anon_sym_package] = ACTIONS(4331), + [anon_sym_PACKAGE] = ACTIONS(4331), + [anon_sym_Private] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_PRIVATE] = ACTIONS(4331), + [anon_sym_Public] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_PUBLIC] = ACTIONS(4331), + [anon_sym_Remote] = ACTIONS(4331), + [anon_sym_remote] = ACTIONS(4331), + [anon_sym_REMOTE] = ACTIONS(4331), + [anon_sym_Static] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_STATIC] = ACTIONS(4331), + [sym__java_block_open] = ACTIONS(4397), + [sym__static_type_prefix] = ACTIONS(4400), + }, + [STATE(1308)] = { + [sym_statement_block] = STATE(2581), + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3737), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -229007,120 +235821,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1259)] = { - [sym_statement_block] = STATE(804), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1309)] = { + [sym_statement_block] = STATE(4218), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(561), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -229161,9 +235974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -229188,71 +236001,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1260)] = { - [sym_statement_block] = STATE(2490), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1258), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [STATE(1310)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3519), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5351), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3401), + [sym_hash_expression] = STATE(3401), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -229271,120 +236083,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [sym_hash_empty] = ACTIONS(4403), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1261)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3563), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5306), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3241), - [sym_hash_expression] = STATE(3241), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1311)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3829), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4044), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_RBRACK] = ACTIONS(4405), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -229403,120 +236214,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4046), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1262)] = { - [sym_statement_block] = STATE(2947), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1263), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [STATE(1312)] = { + [sym_statement_block] = STATE(2532), + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(2910), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1313)] = { + [sym_statement_block] = STATE(3097), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2857), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1314)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3862), + [sym_primary_expression] = STATE(3385), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2403), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3475), + [sym_regex] = STATE(2492), + [sym_number] = STATE(3159), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(3159), + [sym_false] = STATE(3159), + [sym_null] = STATE(3475), + [sym_undefined] = STATE(2457), + [sym__tag_call_value] = STATE(4723), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2922), + [sym_hash_expression] = STATE(2922), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4461), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4467), + [aux_sym_number_token2] = ACTIONS(4469), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(4471), + [anon_sym_true] = ACTIONS(4471), + [anon_sym_TRUE] = ACTIONS(4471), + [anon_sym_False] = ACTIONS(4473), + [anon_sym_false] = ACTIONS(4473), + [anon_sym_FALSE] = ACTIONS(4473), + [anon_sym_Null] = ACTIONS(4475), + [anon_sym_null] = ACTIONS(4475), + [anon_sym_NULL] = ACTIONS(4475), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(4477), + [sym_hash_empty] = ACTIONS(4479), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1315)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3554), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5293), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3229), + [sym_hash_expression] = STATE(3229), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -229535,120 +236738,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [sym_hash_empty] = ACTIONS(4483), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1263)] = { - [sym_statement_block] = STATE(2995), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1316)] = { + [sym_variable_declarator] = STATE(4793), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -229667,120 +236869,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_FINAL] = ACTIONS(416), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1264)] = { - [sym_statement_block] = STATE(2998), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [STATE(1317)] = { + [sym_statement_block] = STATE(2882), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(3090), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1318)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3587), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5147), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3453), + [sym_hash_expression] = STATE(3453), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -229799,120 +237131,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [sym_hash_empty] = ACTIONS(4487), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1265)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3537), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5184), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3234), - [sym_hash_expression] = STATE(3234), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1319)] = { + [sym_variable_declarator] = STATE(4509), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(3973), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2148), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(3973), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4489), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4050), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4491), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_Query] = ACTIONS(4491), + [anon_sym_query] = ACTIONS(4491), + [anon_sym_QUERY] = ACTIONS(4491), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -229931,120 +237262,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4052), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4491), + [anon_sym_QueryExecute] = ACTIONS(4495), + [anon_sym_queryexecute] = ACTIONS(4495), + [anon_sym_QUERYEXECUTE] = ACTIONS(4495), + [anon_sym_queryExecute] = ACTIONS(4495), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_ABSTRACT] = ACTIONS(4491), + [anon_sym_Component] = ACTIONS(4491), + [anon_sym_component] = ACTIONS(4491), + [anon_sym_COMPONENT] = ACTIONS(4491), + [anon_sym_Debugger] = ACTIONS(4491), + [anon_sym_debugger] = ACTIONS(4491), + [anon_sym_DEBUGGER] = ACTIONS(4491), + [anon_sym_Final] = ACTIONS(4497), + [anon_sym_final] = ACTIONS(4497), + [anon_sym_FINAL] = ACTIONS(4497), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4491), + [anon_sym_include] = ACTIONS(4491), + [anon_sym_INCLUDE] = ACTIONS(4491), + [anon_sym_New] = ACTIONS(4499), + [anon_sym_new] = ACTIONS(4499), + [anon_sym_NEW] = ACTIONS(4499), + [anon_sym_Package] = ACTIONS(4491), + [anon_sym_package] = ACTIONS(4491), + [anon_sym_PACKAGE] = ACTIONS(4491), + [anon_sym_Private] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_PRIVATE] = ACTIONS(4491), + [anon_sym_Public] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_PUBLIC] = ACTIONS(4491), + [anon_sym_Remote] = ACTIONS(4491), + [anon_sym_remote] = ACTIONS(4491), + [anon_sym_REMOTE] = ACTIONS(4491), + [anon_sym_Static] = ACTIONS(4491), + [anon_sym_static] = ACTIONS(4491), + [anon_sym_STATIC] = ACTIONS(4491), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1266)] = { - [sym_statement_block] = STATE(563), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), + [STATE(1320)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3862), + [sym_primary_expression] = STATE(3385), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2370), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2987), + [sym_regex] = STATE(2492), + [sym_number] = STATE(3313), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(3313), + [sym_false] = STATE(3313), + [sym_null] = STATE(2987), + [sym_undefined] = STATE(2457), + [sym__tag_call_value] = STATE(4723), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2922), + [sym_hash_expression] = STATE(2922), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4501), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4467), + [aux_sym_number_token2] = ACTIONS(4469), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(4471), + [anon_sym_true] = ACTIONS(4471), + [anon_sym_TRUE] = ACTIONS(4471), + [anon_sym_False] = ACTIONS(4473), + [anon_sym_false] = ACTIONS(4473), + [anon_sym_FALSE] = ACTIONS(4473), + [anon_sym_Null] = ACTIONS(4475), + [anon_sym_null] = ACTIONS(4475), + [anon_sym_NULL] = ACTIONS(4475), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(4477), + [sym_hash_empty] = ACTIONS(4479), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1321)] = { + [sym_statement_block] = STATE(847), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(561), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -230085,9 +237546,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -230112,71 +237573,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1267)] = { - [sym_statement_block] = STATE(3000), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1322)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3640), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5176), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3458), + [sym_hash_expression] = STATE(3458), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4503), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1323)] = { + [sym_statement_block] = STATE(2532), + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3262), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1324)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3743), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2808), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1325)] = { + [sym_variable_declarator] = STATE(4560), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -230195,120 +238048,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_FINAL] = ACTIONS(4519), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1268)] = { - [sym_statement_block] = STATE(566), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1326)] = { + [sym_statement_block] = STATE(3399), + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3294), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1327)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3468), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5159), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3349), + [sym_hash_expression] = STATE(3349), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -230327,120 +238310,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4521), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1269)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3424), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5223), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3245), - [sym_hash_expression] = STATE(3245), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4054), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1328)] = { + [sym_statement_block] = STATE(2529), + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(2904), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1329)] = { + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3649), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -230459,120 +238572,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4056), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1270)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3429), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5229), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3249), - [sym_hash_expression] = STATE(3249), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1330)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3537), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5127), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3320), + [sym_hash_expression] = STATE(3320), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -230591,120 +238703,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4060), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4535), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1271)] = { - [sym_statement_block] = STATE(568), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1331)] = { + [sym_variable_declarator] = STATE(4566), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -230723,120 +238834,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_FINAL] = ACTIONS(416), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1272)] = { - [sym_statement_block] = STATE(569), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1332)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3470), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5352), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3366), + [sym_hash_expression] = STATE(3366), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -230855,120 +238965,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4537), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1273)] = { - [sym_statement_block] = STATE(580), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1333)] = { + [sym_statement_block] = STATE(551), + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(478), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1334)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3553), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5248), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3412), + [sym_hash_expression] = STATE(3412), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -230987,120 +239227,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4539), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1274)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3442), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5253), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3254), - [sym_hash_expression] = STATE(3254), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1335)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3653), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3486), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2472), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(4062), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(4541), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -231119,120 +239358,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4064), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1275)] = { - [sym_statement_block] = STATE(571), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1336)] = { + [sym_statement_block] = STATE(2571), + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3650), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -231251,120 +239489,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1276)] = { - [sym_statement_block] = STATE(572), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1337)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3532), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5146), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3331), + [sym_hash_expression] = STATE(3331), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -231383,120 +239620,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4543), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1277)] = { - [sym_statement_block] = STATE(574), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1338)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3691), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3560), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(675), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(4545), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -231515,120 +239751,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1278)] = { - [sym_statement_block] = STATE(575), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1339)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3464), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5161), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3346), + [sym_hash_expression] = STATE(3346), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -231647,120 +239882,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4547), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1279)] = { - [sym_statement_block] = STATE(2508), - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(3992), - [anon_sym_query] = ACTIONS(3992), - [anon_sym_QUERY] = ACTIONS(3992), + [STATE(1340)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5137), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3415), + [sym_hash_expression] = STATE(3415), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -231779,120 +240013,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3992), - [anon_sym_set] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_QueryExecute] = ACTIONS(3994), - [anon_sym_queryexecute] = ACTIONS(3994), - [anon_sym_QUERYEXECUTE] = ACTIONS(3994), - [anon_sym_queryExecute] = ACTIONS(3994), + [sym_hash_empty] = ACTIONS(4549), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3992), - [anon_sym_abstract] = ACTIONS(3992), - [anon_sym_ABSTRACT] = ACTIONS(3992), - [anon_sym_Component] = ACTIONS(3992), - [anon_sym_component] = ACTIONS(3992), - [anon_sym_COMPONENT] = ACTIONS(3992), - [anon_sym_Debugger] = ACTIONS(3992), - [anon_sym_debugger] = ACTIONS(3992), - [anon_sym_DEBUGGER] = ACTIONS(3992), - [anon_sym_Final] = ACTIONS(3992), - [anon_sym_final] = ACTIONS(3992), - [anon_sym_FINAL] = ACTIONS(3992), - [anon_sym_Function] = ACTIONS(3996), - [anon_sym_function] = ACTIONS(3996), - [anon_sym_FUNCTION] = ACTIONS(3996), - [anon_sym_Include] = ACTIONS(3992), - [anon_sym_include] = ACTIONS(3992), - [anon_sym_INCLUDE] = ACTIONS(3992), - [anon_sym_New] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_NEW] = ACTIONS(3998), - [anon_sym_Package] = ACTIONS(3992), - [anon_sym_package] = ACTIONS(3992), - [anon_sym_PACKAGE] = ACTIONS(3992), - [anon_sym_Private] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_PRIVATE] = ACTIONS(3992), - [anon_sym_Public] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_PUBLIC] = ACTIONS(3992), - [anon_sym_Remote] = ACTIONS(3992), - [anon_sym_remote] = ACTIONS(3992), - [anon_sym_REMOTE] = ACTIONS(3992), - [anon_sym_Static] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_STATIC] = ACTIONS(3992), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1280)] = { - [sym_statement_block] = STATE(4120), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1341)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3550), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5232), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3411), + [sym_hash_expression] = STATE(3411), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -231911,250 +240144,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4551), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1281)] = { - [sym_statement_block] = STATE(2980), - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3064), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4068), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1282)] = { - [sym_statement_block] = STATE(604), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(554), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1342)] = { + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3784), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -232173,512 +240275,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1283)] = { - [sym_statement_block] = STATE(3264), - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3252), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1284)] = { - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3291), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4160), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1285)] = { - [sym_parenthesized_expression] = STATE(2387), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_assignment_expression] = STATE(726), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3631), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3631), - [sym_undefined] = STATE(3631), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [aux_sym_function_expression_repeat1] = STATE(1285), - [sym_identifier] = ACTIONS(4174), - [anon_sym_LBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4180), - [anon_sym_let] = ACTIONS(4183), - [anon_sym_LBRACK] = ACTIONS(4186), - [anon_sym_Query] = ACTIONS(4183), - [anon_sym_query] = ACTIONS(4183), - [anon_sym_QUERY] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_SLASH] = ACTIONS(4192), - [anon_sym_BANG] = ACTIONS(4195), - [anon_sym_TILDE] = ACTIONS(4195), - [aux_sym_unary_operator_token1] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4201), - [anon_sym_SQUOTE] = ACTIONS(4204), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4207), - [aux_sym_number_token2] = ACTIONS(4210), - [anon_sym_This] = ACTIONS(4213), - [anon_sym_this] = ACTIONS(4213), - [anon_sym_THIS] = ACTIONS(4213), - [anon_sym_Super] = ACTIONS(4216), - [anon_sym_super] = ACTIONS(4216), - [anon_sym_SUPER] = ACTIONS(4216), - [anon_sym_True] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4219), - [anon_sym_TRUE] = ACTIONS(4219), - [anon_sym_False] = ACTIONS(4222), - [anon_sym_false] = ACTIONS(4222), - [anon_sym_FALSE] = ACTIONS(4222), - [anon_sym_Null] = ACTIONS(4225), - [anon_sym_null] = ACTIONS(4225), - [anon_sym_NULL] = ACTIONS(4225), - [anon_sym_Undefined] = ACTIONS(4228), - [anon_sym_undefined] = ACTIONS(4228), - [anon_sym_UNDEFINED] = ACTIONS(4228), - [anon_sym_get] = ACTIONS(4183), - [anon_sym_set] = ACTIONS(4183), - [anon_sym_POUND] = ACTIONS(4231), - [sym_hash_empty] = ACTIONS(4234), - [anon_sym_export] = ACTIONS(4183), - [anon_sym_QueryExecute] = ACTIONS(4237), - [anon_sym_queryexecute] = ACTIONS(4237), - [anon_sym_QUERYEXECUTE] = ACTIONS(4237), - [anon_sym_queryExecute] = ACTIONS(4237), - [anon_sym_BQUOTE] = ACTIONS(4240), - [anon_sym_Abstract] = ACTIONS(4183), - [anon_sym_abstract] = ACTIONS(4183), - [anon_sym_ABSTRACT] = ACTIONS(4183), - [anon_sym_Component] = ACTIONS(4183), - [anon_sym_component] = ACTIONS(4183), - [anon_sym_COMPONENT] = ACTIONS(4183), - [anon_sym_Debugger] = ACTIONS(4183), - [anon_sym_debugger] = ACTIONS(4183), - [anon_sym_DEBUGGER] = ACTIONS(4183), - [anon_sym_Final] = ACTIONS(4183), - [anon_sym_final] = ACTIONS(4183), - [anon_sym_FINAL] = ACTIONS(4183), - [anon_sym_Function] = ACTIONS(4243), - [anon_sym_function] = ACTIONS(4243), - [anon_sym_FUNCTION] = ACTIONS(4243), - [anon_sym_Include] = ACTIONS(4183), - [anon_sym_include] = ACTIONS(4183), - [anon_sym_INCLUDE] = ACTIONS(4183), - [anon_sym_New] = ACTIONS(4246), - [anon_sym_new] = ACTIONS(4246), - [anon_sym_NEW] = ACTIONS(4246), - [anon_sym_Package] = ACTIONS(4183), - [anon_sym_package] = ACTIONS(4183), - [anon_sym_PACKAGE] = ACTIONS(4183), - [anon_sym_Private] = ACTIONS(4183), - [anon_sym_private] = ACTIONS(4183), - [anon_sym_PRIVATE] = ACTIONS(4183), - [anon_sym_Public] = ACTIONS(4183), - [anon_sym_public] = ACTIONS(4183), - [anon_sym_PUBLIC] = ACTIONS(4183), - [anon_sym_Remote] = ACTIONS(4183), - [anon_sym_remote] = ACTIONS(4183), - [anon_sym_REMOTE] = ACTIONS(4183), - [anon_sym_Static] = ACTIONS(4183), - [anon_sym_static] = ACTIONS(4183), - [anon_sym_STATIC] = ACTIONS(4183), - [sym__java_block_open] = ACTIONS(4249), - [sym__static_type_prefix] = ACTIONS(4252), - }, - [STATE(1286)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_function_annotation] = STATE(2110), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(557), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1343)] = { + [sym_statement_block] = STATE(2571), + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3785), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -232697,250 +240406,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1287)] = { - [sym_statement_block] = STATE(3182), - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3346), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1288)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3722), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_RBRACK] = ACTIONS(4255), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1344)] = { + [sym_statement_block] = STATE(2581), + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3786), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -232959,119 +240537,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1289)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5092), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3150), - [sym_hash_expression] = STATE(3150), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1345)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3572), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5282), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3437), + [sym_hash_expression] = STATE(3437), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -233090,250 +240668,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4257), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4565), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1290)] = { - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4160), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1291)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3657), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3663), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(3339), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1346)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3490), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5280), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3292), + [sym_hash_expression] = STATE(3292), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4273), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -233352,119 +240799,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [sym_hash_empty] = ACTIONS(4567), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1292)] = { - [sym_statement_block] = STATE(904), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(554), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1347)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3489), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5363), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(3271), + [sym_hash_expression] = STATE(3271), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -233483,119 +240930,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4569), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1293)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3523), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5157), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3153), - [sym_hash_expression] = STATE(3153), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1348)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3573), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5265), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3416), + [sym_hash_expression] = STATE(3416), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -233614,119 +241061,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4275), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4571), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1294)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3437), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5131), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3112), - [sym_hash_expression] = STATE(3112), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1349)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3598), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5190), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3337), + [sym_hash_expression] = STATE(3337), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -233745,119 +241192,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4277), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4573), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1295)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3628), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3689), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2948), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1350)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3502), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5288), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3298), + [sym_hash_expression] = STATE(3298), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4279), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -233876,119 +241323,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [sym_hash_empty] = ACTIONS(4575), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1296)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3519), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5077), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3188), - [sym_hash_expression] = STATE(3188), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1351)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3600), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5301), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3431), + [sym_hash_expression] = STATE(3431), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -234007,245 +241454,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4281), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4577), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1297)] = { - [sym_statement_block] = STATE(2870), - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(2924), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [STATE(1352)] = { + [sym_statement_block] = STATE(756), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(764), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), }, - [STATE(1298)] = { - [sym_statement_block] = STATE(2556), - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2601), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4160), + [STATE(1353)] = { + [sym_statement_block] = STATE(2529), + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3459), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4080), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -234269,119 +241716,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1299)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3675), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3629), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(758), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1354)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3702), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3487), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2597), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -234400,250 +241847,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1300)] = { - [sym_statement_block] = STATE(722), - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(757), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1301)] = { - [sym_statement_block] = STATE(623), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(554), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1355)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3510), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5296), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3299), + [sym_hash_expression] = STATE(3299), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -234662,119 +241978,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [sym_hash_empty] = ACTIONS(4581), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1302)] = { - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2742), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1356)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3738), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3487), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2597), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -234793,119 +242109,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1303)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3539), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5242), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3224), - [sym_hash_expression] = STATE(3224), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1357)] = { + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3386), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -234924,119 +242240,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4399), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1304)] = { - [sym_statement_block] = STATE(2454), - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3649), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1358)] = { + [sym_statement_block] = STATE(2571), + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3387), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -235055,119 +242371,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1305)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3460), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5206), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3347), - [sym_hash_expression] = STATE(3347), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1359)] = { + [sym_statement_block] = STATE(2581), + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -235186,119 +242502,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4413), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1306)] = { - [sym_statement_block] = STATE(2458), - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3653), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1360)] = { + [sym_statement_block] = STATE(2581), + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3388), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -235317,250 +242633,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1307)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3803), - [sym_primary_expression] = STATE(3370), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2306), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2879), - [sym_regex] = STATE(2575), - [sym_number] = STATE(3392), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(3392), - [sym_false] = STATE(3392), - [sym_null] = STATE(2879), - [sym_undefined] = STATE(2433), - [sym__tag_call_value] = STATE(4622), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(3005), - [sym_hash_expression] = STATE(3005), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4415), + [STATE(1361)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3513), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3314), + [sym_hash_expression] = STATE(3314), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(4417), - [anon_sym_SQUOTE] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4421), - [aux_sym_number_token2] = ACTIONS(4423), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), [anon_sym_Super] = ACTIONS(451), [anon_sym_super] = ACTIONS(451), [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4425), - [anon_sym_TRUE] = ACTIONS(4425), - [anon_sym_False] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_FALSE] = ACTIONS(4427), - [anon_sym_Null] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_NULL] = ACTIONS(4429), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(4431), - [sym_hash_empty] = ACTIONS(4433), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4609), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1308)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3518), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5115), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3227), - [sym_hash_expression] = STATE(3227), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1362)] = { + [sym_statement_block] = STATE(2581), + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3654), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1363)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3491), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5277), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3367), + [sym_hash_expression] = STATE(3367), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -235579,119 +243026,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4437), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1309)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3584), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3646), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2863), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1364)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3695), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3522), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2712), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -235710,250 +243157,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1310)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3803), - [sym_primary_expression] = STATE(3370), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2380), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3549), - [sym_regex] = STATE(2575), - [sym_number] = STATE(3299), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(3299), - [sym_false] = STATE(3299), - [sym_null] = STATE(3549), - [sym_undefined] = STATE(2433), - [sym__tag_call_value] = STATE(4622), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(3005), - [sym_hash_expression] = STATE(3005), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4441), + [STATE(1365)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3604), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5160), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3439), + [sym_hash_expression] = STATE(3439), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(4417), - [anon_sym_SQUOTE] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4421), - [aux_sym_number_token2] = ACTIONS(4423), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), [anon_sym_Super] = ACTIONS(451), [anon_sym_super] = ACTIONS(451), [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4425), - [anon_sym_TRUE] = ACTIONS(4425), - [anon_sym_False] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_FALSE] = ACTIONS(4427), - [anon_sym_Null] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_NULL] = ACTIONS(4429), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(4431), - [sym_hash_empty] = ACTIONS(4433), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4615), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1311)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3471), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5075), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3104), - [sym_hash_expression] = STATE(3104), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1366)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3637), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5335), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3231), + [sym_hash_expression] = STATE(3231), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -235972,119 +243419,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4443), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4617), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1312)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3759), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1367)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3699), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3524), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2839), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_RBRACK] = ACTIONS(4445), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -236103,250 +243550,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1313)] = { - [sym_statement_block] = STATE(537), - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(485), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1314)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3564), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5235), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3404), - [sym_hash_expression] = STATE(3404), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1368)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3546), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5342), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3316), + [sym_hash_expression] = STATE(3316), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -236365,119 +243681,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4497), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4621), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1315)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3572), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5252), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3406), - [sym_hash_expression] = STATE(3406), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1369)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3552), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5347), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3318), + [sym_hash_expression] = STATE(3318), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -236496,119 +243812,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4499), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4623), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1316)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3543), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5231), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3390), - [sym_hash_expression] = STATE(3390), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1370)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3701), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2808), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(4625), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -236627,119 +243943,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4501), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1371)] = { + [sym_statement_block] = STATE(836), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(561), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1372)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3561), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5285), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3322), + [sym_hash_expression] = STATE(3322), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4627), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1317)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3476), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5282), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3352), - [sym_hash_expression] = STATE(3352), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1373)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3576), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5211), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3329), + [sym_hash_expression] = STATE(3329), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -236758,119 +244336,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4503), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4629), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1318)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3522), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5302), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3228), - [sym_hash_expression] = STATE(3228), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1374)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3582), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5355), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3333), + [sym_hash_expression] = STATE(3333), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -236889,119 +244467,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4505), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4631), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1319)] = { - [sym_variable_declarator] = STATE(4460), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(1375)] = { + [sym_statement_block] = STATE(2525), + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(2918), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1376)] = { + [sym_variable_declarator] = STATE(4477), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4485), [anon_sym_Query] = ACTIONS(416), [anon_sym_query] = ACTIONS(416), [anon_sym_QUERY] = ACTIONS(416), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -237039,12 +244748,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Debugger] = ACTIONS(416), [anon_sym_debugger] = ACTIONS(416), [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Final] = ACTIONS(4633), + [anon_sym_final] = ACTIONS(4633), + [anon_sym_FINAL] = ACTIONS(4633), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_Include] = ACTIONS(416), [anon_sym_include] = ACTIONS(416), [anon_sym_INCLUDE] = ACTIONS(416), @@ -237069,70 +244778,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1320)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3419), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5147), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3256), - [sym_hash_expression] = STATE(3256), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1377)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3593), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5339), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3334), + [sym_hash_expression] = STATE(3334), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -237151,119 +244860,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4509), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4635), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1321)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3451), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5284), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3272), - [sym_hash_expression] = STATE(3272), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1378)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3503), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5315), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3375), + [sym_hash_expression] = STATE(3375), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -237282,119 +244991,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4511), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4637), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1322)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3756), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1379)] = { + [sym_variable_declarator] = STATE(4549), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_RBRACK] = ACTIONS(4513), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -237413,119 +245122,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_FINAL] = ACTIONS(416), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1323)] = { - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3611), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1380)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3477), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5124), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3354), + [sym_hash_expression] = STATE(3354), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -237544,250 +245253,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1324)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(3370), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2352), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3068), - [sym_regex] = STATE(2575), - [sym_number] = STATE(3299), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(3299), - [sym_false] = STATE(3299), - [sym_null] = STATE(3068), - [sym_undefined] = STATE(2603), - [sym__tag_call_value] = STATE(4622), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3006), - [sym_hash_expression] = STATE(3006), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(4417), - [anon_sym_SQUOTE] = ACTIONS(4419), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4421), - [aux_sym_number_token2] = ACTIONS(4423), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4425), - [anon_sym_TRUE] = ACTIONS(4425), - [anon_sym_False] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_FALSE] = ACTIONS(4427), - [anon_sym_Null] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4429), - [anon_sym_NULL] = ACTIONS(4429), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(4431), - [sym_hash_empty] = ACTIONS(4517), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4639), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1325)] = { - [sym_statement_block] = STATE(821), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(554), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), + [STATE(1381)] = { + [sym_statement_block] = STATE(716), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(561), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3380), [anon_sym_Query] = ACTIONS(517), [anon_sym_query] = ACTIONS(517), [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -237828,9 +245406,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Final] = ACTIONS(517), [anon_sym_final] = ACTIONS(517), [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), [anon_sym_Include] = ACTIONS(517), [anon_sym_include] = ACTIONS(517), [anon_sym_INCLUDE] = ACTIONS(517), @@ -237855,201 +245433,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1326)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3658), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3659), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2532), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4519), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1327)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3439), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5168), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3329), - [sym_hash_expression] = STATE(3329), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1382)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3548), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5228), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3186), + [sym_hash_expression] = STATE(3186), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -238068,119 +245515,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4521), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4641), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1328)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3441), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5176), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3330), - [sym_hash_expression] = STATE(3330), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1383)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3575), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5169), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3417), + [sym_hash_expression] = STATE(3417), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -238199,119 +245646,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4523), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4643), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1329)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3479), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5300), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3357), - [sym_hash_expression] = STATE(3357), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1384)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3506), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5367), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3193), + [sym_hash_expression] = STATE(3193), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -238330,381 +245777,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4525), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4645), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1330)] = { - [sym_statement_block] = STATE(2529), - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4160), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1331)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3536), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5094), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3300), - [sym_hash_expression] = STATE(3300), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1385)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3821), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4527), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1332)] = { - [sym_statement_block] = STATE(2454), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2746), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_RBRACK] = ACTIONS(4647), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -238723,381 +245908,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1333)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3578), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5083), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3103), - [sym_hash_expression] = STATE(3103), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4529), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1334)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3547), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5225), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3408), - [sym_hash_expression] = STATE(3408), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4531), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1335)] = { - [sym_variable_declarator] = STATE(4480), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(1386)] = { + [sym_variable_declarator] = STATE(4571), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_let] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4485), [anon_sym_Query] = ACTIONS(416), [anon_sym_query] = ACTIONS(416), [anon_sym_QUERY] = ACTIONS(416), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -239135,12 +246058,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Debugger] = ACTIONS(416), [anon_sym_debugger] = ACTIONS(416), [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(4533), - [anon_sym_final] = ACTIONS(4533), - [anon_sym_FINAL] = ACTIONS(4533), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), + [anon_sym_Final] = ACTIONS(4649), + [anon_sym_final] = ACTIONS(4649), + [anon_sym_FINAL] = ACTIONS(4649), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), [anon_sym_Include] = ACTIONS(416), [anon_sym_include] = ACTIONS(416), [anon_sym_INCLUDE] = ACTIONS(416), @@ -239165,70 +246088,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1336)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3546), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5281), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3400), - [sym_hash_expression] = STATE(3400), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1387)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3611), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5119), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3446), + [sym_hash_expression] = STATE(3446), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -239247,119 +246170,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4535), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4651), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1337)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3574), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5171), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3303), - [sym_hash_expression] = STATE(3303), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1388)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3631), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5195), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3338), + [sym_hash_expression] = STATE(3338), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -239378,250 +246301,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4537), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4653), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1338)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3501), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5145), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(3356), - [sym_hash_expression] = STATE(3356), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4539), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1339)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3575), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5111), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3304), - [sym_hash_expression] = STATE(3304), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1389)] = { + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3734), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -239636,254 +246428,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_FALSE] = ACTIONS(455), [anon_sym_Null] = ACTIONS(457), [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4541), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1340)] = { - [sym_statement_block] = STATE(2529), - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3262), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4160), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1341)] = { - [sym_statement_block] = STATE(4260), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(554), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1390)] = { + [sym_variable_declarator] = STATE(4487), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -239902,119 +246563,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_FINAL] = ACTIONS(416), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1342)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3412), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5296), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3307), - [sym_hash_expression] = STATE(3307), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1391)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3531), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5274), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3390), + [sym_hash_expression] = STATE(3390), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -240033,245 +246694,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4543), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4655), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1343)] = { - [sym_statement_block] = STATE(2939), - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3062), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4068), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), + [STATE(1392)] = { + [sym_variable_declarator] = STATE(4508), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(3728), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4374), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2287), + [sym_subscript_expression] = STATE(2287), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4374), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_Query] = ACTIONS(416), + [anon_sym_query] = ACTIONS(416), + [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(416), + [anon_sym_set] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(416), + [anon_sym_QueryExecute] = ACTIONS(465), + [anon_sym_queryexecute] = ACTIONS(465), + [anon_sym_QUERYEXECUTE] = ACTIONS(465), + [anon_sym_queryExecute] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_ABSTRACT] = ACTIONS(416), + [anon_sym_Component] = ACTIONS(416), + [anon_sym_component] = ACTIONS(416), + [anon_sym_COMPONENT] = ACTIONS(416), + [anon_sym_Debugger] = ACTIONS(416), + [anon_sym_debugger] = ACTIONS(416), + [anon_sym_DEBUGGER] = ACTIONS(416), + [anon_sym_Final] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_FINAL] = ACTIONS(416), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(416), + [anon_sym_include] = ACTIONS(416), + [anon_sym_INCLUDE] = ACTIONS(416), + [anon_sym_New] = ACTIONS(478), + [anon_sym_new] = ACTIONS(478), + [anon_sym_NEW] = ACTIONS(478), + [anon_sym_Package] = ACTIONS(416), + [anon_sym_package] = ACTIONS(416), + [anon_sym_PACKAGE] = ACTIONS(416), + [anon_sym_Private] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_PRIVATE] = ACTIONS(416), + [anon_sym_Public] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_PUBLIC] = ACTIONS(416), + [anon_sym_Remote] = ACTIONS(416), + [anon_sym_remote] = ACTIONS(416), + [anon_sym_REMOTE] = ACTIONS(416), + [anon_sym_Static] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_STATIC] = ACTIONS(416), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1344)] = { - [sym_statement_block] = STATE(2492), - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2778), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4160), + [STATE(1393)] = { + [sym_statement_block] = STATE(2532), + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -240295,119 +246956,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1345)] = { - [sym_statement_block] = STATE(2454), - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3666), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1394)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5168), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3424), + [sym_hash_expression] = STATE(3424), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -240426,250 +247087,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [sym_hash_empty] = ACTIONS(4657), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1346)] = { - [sym_statement_block] = STATE(2855), - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(2899), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1347)] = { - [sym_statement_block] = STATE(2458), - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3668), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1395)] = { + [sym_statement_block] = STATE(2518), + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2747), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -240688,119 +247218,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1348)] = { - [sym_variable_declarator] = STATE(4531), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(1396)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3636), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5295), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3340), + [sym_hash_expression] = STATE(3340), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(4507), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -240819,119 +247349,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), + [sym_hash_empty] = ACTIONS(4659), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(4569), - [anon_sym_final] = ACTIONS(4569), - [anon_sym_FINAL] = ACTIONS(4569), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1349)] = { - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3669), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1397)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3621), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5182), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3447), + [sym_hash_expression] = STATE(3447), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -240950,119 +247480,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [sym_hash_empty] = ACTIONS(4661), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1350)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3415), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3309), - [sym_hash_expression] = STATE(3309), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1398)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3481), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5365), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3356), + [sym_hash_expression] = STATE(3356), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -241081,250 +247611,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4571), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4663), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1351)] = { - [sym_statement_block] = STATE(2529), - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2776), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4160), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [STATE(1399)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3635), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5310), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3306), + [sym_hash_expression] = STATE(3306), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4665), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1352)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3418), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5100), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3328), - [sym_hash_expression] = STATE(3328), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1400)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3689), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3486), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2472), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -241343,250 +247873,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4573), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1353)] = { - [sym_statement_block] = STATE(2860), - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(2903), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [STATE(1401)] = { + [sym_statement_block] = STATE(538), + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(496), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), }, - [STATE(1354)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3453), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5098), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3336), - [sym_hash_expression] = STATE(3336), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1402)] = { + [sym_statement_block] = STATE(763), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(730), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1403)] = { + [sym_statement_block] = STATE(2571), + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2757), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4256), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -241605,119 +248266,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4575), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1355)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3609), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3614), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2463), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1404)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5307), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3289), + [sym_hash_expression] = STATE(3289), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4577), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -241736,119 +248397,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [sym_hash_empty] = ACTIONS(4669), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1356)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3634), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3659), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2532), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1405)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3483), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5210), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3357), + [sym_hash_expression] = STATE(3357), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4579), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -241867,119 +248528,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [sym_hash_empty] = ACTIONS(4671), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1357)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3568), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5283), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3261), - [sym_hash_expression] = STATE(3261), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1406)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3618), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5131), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3400), + [sym_hash_expression] = STATE(3400), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -241998,114 +248659,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4581), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4673), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1358)] = { - [sym_statement_block] = STATE(2556), - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3216), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4160), + [STATE(1407)] = { + [sym_statement_block] = STATE(2525), + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3188), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4080), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -242129,119 +248790,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1359)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3443), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5262), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3331), - [sym_hash_expression] = STATE(3331), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1408)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3687), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3524), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2839), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(4675), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -242260,119 +248921,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4583), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1360)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3535), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5263), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3076), - [sym_hash_expression] = STATE(3076), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1409)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(3657), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3522), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_arguments] = STATE(2712), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(4677), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -242391,119 +249052,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4585), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1410)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3341), + [sym_hash_expression] = STATE(3341), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4679), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1361)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3448), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5123), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3334), - [sym_hash_expression] = STATE(3334), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1411)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3643), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_sequence_expression] = STATE(5205), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(3153), + [sym_hash_expression] = STATE(3153), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -242522,119 +249314,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4587), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4681), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1362)] = { - [sym_statement_block] = STATE(2454), - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3768), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1412)] = { + [sym_statement_block] = STATE(4265), + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(561), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -242653,119 +249445,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1413)] = { + [sym_statement_block] = STATE(3009), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(3093), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1414)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3735), + [sym_primary_expression] = STATE(3385), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2379), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2832), + [sym_regex] = STATE(2492), + [sym_number] = STATE(3159), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(3159), + [sym_false] = STATE(3159), + [sym_null] = STATE(2832), + [sym_undefined] = STATE(2615), + [sym__tag_call_value] = STATE(4723), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2923), + [sym_hash_expression] = STATE(2923), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4683), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(4463), + [anon_sym_SQUOTE] = ACTIONS(4465), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4467), + [aux_sym_number_token2] = ACTIONS(4469), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(4471), + [anon_sym_true] = ACTIONS(4471), + [anon_sym_TRUE] = ACTIONS(4471), + [anon_sym_False] = ACTIONS(4473), + [anon_sym_false] = ACTIONS(4473), + [anon_sym_FALSE] = ACTIONS(4473), + [anon_sym_Null] = ACTIONS(4475), + [anon_sym_null] = ACTIONS(4475), + [anon_sym_NULL] = ACTIONS(4475), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(4477), + [sym_hash_empty] = ACTIONS(4685), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1363)] = { - [sym_statement_block] = STATE(2458), - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3771), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1415)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3822), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_RBRACK] = ACTIONS(4687), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -242784,119 +249838,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1364)] = { - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3778), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1416)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3606), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -242915,119 +249968,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1365)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3450), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5119), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3335), - [sym_hash_expression] = STATE(3335), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1417)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3805), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -243046,119 +250098,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4601), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1366)] = { - [sym_variable_declarator] = STATE(4552), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(1418)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3807), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(4507), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -243177,119 +250228,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1367)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3688), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3614), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2463), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + }, + [STATE(1419)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3808), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -243308,119 +250358,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1368)] = { - [sym_statement_block] = STATE(2454), - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3371), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1420)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3809), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -243439,119 +250488,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1369)] = { - [sym_statement_block] = STATE(2458), - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3372), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1421)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3810), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -243570,119 +250618,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1370)] = { - [sym_statement_block] = STATE(2473), - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1422)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3811), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -243701,119 +250748,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1371)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3647), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3689), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2948), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1423)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3812), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4617), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -243832,119 +250878,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1372)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3588), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3663), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(3339), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1424)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3814), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -243963,119 +251008,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1373)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3596), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3646), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2863), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1425)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3815), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -244094,119 +251138,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1374)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3452), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5172), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3337), - [sym_hash_expression] = STATE(3337), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1426)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3816), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -244225,119 +251268,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4623), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1375)] = { - [sym_variable_declarator] = STATE(4459), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(1427)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3817), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(4507), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -244356,119 +251398,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(4625), - [anon_sym_final] = ACTIONS(4625), - [anon_sym_FINAL] = ACTIONS(4625), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1376)] = { - [sym_variable_declarator] = STATE(4514), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(3919), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2136), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(3919), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4627), + [STATE(1428)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3818), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4629), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_Query] = ACTIONS(4629), - [anon_sym_query] = ACTIONS(4629), - [anon_sym_QUERY] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -244487,119 +251528,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4629), - [anon_sym_set] = ACTIONS(4629), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4629), - [anon_sym_QueryExecute] = ACTIONS(4633), - [anon_sym_queryexecute] = ACTIONS(4633), - [anon_sym_QUERYEXECUTE] = ACTIONS(4633), - [anon_sym_queryExecute] = ACTIONS(4633), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4629), - [anon_sym_abstract] = ACTIONS(4629), - [anon_sym_ABSTRACT] = ACTIONS(4629), - [anon_sym_Component] = ACTIONS(4629), - [anon_sym_component] = ACTIONS(4629), - [anon_sym_COMPONENT] = ACTIONS(4629), - [anon_sym_Debugger] = ACTIONS(4629), - [anon_sym_debugger] = ACTIONS(4629), - [anon_sym_DEBUGGER] = ACTIONS(4629), - [anon_sym_Final] = ACTIONS(4635), - [anon_sym_final] = ACTIONS(4635), - [anon_sym_FINAL] = ACTIONS(4635), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4629), - [anon_sym_include] = ACTIONS(4629), - [anon_sym_INCLUDE] = ACTIONS(4629), - [anon_sym_New] = ACTIONS(4637), - [anon_sym_new] = ACTIONS(4637), - [anon_sym_NEW] = ACTIONS(4637), - [anon_sym_Package] = ACTIONS(4629), - [anon_sym_package] = ACTIONS(4629), - [anon_sym_PACKAGE] = ACTIONS(4629), - [anon_sym_Private] = ACTIONS(4629), - [anon_sym_private] = ACTIONS(4629), - [anon_sym_PRIVATE] = ACTIONS(4629), - [anon_sym_Public] = ACTIONS(4629), - [anon_sym_public] = ACTIONS(4629), - [anon_sym_PUBLIC] = ACTIONS(4629), - [anon_sym_Remote] = ACTIONS(4629), - [anon_sym_remote] = ACTIONS(4629), - [anon_sym_REMOTE] = ACTIONS(4629), - [anon_sym_Static] = ACTIONS(4629), - [anon_sym_static] = ACTIONS(4629), - [anon_sym_STATIC] = ACTIONS(4629), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1377)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3457), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5230), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3348), - [sym_hash_expression] = STATE(3348), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1429)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3819), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -244618,119 +251658,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4639), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1378)] = { - [sym_variable_declarator] = STATE(4433), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(4507), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), + [STATE(1430)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2534), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4701), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4705), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4705), + [anon_sym_query] = ACTIONS(4705), + [anon_sym_QUERY] = ACTIONS(4705), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -244749,119 +251788,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), + [anon_sym_get] = ACTIONS(4705), + [anon_sym_set] = ACTIONS(4705), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), + [anon_sym_export] = ACTIONS(4705), + [anon_sym_QueryExecute] = ACTIONS(4707), + [anon_sym_queryexecute] = ACTIONS(4707), + [anon_sym_QUERYEXECUTE] = ACTIONS(4707), + [anon_sym_queryExecute] = ACTIONS(4707), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), + [anon_sym_Abstract] = ACTIONS(4705), + [anon_sym_abstract] = ACTIONS(4705), + [anon_sym_ABSTRACT] = ACTIONS(4705), + [anon_sym_Component] = ACTIONS(4705), + [anon_sym_component] = ACTIONS(4705), + [anon_sym_COMPONENT] = ACTIONS(4705), + [anon_sym_Debugger] = ACTIONS(4705), + [anon_sym_debugger] = ACTIONS(4705), + [anon_sym_DEBUGGER] = ACTIONS(4705), + [anon_sym_Final] = ACTIONS(4705), + [anon_sym_final] = ACTIONS(4705), + [anon_sym_FINAL] = ACTIONS(4705), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4705), + [anon_sym_include] = ACTIONS(4705), + [anon_sym_INCLUDE] = ACTIONS(4705), + [anon_sym_New] = ACTIONS(4709), + [anon_sym_new] = ACTIONS(4709), + [anon_sym_NEW] = ACTIONS(4709), + [anon_sym_Package] = ACTIONS(4705), + [anon_sym_package] = ACTIONS(4705), + [anon_sym_PACKAGE] = ACTIONS(4705), + [anon_sym_Private] = ACTIONS(4705), + [anon_sym_private] = ACTIONS(4705), + [anon_sym_PRIVATE] = ACTIONS(4705), + [anon_sym_Public] = ACTIONS(4705), + [anon_sym_public] = ACTIONS(4705), + [anon_sym_PUBLIC] = ACTIONS(4705), + [anon_sym_Remote] = ACTIONS(4705), + [anon_sym_remote] = ACTIONS(4705), + [anon_sym_REMOTE] = ACTIONS(4705), + [anon_sym_Static] = ACTIONS(4705), + [anon_sym_static] = ACTIONS(4705), + [anon_sym_STATIC] = ACTIONS(4705), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1379)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3436), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5212), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3205), - [sym_hash_expression] = STATE(3205), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1431)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4701), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4705), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4705), + [anon_sym_query] = ACTIONS(4705), + [anon_sym_QUERY] = ACTIONS(4705), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -244880,119 +251918,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4705), + [anon_sym_set] = ACTIONS(4705), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4641), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4705), + [anon_sym_QueryExecute] = ACTIONS(4707), + [anon_sym_queryexecute] = ACTIONS(4707), + [anon_sym_QUERYEXECUTE] = ACTIONS(4707), + [anon_sym_queryExecute] = ACTIONS(4707), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4705), + [anon_sym_abstract] = ACTIONS(4705), + [anon_sym_ABSTRACT] = ACTIONS(4705), + [anon_sym_Component] = ACTIONS(4705), + [anon_sym_component] = ACTIONS(4705), + [anon_sym_COMPONENT] = ACTIONS(4705), + [anon_sym_Debugger] = ACTIONS(4705), + [anon_sym_debugger] = ACTIONS(4705), + [anon_sym_DEBUGGER] = ACTIONS(4705), + [anon_sym_Final] = ACTIONS(4705), + [anon_sym_final] = ACTIONS(4705), + [anon_sym_FINAL] = ACTIONS(4705), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4705), + [anon_sym_include] = ACTIONS(4705), + [anon_sym_INCLUDE] = ACTIONS(4705), + [anon_sym_New] = ACTIONS(4709), + [anon_sym_new] = ACTIONS(4709), + [anon_sym_NEW] = ACTIONS(4709), + [anon_sym_Package] = ACTIONS(4705), + [anon_sym_package] = ACTIONS(4705), + [anon_sym_PACKAGE] = ACTIONS(4705), + [anon_sym_Private] = ACTIONS(4705), + [anon_sym_private] = ACTIONS(4705), + [anon_sym_PRIVATE] = ACTIONS(4705), + [anon_sym_Public] = ACTIONS(4705), + [anon_sym_public] = ACTIONS(4705), + [anon_sym_PUBLIC] = ACTIONS(4705), + [anon_sym_Remote] = ACTIONS(4705), + [anon_sym_remote] = ACTIONS(4705), + [anon_sym_REMOTE] = ACTIONS(4705), + [anon_sym_Static] = ACTIONS(4705), + [anon_sym_static] = ACTIONS(4705), + [anon_sym_STATIC] = ACTIONS(4705), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1380)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3473), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5312), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3364), - [sym_hash_expression] = STATE(3364), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1432)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3823), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -245011,119 +252048,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4643), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1381)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3520), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5126), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3397), - [sym_hash_expression] = STATE(3397), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1433)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3379), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -245142,119 +252178,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4645), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1382)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5196), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3077), - [sym_hash_expression] = STATE(3077), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1434)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3530), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1435)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3557), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2455), + [sym_hash_expression] = STATE(2455), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4711), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1436)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(751), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1437)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3158), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4540), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2354), + [sym_subscript_expression] = STATE(2354), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4540), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2943), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2943), + [sym_undefined] = STATE(2943), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4715), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4717), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4717), + [anon_sym_query] = ACTIONS(4717), + [anon_sym_QUERY] = ACTIONS(4717), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -245273,119 +252698,2848 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4717), + [anon_sym_set] = ACTIONS(4717), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4647), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4717), + [anon_sym_QueryExecute] = ACTIONS(4719), + [anon_sym_queryexecute] = ACTIONS(4719), + [anon_sym_QUERYEXECUTE] = ACTIONS(4719), + [anon_sym_queryExecute] = ACTIONS(4719), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4717), + [anon_sym_abstract] = ACTIONS(4717), + [anon_sym_ABSTRACT] = ACTIONS(4717), + [anon_sym_Component] = ACTIONS(4717), + [anon_sym_component] = ACTIONS(4717), + [anon_sym_COMPONENT] = ACTIONS(4717), + [anon_sym_Debugger] = ACTIONS(4717), + [anon_sym_debugger] = ACTIONS(4717), + [anon_sym_DEBUGGER] = ACTIONS(4717), + [anon_sym_Final] = ACTIONS(4717), + [anon_sym_final] = ACTIONS(4717), + [anon_sym_FINAL] = ACTIONS(4717), + [anon_sym_Function] = ACTIONS(4721), + [anon_sym_function] = ACTIONS(4721), + [anon_sym_FUNCTION] = ACTIONS(4721), + [anon_sym_Include] = ACTIONS(4717), + [anon_sym_include] = ACTIONS(4717), + [anon_sym_INCLUDE] = ACTIONS(4717), + [anon_sym_New] = ACTIONS(4723), + [anon_sym_new] = ACTIONS(4723), + [anon_sym_NEW] = ACTIONS(4723), + [anon_sym_Package] = ACTIONS(4717), + [anon_sym_package] = ACTIONS(4717), + [anon_sym_PACKAGE] = ACTIONS(4717), + [anon_sym_Private] = ACTIONS(4717), + [anon_sym_private] = ACTIONS(4717), + [anon_sym_PRIVATE] = ACTIONS(4717), + [anon_sym_Public] = ACTIONS(4717), + [anon_sym_public] = ACTIONS(4717), + [anon_sym_PUBLIC] = ACTIONS(4717), + [anon_sym_Remote] = ACTIONS(4717), + [anon_sym_remote] = ACTIONS(4717), + [anon_sym_REMOTE] = ACTIONS(4717), + [anon_sym_Static] = ACTIONS(4717), + [anon_sym_static] = ACTIONS(4717), + [anon_sym_STATIC] = ACTIONS(4717), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1383)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3445), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5297), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3079), - [sym_hash_expression] = STATE(3079), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1438)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1439)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1440)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3293), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1441)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3300), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1442)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3310), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1443)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3312), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1444)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3317), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1445)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1446)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3326), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1447)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3350), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1448)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3352), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1449)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3355), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1450)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3358), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1451)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3360), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1452)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3362), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1453)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3365), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1454)] = { + [sym_parenthesized_expression] = STATE(2324), + [sym_expression] = STATE(3866), + [sym_primary_expression] = STATE(2815), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2721), + [sym_new_expression] = STATE(2668), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2324), + [sym_subscript_expression] = STATE(2324), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2713), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2713), + [sym_undefined] = STATE(2713), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(3685), + [sym_hash_expression] = STATE(3685), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4741), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4743), + [anon_sym_query] = ACTIONS(4743), + [anon_sym_QUERY] = ACTIONS(4743), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4743), + [anon_sym_set] = ACTIONS(4743), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4745), + [anon_sym_export] = ACTIONS(4743), + [anon_sym_QueryExecute] = ACTIONS(4747), + [anon_sym_queryexecute] = ACTIONS(4747), + [anon_sym_QUERYEXECUTE] = ACTIONS(4747), + [anon_sym_queryExecute] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_ABSTRACT] = ACTIONS(4743), + [anon_sym_Component] = ACTIONS(4743), + [anon_sym_component] = ACTIONS(4743), + [anon_sym_COMPONENT] = ACTIONS(4743), + [anon_sym_Debugger] = ACTIONS(4743), + [anon_sym_debugger] = ACTIONS(4743), + [anon_sym_DEBUGGER] = ACTIONS(4743), + [anon_sym_Final] = ACTIONS(4743), + [anon_sym_final] = ACTIONS(4743), + [anon_sym_FINAL] = ACTIONS(4743), + [anon_sym_Function] = ACTIONS(4749), + [anon_sym_function] = ACTIONS(4749), + [anon_sym_FUNCTION] = ACTIONS(4749), + [anon_sym_Include] = ACTIONS(4743), + [anon_sym_include] = ACTIONS(4743), + [anon_sym_INCLUDE] = ACTIONS(4743), + [anon_sym_New] = ACTIONS(4751), + [anon_sym_new] = ACTIONS(4751), + [anon_sym_NEW] = ACTIONS(4751), + [anon_sym_Package] = ACTIONS(4743), + [anon_sym_package] = ACTIONS(4743), + [anon_sym_PACKAGE] = ACTIONS(4743), + [anon_sym_Private] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_PRIVATE] = ACTIONS(4743), + [anon_sym_Public] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_PUBLIC] = ACTIONS(4743), + [anon_sym_Remote] = ACTIONS(4743), + [anon_sym_remote] = ACTIONS(4743), + [anon_sym_REMOTE] = ACTIONS(4743), + [anon_sym_Static] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_STATIC] = ACTIONS(4743), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1455)] = { + [sym_parenthesized_expression] = STATE(2324), + [sym_expression] = STATE(3866), + [sym_primary_expression] = STATE(2816), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2721), + [sym_new_expression] = STATE(2817), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2324), + [sym_subscript_expression] = STATE(2324), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2713), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2713), + [sym_undefined] = STATE(2713), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(3685), + [sym_hash_expression] = STATE(3685), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4741), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4743), + [anon_sym_query] = ACTIONS(4743), + [anon_sym_QUERY] = ACTIONS(4743), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4743), + [anon_sym_set] = ACTIONS(4743), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4745), + [anon_sym_export] = ACTIONS(4743), + [anon_sym_QueryExecute] = ACTIONS(4747), + [anon_sym_queryexecute] = ACTIONS(4747), + [anon_sym_QUERYEXECUTE] = ACTIONS(4747), + [anon_sym_queryExecute] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_ABSTRACT] = ACTIONS(4743), + [anon_sym_Component] = ACTIONS(4743), + [anon_sym_component] = ACTIONS(4743), + [anon_sym_COMPONENT] = ACTIONS(4743), + [anon_sym_Debugger] = ACTIONS(4743), + [anon_sym_debugger] = ACTIONS(4743), + [anon_sym_DEBUGGER] = ACTIONS(4743), + [anon_sym_Final] = ACTIONS(4743), + [anon_sym_final] = ACTIONS(4743), + [anon_sym_FINAL] = ACTIONS(4743), + [anon_sym_Function] = ACTIONS(4749), + [anon_sym_function] = ACTIONS(4749), + [anon_sym_FUNCTION] = ACTIONS(4749), + [anon_sym_Include] = ACTIONS(4743), + [anon_sym_include] = ACTIONS(4743), + [anon_sym_INCLUDE] = ACTIONS(4743), + [anon_sym_New] = ACTIONS(4751), + [anon_sym_new] = ACTIONS(4751), + [anon_sym_NEW] = ACTIONS(4751), + [anon_sym_Package] = ACTIONS(4743), + [anon_sym_package] = ACTIONS(4743), + [anon_sym_PACKAGE] = ACTIONS(4743), + [anon_sym_Private] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_PRIVATE] = ACTIONS(4743), + [anon_sym_Public] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_PUBLIC] = ACTIONS(4743), + [anon_sym_Remote] = ACTIONS(4743), + [anon_sym_remote] = ACTIONS(4743), + [anon_sym_REMOTE] = ACTIONS(4743), + [anon_sym_Static] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_STATIC] = ACTIONS(4743), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1456)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3369), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1457)] = { + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(471), + [anon_sym_query] = ACTIONS(471), + [anon_sym_QUERY] = ACTIONS(471), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_Abstract] = ACTIONS(471), + [anon_sym_abstract] = ACTIONS(471), + [anon_sym_ABSTRACT] = ACTIONS(471), + [anon_sym_Component] = ACTIONS(476), + [anon_sym_component] = ACTIONS(476), + [anon_sym_COMPONENT] = ACTIONS(476), + [anon_sym_Default] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_DEFAULT] = ACTIONS(471), + [anon_sym_Final] = ACTIONS(471), + [anon_sym_final] = ACTIONS(471), + [anon_sym_FINAL] = ACTIONS(471), + [anon_sym_Function] = ACTIONS(471), + [anon_sym_function] = ACTIONS(471), + [anon_sym_FUNCTION] = ACTIONS(471), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_Interface] = ACTIONS(476), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_INTERFACE] = ACTIONS(476), + [anon_sym_Package] = ACTIONS(471), + [anon_sym_package] = ACTIONS(471), + [anon_sym_PACKAGE] = ACTIONS(471), + [anon_sym_Private] = ACTIONS(471), + [anon_sym_private] = ACTIONS(471), + [anon_sym_PRIVATE] = ACTIONS(471), + [anon_sym_Public] = ACTIONS(471), + [anon_sym_public] = ACTIONS(471), + [anon_sym_PUBLIC] = ACTIONS(471), + [anon_sym_Remote] = ACTIONS(471), + [anon_sym_remote] = ACTIONS(471), + [anon_sym_REMOTE] = ACTIONS(471), + [anon_sym_Static] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_STATIC] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(1458)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3433), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1459)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(489), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -245404,381 +255558,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4649), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1384)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3427), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5086), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3084), - [sym_hash_expression] = STATE(3084), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1460)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3508), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1461)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3512), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2500), + [sym_hash_expression] = STATE(2500), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4651), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1385)] = { - [sym_statement_block] = STATE(736), - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(753), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4767), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1386)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3662), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3614), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2463), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1462)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3773), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4577), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -245797,119 +255948,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1387)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5103), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3086), - [sym_hash_expression] = STATE(3086), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1463)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3556), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2585), + [sym_hash_expression] = STATE(2585), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4769), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1464)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -245928,119 +256208,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4653), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1388)] = { - [sym_variable_declarator] = STATE(4439), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), + [STATE(1465)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4427), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2315), + [sym_subscript_expression] = STATE(2315), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4427), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2739), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2739), + [sym_undefined] = STATE(2739), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4771), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(4507), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4773), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_Query] = ACTIONS(4773), + [anon_sym_query] = ACTIONS(4773), + [anon_sym_QUERY] = ACTIONS(4773), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -246053,387 +256332,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4773), + [anon_sym_set] = ACTIONS(4773), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), + [anon_sym_export] = ACTIONS(4773), + [anon_sym_QueryExecute] = ACTIONS(4775), + [anon_sym_queryexecute] = ACTIONS(4775), + [anon_sym_QUERYEXECUTE] = ACTIONS(4775), + [anon_sym_queryExecute] = ACTIONS(4775), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), + [anon_sym_Abstract] = ACTIONS(4773), + [anon_sym_abstract] = ACTIONS(4773), + [anon_sym_ABSTRACT] = ACTIONS(4773), + [anon_sym_Component] = ACTIONS(4773), + [anon_sym_component] = ACTIONS(4773), + [anon_sym_COMPONENT] = ACTIONS(4773), + [anon_sym_Debugger] = ACTIONS(4773), + [anon_sym_debugger] = ACTIONS(4773), + [anon_sym_DEBUGGER] = ACTIONS(4773), + [anon_sym_Final] = ACTIONS(4773), + [anon_sym_final] = ACTIONS(4773), + [anon_sym_FINAL] = ACTIONS(4773), + [anon_sym_Function] = ACTIONS(4777), + [anon_sym_function] = ACTIONS(4777), + [anon_sym_FUNCTION] = ACTIONS(4777), + [anon_sym_Include] = ACTIONS(4773), + [anon_sym_include] = ACTIONS(4773), + [anon_sym_INCLUDE] = ACTIONS(4773), + [anon_sym_New] = ACTIONS(4779), + [anon_sym_new] = ACTIONS(4779), + [anon_sym_NEW] = ACTIONS(4779), + [anon_sym_Package] = ACTIONS(4773), + [anon_sym_package] = ACTIONS(4773), + [anon_sym_PACKAGE] = ACTIONS(4773), + [anon_sym_Private] = ACTIONS(4773), + [anon_sym_private] = ACTIONS(4773), + [anon_sym_PRIVATE] = ACTIONS(4773), + [anon_sym_Public] = ACTIONS(4773), + [anon_sym_public] = ACTIONS(4773), + [anon_sym_PUBLIC] = ACTIONS(4773), + [anon_sym_Remote] = ACTIONS(4773), + [anon_sym_remote] = ACTIONS(4773), + [anon_sym_REMOTE] = ACTIONS(4773), + [anon_sym_Static] = ACTIONS(4773), + [anon_sym_static] = ACTIONS(4773), + [anon_sym_STATIC] = ACTIONS(4773), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1389)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3507), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5080), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3221), - [sym_hash_expression] = STATE(3221), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1466)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2537), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4783), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4655), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1390)] = { - [sym_statement_block] = STATE(2458), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2688), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1467)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3557), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2726), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2455), + [sym_hash_expression] = STATE(2455), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(4793), + [anon_sym_SQUOTE] = ACTIONS(4795), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4711), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1391)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3515), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5124), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3089), - [sym_hash_expression] = STATE(3089), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1468)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3704), + [sym_primary_expression] = STATE(3393), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4375), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2331), + [sym_subscript_expression] = STATE(2331), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4375), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2666), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2666), + [sym_undefined] = STATE(2666), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4797), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4799), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_Query] = ACTIONS(4799), + [anon_sym_query] = ACTIONS(4799), + [anon_sym_QUERY] = ACTIONS(4799), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -246446,125 +256722,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4799), + [anon_sym_set] = ACTIONS(4799), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4657), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4799), + [anon_sym_QueryExecute] = ACTIONS(4801), + [anon_sym_queryexecute] = ACTIONS(4801), + [anon_sym_QUERYEXECUTE] = ACTIONS(4801), + [anon_sym_queryExecute] = ACTIONS(4801), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4799), + [anon_sym_abstract] = ACTIONS(4799), + [anon_sym_ABSTRACT] = ACTIONS(4799), + [anon_sym_Component] = ACTIONS(4799), + [anon_sym_component] = ACTIONS(4799), + [anon_sym_COMPONENT] = ACTIONS(4799), + [anon_sym_Debugger] = ACTIONS(4799), + [anon_sym_debugger] = ACTIONS(4799), + [anon_sym_DEBUGGER] = ACTIONS(4799), + [anon_sym_Final] = ACTIONS(4799), + [anon_sym_final] = ACTIONS(4799), + [anon_sym_FINAL] = ACTIONS(4799), + [anon_sym_Function] = ACTIONS(4803), + [anon_sym_function] = ACTIONS(4803), + [anon_sym_FUNCTION] = ACTIONS(4803), + [anon_sym_Include] = ACTIONS(4799), + [anon_sym_include] = ACTIONS(4799), + [anon_sym_INCLUDE] = ACTIONS(4799), + [anon_sym_New] = ACTIONS(4805), + [anon_sym_new] = ACTIONS(4805), + [anon_sym_NEW] = ACTIONS(4805), + [anon_sym_Package] = ACTIONS(4799), + [anon_sym_package] = ACTIONS(4799), + [anon_sym_PACKAGE] = ACTIONS(4799), + [anon_sym_Private] = ACTIONS(4799), + [anon_sym_private] = ACTIONS(4799), + [anon_sym_PRIVATE] = ACTIONS(4799), + [anon_sym_Public] = ACTIONS(4799), + [anon_sym_public] = ACTIONS(4799), + [anon_sym_PUBLIC] = ACTIONS(4799), + [anon_sym_Remote] = ACTIONS(4799), + [anon_sym_remote] = ACTIONS(4799), + [anon_sym_REMOTE] = ACTIONS(4799), + [anon_sym_Static] = ACTIONS(4799), + [anon_sym_static] = ACTIONS(4799), + [anon_sym_STATIC] = ACTIONS(4799), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1392)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3645), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3635), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(540), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1469)] = { + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(471), + [anon_sym_query] = ACTIONS(471), + [anon_sym_QUERY] = ACTIONS(471), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_Abstract] = ACTIONS(471), + [anon_sym_abstract] = ACTIONS(471), + [anon_sym_ABSTRACT] = ACTIONS(471), + [anon_sym_Component] = ACTIONS(476), + [anon_sym_component] = ACTIONS(476), + [anon_sym_COMPONENT] = ACTIONS(476), + [anon_sym_Default] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_DEFAULT] = ACTIONS(471), + [anon_sym_Final] = ACTIONS(471), + [anon_sym_final] = ACTIONS(471), + [anon_sym_FINAL] = ACTIONS(471), + [anon_sym_Function] = ACTIONS(471), + [anon_sym_function] = ACTIONS(471), + [anon_sym_FUNCTION] = ACTIONS(471), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_Interface] = ACTIONS(476), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_INTERFACE] = ACTIONS(476), + [anon_sym_Package] = ACTIONS(471), + [anon_sym_package] = ACTIONS(471), + [anon_sym_PACKAGE] = ACTIONS(471), + [anon_sym_Private] = ACTIONS(471), + [anon_sym_private] = ACTIONS(471), + [anon_sym_PRIVATE] = ACTIONS(471), + [anon_sym_Public] = ACTIONS(471), + [anon_sym_public] = ACTIONS(471), + [anon_sym_PUBLIC] = ACTIONS(471), + [anon_sym_Remote] = ACTIONS(471), + [anon_sym_remote] = ACTIONS(471), + [anon_sym_REMOTE] = ACTIONS(471), + [anon_sym_Static] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_STATIC] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(1470)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3583), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1471)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4570), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2366), + [sym_subscript_expression] = STATE(2366), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4570), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3051), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3051), + [sym_undefined] = STATE(3051), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4807), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4659), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4809), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_Query] = ACTIONS(4809), + [anon_sym_query] = ACTIONS(4809), + [anon_sym_QUERY] = ACTIONS(4809), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -246583,119 +257118,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(4809), + [anon_sym_set] = ACTIONS(4809), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(4809), + [anon_sym_QueryExecute] = ACTIONS(4811), + [anon_sym_queryexecute] = ACTIONS(4811), + [anon_sym_QUERYEXECUTE] = ACTIONS(4811), + [anon_sym_queryExecute] = ACTIONS(4811), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(4809), + [anon_sym_abstract] = ACTIONS(4809), + [anon_sym_ABSTRACT] = ACTIONS(4809), + [anon_sym_Component] = ACTIONS(4809), + [anon_sym_component] = ACTIONS(4809), + [anon_sym_COMPONENT] = ACTIONS(4809), + [anon_sym_Debugger] = ACTIONS(4809), + [anon_sym_debugger] = ACTIONS(4809), + [anon_sym_DEBUGGER] = ACTIONS(4809), + [anon_sym_Final] = ACTIONS(4809), + [anon_sym_final] = ACTIONS(4809), + [anon_sym_FINAL] = ACTIONS(4809), + [anon_sym_Function] = ACTIONS(4813), + [anon_sym_function] = ACTIONS(4813), + [anon_sym_FUNCTION] = ACTIONS(4813), + [anon_sym_Include] = ACTIONS(4809), + [anon_sym_include] = ACTIONS(4809), + [anon_sym_INCLUDE] = ACTIONS(4809), + [anon_sym_New] = ACTIONS(4815), + [anon_sym_new] = ACTIONS(4815), + [anon_sym_NEW] = ACTIONS(4815), + [anon_sym_Package] = ACTIONS(4809), + [anon_sym_package] = ACTIONS(4809), + [anon_sym_PACKAGE] = ACTIONS(4809), + [anon_sym_Private] = ACTIONS(4809), + [anon_sym_private] = ACTIONS(4809), + [anon_sym_PRIVATE] = ACTIONS(4809), + [anon_sym_Public] = ACTIONS(4809), + [anon_sym_public] = ACTIONS(4809), + [anon_sym_PUBLIC] = ACTIONS(4809), + [anon_sym_Remote] = ACTIONS(4809), + [anon_sym_remote] = ACTIONS(4809), + [anon_sym_REMOTE] = ACTIONS(4809), + [anon_sym_Static] = ACTIONS(4809), + [anon_sym_static] = ACTIONS(4809), + [anon_sym_STATIC] = ACTIONS(4809), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1393)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(3686), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(3614), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_arguments] = STATE(2463), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1472)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3148), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2676), + [sym_hash_expression] = STATE(2676), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4823), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1473)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3779), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -246714,769 +257378,1543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1394)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3411), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5188), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3240), - [sym_hash_expression] = STATE(3240), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1474)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3495), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4661), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1395)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3566), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5267), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3092), - [sym_hash_expression] = STATE(3092), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1475)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3501), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4663), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1396)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3433), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5106), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3094), - [sym_hash_expression] = STATE(3094), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1476)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3151), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2678), + [sym_hash_expression] = STATE(2678), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4843), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1477)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3538), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1478)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3540), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1479)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3478), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1480)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3494), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1481)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3496), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1482)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1483)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3160), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4665), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1397)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3447), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5174), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3095), - [sym_hash_expression] = STATE(3095), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1484)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3161), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4667), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1398)] = { - [sym_statement_block] = STATE(774), - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(739), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1399)] = { - [sym_statement_block] = STATE(2556), - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2780), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4160), + [STATE(1485)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3162), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4819), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -247500,1930 +258938,1528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1400)] = { - [sym_statement_block] = STATE(2943), - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3063), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4068), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1401)] = { - [sym_statement_block] = STATE(3365), - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3369), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1402)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3506), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5097), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3082), - [sym_hash_expression] = STATE(3082), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1486)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3164), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4669), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1403)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3511), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5116), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3114), - [sym_hash_expression] = STATE(3114), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1487)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4671), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1404)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3500), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5162), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3087), - [sym_hash_expression] = STATE(3087), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1488)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3167), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4673), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1405)] = { - [sym_statement_block] = STATE(545), - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(509), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1406)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3434), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5140), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3359), - [sym_hash_expression] = STATE(3359), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1489)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3168), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4675), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1407)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3708), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_RBRACK] = ACTIONS(4677), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1490)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3169), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1408)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3465), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_sequence_expression] = STATE(5240), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(3139), - [sym_hash_expression] = STATE(3139), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1491)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3170), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4679), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1409)] = { - [sym_statement_block] = STATE(4191), - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(554), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [STATE(1492)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3171), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1410)] = { - [sym_statement_block] = STATE(466), - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(484), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1411)] = { - [sym_variable_declarator] = STATE(4415), - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(3648), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4388), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2274), - [sym_subscript_expression] = STATE(2274), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4388), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(4507), - [anon_sym_Query] = ACTIONS(416), - [anon_sym_query] = ACTIONS(416), - [anon_sym_QUERY] = ACTIONS(416), + [STATE(1493)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3172), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(416), - [anon_sym_set] = ACTIONS(416), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(416), - [anon_sym_QueryExecute] = ACTIONS(465), - [anon_sym_queryexecute] = ACTIONS(465), - [anon_sym_QUERYEXECUTE] = ACTIONS(465), - [anon_sym_queryExecute] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(416), - [anon_sym_abstract] = ACTIONS(416), - [anon_sym_ABSTRACT] = ACTIONS(416), - [anon_sym_Component] = ACTIONS(416), - [anon_sym_component] = ACTIONS(416), - [anon_sym_COMPONENT] = ACTIONS(416), - [anon_sym_Debugger] = ACTIONS(416), - [anon_sym_debugger] = ACTIONS(416), - [anon_sym_DEBUGGER] = ACTIONS(416), - [anon_sym_Final] = ACTIONS(416), - [anon_sym_final] = ACTIONS(416), - [anon_sym_FINAL] = ACTIONS(416), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(416), - [anon_sym_include] = ACTIONS(416), - [anon_sym_INCLUDE] = ACTIONS(416), - [anon_sym_New] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_NEW] = ACTIONS(478), - [anon_sym_Package] = ACTIONS(416), - [anon_sym_package] = ACTIONS(416), - [anon_sym_PACKAGE] = ACTIONS(416), - [anon_sym_Private] = ACTIONS(416), - [anon_sym_private] = ACTIONS(416), - [anon_sym_PRIVATE] = ACTIONS(416), - [anon_sym_Public] = ACTIONS(416), - [anon_sym_public] = ACTIONS(416), - [anon_sym_PUBLIC] = ACTIONS(416), - [anon_sym_Remote] = ACTIONS(416), - [anon_sym_remote] = ACTIONS(416), - [anon_sym_REMOTE] = ACTIONS(416), - [anon_sym_Static] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_STATIC] = ACTIONS(416), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1412)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3757), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(1494)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3173), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1413)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3777), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(1495)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3174), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1414)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3630), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [STATE(1496)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3175), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1497)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3627), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_let] = ACTIONS(613), @@ -249465,7 +260501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(613), [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), + [sym_hash_empty] = ACTIONS(4088), [anon_sym_export] = ACTIONS(613), [anon_sym_QueryExecute] = ACTIONS(617), [anon_sym_queryexecute] = ACTIONS(617), @@ -249511,1364 +260547,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1415)] = { - [sym_parenthesized_expression] = STATE(395), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(662), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(719), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(395), - [sym_subscript_expression] = STATE(395), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(676), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(676), - [sym_undefined] = STATE(676), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(3624), - [sym_hash_expression] = STATE(3624), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4697), - [anon_sym_query] = ACTIONS(4697), - [anon_sym_QUERY] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4697), - [anon_sym_set] = ACTIONS(4697), + [STATE(1498)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2460), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2465), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4849), + [anon_sym_query] = ACTIONS(4849), + [anon_sym_QUERY] = ACTIONS(4849), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4849), + [anon_sym_set] = ACTIONS(4849), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4699), - [anon_sym_export] = ACTIONS(4697), - [anon_sym_QueryExecute] = ACTIONS(4701), - [anon_sym_queryexecute] = ACTIONS(4701), - [anon_sym_QUERYEXECUTE] = ACTIONS(4701), - [anon_sym_queryExecute] = ACTIONS(4701), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4697), - [anon_sym_abstract] = ACTIONS(4697), - [anon_sym_ABSTRACT] = ACTIONS(4697), - [anon_sym_Component] = ACTIONS(4697), - [anon_sym_component] = ACTIONS(4697), - [anon_sym_COMPONENT] = ACTIONS(4697), - [anon_sym_Debugger] = ACTIONS(4697), - [anon_sym_debugger] = ACTIONS(4697), - [anon_sym_DEBUGGER] = ACTIONS(4697), - [anon_sym_Final] = ACTIONS(4697), - [anon_sym_final] = ACTIONS(4697), - [anon_sym_FINAL] = ACTIONS(4697), - [anon_sym_Function] = ACTIONS(4703), - [anon_sym_function] = ACTIONS(4703), - [anon_sym_FUNCTION] = ACTIONS(4703), - [anon_sym_Include] = ACTIONS(4697), - [anon_sym_include] = ACTIONS(4697), - [anon_sym_INCLUDE] = ACTIONS(4697), - [anon_sym_New] = ACTIONS(4705), - [anon_sym_new] = ACTIONS(4705), - [anon_sym_NEW] = ACTIONS(4705), - [anon_sym_Package] = ACTIONS(4697), - [anon_sym_package] = ACTIONS(4697), - [anon_sym_PACKAGE] = ACTIONS(4697), - [anon_sym_Private] = ACTIONS(4697), - [anon_sym_private] = ACTIONS(4697), - [anon_sym_PRIVATE] = ACTIONS(4697), - [anon_sym_Public] = ACTIONS(4697), - [anon_sym_public] = ACTIONS(4697), - [anon_sym_PUBLIC] = ACTIONS(4697), - [anon_sym_Remote] = ACTIONS(4697), - [anon_sym_remote] = ACTIONS(4697), - [anon_sym_REMOTE] = ACTIONS(4697), - [anon_sym_Static] = ACTIONS(4697), - [anon_sym_static] = ACTIONS(4697), - [anon_sym_STATIC] = ACTIONS(4697), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1416)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(755), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1417)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(501), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1418)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(502), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1419)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(503), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1420)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(504), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1421)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(506), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1422)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4849), + [anon_sym_QueryExecute] = ACTIONS(4853), + [anon_sym_queryexecute] = ACTIONS(4853), + [anon_sym_QUERYEXECUTE] = ACTIONS(4853), + [anon_sym_queryExecute] = ACTIONS(4853), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4849), + [anon_sym_abstract] = ACTIONS(4849), + [anon_sym_ABSTRACT] = ACTIONS(4849), + [anon_sym_Component] = ACTIONS(4849), + [anon_sym_component] = ACTIONS(4849), + [anon_sym_COMPONENT] = ACTIONS(4849), + [anon_sym_Debugger] = ACTIONS(4849), + [anon_sym_debugger] = ACTIONS(4849), + [anon_sym_DEBUGGER] = ACTIONS(4849), + [anon_sym_Final] = ACTIONS(4849), + [anon_sym_final] = ACTIONS(4849), + [anon_sym_FINAL] = ACTIONS(4849), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4849), + [anon_sym_include] = ACTIONS(4849), + [anon_sym_INCLUDE] = ACTIONS(4849), + [anon_sym_New] = ACTIONS(4857), + [anon_sym_new] = ACTIONS(4857), + [anon_sym_NEW] = ACTIONS(4857), + [anon_sym_Package] = ACTIONS(4849), + [anon_sym_package] = ACTIONS(4849), + [anon_sym_PACKAGE] = ACTIONS(4849), + [anon_sym_Private] = ACTIONS(4849), + [anon_sym_private] = ACTIONS(4849), + [anon_sym_PRIVATE] = ACTIONS(4849), + [anon_sym_Public] = ACTIONS(4849), + [anon_sym_public] = ACTIONS(4849), + [anon_sym_PUBLIC] = ACTIONS(4849), + [anon_sym_Remote] = ACTIONS(4849), + [anon_sym_remote] = ACTIONS(4849), + [anon_sym_REMOTE] = ACTIONS(4849), + [anon_sym_Static] = ACTIONS(4849), + [anon_sym_static] = ACTIONS(4849), + [anon_sym_STATIC] = ACTIONS(4849), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1423)] = { - [sym_parenthesized_expression] = STATE(338), - [sym_expression] = STATE(3805), - [sym_primary_expression] = STATE(447), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(460), - [sym_new_expression] = STATE(544), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(338), - [sym_subscript_expression] = STATE(338), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(451), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(451), - [sym_undefined] = STATE(451), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(3617), - [sym_hash_expression] = STATE(3617), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4711), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4715), - [anon_sym_query] = ACTIONS(4715), - [anon_sym_QUERY] = ACTIONS(4715), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4715), - [anon_sym_set] = ACTIONS(4715), + [STATE(1499)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2473), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2487), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4849), + [anon_sym_query] = ACTIONS(4849), + [anon_sym_QUERY] = ACTIONS(4849), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4849), + [anon_sym_set] = ACTIONS(4849), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4717), - [anon_sym_export] = ACTIONS(4715), - [anon_sym_QueryExecute] = ACTIONS(4719), - [anon_sym_queryexecute] = ACTIONS(4719), - [anon_sym_QUERYEXECUTE] = ACTIONS(4719), - [anon_sym_queryExecute] = ACTIONS(4719), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4715), - [anon_sym_abstract] = ACTIONS(4715), - [anon_sym_ABSTRACT] = ACTIONS(4715), - [anon_sym_Component] = ACTIONS(4715), - [anon_sym_component] = ACTIONS(4715), - [anon_sym_COMPONENT] = ACTIONS(4715), - [anon_sym_Debugger] = ACTIONS(4715), - [anon_sym_debugger] = ACTIONS(4715), - [anon_sym_DEBUGGER] = ACTIONS(4715), - [anon_sym_Final] = ACTIONS(4715), - [anon_sym_final] = ACTIONS(4715), - [anon_sym_FINAL] = ACTIONS(4715), - [anon_sym_Function] = ACTIONS(4721), - [anon_sym_function] = ACTIONS(4721), - [anon_sym_FUNCTION] = ACTIONS(4721), - [anon_sym_Include] = ACTIONS(4715), - [anon_sym_include] = ACTIONS(4715), - [anon_sym_INCLUDE] = ACTIONS(4715), - [anon_sym_New] = ACTIONS(4723), - [anon_sym_new] = ACTIONS(4723), - [anon_sym_NEW] = ACTIONS(4723), - [anon_sym_Package] = ACTIONS(4715), - [anon_sym_package] = ACTIONS(4715), - [anon_sym_PACKAGE] = ACTIONS(4715), - [anon_sym_Private] = ACTIONS(4715), - [anon_sym_private] = ACTIONS(4715), - [anon_sym_PRIVATE] = ACTIONS(4715), - [anon_sym_Public] = ACTIONS(4715), - [anon_sym_public] = ACTIONS(4715), - [anon_sym_PUBLIC] = ACTIONS(4715), - [anon_sym_Remote] = ACTIONS(4715), - [anon_sym_remote] = ACTIONS(4715), - [anon_sym_REMOTE] = ACTIONS(4715), - [anon_sym_Static] = ACTIONS(4715), - [anon_sym_static] = ACTIONS(4715), - [anon_sym_STATIC] = ACTIONS(4715), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1424)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(508), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4849), + [anon_sym_QueryExecute] = ACTIONS(4853), + [anon_sym_queryexecute] = ACTIONS(4853), + [anon_sym_QUERYEXECUTE] = ACTIONS(4853), + [anon_sym_queryExecute] = ACTIONS(4853), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4849), + [anon_sym_abstract] = ACTIONS(4849), + [anon_sym_ABSTRACT] = ACTIONS(4849), + [anon_sym_Component] = ACTIONS(4849), + [anon_sym_component] = ACTIONS(4849), + [anon_sym_COMPONENT] = ACTIONS(4849), + [anon_sym_Debugger] = ACTIONS(4849), + [anon_sym_debugger] = ACTIONS(4849), + [anon_sym_DEBUGGER] = ACTIONS(4849), + [anon_sym_Final] = ACTIONS(4849), + [anon_sym_final] = ACTIONS(4849), + [anon_sym_FINAL] = ACTIONS(4849), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4849), + [anon_sym_include] = ACTIONS(4849), + [anon_sym_INCLUDE] = ACTIONS(4849), + [anon_sym_New] = ACTIONS(4857), + [anon_sym_new] = ACTIONS(4857), + [anon_sym_NEW] = ACTIONS(4857), + [anon_sym_Package] = ACTIONS(4849), + [anon_sym_package] = ACTIONS(4849), + [anon_sym_PACKAGE] = ACTIONS(4849), + [anon_sym_Private] = ACTIONS(4849), + [anon_sym_private] = ACTIONS(4849), + [anon_sym_PRIVATE] = ACTIONS(4849), + [anon_sym_Public] = ACTIONS(4849), + [anon_sym_public] = ACTIONS(4849), + [anon_sym_PUBLIC] = ACTIONS(4849), + [anon_sym_Remote] = ACTIONS(4849), + [anon_sym_remote] = ACTIONS(4849), + [anon_sym_REMOTE] = ACTIONS(4849), + [anon_sym_Static] = ACTIONS(4849), + [anon_sym_static] = ACTIONS(4849), + [anon_sym_STATIC] = ACTIONS(4849), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1425)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3250), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), + [STATE(1500)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3177), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(4819), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -250892,98 +260888,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1426)] = { - [sym_parenthesized_expression] = STATE(2321), + [STATE(1501)] = { + [sym_parenthesized_expression] = STATE(2340), [sym_expression] = STATE(3467), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_let] = ACTIONS(613), @@ -251025,7 +261021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(613), [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), + [sym_hash_empty] = ACTIONS(4088), [anon_sym_export] = ACTIONS(613), [anon_sym_QueryExecute] = ACTIONS(617), [anon_sym_queryexecute] = ACTIONS(617), @@ -251071,69 +261067,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1427)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3620), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1502)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3535), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1503)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3158), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -251152,98 +261278,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1428)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3504), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [STATE(1504)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3332), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1505)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2782), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2537), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2500), + [sym_hash_expression] = STATE(2500), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4783), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4767), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1506)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2783), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2537), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2585), + [sym_hash_expression] = STATE(2585), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4783), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4769), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1507)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3466), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_let] = ACTIONS(613), @@ -251285,7 +261801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(613), [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), + [sym_hash_empty] = ACTIONS(4088), [anon_sym_export] = ACTIONS(613), [anon_sym_QueryExecute] = ACTIONS(617), [anon_sym_queryexecute] = ACTIONS(617), @@ -251331,199 +261847,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1429)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3621), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1508)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3485), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1430)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2799), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1509)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3659), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -251542,248 +262058,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1431)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(2929), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1432)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3744), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1510)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3660), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -251802,358 +262188,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1433)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(1511)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1434)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3697), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(1512)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3547), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1435)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3472), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [STATE(1513)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3571), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_let] = ACTIONS(613), @@ -252195,7 +262581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(613), [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), + [sym_hash_empty] = ACTIONS(4088), [anon_sym_export] = ACTIONS(613), [anon_sym_QueryExecute] = ACTIONS(617), [anon_sym_queryexecute] = ACTIONS(617), @@ -252241,69 +262627,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1436)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3698), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1514)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(2926), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1515)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2460), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2465), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4875), + [anon_sym_query] = ACTIONS(4875), + [anon_sym_QUERY] = ACTIONS(4875), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4875), + [anon_sym_set] = ACTIONS(4875), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4875), + [anon_sym_QueryExecute] = ACTIONS(4877), + [anon_sym_queryexecute] = ACTIONS(4877), + [anon_sym_QUERYEXECUTE] = ACTIONS(4877), + [anon_sym_queryExecute] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4875), + [anon_sym_abstract] = ACTIONS(4875), + [anon_sym_ABSTRACT] = ACTIONS(4875), + [anon_sym_Component] = ACTIONS(4875), + [anon_sym_component] = ACTIONS(4875), + [anon_sym_COMPONENT] = ACTIONS(4875), + [anon_sym_Debugger] = ACTIONS(4875), + [anon_sym_debugger] = ACTIONS(4875), + [anon_sym_DEBUGGER] = ACTIONS(4875), + [anon_sym_Final] = ACTIONS(4875), + [anon_sym_final] = ACTIONS(4875), + [anon_sym_FINAL] = ACTIONS(4875), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4875), + [anon_sym_include] = ACTIONS(4875), + [anon_sym_INCLUDE] = ACTIONS(4875), + [anon_sym_New] = ACTIONS(4879), + [anon_sym_new] = ACTIONS(4879), + [anon_sym_NEW] = ACTIONS(4879), + [anon_sym_Package] = ACTIONS(4875), + [anon_sym_package] = ACTIONS(4875), + [anon_sym_PACKAGE] = ACTIONS(4875), + [anon_sym_Private] = ACTIONS(4875), + [anon_sym_private] = ACTIONS(4875), + [anon_sym_PRIVATE] = ACTIONS(4875), + [anon_sym_Public] = ACTIONS(4875), + [anon_sym_public] = ACTIONS(4875), + [anon_sym_PUBLIC] = ACTIONS(4875), + [anon_sym_Remote] = ACTIONS(4875), + [anon_sym_remote] = ACTIONS(4875), + [anon_sym_REMOTE] = ACTIONS(4875), + [anon_sym_Static] = ACTIONS(4875), + [anon_sym_static] = ACTIONS(4875), + [anon_sym_STATIC] = ACTIONS(4875), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1516)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3841), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -252322,98 +262968,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1437)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3432), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2436), - [sym_hash_expression] = STATE(2436), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [STATE(1517)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2473), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2487), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4875), + [anon_sym_query] = ACTIONS(4875), + [anon_sym_QUERY] = ACTIONS(4875), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4875), + [anon_sym_set] = ACTIONS(4875), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4875), + [anon_sym_QueryExecute] = ACTIONS(4877), + [anon_sym_queryexecute] = ACTIONS(4877), + [anon_sym_QUERYEXECUTE] = ACTIONS(4877), + [anon_sym_queryExecute] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4875), + [anon_sym_abstract] = ACTIONS(4875), + [anon_sym_ABSTRACT] = ACTIONS(4875), + [anon_sym_Component] = ACTIONS(4875), + [anon_sym_component] = ACTIONS(4875), + [anon_sym_COMPONENT] = ACTIONS(4875), + [anon_sym_Debugger] = ACTIONS(4875), + [anon_sym_debugger] = ACTIONS(4875), + [anon_sym_DEBUGGER] = ACTIONS(4875), + [anon_sym_Final] = ACTIONS(4875), + [anon_sym_final] = ACTIONS(4875), + [anon_sym_FINAL] = ACTIONS(4875), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4875), + [anon_sym_include] = ACTIONS(4875), + [anon_sym_INCLUDE] = ACTIONS(4875), + [anon_sym_New] = ACTIONS(4879), + [anon_sym_new] = ACTIONS(4879), + [anon_sym_NEW] = ACTIONS(4879), + [anon_sym_Package] = ACTIONS(4875), + [anon_sym_package] = ACTIONS(4875), + [anon_sym_PACKAGE] = ACTIONS(4875), + [anon_sym_Private] = ACTIONS(4875), + [anon_sym_private] = ACTIONS(4875), + [anon_sym_PRIVATE] = ACTIONS(4875), + [anon_sym_Public] = ACTIONS(4875), + [anon_sym_public] = ACTIONS(4875), + [anon_sym_PUBLIC] = ACTIONS(4875), + [anon_sym_Remote] = ACTIONS(4875), + [anon_sym_remote] = ACTIONS(4875), + [anon_sym_REMOTE] = ACTIONS(4875), + [anon_sym_Static] = ACTIONS(4875), + [anon_sym_static] = ACTIONS(4875), + [anon_sym_STATIC] = ACTIONS(4875), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1518)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_let] = ACTIONS(613), @@ -252455,7 +263231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(613), [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4767), + [sym_hash_empty] = ACTIONS(4088), [anon_sym_export] = ACTIONS(613), [anon_sym_QueryExecute] = ACTIONS(617), [anon_sym_queryexecute] = ACTIONS(617), @@ -252501,329 +263277,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1438)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3699), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1439)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3700), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1440)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3701), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1519)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3745), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -252842,118 +263358,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1441)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3692), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1520)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -252972,118 +263488,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1442)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3703), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1521)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3787), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -253102,118 +263618,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1443)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3705), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1522)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3788), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -253232,118 +263748,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1444)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3706), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1523)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -253362,118 +263878,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1445)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3707), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1524)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3790), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -253492,118 +264008,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1446)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3709), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1525)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3842), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -253622,118 +264138,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1447)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3710), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1526)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3708), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -253752,118 +264268,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1448)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3711), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1527)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3791), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -253882,118 +264398,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1449)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1528)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3792), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -254012,118 +264528,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1450)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3713), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1529)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3793), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -254142,118 +264658,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1451)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3737), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1530)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3794), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -254272,118 +264788,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1452)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3740), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1531)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -254402,118 +264918,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1453)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1532)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3796), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -254532,118 +265048,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1454)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3741), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1533)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3797), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -254662,638 +265178,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1455)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3743), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1534)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3798), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1456)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1457)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(716), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(639), - [sym_hash_expression] = STATE(639), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4771), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1458)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(671), - [sym_hash_expression] = STATE(671), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4773), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1459)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3670), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -255312,118 +265308,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1460)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3672), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1535)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3799), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -255442,118 +265438,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1461)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3673), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1536)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3800), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -255572,118 +265568,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1462)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3674), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1537)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3801), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -255702,118 +265698,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1463)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3676), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1538)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2534), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -255832,118 +265828,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1464)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1539)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -255962,118 +265958,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1465)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3678), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1540)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3802), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -256092,118 +266088,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1466)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1541)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3803), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -256222,118 +266218,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1467)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3680), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1542)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -256352,118 +266348,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1468)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3682), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1543)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(772), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(664), + [sym_hash_expression] = STATE(664), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4887), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1544)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(746), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(665), + [sym_hash_expression] = STATE(665), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4889), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1545)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3710), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -256482,118 +266738,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1469)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3683), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1546)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3711), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -256612,118 +266868,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1470)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3684), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1547)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -256742,118 +266998,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1471)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3685), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1548)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3713), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -256872,118 +267128,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1472)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3580), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1549)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3645), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -257002,118 +267258,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1473)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3581), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1550)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3714), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -257132,118 +267388,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1474)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3585), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1551)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3715), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -257262,118 +267518,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1475)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3612), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1552)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3716), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -257392,118 +267648,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1476)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3613), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [STATE(1553)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3717), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -257522,118 +267778,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1477)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3760), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1554)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3718), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -257652,118 +267908,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1478)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1555)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3719), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -257782,118 +268038,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1479)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1556)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3720), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -257912,508 +268168,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1480)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(770), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1481)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(511), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1482)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1483)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2832), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1557)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3721), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -258432,248 +268298,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1484)] = { - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(471), - [anon_sym_query] = ACTIONS(471), - [anon_sym_QUERY] = ACTIONS(471), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_Abstract] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Component] = ACTIONS(476), - [anon_sym_component] = ACTIONS(476), - [anon_sym_COMPONENT] = ACTIONS(476), - [anon_sym_Default] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_FINAL] = ACTIONS(471), - [anon_sym_Function] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_FUNCTION] = ACTIONS(471), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_Package] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_PACKAGE] = ACTIONS(471), - [anon_sym_Private] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_PRIVATE] = ACTIONS(471), - [anon_sym_Public] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_PUBLIC] = ACTIONS(471), - [anon_sym_Remote] = ACTIONS(471), - [anon_sym_remote] = ACTIONS(471), - [anon_sym_REMOTE] = ACTIONS(471), - [anon_sym_Static] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_STATIC] = ACTIONS(471), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(1485)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2833), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1558)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3722), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -258692,118 +268428,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1486)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2835), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1559)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3723), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -258822,118 +268558,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1487)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2836), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1560)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3441), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1561)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3724), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -258952,118 +268818,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1488)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2837), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1562)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3725), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -259082,118 +268948,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1489)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2838), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1563)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3442), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1564)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(3726), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -259212,118 +269208,1028 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1490)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2839), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1565)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3454), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1566)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3455), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1567)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3384), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1568)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3435), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1569)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3182), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1570)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3445), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1571)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3166), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1572)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -259342,113 +270248,763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1491)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2811), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2713), - [sym_hash_expression] = STATE(2713), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1573)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3179), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1574)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3185), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1575)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3214), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1576)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1577)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3302), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1578)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -259472,118 +271028,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4777), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1492)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2840), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1579)] = { + [sym_parenthesized_expression] = STATE(2326), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(2730), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2702), + [sym_new_expression] = STATE(2705), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2326), + [sym_subscript_expression] = STATE(2326), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2795), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2795), + [sym_undefined] = STATE(2795), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(3729), + [sym_hash_expression] = STATE(3729), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4897), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4897), + [anon_sym_query] = ACTIONS(4897), + [anon_sym_QUERY] = ACTIONS(4897), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4897), + [anon_sym_set] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4899), + [anon_sym_export] = ACTIONS(4897), + [anon_sym_QueryExecute] = ACTIONS(4901), + [anon_sym_queryexecute] = ACTIONS(4901), + [anon_sym_QUERYEXECUTE] = ACTIONS(4901), + [anon_sym_queryExecute] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4897), + [anon_sym_abstract] = ACTIONS(4897), + [anon_sym_ABSTRACT] = ACTIONS(4897), + [anon_sym_Component] = ACTIONS(4897), + [anon_sym_component] = ACTIONS(4897), + [anon_sym_COMPONENT] = ACTIONS(4897), + [anon_sym_Debugger] = ACTIONS(4897), + [anon_sym_debugger] = ACTIONS(4897), + [anon_sym_DEBUGGER] = ACTIONS(4897), + [anon_sym_Final] = ACTIONS(4897), + [anon_sym_final] = ACTIONS(4897), + [anon_sym_FINAL] = ACTIONS(4897), + [anon_sym_Function] = ACTIONS(4903), + [anon_sym_function] = ACTIONS(4903), + [anon_sym_FUNCTION] = ACTIONS(4903), + [anon_sym_Include] = ACTIONS(4897), + [anon_sym_include] = ACTIONS(4897), + [anon_sym_INCLUDE] = ACTIONS(4897), + [anon_sym_New] = ACTIONS(4905), + [anon_sym_new] = ACTIONS(4905), + [anon_sym_NEW] = ACTIONS(4905), + [anon_sym_Package] = ACTIONS(4897), + [anon_sym_package] = ACTIONS(4897), + [anon_sym_PACKAGE] = ACTIONS(4897), + [anon_sym_Private] = ACTIONS(4897), + [anon_sym_private] = ACTIONS(4897), + [anon_sym_PRIVATE] = ACTIONS(4897), + [anon_sym_Public] = ACTIONS(4897), + [anon_sym_public] = ACTIONS(4897), + [anon_sym_PUBLIC] = ACTIONS(4897), + [anon_sym_Remote] = ACTIONS(4897), + [anon_sym_remote] = ACTIONS(4897), + [anon_sym_REMOTE] = ACTIONS(4897), + [anon_sym_Static] = ACTIONS(4897), + [anon_sym_static] = ACTIONS(4897), + [anon_sym_STATIC] = ACTIONS(4897), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1580)] = { + [sym_parenthesized_expression] = STATE(2326), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(2732), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2702), + [sym_new_expression] = STATE(2733), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2326), + [sym_subscript_expression] = STATE(2326), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2795), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2795), + [sym_undefined] = STATE(2795), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(3729), + [sym_hash_expression] = STATE(3729), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4897), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4897), + [anon_sym_query] = ACTIONS(4897), + [anon_sym_QUERY] = ACTIONS(4897), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4897), + [anon_sym_set] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4899), + [anon_sym_export] = ACTIONS(4897), + [anon_sym_QueryExecute] = ACTIONS(4901), + [anon_sym_queryexecute] = ACTIONS(4901), + [anon_sym_QUERYEXECUTE] = ACTIONS(4901), + [anon_sym_queryExecute] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4897), + [anon_sym_abstract] = ACTIONS(4897), + [anon_sym_ABSTRACT] = ACTIONS(4897), + [anon_sym_Component] = ACTIONS(4897), + [anon_sym_component] = ACTIONS(4897), + [anon_sym_COMPONENT] = ACTIONS(4897), + [anon_sym_Debugger] = ACTIONS(4897), + [anon_sym_debugger] = ACTIONS(4897), + [anon_sym_DEBUGGER] = ACTIONS(4897), + [anon_sym_Final] = ACTIONS(4897), + [anon_sym_final] = ACTIONS(4897), + [anon_sym_FINAL] = ACTIONS(4897), + [anon_sym_Function] = ACTIONS(4903), + [anon_sym_function] = ACTIONS(4903), + [anon_sym_FUNCTION] = ACTIONS(4903), + [anon_sym_Include] = ACTIONS(4897), + [anon_sym_include] = ACTIONS(4897), + [anon_sym_INCLUDE] = ACTIONS(4897), + [anon_sym_New] = ACTIONS(4905), + [anon_sym_new] = ACTIONS(4905), + [anon_sym_NEW] = ACTIONS(4905), + [anon_sym_Package] = ACTIONS(4897), + [anon_sym_package] = ACTIONS(4897), + [anon_sym_PACKAGE] = ACTIONS(4897), + [anon_sym_Private] = ACTIONS(4897), + [anon_sym_private] = ACTIONS(4897), + [anon_sym_PRIVATE] = ACTIONS(4897), + [anon_sym_Public] = ACTIONS(4897), + [anon_sym_public] = ACTIONS(4897), + [anon_sym_PUBLIC] = ACTIONS(4897), + [anon_sym_Remote] = ACTIONS(4897), + [anon_sym_remote] = ACTIONS(4897), + [anon_sym_REMOTE] = ACTIONS(4897), + [anon_sym_Static] = ACTIONS(4897), + [anon_sym_static] = ACTIONS(4897), + [anon_sym_STATIC] = ACTIONS(4897), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1581)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3436), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1582)] = { + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(471), + [anon_sym_query] = ACTIONS(471), + [anon_sym_QUERY] = ACTIONS(471), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_Abstract] = ACTIONS(471), + [anon_sym_abstract] = ACTIONS(471), + [anon_sym_ABSTRACT] = ACTIONS(471), + [anon_sym_Component] = ACTIONS(476), + [anon_sym_component] = ACTIONS(476), + [anon_sym_COMPONENT] = ACTIONS(476), + [anon_sym_Default] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_DEFAULT] = ACTIONS(471), + [anon_sym_Final] = ACTIONS(471), + [anon_sym_final] = ACTIONS(471), + [anon_sym_FINAL] = ACTIONS(471), + [anon_sym_Function] = ACTIONS(471), + [anon_sym_function] = ACTIONS(471), + [anon_sym_FUNCTION] = ACTIONS(471), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_Interface] = ACTIONS(476), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_INTERFACE] = ACTIONS(476), + [anon_sym_Package] = ACTIONS(471), + [anon_sym_package] = ACTIONS(471), + [anon_sym_PACKAGE] = ACTIONS(471), + [anon_sym_Private] = ACTIONS(471), + [anon_sym_private] = ACTIONS(471), + [anon_sym_PRIVATE] = ACTIONS(471), + [anon_sym_Public] = ACTIONS(471), + [anon_sym_public] = ACTIONS(471), + [anon_sym_PUBLIC] = ACTIONS(471), + [anon_sym_Remote] = ACTIONS(471), + [anon_sym_remote] = ACTIONS(471), + [anon_sym_REMOTE] = ACTIONS(471), + [anon_sym_Static] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_STATIC] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(1583)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -259602,243 +271678,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1493)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(2841), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), + [STATE(1584)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3052), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2676), + [sym_hash_expression] = STATE(2676), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4823), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1494)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2812), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2716), - [sym_hash_expression] = STATE(2716), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1585)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3055), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2678), + [sym_hash_expression] = STATE(2678), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -259862,118 +271938,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4793), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4843), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1495)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2842), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1586)] = { + [sym_parenthesized_expression] = STATE(2428), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2428), + [sym_subscript_expression] = STATE(2428), + [sym_assignment_expression] = STATE(561), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3684), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3684), + [sym_undefined] = STATE(3684), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(598), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(517), + [anon_sym_query] = ACTIONS(517), + [anon_sym_QUERY] = ACTIONS(517), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -259992,633 +272068,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(517), + [anon_sym_QueryExecute] = ACTIONS(540), + [anon_sym_queryexecute] = ACTIONS(540), + [anon_sym_QUERYEXECUTE] = ACTIONS(540), + [anon_sym_queryExecute] = ACTIONS(540), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(517), + [anon_sym_abstract] = ACTIONS(517), + [anon_sym_ABSTRACT] = ACTIONS(517), + [anon_sym_Component] = ACTIONS(517), + [anon_sym_component] = ACTIONS(517), + [anon_sym_COMPONENT] = ACTIONS(517), + [anon_sym_Debugger] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_DEBUGGER] = ACTIONS(517), + [anon_sym_Final] = ACTIONS(517), + [anon_sym_final] = ACTIONS(517), + [anon_sym_FINAL] = ACTIONS(517), + [anon_sym_Function] = ACTIONS(1446), + [anon_sym_function] = ACTIONS(1446), + [anon_sym_FUNCTION] = ACTIONS(1446), + [anon_sym_Include] = ACTIONS(517), + [anon_sym_include] = ACTIONS(517), + [anon_sym_INCLUDE] = ACTIONS(517), + [anon_sym_New] = ACTIONS(546), + [anon_sym_new] = ACTIONS(546), + [anon_sym_NEW] = ACTIONS(546), + [anon_sym_Package] = ACTIONS(517), + [anon_sym_package] = ACTIONS(517), + [anon_sym_PACKAGE] = ACTIONS(517), + [anon_sym_Private] = ACTIONS(517), + [anon_sym_private] = ACTIONS(517), + [anon_sym_PRIVATE] = ACTIONS(517), + [anon_sym_Public] = ACTIONS(517), + [anon_sym_public] = ACTIONS(517), + [anon_sym_PUBLIC] = ACTIONS(517), + [anon_sym_Remote] = ACTIONS(517), + [anon_sym_remote] = ACTIONS(517), + [anon_sym_REMOTE] = ACTIONS(517), + [anon_sym_Static] = ACTIONS(517), + [anon_sym_static] = ACTIONS(517), + [anon_sym_STATIC] = ACTIONS(517), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1496)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3769), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1587)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3060), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1497)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2843), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1588)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3061), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1498)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2845), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1589)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3062), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1499)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2846), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1590)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3064), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1500)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2813), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1591)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3065), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -260642,113 +272718,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1501)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2814), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1592)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3066), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -260772,113 +272848,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1502)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2815), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1593)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3067), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -260902,113 +272978,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1503)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2817), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1594)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -261032,113 +273108,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1504)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1595)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3069), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -261162,113 +273238,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1505)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2819), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1596)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -261292,113 +273368,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1506)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2820), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1597)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3071), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -261422,113 +273498,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1507)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2821), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1598)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3072), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -261552,113 +273628,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1508)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2822), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1599)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3073), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -261682,113 +273758,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1509)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2823), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1600)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3074), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -261812,113 +273888,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1510)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2824), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1601)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2460), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2465), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4849), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4849), + [anon_sym_query] = ACTIONS(4849), + [anon_sym_QUERY] = ACTIONS(4849), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -261942,113 +274018,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [anon_sym_get] = ACTIONS(4849), + [anon_sym_set] = ACTIONS(4849), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4849), + [anon_sym_QueryExecute] = ACTIONS(4853), + [anon_sym_queryexecute] = ACTIONS(4853), + [anon_sym_QUERYEXECUTE] = ACTIONS(4853), + [anon_sym_queryExecute] = ACTIONS(4853), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4849), + [anon_sym_abstract] = ACTIONS(4849), + [anon_sym_ABSTRACT] = ACTIONS(4849), + [anon_sym_Component] = ACTIONS(4849), + [anon_sym_component] = ACTIONS(4849), + [anon_sym_COMPONENT] = ACTIONS(4849), + [anon_sym_Debugger] = ACTIONS(4849), + [anon_sym_debugger] = ACTIONS(4849), + [anon_sym_DEBUGGER] = ACTIONS(4849), + [anon_sym_Final] = ACTIONS(4849), + [anon_sym_final] = ACTIONS(4849), + [anon_sym_FINAL] = ACTIONS(4849), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4849), + [anon_sym_include] = ACTIONS(4849), + [anon_sym_INCLUDE] = ACTIONS(4849), + [anon_sym_New] = ACTIONS(4907), + [anon_sym_new] = ACTIONS(4907), + [anon_sym_NEW] = ACTIONS(4907), + [anon_sym_Package] = ACTIONS(4849), + [anon_sym_package] = ACTIONS(4849), + [anon_sym_PACKAGE] = ACTIONS(4849), + [anon_sym_Private] = ACTIONS(4849), + [anon_sym_private] = ACTIONS(4849), + [anon_sym_PRIVATE] = ACTIONS(4849), + [anon_sym_Public] = ACTIONS(4849), + [anon_sym_public] = ACTIONS(4849), + [anon_sym_PUBLIC] = ACTIONS(4849), + [anon_sym_Remote] = ACTIONS(4849), + [anon_sym_remote] = ACTIONS(4849), + [anon_sym_REMOTE] = ACTIONS(4849), + [anon_sym_Static] = ACTIONS(4849), + [anon_sym_static] = ACTIONS(4849), + [anon_sym_STATIC] = ACTIONS(4849), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1511)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1602)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2473), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2487), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4849), + [anon_sym_query] = ACTIONS(4849), + [anon_sym_QUERY] = ACTIONS(4849), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4849), + [anon_sym_set] = ACTIONS(4849), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4849), + [anon_sym_QueryExecute] = ACTIONS(4853), + [anon_sym_queryexecute] = ACTIONS(4853), + [anon_sym_QUERYEXECUTE] = ACTIONS(4853), + [anon_sym_queryExecute] = ACTIONS(4853), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4849), + [anon_sym_abstract] = ACTIONS(4849), + [anon_sym_ABSTRACT] = ACTIONS(4849), + [anon_sym_Component] = ACTIONS(4849), + [anon_sym_component] = ACTIONS(4849), + [anon_sym_COMPONENT] = ACTIONS(4849), + [anon_sym_Debugger] = ACTIONS(4849), + [anon_sym_debugger] = ACTIONS(4849), + [anon_sym_DEBUGGER] = ACTIONS(4849), + [anon_sym_Final] = ACTIONS(4849), + [anon_sym_final] = ACTIONS(4849), + [anon_sym_FINAL] = ACTIONS(4849), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4849), + [anon_sym_include] = ACTIONS(4849), + [anon_sym_INCLUDE] = ACTIONS(4849), + [anon_sym_New] = ACTIONS(4907), + [anon_sym_new] = ACTIONS(4907), + [anon_sym_NEW] = ACTIONS(4907), + [anon_sym_Package] = ACTIONS(4849), + [anon_sym_package] = ACTIONS(4849), + [anon_sym_PACKAGE] = ACTIONS(4849), + [anon_sym_Private] = ACTIONS(4849), + [anon_sym_private] = ACTIONS(4849), + [anon_sym_PRIVATE] = ACTIONS(4849), + [anon_sym_Public] = ACTIONS(4849), + [anon_sym_public] = ACTIONS(4849), + [anon_sym_PUBLIC] = ACTIONS(4849), + [anon_sym_Remote] = ACTIONS(4849), + [anon_sym_remote] = ACTIONS(4849), + [anon_sym_REMOTE] = ACTIONS(4849), + [anon_sym_Static] = ACTIONS(4849), + [anon_sym_static] = ACTIONS(4849), + [anon_sym_STATIC] = ACTIONS(4849), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), + }, + [STATE(1603)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3076), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -262072,113 +274278,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1512)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1604)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(613), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -262202,113 +274408,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1513)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2827), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1605)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2856), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1606)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3632), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2467), + [sym_hash_expression] = STATE(2467), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(613), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -262332,243 +274668,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4909), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1514)] = { - [sym_parenthesized_expression] = STATE(2125), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(2449), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2443), - [sym_new_expression] = STATE(2553), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2445), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2445), - [sym_undefined] = STATE(2445), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(3681), - [sym_hash_expression] = STATE(3681), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4799), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4799), - [anon_sym_query] = ACTIONS(4799), - [anon_sym_QUERY] = ACTIONS(4799), + [STATE(1607)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2871), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1608)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3839), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4799), - [anon_sym_set] = ACTIONS(4799), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4801), - [anon_sym_export] = ACTIONS(4799), - [anon_sym_QueryExecute] = ACTIONS(4803), - [anon_sym_queryexecute] = ACTIONS(4803), - [anon_sym_QUERYEXECUTE] = ACTIONS(4803), - [anon_sym_queryExecute] = ACTIONS(4803), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4799), - [anon_sym_abstract] = ACTIONS(4799), - [anon_sym_ABSTRACT] = ACTIONS(4799), - [anon_sym_Component] = ACTIONS(4799), - [anon_sym_component] = ACTIONS(4799), - [anon_sym_COMPONENT] = ACTIONS(4799), - [anon_sym_Debugger] = ACTIONS(4799), - [anon_sym_debugger] = ACTIONS(4799), - [anon_sym_DEBUGGER] = ACTIONS(4799), - [anon_sym_Final] = ACTIONS(4799), - [anon_sym_final] = ACTIONS(4799), - [anon_sym_FINAL] = ACTIONS(4799), - [anon_sym_Function] = ACTIONS(4805), - [anon_sym_function] = ACTIONS(4805), - [anon_sym_FUNCTION] = ACTIONS(4805), - [anon_sym_Include] = ACTIONS(4799), - [anon_sym_include] = ACTIONS(4799), - [anon_sym_INCLUDE] = ACTIONS(4799), - [anon_sym_New] = ACTIONS(4807), - [anon_sym_new] = ACTIONS(4807), - [anon_sym_NEW] = ACTIONS(4807), - [anon_sym_Package] = ACTIONS(4799), - [anon_sym_package] = ACTIONS(4799), - [anon_sym_PACKAGE] = ACTIONS(4799), - [anon_sym_Private] = ACTIONS(4799), - [anon_sym_private] = ACTIONS(4799), - [anon_sym_PRIVATE] = ACTIONS(4799), - [anon_sym_Public] = ACTIONS(4799), - [anon_sym_public] = ACTIONS(4799), - [anon_sym_PUBLIC] = ACTIONS(4799), - [anon_sym_Remote] = ACTIONS(4799), - [anon_sym_remote] = ACTIONS(4799), - [anon_sym_REMOTE] = ACTIONS(4799), - [anon_sym_Static] = ACTIONS(4799), - [anon_sym_static] = ACTIONS(4799), - [anon_sym_STATIC] = ACTIONS(4799), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1515)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2828), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1609)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(3092), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -262592,118 +275058,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1516)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2847), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1610)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -262722,118 +275188,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1517)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2848), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1611)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2921), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -262852,118 +275318,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1518)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2849), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1612)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2924), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -262982,118 +275448,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1519)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4809), - [anon_sym_LBRACE] = ACTIONS(4811), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4813), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4813), - [anon_sym_query] = ACTIONS(4813), - [anon_sym_QUERY] = ACTIONS(4813), + [STATE(1613)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2925), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -263112,118 +275578,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4813), - [anon_sym_set] = ACTIONS(4813), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4813), - [anon_sym_QueryExecute] = ACTIONS(4815), - [anon_sym_queryexecute] = ACTIONS(4815), - [anon_sym_QUERYEXECUTE] = ACTIONS(4815), - [anon_sym_queryExecute] = ACTIONS(4815), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4813), - [anon_sym_abstract] = ACTIONS(4813), - [anon_sym_ABSTRACT] = ACTIONS(4813), - [anon_sym_Component] = ACTIONS(4813), - [anon_sym_component] = ACTIONS(4813), - [anon_sym_COMPONENT] = ACTIONS(4813), - [anon_sym_Debugger] = ACTIONS(4813), - [anon_sym_debugger] = ACTIONS(4813), - [anon_sym_DEBUGGER] = ACTIONS(4813), - [anon_sym_Final] = ACTIONS(4813), - [anon_sym_final] = ACTIONS(4813), - [anon_sym_FINAL] = ACTIONS(4813), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4813), - [anon_sym_include] = ACTIONS(4813), - [anon_sym_INCLUDE] = ACTIONS(4813), - [anon_sym_New] = ACTIONS(4817), - [anon_sym_new] = ACTIONS(4817), - [anon_sym_NEW] = ACTIONS(4817), - [anon_sym_Package] = ACTIONS(4813), - [anon_sym_package] = ACTIONS(4813), - [anon_sym_PACKAGE] = ACTIONS(4813), - [anon_sym_Private] = ACTIONS(4813), - [anon_sym_private] = ACTIONS(4813), - [anon_sym_PRIVATE] = ACTIONS(4813), - [anon_sym_Public] = ACTIONS(4813), - [anon_sym_public] = ACTIONS(4813), - [anon_sym_PUBLIC] = ACTIONS(4813), - [anon_sym_Remote] = ACTIONS(4813), - [anon_sym_remote] = ACTIONS(4813), - [anon_sym_REMOTE] = ACTIONS(4813), - [anon_sym_Static] = ACTIONS(4813), - [anon_sym_static] = ACTIONS(4813), - [anon_sym_STATIC] = ACTIONS(4813), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1520)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2853), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1614)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2927), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -263242,118 +275708,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1521)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3308), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4474), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2344), - [sym_subscript_expression] = STATE(2344), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4474), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3027), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3027), - [sym_undefined] = STATE(3027), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4819), + [STATE(1615)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2928), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4821), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4821), - [anon_sym_query] = ACTIONS(4821), - [anon_sym_QUERY] = ACTIONS(4821), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -263372,1678 +275838,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4821), - [anon_sym_set] = ACTIONS(4821), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4821), - [anon_sym_QueryExecute] = ACTIONS(4823), - [anon_sym_queryexecute] = ACTIONS(4823), - [anon_sym_QUERYEXECUTE] = ACTIONS(4823), - [anon_sym_queryExecute] = ACTIONS(4823), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4821), - [anon_sym_abstract] = ACTIONS(4821), - [anon_sym_ABSTRACT] = ACTIONS(4821), - [anon_sym_Component] = ACTIONS(4821), - [anon_sym_component] = ACTIONS(4821), - [anon_sym_COMPONENT] = ACTIONS(4821), - [anon_sym_Debugger] = ACTIONS(4821), - [anon_sym_debugger] = ACTIONS(4821), - [anon_sym_DEBUGGER] = ACTIONS(4821), - [anon_sym_Final] = ACTIONS(4821), - [anon_sym_final] = ACTIONS(4821), - [anon_sym_FINAL] = ACTIONS(4821), - [anon_sym_Function] = ACTIONS(4825), - [anon_sym_function] = ACTIONS(4825), - [anon_sym_FUNCTION] = ACTIONS(4825), - [anon_sym_Include] = ACTIONS(4821), - [anon_sym_include] = ACTIONS(4821), - [anon_sym_INCLUDE] = ACTIONS(4821), - [anon_sym_New] = ACTIONS(4827), - [anon_sym_new] = ACTIONS(4827), - [anon_sym_NEW] = ACTIONS(4827), - [anon_sym_Package] = ACTIONS(4821), - [anon_sym_package] = ACTIONS(4821), - [anon_sym_PACKAGE] = ACTIONS(4821), - [anon_sym_Private] = ACTIONS(4821), - [anon_sym_private] = ACTIONS(4821), - [anon_sym_PRIVATE] = ACTIONS(4821), - [anon_sym_Public] = ACTIONS(4821), - [anon_sym_public] = ACTIONS(4821), - [anon_sym_PUBLIC] = ACTIONS(4821), - [anon_sym_Remote] = ACTIONS(4821), - [anon_sym_remote] = ACTIONS(4821), - [anon_sym_REMOTE] = ACTIONS(4821), - [anon_sym_Static] = ACTIONS(4821), - [anon_sym_static] = ACTIONS(4821), - [anon_sym_STATIC] = ACTIONS(4821), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1522)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1523)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1524)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3123), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1525)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3124), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1526)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3125), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1527)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1528)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1529)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3132), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1530)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3133), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1531)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3134), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1532)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3135), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), + [STATE(1616)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2929), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1533)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2831), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), + [STATE(1617)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2930), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1534)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1618)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2935), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -265062,898 +276228,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1535)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3137), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), + [STATE(1619)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2936), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1536)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3140), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), + [STATE(1620)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2938), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1537)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3142), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), + [STATE(1621)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2939), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1538)] = { - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(3812), - [sym_primary_expression] = STATE(2667), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2868), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2639), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2639), - [sym_undefined] = STATE(2639), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(3642), - [sym_hash_expression] = STATE(3642), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(4831), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4833), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4833), - [anon_sym_query] = ACTIONS(4833), - [anon_sym_QUERY] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4833), - [anon_sym_set] = ACTIONS(4833), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4835), - [anon_sym_export] = ACTIONS(4833), - [anon_sym_QueryExecute] = ACTIONS(4837), - [anon_sym_queryexecute] = ACTIONS(4837), - [anon_sym_QUERYEXECUTE] = ACTIONS(4837), - [anon_sym_queryExecute] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4833), - [anon_sym_abstract] = ACTIONS(4833), - [anon_sym_ABSTRACT] = ACTIONS(4833), - [anon_sym_Component] = ACTIONS(4833), - [anon_sym_component] = ACTIONS(4833), - [anon_sym_COMPONENT] = ACTIONS(4833), - [anon_sym_Debugger] = ACTIONS(4833), - [anon_sym_debugger] = ACTIONS(4833), - [anon_sym_DEBUGGER] = ACTIONS(4833), - [anon_sym_Final] = ACTIONS(4833), - [anon_sym_final] = ACTIONS(4833), - [anon_sym_FINAL] = ACTIONS(4833), - [anon_sym_Function] = ACTIONS(4839), - [anon_sym_function] = ACTIONS(4839), - [anon_sym_FUNCTION] = ACTIONS(4839), - [anon_sym_Include] = ACTIONS(4833), - [anon_sym_include] = ACTIONS(4833), - [anon_sym_INCLUDE] = ACTIONS(4833), - [anon_sym_New] = ACTIONS(4841), - [anon_sym_new] = ACTIONS(4841), - [anon_sym_NEW] = ACTIONS(4841), - [anon_sym_Package] = ACTIONS(4833), - [anon_sym_package] = ACTIONS(4833), - [anon_sym_PACKAGE] = ACTIONS(4833), - [anon_sym_Private] = ACTIONS(4833), - [anon_sym_private] = ACTIONS(4833), - [anon_sym_PRIVATE] = ACTIONS(4833), - [anon_sym_Public] = ACTIONS(4833), - [anon_sym_public] = ACTIONS(4833), - [anon_sym_PUBLIC] = ACTIONS(4833), - [anon_sym_Remote] = ACTIONS(4833), - [anon_sym_remote] = ACTIONS(4833), - [anon_sym_REMOTE] = ACTIONS(4833), - [anon_sym_Static] = ACTIONS(4833), - [anon_sym_static] = ACTIONS(4833), - [anon_sym_STATIC] = ACTIONS(4833), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1539)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3146), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), + [STATE(1622)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2940), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1540)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3354), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1541)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(554), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), + [STATE(1623)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2941), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -265972,248 +276878,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1542)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3179), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), + [STATE(1624)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1543)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3559), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1625)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2735), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -266232,638 +277138,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1544)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [STATE(1626)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2748), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1545)] = { - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(471), - [anon_sym_query] = ACTIONS(471), - [anon_sym_QUERY] = ACTIONS(471), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [anon_sym_Abstract] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Component] = ACTIONS(476), - [anon_sym_component] = ACTIONS(476), - [anon_sym_COMPONENT] = ACTIONS(476), - [anon_sym_Default] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_FINAL] = ACTIONS(471), - [anon_sym_Function] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_FUNCTION] = ACTIONS(471), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_Package] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_PACKAGE] = ACTIONS(471), - [anon_sym_Private] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_PRIVATE] = ACTIONS(471), - [anon_sym_Public] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_PUBLIC] = ACTIONS(471), - [anon_sym_Remote] = ACTIONS(471), - [anon_sym_remote] = ACTIONS(471), - [anon_sym_REMOTE] = ACTIONS(471), - [anon_sym_Static] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_STATIC] = ACTIONS(471), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(1546)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3375), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1547)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3376), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), + [STATE(1627)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2700), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1548)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1628)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2707), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -266882,118 +277528,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1549)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2749), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1629)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2671), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -267012,118 +277658,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1550)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2752), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1630)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -267142,118 +277788,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1551)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2753), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1631)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2687), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -267272,118 +277918,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1552)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1632)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2689), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -267402,118 +278048,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1553)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1633)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2690), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -267532,118 +278178,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1554)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2618), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1634)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2691), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -267662,118 +278308,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1555)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1635)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2692), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -267792,118 +278438,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1556)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2621), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1636)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2693), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -267922,118 +278568,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1557)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2623), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1637)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2694), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -268052,118 +278698,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1558)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2624), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1638)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2695), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -268182,118 +278828,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1559)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2625), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1639)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2696), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -268312,118 +278958,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1560)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2626), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1640)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2697), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -268442,118 +279088,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1561)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1641)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3373), + [sym_new_expression] = STATE(3217), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4913), + [anon_sym_query] = ACTIONS(4913), + [anon_sym_QUERY] = ACTIONS(4913), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -268572,118 +279218,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4913), + [anon_sym_set] = ACTIONS(4913), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4913), + [anon_sym_QueryExecute] = ACTIONS(4915), + [anon_sym_queryexecute] = ACTIONS(4915), + [anon_sym_QUERYEXECUTE] = ACTIONS(4915), + [anon_sym_queryExecute] = ACTIONS(4915), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4913), + [anon_sym_abstract] = ACTIONS(4913), + [anon_sym_ABSTRACT] = ACTIONS(4913), + [anon_sym_Component] = ACTIONS(4913), + [anon_sym_component] = ACTIONS(4913), + [anon_sym_COMPONENT] = ACTIONS(4913), + [anon_sym_Debugger] = ACTIONS(4913), + [anon_sym_debugger] = ACTIONS(4913), + [anon_sym_DEBUGGER] = ACTIONS(4913), + [anon_sym_Final] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_FINAL] = ACTIONS(4913), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4913), + [anon_sym_include] = ACTIONS(4913), + [anon_sym_INCLUDE] = ACTIONS(4913), + [anon_sym_New] = ACTIONS(4917), + [anon_sym_new] = ACTIONS(4917), + [anon_sym_NEW] = ACTIONS(4917), + [anon_sym_Package] = ACTIONS(4913), + [anon_sym_package] = ACTIONS(4913), + [anon_sym_PACKAGE] = ACTIONS(4913), + [anon_sym_Private] = ACTIONS(4913), + [anon_sym_private] = ACTIONS(4913), + [anon_sym_PRIVATE] = ACTIONS(4913), + [anon_sym_Public] = ACTIONS(4913), + [anon_sym_public] = ACTIONS(4913), + [anon_sym_PUBLIC] = ACTIONS(4913), + [anon_sym_Remote] = ACTIONS(4913), + [anon_sym_remote] = ACTIONS(4913), + [anon_sym_REMOTE] = ACTIONS(4913), + [anon_sym_Static] = ACTIONS(4913), + [anon_sym_static] = ACTIONS(4913), + [anon_sym_STATIC] = ACTIONS(4913), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1562)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2631), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1642)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3373), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4913), + [anon_sym_query] = ACTIONS(4913), + [anon_sym_QUERY] = ACTIONS(4913), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -268702,118 +279348,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4913), + [anon_sym_set] = ACTIONS(4913), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4913), + [anon_sym_QueryExecute] = ACTIONS(4915), + [anon_sym_queryexecute] = ACTIONS(4915), + [anon_sym_QUERYEXECUTE] = ACTIONS(4915), + [anon_sym_queryExecute] = ACTIONS(4915), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4913), + [anon_sym_abstract] = ACTIONS(4913), + [anon_sym_ABSTRACT] = ACTIONS(4913), + [anon_sym_Component] = ACTIONS(4913), + [anon_sym_component] = ACTIONS(4913), + [anon_sym_COMPONENT] = ACTIONS(4913), + [anon_sym_Debugger] = ACTIONS(4913), + [anon_sym_debugger] = ACTIONS(4913), + [anon_sym_DEBUGGER] = ACTIONS(4913), + [anon_sym_Final] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_FINAL] = ACTIONS(4913), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4913), + [anon_sym_include] = ACTIONS(4913), + [anon_sym_INCLUDE] = ACTIONS(4913), + [anon_sym_New] = ACTIONS(4917), + [anon_sym_new] = ACTIONS(4917), + [anon_sym_NEW] = ACTIONS(4917), + [anon_sym_Package] = ACTIONS(4913), + [anon_sym_package] = ACTIONS(4913), + [anon_sym_PACKAGE] = ACTIONS(4913), + [anon_sym_Private] = ACTIONS(4913), + [anon_sym_private] = ACTIONS(4913), + [anon_sym_PRIVATE] = ACTIONS(4913), + [anon_sym_Public] = ACTIONS(4913), + [anon_sym_public] = ACTIONS(4913), + [anon_sym_PUBLIC] = ACTIONS(4913), + [anon_sym_Remote] = ACTIONS(4913), + [anon_sym_remote] = ACTIONS(4913), + [anon_sym_REMOTE] = ACTIONS(4913), + [anon_sym_Static] = ACTIONS(4913), + [anon_sym_static] = ACTIONS(4913), + [anon_sym_STATIC] = ACTIONS(4913), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1563)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2634), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1643)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2698), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -268832,118 +279478,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1564)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2636), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1644)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2699), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -268962,118 +279608,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1565)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3368), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4857), - [anon_sym_LBRACE] = ACTIONS(4811), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4859), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4859), - [anon_sym_query] = ACTIONS(4859), - [anon_sym_QUERY] = ACTIONS(4859), + [STATE(1645)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3516), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3056), + [sym_hash_expression] = STATE(3056), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4919), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1646)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3549), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3079), + [sym_hash_expression] = STATE(3079), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4921), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1647)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2942), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -269092,118 +279998,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4859), - [anon_sym_set] = ACTIONS(4859), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4859), - [anon_sym_QueryExecute] = ACTIONS(4861), - [anon_sym_queryexecute] = ACTIONS(4861), - [anon_sym_QUERYEXECUTE] = ACTIONS(4861), - [anon_sym_queryExecute] = ACTIONS(4861), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4859), - [anon_sym_abstract] = ACTIONS(4859), - [anon_sym_ABSTRACT] = ACTIONS(4859), - [anon_sym_Component] = ACTIONS(4859), - [anon_sym_component] = ACTIONS(4859), - [anon_sym_COMPONENT] = ACTIONS(4859), - [anon_sym_Debugger] = ACTIONS(4859), - [anon_sym_debugger] = ACTIONS(4859), - [anon_sym_DEBUGGER] = ACTIONS(4859), - [anon_sym_Final] = ACTIONS(4859), - [anon_sym_final] = ACTIONS(4859), - [anon_sym_FINAL] = ACTIONS(4859), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4859), - [anon_sym_include] = ACTIONS(4859), - [anon_sym_INCLUDE] = ACTIONS(4859), - [anon_sym_New] = ACTIONS(4863), - [anon_sym_new] = ACTIONS(4863), - [anon_sym_NEW] = ACTIONS(4863), - [anon_sym_Package] = ACTIONS(4859), - [anon_sym_package] = ACTIONS(4859), - [anon_sym_PACKAGE] = ACTIONS(4859), - [anon_sym_Private] = ACTIONS(4859), - [anon_sym_private] = ACTIONS(4859), - [anon_sym_PRIVATE] = ACTIONS(4859), - [anon_sym_Public] = ACTIONS(4859), - [anon_sym_public] = ACTIONS(4859), - [anon_sym_PUBLIC] = ACTIONS(4859), - [anon_sym_Remote] = ACTIONS(4859), - [anon_sym_remote] = ACTIONS(4859), - [anon_sym_REMOTE] = ACTIONS(4859), - [anon_sym_Static] = ACTIONS(4859), - [anon_sym_static] = ACTIONS(4859), - [anon_sym_STATIC] = ACTIONS(4859), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1566)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1648)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -269222,118 +280128,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1567)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1649)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2534), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4925), + [anon_sym_query] = ACTIONS(4925), + [anon_sym_QUERY] = ACTIONS(4925), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -269352,508 +280258,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4925), + [anon_sym_set] = ACTIONS(4925), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4925), + [anon_sym_QueryExecute] = ACTIONS(4927), + [anon_sym_queryexecute] = ACTIONS(4927), + [anon_sym_QUERYEXECUTE] = ACTIONS(4927), + [anon_sym_queryExecute] = ACTIONS(4927), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4925), + [anon_sym_abstract] = ACTIONS(4925), + [anon_sym_ABSTRACT] = ACTIONS(4925), + [anon_sym_Component] = ACTIONS(4925), + [anon_sym_component] = ACTIONS(4925), + [anon_sym_COMPONENT] = ACTIONS(4925), + [anon_sym_Debugger] = ACTIONS(4925), + [anon_sym_debugger] = ACTIONS(4925), + [anon_sym_DEBUGGER] = ACTIONS(4925), + [anon_sym_Final] = ACTIONS(4925), + [anon_sym_final] = ACTIONS(4925), + [anon_sym_FINAL] = ACTIONS(4925), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4925), + [anon_sym_include] = ACTIONS(4925), + [anon_sym_INCLUDE] = ACTIONS(4925), + [anon_sym_New] = ACTIONS(4929), + [anon_sym_new] = ACTIONS(4929), + [anon_sym_NEW] = ACTIONS(4929), + [anon_sym_Package] = ACTIONS(4925), + [anon_sym_package] = ACTIONS(4925), + [anon_sym_PACKAGE] = ACTIONS(4925), + [anon_sym_Private] = ACTIONS(4925), + [anon_sym_private] = ACTIONS(4925), + [anon_sym_PRIVATE] = ACTIONS(4925), + [anon_sym_Public] = ACTIONS(4925), + [anon_sym_public] = ACTIONS(4925), + [anon_sym_PUBLIC] = ACTIONS(4925), + [anon_sym_Remote] = ACTIONS(4925), + [anon_sym_remote] = ACTIONS(4925), + [anon_sym_REMOTE] = ACTIONS(4925), + [anon_sym_Static] = ACTIONS(4925), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_STATIC] = ACTIONS(4925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1568)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3545), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(2854), - [sym_hash_expression] = STATE(2854), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4865), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1569)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3565), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(2859), - [sym_hash_expression] = STATE(2859), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4867), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1570)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3377), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1571)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(1650)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4925), + [anon_sym_query] = ACTIONS(4925), + [anon_sym_QUERY] = ACTIONS(4925), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -269872,454 +280388,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4925), + [anon_sym_set] = ACTIONS(4925), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4925), + [anon_sym_QueryExecute] = ACTIONS(4927), + [anon_sym_queryexecute] = ACTIONS(4927), + [anon_sym_QUERYEXECUTE] = ACTIONS(4927), + [anon_sym_queryExecute] = ACTIONS(4927), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4925), + [anon_sym_abstract] = ACTIONS(4925), + [anon_sym_ABSTRACT] = ACTIONS(4925), + [anon_sym_Component] = ACTIONS(4925), + [anon_sym_component] = ACTIONS(4925), + [anon_sym_COMPONENT] = ACTIONS(4925), + [anon_sym_Debugger] = ACTIONS(4925), + [anon_sym_debugger] = ACTIONS(4925), + [anon_sym_DEBUGGER] = ACTIONS(4925), + [anon_sym_Final] = ACTIONS(4925), + [anon_sym_final] = ACTIONS(4925), + [anon_sym_FINAL] = ACTIONS(4925), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4925), + [anon_sym_include] = ACTIONS(4925), + [anon_sym_INCLUDE] = ACTIONS(4925), + [anon_sym_New] = ACTIONS(4929), + [anon_sym_new] = ACTIONS(4929), + [anon_sym_NEW] = ACTIONS(4929), + [anon_sym_Package] = ACTIONS(4925), + [anon_sym_package] = ACTIONS(4925), + [anon_sym_PACKAGE] = ACTIONS(4925), + [anon_sym_Private] = ACTIONS(4925), + [anon_sym_private] = ACTIONS(4925), + [anon_sym_PRIVATE] = ACTIONS(4925), + [anon_sym_Public] = ACTIONS(4925), + [anon_sym_public] = ACTIONS(4925), + [anon_sym_PUBLIC] = ACTIONS(4925), + [anon_sym_Remote] = ACTIONS(4925), + [anon_sym_remote] = ACTIONS(4925), + [anon_sym_REMOTE] = ACTIONS(4925), + [anon_sym_Static] = ACTIONS(4925), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_STATIC] = ACTIONS(4925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1572)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3426), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1573)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3468), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1574)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3557), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1575)] = { - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [STATE(1651)] = { + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [sym_identifier] = ACTIONS(471), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -270441,69 +280567,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(1576)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3583), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1652)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(2944), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -270522,503 +280648,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), [anon_sym_Function] = ACTIONS(3261), [anon_sym_function] = ACTIONS(3261), [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1577)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3420), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1578)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3793), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2686), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1579)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3422), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1580)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2770), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1653)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2790), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2424), - [sym_hash_expression] = STATE(2424), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2467), + [sym_hash_expression] = STATE(2467), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -271042,113 +280778,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4875), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4909), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1581)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2703), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1654)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2792), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2436), - [sym_hash_expression] = STATE(2436), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2455), + [sym_hash_expression] = STATE(2455), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -271172,633 +280908,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4767), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4711), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1582)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3431), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1583)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3435), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1584)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3474), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1585)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3477), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), + [STATE(1655)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, - [STATE(1586)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1656)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2806), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -271822,113 +281168,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1587)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2711), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1657)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2811), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -271952,113 +281298,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1588)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2719), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1658)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2826), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -272082,113 +281428,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1589)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1659)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2827), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -272212,113 +281558,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1590)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2723), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1660)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -272342,113 +281688,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1591)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2724), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1661)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2654), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -272472,113 +281818,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1592)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1662)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -272602,113 +281948,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1593)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2727), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1663)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -272732,113 +282078,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1594)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2728), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1664)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -272862,113 +282208,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1595)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2730), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1665)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -272992,113 +282338,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1596)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1666)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2659), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -273122,113 +282468,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1597)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2733), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1667)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -273252,113 +282598,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1598)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2734), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1668)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -273382,113 +282728,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1599)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1669)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -273512,243 +282858,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1600)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1601)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2738), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1670)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2664), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -273772,1153 +282988,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1602)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3532), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1603)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3533), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1604)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3553), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1605)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3555), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1606)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3378), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1607)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3379), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), + [STATE(1671)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3461), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1608)] = { - [sym_parenthesized_expression] = STATE(2340), - [sym_expression] = STATE(3809), - [sym_primary_expression] = STATE(2920), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2955), - [sym_new_expression] = STATE(3171), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2340), - [sym_subscript_expression] = STATE(2340), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2946), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(2946), - [sym_undefined] = STATE(2946), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3652), - [sym_hash_expression] = STATE(3652), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4887), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4887), - [anon_sym_query] = ACTIONS(4887), - [anon_sym_QUERY] = ACTIONS(4887), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4887), - [anon_sym_set] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4889), - [anon_sym_export] = ACTIONS(4887), - [anon_sym_QueryExecute] = ACTIONS(4891), - [anon_sym_queryexecute] = ACTIONS(4891), - [anon_sym_QUERYEXECUTE] = ACTIONS(4891), - [anon_sym_queryExecute] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4887), - [anon_sym_abstract] = ACTIONS(4887), - [anon_sym_ABSTRACT] = ACTIONS(4887), - [anon_sym_Component] = ACTIONS(4887), - [anon_sym_component] = ACTIONS(4887), - [anon_sym_COMPONENT] = ACTIONS(4887), - [anon_sym_Debugger] = ACTIONS(4887), - [anon_sym_debugger] = ACTIONS(4887), - [anon_sym_DEBUGGER] = ACTIONS(4887), - [anon_sym_Final] = ACTIONS(4887), - [anon_sym_final] = ACTIONS(4887), - [anon_sym_FINAL] = ACTIONS(4887), - [anon_sym_Function] = ACTIONS(4893), - [anon_sym_function] = ACTIONS(4893), - [anon_sym_FUNCTION] = ACTIONS(4893), - [anon_sym_Include] = ACTIONS(4887), - [anon_sym_include] = ACTIONS(4887), - [anon_sym_INCLUDE] = ACTIONS(4887), - [anon_sym_New] = ACTIONS(4895), - [anon_sym_new] = ACTIONS(4895), - [anon_sym_NEW] = ACTIONS(4895), - [anon_sym_Package] = ACTIONS(4887), - [anon_sym_package] = ACTIONS(4887), - [anon_sym_PACKAGE] = ACTIONS(4887), - [anon_sym_Private] = ACTIONS(4887), - [anon_sym_private] = ACTIONS(4887), - [anon_sym_PRIVATE] = ACTIONS(4887), - [anon_sym_Public] = ACTIONS(4887), - [anon_sym_public] = ACTIONS(4887), - [anon_sym_PUBLIC] = ACTIONS(4887), - [anon_sym_Remote] = ACTIONS(4887), - [anon_sym_remote] = ACTIONS(4887), - [anon_sym_REMOTE] = ACTIONS(4887), - [anon_sym_Static] = ACTIONS(4887), - [anon_sym_static] = ACTIONS(4887), - [anon_sym_STATIC] = ACTIONS(4887), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1609)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3502), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1610)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), + [STATE(1672)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4783), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4783), + [anon_sym_query] = ACTIONS(4783), + [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4785), + [anon_sym_DASH_DASH] = ACTIONS(4785), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -274942,118 +283248,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4783), + [anon_sym_set] = ACTIONS(4783), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4783), + [anon_sym_QueryExecute] = ACTIONS(4787), + [anon_sym_queryexecute] = ACTIONS(4787), + [anon_sym_QUERYEXECUTE] = ACTIONS(4787), + [anon_sym_queryExecute] = ACTIONS(4787), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_ABSTRACT] = ACTIONS(4783), + [anon_sym_Component] = ACTIONS(4783), + [anon_sym_component] = ACTIONS(4783), + [anon_sym_COMPONENT] = ACTIONS(4783), + [anon_sym_Debugger] = ACTIONS(4783), + [anon_sym_debugger] = ACTIONS(4783), + [anon_sym_DEBUGGER] = ACTIONS(4783), + [anon_sym_Final] = ACTIONS(4783), + [anon_sym_final] = ACTIONS(4783), + [anon_sym_FINAL] = ACTIONS(4783), + [anon_sym_Function] = ACTIONS(4789), + [anon_sym_function] = ACTIONS(4789), + [anon_sym_FUNCTION] = ACTIONS(4789), + [anon_sym_Include] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_INCLUDE] = ACTIONS(4783), + [anon_sym_New] = ACTIONS(4791), + [anon_sym_new] = ACTIONS(4791), + [anon_sym_NEW] = ACTIONS(4791), + [anon_sym_Package] = ACTIONS(4783), + [anon_sym_package] = ACTIONS(4783), + [anon_sym_PACKAGE] = ACTIONS(4783), + [anon_sym_Private] = ACTIONS(4783), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_PRIVATE] = ACTIONS(4783), + [anon_sym_Public] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4783), + [anon_sym_PUBLIC] = ACTIONS(4783), + [anon_sym_Remote] = ACTIONS(4783), + [anon_sym_remote] = ACTIONS(4783), + [anon_sym_REMOTE] = ACTIONS(4783), + [anon_sym_Static] = ACTIONS(4783), + [anon_sym_static] = ACTIONS(4783), + [anon_sym_STATIC] = ACTIONS(4783), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1611)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1673)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -275072,378 +283378,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1612)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3715), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1613)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3380), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), + [STATE(1674)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3831), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1614)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3716), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -275462,118 +283508,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1615)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3718), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1675)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3834), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -275592,118 +283638,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1616)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3719), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1676)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3838), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -275722,118 +283768,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1617)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3720), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1677)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3746), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -275852,118 +283898,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1618)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3721), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1678)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -275982,118 +284028,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1619)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3723), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1679)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3749), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -276112,118 +284158,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1620)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3724), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1680)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3750), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -276242,118 +284288,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1621)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3725), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1681)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3752), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -276372,118 +284418,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1622)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3726), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1682)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3753), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -276502,118 +284548,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1623)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3729), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1683)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3756), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -276632,118 +284678,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1624)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3730), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1684)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -276762,118 +284808,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1625)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3731), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1685)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3759), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -276892,118 +284938,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1626)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3732), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1686)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3761), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -277022,118 +285068,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1627)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3733), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1687)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3763), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -277152,118 +285198,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1628)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3734), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1688)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3764), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -277282,118 +285328,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1629)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3368), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4811), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4899), - [anon_sym_query] = ACTIONS(4899), - [anon_sym_QUERY] = ACTIONS(4899), + [STATE(1689)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -277412,118 +285458,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4899), - [anon_sym_set] = ACTIONS(4899), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4899), - [anon_sym_QueryExecute] = ACTIONS(4901), - [anon_sym_queryexecute] = ACTIONS(4901), - [anon_sym_QUERYEXECUTE] = ACTIONS(4901), - [anon_sym_queryExecute] = ACTIONS(4901), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4899), - [anon_sym_abstract] = ACTIONS(4899), - [anon_sym_ABSTRACT] = ACTIONS(4899), - [anon_sym_Component] = ACTIONS(4899), - [anon_sym_component] = ACTIONS(4899), - [anon_sym_COMPONENT] = ACTIONS(4899), - [anon_sym_Debugger] = ACTIONS(4899), - [anon_sym_debugger] = ACTIONS(4899), - [anon_sym_DEBUGGER] = ACTIONS(4899), - [anon_sym_Final] = ACTIONS(4899), - [anon_sym_final] = ACTIONS(4899), - [anon_sym_FINAL] = ACTIONS(4899), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4899), - [anon_sym_include] = ACTIONS(4899), - [anon_sym_INCLUDE] = ACTIONS(4899), - [anon_sym_New] = ACTIONS(4903), - [anon_sym_new] = ACTIONS(4903), - [anon_sym_NEW] = ACTIONS(4903), - [anon_sym_Package] = ACTIONS(4899), - [anon_sym_package] = ACTIONS(4899), - [anon_sym_PACKAGE] = ACTIONS(4899), - [anon_sym_Private] = ACTIONS(4899), - [anon_sym_private] = ACTIONS(4899), - [anon_sym_PRIVATE] = ACTIONS(4899), - [anon_sym_Public] = ACTIONS(4899), - [anon_sym_public] = ACTIONS(4899), - [anon_sym_PUBLIC] = ACTIONS(4899), - [anon_sym_Remote] = ACTIONS(4899), - [anon_sym_remote] = ACTIONS(4899), - [anon_sym_REMOTE] = ACTIONS(4899), - [anon_sym_Static] = ACTIONS(4899), - [anon_sym_static] = ACTIONS(4899), - [anon_sym_STATIC] = ACTIONS(4899), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1630)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3735), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1690)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3373), + [sym_new_expression] = STATE(3217), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4931), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4933), + [anon_sym_query] = ACTIONS(4933), + [anon_sym_QUERY] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -277542,118 +285588,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4933), + [anon_sym_set] = ACTIONS(4933), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4933), + [anon_sym_QueryExecute] = ACTIONS(4935), + [anon_sym_queryexecute] = ACTIONS(4935), + [anon_sym_QUERYEXECUTE] = ACTIONS(4935), + [anon_sym_queryExecute] = ACTIONS(4935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4933), + [anon_sym_abstract] = ACTIONS(4933), + [anon_sym_ABSTRACT] = ACTIONS(4933), + [anon_sym_Component] = ACTIONS(4933), + [anon_sym_component] = ACTIONS(4933), + [anon_sym_COMPONENT] = ACTIONS(4933), + [anon_sym_Debugger] = ACTIONS(4933), + [anon_sym_debugger] = ACTIONS(4933), + [anon_sym_DEBUGGER] = ACTIONS(4933), + [anon_sym_Final] = ACTIONS(4933), + [anon_sym_final] = ACTIONS(4933), + [anon_sym_FINAL] = ACTIONS(4933), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4933), + [anon_sym_include] = ACTIONS(4933), + [anon_sym_INCLUDE] = ACTIONS(4933), + [anon_sym_New] = ACTIONS(4937), + [anon_sym_new] = ACTIONS(4937), + [anon_sym_NEW] = ACTIONS(4937), + [anon_sym_Package] = ACTIONS(4933), + [anon_sym_package] = ACTIONS(4933), + [anon_sym_PACKAGE] = ACTIONS(4933), + [anon_sym_Private] = ACTIONS(4933), + [anon_sym_private] = ACTIONS(4933), + [anon_sym_PRIVATE] = ACTIONS(4933), + [anon_sym_Public] = ACTIONS(4933), + [anon_sym_public] = ACTIONS(4933), + [anon_sym_PUBLIC] = ACTIONS(4933), + [anon_sym_Remote] = ACTIONS(4933), + [anon_sym_remote] = ACTIONS(4933), + [anon_sym_REMOTE] = ACTIONS(4933), + [anon_sym_Static] = ACTIONS(4933), + [anon_sym_static] = ACTIONS(4933), + [anon_sym_STATIC] = ACTIONS(4933), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1631)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(3736), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1691)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3373), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4931), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4933), + [anon_sym_query] = ACTIONS(4933), + [anon_sym_QUERY] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -277672,378 +285718,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4933), + [anon_sym_set] = ACTIONS(4933), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4933), + [anon_sym_QueryExecute] = ACTIONS(4935), + [anon_sym_queryexecute] = ACTIONS(4935), + [anon_sym_QUERYEXECUTE] = ACTIONS(4935), + [anon_sym_queryExecute] = ACTIONS(4935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4933), + [anon_sym_abstract] = ACTIONS(4933), + [anon_sym_ABSTRACT] = ACTIONS(4933), + [anon_sym_Component] = ACTIONS(4933), + [anon_sym_component] = ACTIONS(4933), + [anon_sym_COMPONENT] = ACTIONS(4933), + [anon_sym_Debugger] = ACTIONS(4933), + [anon_sym_debugger] = ACTIONS(4933), + [anon_sym_DEBUGGER] = ACTIONS(4933), + [anon_sym_Final] = ACTIONS(4933), + [anon_sym_final] = ACTIONS(4933), + [anon_sym_FINAL] = ACTIONS(4933), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4933), + [anon_sym_include] = ACTIONS(4933), + [anon_sym_INCLUDE] = ACTIONS(4933), + [anon_sym_New] = ACTIONS(4937), + [anon_sym_new] = ACTIONS(4937), + [anon_sym_NEW] = ACTIONS(4937), + [anon_sym_Package] = ACTIONS(4933), + [anon_sym_package] = ACTIONS(4933), + [anon_sym_PACKAGE] = ACTIONS(4933), + [anon_sym_Private] = ACTIONS(4933), + [anon_sym_private] = ACTIONS(4933), + [anon_sym_PRIVATE] = ACTIONS(4933), + [anon_sym_Public] = ACTIONS(4933), + [anon_sym_public] = ACTIONS(4933), + [anon_sym_PUBLIC] = ACTIONS(4933), + [anon_sym_Remote] = ACTIONS(4933), + [anon_sym_remote] = ACTIONS(4933), + [anon_sym_REMOTE] = ACTIONS(4933), + [anon_sym_Static] = ACTIONS(4933), + [anon_sym_static] = ACTIONS(4933), + [anon_sym_STATIC] = ACTIONS(4933), [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1632)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3101), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2663), - [sym_hash_expression] = STATE(2663), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4905), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1633)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3105), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2677), - [sym_hash_expression] = STATE(2677), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), + [STATE(1692)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3768), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4907), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1634)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2893), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1693)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(3771), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -278062,118 +285978,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1635)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1694)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3308), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2778), + [sym_hash_expression] = STATE(2778), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4939), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1695)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3434), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2796), + [sym_hash_expression] = STATE(2796), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4941), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1696)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -278192,64 +286368,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1636)] = { - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), + [STATE(1697)] = { + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), [sym_identifier] = ACTIONS(471), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -278371,584 +286547,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(1637)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3381), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1638)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3383), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1639)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), + [STATE(1698)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(532), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), }, - [STATE(1640)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2606), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2424), - [sym_hash_expression] = STATE(2424), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [STATE(1699)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3806), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4875), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1641)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2436), - [sym_hash_expression] = STATE(2436), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1700)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2467), + [sym_hash_expression] = STATE(2467), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -278972,113 +286888,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4767), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4909), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1642)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3219), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2424), - [sym_hash_expression] = STATE(2424), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), + [STATE(1701)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2621), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2455), + [sym_hash_expression] = STATE(2455), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -279102,503 +287018,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4875), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [sym_hash_empty] = ACTIONS(4711), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1643)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3384), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1644)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3385), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1645)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2609), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(1702)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3234), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2779), + [sym_hash_expression] = STATE(2779), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4945), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, - [STATE(1646)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2610), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1703)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(613), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -279622,113 +287278,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1647)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1704)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2622), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -279752,113 +287408,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1648)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2613), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1705)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2623), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -279882,113 +287538,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1649)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2604), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1706)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2624), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -280012,113 +287668,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1650)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1707)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -280142,113 +287798,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1651)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1708)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2626), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -280272,113 +287928,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1652)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2581), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1709)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -280402,113 +288058,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1653)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2582), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1710)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -280532,113 +288188,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1654)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1711)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -280662,113 +288318,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1655)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2584), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1712)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2630), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -280792,113 +288448,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1656)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2585), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1713)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2651), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -280922,113 +288578,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1657)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1714)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -281052,113 +288708,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1658)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1715)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2633), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -281182,113 +288838,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1659)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2588), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1716)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2634), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -281312,113 +288968,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1660)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2589), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1717)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2635), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -281440,1680 +289096,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(47), [anon_sym_NULL] = ACTIONS(47), [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1661)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1662)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3590), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1663)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3591), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1664)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3593), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1665)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3594), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1666)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3595), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1667)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3597), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1668)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1669)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3599), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1670)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3600), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1671)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3601), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1672)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3602), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1718)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1673)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3603), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1719)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3727), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -283132,248 +289358,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1674)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3604), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1720)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3241), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2780), + [sym_hash_expression] = STATE(2780), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4947), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1721)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), + [sym__java_block_open] = ACTIONS(109), + [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1675)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3605), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1722)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -283392,118 +289748,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1676)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3606), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1723)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -283522,118 +289878,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1677)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3607), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1724)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -283652,118 +290008,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1678)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3608), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1725)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3663), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -283782,118 +290138,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1679)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3610), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1726)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3664), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -283912,248 +290268,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1680)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3386), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1681)] = { - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5153), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2614), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5153), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1548), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2590), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2590), - [sym_undefined] = STATE(2590), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4389), - [anon_sym_query] = ACTIONS(4389), - [anon_sym_QUERY] = ACTIONS(4389), + [STATE(1727)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3665), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -284172,638 +290398,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4389), - [anon_sym_QueryExecute] = ACTIONS(4393), - [anon_sym_queryexecute] = ACTIONS(4393), - [anon_sym_QUERYEXECUTE] = ACTIONS(4393), - [anon_sym_queryExecute] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_ABSTRACT] = ACTIONS(4389), - [anon_sym_Component] = ACTIONS(4389), - [anon_sym_component] = ACTIONS(4389), - [anon_sym_COMPONENT] = ACTIONS(4389), - [anon_sym_Debugger] = ACTIONS(4389), - [anon_sym_debugger] = ACTIONS(4389), - [anon_sym_DEBUGGER] = ACTIONS(4389), - [anon_sym_Final] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_FINAL] = ACTIONS(4389), - [anon_sym_Function] = ACTIONS(4395), - [anon_sym_function] = ACTIONS(4395), - [anon_sym_FUNCTION] = ACTIONS(4395), - [anon_sym_Include] = ACTIONS(4389), - [anon_sym_include] = ACTIONS(4389), - [anon_sym_INCLUDE] = ACTIONS(4389), - [anon_sym_New] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_NEW] = ACTIONS(4397), - [anon_sym_Package] = ACTIONS(4389), - [anon_sym_package] = ACTIONS(4389), - [anon_sym_PACKAGE] = ACTIONS(4389), - [anon_sym_Private] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_PRIVATE] = ACTIONS(4389), - [anon_sym_Public] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_PUBLIC] = ACTIONS(4389), - [anon_sym_Remote] = ACTIONS(4389), - [anon_sym_remote] = ACTIONS(4389), - [anon_sym_REMOTE] = ACTIONS(4389), - [anon_sym_Static] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_STATIC] = ACTIONS(4389), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1682)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1683)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3302), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2436), - [sym_hash_expression] = STATE(2436), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4767), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1684)] = { - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [sym_identifier] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(471), - [anon_sym_query] = ACTIONS(471), - [anon_sym_QUERY] = ACTIONS(471), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_Abstract] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Component] = ACTIONS(476), - [anon_sym_component] = ACTIONS(476), - [anon_sym_COMPONENT] = ACTIONS(476), - [anon_sym_Default] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_FINAL] = ACTIONS(471), - [anon_sym_Function] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_FUNCTION] = ACTIONS(471), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_Package] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_PACKAGE] = ACTIONS(471), - [anon_sym_Private] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_PRIVATE] = ACTIONS(471), - [anon_sym_Public] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_PUBLIC] = ACTIONS(471), - [anon_sym_Remote] = ACTIONS(471), - [anon_sym_remote] = ACTIONS(471), - [anon_sym_REMOTE] = ACTIONS(471), - [anon_sym_Static] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_STATIC] = ACTIONS(471), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(1685)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3306), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2436), - [sym_hash_expression] = STATE(2436), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4767), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1686)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3693), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(1728)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3666), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -284822,118 +290528,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1687)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3638), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1729)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3667), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -284952,118 +290658,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1688)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1730)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3668), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -285082,638 +290788,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1689)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3387), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1690)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3388), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1691)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(512), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(444), - [sym_hash_expression] = STATE(444), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4909), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1692)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3389), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1693)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1731)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3669), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -285732,118 +290918,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1694)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3154), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1732)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3670), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -285862,118 +291048,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1695)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3155), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1733)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3671), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -285992,118 +291178,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1696)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3156), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1734)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3672), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -286122,118 +291308,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1697)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3157), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1735)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3673), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -286252,118 +291438,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1698)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3158), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1736)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3674), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -286382,118 +291568,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1699)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3159), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1737)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3675), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -286512,118 +291698,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1700)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3160), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1738)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3676), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -286642,118 +291828,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1701)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3161), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1739)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3677), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -286772,118 +291958,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1702)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3162), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1740)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(3678), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -286902,118 +292088,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1703)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3163), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1741)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1742)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(501), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1743)] = { + [sym_parenthesized_expression] = STATE(2266), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5202), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2650), + [sym_new_expression] = STATE(2631), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2266), + [sym_subscript_expression] = STATE(2266), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3930), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5202), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1624), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2638), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2638), + [sym_undefined] = STATE(2638), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4599), + [anon_sym_query] = ACTIONS(4599), + [anon_sym_QUERY] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -287032,248 +292478,898 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4599), + [anon_sym_QueryExecute] = ACTIONS(4603), + [anon_sym_queryexecute] = ACTIONS(4603), + [anon_sym_QUERYEXECUTE] = ACTIONS(4603), + [anon_sym_queryExecute] = ACTIONS(4603), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_ABSTRACT] = ACTIONS(4599), + [anon_sym_Component] = ACTIONS(4599), + [anon_sym_component] = ACTIONS(4599), + [anon_sym_COMPONENT] = ACTIONS(4599), + [anon_sym_Debugger] = ACTIONS(4599), + [anon_sym_debugger] = ACTIONS(4599), + [anon_sym_DEBUGGER] = ACTIONS(4599), + [anon_sym_Final] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_FINAL] = ACTIONS(4599), + [anon_sym_Function] = ACTIONS(4605), + [anon_sym_function] = ACTIONS(4605), + [anon_sym_FUNCTION] = ACTIONS(4605), + [anon_sym_Include] = ACTIONS(4599), + [anon_sym_include] = ACTIONS(4599), + [anon_sym_INCLUDE] = ACTIONS(4599), + [anon_sym_New] = ACTIONS(4607), + [anon_sym_new] = ACTIONS(4607), + [anon_sym_NEW] = ACTIONS(4607), + [anon_sym_Package] = ACTIONS(4599), + [anon_sym_package] = ACTIONS(4599), + [anon_sym_PACKAGE] = ACTIONS(4599), + [anon_sym_Private] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_PRIVATE] = ACTIONS(4599), + [anon_sym_Public] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_PUBLIC] = ACTIONS(4599), + [anon_sym_Remote] = ACTIONS(4599), + [anon_sym_remote] = ACTIONS(4599), + [anon_sym_REMOTE] = ACTIONS(4599), + [anon_sym_Static] = ACTIONS(4599), + [anon_sym_static] = ACTIONS(4599), + [anon_sym_STATIC] = ACTIONS(4599), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1704)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3164), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [STATE(1744)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(503), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1745)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(504), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1746)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(505), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1747)] = { + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(471), + [anon_sym_query] = ACTIONS(471), + [anon_sym_QUERY] = ACTIONS(471), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [anon_sym_Abstract] = ACTIONS(471), + [anon_sym_abstract] = ACTIONS(471), + [anon_sym_ABSTRACT] = ACTIONS(471), + [anon_sym_Component] = ACTIONS(476), + [anon_sym_component] = ACTIONS(476), + [anon_sym_COMPONENT] = ACTIONS(476), + [anon_sym_Default] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_DEFAULT] = ACTIONS(471), + [anon_sym_Final] = ACTIONS(471), + [anon_sym_final] = ACTIONS(471), + [anon_sym_FINAL] = ACTIONS(471), + [anon_sym_Function] = ACTIONS(471), + [anon_sym_function] = ACTIONS(471), + [anon_sym_FUNCTION] = ACTIONS(471), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_Interface] = ACTIONS(476), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_INTERFACE] = ACTIONS(476), + [anon_sym_Package] = ACTIONS(471), + [anon_sym_package] = ACTIONS(471), + [anon_sym_PACKAGE] = ACTIONS(471), + [anon_sym_Private] = ACTIONS(471), + [anon_sym_private] = ACTIONS(471), + [anon_sym_PRIVATE] = ACTIONS(471), + [anon_sym_Public] = ACTIONS(471), + [anon_sym_public] = ACTIONS(471), + [anon_sym_PUBLIC] = ACTIONS(471), + [anon_sym_Remote] = ACTIONS(471), + [anon_sym_remote] = ACTIONS(471), + [anon_sym_REMOTE] = ACTIONS(471), + [anon_sym_Static] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_STATIC] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(1748)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(506), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), }, - [STATE(1705)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3165), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1749)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(518), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1750)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3804), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -287292,118 +293388,1288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1706)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3166), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1751)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(520), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1752)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(521), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1753)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(522), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1754)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(523), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1755)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(524), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1756)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(539), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1757)] = { + [sym_parenthesized_expression] = STATE(361), + [sym_expression] = STATE(3863), + [sym_primary_expression] = STATE(453), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(466), + [sym_new_expression] = STATE(475), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(361), + [sym_subscript_expression] = STATE(361), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(462), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(462), + [sym_undefined] = STATE(462), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(3651), + [sym_hash_expression] = STATE(3651), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4953), + [anon_sym_query] = ACTIONS(4953), + [anon_sym_QUERY] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4953), + [anon_sym_set] = ACTIONS(4953), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4955), + [anon_sym_export] = ACTIONS(4953), + [anon_sym_QueryExecute] = ACTIONS(4957), + [anon_sym_queryexecute] = ACTIONS(4957), + [anon_sym_QUERYEXECUTE] = ACTIONS(4957), + [anon_sym_queryExecute] = ACTIONS(4957), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4953), + [anon_sym_abstract] = ACTIONS(4953), + [anon_sym_ABSTRACT] = ACTIONS(4953), + [anon_sym_Component] = ACTIONS(4953), + [anon_sym_component] = ACTIONS(4953), + [anon_sym_COMPONENT] = ACTIONS(4953), + [anon_sym_Debugger] = ACTIONS(4953), + [anon_sym_debugger] = ACTIONS(4953), + [anon_sym_DEBUGGER] = ACTIONS(4953), + [anon_sym_Final] = ACTIONS(4953), + [anon_sym_final] = ACTIONS(4953), + [anon_sym_FINAL] = ACTIONS(4953), + [anon_sym_Function] = ACTIONS(4959), + [anon_sym_function] = ACTIONS(4959), + [anon_sym_FUNCTION] = ACTIONS(4959), + [anon_sym_Include] = ACTIONS(4953), + [anon_sym_include] = ACTIONS(4953), + [anon_sym_INCLUDE] = ACTIONS(4953), + [anon_sym_New] = ACTIONS(4961), + [anon_sym_new] = ACTIONS(4961), + [anon_sym_NEW] = ACTIONS(4961), + [anon_sym_Package] = ACTIONS(4953), + [anon_sym_package] = ACTIONS(4953), + [anon_sym_PACKAGE] = ACTIONS(4953), + [anon_sym_Private] = ACTIONS(4953), + [anon_sym_private] = ACTIONS(4953), + [anon_sym_PRIVATE] = ACTIONS(4953), + [anon_sym_Public] = ACTIONS(4953), + [anon_sym_public] = ACTIONS(4953), + [anon_sym_PUBLIC] = ACTIONS(4953), + [anon_sym_Remote] = ACTIONS(4953), + [anon_sym_remote] = ACTIONS(4953), + [anon_sym_REMOTE] = ACTIONS(4953), + [anon_sym_Static] = ACTIONS(4953), + [anon_sym_static] = ACTIONS(4953), + [anon_sym_STATIC] = ACTIONS(4953), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1758)] = { + [sym_parenthesized_expression] = STATE(361), + [sym_expression] = STATE(3863), + [sym_primary_expression] = STATE(477), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(466), + [sym_new_expression] = STATE(459), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(361), + [sym_subscript_expression] = STATE(361), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(462), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(462), + [sym_undefined] = STATE(462), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(3651), + [sym_hash_expression] = STATE(3651), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4953), + [anon_sym_query] = ACTIONS(4953), + [anon_sym_QUERY] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4953), + [anon_sym_set] = ACTIONS(4953), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4955), + [anon_sym_export] = ACTIONS(4953), + [anon_sym_QueryExecute] = ACTIONS(4957), + [anon_sym_queryexecute] = ACTIONS(4957), + [anon_sym_QUERYEXECUTE] = ACTIONS(4957), + [anon_sym_queryExecute] = ACTIONS(4957), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4953), + [anon_sym_abstract] = ACTIONS(4953), + [anon_sym_ABSTRACT] = ACTIONS(4953), + [anon_sym_Component] = ACTIONS(4953), + [anon_sym_component] = ACTIONS(4953), + [anon_sym_COMPONENT] = ACTIONS(4953), + [anon_sym_Debugger] = ACTIONS(4953), + [anon_sym_debugger] = ACTIONS(4953), + [anon_sym_DEBUGGER] = ACTIONS(4953), + [anon_sym_Final] = ACTIONS(4953), + [anon_sym_final] = ACTIONS(4953), + [anon_sym_FINAL] = ACTIONS(4953), + [anon_sym_Function] = ACTIONS(4959), + [anon_sym_function] = ACTIONS(4959), + [anon_sym_FUNCTION] = ACTIONS(4959), + [anon_sym_Include] = ACTIONS(4953), + [anon_sym_include] = ACTIONS(4953), + [anon_sym_INCLUDE] = ACTIONS(4953), + [anon_sym_New] = ACTIONS(4961), + [anon_sym_new] = ACTIONS(4961), + [anon_sym_NEW] = ACTIONS(4961), + [anon_sym_Package] = ACTIONS(4953), + [anon_sym_package] = ACTIONS(4953), + [anon_sym_PACKAGE] = ACTIONS(4953), + [anon_sym_Private] = ACTIONS(4953), + [anon_sym_private] = ACTIONS(4953), + [anon_sym_PRIVATE] = ACTIONS(4953), + [anon_sym_Public] = ACTIONS(4953), + [anon_sym_public] = ACTIONS(4953), + [anon_sym_PUBLIC] = ACTIONS(4953), + [anon_sym_Remote] = ACTIONS(4953), + [anon_sym_remote] = ACTIONS(4953), + [anon_sym_REMOTE] = ACTIONS(4953), + [anon_sym_Static] = ACTIONS(4953), + [anon_sym_static] = ACTIONS(4953), + [anon_sym_STATIC] = ACTIONS(4953), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1759)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(547), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1760)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3869), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2786), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -287422,118 +294688,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1707)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3167), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1761)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -287552,118 +294818,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1708)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3168), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1762)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3226), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -287682,118 +294948,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1709)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3169), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1763)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3228), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -287812,118 +295078,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1710)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3170), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1764)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3230), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -287942,118 +295208,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1711)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(3172), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1765)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -288072,768 +295338,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1712)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(2916), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1713)] = { - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(471), - [anon_sym_query] = ACTIONS(471), - [anon_sym_QUERY] = ACTIONS(471), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_Abstract] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Component] = ACTIONS(476), - [anon_sym_component] = ACTIONS(476), - [anon_sym_COMPONENT] = ACTIONS(476), - [anon_sym_Default] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_FINAL] = ACTIONS(471), - [anon_sym_Function] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_FUNCTION] = ACTIONS(471), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_Package] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_PACKAGE] = ACTIONS(471), - [anon_sym_Private] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_PRIVATE] = ACTIONS(471), - [anon_sym_Public] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_PUBLIC] = ACTIONS(471), - [anon_sym_Remote] = ACTIONS(471), - [anon_sym_remote] = ACTIONS(471), - [anon_sym_REMOTE] = ACTIONS(471), - [anon_sym_Static] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_STATIC] = ACTIONS(471), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(1714)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(449), - [sym_hash_expression] = STATE(449), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4911), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1715)] = { - [sym_parenthesized_expression] = STATE(2258), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2685), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2690), - [sym_new_expression] = STATE(2978), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2258), - [sym_subscript_expression] = STATE(2258), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2710), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2710), - [sym_undefined] = STATE(2710), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(3641), - [sym_hash_expression] = STATE(3641), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4913), - [anon_sym_LBRACE] = ACTIONS(4915), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4917), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4917), - [anon_sym_query] = ACTIONS(4917), - [anon_sym_QUERY] = ACTIONS(4917), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4917), - [anon_sym_set] = ACTIONS(4917), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4919), - [anon_sym_export] = ACTIONS(4917), - [anon_sym_QueryExecute] = ACTIONS(4921), - [anon_sym_queryexecute] = ACTIONS(4921), - [anon_sym_QUERYEXECUTE] = ACTIONS(4921), - [anon_sym_queryExecute] = ACTIONS(4921), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4917), - [anon_sym_abstract] = ACTIONS(4917), - [anon_sym_ABSTRACT] = ACTIONS(4917), - [anon_sym_Component] = ACTIONS(4917), - [anon_sym_component] = ACTIONS(4917), - [anon_sym_COMPONENT] = ACTIONS(4917), - [anon_sym_Debugger] = ACTIONS(4917), - [anon_sym_debugger] = ACTIONS(4917), - [anon_sym_DEBUGGER] = ACTIONS(4917), - [anon_sym_Final] = ACTIONS(4917), - [anon_sym_final] = ACTIONS(4917), - [anon_sym_FINAL] = ACTIONS(4917), - [anon_sym_Function] = ACTIONS(4923), - [anon_sym_function] = ACTIONS(4923), - [anon_sym_FUNCTION] = ACTIONS(4923), - [anon_sym_Include] = ACTIONS(4917), - [anon_sym_include] = ACTIONS(4917), - [anon_sym_INCLUDE] = ACTIONS(4917), - [anon_sym_New] = ACTIONS(4925), - [anon_sym_new] = ACTIONS(4925), - [anon_sym_NEW] = ACTIONS(4925), - [anon_sym_Package] = ACTIONS(4917), - [anon_sym_package] = ACTIONS(4917), - [anon_sym_PACKAGE] = ACTIONS(4917), - [anon_sym_Private] = ACTIONS(4917), - [anon_sym_private] = ACTIONS(4917), - [anon_sym_PRIVATE] = ACTIONS(4917), - [anon_sym_Public] = ACTIONS(4917), - [anon_sym_public] = ACTIONS(4917), - [anon_sym_PUBLIC] = ACTIONS(4917), - [anon_sym_Remote] = ACTIONS(4917), - [anon_sym_remote] = ACTIONS(4917), - [anon_sym_REMOTE] = ACTIONS(4917), - [anon_sym_Static] = ACTIONS(4917), - [anon_sym_static] = ACTIONS(4917), - [anon_sym_STATIC] = ACTIONS(4917), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1716)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3551), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1717)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4321), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2276), - [sym_subscript_expression] = STATE(2276), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4321), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2722), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2722), - [sym_undefined] = STATE(2722), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4929), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_Query] = ACTIONS(4929), - [anon_sym_query] = ACTIONS(4929), - [anon_sym_QUERY] = ACTIONS(4929), + [STATE(1766)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3235), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -288846,1034 +295462,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4929), - [anon_sym_set] = ACTIONS(4929), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4929), - [anon_sym_QueryExecute] = ACTIONS(4931), - [anon_sym_queryexecute] = ACTIONS(4931), - [anon_sym_QUERYEXECUTE] = ACTIONS(4931), - [anon_sym_queryExecute] = ACTIONS(4931), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4929), - [anon_sym_abstract] = ACTIONS(4929), - [anon_sym_ABSTRACT] = ACTIONS(4929), - [anon_sym_Component] = ACTIONS(4929), - [anon_sym_component] = ACTIONS(4929), - [anon_sym_COMPONENT] = ACTIONS(4929), - [anon_sym_Debugger] = ACTIONS(4929), - [anon_sym_debugger] = ACTIONS(4929), - [anon_sym_DEBUGGER] = ACTIONS(4929), - [anon_sym_Final] = ACTIONS(4929), - [anon_sym_final] = ACTIONS(4929), - [anon_sym_FINAL] = ACTIONS(4929), - [anon_sym_Function] = ACTIONS(4933), - [anon_sym_function] = ACTIONS(4933), - [anon_sym_FUNCTION] = ACTIONS(4933), - [anon_sym_Include] = ACTIONS(4929), - [anon_sym_include] = ACTIONS(4929), - [anon_sym_INCLUDE] = ACTIONS(4929), - [anon_sym_New] = ACTIONS(4935), - [anon_sym_new] = ACTIONS(4935), - [anon_sym_NEW] = ACTIONS(4935), - [anon_sym_Package] = ACTIONS(4929), - [anon_sym_package] = ACTIONS(4929), - [anon_sym_PACKAGE] = ACTIONS(4929), - [anon_sym_Private] = ACTIONS(4929), - [anon_sym_private] = ACTIONS(4929), - [anon_sym_PRIVATE] = ACTIONS(4929), - [anon_sym_Public] = ACTIONS(4929), - [anon_sym_public] = ACTIONS(4929), - [anon_sym_PUBLIC] = ACTIONS(4929), - [anon_sym_Remote] = ACTIONS(4929), - [anon_sym_remote] = ACTIONS(4929), - [anon_sym_REMOTE] = ACTIONS(4929), - [anon_sym_Static] = ACTIONS(4929), - [anon_sym_static] = ACTIONS(4929), - [anon_sym_STATIC] = ACTIONS(4929), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1718)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3391), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1719)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1720)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3178), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1721)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3560), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1722)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3562), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1723)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(526), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1724)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3432), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2640), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2436), - [sym_hash_expression] = STATE(2436), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(4937), - [anon_sym_SQUOTE] = ACTIONS(4939), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4767), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1725)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3350), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1767)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3239), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -289892,248 +295598,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1726)] = { - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [sym_identifier] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(471), - [anon_sym_query] = ACTIONS(471), - [anon_sym_QUERY] = ACTIONS(471), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_Abstract] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Component] = ACTIONS(476), - [anon_sym_component] = ACTIONS(476), - [anon_sym_COMPONENT] = ACTIONS(476), - [anon_sym_Default] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_FINAL] = ACTIONS(471), - [anon_sym_Function] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_FUNCTION] = ACTIONS(471), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_Package] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_PACKAGE] = ACTIONS(471), - [anon_sym_Private] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_PRIVATE] = ACTIONS(471), - [anon_sym_Public] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_PUBLIC] = ACTIONS(471), - [anon_sym_Remote] = ACTIONS(471), - [anon_sym_remote] = ACTIONS(471), - [anon_sym_REMOTE] = ACTIONS(471), - [anon_sym_Static] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_STATIC] = ACTIONS(471), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(1727)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3783), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1768)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -290152,118 +295728,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1728)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3784), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1769)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -290282,248 +295858,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1729)] = { - [sym_parenthesized_expression] = STATE(2125), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(2449), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2443), - [sym_new_expression] = STATE(2553), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2445), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2445), - [sym_undefined] = STATE(2445), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3681), - [sym_hash_expression] = STATE(3681), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4943), - [anon_sym_query] = ACTIONS(4943), - [anon_sym_QUERY] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4801), - [anon_sym_export] = ACTIONS(4943), - [anon_sym_QueryExecute] = ACTIONS(4945), - [anon_sym_queryexecute] = ACTIONS(4945), - [anon_sym_QUERYEXECUTE] = ACTIONS(4945), - [anon_sym_queryExecute] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4943), - [anon_sym_abstract] = ACTIONS(4943), - [anon_sym_ABSTRACT] = ACTIONS(4943), - [anon_sym_Component] = ACTIONS(4943), - [anon_sym_component] = ACTIONS(4943), - [anon_sym_COMPONENT] = ACTIONS(4943), - [anon_sym_Debugger] = ACTIONS(4943), - [anon_sym_debugger] = ACTIONS(4943), - [anon_sym_DEBUGGER] = ACTIONS(4943), - [anon_sym_Final] = ACTIONS(4943), - [anon_sym_final] = ACTIONS(4943), - [anon_sym_FINAL] = ACTIONS(4943), - [anon_sym_Function] = ACTIONS(4805), - [anon_sym_function] = ACTIONS(4805), - [anon_sym_FUNCTION] = ACTIONS(4805), - [anon_sym_Include] = ACTIONS(4943), - [anon_sym_include] = ACTIONS(4943), - [anon_sym_INCLUDE] = ACTIONS(4943), - [anon_sym_New] = ACTIONS(4947), - [anon_sym_new] = ACTIONS(4947), - [anon_sym_NEW] = ACTIONS(4947), - [anon_sym_Package] = ACTIONS(4943), - [anon_sym_package] = ACTIONS(4943), - [anon_sym_PACKAGE] = ACTIONS(4943), - [anon_sym_Private] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4943), - [anon_sym_PRIVATE] = ACTIONS(4943), - [anon_sym_Public] = ACTIONS(4943), - [anon_sym_public] = ACTIONS(4943), - [anon_sym_PUBLIC] = ACTIONS(4943), - [anon_sym_Remote] = ACTIONS(4943), - [anon_sym_remote] = ACTIONS(4943), - [anon_sym_REMOTE] = ACTIONS(4943), - [anon_sym_Static] = ACTIONS(4943), - [anon_sym_static] = ACTIONS(4943), - [anon_sym_STATIC] = ACTIONS(4943), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1730)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3787), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1770)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3246), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -290542,118 +295988,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1731)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3750), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1771)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3247), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -290672,118 +296118,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1732)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3739), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1772)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3248), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -290802,118 +296248,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1733)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1773)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3249), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -290932,248 +296378,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1734)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3570), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1735)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3742), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1774)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3250), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -291192,118 +296508,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1736)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1775)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3251), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -291322,118 +296638,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1737)] = { - [sym_parenthesized_expression] = STATE(2398), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5239), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3665), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2398), - [sym_subscript_expression] = STATE(2398), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5239), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1611), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3632), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3632), - [sym_undefined] = STATE(3632), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4591), - [anon_sym_query] = ACTIONS(4591), - [anon_sym_QUERY] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4593), - [anon_sym_DASH_DASH] = ACTIONS(4593), + [STATE(1776)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3252), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -291452,118 +296768,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4591), - [anon_sym_set] = ACTIONS(4591), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4591), - [anon_sym_QueryExecute] = ACTIONS(4595), - [anon_sym_queryexecute] = ACTIONS(4595), - [anon_sym_QUERYEXECUTE] = ACTIONS(4595), - [anon_sym_queryExecute] = ACTIONS(4595), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_ABSTRACT] = ACTIONS(4591), - [anon_sym_Component] = ACTIONS(4591), - [anon_sym_component] = ACTIONS(4591), - [anon_sym_COMPONENT] = ACTIONS(4591), - [anon_sym_Debugger] = ACTIONS(4591), - [anon_sym_debugger] = ACTIONS(4591), - [anon_sym_DEBUGGER] = ACTIONS(4591), - [anon_sym_Final] = ACTIONS(4591), - [anon_sym_final] = ACTIONS(4591), - [anon_sym_FINAL] = ACTIONS(4591), - [anon_sym_Function] = ACTIONS(4597), - [anon_sym_function] = ACTIONS(4597), - [anon_sym_FUNCTION] = ACTIONS(4597), - [anon_sym_Include] = ACTIONS(4591), - [anon_sym_include] = ACTIONS(4591), - [anon_sym_INCLUDE] = ACTIONS(4591), - [anon_sym_New] = ACTIONS(4599), - [anon_sym_new] = ACTIONS(4599), - [anon_sym_NEW] = ACTIONS(4599), - [anon_sym_Package] = ACTIONS(4591), - [anon_sym_package] = ACTIONS(4591), - [anon_sym_PACKAGE] = ACTIONS(4591), - [anon_sym_Private] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_PRIVATE] = ACTIONS(4591), - [anon_sym_Public] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_PUBLIC] = ACTIONS(4591), - [anon_sym_Remote] = ACTIONS(4591), - [anon_sym_remote] = ACTIONS(4591), - [anon_sym_REMOTE] = ACTIONS(4591), - [anon_sym_Static] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_STATIC] = ACTIONS(4591), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1738)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3766), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1777)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -291582,118 +296898,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1739)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3781), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1778)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -291712,118 +297028,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1740)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3782), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1779)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(3256), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -291842,64 +297158,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1741)] = { - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), + [STATE(1780)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3098), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1781)] = { + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), [sym_identifier] = ACTIONS(471), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -292021,584 +297467,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(1742)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3786), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1743)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3704), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1744)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4811), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4951), - [anon_sym_query] = ACTIONS(4951), - [anon_sym_QUERY] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4951), - [anon_sym_set] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4951), - [anon_sym_QueryExecute] = ACTIONS(4953), - [anon_sym_queryexecute] = ACTIONS(4953), - [anon_sym_QUERYEXECUTE] = ACTIONS(4953), - [anon_sym_queryExecute] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4951), - [anon_sym_abstract] = ACTIONS(4951), - [anon_sym_ABSTRACT] = ACTIONS(4951), - [anon_sym_Component] = ACTIONS(4951), - [anon_sym_component] = ACTIONS(4951), - [anon_sym_COMPONENT] = ACTIONS(4951), - [anon_sym_Debugger] = ACTIONS(4951), - [anon_sym_debugger] = ACTIONS(4951), - [anon_sym_DEBUGGER] = ACTIONS(4951), - [anon_sym_Final] = ACTIONS(4951), - [anon_sym_final] = ACTIONS(4951), - [anon_sym_FINAL] = ACTIONS(4951), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4951), - [anon_sym_include] = ACTIONS(4951), - [anon_sym_INCLUDE] = ACTIONS(4951), - [anon_sym_New] = ACTIONS(4955), - [anon_sym_new] = ACTIONS(4955), - [anon_sym_NEW] = ACTIONS(4955), - [anon_sym_Package] = ACTIONS(4951), - [anon_sym_package] = ACTIONS(4951), - [anon_sym_PACKAGE] = ACTIONS(4951), - [anon_sym_Private] = ACTIONS(4951), - [anon_sym_private] = ACTIONS(4951), - [anon_sym_PRIVATE] = ACTIONS(4951), - [anon_sym_Public] = ACTIONS(4951), - [anon_sym_public] = ACTIONS(4951), - [anon_sym_PUBLIC] = ACTIONS(4951), - [anon_sym_Remote] = ACTIONS(4951), - [anon_sym_remote] = ACTIONS(4951), - [anon_sym_REMOTE] = ACTIONS(4951), - [anon_sym_Static] = ACTIONS(4951), - [anon_sym_static] = ACTIONS(4951), - [anon_sym_STATIC] = ACTIONS(4951), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1782)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(526), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), }, - [STATE(1745)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3755), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), + [STATE(1783)] = { + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(471), + [anon_sym_query] = ACTIONS(471), + [anon_sym_QUERY] = ACTIONS(471), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [anon_sym_Abstract] = ACTIONS(471), + [anon_sym_abstract] = ACTIONS(471), + [anon_sym_ABSTRACT] = ACTIONS(471), + [anon_sym_Component] = ACTIONS(476), + [anon_sym_component] = ACTIONS(476), + [anon_sym_COMPONENT] = ACTIONS(476), + [anon_sym_Default] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_DEFAULT] = ACTIONS(471), + [anon_sym_Final] = ACTIONS(471), + [anon_sym_final] = ACTIONS(471), + [anon_sym_FINAL] = ACTIONS(471), + [anon_sym_Function] = ACTIONS(471), + [anon_sym_function] = ACTIONS(471), + [anon_sym_FUNCTION] = ACTIONS(471), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_Interface] = ACTIONS(476), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_INTERFACE] = ACTIONS(476), + [anon_sym_Package] = ACTIONS(471), + [anon_sym_package] = ACTIONS(471), + [anon_sym_PACKAGE] = ACTIONS(471), + [anon_sym_Private] = ACTIONS(471), + [anon_sym_private] = ACTIONS(471), + [anon_sym_PRIVATE] = ACTIONS(471), + [anon_sym_Public] = ACTIONS(471), + [anon_sym_public] = ACTIONS(471), + [anon_sym_PUBLIC] = ACTIONS(471), + [anon_sym_Remote] = ACTIONS(471), + [anon_sym_remote] = ACTIONS(471), + [anon_sym_REMOTE] = ACTIONS(471), + [anon_sym_Static] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_STATIC] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), }, - [STATE(1746)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3571), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [STATE(1784)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3342), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2467), + [sym_hash_expression] = STATE(2467), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), + [anon_sym_let] = ACTIONS(4819), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -292622,508 +297808,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), + [sym_hash_empty] = ACTIONS(4909), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1747)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(530), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1748)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3462), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1749)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3525), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [STATE(1785)] = { + [sym_parenthesized_expression] = STATE(2416), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5237), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3732), + [sym_new_expression] = STATE(3733), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2416), + [sym_subscript_expression] = STATE(2416), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3936), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5237), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1673), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3683), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3683), + [sym_undefined] = STATE(3683), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4555), + [anon_sym_query] = ACTIONS(4555), + [anon_sym_QUERY] = ACTIONS(4555), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1750)] = { - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5210), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3569), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3902), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5210), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1456), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3414), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3414), - [sym_undefined] = STATE(3414), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4403), - [anon_sym_query] = ACTIONS(4403), - [anon_sym_QUERY] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4557), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -293142,378 +297938,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4403), - [anon_sym_set] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4555), + [anon_sym_set] = ACTIONS(4555), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4403), - [anon_sym_QueryExecute] = ACTIONS(4407), - [anon_sym_queryexecute] = ACTIONS(4407), - [anon_sym_QUERYEXECUTE] = ACTIONS(4407), - [anon_sym_queryExecute] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4555), + [anon_sym_QueryExecute] = ACTIONS(4559), + [anon_sym_queryexecute] = ACTIONS(4559), + [anon_sym_QUERYEXECUTE] = ACTIONS(4559), + [anon_sym_queryExecute] = ACTIONS(4559), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4403), - [anon_sym_abstract] = ACTIONS(4403), - [anon_sym_ABSTRACT] = ACTIONS(4403), - [anon_sym_Component] = ACTIONS(4403), - [anon_sym_component] = ACTIONS(4403), - [anon_sym_COMPONENT] = ACTIONS(4403), - [anon_sym_Debugger] = ACTIONS(4403), - [anon_sym_debugger] = ACTIONS(4403), - [anon_sym_DEBUGGER] = ACTIONS(4403), - [anon_sym_Final] = ACTIONS(4403), - [anon_sym_final] = ACTIONS(4403), - [anon_sym_FINAL] = ACTIONS(4403), - [anon_sym_Function] = ACTIONS(4409), - [anon_sym_function] = ACTIONS(4409), - [anon_sym_FUNCTION] = ACTIONS(4409), - [anon_sym_Include] = ACTIONS(4403), - [anon_sym_include] = ACTIONS(4403), - [anon_sym_INCLUDE] = ACTIONS(4403), - [anon_sym_New] = ACTIONS(4411), - [anon_sym_new] = ACTIONS(4411), - [anon_sym_NEW] = ACTIONS(4411), - [anon_sym_Package] = ACTIONS(4403), - [anon_sym_package] = ACTIONS(4403), - [anon_sym_PACKAGE] = ACTIONS(4403), - [anon_sym_Private] = ACTIONS(4403), - [anon_sym_private] = ACTIONS(4403), - [anon_sym_PRIVATE] = ACTIONS(4403), - [anon_sym_Public] = ACTIONS(4403), - [anon_sym_public] = ACTIONS(4403), - [anon_sym_PUBLIC] = ACTIONS(4403), - [anon_sym_Remote] = ACTIONS(4403), - [anon_sym_remote] = ACTIONS(4403), - [anon_sym_REMOTE] = ACTIONS(4403), - [anon_sym_Static] = ACTIONS(4403), - [anon_sym_static] = ACTIONS(4403), - [anon_sym_STATIC] = ACTIONS(4403), + [anon_sym_Abstract] = ACTIONS(4555), + [anon_sym_abstract] = ACTIONS(4555), + [anon_sym_ABSTRACT] = ACTIONS(4555), + [anon_sym_Component] = ACTIONS(4555), + [anon_sym_component] = ACTIONS(4555), + [anon_sym_COMPONENT] = ACTIONS(4555), + [anon_sym_Debugger] = ACTIONS(4555), + [anon_sym_debugger] = ACTIONS(4555), + [anon_sym_DEBUGGER] = ACTIONS(4555), + [anon_sym_Final] = ACTIONS(4555), + [anon_sym_final] = ACTIONS(4555), + [anon_sym_FINAL] = ACTIONS(4555), + [anon_sym_Function] = ACTIONS(4561), + [anon_sym_function] = ACTIONS(4561), + [anon_sym_FUNCTION] = ACTIONS(4561), + [anon_sym_Include] = ACTIONS(4555), + [anon_sym_include] = ACTIONS(4555), + [anon_sym_INCLUDE] = ACTIONS(4555), + [anon_sym_New] = ACTIONS(4563), + [anon_sym_new] = ACTIONS(4563), + [anon_sym_NEW] = ACTIONS(4563), + [anon_sym_Package] = ACTIONS(4555), + [anon_sym_package] = ACTIONS(4555), + [anon_sym_PACKAGE] = ACTIONS(4555), + [anon_sym_Private] = ACTIONS(4555), + [anon_sym_private] = ACTIONS(4555), + [anon_sym_PRIVATE] = ACTIONS(4555), + [anon_sym_Public] = ACTIONS(4555), + [anon_sym_public] = ACTIONS(4555), + [anon_sym_PUBLIC] = ACTIONS(4555), + [anon_sym_Remote] = ACTIONS(4555), + [anon_sym_remote] = ACTIONS(4555), + [anon_sym_REMOTE] = ACTIONS(4555), + [anon_sym_Static] = ACTIONS(4555), + [anon_sym_static] = ACTIONS(4555), + [anon_sym_STATIC] = ACTIONS(4555), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1751)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3362), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2642), - [sym_hash_expression] = STATE(2642), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4957), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), + [STATE(1786)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(552), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), }, - [STATE(1752)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3130), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), + [STATE(1787)] = { + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(471), + [anon_sym_query] = ACTIONS(471), + [anon_sym_QUERY] = ACTIONS(471), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_Abstract] = ACTIONS(471), + [anon_sym_abstract] = ACTIONS(471), + [anon_sym_ABSTRACT] = ACTIONS(471), + [anon_sym_Component] = ACTIONS(476), + [anon_sym_component] = ACTIONS(476), + [anon_sym_COMPONENT] = ACTIONS(476), + [anon_sym_Default] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_DEFAULT] = ACTIONS(471), + [anon_sym_Final] = ACTIONS(471), + [anon_sym_final] = ACTIONS(471), + [anon_sym_FINAL] = ACTIONS(471), + [anon_sym_Function] = ACTIONS(471), + [anon_sym_function] = ACTIONS(471), + [anon_sym_FUNCTION] = ACTIONS(471), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_Interface] = ACTIONS(476), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_INTERFACE] = ACTIONS(476), + [anon_sym_Package] = ACTIONS(471), + [anon_sym_package] = ACTIONS(471), + [anon_sym_PACKAGE] = ACTIONS(471), + [anon_sym_Private] = ACTIONS(471), + [anon_sym_private] = ACTIONS(471), + [anon_sym_PRIVATE] = ACTIONS(471), + [anon_sym_Public] = ACTIONS(471), + [anon_sym_public] = ACTIONS(471), + [anon_sym_PUBLIC] = ACTIONS(471), + [anon_sym_Remote] = ACTIONS(471), + [anon_sym_remote] = ACTIONS(471), + [anon_sym_REMOTE] = ACTIONS(471), + [anon_sym_Static] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_STATIC] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), }, - [STATE(1753)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1788)] = { + [sym_parenthesized_expression] = STATE(2408), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5336), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3622), + [sym_new_expression] = STATE(3623), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2408), + [sym_subscript_expression] = STATE(2408), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3939), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5336), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1542), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3570), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3570), + [sym_undefined] = STATE(3570), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4525), + [anon_sym_query] = ACTIONS(4525), + [anon_sym_QUERY] = ACTIONS(4525), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -293532,248 +298328,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4525), + [anon_sym_QueryExecute] = ACTIONS(4529), + [anon_sym_queryexecute] = ACTIONS(4529), + [anon_sym_QUERYEXECUTE] = ACTIONS(4529), + [anon_sym_queryExecute] = ACTIONS(4529), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_ABSTRACT] = ACTIONS(4525), + [anon_sym_Component] = ACTIONS(4525), + [anon_sym_component] = ACTIONS(4525), + [anon_sym_COMPONENT] = ACTIONS(4525), + [anon_sym_Debugger] = ACTIONS(4525), + [anon_sym_debugger] = ACTIONS(4525), + [anon_sym_DEBUGGER] = ACTIONS(4525), + [anon_sym_Final] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_FINAL] = ACTIONS(4525), + [anon_sym_Function] = ACTIONS(4531), + [anon_sym_function] = ACTIONS(4531), + [anon_sym_FUNCTION] = ACTIONS(4531), + [anon_sym_Include] = ACTIONS(4525), + [anon_sym_include] = ACTIONS(4525), + [anon_sym_INCLUDE] = ACTIONS(4525), + [anon_sym_New] = ACTIONS(4533), + [anon_sym_new] = ACTIONS(4533), + [anon_sym_NEW] = ACTIONS(4533), + [anon_sym_Package] = ACTIONS(4525), + [anon_sym_package] = ACTIONS(4525), + [anon_sym_PACKAGE] = ACTIONS(4525), + [anon_sym_Private] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_PRIVATE] = ACTIONS(4525), + [anon_sym_Public] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_PUBLIC] = ACTIONS(4525), + [anon_sym_Remote] = ACTIONS(4525), + [anon_sym_remote] = ACTIONS(4525), + [anon_sym_REMOTE] = ACTIONS(4525), + [anon_sym_Static] = ACTIONS(4525), + [anon_sym_static] = ACTIONS(4525), + [anon_sym_STATIC] = ACTIONS(4525), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1754)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(725), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), + [STATE(1789)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3263), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1755)] = { - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5175), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3687), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5175), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1661), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3466), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3466), - [sym_undefined] = STATE(3466), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4559), - [anon_sym_query] = ACTIONS(4559), - [anon_sym_QUERY] = ACTIONS(4559), + [STATE(1790)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3142), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1791)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(791), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1792)] = { + [sym_parenthesized_expression] = STATE(2405), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5114), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3740), + [sym_new_expression] = STATE(3741), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2405), + [sym_subscript_expression] = STATE(2405), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3954), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5114), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1722), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3500), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3500), + [sym_undefined] = STATE(3500), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4258), + [anon_sym_query] = ACTIONS(4258), + [anon_sym_QUERY] = ACTIONS(4258), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_DASH_DASH] = ACTIONS(4260), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -293792,118 +298848,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), + [anon_sym_get] = ACTIONS(4258), + [anon_sym_set] = ACTIONS(4258), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4559), - [anon_sym_QueryExecute] = ACTIONS(4563), - [anon_sym_queryexecute] = ACTIONS(4563), - [anon_sym_QUERYEXECUTE] = ACTIONS(4563), - [anon_sym_queryExecute] = ACTIONS(4563), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_QueryExecute] = ACTIONS(4262), + [anon_sym_queryexecute] = ACTIONS(4262), + [anon_sym_QUERYEXECUTE] = ACTIONS(4262), + [anon_sym_queryExecute] = ACTIONS(4262), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_ABSTRACT] = ACTIONS(4559), - [anon_sym_Component] = ACTIONS(4559), - [anon_sym_component] = ACTIONS(4559), - [anon_sym_COMPONENT] = ACTIONS(4559), - [anon_sym_Debugger] = ACTIONS(4559), - [anon_sym_debugger] = ACTIONS(4559), - [anon_sym_DEBUGGER] = ACTIONS(4559), - [anon_sym_Final] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_FINAL] = ACTIONS(4559), - [anon_sym_Function] = ACTIONS(4565), - [anon_sym_function] = ACTIONS(4565), - [anon_sym_FUNCTION] = ACTIONS(4565), - [anon_sym_Include] = ACTIONS(4559), - [anon_sym_include] = ACTIONS(4559), - [anon_sym_INCLUDE] = ACTIONS(4559), - [anon_sym_New] = ACTIONS(4567), - [anon_sym_new] = ACTIONS(4567), - [anon_sym_NEW] = ACTIONS(4567), - [anon_sym_Package] = ACTIONS(4559), - [anon_sym_package] = ACTIONS(4559), - [anon_sym_PACKAGE] = ACTIONS(4559), - [anon_sym_Private] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_PRIVATE] = ACTIONS(4559), - [anon_sym_Public] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_PUBLIC] = ACTIONS(4559), - [anon_sym_Remote] = ACTIONS(4559), - [anon_sym_remote] = ACTIONS(4559), - [anon_sym_REMOTE] = ACTIONS(4559), - [anon_sym_Static] = ACTIONS(4559), - [anon_sym_static] = ACTIONS(4559), - [anon_sym_STATIC] = ACTIONS(4559), + [anon_sym_Abstract] = ACTIONS(4258), + [anon_sym_abstract] = ACTIONS(4258), + [anon_sym_ABSTRACT] = ACTIONS(4258), + [anon_sym_Component] = ACTIONS(4258), + [anon_sym_component] = ACTIONS(4258), + [anon_sym_COMPONENT] = ACTIONS(4258), + [anon_sym_Debugger] = ACTIONS(4258), + [anon_sym_debugger] = ACTIONS(4258), + [anon_sym_DEBUGGER] = ACTIONS(4258), + [anon_sym_Final] = ACTIONS(4258), + [anon_sym_final] = ACTIONS(4258), + [anon_sym_FINAL] = ACTIONS(4258), + [anon_sym_Function] = ACTIONS(4264), + [anon_sym_function] = ACTIONS(4264), + [anon_sym_FUNCTION] = ACTIONS(4264), + [anon_sym_Include] = ACTIONS(4258), + [anon_sym_include] = ACTIONS(4258), + [anon_sym_INCLUDE] = ACTIONS(4258), + [anon_sym_New] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_NEW] = ACTIONS(4266), + [anon_sym_Package] = ACTIONS(4258), + [anon_sym_package] = ACTIONS(4258), + [anon_sym_PACKAGE] = ACTIONS(4258), + [anon_sym_Private] = ACTIONS(4258), + [anon_sym_private] = ACTIONS(4258), + [anon_sym_PRIVATE] = ACTIONS(4258), + [anon_sym_Public] = ACTIONS(4258), + [anon_sym_public] = ACTIONS(4258), + [anon_sym_PUBLIC] = ACTIONS(4258), + [anon_sym_Remote] = ACTIONS(4258), + [anon_sym_remote] = ACTIONS(4258), + [anon_sym_REMOTE] = ACTIONS(4258), + [anon_sym_Static] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_STATIC] = ACTIONS(4258), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1756)] = { - [sym_parenthesized_expression] = STATE(2349), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5218), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3374), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5218), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1693), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2957), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2957), - [sym_undefined] = STATE(2957), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4607), - [anon_sym_query] = ACTIONS(4607), - [anon_sym_QUERY] = ACTIONS(4607), + [STATE(1793)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3010), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4609), - [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -293922,248 +298978,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4607), - [anon_sym_set] = ACTIONS(4607), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4607), - [anon_sym_QueryExecute] = ACTIONS(4611), - [anon_sym_queryexecute] = ACTIONS(4611), - [anon_sym_QUERYEXECUTE] = ACTIONS(4611), - [anon_sym_queryExecute] = ACTIONS(4611), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_ABSTRACT] = ACTIONS(4607), - [anon_sym_Component] = ACTIONS(4607), - [anon_sym_component] = ACTIONS(4607), - [anon_sym_COMPONENT] = ACTIONS(4607), - [anon_sym_Debugger] = ACTIONS(4607), - [anon_sym_debugger] = ACTIONS(4607), - [anon_sym_DEBUGGER] = ACTIONS(4607), - [anon_sym_Final] = ACTIONS(4607), - [anon_sym_final] = ACTIONS(4607), - [anon_sym_FINAL] = ACTIONS(4607), - [anon_sym_Function] = ACTIONS(4613), - [anon_sym_function] = ACTIONS(4613), - [anon_sym_FUNCTION] = ACTIONS(4613), - [anon_sym_Include] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_INCLUDE] = ACTIONS(4607), - [anon_sym_New] = ACTIONS(4615), - [anon_sym_new] = ACTIONS(4615), - [anon_sym_NEW] = ACTIONS(4615), - [anon_sym_Package] = ACTIONS(4607), - [anon_sym_package] = ACTIONS(4607), - [anon_sym_PACKAGE] = ACTIONS(4607), - [anon_sym_Private] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_PRIVATE] = ACTIONS(4607), - [anon_sym_Public] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_PUBLIC] = ACTIONS(4607), - [anon_sym_Remote] = ACTIONS(4607), - [anon_sym_remote] = ACTIONS(4607), - [anon_sym_REMOTE] = ACTIONS(4607), - [anon_sym_Static] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_STATIC] = ACTIONS(4607), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1757)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(2916), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1758)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3308), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [STATE(1794)] = { + [sym_parenthesized_expression] = STATE(2373), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5186), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3389), + [sym_new_expression] = STATE(3132), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2373), + [sym_subscript_expression] = STATE(2373), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3938), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5186), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1761), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2868), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2868), + [sym_undefined] = STATE(2868), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4585), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4587), + [anon_sym_query] = ACTIONS(4587), + [anon_sym_QUERY] = ACTIONS(4587), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -294175,153 +299101,1323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TRUE] = ACTIONS(453), [anon_sym_False] = ACTIONS(455), [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4587), + [anon_sym_QueryExecute] = ACTIONS(4591), + [anon_sym_queryexecute] = ACTIONS(4591), + [anon_sym_QUERYEXECUTE] = ACTIONS(4591), + [anon_sym_queryExecute] = ACTIONS(4591), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_ABSTRACT] = ACTIONS(4587), + [anon_sym_Component] = ACTIONS(4587), + [anon_sym_component] = ACTIONS(4587), + [anon_sym_COMPONENT] = ACTIONS(4587), + [anon_sym_Debugger] = ACTIONS(4587), + [anon_sym_debugger] = ACTIONS(4587), + [anon_sym_DEBUGGER] = ACTIONS(4587), + [anon_sym_Final] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_FINAL] = ACTIONS(4587), + [anon_sym_Function] = ACTIONS(4593), + [anon_sym_function] = ACTIONS(4593), + [anon_sym_FUNCTION] = ACTIONS(4593), + [anon_sym_Include] = ACTIONS(4587), + [anon_sym_include] = ACTIONS(4587), + [anon_sym_INCLUDE] = ACTIONS(4587), + [anon_sym_New] = ACTIONS(4595), + [anon_sym_new] = ACTIONS(4595), + [anon_sym_NEW] = ACTIONS(4595), + [anon_sym_Package] = ACTIONS(4587), + [anon_sym_package] = ACTIONS(4587), + [anon_sym_PACKAGE] = ACTIONS(4587), + [anon_sym_Private] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_PRIVATE] = ACTIONS(4587), + [anon_sym_Public] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_PUBLIC] = ACTIONS(4587), + [anon_sym_Remote] = ACTIONS(4587), + [anon_sym_remote] = ACTIONS(4587), + [anon_sym_REMOTE] = ACTIONS(4587), + [anon_sym_Static] = ACTIONS(4587), + [anon_sym_static] = ACTIONS(4587), + [anon_sym_STATIC] = ACTIONS(4587), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1759)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(2807), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), + [STATE(1795)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3514), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1796)] = { + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(3098), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1797)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3518), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1798)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3644), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1799)] = { + [sym_parenthesized_expression] = STATE(2329), + [sym_expression] = STATE(3024), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5144), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2685), + [sym_new_expression] = STATE(2949), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2329), + [sym_subscript_expression] = STATE(2329), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3953), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5144), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1438), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2672), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2672), + [sym_undefined] = STATE(2672), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4725), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4729), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4729), + [anon_sym_query] = ACTIONS(4729), + [anon_sym_QUERY] = ACTIONS(4729), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4729), + [anon_sym_set] = ACTIONS(4729), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4729), + [anon_sym_QueryExecute] = ACTIONS(4733), + [anon_sym_queryexecute] = ACTIONS(4733), + [anon_sym_QUERYEXECUTE] = ACTIONS(4733), + [anon_sym_queryExecute] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4729), + [anon_sym_abstract] = ACTIONS(4729), + [anon_sym_ABSTRACT] = ACTIONS(4729), + [anon_sym_Component] = ACTIONS(4729), + [anon_sym_component] = ACTIONS(4729), + [anon_sym_COMPONENT] = ACTIONS(4729), + [anon_sym_Debugger] = ACTIONS(4729), + [anon_sym_debugger] = ACTIONS(4729), + [anon_sym_DEBUGGER] = ACTIONS(4729), + [anon_sym_Final] = ACTIONS(4729), + [anon_sym_final] = ACTIONS(4729), + [anon_sym_FINAL] = ACTIONS(4729), + [anon_sym_Function] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(4735), + [anon_sym_FUNCTION] = ACTIONS(4735), + [anon_sym_Include] = ACTIONS(4729), + [anon_sym_include] = ACTIONS(4729), + [anon_sym_INCLUDE] = ACTIONS(4729), + [anon_sym_New] = ACTIONS(4737), + [anon_sym_new] = ACTIONS(4737), + [anon_sym_NEW] = ACTIONS(4737), + [anon_sym_Package] = ACTIONS(4729), + [anon_sym_package] = ACTIONS(4729), + [anon_sym_PACKAGE] = ACTIONS(4729), + [anon_sym_Private] = ACTIONS(4729), + [anon_sym_private] = ACTIONS(4729), + [anon_sym_PRIVATE] = ACTIONS(4729), + [anon_sym_Public] = ACTIONS(4729), + [anon_sym_public] = ACTIONS(4729), + [anon_sym_PUBLIC] = ACTIONS(4729), + [anon_sym_Remote] = ACTIONS(4729), + [anon_sym_remote] = ACTIONS(4729), + [anon_sym_REMOTE] = ACTIONS(4729), + [anon_sym_Static] = ACTIONS(4729), + [anon_sym_static] = ACTIONS(4729), + [anon_sym_STATIC] = ACTIONS(4729), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1800)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3562), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1801)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3563), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1802)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3142), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1803)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3564), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1804)] = { + [sym_parenthesized_expression] = STATE(2197), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5121), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2537), + [sym_new_expression] = STATE(2641), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2197), + [sym_subscript_expression] = STATE(2197), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3947), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5121), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1466), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2521), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2521), + [sym_undefined] = STATE(2521), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4781), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_Query] = ACTIONS(4783), [anon_sym_query] = ACTIONS(4783), [anon_sym_QUERY] = ACTIONS(4783), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), [anon_sym_PLUS_PLUS] = ACTIONS(4785), [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE] = ACTIONS(31), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(35), + [aux_sym_number_token2] = ACTIONS(37), + [anon_sym_This] = ACTIONS(39), + [anon_sym_this] = ACTIONS(39), + [anon_sym_THIS] = ACTIONS(39), + [anon_sym_Super] = ACTIONS(41), + [anon_sym_super] = ACTIONS(41), + [anon_sym_SUPER] = ACTIONS(41), + [anon_sym_True] = ACTIONS(43), + [anon_sym_true] = ACTIONS(43), + [anon_sym_TRUE] = ACTIONS(43), + [anon_sym_False] = ACTIONS(45), + [anon_sym_false] = ACTIONS(45), + [anon_sym_FALSE] = ACTIONS(45), + [anon_sym_Null] = ACTIONS(47), + [anon_sym_null] = ACTIONS(47), + [anon_sym_NULL] = ACTIONS(47), + [anon_sym_Undefined] = ACTIONS(49), + [anon_sym_undefined] = ACTIONS(49), + [anon_sym_UNDEFINED] = ACTIONS(49), [anon_sym_get] = ACTIONS(4783), [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), [anon_sym_export] = ACTIONS(4783), [anon_sym_QueryExecute] = ACTIONS(4787), [anon_sym_queryexecute] = ACTIONS(4787), [anon_sym_QUERYEXECUTE] = ACTIONS(4787), [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), + [anon_sym_BQUOTE] = ACTIONS(619), [anon_sym_Abstract] = ACTIONS(4783), [anon_sym_abstract] = ACTIONS(4783), [anon_sym_ABSTRACT] = ACTIONS(4783), @@ -294358,457 +300454,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(4783), [anon_sym_static] = ACTIONS(4783), [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1760)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3513), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2424), - [sym_hash_expression] = STATE(2424), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4875), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1761)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3130), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), + [STATE(1805)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3565), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1762)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(1806)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3024), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), }, - [STATE(1763)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), - [anon_sym_LBRACE] = ACTIONS(611), + [STATE(1807)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3579), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1808)] = { + [sym_parenthesized_expression] = STATE(2200), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5156), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2494), + [sym_new_expression] = STATE(2495), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2200), + [sym_subscript_expression] = STATE(2200), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3949), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5156), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1578), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2536), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2536), + [sym_undefined] = STATE(2536), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4954), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), + [anon_sym_Query] = ACTIONS(4082), + [anon_sym_query] = ACTIONS(4082), + [anon_sym_QUERY] = ACTIONS(4082), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4084), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4086), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -294832,763 +300928,893 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), + [anon_sym_get] = ACTIONS(4082), + [anon_sym_set] = ACTIONS(4082), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_QueryExecute] = ACTIONS(4090), + [anon_sym_queryexecute] = ACTIONS(4090), + [anon_sym_QUERYEXECUTE] = ACTIONS(4090), + [anon_sym_queryExecute] = ACTIONS(4090), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), + [anon_sym_Abstract] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(4082), + [anon_sym_ABSTRACT] = ACTIONS(4082), + [anon_sym_Component] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_COMPONENT] = ACTIONS(4082), + [anon_sym_Debugger] = ACTIONS(4082), + [anon_sym_debugger] = ACTIONS(4082), + [anon_sym_DEBUGGER] = ACTIONS(4082), + [anon_sym_Final] = ACTIONS(4082), + [anon_sym_final] = ACTIONS(4082), + [anon_sym_FINAL] = ACTIONS(4082), + [anon_sym_Function] = ACTIONS(4092), + [anon_sym_function] = ACTIONS(4092), + [anon_sym_FUNCTION] = ACTIONS(4092), + [anon_sym_Include] = ACTIONS(4082), + [anon_sym_include] = ACTIONS(4082), + [anon_sym_INCLUDE] = ACTIONS(4082), + [anon_sym_New] = ACTIONS(4094), + [anon_sym_new] = ACTIONS(4094), + [anon_sym_NEW] = ACTIONS(4094), + [anon_sym_Package] = ACTIONS(4082), + [anon_sym_package] = ACTIONS(4082), + [anon_sym_PACKAGE] = ACTIONS(4082), + [anon_sym_Private] = ACTIONS(4082), + [anon_sym_private] = ACTIONS(4082), + [anon_sym_PRIVATE] = ACTIONS(4082), + [anon_sym_Public] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4082), + [anon_sym_PUBLIC] = ACTIONS(4082), + [anon_sym_Remote] = ACTIONS(4082), + [anon_sym_remote] = ACTIONS(4082), + [anon_sym_REMOTE] = ACTIONS(4082), + [anon_sym_Static] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_STATIC] = ACTIONS(4082), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1764)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(2807), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [STATE(1809)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3581), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1765)] = { - [sym_parenthesized_expression] = STATE(2161), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5117), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2554), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5117), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1482), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2564), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2564), - [sym_undefined] = STATE(2564), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4259), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4261), - [anon_sym_query] = ACTIONS(4261), - [anon_sym_QUERY] = ACTIONS(4261), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4261), - [anon_sym_set] = ACTIONS(4261), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_QueryExecute] = ACTIONS(4267), - [anon_sym_queryexecute] = ACTIONS(4267), - [anon_sym_QUERYEXECUTE] = ACTIONS(4267), - [anon_sym_queryExecute] = ACTIONS(4267), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4261), - [anon_sym_abstract] = ACTIONS(4261), - [anon_sym_ABSTRACT] = ACTIONS(4261), - [anon_sym_Component] = ACTIONS(4261), - [anon_sym_component] = ACTIONS(4261), - [anon_sym_COMPONENT] = ACTIONS(4261), - [anon_sym_Debugger] = ACTIONS(4261), - [anon_sym_debugger] = ACTIONS(4261), - [anon_sym_DEBUGGER] = ACTIONS(4261), - [anon_sym_Final] = ACTIONS(4261), - [anon_sym_final] = ACTIONS(4261), - [anon_sym_FINAL] = ACTIONS(4261), - [anon_sym_Function] = ACTIONS(4269), - [anon_sym_function] = ACTIONS(4269), - [anon_sym_FUNCTION] = ACTIONS(4269), - [anon_sym_Include] = ACTIONS(4261), - [anon_sym_include] = ACTIONS(4261), - [anon_sym_INCLUDE] = ACTIONS(4261), - [anon_sym_New] = ACTIONS(4271), - [anon_sym_new] = ACTIONS(4271), - [anon_sym_NEW] = ACTIONS(4271), - [anon_sym_Package] = ACTIONS(4261), - [anon_sym_package] = ACTIONS(4261), - [anon_sym_PACKAGE] = ACTIONS(4261), - [anon_sym_Private] = ACTIONS(4261), - [anon_sym_private] = ACTIONS(4261), - [anon_sym_PRIVATE] = ACTIONS(4261), - [anon_sym_Public] = ACTIONS(4261), - [anon_sym_public] = ACTIONS(4261), - [anon_sym_PUBLIC] = ACTIONS(4261), - [anon_sym_Remote] = ACTIONS(4261), - [anon_sym_remote] = ACTIONS(4261), - [anon_sym_REMOTE] = ACTIONS(4261), - [anon_sym_Static] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_STATIC] = ACTIONS(4261), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(1810)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3588), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1766)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3556), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(1811)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3590), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1767)] = { - [sym_parenthesized_expression] = STATE(2397), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2397), - [sym_subscript_expression] = STATE(2397), - [sym_assignment_expression] = STATE(481), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3637), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3637), - [sym_undefined] = STATE(3637), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(517), - [anon_sym_query] = ACTIONS(517), - [anon_sym_QUERY] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(517), - [anon_sym_set] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(517), - [anon_sym_QueryExecute] = ACTIONS(540), - [anon_sym_queryexecute] = ACTIONS(540), - [anon_sym_QUERYEXECUTE] = ACTIONS(540), - [anon_sym_queryExecute] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_ABSTRACT] = ACTIONS(517), - [anon_sym_Component] = ACTIONS(517), - [anon_sym_component] = ACTIONS(517), - [anon_sym_COMPONENT] = ACTIONS(517), - [anon_sym_Debugger] = ACTIONS(517), - [anon_sym_debugger] = ACTIONS(517), - [anon_sym_DEBUGGER] = ACTIONS(517), - [anon_sym_Final] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_FINAL] = ACTIONS(517), - [anon_sym_Function] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_FUNCTION] = ACTIONS(1454), - [anon_sym_Include] = ACTIONS(517), - [anon_sym_include] = ACTIONS(517), - [anon_sym_INCLUDE] = ACTIONS(517), - [anon_sym_New] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_NEW] = ACTIONS(546), - [anon_sym_Package] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_PACKAGE] = ACTIONS(517), - [anon_sym_Private] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_PRIVATE] = ACTIONS(517), - [anon_sym_Public] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_PUBLIC] = ACTIONS(517), - [anon_sym_Remote] = ACTIONS(517), - [anon_sym_remote] = ACTIONS(517), - [anon_sym_REMOTE] = ACTIONS(517), - [anon_sym_Static] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_STATIC] = ACTIONS(517), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(1812)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3594), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1768)] = { - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3395), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5089), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2712), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5089), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1431), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2702), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2702), - [sym_undefined] = STATE(2702), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2655), - [sym_hash_expression] = STATE(2655), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4743), - [anon_sym_query] = ACTIONS(4743), - [anon_sym_QUERY] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4745), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4743), - [anon_sym_set] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4965), - [anon_sym_export] = ACTIONS(4743), - [anon_sym_QueryExecute] = ACTIONS(4747), - [anon_sym_queryexecute] = ACTIONS(4747), - [anon_sym_QUERYEXECUTE] = ACTIONS(4747), - [anon_sym_queryExecute] = ACTIONS(4747), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_ABSTRACT] = ACTIONS(4743), - [anon_sym_Component] = ACTIONS(4743), - [anon_sym_component] = ACTIONS(4743), - [anon_sym_COMPONENT] = ACTIONS(4743), - [anon_sym_Debugger] = ACTIONS(4743), - [anon_sym_debugger] = ACTIONS(4743), - [anon_sym_DEBUGGER] = ACTIONS(4743), - [anon_sym_Final] = ACTIONS(4743), - [anon_sym_final] = ACTIONS(4743), - [anon_sym_FINAL] = ACTIONS(4743), - [anon_sym_Function] = ACTIONS(4749), - [anon_sym_function] = ACTIONS(4749), - [anon_sym_FUNCTION] = ACTIONS(4749), - [anon_sym_Include] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_INCLUDE] = ACTIONS(4743), - [anon_sym_New] = ACTIONS(4751), - [anon_sym_new] = ACTIONS(4751), - [anon_sym_NEW] = ACTIONS(4751), - [anon_sym_Package] = ACTIONS(4743), - [anon_sym_package] = ACTIONS(4743), - [anon_sym_PACKAGE] = ACTIONS(4743), - [anon_sym_Private] = ACTIONS(4743), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_PRIVATE] = ACTIONS(4743), - [anon_sym_Public] = ACTIONS(4743), - [anon_sym_public] = ACTIONS(4743), - [anon_sym_PUBLIC] = ACTIONS(4743), - [anon_sym_Remote] = ACTIONS(4743), - [anon_sym_remote] = ACTIONS(4743), - [anon_sym_REMOTE] = ACTIONS(4743), - [anon_sym_Static] = ACTIONS(4743), - [anon_sym_static] = ACTIONS(4743), - [anon_sym_STATIC] = ACTIONS(4743), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), + [STATE(1813)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3595), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1769)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3503), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [STATE(1814)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3626), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1815)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3359), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2455), + [sym_hash_expression] = STATE(2455), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), + [anon_sym_let] = ACTIONS(4819), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -295612,113 +301838,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), + [sym_hash_empty] = ACTIONS(4711), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1770)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1816)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -295742,248 +301968,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1771)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(3622), - [sym_primary_expression] = STATE(3409), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4318), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2293), - [sym_subscript_expression] = STATE(2293), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4318), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2630), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2630), - [sym_undefined] = STATE(2630), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_Query] = ACTIONS(4969), - [anon_sym_query] = ACTIONS(4969), - [anon_sym_QUERY] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4969), - [anon_sym_set] = ACTIONS(4969), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4969), - [anon_sym_QueryExecute] = ACTIONS(4971), - [anon_sym_queryexecute] = ACTIONS(4971), - [anon_sym_QUERYEXECUTE] = ACTIONS(4971), - [anon_sym_queryExecute] = ACTIONS(4971), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4969), - [anon_sym_abstract] = ACTIONS(4969), - [anon_sym_ABSTRACT] = ACTIONS(4969), - [anon_sym_Component] = ACTIONS(4969), - [anon_sym_component] = ACTIONS(4969), - [anon_sym_COMPONENT] = ACTIONS(4969), - [anon_sym_Debugger] = ACTIONS(4969), - [anon_sym_debugger] = ACTIONS(4969), - [anon_sym_DEBUGGER] = ACTIONS(4969), - [anon_sym_Final] = ACTIONS(4969), - [anon_sym_final] = ACTIONS(4969), - [anon_sym_FINAL] = ACTIONS(4969), - [anon_sym_Function] = ACTIONS(4973), - [anon_sym_function] = ACTIONS(4973), - [anon_sym_FUNCTION] = ACTIONS(4973), - [anon_sym_Include] = ACTIONS(4969), - [anon_sym_include] = ACTIONS(4969), - [anon_sym_INCLUDE] = ACTIONS(4969), - [anon_sym_New] = ACTIONS(4975), - [anon_sym_new] = ACTIONS(4975), - [anon_sym_NEW] = ACTIONS(4975), - [anon_sym_Package] = ACTIONS(4969), - [anon_sym_package] = ACTIONS(4969), - [anon_sym_PACKAGE] = ACTIONS(4969), - [anon_sym_Private] = ACTIONS(4969), - [anon_sym_private] = ACTIONS(4969), - [anon_sym_PRIVATE] = ACTIONS(4969), - [anon_sym_Public] = ACTIONS(4969), - [anon_sym_public] = ACTIONS(4969), - [anon_sym_PUBLIC] = ACTIONS(4969), - [anon_sym_Remote] = ACTIONS(4969), - [anon_sym_remote] = ACTIONS(4969), - [anon_sym_REMOTE] = ACTIONS(4969), - [anon_sym_Static] = ACTIONS(4969), - [anon_sym_static] = ACTIONS(4969), - [anon_sym_STATIC] = ACTIONS(4969), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1772)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3780), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1817)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3754), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -296002,503 +302098,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1773)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3469), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1774)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(1818)] = { + [sym_parenthesized_expression] = STATE(2372), + [sym_expression] = STATE(3864), + [sym_primary_expression] = STATE(2861), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2888), + [sym_new_expression] = STATE(2980), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2372), + [sym_subscript_expression] = STATE(2372), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3008), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3008), + [sym_undefined] = STATE(3008), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3655), + [sym_hash_expression] = STATE(3655), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4969), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4973), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4973), + [anon_sym_query] = ACTIONS(4973), + [anon_sym_QUERY] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4973), + [anon_sym_set] = ACTIONS(4973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4975), + [anon_sym_export] = ACTIONS(4973), + [anon_sym_QueryExecute] = ACTIONS(4977), + [anon_sym_queryexecute] = ACTIONS(4977), + [anon_sym_QUERYEXECUTE] = ACTIONS(4977), + [anon_sym_queryExecute] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4973), + [anon_sym_abstract] = ACTIONS(4973), + [anon_sym_ABSTRACT] = ACTIONS(4973), + [anon_sym_Component] = ACTIONS(4973), + [anon_sym_component] = ACTIONS(4973), + [anon_sym_COMPONENT] = ACTIONS(4973), + [anon_sym_Debugger] = ACTIONS(4973), + [anon_sym_debugger] = ACTIONS(4973), + [anon_sym_DEBUGGER] = ACTIONS(4973), + [anon_sym_Final] = ACTIONS(4973), + [anon_sym_final] = ACTIONS(4973), + [anon_sym_FINAL] = ACTIONS(4973), + [anon_sym_Function] = ACTIONS(4979), + [anon_sym_function] = ACTIONS(4979), + [anon_sym_FUNCTION] = ACTIONS(4979), + [anon_sym_Include] = ACTIONS(4973), + [anon_sym_include] = ACTIONS(4973), + [anon_sym_INCLUDE] = ACTIONS(4973), + [anon_sym_New] = ACTIONS(4981), + [anon_sym_new] = ACTIONS(4981), + [anon_sym_NEW] = ACTIONS(4981), + [anon_sym_Package] = ACTIONS(4973), + [anon_sym_package] = ACTIONS(4973), + [anon_sym_PACKAGE] = ACTIONS(4973), + [anon_sym_Private] = ACTIONS(4973), + [anon_sym_private] = ACTIONS(4973), + [anon_sym_PRIVATE] = ACTIONS(4973), + [anon_sym_Public] = ACTIONS(4973), + [anon_sym_public] = ACTIONS(4973), + [anon_sym_PUBLIC] = ACTIONS(4973), + [anon_sym_Remote] = ACTIONS(4973), + [anon_sym_remote] = ACTIONS(4973), + [anon_sym_REMOTE] = ACTIONS(4973), + [anon_sym_Static] = ACTIONS(4973), + [anon_sym_static] = ACTIONS(4973), + [anon_sym_STATIC] = ACTIONS(4973), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1775)] = { - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(471), - [anon_sym_query] = ACTIONS(471), - [anon_sym_QUERY] = ACTIONS(471), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_Abstract] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Component] = ACTIONS(476), - [anon_sym_component] = ACTIONS(476), - [anon_sym_COMPONENT] = ACTIONS(476), - [anon_sym_Default] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_DEFAULT] = ACTIONS(471), - [anon_sym_Final] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_FINAL] = ACTIONS(471), - [anon_sym_Function] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_FUNCTION] = ACTIONS(471), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_INTERFACE] = ACTIONS(476), - [anon_sym_Package] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_PACKAGE] = ACTIONS(471), - [anon_sym_Private] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_PRIVATE] = ACTIONS(471), - [anon_sym_Public] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_PUBLIC] = ACTIONS(471), - [anon_sym_Remote] = ACTIONS(471), - [anon_sym_remote] = ACTIONS(471), - [anon_sym_REMOTE] = ACTIONS(471), - [anon_sym_Static] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_STATIC] = ACTIONS(471), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [STATE(1819)] = { + [sym_parenthesized_expression] = STATE(2372), + [sym_expression] = STATE(3864), + [sym_primary_expression] = STATE(2863), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2888), + [sym_new_expression] = STATE(2864), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2372), + [sym_subscript_expression] = STATE(2372), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3008), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3008), + [sym_undefined] = STATE(3008), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3655), + [sym_hash_expression] = STATE(3655), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4969), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4973), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4973), + [anon_sym_query] = ACTIONS(4973), + [anon_sym_QUERY] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4973), + [anon_sym_set] = ACTIONS(4973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4975), + [anon_sym_export] = ACTIONS(4973), + [anon_sym_QueryExecute] = ACTIONS(4977), + [anon_sym_queryexecute] = ACTIONS(4977), + [anon_sym_QUERYEXECUTE] = ACTIONS(4977), + [anon_sym_queryExecute] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4973), + [anon_sym_abstract] = ACTIONS(4973), + [anon_sym_ABSTRACT] = ACTIONS(4973), + [anon_sym_Component] = ACTIONS(4973), + [anon_sym_component] = ACTIONS(4973), + [anon_sym_COMPONENT] = ACTIONS(4973), + [anon_sym_Debugger] = ACTIONS(4973), + [anon_sym_debugger] = ACTIONS(4973), + [anon_sym_DEBUGGER] = ACTIONS(4973), + [anon_sym_Final] = ACTIONS(4973), + [anon_sym_final] = ACTIONS(4973), + [anon_sym_FINAL] = ACTIONS(4973), + [anon_sym_Function] = ACTIONS(4979), + [anon_sym_function] = ACTIONS(4979), + [anon_sym_FUNCTION] = ACTIONS(4979), + [anon_sym_Include] = ACTIONS(4973), + [anon_sym_include] = ACTIONS(4973), + [anon_sym_INCLUDE] = ACTIONS(4973), + [anon_sym_New] = ACTIONS(4981), + [anon_sym_new] = ACTIONS(4981), + [anon_sym_NEW] = ACTIONS(4981), + [anon_sym_Package] = ACTIONS(4973), + [anon_sym_package] = ACTIONS(4973), + [anon_sym_PACKAGE] = ACTIONS(4973), + [anon_sym_Private] = ACTIONS(4973), + [anon_sym_private] = ACTIONS(4973), + [anon_sym_PRIVATE] = ACTIONS(4973), + [anon_sym_Public] = ACTIONS(4973), + [anon_sym_public] = ACTIONS(4973), + [anon_sym_PUBLIC] = ACTIONS(4973), + [anon_sym_Remote] = ACTIONS(4973), + [anon_sym_remote] = ACTIONS(4973), + [anon_sym_REMOTE] = ACTIONS(4973), + [anon_sym_Static] = ACTIONS(4973), + [anon_sym_static] = ACTIONS(4973), + [anon_sym_STATIC] = ACTIONS(4973), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1776)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3270), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2424), - [sym_hash_expression] = STATE(2424), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1820)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -296522,243 +302488,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4875), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1777)] = { - [sym_parenthesized_expression] = STATE(2355), - [sym_expression] = STATE(3576), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5107), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2977), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2355), - [sym_subscript_expression] = STATE(2355), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5107), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1540), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3059), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3059), - [sym_undefined] = STATE(3059), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4843), - [anon_sym_LBRACE] = ACTIONS(4845), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4847), - [anon_sym_query] = ACTIONS(4847), - [anon_sym_QUERY] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4849), - [anon_sym_DASH_DASH] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4847), - [anon_sym_set] = ACTIONS(4847), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4847), - [anon_sym_QueryExecute] = ACTIONS(4851), - [anon_sym_queryexecute] = ACTIONS(4851), - [anon_sym_QUERYEXECUTE] = ACTIONS(4851), - [anon_sym_queryExecute] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4847), - [anon_sym_abstract] = ACTIONS(4847), - [anon_sym_ABSTRACT] = ACTIONS(4847), - [anon_sym_Component] = ACTIONS(4847), - [anon_sym_component] = ACTIONS(4847), - [anon_sym_COMPONENT] = ACTIONS(4847), - [anon_sym_Debugger] = ACTIONS(4847), - [anon_sym_debugger] = ACTIONS(4847), - [anon_sym_DEBUGGER] = ACTIONS(4847), - [anon_sym_Final] = ACTIONS(4847), - [anon_sym_final] = ACTIONS(4847), - [anon_sym_FINAL] = ACTIONS(4847), - [anon_sym_Function] = ACTIONS(4853), - [anon_sym_function] = ACTIONS(4853), - [anon_sym_FUNCTION] = ACTIONS(4853), - [anon_sym_Include] = ACTIONS(4847), - [anon_sym_include] = ACTIONS(4847), - [anon_sym_INCLUDE] = ACTIONS(4847), - [anon_sym_New] = ACTIONS(4855), - [anon_sym_new] = ACTIONS(4855), - [anon_sym_NEW] = ACTIONS(4855), - [anon_sym_Package] = ACTIONS(4847), - [anon_sym_package] = ACTIONS(4847), - [anon_sym_PACKAGE] = ACTIONS(4847), - [anon_sym_Private] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4847), - [anon_sym_PRIVATE] = ACTIONS(4847), - [anon_sym_Public] = ACTIONS(4847), - [anon_sym_public] = ACTIONS(4847), - [anon_sym_PUBLIC] = ACTIONS(4847), - [anon_sym_Remote] = ACTIONS(4847), - [anon_sym_remote] = ACTIONS(4847), - [anon_sym_REMOTE] = ACTIONS(4847), - [anon_sym_Static] = ACTIONS(4847), - [anon_sym_static] = ACTIONS(4847), - [anon_sym_STATIC] = ACTIONS(4847), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), + [STATE(1821)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3493), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1778)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3271), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2436), - [sym_hash_expression] = STATE(2436), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1822)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3194), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2467), + [sym_hash_expression] = STATE(2467), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -296782,113 +302748,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4767), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4909), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1779)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3417), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [STATE(1823)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(3371), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2455), + [sym_hash_expression] = STATE(2455), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), + [anon_sym_let] = ACTIONS(4819), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -296912,243 +302878,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), + [sym_hash_empty] = ACTIONS(4711), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1780)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(754), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1781)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3413), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2558), - [sym_hash_expression] = STATE(2558), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), + [STATE(1824)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3195), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2455), + [sym_hash_expression] = STATE(2455), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -297172,118 +303008,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4977), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), + [sym_hash_empty] = ACTIONS(4711), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1782)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3763), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1825)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3777), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -297302,113 +303138,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1783)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3273), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1826)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3196), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -297432,113 +303268,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1784)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3274), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1827)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3197), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -297562,113 +303398,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1785)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3275), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1828)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3198), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -297692,243 +303528,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1786)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(487), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1787)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3276), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1829)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3199), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -297952,113 +303658,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1788)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3277), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1830)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3200), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -298082,113 +303788,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1789)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3278), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1831)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3201), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -298212,113 +303918,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1790)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3279), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1832)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3202), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -298342,113 +304048,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1791)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3280), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1833)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3205), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -298472,113 +304178,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1792)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3281), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1834)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3206), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -298602,113 +304308,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1793)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3282), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1835)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3207), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -298732,113 +304438,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1794)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3283), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1836)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3208), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -298862,113 +304568,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1795)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3284), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1837)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -298992,113 +304698,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1796)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3285), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1838)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3210), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -299122,113 +304828,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1797)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3286), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1839)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -299252,113 +304958,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1798)] = { - [sym_parenthesized_expression] = STATE(2125), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(2449), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2443), - [sym_new_expression] = STATE(2553), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2445), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2445), - [sym_undefined] = STATE(2445), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(3681), - [sym_hash_expression] = STATE(3681), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4797), + [STATE(1840)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2460), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2465), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4847), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4943), + [anon_sym_let] = ACTIONS(4875), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4943), - [anon_sym_query] = ACTIONS(4943), - [anon_sym_QUERY] = ACTIONS(4943), + [anon_sym_Query] = ACTIONS(4875), + [anon_sym_query] = ACTIONS(4875), + [anon_sym_QUERY] = ACTIONS(4875), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -299382,243 +305088,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4943), - [anon_sym_set] = ACTIONS(4943), + [anon_sym_get] = ACTIONS(4875), + [anon_sym_set] = ACTIONS(4875), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4801), - [anon_sym_export] = ACTIONS(4943), - [anon_sym_QueryExecute] = ACTIONS(4945), - [anon_sym_queryexecute] = ACTIONS(4945), - [anon_sym_QUERYEXECUTE] = ACTIONS(4945), - [anon_sym_queryExecute] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4943), - [anon_sym_abstract] = ACTIONS(4943), - [anon_sym_ABSTRACT] = ACTIONS(4943), - [anon_sym_Component] = ACTIONS(4943), - [anon_sym_component] = ACTIONS(4943), - [anon_sym_COMPONENT] = ACTIONS(4943), - [anon_sym_Debugger] = ACTIONS(4943), - [anon_sym_debugger] = ACTIONS(4943), - [anon_sym_DEBUGGER] = ACTIONS(4943), - [anon_sym_Final] = ACTIONS(4943), - [anon_sym_final] = ACTIONS(4943), - [anon_sym_FINAL] = ACTIONS(4943), - [anon_sym_Function] = ACTIONS(4805), - [anon_sym_function] = ACTIONS(4805), - [anon_sym_FUNCTION] = ACTIONS(4805), - [anon_sym_Include] = ACTIONS(4943), - [anon_sym_include] = ACTIONS(4943), - [anon_sym_INCLUDE] = ACTIONS(4943), - [anon_sym_New] = ACTIONS(4979), - [anon_sym_new] = ACTIONS(4979), - [anon_sym_NEW] = ACTIONS(4979), - [anon_sym_Package] = ACTIONS(4943), - [anon_sym_package] = ACTIONS(4943), - [anon_sym_PACKAGE] = ACTIONS(4943), - [anon_sym_Private] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4943), - [anon_sym_PRIVATE] = ACTIONS(4943), - [anon_sym_Public] = ACTIONS(4943), - [anon_sym_public] = ACTIONS(4943), - [anon_sym_PUBLIC] = ACTIONS(4943), - [anon_sym_Remote] = ACTIONS(4943), - [anon_sym_remote] = ACTIONS(4943), - [anon_sym_REMOTE] = ACTIONS(4943), - [anon_sym_Static] = ACTIONS(4943), - [anon_sym_static] = ACTIONS(4943), - [anon_sym_STATIC] = ACTIONS(4943), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1799)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3615), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4875), + [anon_sym_QueryExecute] = ACTIONS(4877), + [anon_sym_queryexecute] = ACTIONS(4877), + [anon_sym_QUERYEXECUTE] = ACTIONS(4877), + [anon_sym_queryExecute] = ACTIONS(4877), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), + [anon_sym_Abstract] = ACTIONS(4875), + [anon_sym_abstract] = ACTIONS(4875), + [anon_sym_ABSTRACT] = ACTIONS(4875), + [anon_sym_Component] = ACTIONS(4875), + [anon_sym_component] = ACTIONS(4875), + [anon_sym_COMPONENT] = ACTIONS(4875), + [anon_sym_Debugger] = ACTIONS(4875), + [anon_sym_debugger] = ACTIONS(4875), + [anon_sym_DEBUGGER] = ACTIONS(4875), + [anon_sym_Final] = ACTIONS(4875), + [anon_sym_final] = ACTIONS(4875), + [anon_sym_FINAL] = ACTIONS(4875), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4875), + [anon_sym_include] = ACTIONS(4875), + [anon_sym_INCLUDE] = ACTIONS(4875), + [anon_sym_New] = ACTIONS(4983), + [anon_sym_new] = ACTIONS(4983), + [anon_sym_NEW] = ACTIONS(4983), + [anon_sym_Package] = ACTIONS(4875), + [anon_sym_package] = ACTIONS(4875), + [anon_sym_PACKAGE] = ACTIONS(4875), + [anon_sym_Private] = ACTIONS(4875), + [anon_sym_private] = ACTIONS(4875), + [anon_sym_PRIVATE] = ACTIONS(4875), + [anon_sym_Public] = ACTIONS(4875), + [anon_sym_public] = ACTIONS(4875), + [anon_sym_PUBLIC] = ACTIONS(4875), + [anon_sym_Remote] = ACTIONS(4875), + [anon_sym_remote] = ACTIONS(4875), + [anon_sym_REMOTE] = ACTIONS(4875), + [anon_sym_Static] = ACTIONS(4875), + [anon_sym_static] = ACTIONS(4875), + [anon_sym_STATIC] = ACTIONS(4875), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1800)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3287), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1841)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2473), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2487), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4847), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4875), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4875), + [anon_sym_query] = ACTIONS(4875), + [anon_sym_QUERY] = ACTIONS(4875), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -299642,358 +305218,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [anon_sym_get] = ACTIONS(4875), + [anon_sym_set] = ACTIONS(4875), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4875), + [anon_sym_QueryExecute] = ACTIONS(4877), + [anon_sym_queryexecute] = ACTIONS(4877), + [anon_sym_QUERYEXECUTE] = ACTIONS(4877), + [anon_sym_queryExecute] = ACTIONS(4877), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4875), + [anon_sym_abstract] = ACTIONS(4875), + [anon_sym_ABSTRACT] = ACTIONS(4875), + [anon_sym_Component] = ACTIONS(4875), + [anon_sym_component] = ACTIONS(4875), + [anon_sym_COMPONENT] = ACTIONS(4875), + [anon_sym_Debugger] = ACTIONS(4875), + [anon_sym_debugger] = ACTIONS(4875), + [anon_sym_DEBUGGER] = ACTIONS(4875), + [anon_sym_Final] = ACTIONS(4875), + [anon_sym_final] = ACTIONS(4875), + [anon_sym_FINAL] = ACTIONS(4875), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4875), + [anon_sym_include] = ACTIONS(4875), + [anon_sym_INCLUDE] = ACTIONS(4875), + [anon_sym_New] = ACTIONS(4983), + [anon_sym_new] = ACTIONS(4983), + [anon_sym_NEW] = ACTIONS(4983), + [anon_sym_Package] = ACTIONS(4875), + [anon_sym_package] = ACTIONS(4875), + [anon_sym_PACKAGE] = ACTIONS(4875), + [anon_sym_Private] = ACTIONS(4875), + [anon_sym_private] = ACTIONS(4875), + [anon_sym_PRIVATE] = ACTIONS(4875), + [anon_sym_Public] = ACTIONS(4875), + [anon_sym_public] = ACTIONS(4875), + [anon_sym_PUBLIC] = ACTIONS(4875), + [anon_sym_Remote] = ACTIONS(4875), + [anon_sym_remote] = ACTIONS(4875), + [anon_sym_REMOTE] = ACTIONS(4875), + [anon_sym_Static] = ACTIONS(4875), + [anon_sym_static] = ACTIONS(4875), + [anon_sym_STATIC] = ACTIONS(4875), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1801)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(488), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1802)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4500), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2346), - [sym_subscript_expression] = STATE(2346), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4500), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3060), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3060), - [sym_undefined] = STATE(3060), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_Query] = ACTIONS(4983), - [anon_sym_query] = ACTIONS(4983), - [anon_sym_QUERY] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4983), - [anon_sym_set] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4983), - [anon_sym_QueryExecute] = ACTIONS(4985), - [anon_sym_queryexecute] = ACTIONS(4985), - [anon_sym_QUERYEXECUTE] = ACTIONS(4985), - [anon_sym_queryExecute] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4983), - [anon_sym_abstract] = ACTIONS(4983), - [anon_sym_ABSTRACT] = ACTIONS(4983), - [anon_sym_Component] = ACTIONS(4983), - [anon_sym_component] = ACTIONS(4983), - [anon_sym_COMPONENT] = ACTIONS(4983), - [anon_sym_Debugger] = ACTIONS(4983), - [anon_sym_debugger] = ACTIONS(4983), - [anon_sym_DEBUGGER] = ACTIONS(4983), - [anon_sym_Final] = ACTIONS(4983), - [anon_sym_final] = ACTIONS(4983), - [anon_sym_FINAL] = ACTIONS(4983), - [anon_sym_Function] = ACTIONS(4987), - [anon_sym_function] = ACTIONS(4987), - [anon_sym_FUNCTION] = ACTIONS(4987), - [anon_sym_Include] = ACTIONS(4983), - [anon_sym_include] = ACTIONS(4983), - [anon_sym_INCLUDE] = ACTIONS(4983), - [anon_sym_New] = ACTIONS(4989), - [anon_sym_new] = ACTIONS(4989), - [anon_sym_NEW] = ACTIONS(4989), - [anon_sym_Package] = ACTIONS(4983), - [anon_sym_package] = ACTIONS(4983), - [anon_sym_PACKAGE] = ACTIONS(4983), - [anon_sym_Private] = ACTIONS(4983), - [anon_sym_private] = ACTIONS(4983), - [anon_sym_PRIVATE] = ACTIONS(4983), - [anon_sym_Public] = ACTIONS(4983), - [anon_sym_public] = ACTIONS(4983), - [anon_sym_PUBLIC] = ACTIONS(4983), - [anon_sym_Remote] = ACTIONS(4983), - [anon_sym_remote] = ACTIONS(4983), - [anon_sym_REMOTE] = ACTIONS(4983), - [anon_sym_Static] = ACTIONS(4983), - [anon_sym_static] = ACTIONS(4983), - [anon_sym_STATIC] = ACTIONS(4983), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1803)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3449), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), + [STATE(1842)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3703), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), [anon_sym_let] = ACTIONS(613), @@ -300035,7 +305351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(613), [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), + [sym_hash_empty] = ACTIONS(4088), [anon_sym_export] = ACTIONS(613), [anon_sym_QueryExecute] = ACTIONS(617), [anon_sym_queryexecute] = ACTIONS(617), @@ -300081,64 +305397,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1804)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3393), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2713), - [sym_hash_expression] = STATE(2713), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), + [STATE(1843)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3212), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -300162,113 +305478,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4777), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1805)] = { - [sym_parenthesized_expression] = STATE(2350), - [sym_expression] = STATE(3290), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5185), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(3066), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2350), - [sym_subscript_expression] = STATE(2350), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5185), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1774), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3067), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3067), - [sym_undefined] = STATE(3067), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4775), + [STATE(1844)] = { + [sym_parenthesized_expression] = STATE(2336), + [sym_expression] = STATE(3216), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5225), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(3094), + [sym_new_expression] = STATE(3095), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3951), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5225), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1820), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(3096), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(3096), + [sym_undefined] = STATE(3096), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4162), + [anon_sym_let] = ACTIONS(4507), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4162), - [anon_sym_query] = ACTIONS(4162), - [anon_sym_QUERY] = ACTIONS(4162), + [anon_sym_Query] = ACTIONS(4507), + [anon_sym_query] = ACTIONS(4507), + [anon_sym_QUERY] = ACTIONS(4507), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -300292,118 +305608,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4162), - [anon_sym_QueryExecute] = ACTIONS(4168), - [anon_sym_queryexecute] = ACTIONS(4168), - [anon_sym_QUERYEXECUTE] = ACTIONS(4168), - [anon_sym_queryExecute] = ACTIONS(4168), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4507), + [anon_sym_QueryExecute] = ACTIONS(4511), + [anon_sym_queryexecute] = ACTIONS(4511), + [anon_sym_QUERYEXECUTE] = ACTIONS(4511), + [anon_sym_queryExecute] = ACTIONS(4511), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4162), - [anon_sym_abstract] = ACTIONS(4162), - [anon_sym_ABSTRACT] = ACTIONS(4162), - [anon_sym_Component] = ACTIONS(4162), - [anon_sym_component] = ACTIONS(4162), - [anon_sym_COMPONENT] = ACTIONS(4162), - [anon_sym_Debugger] = ACTIONS(4162), - [anon_sym_debugger] = ACTIONS(4162), - [anon_sym_DEBUGGER] = ACTIONS(4162), - [anon_sym_Final] = ACTIONS(4162), - [anon_sym_final] = ACTIONS(4162), - [anon_sym_FINAL] = ACTIONS(4162), - [anon_sym_Function] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(4170), - [anon_sym_FUNCTION] = ACTIONS(4170), - [anon_sym_Include] = ACTIONS(4162), - [anon_sym_include] = ACTIONS(4162), - [anon_sym_INCLUDE] = ACTIONS(4162), - [anon_sym_New] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_NEW] = ACTIONS(4172), - [anon_sym_Package] = ACTIONS(4162), - [anon_sym_package] = ACTIONS(4162), - [anon_sym_PACKAGE] = ACTIONS(4162), - [anon_sym_Private] = ACTIONS(4162), - [anon_sym_private] = ACTIONS(4162), - [anon_sym_PRIVATE] = ACTIONS(4162), - [anon_sym_Public] = ACTIONS(4162), - [anon_sym_public] = ACTIONS(4162), - [anon_sym_PUBLIC] = ACTIONS(4162), - [anon_sym_Remote] = ACTIONS(4162), - [anon_sym_remote] = ACTIONS(4162), - [anon_sym_REMOTE] = ACTIONS(4162), - [anon_sym_Static] = ACTIONS(4162), - [anon_sym_static] = ACTIONS(4162), - [anon_sym_STATIC] = ACTIONS(4162), + [anon_sym_Abstract] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_ABSTRACT] = ACTIONS(4507), + [anon_sym_Component] = ACTIONS(4507), + [anon_sym_component] = ACTIONS(4507), + [anon_sym_COMPONENT] = ACTIONS(4507), + [anon_sym_Debugger] = ACTIONS(4507), + [anon_sym_debugger] = ACTIONS(4507), + [anon_sym_DEBUGGER] = ACTIONS(4507), + [anon_sym_Final] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_FINAL] = ACTIONS(4507), + [anon_sym_Function] = ACTIONS(4513), + [anon_sym_function] = ACTIONS(4513), + [anon_sym_FUNCTION] = ACTIONS(4513), + [anon_sym_Include] = ACTIONS(4507), + [anon_sym_include] = ACTIONS(4507), + [anon_sym_INCLUDE] = ACTIONS(4507), + [anon_sym_New] = ACTIONS(4515), + [anon_sym_new] = ACTIONS(4515), + [anon_sym_NEW] = ACTIONS(4515), + [anon_sym_Package] = ACTIONS(4507), + [anon_sym_package] = ACTIONS(4507), + [anon_sym_PACKAGE] = ACTIONS(4507), + [anon_sym_Private] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_PRIVATE] = ACTIONS(4507), + [anon_sym_Public] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_PUBLIC] = ACTIONS(4507), + [anon_sym_Remote] = ACTIONS(4507), + [anon_sym_remote] = ACTIONS(4507), + [anon_sym_REMOTE] = ACTIONS(4507), + [anon_sym_Static] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_STATIC] = ACTIONS(4507), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1806)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1845)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -300422,118 +305738,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1807)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1846)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3867), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -300552,248 +305868,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1808)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(489), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1809)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3793), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1847)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3869), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -300812,248 +305998,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1810)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(490), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1811)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3795), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1848)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3870), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -301072,118 +306128,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1812)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3796), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1849)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3871), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -301202,118 +306258,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1813)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3798), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1850)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3843), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -301332,118 +306388,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1814)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3799), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1851)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3858), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -301462,118 +306518,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1815)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3800), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1852)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3844), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -301592,118 +306648,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1816)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3801), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1853)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3845), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -301722,118 +306778,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1817)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3804), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1854)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3846), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -301852,118 +306908,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1818)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3807), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1855)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3847), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -301982,118 +307038,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1819)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3808), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1856)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3848), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -302112,118 +307168,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1820)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3810), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1857)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3849), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -302242,118 +307298,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1821)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3815), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1858)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3850), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -302372,118 +307428,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1822)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3816), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1859)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3851), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -302502,118 +307558,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1823)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3817), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1860)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3852), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -302632,118 +307688,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1824)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3818), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1861)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3853), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -302762,118 +307818,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1825)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3819), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1862)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3854), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -302892,248 +307948,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1826)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(497), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1827)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3820), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1863)] = { + [sym_parenthesized_expression] = STATE(2239), + [sym_expression] = STATE(3697), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5360), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2617), + [sym_new_expression] = STATE(2709), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2239), + [sym_subscript_expression] = STATE(2239), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3933), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1583), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2615), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2615), + [sym_undefined] = STATE(2615), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3894), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3896), + [anon_sym_query] = ACTIONS(3896), + [anon_sym_QUERY] = ACTIONS(3896), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_DASH_DASH] = ACTIONS(1762), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -303152,7528 +308078,7138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(3896), + [anon_sym_set] = ACTIONS(3896), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(3896), + [anon_sym_QueryExecute] = ACTIONS(3902), + [anon_sym_queryexecute] = ACTIONS(3902), + [anon_sym_QUERYEXECUTE] = ACTIONS(3902), + [anon_sym_queryExecute] = ACTIONS(3902), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(3896), + [anon_sym_abstract] = ACTIONS(3896), + [anon_sym_ABSTRACT] = ACTIONS(3896), + [anon_sym_Component] = ACTIONS(3896), + [anon_sym_component] = ACTIONS(3896), + [anon_sym_COMPONENT] = ACTIONS(3896), + [anon_sym_Debugger] = ACTIONS(3896), + [anon_sym_debugger] = ACTIONS(3896), + [anon_sym_DEBUGGER] = ACTIONS(3896), + [anon_sym_Final] = ACTIONS(3896), + [anon_sym_final] = ACTIONS(3896), + [anon_sym_FINAL] = ACTIONS(3896), + [anon_sym_Function] = ACTIONS(3261), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_FUNCTION] = ACTIONS(3261), + [anon_sym_Include] = ACTIONS(3896), + [anon_sym_include] = ACTIONS(3896), + [anon_sym_INCLUDE] = ACTIONS(3896), + [anon_sym_New] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_NEW] = ACTIONS(3904), + [anon_sym_Package] = ACTIONS(3896), + [anon_sym_package] = ACTIONS(3896), + [anon_sym_PACKAGE] = ACTIONS(3896), + [anon_sym_Private] = ACTIONS(3896), + [anon_sym_private] = ACTIONS(3896), + [anon_sym_PRIVATE] = ACTIONS(3896), + [anon_sym_Public] = ACTIONS(3896), + [anon_sym_public] = ACTIONS(3896), + [anon_sym_PUBLIC] = ACTIONS(3896), + [anon_sym_Remote] = ACTIONS(3896), + [anon_sym_remote] = ACTIONS(3896), + [anon_sym_REMOTE] = ACTIONS(3896), + [anon_sym_Static] = ACTIONS(3896), + [anon_sym_static] = ACTIONS(3896), + [anon_sym_STATIC] = ACTIONS(3896), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1828)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(2929), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1829)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3007), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1830)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3008), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1831)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3009), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1832)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1833)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3011), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1834)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3012), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1835)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3013), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1836)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3014), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1837)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1838)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3016), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1839)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3017), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1840)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3018), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1841)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3019), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1842)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3020), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1843)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3021), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1844)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3022), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2761), - [sym_hash_expression] = STATE(2761), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4094), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1845)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3025), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2642), - [sym_hash_expression] = STATE(2642), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4957), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1846)] = { - [sym_parenthesized_expression] = STATE(2304), - [sym_expression] = STATE(3026), - [sym_primary_expression] = STATE(2691), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2910), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5170), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2758), - [sym_new_expression] = STATE(2910), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2910), - [sym_member_expression] = STATE(2304), - [sym_subscript_expression] = STATE(2304), - [sym_assignment_expression] = STATE(2910), - [sym__augmented_assignment_lhs] = STATE(3900), - [sym_augmented_assignment_expression] = STATE(2910), - [sym__destructuring_pattern] = STATE(5170), - [sym_ternary_expression] = STATE(2910), - [sym_elvis_expression] = STATE(2910), - [sym_binary_expression] = STATE(2910), - [sym_unary_operator] = STATE(1828), - [sym_unary_expression] = STATE(2910), - [sym_update_expression] = STATE(2910), - [sym_string] = STATE(2757), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2757), - [sym_undefined] = STATE(2757), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(2655), - [sym_hash_expression] = STATE(2655), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2910), - [sym_identifier] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4072), - [anon_sym_query] = ACTIONS(4072), - [anon_sym_QUERY] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4072), - [anon_sym_set] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4092), - [sym_hash_empty] = ACTIONS(4965), - [anon_sym_export] = ACTIONS(4072), - [anon_sym_QueryExecute] = ACTIONS(4096), - [anon_sym_queryexecute] = ACTIONS(4096), - [anon_sym_QUERYEXECUTE] = ACTIONS(4096), - [anon_sym_queryExecute] = ACTIONS(4096), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4072), - [anon_sym_abstract] = ACTIONS(4072), - [anon_sym_ABSTRACT] = ACTIONS(4072), - [anon_sym_Component] = ACTIONS(4072), - [anon_sym_component] = ACTIONS(4072), - [anon_sym_COMPONENT] = ACTIONS(4072), - [anon_sym_Debugger] = ACTIONS(4072), - [anon_sym_debugger] = ACTIONS(4072), - [anon_sym_DEBUGGER] = ACTIONS(4072), - [anon_sym_Final] = ACTIONS(4072), - [anon_sym_final] = ACTIONS(4072), - [anon_sym_FINAL] = ACTIONS(4072), - [anon_sym_Function] = ACTIONS(4100), - [anon_sym_function] = ACTIONS(4100), - [anon_sym_FUNCTION] = ACTIONS(4100), - [anon_sym_Include] = ACTIONS(4072), - [anon_sym_include] = ACTIONS(4072), - [anon_sym_INCLUDE] = ACTIONS(4072), - [anon_sym_New] = ACTIONS(4102), - [anon_sym_new] = ACTIONS(4102), - [anon_sym_NEW] = ACTIONS(4102), - [anon_sym_Package] = ACTIONS(4072), - [anon_sym_package] = ACTIONS(4072), - [anon_sym_PACKAGE] = ACTIONS(4072), - [anon_sym_Private] = ACTIONS(4072), - [anon_sym_private] = ACTIONS(4072), - [anon_sym_PRIVATE] = ACTIONS(4072), - [anon_sym_Public] = ACTIONS(4072), - [anon_sym_public] = ACTIONS(4072), - [anon_sym_PUBLIC] = ACTIONS(4072), - [anon_sym_Remote] = ACTIONS(4072), - [anon_sym_remote] = ACTIONS(4072), - [anon_sym_REMOTE] = ACTIONS(4072), - [anon_sym_Static] = ACTIONS(4072), - [anon_sym_static] = ACTIONS(4072), - [anon_sym_STATIC] = ACTIONS(4072), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1847)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3354), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1848)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3310), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1849)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3311), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1850)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3312), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1851)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3313), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1852)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3314), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1853)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1854)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3316), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1855)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3317), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1856)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3318), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1857)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3319), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1858)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3320), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1859)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3321), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1860)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3322), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1861)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1862)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3324), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1863)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3325), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3056), - [sym_hash_expression] = STATE(3056), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, [STATE(1864)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(2841), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3855), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, [STATE(1865)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3030), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2926), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1866)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3031), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2956), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1867)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3032), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2957), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1868)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3033), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2958), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1869)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3034), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2959), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1870)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3035), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2960), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1871)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3036), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2961), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1872)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3037), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2962), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1873)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3038), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2963), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1874)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3039), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2964), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1875)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3040), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2965), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1876)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3041), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2966), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1877)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2967), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1878)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3043), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2968), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1879)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3044), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2969), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1880)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3045), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2970), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1881)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3416), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2560), - [sym_hash_expression] = STATE(2560), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4991), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2971), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1882)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(498), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2978), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2779), + [sym_hash_expression] = STATE(2779), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4945), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1883)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3091), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2716), - [sym_hash_expression] = STATE(2716), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4793), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [sym_parenthesized_expression] = STATE(2319), + [sym_expression] = STATE(2979), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5150), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2828), + [sym_new_expression] = STATE(2829), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2319), + [sym_subscript_expression] = STATE(2319), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3942), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5150), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1865), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2813), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2813), + [sym_undefined] = STATE(2813), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2780), + [sym_hash_expression] = STATE(2780), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4425), + [anon_sym_query] = ACTIONS(4425), + [anon_sym_QUERY] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4425), + [anon_sym_set] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4947), + [anon_sym_export] = ACTIONS(4425), + [anon_sym_QueryExecute] = ACTIONS(4449), + [anon_sym_queryexecute] = ACTIONS(4449), + [anon_sym_QUERYEXECUTE] = ACTIONS(4449), + [anon_sym_queryExecute] = ACTIONS(4449), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4425), + [anon_sym_abstract] = ACTIONS(4425), + [anon_sym_ABSTRACT] = ACTIONS(4425), + [anon_sym_Component] = ACTIONS(4425), + [anon_sym_component] = ACTIONS(4425), + [anon_sym_COMPONENT] = ACTIONS(4425), + [anon_sym_Debugger] = ACTIONS(4425), + [anon_sym_debugger] = ACTIONS(4425), + [anon_sym_DEBUGGER] = ACTIONS(4425), + [anon_sym_Final] = ACTIONS(4425), + [anon_sym_final] = ACTIONS(4425), + [anon_sym_FINAL] = ACTIONS(4425), + [anon_sym_Function] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4453), + [anon_sym_FUNCTION] = ACTIONS(4453), + [anon_sym_Include] = ACTIONS(4425), + [anon_sym_include] = ACTIONS(4425), + [anon_sym_INCLUDE] = ACTIONS(4425), + [anon_sym_New] = ACTIONS(4455), + [anon_sym_new] = ACTIONS(4455), + [anon_sym_NEW] = ACTIONS(4455), + [anon_sym_Package] = ACTIONS(4425), + [anon_sym_package] = ACTIONS(4425), + [anon_sym_PACKAGE] = ACTIONS(4425), + [anon_sym_Private] = ACTIONS(4425), + [anon_sym_private] = ACTIONS(4425), + [anon_sym_PRIVATE] = ACTIONS(4425), + [anon_sym_Public] = ACTIONS(4425), + [anon_sym_public] = ACTIONS(4425), + [anon_sym_PUBLIC] = ACTIONS(4425), + [anon_sym_Remote] = ACTIONS(4425), + [anon_sym_remote] = ACTIONS(4425), + [anon_sym_REMOTE] = ACTIONS(4425), + [anon_sym_Static] = ACTIONS(4425), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_STATIC] = ACTIONS(4425), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), }, [STATE(1884)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(4435), - [anon_sym_new] = ACTIONS(4435), - [anon_sym_NEW] = ACTIONS(4435), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3263), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, [STATE(1885)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(4500), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2346), - [sym_subscript_expression] = STATE(2346), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(4500), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3060), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3060), - [sym_undefined] = STATE(3060), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4981), + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3273), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1886)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3274), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1887)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3275), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1888)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3276), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1889)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3277), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1890)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3278), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1891)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1892)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3280), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1893)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3281), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1894)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3282), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1895)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3283), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1896)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3284), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1897)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3285), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1898)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3286), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1899)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3287), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1900)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3288), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1901)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1902)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2990), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1903)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2991), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1904)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1905)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2993), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1906)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1907)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2995), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1908)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3131), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1909)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2997), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1910)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2998), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1911)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2999), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1912)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3000), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1913)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3001), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1914)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3002), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1915)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1916)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3004), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1917)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(3005), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2775), + [sym_hash_expression] = STATE(2775), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1918)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_Query] = ACTIONS(4983), - [anon_sym_query] = ACTIONS(4983), - [anon_sym_QUERY] = ACTIONS(4983), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -310692,248 +315228,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4983), - [anon_sym_set] = ACTIONS(4983), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4983), - [anon_sym_QueryExecute] = ACTIONS(4985), - [anon_sym_queryexecute] = ACTIONS(4985), - [anon_sym_QUERYEXECUTE] = ACTIONS(4985), - [anon_sym_queryExecute] = ACTIONS(4985), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4983), - [anon_sym_abstract] = ACTIONS(4983), - [anon_sym_ABSTRACT] = ACTIONS(4983), - [anon_sym_Component] = ACTIONS(4983), - [anon_sym_component] = ACTIONS(4983), - [anon_sym_COMPONENT] = ACTIONS(4983), - [anon_sym_Debugger] = ACTIONS(4983), - [anon_sym_debugger] = ACTIONS(4983), - [anon_sym_DEBUGGER] = ACTIONS(4983), - [anon_sym_Final] = ACTIONS(4983), - [anon_sym_final] = ACTIONS(4983), - [anon_sym_FINAL] = ACTIONS(4983), - [anon_sym_Function] = ACTIONS(4987), - [anon_sym_function] = ACTIONS(4987), - [anon_sym_FUNCTION] = ACTIONS(4987), - [anon_sym_Include] = ACTIONS(4983), - [anon_sym_include] = ACTIONS(4983), - [anon_sym_INCLUDE] = ACTIONS(4983), - [anon_sym_New] = ACTIONS(4989), - [anon_sym_new] = ACTIONS(4989), - [anon_sym_NEW] = ACTIONS(4989), - [anon_sym_Package] = ACTIONS(4983), - [anon_sym_package] = ACTIONS(4983), - [anon_sym_PACKAGE] = ACTIONS(4983), - [anon_sym_Private] = ACTIONS(4983), - [anon_sym_private] = ACTIONS(4983), - [anon_sym_PRIVATE] = ACTIONS(4983), - [anon_sym_Public] = ACTIONS(4983), - [anon_sym_public] = ACTIONS(4983), - [anon_sym_PUBLIC] = ACTIONS(4983), - [anon_sym_Remote] = ACTIONS(4983), - [anon_sym_remote] = ACTIONS(4983), - [anon_sym_REMOTE] = ACTIONS(4983), - [anon_sym_Static] = ACTIONS(4983), - [anon_sym_static] = ACTIONS(4983), - [anon_sym_STATIC] = ACTIONS(4983), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_NEW] = ACTIONS(4481), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1886)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(499), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1887)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1919)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(4570), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(3781), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2366), + [sym_subscript_expression] = STATE(2366), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(4570), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3051), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3051), + [sym_undefined] = STATE(3051), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4807), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4809), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_Query] = ACTIONS(4809), + [anon_sym_query] = ACTIONS(4809), + [anon_sym_QUERY] = ACTIONS(4809), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -310952,118 +315358,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(4809), + [anon_sym_set] = ACTIONS(4809), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(4809), + [anon_sym_QueryExecute] = ACTIONS(4811), + [anon_sym_queryexecute] = ACTIONS(4811), + [anon_sym_QUERYEXECUTE] = ACTIONS(4811), + [anon_sym_queryExecute] = ACTIONS(4811), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(4809), + [anon_sym_abstract] = ACTIONS(4809), + [anon_sym_ABSTRACT] = ACTIONS(4809), + [anon_sym_Component] = ACTIONS(4809), + [anon_sym_component] = ACTIONS(4809), + [anon_sym_COMPONENT] = ACTIONS(4809), + [anon_sym_Debugger] = ACTIONS(4809), + [anon_sym_debugger] = ACTIONS(4809), + [anon_sym_DEBUGGER] = ACTIONS(4809), + [anon_sym_Final] = ACTIONS(4809), + [anon_sym_final] = ACTIONS(4809), + [anon_sym_FINAL] = ACTIONS(4809), + [anon_sym_Function] = ACTIONS(4813), + [anon_sym_function] = ACTIONS(4813), + [anon_sym_FUNCTION] = ACTIONS(4813), + [anon_sym_Include] = ACTIONS(4809), + [anon_sym_include] = ACTIONS(4809), + [anon_sym_INCLUDE] = ACTIONS(4809), + [anon_sym_New] = ACTIONS(4815), + [anon_sym_new] = ACTIONS(4815), + [anon_sym_NEW] = ACTIONS(4815), + [anon_sym_Package] = ACTIONS(4809), + [anon_sym_package] = ACTIONS(4809), + [anon_sym_PACKAGE] = ACTIONS(4809), + [anon_sym_Private] = ACTIONS(4809), + [anon_sym_private] = ACTIONS(4809), + [anon_sym_PRIVATE] = ACTIONS(4809), + [anon_sym_Public] = ACTIONS(4809), + [anon_sym_public] = ACTIONS(4809), + [anon_sym_PUBLIC] = ACTIONS(4809), + [anon_sym_Remote] = ACTIONS(4809), + [anon_sym_remote] = ACTIONS(4809), + [anon_sym_REMOTE] = ACTIONS(4809), + [anon_sym_Static] = ACTIONS(4809), + [anon_sym_static] = ACTIONS(4809), + [anon_sym_STATIC] = ACTIONS(4809), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1888)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3480), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2430), - [sym_hash_expression] = STATE(2430), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1920)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -311073,257 +315479,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_True] = ACTIONS(453), [anon_sym_true] = ACTIONS(453), [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4737), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1889)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3510), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1890)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3481), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2432), - [sym_hash_expression] = STATE(2432), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1921)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3601), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2488), + [sym_hash_expression] = STATE(2488), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -311342,248 +315618,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4765), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(4881), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1891)] = { - [sym_parenthesized_expression] = STATE(370), - [sym_expression] = STATE(500), - [sym_primary_expression] = STATE(452), - [sym_object] = STATE(521), - [sym_object_pattern] = STATE(522), - [sym_array] = STATE(521), - [sym_ordered_struct] = STATE(521), - [sym_array_pattern] = STATE(5299), - [sym_function_expression] = STATE(521), - [sym_arrow_function] = STATE(521), - [sym_call_expression] = STATE(448), - [sym_new_expression] = STATE(522), - [sym_prefixed_type] = STATE(521), - [sym_function_listener_expression] = STATE(522), - [sym_member_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_assignment_expression] = STATE(522), - [sym__augmented_assignment_lhs] = STATE(3884), - [sym_augmented_assignment_expression] = STATE(522), - [sym__destructuring_pattern] = STATE(5299), - [sym_ternary_expression] = STATE(522), - [sym_elvis_expression] = STATE(522), - [sym_binary_expression] = STATE(522), - [sym_unary_operator] = STATE(1747), - [sym_unary_expression] = STATE(522), - [sym_update_expression] = STATE(522), - [sym_string] = STATE(453), - [sym_regex] = STATE(521), - [sym_number] = STATE(521), - [sym_this] = STATE(521), - [sym_super] = STATE(521), - [sym_true] = STATE(521), - [sym_false] = STATE(521), - [sym_null] = STATE(453), - [sym_undefined] = STATE(453), - [sym_java_class_block] = STATE(521), - [sym_formal_parameters] = STATE(4880), - [sym__hash_always_eval] = STATE(462), - [sym_hash_expression] = STATE(462), - [sym_template_string] = STATE(521), - [sym_query_expression] = STATE(522), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_let] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4455), - [anon_sym_Query] = ACTIONS(4453), - [anon_sym_query] = ACTIONS(4453), - [anon_sym_QUERY] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4457), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4459), - [anon_sym_DASH_DASH] = ACTIONS(4459), - [anon_sym_DQUOTE] = ACTIONS(4461), - [anon_sym_SQUOTE] = ACTIONS(4463), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4465), - [aux_sym_number_token2] = ACTIONS(4467), - [anon_sym_This] = ACTIONS(4469), - [anon_sym_this] = ACTIONS(4469), - [anon_sym_THIS] = ACTIONS(4469), - [anon_sym_Super] = ACTIONS(4471), - [anon_sym_super] = ACTIONS(4471), - [anon_sym_SUPER] = ACTIONS(4471), - [anon_sym_True] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4473), - [anon_sym_TRUE] = ACTIONS(4473), - [anon_sym_False] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [anon_sym_FALSE] = ACTIONS(4475), - [anon_sym_Null] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4477), - [anon_sym_NULL] = ACTIONS(4477), - [anon_sym_Undefined] = ACTIONS(4479), - [anon_sym_undefined] = ACTIONS(4479), - [anon_sym_UNDEFINED] = ACTIONS(4479), - [anon_sym_get] = ACTIONS(4453), - [anon_sym_set] = ACTIONS(4453), - [anon_sym_POUND] = ACTIONS(4481), - [sym_hash_empty] = ACTIONS(4483), - [anon_sym_export] = ACTIONS(4453), - [anon_sym_QueryExecute] = ACTIONS(4485), - [anon_sym_queryexecute] = ACTIONS(4485), - [anon_sym_QUERYEXECUTE] = ACTIONS(4485), - [anon_sym_queryExecute] = ACTIONS(4485), - [anon_sym_BQUOTE] = ACTIONS(4487), - [anon_sym_Abstract] = ACTIONS(4453), - [anon_sym_abstract] = ACTIONS(4453), - [anon_sym_ABSTRACT] = ACTIONS(4453), - [anon_sym_Component] = ACTIONS(4453), - [anon_sym_component] = ACTIONS(4453), - [anon_sym_COMPONENT] = ACTIONS(4453), - [anon_sym_Debugger] = ACTIONS(4453), - [anon_sym_debugger] = ACTIONS(4453), - [anon_sym_DEBUGGER] = ACTIONS(4453), - [anon_sym_Final] = ACTIONS(4453), - [anon_sym_final] = ACTIONS(4453), - [anon_sym_FINAL] = ACTIONS(4453), - [anon_sym_Function] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4489), - [anon_sym_FUNCTION] = ACTIONS(4489), - [anon_sym_Include] = ACTIONS(4453), - [anon_sym_include] = ACTIONS(4453), - [anon_sym_INCLUDE] = ACTIONS(4453), - [anon_sym_New] = ACTIONS(4491), - [anon_sym_new] = ACTIONS(4491), - [anon_sym_NEW] = ACTIONS(4491), - [anon_sym_Package] = ACTIONS(4453), - [anon_sym_package] = ACTIONS(4453), - [anon_sym_PACKAGE] = ACTIONS(4453), - [anon_sym_Private] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_PRIVATE] = ACTIONS(4453), - [anon_sym_Public] = ACTIONS(4453), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_PUBLIC] = ACTIONS(4453), - [anon_sym_Remote] = ACTIONS(4453), - [anon_sym_remote] = ACTIONS(4453), - [anon_sym_REMOTE] = ACTIONS(4453), - [anon_sym_Static] = ACTIONS(4453), - [anon_sym_static] = ACTIONS(4453), - [anon_sym_STATIC] = ACTIONS(4453), - [sym__java_block_open] = ACTIONS(4493), - [sym__static_type_prefix] = ACTIONS(4495), - }, - [STATE(1892)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3482), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1922)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3602), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2490), + [sym_hash_expression] = STATE(2490), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -311602,118 +315748,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [sym_hash_empty] = ACTIONS(4883), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1893)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3483), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1923)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3603), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -311732,118 +315878,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1894)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3484), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1924)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3605), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -311862,118 +316008,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1895)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3485), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1925)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3607), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -311992,118 +316138,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1896)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3486), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1926)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3608), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -312122,118 +316268,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1897)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3487), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1927)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3609), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -312252,118 +316398,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1898)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3488), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1928)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3610), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -312382,118 +316528,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1899)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3489), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1929)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3613), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -312512,118 +316658,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1900)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3490), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1930)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3614), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -312642,118 +316788,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1901)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3491), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1931)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3615), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -312772,118 +316918,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1902)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3492), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1932)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -312902,118 +317048,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1903)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3493), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1933)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3617), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -313032,118 +317178,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1904)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3494), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1934)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3619), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -313162,118 +317308,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1905)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3495), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1935)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3620), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -313292,118 +317438,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1906)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4795), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(808), + [STATE(1936)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2534), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(814), - [anon_sym_query] = ACTIONS(814), - [anon_sym_QUERY] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -313422,118 +317568,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(814), - [anon_sym_QueryExecute] = ACTIONS(821), - [anon_sym_queryexecute] = ACTIONS(821), - [anon_sym_QUERYEXECUTE] = ACTIONS(821), - [anon_sym_queryExecute] = ACTIONS(821), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_ABSTRACT] = ACTIONS(814), - [anon_sym_Component] = ACTIONS(814), - [anon_sym_component] = ACTIONS(814), - [anon_sym_COMPONENT] = ACTIONS(814), - [anon_sym_Debugger] = ACTIONS(814), - [anon_sym_debugger] = ACTIONS(814), - [anon_sym_DEBUGGER] = ACTIONS(814), - [anon_sym_Final] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_FINAL] = ACTIONS(814), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(814), - [anon_sym_include] = ACTIONS(814), - [anon_sym_INCLUDE] = ACTIONS(814), - [anon_sym_New] = ACTIONS(827), - [anon_sym_new] = ACTIONS(827), - [anon_sym_NEW] = ACTIONS(827), - [anon_sym_Package] = ACTIONS(814), - [anon_sym_package] = ACTIONS(814), - [anon_sym_PACKAGE] = ACTIONS(814), - [anon_sym_Private] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_PRIVATE] = ACTIONS(814), - [anon_sym_Public] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_PUBLIC] = ACTIONS(814), - [anon_sym_Remote] = ACTIONS(814), - [anon_sym_remote] = ACTIONS(814), - [anon_sym_REMOTE] = ACTIONS(814), - [anon_sym_Static] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_STATIC] = ACTIONS(814), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1907)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3496), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1937)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4893), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(800), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(806), + [anon_sym_query] = ACTIONS(806), + [anon_sym_QUERY] = ACTIONS(806), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -313552,248 +317698,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(806), + [anon_sym_set] = ACTIONS(806), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(806), + [anon_sym_QueryExecute] = ACTIONS(813), + [anon_sym_queryexecute] = ACTIONS(813), + [anon_sym_QUERYEXECUTE] = ACTIONS(813), + [anon_sym_queryExecute] = ACTIONS(813), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_ABSTRACT] = ACTIONS(806), + [anon_sym_Component] = ACTIONS(806), + [anon_sym_component] = ACTIONS(806), + [anon_sym_COMPONENT] = ACTIONS(806), + [anon_sym_Debugger] = ACTIONS(806), + [anon_sym_debugger] = ACTIONS(806), + [anon_sym_DEBUGGER] = ACTIONS(806), + [anon_sym_Final] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_FINAL] = ACTIONS(806), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(806), + [anon_sym_include] = ACTIONS(806), + [anon_sym_INCLUDE] = ACTIONS(806), + [anon_sym_New] = ACTIONS(819), + [anon_sym_new] = ACTIONS(819), + [anon_sym_NEW] = ACTIONS(819), + [anon_sym_Package] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_PACKAGE] = ACTIONS(806), + [anon_sym_Private] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_PRIVATE] = ACTIONS(806), + [anon_sym_Public] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_PUBLIC] = ACTIONS(806), + [anon_sym_Remote] = ACTIONS(806), + [anon_sym_remote] = ACTIONS(806), + [anon_sym_REMOTE] = ACTIONS(806), + [anon_sym_Static] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_STATIC] = ACTIONS(806), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1908)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3529), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1909)] = { - [sym_parenthesized_expression] = STATE(2348), - [sym_expression] = STATE(3497), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5163), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3294), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2348), - [sym_subscript_expression] = STATE(2348), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3898), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5163), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1887), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3058), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3058), - [sym_undefined] = STATE(3058), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3912), + [STATE(1938)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3625), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3914), - [anon_sym_query] = ACTIONS(3914), - [anon_sym_QUERY] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3918), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -313812,118 +317828,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3914), - [anon_sym_set] = ACTIONS(3914), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_QueryExecute] = ACTIONS(3922), - [anon_sym_queryexecute] = ACTIONS(3922), - [anon_sym_QUERYEXECUTE] = ACTIONS(3922), - [anon_sym_queryExecute] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3914), - [anon_sym_abstract] = ACTIONS(3914), - [anon_sym_ABSTRACT] = ACTIONS(3914), - [anon_sym_Component] = ACTIONS(3914), - [anon_sym_component] = ACTIONS(3914), - [anon_sym_COMPONENT] = ACTIONS(3914), - [anon_sym_Debugger] = ACTIONS(3914), - [anon_sym_debugger] = ACTIONS(3914), - [anon_sym_DEBUGGER] = ACTIONS(3914), - [anon_sym_Final] = ACTIONS(3914), - [anon_sym_final] = ACTIONS(3914), - [anon_sym_FINAL] = ACTIONS(3914), - [anon_sym_Function] = ACTIONS(3924), - [anon_sym_function] = ACTIONS(3924), - [anon_sym_FUNCTION] = ACTIONS(3924), - [anon_sym_Include] = ACTIONS(3914), - [anon_sym_include] = ACTIONS(3914), - [anon_sym_INCLUDE] = ACTIONS(3914), - [anon_sym_New] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_NEW] = ACTIONS(3926), - [anon_sym_Package] = ACTIONS(3914), - [anon_sym_package] = ACTIONS(3914), - [anon_sym_PACKAGE] = ACTIONS(3914), - [anon_sym_Private] = ACTIONS(3914), - [anon_sym_private] = ACTIONS(3914), - [anon_sym_PRIVATE] = ACTIONS(3914), - [anon_sym_Public] = ACTIONS(3914), - [anon_sym_public] = ACTIONS(3914), - [anon_sym_PUBLIC] = ACTIONS(3914), - [anon_sym_Remote] = ACTIONS(3914), - [anon_sym_remote] = ACTIONS(3914), - [anon_sym_REMOTE] = ACTIONS(3914), - [anon_sym_Static] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_STATIC] = ACTIONS(3914), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1910)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3368), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4857), - [anon_sym_LBRACE] = ACTIONS(4811), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4859), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4859), - [anon_sym_query] = ACTIONS(4859), - [anon_sym_QUERY] = ACTIONS(4859), + [STATE(1939)] = { + [sym_parenthesized_expression] = STATE(2369), + [sym_expression] = STATE(3628), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5138), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3233), + [sym_new_expression] = STATE(3463), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2369), + [sym_subscript_expression] = STATE(2369), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3941), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5138), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1920), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3027), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3027), + [sym_undefined] = STATE(3027), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(3928), + [anon_sym_query] = ACTIONS(3928), + [anon_sym_QUERY] = ACTIONS(3928), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3932), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -313942,378 +317958,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4859), - [anon_sym_set] = ACTIONS(4859), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4859), - [anon_sym_QueryExecute] = ACTIONS(4861), - [anon_sym_queryexecute] = ACTIONS(4861), - [anon_sym_QUERYEXECUTE] = ACTIONS(4861), - [anon_sym_queryExecute] = ACTIONS(4861), + [anon_sym_export] = ACTIONS(3928), + [anon_sym_QueryExecute] = ACTIONS(3936), + [anon_sym_queryexecute] = ACTIONS(3936), + [anon_sym_QUERYEXECUTE] = ACTIONS(3936), + [anon_sym_queryExecute] = ACTIONS(3936), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4859), - [anon_sym_abstract] = ACTIONS(4859), - [anon_sym_ABSTRACT] = ACTIONS(4859), - [anon_sym_Component] = ACTIONS(4859), - [anon_sym_component] = ACTIONS(4859), - [anon_sym_COMPONENT] = ACTIONS(4859), - [anon_sym_Debugger] = ACTIONS(4859), - [anon_sym_debugger] = ACTIONS(4859), - [anon_sym_DEBUGGER] = ACTIONS(4859), - [anon_sym_Final] = ACTIONS(4859), - [anon_sym_final] = ACTIONS(4859), - [anon_sym_FINAL] = ACTIONS(4859), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4859), - [anon_sym_include] = ACTIONS(4859), - [anon_sym_INCLUDE] = ACTIONS(4859), - [anon_sym_New] = ACTIONS(4993), - [anon_sym_new] = ACTIONS(4993), - [anon_sym_NEW] = ACTIONS(4993), - [anon_sym_Package] = ACTIONS(4859), - [anon_sym_package] = ACTIONS(4859), - [anon_sym_PACKAGE] = ACTIONS(4859), - [anon_sym_Private] = ACTIONS(4859), - [anon_sym_private] = ACTIONS(4859), - [anon_sym_PRIVATE] = ACTIONS(4859), - [anon_sym_Public] = ACTIONS(4859), - [anon_sym_public] = ACTIONS(4859), - [anon_sym_PUBLIC] = ACTIONS(4859), - [anon_sym_Remote] = ACTIONS(4859), - [anon_sym_remote] = ACTIONS(4859), - [anon_sym_REMOTE] = ACTIONS(4859), - [anon_sym_Static] = ACTIONS(4859), - [anon_sym_static] = ACTIONS(4859), - [anon_sym_STATIC] = ACTIONS(4859), + [anon_sym_Abstract] = ACTIONS(3928), + [anon_sym_abstract] = ACTIONS(3928), + [anon_sym_ABSTRACT] = ACTIONS(3928), + [anon_sym_Component] = ACTIONS(3928), + [anon_sym_component] = ACTIONS(3928), + [anon_sym_COMPONENT] = ACTIONS(3928), + [anon_sym_Debugger] = ACTIONS(3928), + [anon_sym_debugger] = ACTIONS(3928), + [anon_sym_DEBUGGER] = ACTIONS(3928), + [anon_sym_Final] = ACTIONS(3928), + [anon_sym_final] = ACTIONS(3928), + [anon_sym_FINAL] = ACTIONS(3928), + [anon_sym_Function] = ACTIONS(3938), + [anon_sym_function] = ACTIONS(3938), + [anon_sym_FUNCTION] = ACTIONS(3938), + [anon_sym_Include] = ACTIONS(3928), + [anon_sym_include] = ACTIONS(3928), + [anon_sym_INCLUDE] = ACTIONS(3928), + [anon_sym_New] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3940), + [anon_sym_NEW] = ACTIONS(3940), + [anon_sym_Package] = ACTIONS(3928), + [anon_sym_package] = ACTIONS(3928), + [anon_sym_PACKAGE] = ACTIONS(3928), + [anon_sym_Private] = ACTIONS(3928), + [anon_sym_private] = ACTIONS(3928), + [anon_sym_PRIVATE] = ACTIONS(3928), + [anon_sym_Public] = ACTIONS(3928), + [anon_sym_public] = ACTIONS(3928), + [anon_sym_PUBLIC] = ACTIONS(3928), + [anon_sym_Remote] = ACTIONS(3928), + [anon_sym_remote] = ACTIONS(3928), + [anon_sym_REMOTE] = ACTIONS(3928), + [anon_sym_Static] = ACTIONS(3928), + [anon_sym_static] = ACTIONS(3928), + [anon_sym_STATIC] = ACTIONS(3928), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1911)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3326), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(2854), - [sym_hash_expression] = STATE(2854), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4865), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1912)] = { - [sym_parenthesized_expression] = STATE(2354), - [sym_expression] = STATE(3327), - [sym_primary_expression] = STATE(2914), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(3215), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5186), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2935), - [sym_new_expression] = STATE(3215), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(3215), - [sym_member_expression] = STATE(2354), - [sym_subscript_expression] = STATE(2354), - [sym_assignment_expression] = STATE(3215), - [sym__augmented_assignment_lhs] = STATE(3901), - [sym_augmented_assignment_expression] = STATE(3215), - [sym__destructuring_pattern] = STATE(5186), - [sym_ternary_expression] = STATE(3215), - [sym_elvis_expression] = STATE(3215), - [sym_binary_expression] = STATE(3215), - [sym_unary_operator] = STATE(1847), - [sym_unary_expression] = STATE(3215), - [sym_update_expression] = STATE(3215), - [sym_string] = STATE(3069), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(3069), - [sym_undefined] = STATE(3069), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(2859), - [sym_hash_expression] = STATE(2859), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(3215), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4114), - [anon_sym_query] = ACTIONS(4114), - [anon_sym_QUERY] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4114), - [anon_sym_set] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4142), - [sym_hash_empty] = ACTIONS(4867), - [anon_sym_export] = ACTIONS(4114), - [anon_sym_QueryExecute] = ACTIONS(4146), - [anon_sym_queryexecute] = ACTIONS(4146), - [anon_sym_QUERYEXECUTE] = ACTIONS(4146), - [anon_sym_queryExecute] = ACTIONS(4146), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4114), - [anon_sym_abstract] = ACTIONS(4114), - [anon_sym_ABSTRACT] = ACTIONS(4114), - [anon_sym_Component] = ACTIONS(4114), - [anon_sym_component] = ACTIONS(4114), - [anon_sym_COMPONENT] = ACTIONS(4114), - [anon_sym_Debugger] = ACTIONS(4114), - [anon_sym_debugger] = ACTIONS(4114), - [anon_sym_DEBUGGER] = ACTIONS(4114), - [anon_sym_Final] = ACTIONS(4114), - [anon_sym_final] = ACTIONS(4114), - [anon_sym_FINAL] = ACTIONS(4114), - [anon_sym_Function] = ACTIONS(4150), - [anon_sym_function] = ACTIONS(4150), - [anon_sym_FUNCTION] = ACTIONS(4150), - [anon_sym_Include] = ACTIONS(4114), - [anon_sym_include] = ACTIONS(4114), - [anon_sym_INCLUDE] = ACTIONS(4114), - [anon_sym_New] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_NEW] = ACTIONS(4152), - [anon_sym_Package] = ACTIONS(4114), - [anon_sym_package] = ACTIONS(4114), - [anon_sym_PACKAGE] = ACTIONS(4114), - [anon_sym_Private] = ACTIONS(4114), - [anon_sym_private] = ACTIONS(4114), - [anon_sym_PRIVATE] = ACTIONS(4114), - [anon_sym_Public] = ACTIONS(4114), - [anon_sym_public] = ACTIONS(4114), - [anon_sym_PUBLIC] = ACTIONS(4114), - [anon_sym_Remote] = ACTIONS(4114), - [anon_sym_remote] = ACTIONS(4114), - [anon_sym_REMOTE] = ACTIONS(4114), - [anon_sym_Static] = ACTIONS(4114), - [anon_sym_static] = ACTIONS(4114), - [anon_sym_STATIC] = ACTIONS(4114), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1913)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3368), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4842), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4811), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4899), - [anon_sym_query] = ACTIONS(4899), - [anon_sym_QUERY] = ACTIONS(4899), + [STATE(1940)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3373), + [sym_new_expression] = STATE(3217), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4913), + [anon_sym_query] = ACTIONS(4913), + [anon_sym_QUERY] = ACTIONS(4913), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -314332,768 +318088,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4899), - [anon_sym_set] = ACTIONS(4899), + [anon_sym_get] = ACTIONS(4913), + [anon_sym_set] = ACTIONS(4913), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4899), - [anon_sym_QueryExecute] = ACTIONS(4901), - [anon_sym_queryexecute] = ACTIONS(4901), - [anon_sym_QUERYEXECUTE] = ACTIONS(4901), - [anon_sym_queryExecute] = ACTIONS(4901), + [anon_sym_export] = ACTIONS(4913), + [anon_sym_QueryExecute] = ACTIONS(4915), + [anon_sym_queryexecute] = ACTIONS(4915), + [anon_sym_QUERYEXECUTE] = ACTIONS(4915), + [anon_sym_queryExecute] = ACTIONS(4915), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4899), - [anon_sym_abstract] = ACTIONS(4899), - [anon_sym_ABSTRACT] = ACTIONS(4899), - [anon_sym_Component] = ACTIONS(4899), - [anon_sym_component] = ACTIONS(4899), - [anon_sym_COMPONENT] = ACTIONS(4899), - [anon_sym_Debugger] = ACTIONS(4899), - [anon_sym_debugger] = ACTIONS(4899), - [anon_sym_DEBUGGER] = ACTIONS(4899), - [anon_sym_Final] = ACTIONS(4899), - [anon_sym_final] = ACTIONS(4899), - [anon_sym_FINAL] = ACTIONS(4899), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4899), - [anon_sym_include] = ACTIONS(4899), - [anon_sym_INCLUDE] = ACTIONS(4899), - [anon_sym_New] = ACTIONS(4995), - [anon_sym_new] = ACTIONS(4995), - [anon_sym_NEW] = ACTIONS(4995), - [anon_sym_Package] = ACTIONS(4899), - [anon_sym_package] = ACTIONS(4899), - [anon_sym_PACKAGE] = ACTIONS(4899), - [anon_sym_Private] = ACTIONS(4899), - [anon_sym_private] = ACTIONS(4899), - [anon_sym_PRIVATE] = ACTIONS(4899), - [anon_sym_Public] = ACTIONS(4899), - [anon_sym_public] = ACTIONS(4899), - [anon_sym_PUBLIC] = ACTIONS(4899), - [anon_sym_Remote] = ACTIONS(4899), - [anon_sym_remote] = ACTIONS(4899), - [anon_sym_REMOTE] = ACTIONS(4899), - [anon_sym_Static] = ACTIONS(4899), - [anon_sym_static] = ACTIONS(4899), - [anon_sym_STATIC] = ACTIONS(4899), + [anon_sym_Abstract] = ACTIONS(4913), + [anon_sym_abstract] = ACTIONS(4913), + [anon_sym_ABSTRACT] = ACTIONS(4913), + [anon_sym_Component] = ACTIONS(4913), + [anon_sym_component] = ACTIONS(4913), + [anon_sym_COMPONENT] = ACTIONS(4913), + [anon_sym_Debugger] = ACTIONS(4913), + [anon_sym_debugger] = ACTIONS(4913), + [anon_sym_DEBUGGER] = ACTIONS(4913), + [anon_sym_Final] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_FINAL] = ACTIONS(4913), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4913), + [anon_sym_include] = ACTIONS(4913), + [anon_sym_INCLUDE] = ACTIONS(4913), + [anon_sym_New] = ACTIONS(4985), + [anon_sym_new] = ACTIONS(4985), + [anon_sym_NEW] = ACTIONS(4985), + [anon_sym_Package] = ACTIONS(4913), + [anon_sym_package] = ACTIONS(4913), + [anon_sym_PACKAGE] = ACTIONS(4913), + [anon_sym_Private] = ACTIONS(4913), + [anon_sym_private] = ACTIONS(4913), + [anon_sym_PRIVATE] = ACTIONS(4913), + [anon_sym_Public] = ACTIONS(4913), + [anon_sym_public] = ACTIONS(4913), + [anon_sym_PUBLIC] = ACTIONS(4913), + [anon_sym_Remote] = ACTIONS(4913), + [anon_sym_remote] = ACTIONS(4913), + [anon_sym_REMOTE] = ACTIONS(4913), + [anon_sym_Static] = ACTIONS(4913), + [anon_sym_static] = ACTIONS(4913), + [anon_sym_STATIC] = ACTIONS(4913), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1914)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(2771), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2663), - [sym_hash_expression] = STATE(2663), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4905), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1915)] = { - [sym_parenthesized_expression] = STATE(2278), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5192), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2764), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2278), - [sym_subscript_expression] = STATE(2278), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5192), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1864), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2763), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2763), - [sym_undefined] = STATE(2763), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2677), - [sym_hash_expression] = STATE(2677), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4289), - [anon_sym_query] = ACTIONS(4289), - [anon_sym_QUERY] = ACTIONS(4289), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4295), - [anon_sym_DASH_DASH] = ACTIONS(4295), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4907), - [anon_sym_export] = ACTIONS(4289), - [anon_sym_QueryExecute] = ACTIONS(4321), - [anon_sym_queryexecute] = ACTIONS(4321), - [anon_sym_QUERYEXECUTE] = ACTIONS(4321), - [anon_sym_queryExecute] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_ABSTRACT] = ACTIONS(4289), - [anon_sym_Component] = ACTIONS(4289), - [anon_sym_component] = ACTIONS(4289), - [anon_sym_COMPONENT] = ACTIONS(4289), - [anon_sym_Debugger] = ACTIONS(4289), - [anon_sym_debugger] = ACTIONS(4289), - [anon_sym_DEBUGGER] = ACTIONS(4289), - [anon_sym_Final] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_FINAL] = ACTIONS(4289), - [anon_sym_Function] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_FUNCTION] = ACTIONS(4325), - [anon_sym_Include] = ACTIONS(4289), - [anon_sym_include] = ACTIONS(4289), - [anon_sym_INCLUDE] = ACTIONS(4289), - [anon_sym_New] = ACTIONS(4327), - [anon_sym_new] = ACTIONS(4327), - [anon_sym_NEW] = ACTIONS(4327), - [anon_sym_Package] = ACTIONS(4289), - [anon_sym_package] = ACTIONS(4289), - [anon_sym_PACKAGE] = ACTIONS(4289), - [anon_sym_Private] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_PRIVATE] = ACTIONS(4289), - [anon_sym_Public] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_PUBLIC] = ACTIONS(4289), - [anon_sym_Remote] = ACTIONS(4289), - [anon_sym_remote] = ACTIONS(4289), - [anon_sym_REMOTE] = ACTIONS(4289), - [anon_sym_Static] = ACTIONS(4289), - [anon_sym_static] = ACTIONS(4289), - [anon_sym_STATIC] = ACTIONS(4289), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1916)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(783), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1917)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(721), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1918)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1919)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3714), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1941)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3373), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4913), + [anon_sym_query] = ACTIONS(4913), + [anon_sym_QUERY] = ACTIONS(4913), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -315112,1028 +318218,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4913), + [anon_sym_set] = ACTIONS(4913), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4913), + [anon_sym_QueryExecute] = ACTIONS(4915), + [anon_sym_queryexecute] = ACTIONS(4915), + [anon_sym_QUERYEXECUTE] = ACTIONS(4915), + [anon_sym_queryExecute] = ACTIONS(4915), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4913), + [anon_sym_abstract] = ACTIONS(4913), + [anon_sym_ABSTRACT] = ACTIONS(4913), + [anon_sym_Component] = ACTIONS(4913), + [anon_sym_component] = ACTIONS(4913), + [anon_sym_COMPONENT] = ACTIONS(4913), + [anon_sym_Debugger] = ACTIONS(4913), + [anon_sym_debugger] = ACTIONS(4913), + [anon_sym_DEBUGGER] = ACTIONS(4913), + [anon_sym_Final] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_FINAL] = ACTIONS(4913), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4913), + [anon_sym_include] = ACTIONS(4913), + [anon_sym_INCLUDE] = ACTIONS(4913), + [anon_sym_New] = ACTIONS(4985), + [anon_sym_new] = ACTIONS(4985), + [anon_sym_NEW] = ACTIONS(4985), + [anon_sym_Package] = ACTIONS(4913), + [anon_sym_package] = ACTIONS(4913), + [anon_sym_PACKAGE] = ACTIONS(4913), + [anon_sym_Private] = ACTIONS(4913), + [anon_sym_private] = ACTIONS(4913), + [anon_sym_PRIVATE] = ACTIONS(4913), + [anon_sym_Public] = ACTIONS(4913), + [anon_sym_public] = ACTIONS(4913), + [anon_sym_PUBLIC] = ACTIONS(4913), + [anon_sym_Remote] = ACTIONS(4913), + [anon_sym_remote] = ACTIONS(4913), + [anon_sym_REMOTE] = ACTIONS(4913), + [anon_sym_Static] = ACTIONS(4913), + [anon_sym_static] = ACTIONS(4913), + [anon_sym_STATIC] = ACTIONS(4913), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1920)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(733), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1921)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(775), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1922)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1923)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(729), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1924)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(743), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1925)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3113), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(1942)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3290), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3056), + [sym_hash_expression] = STATE(3056), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4919), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1926)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3119), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(1943)] = { + [sym_parenthesized_expression] = STATE(2381), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5165), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(3128), + [sym_new_expression] = STATE(3129), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2381), + [sym_subscript_expression] = STATE(2381), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3943), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5165), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1884), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(3107), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3107), + [sym_undefined] = STATE(3107), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3079), + [sym_hash_expression] = STATE(3079), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4156), + [anon_sym_query] = ACTIONS(4156), + [anon_sym_QUERY] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4156), + [anon_sym_set] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4921), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_QueryExecute] = ACTIONS(4188), + [anon_sym_queryexecute] = ACTIONS(4188), + [anon_sym_QUERYEXECUTE] = ACTIONS(4188), + [anon_sym_queryExecute] = ACTIONS(4188), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4156), + [anon_sym_abstract] = ACTIONS(4156), + [anon_sym_ABSTRACT] = ACTIONS(4156), + [anon_sym_Component] = ACTIONS(4156), + [anon_sym_component] = ACTIONS(4156), + [anon_sym_COMPONENT] = ACTIONS(4156), + [anon_sym_Debugger] = ACTIONS(4156), + [anon_sym_debugger] = ACTIONS(4156), + [anon_sym_DEBUGGER] = ACTIONS(4156), + [anon_sym_Final] = ACTIONS(4156), + [anon_sym_final] = ACTIONS(4156), + [anon_sym_FINAL] = ACTIONS(4156), + [anon_sym_Function] = ACTIONS(4192), + [anon_sym_function] = ACTIONS(4192), + [anon_sym_FUNCTION] = ACTIONS(4192), + [anon_sym_Include] = ACTIONS(4156), + [anon_sym_include] = ACTIONS(4156), + [anon_sym_INCLUDE] = ACTIONS(4156), + [anon_sym_New] = ACTIONS(4194), + [anon_sym_new] = ACTIONS(4194), + [anon_sym_NEW] = ACTIONS(4194), + [anon_sym_Package] = ACTIONS(4156), + [anon_sym_package] = ACTIONS(4156), + [anon_sym_PACKAGE] = ACTIONS(4156), + [anon_sym_Private] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_PRIVATE] = ACTIONS(4156), + [anon_sym_Public] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_PUBLIC] = ACTIONS(4156), + [anon_sym_Remote] = ACTIONS(4156), + [anon_sym_remote] = ACTIONS(4156), + [anon_sym_REMOTE] = ACTIONS(4156), + [anon_sym_Static] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_STATIC] = ACTIONS(4156), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), }, - [STATE(1927)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3738), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1944)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -316152,1028 +318608,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1928)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3120), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1929)] = { - [sym_parenthesized_expression] = STATE(2125), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(2449), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2443), - [sym_new_expression] = STATE(2553), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2445), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2445), - [sym_undefined] = STATE(2445), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(3681), - [sym_hash_expression] = STATE(3681), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4999), - [anon_sym_query] = ACTIONS(4999), - [anon_sym_QUERY] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4801), - [anon_sym_export] = ACTIONS(4999), - [anon_sym_QueryExecute] = ACTIONS(5001), - [anon_sym_queryexecute] = ACTIONS(5001), - [anon_sym_QUERYEXECUTE] = ACTIONS(5001), - [anon_sym_queryExecute] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4999), - [anon_sym_abstract] = ACTIONS(4999), - [anon_sym_ABSTRACT] = ACTIONS(4999), - [anon_sym_Component] = ACTIONS(4999), - [anon_sym_component] = ACTIONS(4999), - [anon_sym_COMPONENT] = ACTIONS(4999), - [anon_sym_Debugger] = ACTIONS(4999), - [anon_sym_debugger] = ACTIONS(4999), - [anon_sym_DEBUGGER] = ACTIONS(4999), - [anon_sym_Final] = ACTIONS(4999), - [anon_sym_final] = ACTIONS(4999), - [anon_sym_FINAL] = ACTIONS(4999), - [anon_sym_Function] = ACTIONS(4805), - [anon_sym_function] = ACTIONS(4805), - [anon_sym_FUNCTION] = ACTIONS(4805), - [anon_sym_Include] = ACTIONS(4999), - [anon_sym_include] = ACTIONS(4999), - [anon_sym_INCLUDE] = ACTIONS(4999), - [anon_sym_New] = ACTIONS(5003), - [anon_sym_new] = ACTIONS(5003), - [anon_sym_NEW] = ACTIONS(5003), - [anon_sym_Package] = ACTIONS(4999), - [anon_sym_package] = ACTIONS(4999), - [anon_sym_PACKAGE] = ACTIONS(4999), - [anon_sym_Private] = ACTIONS(4999), - [anon_sym_private] = ACTIONS(4999), - [anon_sym_PRIVATE] = ACTIONS(4999), - [anon_sym_Public] = ACTIONS(4999), - [anon_sym_public] = ACTIONS(4999), - [anon_sym_PUBLIC] = ACTIONS(4999), - [anon_sym_Remote] = ACTIONS(4999), - [anon_sym_remote] = ACTIONS(4999), - [anon_sym_REMOTE] = ACTIONS(4999), - [anon_sym_Static] = ACTIONS(4999), - [anon_sym_static] = ACTIONS(4999), - [anon_sym_STATIC] = ACTIONS(4999), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1930)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3619), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1931)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3138), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1932)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3149), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1933)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3151), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1934)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3173), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1935)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3767), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1945)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3373), + [sym_new_expression] = STATE(3217), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4931), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4933), + [anon_sym_query] = ACTIONS(4933), + [anon_sym_QUERY] = ACTIONS(4933), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -317192,378 +318738,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4933), + [anon_sym_set] = ACTIONS(4933), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4933), + [anon_sym_QueryExecute] = ACTIONS(4935), + [anon_sym_queryexecute] = ACTIONS(4935), + [anon_sym_QUERYEXECUTE] = ACTIONS(4935), + [anon_sym_queryExecute] = ACTIONS(4935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4933), + [anon_sym_abstract] = ACTIONS(4933), + [anon_sym_ABSTRACT] = ACTIONS(4933), + [anon_sym_Component] = ACTIONS(4933), + [anon_sym_component] = ACTIONS(4933), + [anon_sym_COMPONENT] = ACTIONS(4933), + [anon_sym_Debugger] = ACTIONS(4933), + [anon_sym_debugger] = ACTIONS(4933), + [anon_sym_DEBUGGER] = ACTIONS(4933), + [anon_sym_Final] = ACTIONS(4933), + [anon_sym_final] = ACTIONS(4933), + [anon_sym_FINAL] = ACTIONS(4933), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4933), + [anon_sym_include] = ACTIONS(4933), + [anon_sym_INCLUDE] = ACTIONS(4933), + [anon_sym_New] = ACTIONS(4987), + [anon_sym_new] = ACTIONS(4987), + [anon_sym_NEW] = ACTIONS(4987), + [anon_sym_Package] = ACTIONS(4933), + [anon_sym_package] = ACTIONS(4933), + [anon_sym_PACKAGE] = ACTIONS(4933), + [anon_sym_Private] = ACTIONS(4933), + [anon_sym_private] = ACTIONS(4933), + [anon_sym_PRIVATE] = ACTIONS(4933), + [anon_sym_Public] = ACTIONS(4933), + [anon_sym_public] = ACTIONS(4933), + [anon_sym_PUBLIC] = ACTIONS(4933), + [anon_sym_Remote] = ACTIONS(4933), + [anon_sym_remote] = ACTIONS(4933), + [anon_sym_REMOTE] = ACTIONS(4933), + [anon_sym_Static] = ACTIONS(4933), + [anon_sym_static] = ACTIONS(4933), + [anon_sym_STATIC] = ACTIONS(4933), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1936)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3175), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1937)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1938)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3727), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [STATE(1946)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3373), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4929), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4931), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4933), + [anon_sym_query] = ACTIONS(4933), + [anon_sym_QUERY] = ACTIONS(4933), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -317582,243 +318868,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4933), + [anon_sym_set] = ACTIONS(4933), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4933), + [anon_sym_QueryExecute] = ACTIONS(4935), + [anon_sym_queryexecute] = ACTIONS(4935), + [anon_sym_QUERYEXECUTE] = ACTIONS(4935), + [anon_sym_queryExecute] = ACTIONS(4935), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4933), + [anon_sym_abstract] = ACTIONS(4933), + [anon_sym_ABSTRACT] = ACTIONS(4933), + [anon_sym_Component] = ACTIONS(4933), + [anon_sym_component] = ACTIONS(4933), + [anon_sym_COMPONENT] = ACTIONS(4933), + [anon_sym_Debugger] = ACTIONS(4933), + [anon_sym_debugger] = ACTIONS(4933), + [anon_sym_DEBUGGER] = ACTIONS(4933), + [anon_sym_Final] = ACTIONS(4933), + [anon_sym_final] = ACTIONS(4933), + [anon_sym_FINAL] = ACTIONS(4933), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4933), + [anon_sym_include] = ACTIONS(4933), + [anon_sym_INCLUDE] = ACTIONS(4933), + [anon_sym_New] = ACTIONS(4987), + [anon_sym_new] = ACTIONS(4987), + [anon_sym_NEW] = ACTIONS(4987), + [anon_sym_Package] = ACTIONS(4933), + [anon_sym_package] = ACTIONS(4933), + [anon_sym_PACKAGE] = ACTIONS(4933), + [anon_sym_Private] = ACTIONS(4933), + [anon_sym_private] = ACTIONS(4933), + [anon_sym_PRIVATE] = ACTIONS(4933), + [anon_sym_Public] = ACTIONS(4933), + [anon_sym_public] = ACTIONS(4933), + [anon_sym_PUBLIC] = ACTIONS(4933), + [anon_sym_Remote] = ACTIONS(4933), + [anon_sym_remote] = ACTIONS(4933), + [anon_sym_REMOTE] = ACTIONS(4933), + [anon_sym_Static] = ACTIONS(4933), + [anon_sym_static] = ACTIONS(4933), + [anon_sym_STATIC] = ACTIONS(4933), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1939)] = { - [sym_parenthesized_expression] = STATE(2301), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5220), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2768), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5220), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1939), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2731), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2731), - [sym_undefined] = STATE(2731), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4775), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4547), - [anon_sym_query] = ACTIONS(4547), - [anon_sym_QUERY] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4549), - [anon_sym_DASH_DASH] = ACTIONS(4549), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4547), - [anon_sym_set] = ACTIONS(4547), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4547), - [anon_sym_QueryExecute] = ACTIONS(4551), - [anon_sym_queryexecute] = ACTIONS(4551), - [anon_sym_QUERYEXECUTE] = ACTIONS(4551), - [anon_sym_queryExecute] = ACTIONS(4551), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_ABSTRACT] = ACTIONS(4547), - [anon_sym_Component] = ACTIONS(4547), - [anon_sym_component] = ACTIONS(4547), - [anon_sym_COMPONENT] = ACTIONS(4547), - [anon_sym_Debugger] = ACTIONS(4547), - [anon_sym_debugger] = ACTIONS(4547), - [anon_sym_DEBUGGER] = ACTIONS(4547), - [anon_sym_Final] = ACTIONS(4547), - [anon_sym_final] = ACTIONS(4547), - [anon_sym_FINAL] = ACTIONS(4547), - [anon_sym_Function] = ACTIONS(4553), - [anon_sym_function] = ACTIONS(4553), - [anon_sym_FUNCTION] = ACTIONS(4553), - [anon_sym_Include] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_INCLUDE] = ACTIONS(4547), - [anon_sym_New] = ACTIONS(4555), - [anon_sym_new] = ACTIONS(4555), - [anon_sym_NEW] = ACTIONS(4555), - [anon_sym_Package] = ACTIONS(4547), - [anon_sym_package] = ACTIONS(4547), - [anon_sym_PACKAGE] = ACTIONS(4547), - [anon_sym_Private] = ACTIONS(4547), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_PRIVATE] = ACTIONS(4547), - [anon_sym_Public] = ACTIONS(4547), - [anon_sym_public] = ACTIONS(4547), - [anon_sym_PUBLIC] = ACTIONS(4547), - [anon_sym_Remote] = ACTIONS(4547), - [anon_sym_remote] = ACTIONS(4547), - [anon_sym_REMOTE] = ACTIONS(4547), - [anon_sym_Static] = ACTIONS(4547), - [anon_sym_static] = ACTIONS(4547), - [anon_sym_STATIC] = ACTIONS(4547), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [STATE(1947)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2988), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2778), + [sym_hash_expression] = STATE(2778), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4939), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), }, - [STATE(1940)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3176), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), + [STATE(1948)] = { + [sym_parenthesized_expression] = STATE(2286), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(2794), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(3019), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5173), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2820), + [sym_new_expression] = STATE(2830), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(3019), + [sym_member_expression] = STATE(2286), + [sym_subscript_expression] = STATE(2286), + [sym_assignment_expression] = STATE(3019), + [sym__augmented_assignment_lhs] = STATE(3944), + [sym_augmented_assignment_expression] = STATE(3019), + [sym__destructuring_pattern] = STATE(5173), + [sym_ternary_expression] = STATE(3019), + [sym_elvis_expression] = STATE(3019), + [sym_binary_expression] = STATE(3019), + [sym_unary_operator] = STATE(1901), + [sym_unary_expression] = STATE(3019), + [sym_update_expression] = STATE(3019), + [sym_string] = STATE(2819), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2819), + [sym_undefined] = STATE(2819), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(2796), + [sym_hash_expression] = STATE(2796), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(3019), + [sym_identifier] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4106), + [anon_sym_query] = ACTIONS(4106), + [anon_sym_QUERY] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4134), + [sym_hash_empty] = ACTIONS(4941), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_QueryExecute] = ACTIONS(4138), + [anon_sym_queryexecute] = ACTIONS(4138), + [anon_sym_QUERYEXECUTE] = ACTIONS(4138), + [anon_sym_queryExecute] = ACTIONS(4138), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_ABSTRACT] = ACTIONS(4106), + [anon_sym_Component] = ACTIONS(4106), + [anon_sym_component] = ACTIONS(4106), + [anon_sym_COMPONENT] = ACTIONS(4106), + [anon_sym_Debugger] = ACTIONS(4106), + [anon_sym_debugger] = ACTIONS(4106), + [anon_sym_DEBUGGER] = ACTIONS(4106), + [anon_sym_Final] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_FINAL] = ACTIONS(4106), + [anon_sym_Function] = ACTIONS(4142), + [anon_sym_function] = ACTIONS(4142), + [anon_sym_FUNCTION] = ACTIONS(4142), + [anon_sym_Include] = ACTIONS(4106), + [anon_sym_include] = ACTIONS(4106), + [anon_sym_INCLUDE] = ACTIONS(4106), + [anon_sym_New] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_NEW] = ACTIONS(4144), + [anon_sym_Package] = ACTIONS(4106), + [anon_sym_package] = ACTIONS(4106), + [anon_sym_PACKAGE] = ACTIONS(4106), + [anon_sym_Private] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_PRIVATE] = ACTIONS(4106), + [anon_sym_Public] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_PUBLIC] = ACTIONS(4106), + [anon_sym_Remote] = ACTIONS(4106), + [anon_sym_remote] = ACTIONS(4106), + [anon_sym_REMOTE] = ACTIONS(4106), + [anon_sym_Static] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_STATIC] = ACTIONS(4106), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(1949)] = { + [sym_parenthesized_expression] = STATE(2375), + [sym_expression] = STATE(3555), + [sym_primary_expression] = STATE(2867), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(3377), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5257), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2913), + [sym_new_expression] = STATE(3156), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(3377), + [sym_member_expression] = STATE(2375), + [sym_subscript_expression] = STATE(2375), + [sym_assignment_expression] = STATE(3377), + [sym__augmented_assignment_lhs] = STATE(3946), + [sym_augmented_assignment_expression] = STATE(3377), + [sym__destructuring_pattern] = STATE(5257), + [sym_ternary_expression] = STATE(3377), + [sym_elvis_expression] = STATE(3377), + [sym_binary_expression] = STATE(3377), + [sym_unary_operator] = STATE(1789), + [sym_unary_expression] = STATE(3377), + [sym_update_expression] = STATE(3377), + [sym_string] = STATE(2892), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(2892), + [sym_undefined] = STATE(2892), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3011), + [sym_hash_expression] = STATE(3011), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(3377), + [sym_identifier] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4757), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4757), + [anon_sym_query] = ACTIONS(4757), + [anon_sym_QUERY] = ACTIONS(4757), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4757), + [anon_sym_set] = ACTIONS(4757), + [anon_sym_POUND] = ACTIONS(4184), + [sym_hash_empty] = ACTIONS(4186), + [anon_sym_export] = ACTIONS(4757), + [anon_sym_QueryExecute] = ACTIONS(4761), + [anon_sym_queryexecute] = ACTIONS(4761), + [anon_sym_QUERYEXECUTE] = ACTIONS(4761), + [anon_sym_queryExecute] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4757), + [anon_sym_abstract] = ACTIONS(4757), + [anon_sym_ABSTRACT] = ACTIONS(4757), + [anon_sym_Component] = ACTIONS(4757), + [anon_sym_component] = ACTIONS(4757), + [anon_sym_COMPONENT] = ACTIONS(4757), + [anon_sym_Debugger] = ACTIONS(4757), + [anon_sym_debugger] = ACTIONS(4757), + [anon_sym_DEBUGGER] = ACTIONS(4757), + [anon_sym_Final] = ACTIONS(4757), + [anon_sym_final] = ACTIONS(4757), + [anon_sym_FINAL] = ACTIONS(4757), + [anon_sym_Function] = ACTIONS(4763), + [anon_sym_function] = ACTIONS(4763), + [anon_sym_FUNCTION] = ACTIONS(4763), + [anon_sym_Include] = ACTIONS(4757), + [anon_sym_include] = ACTIONS(4757), + [anon_sym_INCLUDE] = ACTIONS(4757), + [anon_sym_New] = ACTIONS(4765), + [anon_sym_new] = ACTIONS(4765), + [anon_sym_NEW] = ACTIONS(4765), + [anon_sym_Package] = ACTIONS(4757), + [anon_sym_package] = ACTIONS(4757), + [anon_sym_PACKAGE] = ACTIONS(4757), + [anon_sym_Private] = ACTIONS(4757), + [anon_sym_private] = ACTIONS(4757), + [anon_sym_PRIVATE] = ACTIONS(4757), + [anon_sym_Public] = ACTIONS(4757), + [anon_sym_public] = ACTIONS(4757), + [anon_sym_PUBLIC] = ACTIONS(4757), + [anon_sym_Remote] = ACTIONS(4757), + [anon_sym_remote] = ACTIONS(4757), + [anon_sym_REMOTE] = ACTIONS(4757), + [anon_sym_Static] = ACTIONS(4757), + [anon_sym_static] = ACTIONS(4757), + [anon_sym_STATIC] = ACTIONS(4757), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(1950)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(4819), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -317842,243 +319388,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1941)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3180), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [STATE(1951)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3824), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1942)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3187), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), + [STATE(1952)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(483), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(463), + [sym_hash_expression] = STATE(463), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4989), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1953)] = { + [sym_parenthesized_expression] = STATE(2309), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5246), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2821), + [sym_new_expression] = STATE(3117), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2309), + [sym_subscript_expression] = STATE(2309), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3955), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1953), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2773), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2773), + [sym_undefined] = STATE(2773), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4817), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(4819), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(4819), + [anon_sym_query] = ACTIONS(4819), + [anon_sym_QUERY] = ACTIONS(4819), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -318102,118 +319778,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), + [anon_sym_get] = ACTIONS(4819), + [anon_sym_set] = ACTIONS(4819), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4819), + [anon_sym_QueryExecute] = ACTIONS(4825), + [anon_sym_queryexecute] = ACTIONS(4825), + [anon_sym_QUERYEXECUTE] = ACTIONS(4825), + [anon_sym_queryExecute] = ACTIONS(4825), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_ABSTRACT] = ACTIONS(4819), + [anon_sym_Component] = ACTIONS(4819), + [anon_sym_component] = ACTIONS(4819), + [anon_sym_COMPONENT] = ACTIONS(4819), + [anon_sym_Debugger] = ACTIONS(4819), + [anon_sym_debugger] = ACTIONS(4819), + [anon_sym_DEBUGGER] = ACTIONS(4819), + [anon_sym_Final] = ACTIONS(4819), + [anon_sym_final] = ACTIONS(4819), + [anon_sym_FINAL] = ACTIONS(4819), + [anon_sym_Function] = ACTIONS(4827), + [anon_sym_function] = ACTIONS(4827), + [anon_sym_FUNCTION] = ACTIONS(4827), + [anon_sym_Include] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_INCLUDE] = ACTIONS(4819), + [anon_sym_New] = ACTIONS(4829), + [anon_sym_new] = ACTIONS(4829), + [anon_sym_NEW] = ACTIONS(4829), + [anon_sym_Package] = ACTIONS(4819), + [anon_sym_package] = ACTIONS(4819), + [anon_sym_PACKAGE] = ACTIONS(4819), + [anon_sym_Private] = ACTIONS(4819), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_PRIVATE] = ACTIONS(4819), + [anon_sym_Public] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4819), + [anon_sym_PUBLIC] = ACTIONS(4819), + [anon_sym_Remote] = ACTIONS(4819), + [anon_sym_remote] = ACTIONS(4819), + [anon_sym_REMOTE] = ACTIONS(4819), + [anon_sym_Static] = ACTIONS(4819), + [anon_sym_static] = ACTIONS(4819), + [anon_sym_STATIC] = ACTIONS(4819), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1943)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1954)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3820), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -318232,113 +319908,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1944)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3195), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), + [STATE(1955)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2460), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2465), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4847), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(4993), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(4993), + [anon_sym_query] = ACTIONS(4993), + [anon_sym_QUERY] = ACTIONS(4993), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -318362,113 +320038,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [anon_sym_get] = ACTIONS(4993), + [anon_sym_set] = ACTIONS(4993), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4993), + [anon_sym_QueryExecute] = ACTIONS(4995), + [anon_sym_queryexecute] = ACTIONS(4995), + [anon_sym_QUERYEXECUTE] = ACTIONS(4995), + [anon_sym_queryExecute] = ACTIONS(4995), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(4993), + [anon_sym_abstract] = ACTIONS(4993), + [anon_sym_ABSTRACT] = ACTIONS(4993), + [anon_sym_Component] = ACTIONS(4993), + [anon_sym_component] = ACTIONS(4993), + [anon_sym_COMPONENT] = ACTIONS(4993), + [anon_sym_Debugger] = ACTIONS(4993), + [anon_sym_debugger] = ACTIONS(4993), + [anon_sym_DEBUGGER] = ACTIONS(4993), + [anon_sym_Final] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_FINAL] = ACTIONS(4993), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4993), + [anon_sym_include] = ACTIONS(4993), + [anon_sym_INCLUDE] = ACTIONS(4993), + [anon_sym_New] = ACTIONS(4997), + [anon_sym_new] = ACTIONS(4997), + [anon_sym_NEW] = ACTIONS(4997), + [anon_sym_Package] = ACTIONS(4993), + [anon_sym_package] = ACTIONS(4993), + [anon_sym_PACKAGE] = ACTIONS(4993), + [anon_sym_Private] = ACTIONS(4993), + [anon_sym_private] = ACTIONS(4993), + [anon_sym_PRIVATE] = ACTIONS(4993), + [anon_sym_Public] = ACTIONS(4993), + [anon_sym_public] = ACTIONS(4993), + [anon_sym_PUBLIC] = ACTIONS(4993), + [anon_sym_Remote] = ACTIONS(4993), + [anon_sym_remote] = ACTIONS(4993), + [anon_sym_REMOTE] = ACTIONS(4993), + [anon_sym_Static] = ACTIONS(4993), + [anon_sym_static] = ACTIONS(4993), + [anon_sym_STATIC] = ACTIONS(4993), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1945)] = { - [sym_parenthesized_expression] = STATE(2125), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(2449), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2443), - [sym_new_expression] = STATE(2553), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2445), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2445), - [sym_undefined] = STATE(2445), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(3681), - [sym_hash_expression] = STATE(3681), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4797), + [STATE(1956)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2473), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2487), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4847), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4999), + [anon_sym_let] = ACTIONS(4993), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4999), - [anon_sym_query] = ACTIONS(4999), - [anon_sym_QUERY] = ACTIONS(4999), + [anon_sym_Query] = ACTIONS(4993), + [anon_sym_query] = ACTIONS(4993), + [anon_sym_QUERY] = ACTIONS(4993), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -318492,113 +320168,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4999), - [anon_sym_set] = ACTIONS(4999), + [anon_sym_get] = ACTIONS(4993), + [anon_sym_set] = ACTIONS(4993), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4801), - [anon_sym_export] = ACTIONS(4999), - [anon_sym_QueryExecute] = ACTIONS(5001), - [anon_sym_queryexecute] = ACTIONS(5001), - [anon_sym_QUERYEXECUTE] = ACTIONS(5001), - [anon_sym_queryExecute] = ACTIONS(5001), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4993), + [anon_sym_QueryExecute] = ACTIONS(4995), + [anon_sym_queryexecute] = ACTIONS(4995), + [anon_sym_QUERYEXECUTE] = ACTIONS(4995), + [anon_sym_queryExecute] = ACTIONS(4995), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4999), - [anon_sym_abstract] = ACTIONS(4999), - [anon_sym_ABSTRACT] = ACTIONS(4999), - [anon_sym_Component] = ACTIONS(4999), - [anon_sym_component] = ACTIONS(4999), - [anon_sym_COMPONENT] = ACTIONS(4999), - [anon_sym_Debugger] = ACTIONS(4999), - [anon_sym_debugger] = ACTIONS(4999), - [anon_sym_DEBUGGER] = ACTIONS(4999), - [anon_sym_Final] = ACTIONS(4999), - [anon_sym_final] = ACTIONS(4999), - [anon_sym_FINAL] = ACTIONS(4999), - [anon_sym_Function] = ACTIONS(4805), - [anon_sym_function] = ACTIONS(4805), - [anon_sym_FUNCTION] = ACTIONS(4805), - [anon_sym_Include] = ACTIONS(4999), - [anon_sym_include] = ACTIONS(4999), - [anon_sym_INCLUDE] = ACTIONS(4999), - [anon_sym_New] = ACTIONS(5005), - [anon_sym_new] = ACTIONS(5005), - [anon_sym_NEW] = ACTIONS(5005), - [anon_sym_Package] = ACTIONS(4999), - [anon_sym_package] = ACTIONS(4999), - [anon_sym_PACKAGE] = ACTIONS(4999), - [anon_sym_Private] = ACTIONS(4999), - [anon_sym_private] = ACTIONS(4999), - [anon_sym_PRIVATE] = ACTIONS(4999), - [anon_sym_Public] = ACTIONS(4999), - [anon_sym_public] = ACTIONS(4999), - [anon_sym_PUBLIC] = ACTIONS(4999), - [anon_sym_Remote] = ACTIONS(4999), - [anon_sym_remote] = ACTIONS(4999), - [anon_sym_REMOTE] = ACTIONS(4999), - [anon_sym_Static] = ACTIONS(4999), - [anon_sym_static] = ACTIONS(4999), - [anon_sym_STATIC] = ACTIONS(4999), + [anon_sym_Abstract] = ACTIONS(4993), + [anon_sym_abstract] = ACTIONS(4993), + [anon_sym_ABSTRACT] = ACTIONS(4993), + [anon_sym_Component] = ACTIONS(4993), + [anon_sym_component] = ACTIONS(4993), + [anon_sym_COMPONENT] = ACTIONS(4993), + [anon_sym_Debugger] = ACTIONS(4993), + [anon_sym_debugger] = ACTIONS(4993), + [anon_sym_DEBUGGER] = ACTIONS(4993), + [anon_sym_Final] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_FINAL] = ACTIONS(4993), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4993), + [anon_sym_include] = ACTIONS(4993), + [anon_sym_INCLUDE] = ACTIONS(4993), + [anon_sym_New] = ACTIONS(4997), + [anon_sym_new] = ACTIONS(4997), + [anon_sym_NEW] = ACTIONS(4997), + [anon_sym_Package] = ACTIONS(4993), + [anon_sym_package] = ACTIONS(4993), + [anon_sym_PACKAGE] = ACTIONS(4993), + [anon_sym_Private] = ACTIONS(4993), + [anon_sym_private] = ACTIONS(4993), + [anon_sym_PRIVATE] = ACTIONS(4993), + [anon_sym_Public] = ACTIONS(4993), + [anon_sym_public] = ACTIONS(4993), + [anon_sym_PUBLIC] = ACTIONS(4993), + [anon_sym_Remote] = ACTIONS(4993), + [anon_sym_remote] = ACTIONS(4993), + [anon_sym_REMOTE] = ACTIONS(4993), + [anon_sym_Static] = ACTIONS(4993), + [anon_sym_static] = ACTIONS(4993), + [anon_sym_STATIC] = ACTIONS(4993), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1946)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3197), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), + [STATE(1957)] = { + [sym_parenthesized_expression] = STATE(2340), + [sym_expression] = STATE(3739), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5269), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2981), + [sym_new_expression] = STATE(3140), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2340), + [sym_subscript_expression] = STATE(2340), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3932), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5269), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1703), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2915), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2915), + [sym_undefined] = STATE(2915), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4914), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(3906), [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(613), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(613), + [anon_sym_query] = ACTIONS(613), + [anon_sym_QUERY] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -318622,113 +320298,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), + [anon_sym_get] = ACTIONS(613), + [anon_sym_set] = ACTIONS(613), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(613), + [anon_sym_QueryExecute] = ACTIONS(617), + [anon_sym_queryexecute] = ACTIONS(617), + [anon_sym_QUERYEXECUTE] = ACTIONS(617), + [anon_sym_queryExecute] = ACTIONS(617), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_ABSTRACT] = ACTIONS(613), + [anon_sym_Component] = ACTIONS(613), + [anon_sym_component] = ACTIONS(613), + [anon_sym_COMPONENT] = ACTIONS(613), + [anon_sym_Debugger] = ACTIONS(613), + [anon_sym_debugger] = ACTIONS(613), + [anon_sym_DEBUGGER] = ACTIONS(613), + [anon_sym_Final] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_FINAL] = ACTIONS(613), + [anon_sym_Function] = ACTIONS(621), + [anon_sym_function] = ACTIONS(621), + [anon_sym_FUNCTION] = ACTIONS(621), + [anon_sym_Include] = ACTIONS(613), + [anon_sym_include] = ACTIONS(613), + [anon_sym_INCLUDE] = ACTIONS(613), + [anon_sym_New] = ACTIONS(623), + [anon_sym_new] = ACTIONS(623), + [anon_sym_NEW] = ACTIONS(623), + [anon_sym_Package] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_PACKAGE] = ACTIONS(613), + [anon_sym_Private] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_PRIVATE] = ACTIONS(613), + [anon_sym_Public] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_PUBLIC] = ACTIONS(613), + [anon_sym_Remote] = ACTIONS(613), + [anon_sym_remote] = ACTIONS(613), + [anon_sym_REMOTE] = ACTIONS(613), + [anon_sym_Static] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_STATIC] = ACTIONS(613), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1947)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3198), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), + [STATE(1958)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(486), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(464), + [sym_hash_expression] = STATE(464), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4999), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), + }, + [STATE(1959)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(753), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1960)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -318752,248 +320688,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1948)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(720), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1949)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3749), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1961)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3782), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -319012,113 +320818,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1950)] = { - [sym_parenthesized_expression] = STATE(2125), - [sym_expression] = STATE(3790), - [sym_primary_expression] = STATE(2449), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2443), - [sym_new_expression] = STATE(2553), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2125), - [sym_subscript_expression] = STATE(2125), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2445), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2445), - [sym_undefined] = STATE(2445), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(3681), - [sym_hash_expression] = STATE(3681), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4797), + [STATE(1962)] = { + [sym_parenthesized_expression] = STATE(2307), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2479), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2598), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5214), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2823), + [sym_new_expression] = STATE(2824), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2598), + [sym_member_expression] = STATE(2307), + [sym_subscript_expression] = STATE(2307), + [sym_assignment_expression] = STATE(2598), + [sym__augmented_assignment_lhs] = STATE(3945), + [sym_augmented_assignment_expression] = STATE(2598), + [sym__destructuring_pattern] = STATE(5214), + [sym_ternary_expression] = STATE(2598), + [sym_elvis_expression] = STATE(2598), + [sym_binary_expression] = STATE(2598), + [sym_unary_operator] = STATE(1962), + [sym_unary_expression] = STATE(2598), + [sym_update_expression] = STATE(2598), + [sym_string] = STATE(2800), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2800), + [sym_undefined] = STATE(2800), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(2451), + [sym_hash_expression] = STATE(2451), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2598), + [sym_identifier] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4891), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4799), + [anon_sym_let] = ACTIONS(4409), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4799), - [anon_sym_query] = ACTIONS(4799), - [anon_sym_QUERY] = ACTIONS(4799), + [anon_sym_Query] = ACTIONS(4409), + [anon_sym_query] = ACTIONS(4409), + [anon_sym_QUERY] = ACTIONS(4409), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4411), + [anon_sym_DASH_DASH] = ACTIONS(4411), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -319142,118 +320948,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4799), - [anon_sym_set] = ACTIONS(4799), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4801), - [anon_sym_export] = ACTIONS(4799), - [anon_sym_QueryExecute] = ACTIONS(4803), - [anon_sym_queryexecute] = ACTIONS(4803), - [anon_sym_QUERYEXECUTE] = ACTIONS(4803), - [anon_sym_queryExecute] = ACTIONS(4803), + [anon_sym_get] = ACTIONS(4409), + [anon_sym_set] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(51), + [sym_hash_empty] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4409), + [anon_sym_QueryExecute] = ACTIONS(4413), + [anon_sym_queryexecute] = ACTIONS(4413), + [anon_sym_QUERYEXECUTE] = ACTIONS(4413), + [anon_sym_queryExecute] = ACTIONS(4413), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4799), - [anon_sym_abstract] = ACTIONS(4799), - [anon_sym_ABSTRACT] = ACTIONS(4799), - [anon_sym_Component] = ACTIONS(4799), - [anon_sym_component] = ACTIONS(4799), - [anon_sym_COMPONENT] = ACTIONS(4799), - [anon_sym_Debugger] = ACTIONS(4799), - [anon_sym_debugger] = ACTIONS(4799), - [anon_sym_DEBUGGER] = ACTIONS(4799), - [anon_sym_Final] = ACTIONS(4799), - [anon_sym_final] = ACTIONS(4799), - [anon_sym_FINAL] = ACTIONS(4799), - [anon_sym_Function] = ACTIONS(4805), - [anon_sym_function] = ACTIONS(4805), - [anon_sym_FUNCTION] = ACTIONS(4805), - [anon_sym_Include] = ACTIONS(4799), - [anon_sym_include] = ACTIONS(4799), - [anon_sym_INCLUDE] = ACTIONS(4799), - [anon_sym_New] = ACTIONS(5007), - [anon_sym_new] = ACTIONS(5007), - [anon_sym_NEW] = ACTIONS(5007), - [anon_sym_Package] = ACTIONS(4799), - [anon_sym_package] = ACTIONS(4799), - [anon_sym_PACKAGE] = ACTIONS(4799), - [anon_sym_Private] = ACTIONS(4799), - [anon_sym_private] = ACTIONS(4799), - [anon_sym_PRIVATE] = ACTIONS(4799), - [anon_sym_Public] = ACTIONS(4799), - [anon_sym_public] = ACTIONS(4799), - [anon_sym_PUBLIC] = ACTIONS(4799), - [anon_sym_Remote] = ACTIONS(4799), - [anon_sym_remote] = ACTIONS(4799), - [anon_sym_REMOTE] = ACTIONS(4799), - [anon_sym_Static] = ACTIONS(4799), - [anon_sym_static] = ACTIONS(4799), - [anon_sym_STATIC] = ACTIONS(4799), + [anon_sym_Abstract] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(4409), + [anon_sym_ABSTRACT] = ACTIONS(4409), + [anon_sym_Component] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_COMPONENT] = ACTIONS(4409), + [anon_sym_Debugger] = ACTIONS(4409), + [anon_sym_debugger] = ACTIONS(4409), + [anon_sym_DEBUGGER] = ACTIONS(4409), + [anon_sym_Final] = ACTIONS(4409), + [anon_sym_final] = ACTIONS(4409), + [anon_sym_FINAL] = ACTIONS(4409), + [anon_sym_Function] = ACTIONS(4415), + [anon_sym_function] = ACTIONS(4415), + [anon_sym_FUNCTION] = ACTIONS(4415), + [anon_sym_Include] = ACTIONS(4409), + [anon_sym_include] = ACTIONS(4409), + [anon_sym_INCLUDE] = ACTIONS(4409), + [anon_sym_New] = ACTIONS(4417), + [anon_sym_new] = ACTIONS(4417), + [anon_sym_NEW] = ACTIONS(4417), + [anon_sym_Package] = ACTIONS(4409), + [anon_sym_package] = ACTIONS(4409), + [anon_sym_PACKAGE] = ACTIONS(4409), + [anon_sym_Private] = ACTIONS(4409), + [anon_sym_private] = ACTIONS(4409), + [anon_sym_PRIVATE] = ACTIONS(4409), + [anon_sym_Public] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4409), + [anon_sym_PUBLIC] = ACTIONS(4409), + [anon_sym_Remote] = ACTIONS(4409), + [anon_sym_remote] = ACTIONS(4409), + [anon_sym_REMOTE] = ACTIONS(4409), + [anon_sym_Static] = ACTIONS(4409), + [anon_sym_static] = ACTIONS(4409), + [anon_sym_STATIC] = ACTIONS(4409), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1951)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3788), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1963)] = { + [sym_parenthesized_expression] = STATE(2300), + [sym_expression] = STATE(3141), + [sym_primary_expression] = STATE(2798), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(3039), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5297), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2788), + [sym_new_expression] = STATE(2983), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(3039), + [sym_member_expression] = STATE(2300), + [sym_subscript_expression] = STATE(2300), + [sym_assignment_expression] = STATE(3039), + [sym__augmented_assignment_lhs] = STATE(3929), + [sym_augmented_assignment_expression] = STATE(3039), + [sym__destructuring_pattern] = STATE(5297), + [sym_ternary_expression] = STATE(3039), + [sym_elvis_expression] = STATE(3039), + [sym_binary_expression] = STATE(3039), + [sym_unary_operator] = STATE(1514), + [sym_unary_expression] = STATE(3039), + [sym_update_expression] = STATE(3039), + [sym_string] = STATE(2801), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2801), + [sym_undefined] = STATE(2801), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(2812), + [sym_hash_expression] = STATE(2812), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(3039), + [sym_identifier] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4863), + [anon_sym_query] = ACTIONS(4863), + [anon_sym_QUERY] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4863), + [anon_sym_set] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(4445), + [sym_hash_empty] = ACTIONS(4447), + [anon_sym_export] = ACTIONS(4863), + [anon_sym_QueryExecute] = ACTIONS(4867), + [anon_sym_queryexecute] = ACTIONS(4867), + [anon_sym_QUERYEXECUTE] = ACTIONS(4867), + [anon_sym_queryExecute] = ACTIONS(4867), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_ABSTRACT] = ACTIONS(4863), + [anon_sym_Component] = ACTIONS(4863), + [anon_sym_component] = ACTIONS(4863), + [anon_sym_COMPONENT] = ACTIONS(4863), + [anon_sym_Debugger] = ACTIONS(4863), + [anon_sym_debugger] = ACTIONS(4863), + [anon_sym_DEBUGGER] = ACTIONS(4863), + [anon_sym_Final] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_FINAL] = ACTIONS(4863), + [anon_sym_Function] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(4869), + [anon_sym_FUNCTION] = ACTIONS(4869), + [anon_sym_Include] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_INCLUDE] = ACTIONS(4863), + [anon_sym_New] = ACTIONS(4871), + [anon_sym_new] = ACTIONS(4871), + [anon_sym_NEW] = ACTIONS(4871), + [anon_sym_Package] = ACTIONS(4863), + [anon_sym_package] = ACTIONS(4863), + [anon_sym_PACKAGE] = ACTIONS(4863), + [anon_sym_Private] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_PRIVATE] = ACTIONS(4863), + [anon_sym_Public] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_PUBLIC] = ACTIONS(4863), + [anon_sym_Remote] = ACTIONS(4863), + [anon_sym_remote] = ACTIONS(4863), + [anon_sym_REMOTE] = ACTIONS(4863), + [anon_sym_Static] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_STATIC] = ACTIONS(4863), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(1964)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3835), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -319272,113 +321208,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1952)] = { - [sym_parenthesized_expression] = STATE(2296), - [sym_expression] = STATE(3208), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5226), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2766), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2296), - [sym_subscript_expression] = STATE(2296), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3895), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5226), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1922), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2695), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2695), - [sym_undefined] = STATE(2695), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4980), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4725), - [anon_sym_LBRACE] = ACTIONS(611), + [STATE(1965)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2460), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2465), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4847), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4727), + [anon_sym_let] = ACTIONS(4993), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4727), - [anon_sym_query] = ACTIONS(4727), - [anon_sym_QUERY] = ACTIONS(4727), + [anon_sym_Query] = ACTIONS(4993), + [anon_sym_query] = ACTIONS(4993), + [anon_sym_QUERY] = ACTIONS(4993), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4729), - [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -319402,373 +321338,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4727), - [anon_sym_set] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(4727), - [anon_sym_QueryExecute] = ACTIONS(4731), - [anon_sym_queryexecute] = ACTIONS(4731), - [anon_sym_QUERYEXECUTE] = ACTIONS(4731), - [anon_sym_queryExecute] = ACTIONS(4731), + [anon_sym_get] = ACTIONS(4993), + [anon_sym_set] = ACTIONS(4993), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4993), + [anon_sym_QueryExecute] = ACTIONS(4995), + [anon_sym_queryexecute] = ACTIONS(4995), + [anon_sym_QUERYEXECUTE] = ACTIONS(4995), + [anon_sym_queryExecute] = ACTIONS(4995), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4727), - [anon_sym_abstract] = ACTIONS(4727), - [anon_sym_ABSTRACT] = ACTIONS(4727), - [anon_sym_Component] = ACTIONS(4727), - [anon_sym_component] = ACTIONS(4727), - [anon_sym_COMPONENT] = ACTIONS(4727), - [anon_sym_Debugger] = ACTIONS(4727), - [anon_sym_debugger] = ACTIONS(4727), - [anon_sym_DEBUGGER] = ACTIONS(4727), - [anon_sym_Final] = ACTIONS(4727), - [anon_sym_final] = ACTIONS(4727), - [anon_sym_FINAL] = ACTIONS(4727), - [anon_sym_Function] = ACTIONS(4733), - [anon_sym_function] = ACTIONS(4733), - [anon_sym_FUNCTION] = ACTIONS(4733), - [anon_sym_Include] = ACTIONS(4727), - [anon_sym_include] = ACTIONS(4727), - [anon_sym_INCLUDE] = ACTIONS(4727), - [anon_sym_New] = ACTIONS(4735), - [anon_sym_new] = ACTIONS(4735), - [anon_sym_NEW] = ACTIONS(4735), - [anon_sym_Package] = ACTIONS(4727), - [anon_sym_package] = ACTIONS(4727), - [anon_sym_PACKAGE] = ACTIONS(4727), - [anon_sym_Private] = ACTIONS(4727), - [anon_sym_private] = ACTIONS(4727), - [anon_sym_PRIVATE] = ACTIONS(4727), - [anon_sym_Public] = ACTIONS(4727), - [anon_sym_public] = ACTIONS(4727), - [anon_sym_PUBLIC] = ACTIONS(4727), - [anon_sym_Remote] = ACTIONS(4727), - [anon_sym_remote] = ACTIONS(4727), - [anon_sym_REMOTE] = ACTIONS(4727), - [anon_sym_Static] = ACTIONS(4727), - [anon_sym_static] = ACTIONS(4727), - [anon_sym_STATIC] = ACTIONS(4727), + [anon_sym_Abstract] = ACTIONS(4993), + [anon_sym_abstract] = ACTIONS(4993), + [anon_sym_ABSTRACT] = ACTIONS(4993), + [anon_sym_Component] = ACTIONS(4993), + [anon_sym_component] = ACTIONS(4993), + [anon_sym_COMPONENT] = ACTIONS(4993), + [anon_sym_Debugger] = ACTIONS(4993), + [anon_sym_debugger] = ACTIONS(4993), + [anon_sym_DEBUGGER] = ACTIONS(4993), + [anon_sym_Final] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_FINAL] = ACTIONS(4993), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4993), + [anon_sym_include] = ACTIONS(4993), + [anon_sym_INCLUDE] = ACTIONS(4993), + [anon_sym_New] = ACTIONS(5001), + [anon_sym_new] = ACTIONS(5001), + [anon_sym_NEW] = ACTIONS(5001), + [anon_sym_Package] = ACTIONS(4993), + [anon_sym_package] = ACTIONS(4993), + [anon_sym_PACKAGE] = ACTIONS(4993), + [anon_sym_Private] = ACTIONS(4993), + [anon_sym_private] = ACTIONS(4993), + [anon_sym_PRIVATE] = ACTIONS(4993), + [anon_sym_Public] = ACTIONS(4993), + [anon_sym_public] = ACTIONS(4993), + [anon_sym_PUBLIC] = ACTIONS(4993), + [anon_sym_Remote] = ACTIONS(4993), + [anon_sym_remote] = ACTIONS(4993), + [anon_sym_REMOTE] = ACTIONS(4993), + [anon_sym_Static] = ACTIONS(4993), + [anon_sym_static] = ACTIONS(4993), + [anon_sym_STATIC] = ACTIONS(4993), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1953)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(741), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1954)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1955)] = { - [sym_parenthesized_expression] = STATE(2321), - [sym_expression] = STATE(3534), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5166), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2942), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5166), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1544), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(3002), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(3002), - [sym_undefined] = STATE(3002), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4961), - [sym__hash_always_eval] = STATE(2427), - [sym_hash_expression] = STATE(2427), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(611), + [STATE(1966)] = { + [sym_parenthesized_expression] = STATE(2154), + [sym_expression] = STATE(3873), + [sym_primary_expression] = STATE(2473), + [sym_object] = STATE(2553), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2553), + [sym_ordered_struct] = STATE(2553), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2553), + [sym_arrow_function] = STATE(2553), + [sym_call_expression] = STATE(2484), + [sym_new_expression] = STATE(2487), + [sym_prefixed_type] = STATE(2553), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2154), + [sym_subscript_expression] = STATE(2154), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2464), + [sym_regex] = STATE(2553), + [sym_number] = STATE(2553), + [sym_this] = STATE(2553), + [sym_super] = STATE(2553), + [sym_true] = STATE(2553), + [sym_false] = STATE(2553), + [sym_null] = STATE(2464), + [sym_undefined] = STATE(2464), + [sym_java_class_block] = STATE(2553), + [sym_formal_parameters] = STATE(4966), + [sym__hash_always_eval] = STATE(3688), + [sym_hash_expression] = STATE(3688), + [sym_template_string] = STATE(2553), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4847), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(613), + [anon_sym_let] = ACTIONS(4993), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(613), - [anon_sym_query] = ACTIONS(613), - [anon_sym_QUERY] = ACTIONS(613), + [anon_sym_Query] = ACTIONS(4993), + [anon_sym_query] = ACTIONS(4993), + [anon_sym_QUERY] = ACTIONS(4993), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(23), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(29), [anon_sym_SQUOTE] = ACTIONS(31), [sym_comment] = ACTIONS(129), @@ -319792,248 +321468,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(49), [anon_sym_undefined] = ACTIONS(49), [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4166), - [anon_sym_export] = ACTIONS(613), - [anon_sym_QueryExecute] = ACTIONS(617), - [anon_sym_queryexecute] = ACTIONS(617), - [anon_sym_QUERYEXECUTE] = ACTIONS(617), - [anon_sym_queryExecute] = ACTIONS(617), + [anon_sym_get] = ACTIONS(4993), + [anon_sym_set] = ACTIONS(4993), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4851), + [anon_sym_export] = ACTIONS(4993), + [anon_sym_QueryExecute] = ACTIONS(4995), + [anon_sym_queryexecute] = ACTIONS(4995), + [anon_sym_QUERYEXECUTE] = ACTIONS(4995), + [anon_sym_queryExecute] = ACTIONS(4995), [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(613), - [anon_sym_abstract] = ACTIONS(613), - [anon_sym_ABSTRACT] = ACTIONS(613), - [anon_sym_Component] = ACTIONS(613), - [anon_sym_component] = ACTIONS(613), - [anon_sym_COMPONENT] = ACTIONS(613), - [anon_sym_Debugger] = ACTIONS(613), - [anon_sym_debugger] = ACTIONS(613), - [anon_sym_DEBUGGER] = ACTIONS(613), - [anon_sym_Final] = ACTIONS(613), - [anon_sym_final] = ACTIONS(613), - [anon_sym_FINAL] = ACTIONS(613), - [anon_sym_Function] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [anon_sym_FUNCTION] = ACTIONS(621), - [anon_sym_Include] = ACTIONS(613), - [anon_sym_include] = ACTIONS(613), - [anon_sym_INCLUDE] = ACTIONS(613), - [anon_sym_New] = ACTIONS(623), - [anon_sym_new] = ACTIONS(623), - [anon_sym_NEW] = ACTIONS(623), - [anon_sym_Package] = ACTIONS(613), - [anon_sym_package] = ACTIONS(613), - [anon_sym_PACKAGE] = ACTIONS(613), - [anon_sym_Private] = ACTIONS(613), - [anon_sym_private] = ACTIONS(613), - [anon_sym_PRIVATE] = ACTIONS(613), - [anon_sym_Public] = ACTIONS(613), - [anon_sym_public] = ACTIONS(613), - [anon_sym_PUBLIC] = ACTIONS(613), - [anon_sym_Remote] = ACTIONS(613), - [anon_sym_remote] = ACTIONS(613), - [anon_sym_REMOTE] = ACTIONS(613), - [anon_sym_Static] = ACTIONS(613), - [anon_sym_static] = ACTIONS(613), - [anon_sym_STATIC] = ACTIONS(613), + [anon_sym_Abstract] = ACTIONS(4993), + [anon_sym_abstract] = ACTIONS(4993), + [anon_sym_ABSTRACT] = ACTIONS(4993), + [anon_sym_Component] = ACTIONS(4993), + [anon_sym_component] = ACTIONS(4993), + [anon_sym_COMPONENT] = ACTIONS(4993), + [anon_sym_Debugger] = ACTIONS(4993), + [anon_sym_debugger] = ACTIONS(4993), + [anon_sym_DEBUGGER] = ACTIONS(4993), + [anon_sym_Final] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_FINAL] = ACTIONS(4993), + [anon_sym_Function] = ACTIONS(4855), + [anon_sym_function] = ACTIONS(4855), + [anon_sym_FUNCTION] = ACTIONS(4855), + [anon_sym_Include] = ACTIONS(4993), + [anon_sym_include] = ACTIONS(4993), + [anon_sym_INCLUDE] = ACTIONS(4993), + [anon_sym_New] = ACTIONS(5001), + [anon_sym_new] = ACTIONS(5001), + [anon_sym_NEW] = ACTIONS(5001), + [anon_sym_Package] = ACTIONS(4993), + [anon_sym_package] = ACTIONS(4993), + [anon_sym_PACKAGE] = ACTIONS(4993), + [anon_sym_Private] = ACTIONS(4993), + [anon_sym_private] = ACTIONS(4993), + [anon_sym_PRIVATE] = ACTIONS(4993), + [anon_sym_Public] = ACTIONS(4993), + [anon_sym_public] = ACTIONS(4993), + [anon_sym_PUBLIC] = ACTIONS(4993), + [anon_sym_Remote] = ACTIONS(4993), + [anon_sym_remote] = ACTIONS(4993), + [anon_sym_REMOTE] = ACTIONS(4993), + [anon_sym_Static] = ACTIONS(4993), + [anon_sym_static] = ACTIONS(4993), + [anon_sym_STATIC] = ACTIONS(4993), [sym__java_block_open] = ACTIONS(109), [sym__static_type_prefix] = ACTIONS(111), }, - [STATE(1956)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(746), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), + [STATE(1967)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3778), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1957)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3751), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1968)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(731), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1969)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3813), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -320052,118 +321858,768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1958)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3753), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1970)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(732), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1971)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(733), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1972)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(734), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1973)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(735), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1974)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(736), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1975)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3830), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -320182,248 +322638,768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1959)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(747), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), + [STATE(1976)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3825), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1960)] = { - [sym_parenthesized_expression] = STATE(2252), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5135), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2611), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2252), - [sym_subscript_expression] = STATE(2252), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5135), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1960), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2603), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2603), - [sym_undefined] = STATE(2603), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(3886), + [STATE(1977)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(737), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1978)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(738), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1979)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(739), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1980)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(740), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1981)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3748), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(3888), - [anon_sym_query] = ACTIONS(3888), - [anon_sym_QUERY] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -320442,118 +323418,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(3888), - [anon_sym_set] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(3888), - [anon_sym_QueryExecute] = ACTIONS(3894), - [anon_sym_queryexecute] = ACTIONS(3894), - [anon_sym_QUERYEXECUTE] = ACTIONS(3894), - [anon_sym_queryExecute] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(3888), - [anon_sym_abstract] = ACTIONS(3888), - [anon_sym_ABSTRACT] = ACTIONS(3888), - [anon_sym_Component] = ACTIONS(3888), - [anon_sym_component] = ACTIONS(3888), - [anon_sym_COMPONENT] = ACTIONS(3888), - [anon_sym_Debugger] = ACTIONS(3888), - [anon_sym_debugger] = ACTIONS(3888), - [anon_sym_DEBUGGER] = ACTIONS(3888), - [anon_sym_Final] = ACTIONS(3888), - [anon_sym_final] = ACTIONS(3888), - [anon_sym_FINAL] = ACTIONS(3888), - [anon_sym_Function] = ACTIONS(3261), - [anon_sym_function] = ACTIONS(3261), - [anon_sym_FUNCTION] = ACTIONS(3261), - [anon_sym_Include] = ACTIONS(3888), - [anon_sym_include] = ACTIONS(3888), - [anon_sym_INCLUDE] = ACTIONS(3888), - [anon_sym_New] = ACTIONS(3896), - [anon_sym_new] = ACTIONS(3896), - [anon_sym_NEW] = ACTIONS(3896), - [anon_sym_Package] = ACTIONS(3888), - [anon_sym_package] = ACTIONS(3888), - [anon_sym_PACKAGE] = ACTIONS(3888), - [anon_sym_Private] = ACTIONS(3888), - [anon_sym_private] = ACTIONS(3888), - [anon_sym_PRIVATE] = ACTIONS(3888), - [anon_sym_Public] = ACTIONS(3888), - [anon_sym_public] = ACTIONS(3888), - [anon_sym_PUBLIC] = ACTIONS(3888), - [anon_sym_Remote] = ACTIONS(3888), - [anon_sym_remote] = ACTIONS(3888), - [anon_sym_REMOTE] = ACTIONS(3888), - [anon_sym_Static] = ACTIONS(3888), - [anon_sym_static] = ACTIONS(3888), - [anon_sym_STATIC] = ACTIONS(3888), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1961)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3717), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1982)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3783), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -320572,118 +323548,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1962)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3764), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1983)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(741), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1984)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(742), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1985)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(743), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(1986)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3755), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -320702,248 +324068,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1963)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(749), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), + [STATE(1987)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3836), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1964)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3746), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1988)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3762), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1989)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3751), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1990)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3766), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(447), + [aux_sym_number_token2] = ACTIONS(1768), + [anon_sym_This] = ACTIONS(449), + [anon_sym_this] = ACTIONS(449), + [anon_sym_THIS] = ACTIONS(449), + [anon_sym_Super] = ACTIONS(451), + [anon_sym_super] = ACTIONS(451), + [anon_sym_SUPER] = ACTIONS(451), + [anon_sym_True] = ACTIONS(453), + [anon_sym_true] = ACTIONS(453), + [anon_sym_TRUE] = ACTIONS(453), + [anon_sym_False] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_FALSE] = ACTIONS(455), + [anon_sym_Null] = ACTIONS(457), + [anon_sym_null] = ACTIONS(457), + [anon_sym_NULL] = ACTIONS(457), + [anon_sym_Undefined] = ACTIONS(459), + [anon_sym_undefined] = ACTIONS(459), + [anon_sym_UNDEFINED] = ACTIONS(459), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(463), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), + }, + [STATE(1991)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -320962,118 +324718,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1965)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3762), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1992)] = { + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3770), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5230), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3577), + [sym_new_expression] = STATE(3707), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3937), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5230), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1944), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3634), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3634), + [sym_undefined] = STATE(3634), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4691), + [anon_sym_query] = ACTIONS(4691), + [anon_sym_QUERY] = ACTIONS(4691), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4693), + [anon_sym_DASH_DASH] = ACTIONS(4693), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -321092,118 +324848,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4691), + [anon_sym_set] = ACTIONS(4691), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4691), + [anon_sym_QueryExecute] = ACTIONS(4695), + [anon_sym_queryexecute] = ACTIONS(4695), + [anon_sym_QUERYEXECUTE] = ACTIONS(4695), + [anon_sym_queryExecute] = ACTIONS(4695), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4691), + [anon_sym_abstract] = ACTIONS(4691), + [anon_sym_ABSTRACT] = ACTIONS(4691), + [anon_sym_Component] = ACTIONS(4691), + [anon_sym_component] = ACTIONS(4691), + [anon_sym_COMPONENT] = ACTIONS(4691), + [anon_sym_Debugger] = ACTIONS(4691), + [anon_sym_debugger] = ACTIONS(4691), + [anon_sym_DEBUGGER] = ACTIONS(4691), + [anon_sym_Final] = ACTIONS(4691), + [anon_sym_final] = ACTIONS(4691), + [anon_sym_FINAL] = ACTIONS(4691), + [anon_sym_Function] = ACTIONS(4697), + [anon_sym_function] = ACTIONS(4697), + [anon_sym_FUNCTION] = ACTIONS(4697), + [anon_sym_Include] = ACTIONS(4691), + [anon_sym_include] = ACTIONS(4691), + [anon_sym_INCLUDE] = ACTIONS(4691), + [anon_sym_New] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_NEW] = ACTIONS(4699), + [anon_sym_Package] = ACTIONS(4691), + [anon_sym_package] = ACTIONS(4691), + [anon_sym_PACKAGE] = ACTIONS(4691), + [anon_sym_Private] = ACTIONS(4691), + [anon_sym_private] = ACTIONS(4691), + [anon_sym_PRIVATE] = ACTIONS(4691), + [anon_sym_Public] = ACTIONS(4691), + [anon_sym_public] = ACTIONS(4691), + [anon_sym_PUBLIC] = ACTIONS(4691), + [anon_sym_Remote] = ACTIONS(4691), + [anon_sym_remote] = ACTIONS(4691), + [anon_sym_REMOTE] = ACTIONS(4691), + [anon_sym_Static] = ACTIONS(4691), + [anon_sym_static] = ACTIONS(4691), + [anon_sym_STATIC] = ACTIONS(4691), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1966)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3772), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1993)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3765), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -321222,118 +324978,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1967)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3728), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1994)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3769), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -321352,118 +325108,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1968)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1995)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3772), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -321482,118 +325238,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1969)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3752), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1996)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3774), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -321612,118 +325368,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1970)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3785), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), + [STATE(1997)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3775), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -321742,118 +325498,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1971)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3774), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1998)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -321872,118 +325628,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1972)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3779), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(1999)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3776), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -322002,118 +325758,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1973)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3776), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(2000)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3827), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -322132,118 +325888,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1974)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3702), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(2001)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3744), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -322262,118 +326018,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1975)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(2002)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(744), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(2003)] = { + [sym_parenthesized_expression] = STATE(390), + [sym_expression] = STATE(3865), + [sym_primary_expression] = STATE(679), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(698), + [sym_new_expression] = STATE(689), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(390), + [sym_subscript_expression] = STATE(390), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(697), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(697), + [sym_undefined] = STATE(697), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(3680), + [sym_hash_expression] = STATE(3680), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(5003), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(5007), + [anon_sym_query] = ACTIONS(5007), + [anon_sym_QUERY] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(5007), + [anon_sym_set] = ACTIONS(5007), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(5009), + [anon_sym_export] = ACTIONS(5007), + [anon_sym_QueryExecute] = ACTIONS(5011), + [anon_sym_queryexecute] = ACTIONS(5011), + [anon_sym_QUERYEXECUTE] = ACTIONS(5011), + [anon_sym_queryExecute] = ACTIONS(5011), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(5007), + [anon_sym_abstract] = ACTIONS(5007), + [anon_sym_ABSTRACT] = ACTIONS(5007), + [anon_sym_Component] = ACTIONS(5007), + [anon_sym_component] = ACTIONS(5007), + [anon_sym_COMPONENT] = ACTIONS(5007), + [anon_sym_Debugger] = ACTIONS(5007), + [anon_sym_debugger] = ACTIONS(5007), + [anon_sym_DEBUGGER] = ACTIONS(5007), + [anon_sym_Final] = ACTIONS(5007), + [anon_sym_final] = ACTIONS(5007), + [anon_sym_FINAL] = ACTIONS(5007), + [anon_sym_Function] = ACTIONS(5013), + [anon_sym_function] = ACTIONS(5013), + [anon_sym_FUNCTION] = ACTIONS(5013), + [anon_sym_Include] = ACTIONS(5007), + [anon_sym_include] = ACTIONS(5007), + [anon_sym_INCLUDE] = ACTIONS(5007), + [anon_sym_New] = ACTIONS(5015), + [anon_sym_new] = ACTIONS(5015), + [anon_sym_NEW] = ACTIONS(5015), + [anon_sym_Package] = ACTIONS(5007), + [anon_sym_package] = ACTIONS(5007), + [anon_sym_PACKAGE] = ACTIONS(5007), + [anon_sym_Private] = ACTIONS(5007), + [anon_sym_private] = ACTIONS(5007), + [anon_sym_PRIVATE] = ACTIONS(5007), + [anon_sym_Public] = ACTIONS(5007), + [anon_sym_public] = ACTIONS(5007), + [anon_sym_PUBLIC] = ACTIONS(5007), + [anon_sym_Remote] = ACTIONS(5007), + [anon_sym_remote] = ACTIONS(5007), + [anon_sym_REMOTE] = ACTIONS(5007), + [anon_sym_Static] = ACTIONS(5007), + [anon_sym_static] = ACTIONS(5007), + [anon_sym_STATIC] = ACTIONS(5007), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(2004)] = { + [sym_parenthesized_expression] = STATE(390), + [sym_expression] = STATE(3865), + [sym_primary_expression] = STATE(680), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(698), + [sym_new_expression] = STATE(681), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(390), + [sym_subscript_expression] = STATE(390), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(697), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(697), + [sym_undefined] = STATE(697), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(3680), + [sym_hash_expression] = STATE(3680), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(5003), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(5007), + [anon_sym_query] = ACTIONS(5007), + [anon_sym_QUERY] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(5007), + [anon_sym_set] = ACTIONS(5007), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(5009), + [anon_sym_export] = ACTIONS(5007), + [anon_sym_QueryExecute] = ACTIONS(5011), + [anon_sym_queryexecute] = ACTIONS(5011), + [anon_sym_QUERYEXECUTE] = ACTIONS(5011), + [anon_sym_queryExecute] = ACTIONS(5011), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(5007), + [anon_sym_abstract] = ACTIONS(5007), + [anon_sym_ABSTRACT] = ACTIONS(5007), + [anon_sym_Component] = ACTIONS(5007), + [anon_sym_component] = ACTIONS(5007), + [anon_sym_COMPONENT] = ACTIONS(5007), + [anon_sym_Debugger] = ACTIONS(5007), + [anon_sym_debugger] = ACTIONS(5007), + [anon_sym_DEBUGGER] = ACTIONS(5007), + [anon_sym_Final] = ACTIONS(5007), + [anon_sym_final] = ACTIONS(5007), + [anon_sym_FINAL] = ACTIONS(5007), + [anon_sym_Function] = ACTIONS(5013), + [anon_sym_function] = ACTIONS(5013), + [anon_sym_FUNCTION] = ACTIONS(5013), + [anon_sym_Include] = ACTIONS(5007), + [anon_sym_include] = ACTIONS(5007), + [anon_sym_INCLUDE] = ACTIONS(5007), + [anon_sym_New] = ACTIONS(5015), + [anon_sym_new] = ACTIONS(5015), + [anon_sym_NEW] = ACTIONS(5015), + [anon_sym_Package] = ACTIONS(5007), + [anon_sym_package] = ACTIONS(5007), + [anon_sym_PACKAGE] = ACTIONS(5007), + [anon_sym_Private] = ACTIONS(5007), + [anon_sym_private] = ACTIONS(5007), + [anon_sym_PRIVATE] = ACTIONS(5007), + [anon_sym_Public] = ACTIONS(5007), + [anon_sym_public] = ACTIONS(5007), + [anon_sym_PUBLIC] = ACTIONS(5007), + [anon_sym_Remote] = ACTIONS(5007), + [anon_sym_remote] = ACTIONS(5007), + [anon_sym_REMOTE] = ACTIONS(5007), + [anon_sym_Static] = ACTIONS(5007), + [anon_sym_static] = ACTIONS(5007), + [anon_sym_STATIC] = ACTIONS(5007), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(2005)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3780), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -322392,118 +326538,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1976)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3789), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(2006)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2534), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4925), + [anon_sym_query] = ACTIONS(4925), + [anon_sym_QUERY] = ACTIONS(4925), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -322522,118 +326668,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4925), + [anon_sym_set] = ACTIONS(4925), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4925), + [anon_sym_QueryExecute] = ACTIONS(4927), + [anon_sym_queryexecute] = ACTIONS(4927), + [anon_sym_QUERYEXECUTE] = ACTIONS(4927), + [anon_sym_queryExecute] = ACTIONS(4927), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4925), + [anon_sym_abstract] = ACTIONS(4925), + [anon_sym_ABSTRACT] = ACTIONS(4925), + [anon_sym_Component] = ACTIONS(4925), + [anon_sym_component] = ACTIONS(4925), + [anon_sym_COMPONENT] = ACTIONS(4925), + [anon_sym_Debugger] = ACTIONS(4925), + [anon_sym_debugger] = ACTIONS(4925), + [anon_sym_DEBUGGER] = ACTIONS(4925), + [anon_sym_Final] = ACTIONS(4925), + [anon_sym_final] = ACTIONS(4925), + [anon_sym_FINAL] = ACTIONS(4925), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4925), + [anon_sym_include] = ACTIONS(4925), + [anon_sym_INCLUDE] = ACTIONS(4925), + [anon_sym_New] = ACTIONS(5017), + [anon_sym_new] = ACTIONS(5017), + [anon_sym_NEW] = ACTIONS(5017), + [anon_sym_Package] = ACTIONS(4925), + [anon_sym_package] = ACTIONS(4925), + [anon_sym_PACKAGE] = ACTIONS(4925), + [anon_sym_Private] = ACTIONS(4925), + [anon_sym_private] = ACTIONS(4925), + [anon_sym_PRIVATE] = ACTIONS(4925), + [anon_sym_Public] = ACTIONS(4925), + [anon_sym_public] = ACTIONS(4925), + [anon_sym_PUBLIC] = ACTIONS(4925), + [anon_sym_Remote] = ACTIONS(4925), + [anon_sym_remote] = ACTIONS(4925), + [anon_sym_REMOTE] = ACTIONS(4925), + [anon_sym_Static] = ACTIONS(4925), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_STATIC] = ACTIONS(4925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1977)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3765), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(2007)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4857), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4925), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_Query] = ACTIONS(4925), + [anon_sym_query] = ACTIONS(4925), + [anon_sym_QUERY] = ACTIONS(4925), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -322652,248 +326798,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4925), + [anon_sym_set] = ACTIONS(4925), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4925), + [anon_sym_QueryExecute] = ACTIONS(4927), + [anon_sym_queryexecute] = ACTIONS(4927), + [anon_sym_QUERYEXECUTE] = ACTIONS(4927), + [anon_sym_queryExecute] = ACTIONS(4927), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4925), + [anon_sym_abstract] = ACTIONS(4925), + [anon_sym_ABSTRACT] = ACTIONS(4925), + [anon_sym_Component] = ACTIONS(4925), + [anon_sym_component] = ACTIONS(4925), + [anon_sym_COMPONENT] = ACTIONS(4925), + [anon_sym_Debugger] = ACTIONS(4925), + [anon_sym_debugger] = ACTIONS(4925), + [anon_sym_DEBUGGER] = ACTIONS(4925), + [anon_sym_Final] = ACTIONS(4925), + [anon_sym_final] = ACTIONS(4925), + [anon_sym_FINAL] = ACTIONS(4925), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4925), + [anon_sym_include] = ACTIONS(4925), + [anon_sym_INCLUDE] = ACTIONS(4925), + [anon_sym_New] = ACTIONS(5017), + [anon_sym_new] = ACTIONS(5017), + [anon_sym_NEW] = ACTIONS(5017), + [anon_sym_Package] = ACTIONS(4925), + [anon_sym_package] = ACTIONS(4925), + [anon_sym_PACKAGE] = ACTIONS(4925), + [anon_sym_Private] = ACTIONS(4925), + [anon_sym_private] = ACTIONS(4925), + [anon_sym_PRIVATE] = ACTIONS(4925), + [anon_sym_Public] = ACTIONS(4925), + [anon_sym_public] = ACTIONS(4925), + [anon_sym_PUBLIC] = ACTIONS(4925), + [anon_sym_Remote] = ACTIONS(4925), + [anon_sym_remote] = ACTIONS(4925), + [anon_sym_REMOTE] = ACTIONS(4925), + [anon_sym_Static] = ACTIONS(4925), + [anon_sym_static] = ACTIONS(4925), + [anon_sym_STATIC] = ACTIONS(4925), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1978)] = { - [sym_parenthesized_expression] = STATE(2268), - [sym_expression] = STATE(3267), - [sym_primary_expression] = STATE(2680), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2800), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5260), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2765), - [sym_new_expression] = STATE(2800), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2800), - [sym_member_expression] = STATE(2268), - [sym_subscript_expression] = STATE(2268), - [sym_assignment_expression] = STATE(2800), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2800), - [sym__destructuring_pattern] = STATE(5260), - [sym_ternary_expression] = STATE(2800), - [sym_elvis_expression] = STATE(2800), - [sym_binary_expression] = STATE(2800), - [sym_unary_operator] = STATE(1493), - [sym_unary_expression] = STATE(2800), - [sym_update_expression] = STATE(2800), - [sym_string] = STATE(2704), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2704), - [sym_undefined] = STATE(2704), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(2693), - [sym_hash_expression] = STATE(2693), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2800), - [sym_identifier] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4783), - [anon_sym_query] = ACTIONS(4783), - [anon_sym_QUERY] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4785), - [anon_sym_DASH_DASH] = ACTIONS(4785), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), - [anon_sym_get] = ACTIONS(4783), - [anon_sym_set] = ACTIONS(4783), - [anon_sym_POUND] = ACTIONS(4317), - [sym_hash_empty] = ACTIONS(4319), - [anon_sym_export] = ACTIONS(4783), - [anon_sym_QueryExecute] = ACTIONS(4787), - [anon_sym_queryexecute] = ACTIONS(4787), - [anon_sym_QUERYEXECUTE] = ACTIONS(4787), - [anon_sym_queryExecute] = ACTIONS(4787), - [anon_sym_BQUOTE] = ACTIONS(4323), - [anon_sym_Abstract] = ACTIONS(4783), - [anon_sym_abstract] = ACTIONS(4783), - [anon_sym_ABSTRACT] = ACTIONS(4783), - [anon_sym_Component] = ACTIONS(4783), - [anon_sym_component] = ACTIONS(4783), - [anon_sym_COMPONENT] = ACTIONS(4783), - [anon_sym_Debugger] = ACTIONS(4783), - [anon_sym_debugger] = ACTIONS(4783), - [anon_sym_DEBUGGER] = ACTIONS(4783), - [anon_sym_Final] = ACTIONS(4783), - [anon_sym_final] = ACTIONS(4783), - [anon_sym_FINAL] = ACTIONS(4783), - [anon_sym_Function] = ACTIONS(4789), - [anon_sym_function] = ACTIONS(4789), - [anon_sym_FUNCTION] = ACTIONS(4789), - [anon_sym_Include] = ACTIONS(4783), - [anon_sym_include] = ACTIONS(4783), - [anon_sym_INCLUDE] = ACTIONS(4783), - [anon_sym_New] = ACTIONS(4791), - [anon_sym_new] = ACTIONS(4791), - [anon_sym_NEW] = ACTIONS(4791), - [anon_sym_Package] = ACTIONS(4783), - [anon_sym_package] = ACTIONS(4783), - [anon_sym_PACKAGE] = ACTIONS(4783), - [anon_sym_Private] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4783), - [anon_sym_PRIVATE] = ACTIONS(4783), - [anon_sym_Public] = ACTIONS(4783), - [anon_sym_public] = ACTIONS(4783), - [anon_sym_PUBLIC] = ACTIONS(4783), - [anon_sym_Remote] = ACTIONS(4783), - [anon_sym_remote] = ACTIONS(4783), - [anon_sym_REMOTE] = ACTIONS(4783), - [anon_sym_Static] = ACTIONS(4783), - [anon_sym_static] = ACTIONS(4783), - [anon_sym_STATIC] = ACTIONS(4783), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1979)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3758), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(2008)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2463), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2534), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4701), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4705), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4705), + [anon_sym_query] = ACTIONS(4705), + [anon_sym_QUERY] = ACTIONS(4705), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -322912,378 +326928,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4705), + [anon_sym_set] = ACTIONS(4705), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4705), + [anon_sym_QueryExecute] = ACTIONS(4707), + [anon_sym_queryexecute] = ACTIONS(4707), + [anon_sym_QUERYEXECUTE] = ACTIONS(4707), + [anon_sym_queryExecute] = ACTIONS(4707), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4705), + [anon_sym_abstract] = ACTIONS(4705), + [anon_sym_ABSTRACT] = ACTIONS(4705), + [anon_sym_Component] = ACTIONS(4705), + [anon_sym_component] = ACTIONS(4705), + [anon_sym_COMPONENT] = ACTIONS(4705), + [anon_sym_Debugger] = ACTIONS(4705), + [anon_sym_debugger] = ACTIONS(4705), + [anon_sym_DEBUGGER] = ACTIONS(4705), + [anon_sym_Final] = ACTIONS(4705), + [anon_sym_final] = ACTIONS(4705), + [anon_sym_FINAL] = ACTIONS(4705), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4705), + [anon_sym_include] = ACTIONS(4705), + [anon_sym_INCLUDE] = ACTIONS(4705), + [anon_sym_New] = ACTIONS(5019), + [anon_sym_new] = ACTIONS(5019), + [anon_sym_NEW] = ACTIONS(5019), + [anon_sym_Package] = ACTIONS(4705), + [anon_sym_package] = ACTIONS(4705), + [anon_sym_PACKAGE] = ACTIONS(4705), + [anon_sym_Private] = ACTIONS(4705), + [anon_sym_private] = ACTIONS(4705), + [anon_sym_PRIVATE] = ACTIONS(4705), + [anon_sym_Public] = ACTIONS(4705), + [anon_sym_public] = ACTIONS(4705), + [anon_sym_PUBLIC] = ACTIONS(4705), + [anon_sym_Remote] = ACTIONS(4705), + [anon_sym_remote] = ACTIONS(4705), + [anon_sym_REMOTE] = ACTIONS(4705), + [anon_sym_Static] = ACTIONS(4705), + [anon_sym_static] = ACTIONS(4705), + [anon_sym_STATIC] = ACTIONS(4705), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1980)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2558), - [sym_hash_expression] = STATE(2558), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4977), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1981)] = { - [sym_parenthesized_expression] = STATE(2153), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(2438), - [sym_object] = STATE(2579), - [sym_object_pattern] = STATE(2504), - [sym_array] = STATE(2579), - [sym_ordered_struct] = STATE(2579), - [sym_array_pattern] = STATE(5082), - [sym_function_expression] = STATE(2579), - [sym_arrow_function] = STATE(2579), - [sym_call_expression] = STATE(2537), - [sym_new_expression] = STATE(2504), - [sym_prefixed_type] = STATE(2579), - [sym_function_listener_expression] = STATE(2504), - [sym_member_expression] = STATE(2153), - [sym_subscript_expression] = STATE(2153), - [sym_assignment_expression] = STATE(2504), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2504), - [sym__destructuring_pattern] = STATE(5082), - [sym_ternary_expression] = STATE(2504), - [sym_elvis_expression] = STATE(2504), - [sym_binary_expression] = STATE(2504), - [sym_unary_operator] = STATE(1762), - [sym_unary_expression] = STATE(2504), - [sym_update_expression] = STATE(2504), - [sym_string] = STATE(2562), - [sym_regex] = STATE(2579), - [sym_number] = STATE(2579), - [sym_this] = STATE(2579), - [sym_super] = STATE(2579), - [sym_true] = STATE(2579), - [sym_false] = STATE(2579), - [sym_null] = STATE(2562), - [sym_undefined] = STATE(2562), - [sym_java_class_block] = STATE(2579), - [sym_formal_parameters] = STATE(4869), - [sym__hash_always_eval] = STATE(2560), - [sym_hash_expression] = STATE(2560), - [sym_template_string] = STATE(2579), - [sym_query_expression] = STATE(2504), - [sym_identifier] = ACTIONS(4869), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_let] = ACTIONS(4871), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_Query] = ACTIONS(4871), - [anon_sym_query] = ACTIONS(4871), - [anon_sym_QUERY] = ACTIONS(4871), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4873), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(31), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(35), - [aux_sym_number_token2] = ACTIONS(37), - [anon_sym_This] = ACTIONS(39), - [anon_sym_this] = ACTIONS(39), - [anon_sym_THIS] = ACTIONS(39), - [anon_sym_Super] = ACTIONS(41), - [anon_sym_super] = ACTIONS(41), - [anon_sym_SUPER] = ACTIONS(41), - [anon_sym_True] = ACTIONS(43), - [anon_sym_true] = ACTIONS(43), - [anon_sym_TRUE] = ACTIONS(43), - [anon_sym_False] = ACTIONS(45), - [anon_sym_false] = ACTIONS(45), - [anon_sym_FALSE] = ACTIONS(45), - [anon_sym_Null] = ACTIONS(47), - [anon_sym_null] = ACTIONS(47), - [anon_sym_NULL] = ACTIONS(47), - [anon_sym_Undefined] = ACTIONS(49), - [anon_sym_undefined] = ACTIONS(49), - [anon_sym_UNDEFINED] = ACTIONS(49), - [anon_sym_get] = ACTIONS(4871), - [anon_sym_set] = ACTIONS(4871), - [anon_sym_POUND] = ACTIONS(51), - [sym_hash_empty] = ACTIONS(4991), - [anon_sym_export] = ACTIONS(4871), - [anon_sym_QueryExecute] = ACTIONS(4877), - [anon_sym_queryexecute] = ACTIONS(4877), - [anon_sym_QUERYEXECUTE] = ACTIONS(4877), - [anon_sym_queryExecute] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_Abstract] = ACTIONS(4871), - [anon_sym_abstract] = ACTIONS(4871), - [anon_sym_ABSTRACT] = ACTIONS(4871), - [anon_sym_Component] = ACTIONS(4871), - [anon_sym_component] = ACTIONS(4871), - [anon_sym_COMPONENT] = ACTIONS(4871), - [anon_sym_Debugger] = ACTIONS(4871), - [anon_sym_debugger] = ACTIONS(4871), - [anon_sym_DEBUGGER] = ACTIONS(4871), - [anon_sym_Final] = ACTIONS(4871), - [anon_sym_final] = ACTIONS(4871), - [anon_sym_FINAL] = ACTIONS(4871), - [anon_sym_Function] = ACTIONS(4879), - [anon_sym_function] = ACTIONS(4879), - [anon_sym_FUNCTION] = ACTIONS(4879), - [anon_sym_Include] = ACTIONS(4871), - [anon_sym_include] = ACTIONS(4871), - [anon_sym_INCLUDE] = ACTIONS(4871), - [anon_sym_New] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_NEW] = ACTIONS(4881), - [anon_sym_Package] = ACTIONS(4871), - [anon_sym_package] = ACTIONS(4871), - [anon_sym_PACKAGE] = ACTIONS(4871), - [anon_sym_Private] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4871), - [anon_sym_PRIVATE] = ACTIONS(4871), - [anon_sym_Public] = ACTIONS(4871), - [anon_sym_public] = ACTIONS(4871), - [anon_sym_PUBLIC] = ACTIONS(4871), - [anon_sym_Remote] = ACTIONS(4871), - [anon_sym_remote] = ACTIONS(4871), - [anon_sym_REMOTE] = ACTIONS(4871), - [anon_sym_Static] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4871), - [anon_sym_STATIC] = ACTIONS(4871), - [sym__java_block_open] = ACTIONS(109), - [sym__static_type_prefix] = ACTIONS(111), - }, - [STATE(1982)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3748), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [STATE(2009)] = { + [sym_parenthesized_expression] = STATE(2160), + [sym_expression] = STATE(3860), + [sym_primary_expression] = STATE(2474), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(2613), + [sym_new_expression] = STATE(2539), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2160), + [sym_subscript_expression] = STATE(2160), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2457), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(2457), + [sym_undefined] = STATE(2457), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4887), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4701), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4705), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4705), + [anon_sym_query] = ACTIONS(4705), + [anon_sym_QUERY] = ACTIONS(4705), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -323302,248 +327058,1028 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4705), + [anon_sym_set] = ACTIONS(4705), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4705), + [anon_sym_QueryExecute] = ACTIONS(4707), + [anon_sym_queryexecute] = ACTIONS(4707), + [anon_sym_QUERYEXECUTE] = ACTIONS(4707), + [anon_sym_queryExecute] = ACTIONS(4707), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4705), + [anon_sym_abstract] = ACTIONS(4705), + [anon_sym_ABSTRACT] = ACTIONS(4705), + [anon_sym_Component] = ACTIONS(4705), + [anon_sym_component] = ACTIONS(4705), + [anon_sym_COMPONENT] = ACTIONS(4705), + [anon_sym_Debugger] = ACTIONS(4705), + [anon_sym_debugger] = ACTIONS(4705), + [anon_sym_DEBUGGER] = ACTIONS(4705), + [anon_sym_Final] = ACTIONS(4705), + [anon_sym_final] = ACTIONS(4705), + [anon_sym_FINAL] = ACTIONS(4705), + [anon_sym_Function] = ACTIONS(817), + [anon_sym_function] = ACTIONS(817), + [anon_sym_FUNCTION] = ACTIONS(817), + [anon_sym_Include] = ACTIONS(4705), + [anon_sym_include] = ACTIONS(4705), + [anon_sym_INCLUDE] = ACTIONS(4705), + [anon_sym_New] = ACTIONS(5019), + [anon_sym_new] = ACTIONS(5019), + [anon_sym_NEW] = ACTIONS(5019), + [anon_sym_Package] = ACTIONS(4705), + [anon_sym_package] = ACTIONS(4705), + [anon_sym_PACKAGE] = ACTIONS(4705), + [anon_sym_Private] = ACTIONS(4705), + [anon_sym_private] = ACTIONS(4705), + [anon_sym_PRIVATE] = ACTIONS(4705), + [anon_sym_Public] = ACTIONS(4705), + [anon_sym_public] = ACTIONS(4705), + [anon_sym_PUBLIC] = ACTIONS(4705), + [anon_sym_Remote] = ACTIONS(4705), + [anon_sym_remote] = ACTIONS(4705), + [anon_sym_REMOTE] = ACTIONS(4705), + [anon_sym_Static] = ACTIONS(4705), + [anon_sym_static] = ACTIONS(4705), + [anon_sym_STATIC] = ACTIONS(4705), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1983)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4940), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4809), - [anon_sym_LBRACE] = ACTIONS(4811), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4813), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_Query] = ACTIONS(4813), - [anon_sym_query] = ACTIONS(4813), - [anon_sym_QUERY] = ACTIONS(4813), + [STATE(2010)] = { + [sym_parenthesized_expression] = STATE(2326), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(2730), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2702), + [sym_new_expression] = STATE(2705), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2326), + [sym_subscript_expression] = STATE(2326), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2795), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2795), + [sym_undefined] = STATE(2795), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(3729), + [sym_hash_expression] = STATE(3729), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4897), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4897), + [anon_sym_query] = ACTIONS(4897), + [anon_sym_QUERY] = ACTIONS(4897), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4897), + [anon_sym_set] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4899), + [anon_sym_export] = ACTIONS(4897), + [anon_sym_QueryExecute] = ACTIONS(4901), + [anon_sym_queryexecute] = ACTIONS(4901), + [anon_sym_QUERYEXECUTE] = ACTIONS(4901), + [anon_sym_queryExecute] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4897), + [anon_sym_abstract] = ACTIONS(4897), + [anon_sym_ABSTRACT] = ACTIONS(4897), + [anon_sym_Component] = ACTIONS(4897), + [anon_sym_component] = ACTIONS(4897), + [anon_sym_COMPONENT] = ACTIONS(4897), + [anon_sym_Debugger] = ACTIONS(4897), + [anon_sym_debugger] = ACTIONS(4897), + [anon_sym_DEBUGGER] = ACTIONS(4897), + [anon_sym_Final] = ACTIONS(4897), + [anon_sym_final] = ACTIONS(4897), + [anon_sym_FINAL] = ACTIONS(4897), + [anon_sym_Function] = ACTIONS(4903), + [anon_sym_function] = ACTIONS(4903), + [anon_sym_FUNCTION] = ACTIONS(4903), + [anon_sym_Include] = ACTIONS(4897), + [anon_sym_include] = ACTIONS(4897), + [anon_sym_INCLUDE] = ACTIONS(4897), + [anon_sym_New] = ACTIONS(5021), + [anon_sym_new] = ACTIONS(5021), + [anon_sym_NEW] = ACTIONS(5021), + [anon_sym_Package] = ACTIONS(4897), + [anon_sym_package] = ACTIONS(4897), + [anon_sym_PACKAGE] = ACTIONS(4897), + [anon_sym_Private] = ACTIONS(4897), + [anon_sym_private] = ACTIONS(4897), + [anon_sym_PRIVATE] = ACTIONS(4897), + [anon_sym_Public] = ACTIONS(4897), + [anon_sym_public] = ACTIONS(4897), + [anon_sym_PUBLIC] = ACTIONS(4897), + [anon_sym_Remote] = ACTIONS(4897), + [anon_sym_remote] = ACTIONS(4897), + [anon_sym_REMOTE] = ACTIONS(4897), + [anon_sym_Static] = ACTIONS(4897), + [anon_sym_static] = ACTIONS(4897), + [anon_sym_STATIC] = ACTIONS(4897), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(2011)] = { + [sym_parenthesized_expression] = STATE(2326), + [sym_expression] = STATE(3859), + [sym_primary_expression] = STATE(2732), + [sym_object] = STATE(3036), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3036), + [sym_ordered_struct] = STATE(3036), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3036), + [sym_arrow_function] = STATE(3036), + [sym_call_expression] = STATE(2702), + [sym_new_expression] = STATE(2733), + [sym_prefixed_type] = STATE(3036), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2326), + [sym_subscript_expression] = STATE(2326), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2795), + [sym_regex] = STATE(3036), + [sym_number] = STATE(3036), + [sym_this] = STATE(3036), + [sym_super] = STATE(3036), + [sym_true] = STATE(3036), + [sym_false] = STATE(3036), + [sym_null] = STATE(2795), + [sym_undefined] = STATE(2795), + [sym_java_class_block] = STATE(3036), + [sym_formal_parameters] = STATE(4925), + [sym__hash_always_eval] = STATE(3729), + [sym_hash_expression] = STATE(3729), + [sym_template_string] = STATE(3036), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_let] = ACTIONS(4897), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_Query] = ACTIONS(4897), + [anon_sym_query] = ACTIONS(4897), + [anon_sym_QUERY] = ACTIONS(4897), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4433), + [aux_sym_number_token2] = ACTIONS(4435), + [anon_sym_This] = ACTIONS(4437), + [anon_sym_this] = ACTIONS(4437), + [anon_sym_THIS] = ACTIONS(4437), + [anon_sym_Super] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_SUPER] = ACTIONS(4439), + [anon_sym_True] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(4441), + [anon_sym_TRUE] = ACTIONS(4441), + [anon_sym_False] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_FALSE] = ACTIONS(4443), + [anon_sym_Null] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_NULL] = ACTIONS(1770), + [anon_sym_Undefined] = ACTIONS(1772), + [anon_sym_undefined] = ACTIONS(1772), + [anon_sym_UNDEFINED] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(4897), + [anon_sym_set] = ACTIONS(4897), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4899), + [anon_sym_export] = ACTIONS(4897), + [anon_sym_QueryExecute] = ACTIONS(4901), + [anon_sym_queryexecute] = ACTIONS(4901), + [anon_sym_QUERYEXECUTE] = ACTIONS(4901), + [anon_sym_queryExecute] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4451), + [anon_sym_Abstract] = ACTIONS(4897), + [anon_sym_abstract] = ACTIONS(4897), + [anon_sym_ABSTRACT] = ACTIONS(4897), + [anon_sym_Component] = ACTIONS(4897), + [anon_sym_component] = ACTIONS(4897), + [anon_sym_COMPONENT] = ACTIONS(4897), + [anon_sym_Debugger] = ACTIONS(4897), + [anon_sym_debugger] = ACTIONS(4897), + [anon_sym_DEBUGGER] = ACTIONS(4897), + [anon_sym_Final] = ACTIONS(4897), + [anon_sym_final] = ACTIONS(4897), + [anon_sym_FINAL] = ACTIONS(4897), + [anon_sym_Function] = ACTIONS(4903), + [anon_sym_function] = ACTIONS(4903), + [anon_sym_FUNCTION] = ACTIONS(4903), + [anon_sym_Include] = ACTIONS(4897), + [anon_sym_include] = ACTIONS(4897), + [anon_sym_INCLUDE] = ACTIONS(4897), + [anon_sym_New] = ACTIONS(5021), + [anon_sym_new] = ACTIONS(5021), + [anon_sym_NEW] = ACTIONS(5021), + [anon_sym_Package] = ACTIONS(4897), + [anon_sym_package] = ACTIONS(4897), + [anon_sym_PACKAGE] = ACTIONS(4897), + [anon_sym_Private] = ACTIONS(4897), + [anon_sym_private] = ACTIONS(4897), + [anon_sym_PRIVATE] = ACTIONS(4897), + [anon_sym_Public] = ACTIONS(4897), + [anon_sym_public] = ACTIONS(4897), + [anon_sym_PUBLIC] = ACTIONS(4897), + [anon_sym_Remote] = ACTIONS(4897), + [anon_sym_remote] = ACTIONS(4897), + [anon_sym_REMOTE] = ACTIONS(4897), + [anon_sym_Static] = ACTIONS(4897), + [anon_sym_static] = ACTIONS(4897), + [anon_sym_STATIC] = ACTIONS(4897), + [sym__java_block_open] = ACTIONS(4457), + [sym__static_type_prefix] = ACTIONS(4459), + }, + [STATE(2012)] = { + [sym_parenthesized_expression] = STATE(2372), + [sym_expression] = STATE(3864), + [sym_primary_expression] = STATE(2861), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2888), + [sym_new_expression] = STATE(2980), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2372), + [sym_subscript_expression] = STATE(2372), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3008), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3008), + [sym_undefined] = STATE(3008), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3655), + [sym_hash_expression] = STATE(3655), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4969), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4973), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4973), + [anon_sym_query] = ACTIONS(4973), + [anon_sym_QUERY] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4973), + [anon_sym_set] = ACTIONS(4973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4975), + [anon_sym_export] = ACTIONS(4973), + [anon_sym_QueryExecute] = ACTIONS(4977), + [anon_sym_queryexecute] = ACTIONS(4977), + [anon_sym_QUERYEXECUTE] = ACTIONS(4977), + [anon_sym_queryExecute] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4973), + [anon_sym_abstract] = ACTIONS(4973), + [anon_sym_ABSTRACT] = ACTIONS(4973), + [anon_sym_Component] = ACTIONS(4973), + [anon_sym_component] = ACTIONS(4973), + [anon_sym_COMPONENT] = ACTIONS(4973), + [anon_sym_Debugger] = ACTIONS(4973), + [anon_sym_debugger] = ACTIONS(4973), + [anon_sym_DEBUGGER] = ACTIONS(4973), + [anon_sym_Final] = ACTIONS(4973), + [anon_sym_final] = ACTIONS(4973), + [anon_sym_FINAL] = ACTIONS(4973), + [anon_sym_Function] = ACTIONS(4979), + [anon_sym_function] = ACTIONS(4979), + [anon_sym_FUNCTION] = ACTIONS(4979), + [anon_sym_Include] = ACTIONS(4973), + [anon_sym_include] = ACTIONS(4973), + [anon_sym_INCLUDE] = ACTIONS(4973), + [anon_sym_New] = ACTIONS(5023), + [anon_sym_new] = ACTIONS(5023), + [anon_sym_NEW] = ACTIONS(5023), + [anon_sym_Package] = ACTIONS(4973), + [anon_sym_package] = ACTIONS(4973), + [anon_sym_PACKAGE] = ACTIONS(4973), + [anon_sym_Private] = ACTIONS(4973), + [anon_sym_private] = ACTIONS(4973), + [anon_sym_PRIVATE] = ACTIONS(4973), + [anon_sym_Public] = ACTIONS(4973), + [anon_sym_public] = ACTIONS(4973), + [anon_sym_PUBLIC] = ACTIONS(4973), + [anon_sym_Remote] = ACTIONS(4973), + [anon_sym_remote] = ACTIONS(4973), + [anon_sym_REMOTE] = ACTIONS(4973), + [anon_sym_Static] = ACTIONS(4973), + [anon_sym_static] = ACTIONS(4973), + [anon_sym_STATIC] = ACTIONS(4973), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(2013)] = { + [sym_parenthesized_expression] = STATE(2372), + [sym_expression] = STATE(3864), + [sym_primary_expression] = STATE(2863), + [sym_object] = STATE(3368), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3368), + [sym_ordered_struct] = STATE(3368), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3368), + [sym_arrow_function] = STATE(3368), + [sym_call_expression] = STATE(2888), + [sym_new_expression] = STATE(2864), + [sym_prefixed_type] = STATE(3368), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2372), + [sym_subscript_expression] = STATE(2372), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3008), + [sym_regex] = STATE(3368), + [sym_number] = STATE(3368), + [sym_this] = STATE(3368), + [sym_super] = STATE(3368), + [sym_true] = STATE(3368), + [sym_false] = STATE(3368), + [sym_null] = STATE(3008), + [sym_undefined] = STATE(3008), + [sym_java_class_block] = STATE(3368), + [sym_formal_parameters] = STATE(4864), + [sym__hash_always_eval] = STATE(3655), + [sym_hash_expression] = STATE(3655), + [sym_template_string] = STATE(3368), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4969), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_let] = ACTIONS(4973), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_Query] = ACTIONS(4973), + [anon_sym_query] = ACTIONS(4973), + [anon_sym_QUERY] = ACTIONS(4973), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4168), + [aux_sym_number_token2] = ACTIONS(4170), + [anon_sym_This] = ACTIONS(4172), + [anon_sym_this] = ACTIONS(4172), + [anon_sym_THIS] = ACTIONS(4172), + [anon_sym_Super] = ACTIONS(4174), + [anon_sym_super] = ACTIONS(4174), + [anon_sym_SUPER] = ACTIONS(4174), + [anon_sym_True] = ACTIONS(4176), + [anon_sym_true] = ACTIONS(4176), + [anon_sym_TRUE] = ACTIONS(4176), + [anon_sym_False] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_FALSE] = ACTIONS(4178), + [anon_sym_Null] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_Undefined] = ACTIONS(4182), + [anon_sym_undefined] = ACTIONS(4182), + [anon_sym_UNDEFINED] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4973), + [anon_sym_set] = ACTIONS(4973), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4975), + [anon_sym_export] = ACTIONS(4973), + [anon_sym_QueryExecute] = ACTIONS(4977), + [anon_sym_queryexecute] = ACTIONS(4977), + [anon_sym_QUERYEXECUTE] = ACTIONS(4977), + [anon_sym_queryExecute] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(4190), + [anon_sym_Abstract] = ACTIONS(4973), + [anon_sym_abstract] = ACTIONS(4973), + [anon_sym_ABSTRACT] = ACTIONS(4973), + [anon_sym_Component] = ACTIONS(4973), + [anon_sym_component] = ACTIONS(4973), + [anon_sym_COMPONENT] = ACTIONS(4973), + [anon_sym_Debugger] = ACTIONS(4973), + [anon_sym_debugger] = ACTIONS(4973), + [anon_sym_DEBUGGER] = ACTIONS(4973), + [anon_sym_Final] = ACTIONS(4973), + [anon_sym_final] = ACTIONS(4973), + [anon_sym_FINAL] = ACTIONS(4973), + [anon_sym_Function] = ACTIONS(4979), + [anon_sym_function] = ACTIONS(4979), + [anon_sym_FUNCTION] = ACTIONS(4979), + [anon_sym_Include] = ACTIONS(4973), + [anon_sym_include] = ACTIONS(4973), + [anon_sym_INCLUDE] = ACTIONS(4973), + [anon_sym_New] = ACTIONS(5023), + [anon_sym_new] = ACTIONS(5023), + [anon_sym_NEW] = ACTIONS(5023), + [anon_sym_Package] = ACTIONS(4973), + [anon_sym_package] = ACTIONS(4973), + [anon_sym_PACKAGE] = ACTIONS(4973), + [anon_sym_Private] = ACTIONS(4973), + [anon_sym_private] = ACTIONS(4973), + [anon_sym_PRIVATE] = ACTIONS(4973), + [anon_sym_Public] = ACTIONS(4973), + [anon_sym_public] = ACTIONS(4973), + [anon_sym_PUBLIC] = ACTIONS(4973), + [anon_sym_Remote] = ACTIONS(4973), + [anon_sym_remote] = ACTIONS(4973), + [anon_sym_REMOTE] = ACTIONS(4973), + [anon_sym_Static] = ACTIONS(4973), + [anon_sym_static] = ACTIONS(4973), + [anon_sym_STATIC] = ACTIONS(4973), + [sym__java_block_open] = ACTIONS(4196), + [sym__static_type_prefix] = ACTIONS(4198), + }, + [STATE(2014)] = { + [sym_parenthesized_expression] = STATE(2324), + [sym_expression] = STATE(3866), + [sym_primary_expression] = STATE(2815), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2721), + [sym_new_expression] = STATE(2668), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2324), + [sym_subscript_expression] = STATE(2324), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2713), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2713), + [sym_undefined] = STATE(2713), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(3685), + [sym_hash_expression] = STATE(3685), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4741), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4743), + [anon_sym_query] = ACTIONS(4743), + [anon_sym_QUERY] = ACTIONS(4743), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4813), - [anon_sym_set] = ACTIONS(4813), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4743), + [anon_sym_set] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4813), - [anon_sym_QueryExecute] = ACTIONS(4815), - [anon_sym_queryexecute] = ACTIONS(4815), - [anon_sym_QUERYEXECUTE] = ACTIONS(4815), - [anon_sym_queryExecute] = ACTIONS(4815), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4813), - [anon_sym_abstract] = ACTIONS(4813), - [anon_sym_ABSTRACT] = ACTIONS(4813), - [anon_sym_Component] = ACTIONS(4813), - [anon_sym_component] = ACTIONS(4813), - [anon_sym_COMPONENT] = ACTIONS(4813), - [anon_sym_Debugger] = ACTIONS(4813), - [anon_sym_debugger] = ACTIONS(4813), - [anon_sym_DEBUGGER] = ACTIONS(4813), - [anon_sym_Final] = ACTIONS(4813), - [anon_sym_final] = ACTIONS(4813), - [anon_sym_FINAL] = ACTIONS(4813), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4813), - [anon_sym_include] = ACTIONS(4813), - [anon_sym_INCLUDE] = ACTIONS(4813), - [anon_sym_New] = ACTIONS(5009), - [anon_sym_new] = ACTIONS(5009), - [anon_sym_NEW] = ACTIONS(5009), - [anon_sym_Package] = ACTIONS(4813), - [anon_sym_package] = ACTIONS(4813), - [anon_sym_PACKAGE] = ACTIONS(4813), - [anon_sym_Private] = ACTIONS(4813), - [anon_sym_private] = ACTIONS(4813), - [anon_sym_PRIVATE] = ACTIONS(4813), - [anon_sym_Public] = ACTIONS(4813), - [anon_sym_public] = ACTIONS(4813), - [anon_sym_PUBLIC] = ACTIONS(4813), - [anon_sym_Remote] = ACTIONS(4813), - [anon_sym_remote] = ACTIONS(4813), - [anon_sym_REMOTE] = ACTIONS(4813), - [anon_sym_Static] = ACTIONS(4813), - [anon_sym_static] = ACTIONS(4813), - [anon_sym_STATIC] = ACTIONS(4813), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [sym_hash_empty] = ACTIONS(4745), + [anon_sym_export] = ACTIONS(4743), + [anon_sym_QueryExecute] = ACTIONS(4747), + [anon_sym_queryexecute] = ACTIONS(4747), + [anon_sym_QUERYEXECUTE] = ACTIONS(4747), + [anon_sym_queryExecute] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_ABSTRACT] = ACTIONS(4743), + [anon_sym_Component] = ACTIONS(4743), + [anon_sym_component] = ACTIONS(4743), + [anon_sym_COMPONENT] = ACTIONS(4743), + [anon_sym_Debugger] = ACTIONS(4743), + [anon_sym_debugger] = ACTIONS(4743), + [anon_sym_DEBUGGER] = ACTIONS(4743), + [anon_sym_Final] = ACTIONS(4743), + [anon_sym_final] = ACTIONS(4743), + [anon_sym_FINAL] = ACTIONS(4743), + [anon_sym_Function] = ACTIONS(4749), + [anon_sym_function] = ACTIONS(4749), + [anon_sym_FUNCTION] = ACTIONS(4749), + [anon_sym_Include] = ACTIONS(4743), + [anon_sym_include] = ACTIONS(4743), + [anon_sym_INCLUDE] = ACTIONS(4743), + [anon_sym_New] = ACTIONS(5025), + [anon_sym_new] = ACTIONS(5025), + [anon_sym_NEW] = ACTIONS(5025), + [anon_sym_Package] = ACTIONS(4743), + [anon_sym_package] = ACTIONS(4743), + [anon_sym_PACKAGE] = ACTIONS(4743), + [anon_sym_Private] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_PRIVATE] = ACTIONS(4743), + [anon_sym_Public] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_PUBLIC] = ACTIONS(4743), + [anon_sym_Remote] = ACTIONS(4743), + [anon_sym_remote] = ACTIONS(4743), + [anon_sym_REMOTE] = ACTIONS(4743), + [anon_sym_Static] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_STATIC] = ACTIONS(4743), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), }, - [STATE(1984)] = { - [sym_parenthesized_expression] = STATE(2131), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2434), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(2542), - [sym_new_expression] = STATE(2472), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2131), - [sym_subscript_expression] = STATE(2131), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2433), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(2433), - [sym_undefined] = STATE(2433), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4811), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4951), - [anon_sym_query] = ACTIONS(4951), - [anon_sym_QUERY] = ACTIONS(4951), + [STATE(2015)] = { + [sym_parenthesized_expression] = STATE(2324), + [sym_expression] = STATE(3866), + [sym_primary_expression] = STATE(2816), + [sym_object] = STATE(3018), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(3018), + [sym_ordered_struct] = STATE(3018), + [sym_array_pattern] = STATE(5317), + [sym_function_expression] = STATE(3018), + [sym_arrow_function] = STATE(3018), + [sym_call_expression] = STATE(2721), + [sym_new_expression] = STATE(2817), + [sym_prefixed_type] = STATE(3018), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2324), + [sym_subscript_expression] = STATE(2324), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3956), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5317), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1845), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(2713), + [sym_regex] = STATE(3018), + [sym_number] = STATE(3018), + [sym_this] = STATE(3018), + [sym_super] = STATE(3018), + [sym_true] = STATE(3018), + [sym_false] = STATE(3018), + [sym_null] = STATE(2713), + [sym_undefined] = STATE(2713), + [sym_java_class_block] = STATE(3018), + [sym_formal_parameters] = STATE(5053), + [sym__hash_always_eval] = STATE(3685), + [sym_hash_expression] = STATE(3685), + [sym_template_string] = STATE(3018), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4741), + [anon_sym_LPAREN] = ACTIONS(4104), + [anon_sym_let] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_Query] = ACTIONS(4743), + [anon_sym_query] = ACTIONS(4743), + [anon_sym_QUERY] = ACTIONS(4743), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4116), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4118), + [aux_sym_number_token2] = ACTIONS(4120), + [anon_sym_This] = ACTIONS(4122), + [anon_sym_this] = ACTIONS(4122), + [anon_sym_THIS] = ACTIONS(4122), + [anon_sym_Super] = ACTIONS(4124), + [anon_sym_super] = ACTIONS(4124), + [anon_sym_SUPER] = ACTIONS(4124), + [anon_sym_True] = ACTIONS(4126), + [anon_sym_true] = ACTIONS(4126), + [anon_sym_TRUE] = ACTIONS(4126), + [anon_sym_False] = ACTIONS(4128), + [anon_sym_false] = ACTIONS(4128), + [anon_sym_FALSE] = ACTIONS(4128), + [anon_sym_Null] = ACTIONS(4130), + [anon_sym_null] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_Undefined] = ACTIONS(4132), + [anon_sym_undefined] = ACTIONS(4132), + [anon_sym_UNDEFINED] = ACTIONS(4132), + [anon_sym_get] = ACTIONS(4743), + [anon_sym_set] = ACTIONS(4743), + [anon_sym_POUND] = ACTIONS(461), + [sym_hash_empty] = ACTIONS(4745), + [anon_sym_export] = ACTIONS(4743), + [anon_sym_QueryExecute] = ACTIONS(4747), + [anon_sym_queryexecute] = ACTIONS(4747), + [anon_sym_QUERYEXECUTE] = ACTIONS(4747), + [anon_sym_queryExecute] = ACTIONS(4747), + [anon_sym_BQUOTE] = ACTIONS(4140), + [anon_sym_Abstract] = ACTIONS(4743), + [anon_sym_abstract] = ACTIONS(4743), + [anon_sym_ABSTRACT] = ACTIONS(4743), + [anon_sym_Component] = ACTIONS(4743), + [anon_sym_component] = ACTIONS(4743), + [anon_sym_COMPONENT] = ACTIONS(4743), + [anon_sym_Debugger] = ACTIONS(4743), + [anon_sym_debugger] = ACTIONS(4743), + [anon_sym_DEBUGGER] = ACTIONS(4743), + [anon_sym_Final] = ACTIONS(4743), + [anon_sym_final] = ACTIONS(4743), + [anon_sym_FINAL] = ACTIONS(4743), + [anon_sym_Function] = ACTIONS(4749), + [anon_sym_function] = ACTIONS(4749), + [anon_sym_FUNCTION] = ACTIONS(4749), + [anon_sym_Include] = ACTIONS(4743), + [anon_sym_include] = ACTIONS(4743), + [anon_sym_INCLUDE] = ACTIONS(4743), + [anon_sym_New] = ACTIONS(5025), + [anon_sym_new] = ACTIONS(5025), + [anon_sym_NEW] = ACTIONS(5025), + [anon_sym_Package] = ACTIONS(4743), + [anon_sym_package] = ACTIONS(4743), + [anon_sym_PACKAGE] = ACTIONS(4743), + [anon_sym_Private] = ACTIONS(4743), + [anon_sym_private] = ACTIONS(4743), + [anon_sym_PRIVATE] = ACTIONS(4743), + [anon_sym_Public] = ACTIONS(4743), + [anon_sym_public] = ACTIONS(4743), + [anon_sym_PUBLIC] = ACTIONS(4743), + [anon_sym_Remote] = ACTIONS(4743), + [anon_sym_remote] = ACTIONS(4743), + [anon_sym_REMOTE] = ACTIONS(4743), + [anon_sym_Static] = ACTIONS(4743), + [anon_sym_static] = ACTIONS(4743), + [anon_sym_STATIC] = ACTIONS(4743), + [sym__java_block_open] = ACTIONS(4146), + [sym__static_type_prefix] = ACTIONS(4148), + }, + [STATE(2016)] = { + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(747), + [sym_primary_expression] = STATE(669), + [sym_object] = STATE(773), + [sym_object_pattern] = STATE(775), + [sym_array] = STATE(773), + [sym_ordered_struct] = STATE(773), + [sym_array_pattern] = STATE(5266), + [sym_function_expression] = STATE(773), + [sym_arrow_function] = STATE(773), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(686), + [sym_prefixed_type] = STATE(773), + [sym_function_listener_expression] = STATE(775), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(775), + [sym__augmented_assignment_lhs] = STATE(3950), + [sym_augmented_assignment_expression] = STATE(775), + [sym__destructuring_pattern] = STATE(5266), + [sym_ternary_expression] = STATE(775), + [sym_elvis_expression] = STATE(775), + [sym_binary_expression] = STATE(775), + [sym_unary_operator] = STATE(1959), + [sym_unary_expression] = STATE(775), + [sym_update_expression] = STATE(775), + [sym_string] = STATE(670), + [sym_regex] = STATE(773), + [sym_number] = STATE(773), + [sym_this] = STATE(773), + [sym_super] = STATE(773), + [sym_true] = STATE(773), + [sym_false] = STATE(773), + [sym_null] = STATE(670), + [sym_undefined] = STATE(670), + [sym_java_class_block] = STATE(773), + [sym_formal_parameters] = STATE(4977), + [sym__hash_always_eval] = STATE(687), + [sym_hash_expression] = STATE(687), + [sym_template_string] = STATE(773), + [sym_query_expression] = STATE(775), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4713), + [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_let] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_Query] = ACTIONS(4210), + [anon_sym_query] = ACTIONS(4210), + [anon_sym_QUERY] = ACTIONS(4210), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4216), + [anon_sym_DASH_DASH] = ACTIONS(4216), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4222), + [aux_sym_number_token2] = ACTIONS(4224), + [anon_sym_This] = ACTIONS(4226), + [anon_sym_this] = ACTIONS(4226), + [anon_sym_THIS] = ACTIONS(4226), + [anon_sym_Super] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_SUPER] = ACTIONS(4228), + [anon_sym_True] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_TRUE] = ACTIONS(4230), + [anon_sym_False] = ACTIONS(4232), + [anon_sym_false] = ACTIONS(4232), + [anon_sym_FALSE] = ACTIONS(4232), + [anon_sym_Null] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_NULL] = ACTIONS(4234), + [anon_sym_Undefined] = ACTIONS(4236), + [anon_sym_undefined] = ACTIONS(4236), + [anon_sym_UNDEFINED] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4210), + [anon_sym_set] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4238), + [sym_hash_empty] = ACTIONS(4240), + [anon_sym_export] = ACTIONS(4210), + [anon_sym_QueryExecute] = ACTIONS(4242), + [anon_sym_queryexecute] = ACTIONS(4242), + [anon_sym_QUERYEXECUTE] = ACTIONS(4242), + [anon_sym_queryExecute] = ACTIONS(4242), + [anon_sym_BQUOTE] = ACTIONS(4244), + [anon_sym_Abstract] = ACTIONS(4210), + [anon_sym_abstract] = ACTIONS(4210), + [anon_sym_ABSTRACT] = ACTIONS(4210), + [anon_sym_Component] = ACTIONS(4210), + [anon_sym_component] = ACTIONS(4210), + [anon_sym_COMPONENT] = ACTIONS(4210), + [anon_sym_Debugger] = ACTIONS(4210), + [anon_sym_debugger] = ACTIONS(4210), + [anon_sym_DEBUGGER] = ACTIONS(4210), + [anon_sym_Final] = ACTIONS(4210), + [anon_sym_final] = ACTIONS(4210), + [anon_sym_FINAL] = ACTIONS(4210), + [anon_sym_Function] = ACTIONS(4246), + [anon_sym_function] = ACTIONS(4246), + [anon_sym_FUNCTION] = ACTIONS(4246), + [anon_sym_Include] = ACTIONS(4210), + [anon_sym_include] = ACTIONS(4210), + [anon_sym_INCLUDE] = ACTIONS(4210), + [anon_sym_New] = ACTIONS(4248), + [anon_sym_new] = ACTIONS(4248), + [anon_sym_NEW] = ACTIONS(4248), + [anon_sym_Package] = ACTIONS(4210), + [anon_sym_package] = ACTIONS(4210), + [anon_sym_PACKAGE] = ACTIONS(4210), + [anon_sym_Private] = ACTIONS(4210), + [anon_sym_private] = ACTIONS(4210), + [anon_sym_PRIVATE] = ACTIONS(4210), + [anon_sym_Public] = ACTIONS(4210), + [anon_sym_public] = ACTIONS(4210), + [anon_sym_PUBLIC] = ACTIONS(4210), + [anon_sym_Remote] = ACTIONS(4210), + [anon_sym_remote] = ACTIONS(4210), + [anon_sym_REMOTE] = ACTIONS(4210), + [anon_sym_Static] = ACTIONS(4210), + [anon_sym_static] = ACTIONS(4210), + [anon_sym_STATIC] = ACTIONS(4210), + [sym__java_block_open] = ACTIONS(4250), + [sym__static_type_prefix] = ACTIONS(4252), + }, + [STATE(2017)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3828), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -323562,406 +328098,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4951), - [anon_sym_set] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4951), - [anon_sym_QueryExecute] = ACTIONS(4953), - [anon_sym_queryexecute] = ACTIONS(4953), - [anon_sym_QUERYEXECUTE] = ACTIONS(4953), - [anon_sym_queryExecute] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4951), - [anon_sym_abstract] = ACTIONS(4951), - [anon_sym_ABSTRACT] = ACTIONS(4951), - [anon_sym_Component] = ACTIONS(4951), - [anon_sym_component] = ACTIONS(4951), - [anon_sym_COMPONENT] = ACTIONS(4951), - [anon_sym_Debugger] = ACTIONS(4951), - [anon_sym_debugger] = ACTIONS(4951), - [anon_sym_DEBUGGER] = ACTIONS(4951), - [anon_sym_Final] = ACTIONS(4951), - [anon_sym_final] = ACTIONS(4951), - [anon_sym_FINAL] = ACTIONS(4951), - [anon_sym_Function] = ACTIONS(825), - [anon_sym_function] = ACTIONS(825), - [anon_sym_FUNCTION] = ACTIONS(825), - [anon_sym_Include] = ACTIONS(4951), - [anon_sym_include] = ACTIONS(4951), - [anon_sym_INCLUDE] = ACTIONS(4951), - [anon_sym_New] = ACTIONS(5011), - [anon_sym_new] = ACTIONS(5011), - [anon_sym_NEW] = ACTIONS(5011), - [anon_sym_Package] = ACTIONS(4951), - [anon_sym_package] = ACTIONS(4951), - [anon_sym_PACKAGE] = ACTIONS(4951), - [anon_sym_Private] = ACTIONS(4951), - [anon_sym_private] = ACTIONS(4951), - [anon_sym_PRIVATE] = ACTIONS(4951), - [anon_sym_Public] = ACTIONS(4951), - [anon_sym_public] = ACTIONS(4951), - [anon_sym_PUBLIC] = ACTIONS(4951), - [anon_sym_Remote] = ACTIONS(4951), - [anon_sym_remote] = ACTIONS(4951), - [anon_sym_REMOTE] = ACTIONS(4951), - [anon_sym_Static] = ACTIONS(4951), - [anon_sym_static] = ACTIONS(4951), - [anon_sym_STATIC] = ACTIONS(4951), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), - }, - [STATE(1985)] = { - [sym_parenthesized_expression] = STATE(2258), - [sym_expression] = STATE(3794), - [sym_primary_expression] = STATE(2685), - [sym_object] = STATE(2909), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2909), - [sym_ordered_struct] = STATE(2909), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2909), - [sym_arrow_function] = STATE(2909), - [sym_call_expression] = STATE(2690), - [sym_new_expression] = STATE(2978), - [sym_prefixed_type] = STATE(2909), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2258), - [sym_subscript_expression] = STATE(2258), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2710), - [sym_regex] = STATE(2909), - [sym_number] = STATE(2909), - [sym_this] = STATE(2909), - [sym_super] = STATE(2909), - [sym_true] = STATE(2909), - [sym_false] = STATE(2909), - [sym_null] = STATE(2710), - [sym_undefined] = STATE(2710), - [sym_java_class_block] = STATE(2909), - [sym_formal_parameters] = STATE(4858), - [sym__hash_always_eval] = STATE(3641), - [sym_hash_expression] = STATE(3641), - [sym_template_string] = STATE(2909), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4913), - [anon_sym_LBRACE] = ACTIONS(4915), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_let] = ACTIONS(4917), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_Query] = ACTIONS(4917), - [anon_sym_query] = ACTIONS(4917), - [anon_sym_QUERY] = ACTIONS(4917), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4080), - [aux_sym_number_token2] = ACTIONS(4082), - [anon_sym_This] = ACTIONS(4084), - [anon_sym_this] = ACTIONS(4084), - [anon_sym_THIS] = ACTIONS(4084), - [anon_sym_Super] = ACTIONS(4086), - [anon_sym_super] = ACTIONS(4086), - [anon_sym_SUPER] = ACTIONS(4086), - [anon_sym_True] = ACTIONS(4088), - [anon_sym_true] = ACTIONS(4088), - [anon_sym_TRUE] = ACTIONS(4088), - [anon_sym_False] = ACTIONS(4090), - [anon_sym_false] = ACTIONS(4090), - [anon_sym_FALSE] = ACTIONS(4090), - [anon_sym_Null] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [anon_sym_NULL] = ACTIONS(1774), - [anon_sym_Undefined] = ACTIONS(1776), - [anon_sym_undefined] = ACTIONS(1776), - [anon_sym_UNDEFINED] = ACTIONS(1776), - [anon_sym_get] = ACTIONS(4917), - [anon_sym_set] = ACTIONS(4917), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4919), - [anon_sym_export] = ACTIONS(4917), - [anon_sym_QueryExecute] = ACTIONS(4921), - [anon_sym_queryexecute] = ACTIONS(4921), - [anon_sym_QUERYEXECUTE] = ACTIONS(4921), - [anon_sym_queryExecute] = ACTIONS(4921), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_Abstract] = ACTIONS(4917), - [anon_sym_abstract] = ACTIONS(4917), - [anon_sym_ABSTRACT] = ACTIONS(4917), - [anon_sym_Component] = ACTIONS(4917), - [anon_sym_component] = ACTIONS(4917), - [anon_sym_COMPONENT] = ACTIONS(4917), - [anon_sym_Debugger] = ACTIONS(4917), - [anon_sym_debugger] = ACTIONS(4917), - [anon_sym_DEBUGGER] = ACTIONS(4917), - [anon_sym_Final] = ACTIONS(4917), - [anon_sym_final] = ACTIONS(4917), - [anon_sym_FINAL] = ACTIONS(4917), - [anon_sym_Function] = ACTIONS(4923), - [anon_sym_function] = ACTIONS(4923), - [anon_sym_FUNCTION] = ACTIONS(4923), - [anon_sym_Include] = ACTIONS(4917), - [anon_sym_include] = ACTIONS(4917), - [anon_sym_INCLUDE] = ACTIONS(4917), - [anon_sym_New] = ACTIONS(5013), - [anon_sym_new] = ACTIONS(5013), - [anon_sym_NEW] = ACTIONS(5013), - [anon_sym_Package] = ACTIONS(4917), - [anon_sym_package] = ACTIONS(4917), - [anon_sym_PACKAGE] = ACTIONS(4917), - [anon_sym_Private] = ACTIONS(4917), - [anon_sym_private] = ACTIONS(4917), - [anon_sym_PRIVATE] = ACTIONS(4917), - [anon_sym_Public] = ACTIONS(4917), - [anon_sym_public] = ACTIONS(4917), - [anon_sym_PUBLIC] = ACTIONS(4917), - [anon_sym_Remote] = ACTIONS(4917), - [anon_sym_remote] = ACTIONS(4917), - [anon_sym_REMOTE] = ACTIONS(4917), - [anon_sym_Static] = ACTIONS(4917), - [anon_sym_static] = ACTIONS(4917), - [anon_sym_STATIC] = ACTIONS(4917), - [sym__java_block_open] = ACTIONS(4104), - [sym__static_type_prefix] = ACTIONS(4106), - }, - [STATE(1986)] = { - [sym_parenthesized_expression] = STATE(2340), - [sym_expression] = STATE(3809), - [sym_primary_expression] = STATE(2920), - [sym_object] = STATE(3212), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(3212), - [sym_ordered_struct] = STATE(3212), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(3212), - [sym_arrow_function] = STATE(3212), - [sym_call_expression] = STATE(2955), - [sym_new_expression] = STATE(3171), - [sym_prefixed_type] = STATE(3212), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2340), - [sym_subscript_expression] = STATE(2340), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2946), - [sym_regex] = STATE(3212), - [sym_number] = STATE(3212), - [sym_this] = STATE(3212), - [sym_super] = STATE(3212), - [sym_true] = STATE(3212), - [sym_false] = STATE(3212), - [sym_null] = STATE(2946), - [sym_undefined] = STATE(2946), - [sym_java_class_block] = STATE(3212), - [sym_formal_parameters] = STATE(4967), - [sym__hash_always_eval] = STATE(3652), - [sym_hash_expression] = STATE(3652), - [sym_template_string] = STATE(3212), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_let] = ACTIONS(4887), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_Query] = ACTIONS(4887), - [anon_sym_query] = ACTIONS(4887), - [anon_sym_QUERY] = ACTIONS(4887), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4126), - [aux_sym_number_token2] = ACTIONS(4128), - [anon_sym_This] = ACTIONS(4130), - [anon_sym_this] = ACTIONS(4130), - [anon_sym_THIS] = ACTIONS(4130), - [anon_sym_Super] = ACTIONS(4132), - [anon_sym_super] = ACTIONS(4132), - [anon_sym_SUPER] = ACTIONS(4132), - [anon_sym_True] = ACTIONS(4134), - [anon_sym_true] = ACTIONS(4134), - [anon_sym_TRUE] = ACTIONS(4134), - [anon_sym_False] = ACTIONS(4136), - [anon_sym_false] = ACTIONS(4136), - [anon_sym_FALSE] = ACTIONS(4136), - [anon_sym_Null] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_Undefined] = ACTIONS(4140), - [anon_sym_undefined] = ACTIONS(4140), - [anon_sym_UNDEFINED] = ACTIONS(4140), - [anon_sym_get] = ACTIONS(4887), - [anon_sym_set] = ACTIONS(4887), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4889), - [anon_sym_export] = ACTIONS(4887), - [anon_sym_QueryExecute] = ACTIONS(4891), - [anon_sym_queryexecute] = ACTIONS(4891), - [anon_sym_QUERYEXECUTE] = ACTIONS(4891), - [anon_sym_queryExecute] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4148), - [anon_sym_Abstract] = ACTIONS(4887), - [anon_sym_abstract] = ACTIONS(4887), - [anon_sym_ABSTRACT] = ACTIONS(4887), - [anon_sym_Component] = ACTIONS(4887), - [anon_sym_component] = ACTIONS(4887), - [anon_sym_COMPONENT] = ACTIONS(4887), - [anon_sym_Debugger] = ACTIONS(4887), - [anon_sym_debugger] = ACTIONS(4887), - [anon_sym_DEBUGGER] = ACTIONS(4887), - [anon_sym_Final] = ACTIONS(4887), - [anon_sym_final] = ACTIONS(4887), - [anon_sym_FINAL] = ACTIONS(4887), - [anon_sym_Function] = ACTIONS(4893), - [anon_sym_function] = ACTIONS(4893), - [anon_sym_FUNCTION] = ACTIONS(4893), - [anon_sym_Include] = ACTIONS(4887), - [anon_sym_include] = ACTIONS(4887), - [anon_sym_INCLUDE] = ACTIONS(4887), - [anon_sym_New] = ACTIONS(5015), - [anon_sym_new] = ACTIONS(5015), - [anon_sym_NEW] = ACTIONS(5015), - [anon_sym_Package] = ACTIONS(4887), - [anon_sym_package] = ACTIONS(4887), - [anon_sym_PACKAGE] = ACTIONS(4887), - [anon_sym_Private] = ACTIONS(4887), - [anon_sym_private] = ACTIONS(4887), - [anon_sym_PRIVATE] = ACTIONS(4887), - [anon_sym_Public] = ACTIONS(4887), - [anon_sym_public] = ACTIONS(4887), - [anon_sym_PUBLIC] = ACTIONS(4887), - [anon_sym_Remote] = ACTIONS(4887), - [anon_sym_remote] = ACTIONS(4887), - [anon_sym_REMOTE] = ACTIONS(4887), - [anon_sym_Static] = ACTIONS(4887), - [anon_sym_static] = ACTIONS(4887), - [anon_sym_STATIC] = ACTIONS(4887), - [sym__java_block_open] = ACTIONS(4154), - [sym__static_type_prefix] = ACTIONS(4156), - }, - [STATE(1987)] = { - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(3812), - [sym_primary_expression] = STATE(2667), - [sym_object] = STATE(2798), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2798), - [sym_ordered_struct] = STATE(2798), - [sym_array_pattern] = STATE(5288), - [sym_function_expression] = STATE(2798), - [sym_arrow_function] = STATE(2798), - [sym_call_expression] = STATE(2644), - [sym_new_expression] = STATE(2868), - [sym_prefixed_type] = STATE(2798), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3899), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5288), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1806), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(2639), - [sym_regex] = STATE(2798), - [sym_number] = STATE(2798), - [sym_this] = STATE(2798), - [sym_super] = STATE(2798), - [sym_true] = STATE(2798), - [sym_false] = STATE(2798), - [sym_null] = STATE(2639), - [sym_undefined] = STATE(2639), - [sym_java_class_block] = STATE(2798), - [sym_formal_parameters] = STATE(4786), - [sym__hash_always_eval] = STATE(3642), - [sym_hash_expression] = STATE(3642), - [sym_template_string] = STATE(2798), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4829), - [anon_sym_LBRACE] = ACTIONS(4831), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4833), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_Query] = ACTIONS(4833), - [anon_sym_query] = ACTIONS(4833), - [anon_sym_QUERY] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4293), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(4297), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4301), - [aux_sym_number_token2] = ACTIONS(4303), - [anon_sym_This] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_THIS] = ACTIONS(4305), - [anon_sym_Super] = ACTIONS(4307), - [anon_sym_super] = ACTIONS(4307), - [anon_sym_SUPER] = ACTIONS(4307), - [anon_sym_True] = ACTIONS(4309), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_TRUE] = ACTIONS(4309), - [anon_sym_False] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_FALSE] = ACTIONS(4311), - [anon_sym_Null] = ACTIONS(4313), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_NULL] = ACTIONS(4313), - [anon_sym_Undefined] = ACTIONS(4315), - [anon_sym_undefined] = ACTIONS(4315), - [anon_sym_UNDEFINED] = ACTIONS(4315), [anon_sym_get] = ACTIONS(4833), [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(4835), + [sym_hash_empty] = ACTIONS(463), [anon_sym_export] = ACTIONS(4833), [anon_sym_QueryExecute] = ACTIONS(4837), [anon_sym_queryexecute] = ACTIONS(4837), [anon_sym_QUERYEXECUTE] = ACTIONS(4837), [anon_sym_queryExecute] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4323), + [anon_sym_BQUOTE] = ACTIONS(467), [anon_sym_Abstract] = ACTIONS(4833), [anon_sym_abstract] = ACTIONS(4833), [anon_sym_ABSTRACT] = ACTIONS(4833), @@ -323980,9 +328126,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Include] = ACTIONS(4833), [anon_sym_include] = ACTIONS(4833), [anon_sym_INCLUDE] = ACTIONS(4833), - [anon_sym_New] = ACTIONS(5017), - [anon_sym_new] = ACTIONS(5017), - [anon_sym_NEW] = ACTIONS(5017), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), [anon_sym_Package] = ACTIONS(4833), [anon_sym_package] = ACTIONS(4833), [anon_sym_PACKAGE] = ACTIONS(4833), @@ -323998,332 +328144,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(4833), [anon_sym_static] = ACTIONS(4833), [anon_sym_STATIC] = ACTIONS(4833), - [sym__java_block_open] = ACTIONS(4329), - [sym__static_type_prefix] = ACTIONS(4331), - }, - [STATE(1988)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(750), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), - }, - [STATE(1989)] = { - [sym_parenthesized_expression] = STATE(411), - [sym_expression] = STATE(752), - [sym_primary_expression] = STATE(602), - [sym_object] = STATE(717), - [sym_object_pattern] = STATE(718), - [sym_array] = STATE(717), - [sym_ordered_struct] = STATE(717), - [sym_array_pattern] = STATE(5177), - [sym_function_expression] = STATE(717), - [sym_arrow_function] = STATE(717), - [sym_call_expression] = STATE(708), - [sym_new_expression] = STATE(718), - [sym_prefixed_type] = STATE(717), - [sym_function_listener_expression] = STATE(718), - [sym_member_expression] = STATE(411), - [sym_subscript_expression] = STATE(411), - [sym_assignment_expression] = STATE(718), - [sym__augmented_assignment_lhs] = STATE(3897), - [sym_augmented_assignment_expression] = STATE(718), - [sym__destructuring_pattern] = STATE(5177), - [sym_ternary_expression] = STATE(718), - [sym_elvis_expression] = STATE(718), - [sym_binary_expression] = STATE(718), - [sym_unary_operator] = STATE(1780), - [sym_unary_expression] = STATE(718), - [sym_update_expression] = STATE(718), - [sym_string] = STATE(603), - [sym_regex] = STATE(717), - [sym_number] = STATE(717), - [sym_this] = STATE(717), - [sym_super] = STATE(717), - [sym_true] = STATE(717), - [sym_false] = STATE(717), - [sym_null] = STATE(603), - [sym_undefined] = STATE(603), - [sym_java_class_block] = STATE(717), - [sym_formal_parameters] = STATE(4855), - [sym__hash_always_eval] = STATE(589), - [sym_hash_expression] = STATE(589), - [sym_template_string] = STATE(717), - [sym_query_expression] = STATE(718), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_let] = ACTIONS(4341), - [anon_sym_LBRACK] = ACTIONS(4343), - [anon_sym_Query] = ACTIONS(4341), - [anon_sym_query] = ACTIONS(4341), - [anon_sym_QUERY] = ACTIONS(4341), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(4345), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4347), - [anon_sym_DASH_DASH] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(4353), - [aux_sym_number_token2] = ACTIONS(4355), - [anon_sym_This] = ACTIONS(4357), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_THIS] = ACTIONS(4357), - [anon_sym_Super] = ACTIONS(4359), - [anon_sym_super] = ACTIONS(4359), - [anon_sym_SUPER] = ACTIONS(4359), - [anon_sym_True] = ACTIONS(4361), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_TRUE] = ACTIONS(4361), - [anon_sym_False] = ACTIONS(4363), - [anon_sym_false] = ACTIONS(4363), - [anon_sym_FALSE] = ACTIONS(4363), - [anon_sym_Null] = ACTIONS(4365), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_NULL] = ACTIONS(4365), - [anon_sym_Undefined] = ACTIONS(4367), - [anon_sym_undefined] = ACTIONS(4367), - [anon_sym_UNDEFINED] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4341), - [anon_sym_set] = ACTIONS(4341), - [anon_sym_POUND] = ACTIONS(4369), - [sym_hash_empty] = ACTIONS(4371), - [anon_sym_export] = ACTIONS(4341), - [anon_sym_QueryExecute] = ACTIONS(4373), - [anon_sym_queryexecute] = ACTIONS(4373), - [anon_sym_QUERYEXECUTE] = ACTIONS(4373), - [anon_sym_queryExecute] = ACTIONS(4373), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_Abstract] = ACTIONS(4341), - [anon_sym_abstract] = ACTIONS(4341), - [anon_sym_ABSTRACT] = ACTIONS(4341), - [anon_sym_Component] = ACTIONS(4341), - [anon_sym_component] = ACTIONS(4341), - [anon_sym_COMPONENT] = ACTIONS(4341), - [anon_sym_Debugger] = ACTIONS(4341), - [anon_sym_debugger] = ACTIONS(4341), - [anon_sym_DEBUGGER] = ACTIONS(4341), - [anon_sym_Final] = ACTIONS(4341), - [anon_sym_final] = ACTIONS(4341), - [anon_sym_FINAL] = ACTIONS(4341), - [anon_sym_Function] = ACTIONS(4377), - [anon_sym_function] = ACTIONS(4377), - [anon_sym_FUNCTION] = ACTIONS(4377), - [anon_sym_Include] = ACTIONS(4341), - [anon_sym_include] = ACTIONS(4341), - [anon_sym_INCLUDE] = ACTIONS(4341), - [anon_sym_New] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_NEW] = ACTIONS(4379), - [anon_sym_Package] = ACTIONS(4341), - [anon_sym_package] = ACTIONS(4341), - [anon_sym_PACKAGE] = ACTIONS(4341), - [anon_sym_Private] = ACTIONS(4341), - [anon_sym_private] = ACTIONS(4341), - [anon_sym_PRIVATE] = ACTIONS(4341), - [anon_sym_Public] = ACTIONS(4341), - [anon_sym_public] = ACTIONS(4341), - [anon_sym_PUBLIC] = ACTIONS(4341), - [anon_sym_Remote] = ACTIONS(4341), - [anon_sym_remote] = ACTIONS(4341), - [anon_sym_REMOTE] = ACTIONS(4341), - [anon_sym_Static] = ACTIONS(4341), - [anon_sym_static] = ACTIONS(4341), - [anon_sym_STATIC] = ACTIONS(4341), - [sym__java_block_open] = ACTIONS(4381), - [sym__static_type_prefix] = ACTIONS(4383), + [sym__java_block_open] = ACTIONS(482), + [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1990)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3761), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(2018)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3832), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -324342,118 +328228,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1991)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3770), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(2019)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -324472,118 +328358,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1992)] = { - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3773), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5134), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3587), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3896), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5134), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1433), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3440), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3440), - [sym_undefined] = STATE(3440), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4893), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4681), + [STATE(2020)] = { + [sym_parenthesized_expression] = STATE(2404), + [sym_expression] = STATE(3837), + [sym_primary_expression] = STATE(2489), + [sym_object] = STATE(2492), + [sym_object_pattern] = STATE(2563), + [sym_array] = STATE(2492), + [sym_ordered_struct] = STATE(2492), + [sym_array_pattern] = STATE(5174), + [sym_function_expression] = STATE(2492), + [sym_arrow_function] = STATE(2492), + [sym_call_expression] = STATE(3742), + [sym_new_expression] = STATE(3840), + [sym_prefixed_type] = STATE(2492), + [sym_function_listener_expression] = STATE(2563), + [sym_member_expression] = STATE(2404), + [sym_subscript_expression] = STATE(2404), + [sym_assignment_expression] = STATE(2563), + [sym__augmented_assignment_lhs] = STATE(3952), + [sym_augmented_assignment_expression] = STATE(2563), + [sym__destructuring_pattern] = STATE(5174), + [sym_ternary_expression] = STATE(2563), + [sym_elvis_expression] = STATE(2563), + [sym_binary_expression] = STATE(2563), + [sym_unary_operator] = STATE(1520), + [sym_unary_expression] = STATE(2563), + [sym_update_expression] = STATE(2563), + [sym_string] = STATE(3536), + [sym_regex] = STATE(2492), + [sym_number] = STATE(2492), + [sym_this] = STATE(2492), + [sym_super] = STATE(2492), + [sym_true] = STATE(2492), + [sym_false] = STATE(2492), + [sym_null] = STATE(3536), + [sym_undefined] = STATE(3536), + [sym_java_class_block] = STATE(2492), + [sym_formal_parameters] = STATE(4991), + [sym__hash_always_eval] = STATE(2469), + [sym_hash_expression] = STATE(2469), + [sym_template_string] = STATE(2492), + [sym_query_expression] = STATE(2563), + [sym_identifier] = ACTIONS(4831), [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4683), - [anon_sym_query] = ACTIONS(4683), - [anon_sym_QUERY] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(4833), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_Query] = ACTIONS(4833), + [anon_sym_query] = ACTIONS(4833), + [anon_sym_QUERY] = ACTIONS(4833), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_SLASH] = ACTIONS(1760), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_PLUS_PLUS] = ACTIONS(4835), + [anon_sym_DASH_DASH] = ACTIONS(4835), [anon_sym_DQUOTE] = ACTIONS(443), [anon_sym_SQUOTE] = ACTIONS(445), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), + [aux_sym_number_token2] = ACTIONS(1768), [anon_sym_This] = ACTIONS(449), [anon_sym_this] = ACTIONS(449), [anon_sym_THIS] = ACTIONS(449), @@ -324602,195 +328488,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Undefined] = ACTIONS(459), [anon_sym_undefined] = ACTIONS(459), [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4683), - [anon_sym_set] = ACTIONS(4683), + [anon_sym_get] = ACTIONS(4833), + [anon_sym_set] = ACTIONS(4833), [anon_sym_POUND] = ACTIONS(461), [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4683), - [anon_sym_QueryExecute] = ACTIONS(4687), - [anon_sym_queryexecute] = ACTIONS(4687), - [anon_sym_QUERYEXECUTE] = ACTIONS(4687), - [anon_sym_queryExecute] = ACTIONS(4687), + [anon_sym_export] = ACTIONS(4833), + [anon_sym_QueryExecute] = ACTIONS(4837), + [anon_sym_queryexecute] = ACTIONS(4837), + [anon_sym_QUERYEXECUTE] = ACTIONS(4837), + [anon_sym_queryExecute] = ACTIONS(4837), [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_ABSTRACT] = ACTIONS(4683), - [anon_sym_Component] = ACTIONS(4683), - [anon_sym_component] = ACTIONS(4683), - [anon_sym_COMPONENT] = ACTIONS(4683), - [anon_sym_Debugger] = ACTIONS(4683), - [anon_sym_debugger] = ACTIONS(4683), - [anon_sym_DEBUGGER] = ACTIONS(4683), - [anon_sym_Final] = ACTIONS(4683), - [anon_sym_final] = ACTIONS(4683), - [anon_sym_FINAL] = ACTIONS(4683), - [anon_sym_Function] = ACTIONS(4689), - [anon_sym_function] = ACTIONS(4689), - [anon_sym_FUNCTION] = ACTIONS(4689), - [anon_sym_Include] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_INCLUDE] = ACTIONS(4683), - [anon_sym_New] = ACTIONS(4691), - [anon_sym_new] = ACTIONS(4691), - [anon_sym_NEW] = ACTIONS(4691), - [anon_sym_Package] = ACTIONS(4683), - [anon_sym_package] = ACTIONS(4683), - [anon_sym_PACKAGE] = ACTIONS(4683), - [anon_sym_Private] = ACTIONS(4683), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_PRIVATE] = ACTIONS(4683), - [anon_sym_Public] = ACTIONS(4683), - [anon_sym_public] = ACTIONS(4683), - [anon_sym_PUBLIC] = ACTIONS(4683), - [anon_sym_Remote] = ACTIONS(4683), - [anon_sym_remote] = ACTIONS(4683), - [anon_sym_REMOTE] = ACTIONS(4683), - [anon_sym_Static] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4683), - [anon_sym_STATIC] = ACTIONS(4683), + [anon_sym_Abstract] = ACTIONS(4833), + [anon_sym_abstract] = ACTIONS(4833), + [anon_sym_ABSTRACT] = ACTIONS(4833), + [anon_sym_Component] = ACTIONS(4833), + [anon_sym_component] = ACTIONS(4833), + [anon_sym_COMPONENT] = ACTIONS(4833), + [anon_sym_Debugger] = ACTIONS(4833), + [anon_sym_debugger] = ACTIONS(4833), + [anon_sym_DEBUGGER] = ACTIONS(4833), + [anon_sym_Final] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_FINAL] = ACTIONS(4833), + [anon_sym_Function] = ACTIONS(4839), + [anon_sym_function] = ACTIONS(4839), + [anon_sym_FUNCTION] = ACTIONS(4839), + [anon_sym_Include] = ACTIONS(4833), + [anon_sym_include] = ACTIONS(4833), + [anon_sym_INCLUDE] = ACTIONS(4833), + [anon_sym_New] = ACTIONS(4841), + [anon_sym_new] = ACTIONS(4841), + [anon_sym_NEW] = ACTIONS(4841), + [anon_sym_Package] = ACTIONS(4833), + [anon_sym_package] = ACTIONS(4833), + [anon_sym_PACKAGE] = ACTIONS(4833), + [anon_sym_Private] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_PRIVATE] = ACTIONS(4833), + [anon_sym_Public] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_PUBLIC] = ACTIONS(4833), + [anon_sym_Remote] = ACTIONS(4833), + [anon_sym_remote] = ACTIONS(4833), + [anon_sym_REMOTE] = ACTIONS(4833), + [anon_sym_Static] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_STATIC] = ACTIONS(4833), [sym__java_block_open] = ACTIONS(482), [sym__static_type_prefix] = ACTIONS(484), }, - [STATE(1993)] = { - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3754), - [sym_primary_expression] = STATE(2446), - [sym_object] = STATE(2575), - [sym_object_pattern] = STATE(2576), - [sym_array] = STATE(2575), - [sym_ordered_struct] = STATE(2575), - [sym_array_pattern] = STATE(5234), - [sym_function_expression] = STATE(2575), - [sym_arrow_function] = STATE(2575), - [sym_call_expression] = STATE(3561), - [sym_new_expression] = STATE(2576), - [sym_prefixed_type] = STATE(2575), - [sym_function_listener_expression] = STATE(2576), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2576), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2576), - [sym__destructuring_pattern] = STATE(5234), - [sym_ternary_expression] = STATE(2576), - [sym_elvis_expression] = STATE(2576), - [sym_binary_expression] = STATE(2576), - [sym_unary_operator] = STATE(1688), - [sym_unary_expression] = STATE(2576), - [sym_update_expression] = STATE(2576), - [sym_string] = STATE(3567), - [sym_regex] = STATE(2575), - [sym_number] = STATE(2575), - [sym_this] = STATE(2575), - [sym_super] = STATE(2575), - [sym_true] = STATE(2575), - [sym_false] = STATE(2575), - [sym_null] = STATE(3567), - [sym_undefined] = STATE(3567), - [sym_java_class_block] = STATE(2575), - [sym_formal_parameters] = STATE(4839), - [sym__hash_always_eval] = STATE(2426), - [sym_hash_expression] = STATE(2426), - [sym_template_string] = STATE(2575), - [sym_query_expression] = STATE(2576), - [sym_identifier] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_Query] = ACTIONS(4755), - [anon_sym_query] = ACTIONS(4755), - [anon_sym_QUERY] = ACTIONS(4755), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [aux_sym_unary_operator_token1] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_DQUOTE] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(445), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(447), - [aux_sym_number_token2] = ACTIONS(1772), - [anon_sym_This] = ACTIONS(449), - [anon_sym_this] = ACTIONS(449), - [anon_sym_THIS] = ACTIONS(449), - [anon_sym_Super] = ACTIONS(451), - [anon_sym_super] = ACTIONS(451), - [anon_sym_SUPER] = ACTIONS(451), - [anon_sym_True] = ACTIONS(453), - [anon_sym_true] = ACTIONS(453), - [anon_sym_TRUE] = ACTIONS(453), - [anon_sym_False] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_FALSE] = ACTIONS(455), - [anon_sym_Null] = ACTIONS(457), - [anon_sym_null] = ACTIONS(457), - [anon_sym_NULL] = ACTIONS(457), - [anon_sym_Undefined] = ACTIONS(459), - [anon_sym_undefined] = ACTIONS(459), - [anon_sym_UNDEFINED] = ACTIONS(459), - [anon_sym_get] = ACTIONS(4755), - [anon_sym_set] = ACTIONS(4755), - [anon_sym_POUND] = ACTIONS(461), - [sym_hash_empty] = ACTIONS(463), - [anon_sym_export] = ACTIONS(4755), - [anon_sym_QueryExecute] = ACTIONS(4759), - [anon_sym_queryexecute] = ACTIONS(4759), - [anon_sym_QUERYEXECUTE] = ACTIONS(4759), - [anon_sym_queryExecute] = ACTIONS(4759), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_Abstract] = ACTIONS(4755), - [anon_sym_abstract] = ACTIONS(4755), - [anon_sym_ABSTRACT] = ACTIONS(4755), - [anon_sym_Component] = ACTIONS(4755), - [anon_sym_component] = ACTIONS(4755), - [anon_sym_COMPONENT] = ACTIONS(4755), - [anon_sym_Debugger] = ACTIONS(4755), - [anon_sym_debugger] = ACTIONS(4755), - [anon_sym_DEBUGGER] = ACTIONS(4755), - [anon_sym_Final] = ACTIONS(4755), - [anon_sym_final] = ACTIONS(4755), - [anon_sym_FINAL] = ACTIONS(4755), - [anon_sym_Function] = ACTIONS(4761), - [anon_sym_function] = ACTIONS(4761), - [anon_sym_FUNCTION] = ACTIONS(4761), - [anon_sym_Include] = ACTIONS(4755), - [anon_sym_include] = ACTIONS(4755), - [anon_sym_INCLUDE] = ACTIONS(4755), - [anon_sym_New] = ACTIONS(4763), - [anon_sym_new] = ACTIONS(4763), - [anon_sym_NEW] = ACTIONS(4763), - [anon_sym_Package] = ACTIONS(4755), - [anon_sym_package] = ACTIONS(4755), - [anon_sym_PACKAGE] = ACTIONS(4755), - [anon_sym_Private] = ACTIONS(4755), - [anon_sym_private] = ACTIONS(4755), - [anon_sym_PRIVATE] = ACTIONS(4755), - [anon_sym_Public] = ACTIONS(4755), - [anon_sym_public] = ACTIONS(4755), - [anon_sym_PUBLIC] = ACTIONS(4755), - [anon_sym_Remote] = ACTIONS(4755), - [anon_sym_remote] = ACTIONS(4755), - [anon_sym_REMOTE] = ACTIONS(4755), - [anon_sym_Static] = ACTIONS(4755), - [anon_sym_static] = ACTIONS(4755), - [anon_sym_STATIC] = ACTIONS(4755), - [sym__java_block_open] = ACTIONS(482), - [sym__static_type_prefix] = ACTIONS(484), + [STATE(2021)] = { + [sym_parenthesized_expression] = STATE(363), + [sym_expression] = STATE(519), + [sym_primary_expression] = STATE(469), + [sym_object] = STATE(514), + [sym_object_pattern] = STATE(515), + [sym_array] = STATE(514), + [sym_ordered_struct] = STATE(514), + [sym_array_pattern] = STATE(5298), + [sym_function_expression] = STATE(514), + [sym_arrow_function] = STATE(514), + [sym_call_expression] = STATE(456), + [sym_new_expression] = STATE(457), + [sym_prefixed_type] = STATE(514), + [sym_function_listener_expression] = STATE(515), + [sym_member_expression] = STATE(363), + [sym_subscript_expression] = STATE(363), + [sym_assignment_expression] = STATE(515), + [sym__augmented_assignment_lhs] = STATE(3935), + [sym_augmented_assignment_expression] = STATE(515), + [sym__destructuring_pattern] = STATE(5298), + [sym_ternary_expression] = STATE(515), + [sym_elvis_expression] = STATE(515), + [sym_binary_expression] = STATE(515), + [sym_unary_operator] = STATE(1698), + [sym_unary_expression] = STATE(515), + [sym_update_expression] = STATE(515), + [sym_string] = STATE(470), + [sym_regex] = STATE(514), + [sym_number] = STATE(514), + [sym_this] = STATE(514), + [sym_super] = STATE(514), + [sym_true] = STATE(514), + [sym_false] = STATE(514), + [sym_null] = STATE(470), + [sym_undefined] = STATE(470), + [sym_java_class_block] = STATE(514), + [sym_formal_parameters] = STATE(4951), + [sym__hash_always_eval] = STATE(465), + [sym_hash_expression] = STATE(465), + [sym_template_string] = STATE(514), + [sym_query_expression] = STATE(515), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LBRACE] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_let] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4280), + [anon_sym_Query] = ACTIONS(4278), + [anon_sym_query] = ACTIONS(4278), + [anon_sym_QUERY] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [aux_sym_unary_operator_token1] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4286), + [anon_sym_SQUOTE] = ACTIONS(4288), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(4290), + [aux_sym_number_token2] = ACTIONS(4292), + [anon_sym_This] = ACTIONS(4294), + [anon_sym_this] = ACTIONS(4294), + [anon_sym_THIS] = ACTIONS(4294), + [anon_sym_Super] = ACTIONS(4296), + [anon_sym_super] = ACTIONS(4296), + [anon_sym_SUPER] = ACTIONS(4296), + [anon_sym_True] = ACTIONS(4298), + [anon_sym_true] = ACTIONS(4298), + [anon_sym_TRUE] = ACTIONS(4298), + [anon_sym_False] = ACTIONS(4300), + [anon_sym_false] = ACTIONS(4300), + [anon_sym_FALSE] = ACTIONS(4300), + [anon_sym_Null] = ACTIONS(4302), + [anon_sym_null] = ACTIONS(4302), + [anon_sym_NULL] = ACTIONS(4302), + [anon_sym_Undefined] = ACTIONS(4304), + [anon_sym_undefined] = ACTIONS(4304), + [anon_sym_UNDEFINED] = ACTIONS(4304), + [anon_sym_get] = ACTIONS(4278), + [anon_sym_set] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4306), + [sym_hash_empty] = ACTIONS(4308), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_QueryExecute] = ACTIONS(4310), + [anon_sym_queryexecute] = ACTIONS(4310), + [anon_sym_QUERYEXECUTE] = ACTIONS(4310), + [anon_sym_queryExecute] = ACTIONS(4310), + [anon_sym_BQUOTE] = ACTIONS(4312), + [anon_sym_Abstract] = ACTIONS(4278), + [anon_sym_abstract] = ACTIONS(4278), + [anon_sym_ABSTRACT] = ACTIONS(4278), + [anon_sym_Component] = ACTIONS(4278), + [anon_sym_component] = ACTIONS(4278), + [anon_sym_COMPONENT] = ACTIONS(4278), + [anon_sym_Debugger] = ACTIONS(4278), + [anon_sym_debugger] = ACTIONS(4278), + [anon_sym_DEBUGGER] = ACTIONS(4278), + [anon_sym_Final] = ACTIONS(4278), + [anon_sym_final] = ACTIONS(4278), + [anon_sym_FINAL] = ACTIONS(4278), + [anon_sym_Function] = ACTIONS(4314), + [anon_sym_function] = ACTIONS(4314), + [anon_sym_FUNCTION] = ACTIONS(4314), + [anon_sym_Include] = ACTIONS(4278), + [anon_sym_include] = ACTIONS(4278), + [anon_sym_INCLUDE] = ACTIONS(4278), + [anon_sym_New] = ACTIONS(4316), + [anon_sym_new] = ACTIONS(4316), + [anon_sym_NEW] = ACTIONS(4316), + [anon_sym_Package] = ACTIONS(4278), + [anon_sym_package] = ACTIONS(4278), + [anon_sym_PACKAGE] = ACTIONS(4278), + [anon_sym_Private] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_PRIVATE] = ACTIONS(4278), + [anon_sym_Public] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_PUBLIC] = ACTIONS(4278), + [anon_sym_Remote] = ACTIONS(4278), + [anon_sym_remote] = ACTIONS(4278), + [anon_sym_REMOTE] = ACTIONS(4278), + [anon_sym_Static] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_STATIC] = ACTIONS(4278), + [sym__java_block_open] = ACTIONS(4318), + [sym__static_type_prefix] = ACTIONS(4320), }, - [STATE(1994)] = { - [sym_statement_block] = STATE(938), + [STATE(2022)] = { + [sym_statement_block] = STATE(944), [sym_identifier] = ACTIONS(471), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5027), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(553), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(471), @@ -324910,14 +328796,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(1995)] = { + [STATE(2023)] = { [sym_identifier] = ACTIONS(471), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(565), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(471), @@ -324995,9 +328881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Component] = ACTIONS(559), - [anon_sym_component] = ACTIONS(559), - [anon_sym_COMPONENT] = ACTIONS(559), + [anon_sym_Component] = ACTIONS(569), + [anon_sym_component] = ACTIONS(569), + [anon_sym_COMPONENT] = ACTIONS(569), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), @@ -325014,9 +328900,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(559), - [anon_sym_interface] = ACTIONS(559), - [anon_sym_INTERFACE] = ACTIONS(559), + [anon_sym_Interface] = ACTIONS(569), + [anon_sym_interface] = ACTIONS(569), + [anon_sym_INTERFACE] = ACTIONS(569), [anon_sym_Package] = ACTIONS(471), [anon_sym_package] = ACTIONS(471), [anon_sym_PACKAGE] = ACTIONS(471), @@ -325037,14 +328923,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(1996)] = { + [STATE(2024)] = { [sym_identifier] = ACTIONS(471), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(553), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(471), @@ -325164,14 +329050,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(1997)] = { + [STATE(2025)] = { [sym_identifier] = ACTIONS(471), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(557), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(471), @@ -325249,9 +329135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Component] = ACTIONS(569), - [anon_sym_component] = ACTIONS(569), - [anon_sym_COMPONENT] = ACTIONS(569), + [anon_sym_Component] = ACTIONS(561), + [anon_sym_component] = ACTIONS(561), + [anon_sym_COMPONENT] = ACTIONS(561), [anon_sym_Default] = ACTIONS(471), [anon_sym_default] = ACTIONS(471), [anon_sym_DEFAULT] = ACTIONS(471), @@ -325268,9 +329154,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Interface] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(569), - [anon_sym_INTERFACE] = ACTIONS(569), + [anon_sym_Interface] = ACTIONS(561), + [anon_sym_interface] = ACTIONS(561), + [anon_sym_INTERFACE] = ACTIONS(561), [anon_sym_Package] = ACTIONS(471), [anon_sym_package] = ACTIONS(471), [anon_sym_PACKAGE] = ACTIONS(471), @@ -325291,16 +329177,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(1998)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(5021), + [STATE(2026)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -325380,12 +329266,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -325416,16 +329302,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(1999)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [sym_identifier] = ACTIONS(5021), + [STATE(2027)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_Query] = ACTIONS(471), + [anon_sym_query] = ACTIONS(471), + [anon_sym_QUERY] = ACTIONS(471), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_Abstract] = ACTIONS(471), + [anon_sym_abstract] = ACTIONS(471), + [anon_sym_ABSTRACT] = ACTIONS(471), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), + [anon_sym_Function] = ACTIONS(471), + [anon_sym_function] = ACTIONS(471), + [anon_sym_FUNCTION] = ACTIONS(471), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_Package] = ACTIONS(471), + [anon_sym_package] = ACTIONS(471), + [anon_sym_PACKAGE] = ACTIONS(471), + [anon_sym_Private] = ACTIONS(471), + [anon_sym_private] = ACTIONS(471), + [anon_sym_PRIVATE] = ACTIONS(471), + [anon_sym_Public] = ACTIONS(471), + [anon_sym_public] = ACTIONS(471), + [anon_sym_PUBLIC] = ACTIONS(471), + [anon_sym_Remote] = ACTIONS(471), + [anon_sym_remote] = ACTIONS(471), + [anon_sym_REMOTE] = ACTIONS(471), + [anon_sym_Static] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_STATIC] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2028)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(5029), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -325505,12 +329516,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -325541,141 +329552,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2000)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_Query] = ACTIONS(471), - [anon_sym_query] = ACTIONS(471), - [anon_sym_QUERY] = ACTIONS(471), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_Abstract] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), - [anon_sym_Function] = ACTIONS(471), - [anon_sym_function] = ACTIONS(471), - [anon_sym_FUNCTION] = ACTIONS(471), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Package] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_PACKAGE] = ACTIONS(471), - [anon_sym_Private] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_PRIVATE] = ACTIONS(471), - [anon_sym_Public] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_PUBLIC] = ACTIONS(471), - [anon_sym_Remote] = ACTIONS(471), - [anon_sym_remote] = ACTIONS(471), - [anon_sym_REMOTE] = ACTIONS(471), - [anon_sym_Static] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_STATIC] = ACTIONS(471), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(2001)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [sym_identifier] = ACTIONS(5021), + [STATE(2029)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -325755,12 +329641,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -325791,16 +329677,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2002)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [sym_identifier] = ACTIONS(5021), + [STATE(2030)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -325880,12 +329766,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -325916,16 +329802,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2003)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(5021), + [STATE(2031)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -326005,12 +329891,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -326041,16 +329927,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2004)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [sym_identifier] = ACTIONS(5021), + [STATE(2032)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -326130,12 +330016,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -326166,16 +330052,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2005)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(5021), + [STATE(2033)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -326255,12 +330141,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -326291,16 +330177,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2006)] = { - [sym__plain_declarator] = STATE(4518), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(5021), + [STATE(2034)] = { + [sym__plain_declarator] = STATE(4476), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -326380,12 +330266,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -326416,15 +330302,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2007)] = { - [sym__plain_declarator] = STATE(4518), - [sym_identifier] = ACTIONS(5021), + [STATE(2035)] = { + [sym__plain_declarator] = STATE(4476), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(553), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(471), @@ -326502,12 +330388,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5027), - [anon_sym_final] = ACTIONS(5027), - [anon_sym_FINAL] = ACTIONS(5027), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_FINAL] = ACTIONS(5035), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -326538,15 +330424,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2008)] = { - [sym__plain_declarator] = STATE(4513), - [sym_identifier] = ACTIONS(5021), + [STATE(2036)] = { + [sym__plain_declarator] = STATE(4591), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(557), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_Query] = ACTIONS(471), @@ -326624,12 +330510,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5030), - [anon_sym_final] = ACTIONS(5030), - [anon_sym_FINAL] = ACTIONS(5030), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5038), + [anon_sym_final] = ACTIONS(5038), + [anon_sym_FINAL] = ACTIONS(5038), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -326660,9 +330546,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2009)] = { - [sym__plain_declarator] = STATE(4515), - [sym_identifier] = ACTIONS(5021), + [STATE(2037)] = { + [sym__plain_declarator] = STATE(4481), + [sym_identifier] = ACTIONS(5029), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), @@ -326746,12 +330632,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Abstract] = ACTIONS(471), [anon_sym_abstract] = ACTIONS(471), [anon_sym_ABSTRACT] = ACTIONS(471), - [anon_sym_Default] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_DEFAULT] = ACTIONS(5024), - [anon_sym_Final] = ACTIONS(5033), - [anon_sym_final] = ACTIONS(5033), - [anon_sym_FINAL] = ACTIONS(5033), + [anon_sym_Default] = ACTIONS(5032), + [anon_sym_default] = ACTIONS(5032), + [anon_sym_DEFAULT] = ACTIONS(5032), + [anon_sym_Final] = ACTIONS(5041), + [anon_sym_final] = ACTIONS(5041), + [anon_sym_FINAL] = ACTIONS(5041), [anon_sym_Function] = ACTIONS(471), [anon_sym_function] = ACTIONS(471), [anon_sym_FUNCTION] = ACTIONS(471), @@ -326782,850 +330668,850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2010)] = { - [aux_sym_path_repeat1] = STATE(2010), - [sym_identifier] = ACTIONS(5036), - [anon_sym_DOT] = ACTIONS(5038), - [anon_sym_COMMA] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5041), - [anon_sym_RPAREN] = ACTIONS(5041), - [anon_sym_let] = ACTIONS(5036), - [anon_sym_LBRACK] = ACTIONS(5036), - [anon_sym_Query] = ACTIONS(5036), - [anon_sym_query] = ACTIONS(5036), - [anon_sym_QUERY] = ACTIONS(5036), - [sym_array_return_suffix] = ACTIONS(5041), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5036), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_SLASH] = ACTIONS(5036), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_TILDE] = ACTIONS(5041), - [aux_sym_unary_operator_token1] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5041), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DQUOTE] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5036), - [aux_sym_number_token2] = ACTIONS(5036), - [anon_sym_This] = ACTIONS(5036), - [anon_sym_this] = ACTIONS(5036), - [anon_sym_THIS] = ACTIONS(5036), - [anon_sym_Super] = ACTIONS(5036), - [anon_sym_super] = ACTIONS(5036), - [anon_sym_SUPER] = ACTIONS(5036), - [anon_sym_True] = ACTIONS(5036), - [anon_sym_true] = ACTIONS(5036), - [anon_sym_TRUE] = ACTIONS(5036), - [anon_sym_False] = ACTIONS(5036), - [anon_sym_false] = ACTIONS(5036), - [anon_sym_FALSE] = ACTIONS(5036), - [anon_sym_Null] = ACTIONS(5036), - [anon_sym_null] = ACTIONS(5036), - [anon_sym_NULL] = ACTIONS(5036), - [anon_sym_Undefined] = ACTIONS(5036), - [anon_sym_undefined] = ACTIONS(5036), - [anon_sym_UNDEFINED] = ACTIONS(5036), - [anon_sym_get] = ACTIONS(5036), - [anon_sym_set] = ACTIONS(5036), - [anon_sym_POUND] = ACTIONS(5036), - [sym_hash_empty] = ACTIONS(5041), - [anon_sym_export] = ACTIONS(5036), - [anon_sym_QueryExecute] = ACTIONS(5036), - [anon_sym_queryexecute] = ACTIONS(5036), - [anon_sym_QUERYEXECUTE] = ACTIONS(5036), - [anon_sym_queryExecute] = ACTIONS(5036), - [anon_sym_BQUOTE] = ACTIONS(5041), - [anon_sym_Abstract] = ACTIONS(5036), - [anon_sym_abstract] = ACTIONS(5036), - [anon_sym_ABSTRACT] = ACTIONS(5036), - [anon_sym_Component] = ACTIONS(5036), - [anon_sym_component] = ACTIONS(5036), - [anon_sym_COMPONENT] = ACTIONS(5036), - [anon_sym_Debugger] = ACTIONS(5036), - [anon_sym_debugger] = ACTIONS(5036), - [anon_sym_DEBUGGER] = ACTIONS(5036), - [anon_sym_Final] = ACTIONS(5036), - [anon_sym_final] = ACTIONS(5036), - [anon_sym_FINAL] = ACTIONS(5036), - [anon_sym_Function] = ACTIONS(5036), - [anon_sym_function] = ACTIONS(5036), - [anon_sym_FUNCTION] = ACTIONS(5036), - [anon_sym_In] = ACTIONS(5036), - [anon_sym_in] = ACTIONS(5036), - [anon_sym_IN] = ACTIONS(5036), - [anon_sym_Include] = ACTIONS(5036), - [anon_sym_include] = ACTIONS(5036), - [anon_sym_INCLUDE] = ACTIONS(5036), - [anon_sym_InstanceOf] = ACTIONS(5036), - [anon_sym_instanceof] = ACTIONS(5036), - [anon_sym_INSTANCEOF] = ACTIONS(5036), - [anon_sym_instanceOf] = ACTIONS(5036), - [anon_sym_New] = ACTIONS(5036), - [anon_sym_new] = ACTIONS(5036), - [anon_sym_NEW] = ACTIONS(5036), - [anon_sym_Package] = ACTIONS(5036), - [anon_sym_package] = ACTIONS(5036), - [anon_sym_PACKAGE] = ACTIONS(5036), - [anon_sym_Private] = ACTIONS(5036), - [anon_sym_private] = ACTIONS(5036), - [anon_sym_PRIVATE] = ACTIONS(5036), - [anon_sym_Public] = ACTIONS(5036), - [anon_sym_public] = ACTIONS(5036), - [anon_sym_PUBLIC] = ACTIONS(5036), - [anon_sym_Remote] = ACTIONS(5036), - [anon_sym_remote] = ACTIONS(5036), - [anon_sym_REMOTE] = ACTIONS(5036), - [anon_sym_Static] = ACTIONS(5036), - [anon_sym_static] = ACTIONS(5036), - [anon_sym_STATIC] = ACTIONS(5036), - [sym__java_block_open] = ACTIONS(5041), - [sym__static_type_prefix] = ACTIONS(5041), - [sym__parameter_separator] = ACTIONS(5041), + [STATE(2038)] = { + [sym_formal_parameters] = STATE(1263), + [sym_identifier] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1838), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_IN] = ACTIONS(1843), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1843), + [anon_sym_instanceof] = ACTIONS(1843), + [anon_sym_INSTANCEOF] = ACTIONS(1843), + [anon_sym_instanceOf] = ACTIONS(1843), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1875), }, - [STATE(2011)] = { - [sym_formal_parameters] = STATE(1249), - [sym_identifier] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1842), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_IN] = ACTIONS(1847), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1847), - [anon_sym_instanceof] = ACTIONS(1847), - [anon_sym_INSTANCEOF] = ACTIONS(1847), - [anon_sym_instanceOf] = ACTIONS(1847), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1882), + [STATE(2039)] = { + [aux_sym_path_repeat1] = STATE(2041), + [sym_identifier] = ACTIONS(5054), + [anon_sym_DOT] = ACTIONS(5056), + [anon_sym_COMMA] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5058), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_RPAREN] = ACTIONS(5058), + [anon_sym_let] = ACTIONS(5054), + [anon_sym_LBRACK] = ACTIONS(5054), + [anon_sym_Query] = ACTIONS(5054), + [anon_sym_query] = ACTIONS(5054), + [anon_sym_QUERY] = ACTIONS(5054), + [sym_array_return_suffix] = ACTIONS(5058), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5054), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5058), + [anon_sym_PLUS] = ACTIONS(5054), + [anon_sym_DASH] = ACTIONS(5054), + [anon_sym_SLASH] = ACTIONS(5054), + [anon_sym_BANG] = ACTIONS(5058), + [anon_sym_TILDE] = ACTIONS(5058), + [aux_sym_unary_operator_token1] = ACTIONS(5054), + [anon_sym_PLUS_PLUS] = ACTIONS(5058), + [anon_sym_DASH_DASH] = ACTIONS(5058), + [anon_sym_DQUOTE] = ACTIONS(5058), + [anon_sym_SQUOTE] = ACTIONS(5058), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5054), + [aux_sym_number_token2] = ACTIONS(5054), + [anon_sym_This] = ACTIONS(5054), + [anon_sym_this] = ACTIONS(5054), + [anon_sym_THIS] = ACTIONS(5054), + [anon_sym_Super] = ACTIONS(5054), + [anon_sym_super] = ACTIONS(5054), + [anon_sym_SUPER] = ACTIONS(5054), + [anon_sym_True] = ACTIONS(5054), + [anon_sym_true] = ACTIONS(5054), + [anon_sym_TRUE] = ACTIONS(5054), + [anon_sym_False] = ACTIONS(5054), + [anon_sym_false] = ACTIONS(5054), + [anon_sym_FALSE] = ACTIONS(5054), + [anon_sym_Null] = ACTIONS(5054), + [anon_sym_null] = ACTIONS(5054), + [anon_sym_NULL] = ACTIONS(5054), + [anon_sym_Undefined] = ACTIONS(5054), + [anon_sym_undefined] = ACTIONS(5054), + [anon_sym_UNDEFINED] = ACTIONS(5054), + [anon_sym_get] = ACTIONS(5054), + [anon_sym_set] = ACTIONS(5054), + [anon_sym_POUND] = ACTIONS(5054), + [sym_hash_empty] = ACTIONS(5058), + [anon_sym_export] = ACTIONS(5054), + [anon_sym_QueryExecute] = ACTIONS(5054), + [anon_sym_queryexecute] = ACTIONS(5054), + [anon_sym_QUERYEXECUTE] = ACTIONS(5054), + [anon_sym_queryExecute] = ACTIONS(5054), + [anon_sym_BQUOTE] = ACTIONS(5058), + [anon_sym_Abstract] = ACTIONS(5054), + [anon_sym_abstract] = ACTIONS(5054), + [anon_sym_ABSTRACT] = ACTIONS(5054), + [anon_sym_Component] = ACTIONS(5054), + [anon_sym_component] = ACTIONS(5054), + [anon_sym_COMPONENT] = ACTIONS(5054), + [anon_sym_Debugger] = ACTIONS(5054), + [anon_sym_debugger] = ACTIONS(5054), + [anon_sym_DEBUGGER] = ACTIONS(5054), + [anon_sym_Final] = ACTIONS(5054), + [anon_sym_final] = ACTIONS(5054), + [anon_sym_FINAL] = ACTIONS(5054), + [anon_sym_Function] = ACTIONS(5054), + [anon_sym_function] = ACTIONS(5054), + [anon_sym_FUNCTION] = ACTIONS(5054), + [anon_sym_In] = ACTIONS(5054), + [anon_sym_in] = ACTIONS(5054), + [anon_sym_IN] = ACTIONS(5054), + [anon_sym_Include] = ACTIONS(5054), + [anon_sym_include] = ACTIONS(5054), + [anon_sym_INCLUDE] = ACTIONS(5054), + [anon_sym_InstanceOf] = ACTIONS(5054), + [anon_sym_instanceof] = ACTIONS(5054), + [anon_sym_INSTANCEOF] = ACTIONS(5054), + [anon_sym_instanceOf] = ACTIONS(5054), + [anon_sym_New] = ACTIONS(5054), + [anon_sym_new] = ACTIONS(5054), + [anon_sym_NEW] = ACTIONS(5054), + [anon_sym_Package] = ACTIONS(5054), + [anon_sym_package] = ACTIONS(5054), + [anon_sym_PACKAGE] = ACTIONS(5054), + [anon_sym_Private] = ACTIONS(5054), + [anon_sym_private] = ACTIONS(5054), + [anon_sym_PRIVATE] = ACTIONS(5054), + [anon_sym_Public] = ACTIONS(5054), + [anon_sym_public] = ACTIONS(5054), + [anon_sym_PUBLIC] = ACTIONS(5054), + [anon_sym_Remote] = ACTIONS(5054), + [anon_sym_remote] = ACTIONS(5054), + [anon_sym_REMOTE] = ACTIONS(5054), + [anon_sym_Static] = ACTIONS(5054), + [anon_sym_static] = ACTIONS(5054), + [anon_sym_STATIC] = ACTIONS(5054), + [sym__java_block_open] = ACTIONS(5058), + [sym__static_type_prefix] = ACTIONS(5058), + [sym__parameter_separator] = ACTIONS(5058), }, - [STATE(2012)] = { - [aux_sym_path_repeat1] = STATE(2010), - [sym_identifier] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5057), - [anon_sym_LBRACE] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5057), - [anon_sym_RPAREN] = ACTIONS(5057), - [anon_sym_let] = ACTIONS(5053), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_Query] = ACTIONS(5053), - [anon_sym_query] = ACTIONS(5053), - [anon_sym_QUERY] = ACTIONS(5053), - [sym_array_return_suffix] = ACTIONS(5057), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5053), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_TILDE] = ACTIONS(5057), - [aux_sym_unary_operator_token1] = ACTIONS(5053), - [anon_sym_PLUS_PLUS] = ACTIONS(5057), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DQUOTE] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5053), - [aux_sym_number_token2] = ACTIONS(5053), - [anon_sym_This] = ACTIONS(5053), - [anon_sym_this] = ACTIONS(5053), - [anon_sym_THIS] = ACTIONS(5053), - [anon_sym_Super] = ACTIONS(5053), - [anon_sym_super] = ACTIONS(5053), - [anon_sym_SUPER] = ACTIONS(5053), - [anon_sym_True] = ACTIONS(5053), - [anon_sym_true] = ACTIONS(5053), - [anon_sym_TRUE] = ACTIONS(5053), - [anon_sym_False] = ACTIONS(5053), - [anon_sym_false] = ACTIONS(5053), - [anon_sym_FALSE] = ACTIONS(5053), - [anon_sym_Null] = ACTIONS(5053), - [anon_sym_null] = ACTIONS(5053), - [anon_sym_NULL] = ACTIONS(5053), - [anon_sym_Undefined] = ACTIONS(5053), - [anon_sym_undefined] = ACTIONS(5053), - [anon_sym_UNDEFINED] = ACTIONS(5053), - [anon_sym_get] = ACTIONS(5053), - [anon_sym_set] = ACTIONS(5053), - [anon_sym_POUND] = ACTIONS(5053), - [sym_hash_empty] = ACTIONS(5057), - [anon_sym_export] = ACTIONS(5053), - [anon_sym_QueryExecute] = ACTIONS(5053), - [anon_sym_queryexecute] = ACTIONS(5053), - [anon_sym_QUERYEXECUTE] = ACTIONS(5053), - [anon_sym_queryExecute] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5057), - [anon_sym_Abstract] = ACTIONS(5053), - [anon_sym_abstract] = ACTIONS(5053), - [anon_sym_ABSTRACT] = ACTIONS(5053), - [anon_sym_Component] = ACTIONS(5053), - [anon_sym_component] = ACTIONS(5053), - [anon_sym_COMPONENT] = ACTIONS(5053), - [anon_sym_Debugger] = ACTIONS(5053), - [anon_sym_debugger] = ACTIONS(5053), - [anon_sym_DEBUGGER] = ACTIONS(5053), - [anon_sym_Final] = ACTIONS(5053), - [anon_sym_final] = ACTIONS(5053), - [anon_sym_FINAL] = ACTIONS(5053), - [anon_sym_Function] = ACTIONS(5053), - [anon_sym_function] = ACTIONS(5053), - [anon_sym_FUNCTION] = ACTIONS(5053), - [anon_sym_In] = ACTIONS(5053), - [anon_sym_in] = ACTIONS(5053), - [anon_sym_IN] = ACTIONS(5053), - [anon_sym_Include] = ACTIONS(5053), - [anon_sym_include] = ACTIONS(5053), - [anon_sym_INCLUDE] = ACTIONS(5053), - [anon_sym_InstanceOf] = ACTIONS(5053), - [anon_sym_instanceof] = ACTIONS(5053), - [anon_sym_INSTANCEOF] = ACTIONS(5053), - [anon_sym_instanceOf] = ACTIONS(5053), - [anon_sym_New] = ACTIONS(5053), - [anon_sym_new] = ACTIONS(5053), - [anon_sym_NEW] = ACTIONS(5053), - [anon_sym_Package] = ACTIONS(5053), - [anon_sym_package] = ACTIONS(5053), - [anon_sym_PACKAGE] = ACTIONS(5053), - [anon_sym_Private] = ACTIONS(5053), - [anon_sym_private] = ACTIONS(5053), - [anon_sym_PRIVATE] = ACTIONS(5053), - [anon_sym_Public] = ACTIONS(5053), - [anon_sym_public] = ACTIONS(5053), - [anon_sym_PUBLIC] = ACTIONS(5053), - [anon_sym_Remote] = ACTIONS(5053), - [anon_sym_remote] = ACTIONS(5053), - [anon_sym_REMOTE] = ACTIONS(5053), - [anon_sym_Static] = ACTIONS(5053), - [anon_sym_static] = ACTIONS(5053), - [anon_sym_STATIC] = ACTIONS(5053), - [sym__java_block_open] = ACTIONS(5057), - [sym__static_type_prefix] = ACTIONS(5057), - [sym__parameter_separator] = ACTIONS(5057), + [STATE(2040)] = { + [sym_formal_parameters] = STATE(1263), + [sym_identifier] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(5048), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1838), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_IN] = ACTIONS(1843), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1843), + [anon_sym_instanceof] = ACTIONS(1843), + [anon_sym_INSTANCEOF] = ACTIONS(1843), + [anon_sym_instanceOf] = ACTIONS(1843), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1875), }, - [STATE(2013)] = { - [sym_formal_parameters] = STATE(1249), - [sym_identifier] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1842), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_IN] = ACTIONS(1847), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1847), - [anon_sym_instanceof] = ACTIONS(1847), - [anon_sym_INSTANCEOF] = ACTIONS(1847), - [anon_sym_instanceOf] = ACTIONS(1847), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1882), + [STATE(2041)] = { + [aux_sym_path_repeat1] = STATE(2041), + [sym_identifier] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_let] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_Query] = ACTIONS(5063), + [anon_sym_query] = ACTIONS(5063), + [anon_sym_QUERY] = ACTIONS(5063), + [sym_array_return_suffix] = ACTIONS(5068), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_BANG] = ACTIONS(5068), + [anon_sym_TILDE] = ACTIONS(5068), + [aux_sym_unary_operator_token1] = ACTIONS(5063), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_DQUOTE] = ACTIONS(5068), + [anon_sym_SQUOTE] = ACTIONS(5068), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5063), + [aux_sym_number_token2] = ACTIONS(5063), + [anon_sym_This] = ACTIONS(5063), + [anon_sym_this] = ACTIONS(5063), + [anon_sym_THIS] = ACTIONS(5063), + [anon_sym_Super] = ACTIONS(5063), + [anon_sym_super] = ACTIONS(5063), + [anon_sym_SUPER] = ACTIONS(5063), + [anon_sym_True] = ACTIONS(5063), + [anon_sym_true] = ACTIONS(5063), + [anon_sym_TRUE] = ACTIONS(5063), + [anon_sym_False] = ACTIONS(5063), + [anon_sym_false] = ACTIONS(5063), + [anon_sym_FALSE] = ACTIONS(5063), + [anon_sym_Null] = ACTIONS(5063), + [anon_sym_null] = ACTIONS(5063), + [anon_sym_NULL] = ACTIONS(5063), + [anon_sym_Undefined] = ACTIONS(5063), + [anon_sym_undefined] = ACTIONS(5063), + [anon_sym_UNDEFINED] = ACTIONS(5063), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(5063), + [sym_hash_empty] = ACTIONS(5068), + [anon_sym_export] = ACTIONS(5063), + [anon_sym_QueryExecute] = ACTIONS(5063), + [anon_sym_queryexecute] = ACTIONS(5063), + [anon_sym_QUERYEXECUTE] = ACTIONS(5063), + [anon_sym_queryExecute] = ACTIONS(5063), + [anon_sym_BQUOTE] = ACTIONS(5068), + [anon_sym_Abstract] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_ABSTRACT] = ACTIONS(5063), + [anon_sym_Component] = ACTIONS(5063), + [anon_sym_component] = ACTIONS(5063), + [anon_sym_COMPONENT] = ACTIONS(5063), + [anon_sym_Debugger] = ACTIONS(5063), + [anon_sym_debugger] = ACTIONS(5063), + [anon_sym_DEBUGGER] = ACTIONS(5063), + [anon_sym_Final] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_FINAL] = ACTIONS(5063), + [anon_sym_Function] = ACTIONS(5063), + [anon_sym_function] = ACTIONS(5063), + [anon_sym_FUNCTION] = ACTIONS(5063), + [anon_sym_In] = ACTIONS(5063), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_IN] = ACTIONS(5063), + [anon_sym_Include] = ACTIONS(5063), + [anon_sym_include] = ACTIONS(5063), + [anon_sym_INCLUDE] = ACTIONS(5063), + [anon_sym_InstanceOf] = ACTIONS(5063), + [anon_sym_instanceof] = ACTIONS(5063), + [anon_sym_INSTANCEOF] = ACTIONS(5063), + [anon_sym_instanceOf] = ACTIONS(5063), + [anon_sym_New] = ACTIONS(5063), + [anon_sym_new] = ACTIONS(5063), + [anon_sym_NEW] = ACTIONS(5063), + [anon_sym_Package] = ACTIONS(5063), + [anon_sym_package] = ACTIONS(5063), + [anon_sym_PACKAGE] = ACTIONS(5063), + [anon_sym_Private] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_PRIVATE] = ACTIONS(5063), + [anon_sym_Public] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_PUBLIC] = ACTIONS(5063), + [anon_sym_Remote] = ACTIONS(5063), + [anon_sym_remote] = ACTIONS(5063), + [anon_sym_REMOTE] = ACTIONS(5063), + [anon_sym_Static] = ACTIONS(5063), + [anon_sym_static] = ACTIONS(5063), + [anon_sym_STATIC] = ACTIONS(5063), + [sym__java_block_open] = ACTIONS(5068), + [sym__static_type_prefix] = ACTIONS(5068), + [sym__parameter_separator] = ACTIONS(5068), }, - [STATE(2014)] = { - [aux_sym__formal_parameter_repeat1] = STATE(2014), - [sym_identifier] = ACTIONS(5062), - [anon_sym_COMMA] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_RPAREN] = ACTIONS(5064), - [anon_sym_let] = ACTIONS(5062), - [anon_sym_LBRACK] = ACTIONS(5062), - [anon_sym_Query] = ACTIONS(5062), - [anon_sym_query] = ACTIONS(5062), - [anon_sym_QUERY] = ACTIONS(5062), - [sym_array_return_suffix] = ACTIONS(5066), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5062), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5064), - [anon_sym_PLUS] = ACTIONS(5062), - [anon_sym_DASH] = ACTIONS(5062), - [anon_sym_SLASH] = ACTIONS(5062), - [anon_sym_BANG] = ACTIONS(5064), - [anon_sym_TILDE] = ACTIONS(5064), - [aux_sym_unary_operator_token1] = ACTIONS(5062), - [anon_sym_PLUS_PLUS] = ACTIONS(5064), - [anon_sym_DASH_DASH] = ACTIONS(5064), - [anon_sym_DQUOTE] = ACTIONS(5064), - [anon_sym_SQUOTE] = ACTIONS(5064), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5062), - [aux_sym_number_token2] = ACTIONS(5064), - [anon_sym_This] = ACTIONS(5062), - [anon_sym_this] = ACTIONS(5062), - [anon_sym_THIS] = ACTIONS(5062), - [anon_sym_Super] = ACTIONS(5062), - [anon_sym_super] = ACTIONS(5062), - [anon_sym_SUPER] = ACTIONS(5062), - [anon_sym_True] = ACTIONS(5062), - [anon_sym_true] = ACTIONS(5062), - [anon_sym_TRUE] = ACTIONS(5062), - [anon_sym_False] = ACTIONS(5062), - [anon_sym_false] = ACTIONS(5062), - [anon_sym_FALSE] = ACTIONS(5062), - [anon_sym_Null] = ACTIONS(5062), - [anon_sym_null] = ACTIONS(5062), - [anon_sym_NULL] = ACTIONS(5062), - [anon_sym_Undefined] = ACTIONS(5062), - [anon_sym_undefined] = ACTIONS(5062), - [anon_sym_UNDEFINED] = ACTIONS(5062), - [anon_sym_get] = ACTIONS(5062), - [anon_sym_set] = ACTIONS(5062), - [anon_sym_POUND] = ACTIONS(5062), - [sym_hash_empty] = ACTIONS(5064), - [anon_sym_export] = ACTIONS(5062), - [anon_sym_QueryExecute] = ACTIONS(5062), - [anon_sym_queryexecute] = ACTIONS(5062), - [anon_sym_QUERYEXECUTE] = ACTIONS(5062), - [anon_sym_queryExecute] = ACTIONS(5062), - [anon_sym_BQUOTE] = ACTIONS(5064), - [anon_sym_Abstract] = ACTIONS(5062), - [anon_sym_abstract] = ACTIONS(5062), - [anon_sym_ABSTRACT] = ACTIONS(5062), - [anon_sym_Component] = ACTIONS(5062), - [anon_sym_component] = ACTIONS(5062), - [anon_sym_COMPONENT] = ACTIONS(5062), - [anon_sym_Debugger] = ACTIONS(5062), - [anon_sym_debugger] = ACTIONS(5062), - [anon_sym_DEBUGGER] = ACTIONS(5062), - [anon_sym_Final] = ACTIONS(5062), - [anon_sym_final] = ACTIONS(5062), - [anon_sym_FINAL] = ACTIONS(5062), - [anon_sym_Function] = ACTIONS(5062), - [anon_sym_function] = ACTIONS(5062), - [anon_sym_FUNCTION] = ACTIONS(5062), - [anon_sym_In] = ACTIONS(5062), - [anon_sym_in] = ACTIONS(5062), - [anon_sym_IN] = ACTIONS(5062), - [anon_sym_Include] = ACTIONS(5062), - [anon_sym_include] = ACTIONS(5062), - [anon_sym_INCLUDE] = ACTIONS(5062), - [anon_sym_InstanceOf] = ACTIONS(5062), - [anon_sym_instanceof] = ACTIONS(5062), - [anon_sym_INSTANCEOF] = ACTIONS(5062), - [anon_sym_instanceOf] = ACTIONS(5062), - [anon_sym_New] = ACTIONS(5062), - [anon_sym_new] = ACTIONS(5062), - [anon_sym_NEW] = ACTIONS(5062), - [anon_sym_Package] = ACTIONS(5062), - [anon_sym_package] = ACTIONS(5062), - [anon_sym_PACKAGE] = ACTIONS(5062), - [anon_sym_Private] = ACTIONS(5062), - [anon_sym_private] = ACTIONS(5062), - [anon_sym_PRIVATE] = ACTIONS(5062), - [anon_sym_Public] = ACTIONS(5062), - [anon_sym_public] = ACTIONS(5062), - [anon_sym_PUBLIC] = ACTIONS(5062), - [anon_sym_Remote] = ACTIONS(5062), - [anon_sym_remote] = ACTIONS(5062), - [anon_sym_REMOTE] = ACTIONS(5062), - [anon_sym_Static] = ACTIONS(5062), - [anon_sym_static] = ACTIONS(5062), - [anon_sym_STATIC] = ACTIONS(5062), - [sym__java_block_open] = ACTIONS(5064), - [sym__static_type_prefix] = ACTIONS(5064), - [sym__parameter_separator] = ACTIONS(5064), + [STATE(2042)] = { + [sym_identifier] = ACTIONS(5063), + [anon_sym_DOT] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5068), + [anon_sym_LBRACE] = ACTIONS(5068), + [anon_sym_LPAREN] = ACTIONS(5068), + [anon_sym_RPAREN] = ACTIONS(5068), + [anon_sym_let] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_Query] = ACTIONS(5063), + [anon_sym_query] = ACTIONS(5063), + [anon_sym_QUERY] = ACTIONS(5063), + [sym_array_return_suffix] = ACTIONS(5068), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5063), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5068), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_BANG] = ACTIONS(5068), + [anon_sym_TILDE] = ACTIONS(5068), + [aux_sym_unary_operator_token1] = ACTIONS(5063), + [anon_sym_PLUS_PLUS] = ACTIONS(5068), + [anon_sym_DASH_DASH] = ACTIONS(5068), + [anon_sym_DQUOTE] = ACTIONS(5068), + [anon_sym_SQUOTE] = ACTIONS(5068), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5063), + [aux_sym_number_token2] = ACTIONS(5063), + [anon_sym_This] = ACTIONS(5063), + [anon_sym_this] = ACTIONS(5063), + [anon_sym_THIS] = ACTIONS(5063), + [anon_sym_Super] = ACTIONS(5063), + [anon_sym_super] = ACTIONS(5063), + [anon_sym_SUPER] = ACTIONS(5063), + [anon_sym_True] = ACTIONS(5063), + [anon_sym_true] = ACTIONS(5063), + [anon_sym_TRUE] = ACTIONS(5063), + [anon_sym_False] = ACTIONS(5063), + [anon_sym_false] = ACTIONS(5063), + [anon_sym_FALSE] = ACTIONS(5063), + [anon_sym_Null] = ACTIONS(5063), + [anon_sym_null] = ACTIONS(5063), + [anon_sym_NULL] = ACTIONS(5063), + [anon_sym_Undefined] = ACTIONS(5063), + [anon_sym_undefined] = ACTIONS(5063), + [anon_sym_UNDEFINED] = ACTIONS(5063), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5063), + [anon_sym_POUND] = ACTIONS(5063), + [sym_hash_empty] = ACTIONS(5068), + [anon_sym_export] = ACTIONS(5063), + [anon_sym_QueryExecute] = ACTIONS(5063), + [anon_sym_queryexecute] = ACTIONS(5063), + [anon_sym_QUERYEXECUTE] = ACTIONS(5063), + [anon_sym_queryExecute] = ACTIONS(5063), + [anon_sym_BQUOTE] = ACTIONS(5068), + [anon_sym_Abstract] = ACTIONS(5063), + [anon_sym_abstract] = ACTIONS(5063), + [anon_sym_ABSTRACT] = ACTIONS(5063), + [anon_sym_Component] = ACTIONS(5063), + [anon_sym_component] = ACTIONS(5063), + [anon_sym_COMPONENT] = ACTIONS(5063), + [anon_sym_Debugger] = ACTIONS(5063), + [anon_sym_debugger] = ACTIONS(5063), + [anon_sym_DEBUGGER] = ACTIONS(5063), + [anon_sym_Final] = ACTIONS(5063), + [anon_sym_final] = ACTIONS(5063), + [anon_sym_FINAL] = ACTIONS(5063), + [anon_sym_Function] = ACTIONS(5063), + [anon_sym_function] = ACTIONS(5063), + [anon_sym_FUNCTION] = ACTIONS(5063), + [anon_sym_In] = ACTIONS(5063), + [anon_sym_in] = ACTIONS(5063), + [anon_sym_IN] = ACTIONS(5063), + [anon_sym_Include] = ACTIONS(5063), + [anon_sym_include] = ACTIONS(5063), + [anon_sym_INCLUDE] = ACTIONS(5063), + [anon_sym_InstanceOf] = ACTIONS(5063), + [anon_sym_instanceof] = ACTIONS(5063), + [anon_sym_INSTANCEOF] = ACTIONS(5063), + [anon_sym_instanceOf] = ACTIONS(5063), + [anon_sym_New] = ACTIONS(5063), + [anon_sym_new] = ACTIONS(5063), + [anon_sym_NEW] = ACTIONS(5063), + [anon_sym_Package] = ACTIONS(5063), + [anon_sym_package] = ACTIONS(5063), + [anon_sym_PACKAGE] = ACTIONS(5063), + [anon_sym_Private] = ACTIONS(5063), + [anon_sym_private] = ACTIONS(5063), + [anon_sym_PRIVATE] = ACTIONS(5063), + [anon_sym_Public] = ACTIONS(5063), + [anon_sym_public] = ACTIONS(5063), + [anon_sym_PUBLIC] = ACTIONS(5063), + [anon_sym_Remote] = ACTIONS(5063), + [anon_sym_remote] = ACTIONS(5063), + [anon_sym_REMOTE] = ACTIONS(5063), + [anon_sym_Static] = ACTIONS(5063), + [anon_sym_static] = ACTIONS(5063), + [anon_sym_STATIC] = ACTIONS(5063), + [sym__java_block_open] = ACTIONS(5068), + [sym__static_type_prefix] = ACTIONS(5068), + [sym__parameter_separator] = ACTIONS(5068), }, - [STATE(2015)] = { - [sym_identifier] = ACTIONS(5036), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_COMMA] = ACTIONS(5041), - [anon_sym_LBRACE] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5041), - [anon_sym_RPAREN] = ACTIONS(5041), - [anon_sym_let] = ACTIONS(5036), - [anon_sym_LBRACK] = ACTIONS(5036), - [anon_sym_Query] = ACTIONS(5036), - [anon_sym_query] = ACTIONS(5036), - [anon_sym_QUERY] = ACTIONS(5036), - [sym_array_return_suffix] = ACTIONS(5041), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5036), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5036), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_SLASH] = ACTIONS(5036), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_TILDE] = ACTIONS(5041), - [aux_sym_unary_operator_token1] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5041), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DQUOTE] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5036), - [aux_sym_number_token2] = ACTIONS(5036), - [anon_sym_This] = ACTIONS(5036), - [anon_sym_this] = ACTIONS(5036), - [anon_sym_THIS] = ACTIONS(5036), - [anon_sym_Super] = ACTIONS(5036), - [anon_sym_super] = ACTIONS(5036), - [anon_sym_SUPER] = ACTIONS(5036), - [anon_sym_True] = ACTIONS(5036), - [anon_sym_true] = ACTIONS(5036), - [anon_sym_TRUE] = ACTIONS(5036), - [anon_sym_False] = ACTIONS(5036), - [anon_sym_false] = ACTIONS(5036), - [anon_sym_FALSE] = ACTIONS(5036), - [anon_sym_Null] = ACTIONS(5036), - [anon_sym_null] = ACTIONS(5036), - [anon_sym_NULL] = ACTIONS(5036), - [anon_sym_Undefined] = ACTIONS(5036), - [anon_sym_undefined] = ACTIONS(5036), - [anon_sym_UNDEFINED] = ACTIONS(5036), - [anon_sym_get] = ACTIONS(5036), - [anon_sym_set] = ACTIONS(5036), - [anon_sym_POUND] = ACTIONS(5036), - [sym_hash_empty] = ACTIONS(5041), - [anon_sym_export] = ACTIONS(5036), - [anon_sym_QueryExecute] = ACTIONS(5036), - [anon_sym_queryexecute] = ACTIONS(5036), - [anon_sym_QUERYEXECUTE] = ACTIONS(5036), - [anon_sym_queryExecute] = ACTIONS(5036), - [anon_sym_BQUOTE] = ACTIONS(5041), - [anon_sym_Abstract] = ACTIONS(5036), - [anon_sym_abstract] = ACTIONS(5036), - [anon_sym_ABSTRACT] = ACTIONS(5036), - [anon_sym_Component] = ACTIONS(5036), - [anon_sym_component] = ACTIONS(5036), - [anon_sym_COMPONENT] = ACTIONS(5036), - [anon_sym_Debugger] = ACTIONS(5036), - [anon_sym_debugger] = ACTIONS(5036), - [anon_sym_DEBUGGER] = ACTIONS(5036), - [anon_sym_Final] = ACTIONS(5036), - [anon_sym_final] = ACTIONS(5036), - [anon_sym_FINAL] = ACTIONS(5036), - [anon_sym_Function] = ACTIONS(5036), - [anon_sym_function] = ACTIONS(5036), - [anon_sym_FUNCTION] = ACTIONS(5036), - [anon_sym_In] = ACTIONS(5036), - [anon_sym_in] = ACTIONS(5036), - [anon_sym_IN] = ACTIONS(5036), - [anon_sym_Include] = ACTIONS(5036), - [anon_sym_include] = ACTIONS(5036), - [anon_sym_INCLUDE] = ACTIONS(5036), - [anon_sym_InstanceOf] = ACTIONS(5036), - [anon_sym_instanceof] = ACTIONS(5036), - [anon_sym_INSTANCEOF] = ACTIONS(5036), - [anon_sym_instanceOf] = ACTIONS(5036), - [anon_sym_New] = ACTIONS(5036), - [anon_sym_new] = ACTIONS(5036), - [anon_sym_NEW] = ACTIONS(5036), - [anon_sym_Package] = ACTIONS(5036), - [anon_sym_package] = ACTIONS(5036), - [anon_sym_PACKAGE] = ACTIONS(5036), - [anon_sym_Private] = ACTIONS(5036), - [anon_sym_private] = ACTIONS(5036), - [anon_sym_PRIVATE] = ACTIONS(5036), - [anon_sym_Public] = ACTIONS(5036), - [anon_sym_public] = ACTIONS(5036), - [anon_sym_PUBLIC] = ACTIONS(5036), - [anon_sym_Remote] = ACTIONS(5036), - [anon_sym_remote] = ACTIONS(5036), - [anon_sym_REMOTE] = ACTIONS(5036), - [anon_sym_Static] = ACTIONS(5036), - [anon_sym_static] = ACTIONS(5036), - [anon_sym_STATIC] = ACTIONS(5036), - [sym__java_block_open] = ACTIONS(5041), - [sym__static_type_prefix] = ACTIONS(5041), - [sym__parameter_separator] = ACTIONS(5041), + [STATE(2043)] = { + [aux_sym__formal_parameter_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(5070), + [anon_sym_COMMA] = ACTIONS(5072), + [anon_sym_LBRACE] = ACTIONS(5072), + [anon_sym_LPAREN] = ACTIONS(5072), + [anon_sym_RPAREN] = ACTIONS(5072), + [anon_sym_let] = ACTIONS(5070), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_Query] = ACTIONS(5070), + [anon_sym_query] = ACTIONS(5070), + [anon_sym_QUERY] = ACTIONS(5070), + [sym_array_return_suffix] = ACTIONS(5074), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5070), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5072), + [anon_sym_PLUS] = ACTIONS(5070), + [anon_sym_DASH] = ACTIONS(5070), + [anon_sym_SLASH] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5072), + [anon_sym_TILDE] = ACTIONS(5072), + [aux_sym_unary_operator_token1] = ACTIONS(5070), + [anon_sym_PLUS_PLUS] = ACTIONS(5072), + [anon_sym_DASH_DASH] = ACTIONS(5072), + [anon_sym_DQUOTE] = ACTIONS(5072), + [anon_sym_SQUOTE] = ACTIONS(5072), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5070), + [aux_sym_number_token2] = ACTIONS(5072), + [anon_sym_This] = ACTIONS(5070), + [anon_sym_this] = ACTIONS(5070), + [anon_sym_THIS] = ACTIONS(5070), + [anon_sym_Super] = ACTIONS(5070), + [anon_sym_super] = ACTIONS(5070), + [anon_sym_SUPER] = ACTIONS(5070), + [anon_sym_True] = ACTIONS(5070), + [anon_sym_true] = ACTIONS(5070), + [anon_sym_TRUE] = ACTIONS(5070), + [anon_sym_False] = ACTIONS(5070), + [anon_sym_false] = ACTIONS(5070), + [anon_sym_FALSE] = ACTIONS(5070), + [anon_sym_Null] = ACTIONS(5070), + [anon_sym_null] = ACTIONS(5070), + [anon_sym_NULL] = ACTIONS(5070), + [anon_sym_Undefined] = ACTIONS(5070), + [anon_sym_undefined] = ACTIONS(5070), + [anon_sym_UNDEFINED] = ACTIONS(5070), + [anon_sym_get] = ACTIONS(5070), + [anon_sym_set] = ACTIONS(5070), + [anon_sym_POUND] = ACTIONS(5070), + [sym_hash_empty] = ACTIONS(5072), + [anon_sym_export] = ACTIONS(5070), + [anon_sym_QueryExecute] = ACTIONS(5070), + [anon_sym_queryexecute] = ACTIONS(5070), + [anon_sym_QUERYEXECUTE] = ACTIONS(5070), + [anon_sym_queryExecute] = ACTIONS(5070), + [anon_sym_BQUOTE] = ACTIONS(5072), + [anon_sym_Abstract] = ACTIONS(5070), + [anon_sym_abstract] = ACTIONS(5070), + [anon_sym_ABSTRACT] = ACTIONS(5070), + [anon_sym_Component] = ACTIONS(5070), + [anon_sym_component] = ACTIONS(5070), + [anon_sym_COMPONENT] = ACTIONS(5070), + [anon_sym_Debugger] = ACTIONS(5070), + [anon_sym_debugger] = ACTIONS(5070), + [anon_sym_DEBUGGER] = ACTIONS(5070), + [anon_sym_Final] = ACTIONS(5070), + [anon_sym_final] = ACTIONS(5070), + [anon_sym_FINAL] = ACTIONS(5070), + [anon_sym_Function] = ACTIONS(5070), + [anon_sym_function] = ACTIONS(5070), + [anon_sym_FUNCTION] = ACTIONS(5070), + [anon_sym_In] = ACTIONS(5070), + [anon_sym_in] = ACTIONS(5070), + [anon_sym_IN] = ACTIONS(5070), + [anon_sym_Include] = ACTIONS(5070), + [anon_sym_include] = ACTIONS(5070), + [anon_sym_INCLUDE] = ACTIONS(5070), + [anon_sym_InstanceOf] = ACTIONS(5070), + [anon_sym_instanceof] = ACTIONS(5070), + [anon_sym_INSTANCEOF] = ACTIONS(5070), + [anon_sym_instanceOf] = ACTIONS(5070), + [anon_sym_New] = ACTIONS(5070), + [anon_sym_new] = ACTIONS(5070), + [anon_sym_NEW] = ACTIONS(5070), + [anon_sym_Package] = ACTIONS(5070), + [anon_sym_package] = ACTIONS(5070), + [anon_sym_PACKAGE] = ACTIONS(5070), + [anon_sym_Private] = ACTIONS(5070), + [anon_sym_private] = ACTIONS(5070), + [anon_sym_PRIVATE] = ACTIONS(5070), + [anon_sym_Public] = ACTIONS(5070), + [anon_sym_public] = ACTIONS(5070), + [anon_sym_PUBLIC] = ACTIONS(5070), + [anon_sym_Remote] = ACTIONS(5070), + [anon_sym_remote] = ACTIONS(5070), + [anon_sym_REMOTE] = ACTIONS(5070), + [anon_sym_Static] = ACTIONS(5070), + [anon_sym_static] = ACTIONS(5070), + [anon_sym_STATIC] = ACTIONS(5070), + [sym__java_block_open] = ACTIONS(5072), + [sym__static_type_prefix] = ACTIONS(5072), + [sym__parameter_separator] = ACTIONS(5072), }, - [STATE(2016)] = { - [sym_identifier] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_Query] = ACTIONS(1847), - [anon_sym_query] = ACTIONS(1847), - [anon_sym_QUERY] = ACTIONS(1847), - [sym_array_return_suffix] = ACTIONS(1842), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1847), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [aux_sym_unary_operator_token1] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1847), - [aux_sym_number_token2] = ACTIONS(1842), - [anon_sym_This] = ACTIONS(1847), - [anon_sym_this] = ACTIONS(1847), - [anon_sym_THIS] = ACTIONS(1847), - [anon_sym_Super] = ACTIONS(1847), - [anon_sym_super] = ACTIONS(1847), - [anon_sym_SUPER] = ACTIONS(1847), - [anon_sym_True] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_TRUE] = ACTIONS(1847), - [anon_sym_False] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_FALSE] = ACTIONS(1847), - [anon_sym_Null] = ACTIONS(1847), - [anon_sym_null] = ACTIONS(1847), - [anon_sym_NULL] = ACTIONS(1847), - [anon_sym_Undefined] = ACTIONS(1847), - [anon_sym_undefined] = ACTIONS(1847), - [anon_sym_UNDEFINED] = ACTIONS(1847), - [anon_sym_get] = ACTIONS(1847), - [anon_sym_set] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(1847), - [sym_hash_empty] = ACTIONS(1842), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_QueryExecute] = ACTIONS(1847), - [anon_sym_queryexecute] = ACTIONS(1847), - [anon_sym_QUERYEXECUTE] = ACTIONS(1847), - [anon_sym_queryExecute] = ACTIONS(1847), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_Abstract] = ACTIONS(1847), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_ABSTRACT] = ACTIONS(1847), - [anon_sym_Component] = ACTIONS(1847), - [anon_sym_component] = ACTIONS(1847), - [anon_sym_COMPONENT] = ACTIONS(1847), - [anon_sym_Debugger] = ACTIONS(1847), - [anon_sym_debugger] = ACTIONS(1847), - [anon_sym_DEBUGGER] = ACTIONS(1847), - [anon_sym_Final] = ACTIONS(1847), - [anon_sym_final] = ACTIONS(1847), - [anon_sym_FINAL] = ACTIONS(1847), - [anon_sym_Function] = ACTIONS(1847), - [anon_sym_function] = ACTIONS(1847), - [anon_sym_FUNCTION] = ACTIONS(1847), - [anon_sym_In] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_IN] = ACTIONS(1847), - [anon_sym_Include] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_INCLUDE] = ACTIONS(1847), - [anon_sym_InstanceOf] = ACTIONS(1847), - [anon_sym_instanceof] = ACTIONS(1847), - [anon_sym_INSTANCEOF] = ACTIONS(1847), - [anon_sym_instanceOf] = ACTIONS(1847), - [anon_sym_New] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_NEW] = ACTIONS(1847), - [anon_sym_Package] = ACTIONS(1847), - [anon_sym_package] = ACTIONS(1847), - [anon_sym_PACKAGE] = ACTIONS(1847), - [anon_sym_Private] = ACTIONS(1847), - [anon_sym_private] = ACTIONS(1847), - [anon_sym_PRIVATE] = ACTIONS(1847), - [anon_sym_Public] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_PUBLIC] = ACTIONS(1847), - [anon_sym_Remote] = ACTIONS(1847), - [anon_sym_remote] = ACTIONS(1847), - [anon_sym_REMOTE] = ACTIONS(1847), - [anon_sym_Static] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_STATIC] = ACTIONS(1847), - [sym__java_block_open] = ACTIONS(1842), - [sym__static_type_prefix] = ACTIONS(1842), - [sym__parameter_separator] = ACTIONS(1842), + [STATE(2044)] = { + [sym_identifier] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_Query] = ACTIONS(1843), + [anon_sym_query] = ACTIONS(1843), + [anon_sym_QUERY] = ACTIONS(1843), + [sym_array_return_suffix] = ACTIONS(1838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1843), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1838), + [aux_sym_unary_operator_token1] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1843), + [aux_sym_number_token2] = ACTIONS(1838), + [anon_sym_This] = ACTIONS(1843), + [anon_sym_this] = ACTIONS(1843), + [anon_sym_THIS] = ACTIONS(1843), + [anon_sym_Super] = ACTIONS(1843), + [anon_sym_super] = ACTIONS(1843), + [anon_sym_SUPER] = ACTIONS(1843), + [anon_sym_True] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_TRUE] = ACTIONS(1843), + [anon_sym_False] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_FALSE] = ACTIONS(1843), + [anon_sym_Null] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_NULL] = ACTIONS(1843), + [anon_sym_Undefined] = ACTIONS(1843), + [anon_sym_undefined] = ACTIONS(1843), + [anon_sym_UNDEFINED] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [sym_hash_empty] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_QueryExecute] = ACTIONS(1843), + [anon_sym_queryexecute] = ACTIONS(1843), + [anon_sym_QUERYEXECUTE] = ACTIONS(1843), + [anon_sym_queryExecute] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(1838), + [anon_sym_Abstract] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_ABSTRACT] = ACTIONS(1843), + [anon_sym_Component] = ACTIONS(1843), + [anon_sym_component] = ACTIONS(1843), + [anon_sym_COMPONENT] = ACTIONS(1843), + [anon_sym_Debugger] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_DEBUGGER] = ACTIONS(1843), + [anon_sym_Final] = ACTIONS(1843), + [anon_sym_final] = ACTIONS(1843), + [anon_sym_FINAL] = ACTIONS(1843), + [anon_sym_Function] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_FUNCTION] = ACTIONS(1843), + [anon_sym_In] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_IN] = ACTIONS(1843), + [anon_sym_Include] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_INCLUDE] = ACTIONS(1843), + [anon_sym_InstanceOf] = ACTIONS(1843), + [anon_sym_instanceof] = ACTIONS(1843), + [anon_sym_INSTANCEOF] = ACTIONS(1843), + [anon_sym_instanceOf] = ACTIONS(1843), + [anon_sym_New] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_NEW] = ACTIONS(1843), + [anon_sym_Package] = ACTIONS(1843), + [anon_sym_package] = ACTIONS(1843), + [anon_sym_PACKAGE] = ACTIONS(1843), + [anon_sym_Private] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_PRIVATE] = ACTIONS(1843), + [anon_sym_Public] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_PUBLIC] = ACTIONS(1843), + [anon_sym_Remote] = ACTIONS(1843), + [anon_sym_remote] = ACTIONS(1843), + [anon_sym_REMOTE] = ACTIONS(1843), + [anon_sym_Static] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_STATIC] = ACTIONS(1843), + [sym__java_block_open] = ACTIONS(1838), + [sym__static_type_prefix] = ACTIONS(1838), + [sym__parameter_separator] = ACTIONS(1838), }, - [STATE(2017)] = { + [STATE(2045)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1191), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -327693,15 +331579,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_Abstract] = ACTIONS(5069), - [anon_sym_abstract] = ACTIONS(5069), - [anon_sym_ABSTRACT] = ACTIONS(5069), - [anon_sym_Final] = ACTIONS(5069), - [anon_sym_final] = ACTIONS(5069), - [anon_sym_FINAL] = ACTIONS(5069), - [anon_sym_Function] = ACTIONS(5069), - [anon_sym_function] = ACTIONS(5069), - [anon_sym_FUNCTION] = ACTIONS(5069), + [anon_sym_Abstract] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_ABSTRACT] = ACTIONS(5077), + [anon_sym_Final] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_FINAL] = ACTIONS(5077), + [anon_sym_Function] = ACTIONS(5077), + [anon_sym_function] = ACTIONS(5077), + [anon_sym_FUNCTION] = ACTIONS(5077), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -327709,137 +331595,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Package] = ACTIONS(5069), - [anon_sym_package] = ACTIONS(5069), - [anon_sym_PACKAGE] = ACTIONS(5069), - [anon_sym_Private] = ACTIONS(5069), - [anon_sym_private] = ACTIONS(5069), - [anon_sym_PRIVATE] = ACTIONS(5069), - [anon_sym_Public] = ACTIONS(5069), - [anon_sym_public] = ACTIONS(5069), - [anon_sym_PUBLIC] = ACTIONS(5069), - [anon_sym_Remote] = ACTIONS(5069), - [anon_sym_remote] = ACTIONS(5069), - [anon_sym_REMOTE] = ACTIONS(5069), - [anon_sym_Static] = ACTIONS(5069), - [anon_sym_static] = ACTIONS(5069), - [anon_sym_STATIC] = ACTIONS(5069), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(2018)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_Package] = ACTIONS(5077), + [anon_sym_package] = ACTIONS(5077), + [anon_sym_PACKAGE] = ACTIONS(5077), + [anon_sym_Private] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_PRIVATE] = ACTIONS(5077), + [anon_sym_Public] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_PUBLIC] = ACTIONS(5077), + [anon_sym_Remote] = ACTIONS(5077), + [anon_sym_remote] = ACTIONS(5077), + [anon_sym_REMOTE] = ACTIONS(5077), + [anon_sym_Static] = ACTIONS(5077), + [anon_sym_static] = ACTIONS(5077), + [anon_sym_STATIC] = ACTIONS(5077), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), }, - [STATE(2019)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2046)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(5083), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -327924,21 +331711,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2020)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2047)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(5083), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -328023,21 +331810,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2021)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2048)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(5083), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -328122,21 +331909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2022)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2049)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5081), [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5083), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -328221,20 +332008,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2023)] = { - [sym__plain_declarator] = STATE(4467), - [sym_identifier] = ACTIONS(5081), + [STATE(2050)] = { + [sym__plain_declarator] = STATE(4517), + [sym_identifier] = ACTIONS(5089), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -328302,39 +332089,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_Default] = ACTIONS(5083), - [anon_sym_default] = ACTIONS(5083), - [anon_sym_DEFAULT] = ACTIONS(5083), - [anon_sym_Final] = ACTIONS(5085), - [anon_sym_final] = ACTIONS(5085), - [anon_sym_FINAL] = ACTIONS(5085), - [anon_sym_In] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [anon_sym_IN] = ACTIONS(851), + [anon_sym_Default] = ACTIONS(5091), + [anon_sym_default] = ACTIONS(5091), + [anon_sym_DEFAULT] = ACTIONS(5091), + [anon_sym_Final] = ACTIONS(5093), + [anon_sym_final] = ACTIONS(5093), + [anon_sym_FINAL] = ACTIONS(5093), + [anon_sym_In] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [anon_sym_IN] = ACTIONS(863), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Of] = ACTIONS(854), - [anon_sym_of] = ACTIONS(854), - [anon_sym_OF] = ACTIONS(854), + [anon_sym_Of] = ACTIONS(866), + [anon_sym_of] = ACTIONS(866), + [anon_sym_OF] = ACTIONS(866), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2024)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2051)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(5083), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -328419,21 +332206,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2025)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2052)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(5083), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -328518,21 +332305,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2026)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2053)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(5083), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -328617,21 +332404,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2027)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2054)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(5083), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -328716,120 +332503,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), - }, - [STATE(2028)] = { - [sym_component_attribute] = STATE(4157), - [sym__initializer] = STATE(4557), - [sym_component_body] = STATE(609), - [aux_sym_component_repeat1] = STATE(4157), - [sym_identifier] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5089), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [sym__automatic_semicolon] = ACTIONS(1033), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2029)] = { - [sym_component_attribute] = STATE(4182), - [sym__initializer] = STATE(4557), - [sym_component_body] = STATE(4143), - [aux_sym_component_repeat1] = STATE(4182), - [sym_identifier] = ACTIONS(5071), + [STATE(2055)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(5092), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1129), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -328904,24 +332598,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [sym__automatic_semicolon] = ACTIONS(1033), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2030)] = { - [sym_component_attribute] = STATE(4241), - [sym_component_body] = STATE(585), - [aux_sym_component_repeat1] = STATE(4241), - [sym_identifier] = ACTIONS(5071), + [STATE(2056)] = { + [sym_component_attribute] = STATE(4340), + [sym_component_body] = STATE(4363), + [aux_sym_component_repeat1] = STATE(4340), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5095), [anon_sym_LPAREN] = ACTIONS(5097), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(553), + [anon_sym_COLON] = ACTIONS(557), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_EQ_GT] = ACTIONS(430), @@ -329004,24 +332698,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2031)] = { - [sym_component_attribute] = STATE(4163), - [sym__initializer] = STATE(4557), - [sym_component_body] = STATE(910), - [aux_sym_component_repeat1] = STATE(4163), - [sym_identifier] = ACTIONS(5071), + [STATE(2057)] = { + [sym_component_attribute] = STATE(4333), + [sym__initializer] = STATE(4660), + [sym_component_body] = STATE(721), + [aux_sym_component_repeat1] = STATE(4333), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5100), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1129), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1185), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -329096,22 +332790,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [sym__automatic_semicolon] = ACTIONS(1033), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2032)] = { - [sym_component_attribute] = STATE(4294), - [sym_component_body] = STATE(4300), - [aux_sym_component_repeat1] = STATE(4294), - [sym_identifier] = ACTIONS(5071), + [STATE(2058)] = { + [sym_component_attribute] = STATE(4299), + [sym_component_body] = STATE(709), + [aux_sym_component_repeat1] = STATE(4299), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5092), - [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5105), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(565), [anon_sym_EQ] = ACTIONS(555), @@ -329196,24 +332890,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2033)] = { - [sym_component_attribute] = STATE(4211), - [sym_component_body] = STATE(827), - [aux_sym_component_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(5071), + [STATE(2059)] = { + [sym_component_attribute] = STATE(4207), + [sym__initializer] = STATE(4660), + [sym_component_body] = STATE(4227), + [aux_sym_component_repeat1] = STATE(4207), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(5095), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1185), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -329288,213 +332982,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2034)] = { - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_COLON] = ACTIONS(2103), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_RBRACK] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2103), - [sym_optional_chain] = ACTIONS(2105), - [sym_static_chain] = ACTIONS(2105), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_CARET_EQ] = ACTIONS(2105), - [anon_sym_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_LT_EQ] = ACTIONS(2105), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2103), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_BSLASH] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_GT] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [aux_sym_binary_expression_token1] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2103), - [aux_sym_binary_expression_token2] = ACTIONS(2103), - [aux_sym_binary_expression_token3] = ACTIONS(2103), - [aux_sym_binary_expression_token4] = ACTIONS(2105), - [aux_sym_binary_expression_token5] = ACTIONS(2105), - [aux_sym_binary_expression_token6] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2105), - [anon_sym_In] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2103), - [anon_sym_IN] = ACTIONS(2103), - [anon_sym_InstanceOf] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_INSTANCEOF] = ACTIONS(2105), - [anon_sym_instanceOf] = ACTIONS(2105), - [anon_sym_Of] = ACTIONS(2105), - [anon_sym_of] = ACTIONS(2105), - [anon_sym_OF] = ACTIONS(2105), - [sym__ternary_qmark] = ACTIONS(2105), - [sym__elvis_operator] = ACTIONS(2105), - [sym_logical_or] = ACTIONS(2105), - }, - [STATE(2035)] = { - [anon_sym_DOT] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2111), - [sym_optional_chain] = ACTIONS(2113), - [sym_static_chain] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2113), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_BSLASH] = ACTIONS(2113), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_GT] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [aux_sym_binary_expression_token1] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2111), - [aux_sym_binary_expression_token2] = ACTIONS(2111), - [aux_sym_binary_expression_token3] = ACTIONS(2111), - [aux_sym_binary_expression_token4] = ACTIONS(2113), - [aux_sym_binary_expression_token5] = ACTIONS(2113), - [aux_sym_binary_expression_token6] = ACTIONS(2113), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2113), - [anon_sym_In] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_IN] = ACTIONS(2111), - [anon_sym_InstanceOf] = ACTIONS(2113), - [anon_sym_instanceof] = ACTIONS(2113), - [anon_sym_INSTANCEOF] = ACTIONS(2113), - [anon_sym_instanceOf] = ACTIONS(2113), - [anon_sym_Of] = ACTIONS(2113), - [anon_sym_of] = ACTIONS(2113), - [anon_sym_OF] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym__elvis_operator] = ACTIONS(2113), - [sym_logical_or] = ACTIONS(2113), - }, - [STATE(2036)] = { - [sym_array_pattern] = STATE(4061), - [sym__destructuring_pattern] = STATE(4061), - [sym_identifier] = ACTIONS(5109), + [STATE(2060)] = { + [sym_component_attribute] = STATE(4199), + [sym__initializer] = STATE(4660), + [sym_component_body] = STATE(889), + [aux_sym_component_repeat1] = STATE(4199), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(5081), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -329562,802 +333071,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [anon_sym_IN] = ACTIONS(851), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), [anon_sym_InstanceOf] = ACTIONS(406), [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [anon_sym_Of] = ACTIONS(854), - [anon_sym_of] = ACTIONS(854), - [anon_sym_OF] = ACTIONS(854), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2037)] = { - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_RBRACK] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1981), - [sym_optional_chain] = ACTIONS(1983), - [sym_static_chain] = ACTIONS(1983), - [anon_sym_PLUS_EQ] = ACTIONS(1983), - [anon_sym_DASH_EQ] = ACTIONS(1983), - [anon_sym_STAR_EQ] = ACTIONS(1983), - [anon_sym_SLASH_EQ] = ACTIONS(1983), - [anon_sym_PERCENT_EQ] = ACTIONS(1983), - [anon_sym_CARET_EQ] = ACTIONS(1983), - [anon_sym_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_LT_LT_EQ] = ACTIONS(1983), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_STAR_STAR] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1983), - [anon_sym_LT_GT] = ACTIONS(1983), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1983), - [aux_sym_binary_expression_token1] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1981), - [aux_sym_binary_expression_token2] = ACTIONS(1981), - [aux_sym_binary_expression_token3] = ACTIONS(1981), - [aux_sym_binary_expression_token4] = ACTIONS(1983), - [aux_sym_binary_expression_token5] = ACTIONS(1983), - [aux_sym_binary_expression_token6] = ACTIONS(1983), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1983), - [anon_sym_In] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_IN] = ACTIONS(1981), - [anon_sym_InstanceOf] = ACTIONS(1983), - [anon_sym_instanceof] = ACTIONS(1983), - [anon_sym_INSTANCEOF] = ACTIONS(1983), - [anon_sym_instanceOf] = ACTIONS(1983), - [anon_sym_Of] = ACTIONS(1983), - [anon_sym_of] = ACTIONS(1983), - [anon_sym_OF] = ACTIONS(1983), - [sym__ternary_qmark] = ACTIONS(1983), - [sym__elvis_operator] = ACTIONS(1983), - [sym_logical_or] = ACTIONS(1983), - }, - [STATE(2038)] = { - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_COLON] = ACTIONS(2115), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_RBRACK] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2115), - [sym_optional_chain] = ACTIONS(2117), - [sym_static_chain] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2117), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_BSLASH] = ACTIONS(2117), - [anon_sym_STAR_STAR] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_GT] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [aux_sym_binary_expression_token1] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2115), - [aux_sym_binary_expression_token2] = ACTIONS(2115), - [aux_sym_binary_expression_token3] = ACTIONS(2115), - [aux_sym_binary_expression_token4] = ACTIONS(2117), - [aux_sym_binary_expression_token5] = ACTIONS(2117), - [aux_sym_binary_expression_token6] = ACTIONS(2117), - [anon_sym_QMARK_QMARK] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2117), - [anon_sym_In] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_IN] = ACTIONS(2115), - [anon_sym_InstanceOf] = ACTIONS(2117), - [anon_sym_instanceof] = ACTIONS(2117), - [anon_sym_INSTANCEOF] = ACTIONS(2117), - [anon_sym_instanceOf] = ACTIONS(2117), - [anon_sym_Of] = ACTIONS(2117), - [anon_sym_of] = ACTIONS(2117), - [anon_sym_OF] = ACTIONS(2117), - [sym__ternary_qmark] = ACTIONS(2117), - [sym__elvis_operator] = ACTIONS(2117), - [sym_logical_or] = ACTIONS(2117), - }, - [STATE(2039)] = { - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2109), - [anon_sym_COLON] = ACTIONS(2107), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_RBRACK] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2107), - [sym_optional_chain] = ACTIONS(2109), - [sym_static_chain] = ACTIONS(2109), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_CARET_EQ] = ACTIONS(2109), - [anon_sym_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_LT_LT_EQ] = ACTIONS(2109), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_BSLASH] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_GT] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [aux_sym_binary_expression_token1] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2107), - [aux_sym_binary_expression_token2] = ACTIONS(2107), - [aux_sym_binary_expression_token3] = ACTIONS(2107), - [aux_sym_binary_expression_token4] = ACTIONS(2109), - [aux_sym_binary_expression_token5] = ACTIONS(2109), - [aux_sym_binary_expression_token6] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2109), - [anon_sym_In] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_IN] = ACTIONS(2107), - [anon_sym_InstanceOf] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_INSTANCEOF] = ACTIONS(2109), - [anon_sym_instanceOf] = ACTIONS(2109), - [anon_sym_Of] = ACTIONS(2109), - [anon_sym_of] = ACTIONS(2109), - [anon_sym_OF] = ACTIONS(2109), - [sym__ternary_qmark] = ACTIONS(2109), - [sym__elvis_operator] = ACTIONS(2109), - [sym_logical_or] = ACTIONS(2109), - }, - [STATE(2040)] = { - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_COLON] = ACTIONS(2003), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2003), - [sym_optional_chain] = ACTIONS(2005), - [sym_static_chain] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_PERCENT_EQ] = ACTIONS(2005), - [anon_sym_CARET_EQ] = ACTIONS(2005), - [anon_sym_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_EQ] = ACTIONS(2005), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2005), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_GT_GT_GT] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_PERCENT] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_STAR_STAR] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT_GT] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2005), - [aux_sym_binary_expression_token1] = ACTIONS(2005), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2003), - [aux_sym_binary_expression_token2] = ACTIONS(2003), - [aux_sym_binary_expression_token3] = ACTIONS(2003), - [aux_sym_binary_expression_token4] = ACTIONS(2005), - [aux_sym_binary_expression_token5] = ACTIONS(2005), - [aux_sym_binary_expression_token6] = ACTIONS(2005), - [anon_sym_QMARK_QMARK] = ACTIONS(2003), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2005), - [anon_sym_In] = ACTIONS(2003), - [anon_sym_in] = ACTIONS(2003), - [anon_sym_IN] = ACTIONS(2003), - [anon_sym_InstanceOf] = ACTIONS(2005), - [anon_sym_instanceof] = ACTIONS(2005), - [anon_sym_INSTANCEOF] = ACTIONS(2005), - [anon_sym_instanceOf] = ACTIONS(2005), - [anon_sym_Of] = ACTIONS(2005), - [anon_sym_of] = ACTIONS(2005), - [anon_sym_OF] = ACTIONS(2005), - [sym__ternary_qmark] = ACTIONS(2005), - [sym__elvis_operator] = ACTIONS(2005), - [sym_logical_or] = ACTIONS(2005), - }, - [STATE(2041)] = { - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_RBRACK] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1985), - [sym_optional_chain] = ACTIONS(1987), - [sym_static_chain] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1987), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_GT_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_PERCENT] = ACTIONS(1985), - [anon_sym_BSLASH] = ACTIONS(1987), - [anon_sym_STAR_STAR] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1987), - [anon_sym_LT_GT] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1987), - [aux_sym_binary_expression_token1] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1985), - [aux_sym_binary_expression_token2] = ACTIONS(1985), - [aux_sym_binary_expression_token3] = ACTIONS(1985), - [aux_sym_binary_expression_token4] = ACTIONS(1987), - [aux_sym_binary_expression_token5] = ACTIONS(1987), - [aux_sym_binary_expression_token6] = ACTIONS(1987), - [anon_sym_QMARK_QMARK] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1987), - [anon_sym_In] = ACTIONS(1985), - [anon_sym_in] = ACTIONS(1985), - [anon_sym_IN] = ACTIONS(1985), - [anon_sym_InstanceOf] = ACTIONS(1987), - [anon_sym_instanceof] = ACTIONS(1987), - [anon_sym_INSTANCEOF] = ACTIONS(1987), - [anon_sym_instanceOf] = ACTIONS(1987), - [anon_sym_Of] = ACTIONS(1987), - [anon_sym_of] = ACTIONS(1987), - [anon_sym_OF] = ACTIONS(1987), - [sym__ternary_qmark] = ACTIONS(1987), - [sym__elvis_operator] = ACTIONS(1987), - [sym_logical_or] = ACTIONS(1987), - }, - [STATE(2042)] = { - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_COLON] = ACTIONS(2095), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_RBRACK] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2095), - [sym_optional_chain] = ACTIONS(2097), - [sym_static_chain] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2097), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2095), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_BSLASH] = ACTIONS(2097), - [anon_sym_STAR_STAR] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_GT] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [aux_sym_binary_expression_token1] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2095), - [aux_sym_binary_expression_token2] = ACTIONS(2095), - [aux_sym_binary_expression_token3] = ACTIONS(2095), - [aux_sym_binary_expression_token4] = ACTIONS(2097), - [aux_sym_binary_expression_token5] = ACTIONS(2097), - [aux_sym_binary_expression_token6] = ACTIONS(2097), - [anon_sym_QMARK_QMARK] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_In] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_IN] = ACTIONS(2095), - [anon_sym_InstanceOf] = ACTIONS(2097), - [anon_sym_instanceof] = ACTIONS(2097), - [anon_sym_INSTANCEOF] = ACTIONS(2097), - [anon_sym_instanceOf] = ACTIONS(2097), - [anon_sym_Of] = ACTIONS(2097), - [anon_sym_of] = ACTIONS(2097), - [anon_sym_OF] = ACTIONS(2097), - [sym__ternary_qmark] = ACTIONS(2097), - [sym__elvis_operator] = ACTIONS(2097), - [sym_logical_or] = ACTIONS(2097), - }, - [STATE(2043)] = { - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_COLON] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_RBRACK] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2099), - [sym_optional_chain] = ACTIONS(2101), - [sym_static_chain] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2101), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(2101), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_GT] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [aux_sym_binary_expression_token1] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2099), - [aux_sym_binary_expression_token2] = ACTIONS(2099), - [aux_sym_binary_expression_token3] = ACTIONS(2099), - [aux_sym_binary_expression_token4] = ACTIONS(2101), - [aux_sym_binary_expression_token5] = ACTIONS(2101), - [aux_sym_binary_expression_token6] = ACTIONS(2101), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2101), - [anon_sym_In] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_IN] = ACTIONS(2099), - [anon_sym_InstanceOf] = ACTIONS(2101), - [anon_sym_instanceof] = ACTIONS(2101), - [anon_sym_INSTANCEOF] = ACTIONS(2101), - [anon_sym_instanceOf] = ACTIONS(2101), - [anon_sym_Of] = ACTIONS(2101), - [anon_sym_of] = ACTIONS(2101), - [anon_sym_OF] = ACTIONS(2101), - [sym__ternary_qmark] = ACTIONS(2101), - [sym__elvis_operator] = ACTIONS(2101), - [sym_logical_or] = ACTIONS(2101), - }, - [STATE(2044)] = { - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2009), - [anon_sym_COLON] = ACTIONS(2007), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_RBRACK] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2009), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2009), - [anon_sym_instanceof] = ACTIONS(2009), - [anon_sym_INSTANCEOF] = ACTIONS(2009), - [anon_sym_instanceOf] = ACTIONS(2009), - [anon_sym_Of] = ACTIONS(2009), - [anon_sym_of] = ACTIONS(2009), - [anon_sym_OF] = ACTIONS(2009), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), - }, - [STATE(2045)] = { - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), + [STATE(2061)] = { + [sym_component_attribute] = STATE(4214), + [sym_component_body] = STATE(874), + [aux_sym_component_repeat1] = STATE(4214), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(5081), [anon_sym_LPAREN] = ACTIONS(5114), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), + [anon_sym_COLON] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -330388,7 +333146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -330412,29 +333170,1061 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2046)] = { - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), + [STATE(2062)] = { + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(2073), + [anon_sym_EQ] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_RBRACK] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2073), + [sym_optional_chain] = ACTIONS(2075), + [sym_static_chain] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2075), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_GT_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_PERCENT] = ACTIONS(2073), + [anon_sym_BSLASH] = ACTIONS(2075), + [anon_sym_STAR_STAR] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_LT_GT] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [aux_sym_binary_expression_token1] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2073), + [aux_sym_binary_expression_token2] = ACTIONS(2073), + [aux_sym_binary_expression_token3] = ACTIONS(2073), + [aux_sym_binary_expression_token4] = ACTIONS(2075), + [aux_sym_binary_expression_token5] = ACTIONS(2075), + [aux_sym_binary_expression_token6] = ACTIONS(2075), + [anon_sym_QMARK_QMARK] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_In] = ACTIONS(2073), + [anon_sym_in] = ACTIONS(2073), + [anon_sym_IN] = ACTIONS(2073), + [anon_sym_InstanceOf] = ACTIONS(2075), + [anon_sym_instanceof] = ACTIONS(2075), + [anon_sym_INSTANCEOF] = ACTIONS(2075), + [anon_sym_instanceOf] = ACTIONS(2075), + [anon_sym_Of] = ACTIONS(2075), + [anon_sym_of] = ACTIONS(2075), + [anon_sym_OF] = ACTIONS(2075), + [sym__ternary_qmark] = ACTIONS(2075), + [sym__elvis_operator] = ACTIONS(2075), + [sym_logical_or] = ACTIONS(2075), + }, + [STATE(2063)] = { + [sym_array_pattern] = STATE(4109), + [sym__destructuring_pattern] = STATE(4109), + [sym_identifier] = ACTIONS(5117), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [anon_sym_IN] = ACTIONS(863), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_Of] = ACTIONS(866), + [anon_sym_of] = ACTIONS(866), + [anon_sym_OF] = ACTIONS(866), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2064)] = { + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_COLON] = ACTIONS(2083), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2083), + [sym_optional_chain] = ACTIONS(2085), + [sym_static_chain] = ACTIONS(2085), + [anon_sym_PLUS_EQ] = ACTIONS(2085), + [anon_sym_DASH_EQ] = ACTIONS(2085), + [anon_sym_STAR_EQ] = ACTIONS(2085), + [anon_sym_SLASH_EQ] = ACTIONS(2085), + [anon_sym_PERCENT_EQ] = ACTIONS(2085), + [anon_sym_CARET_EQ] = ACTIONS(2085), + [anon_sym_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_LT_LT_EQ] = ACTIONS(2085), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [anon_sym_GT_GT] = ACTIONS(2083), + [anon_sym_GT_GT_GT] = ACTIONS(2083), + [anon_sym_LT_LT] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_BSLASH] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_LT_GT] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [aux_sym_binary_expression_token1] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2083), + [aux_sym_binary_expression_token2] = ACTIONS(2083), + [aux_sym_binary_expression_token3] = ACTIONS(2083), + [aux_sym_binary_expression_token4] = ACTIONS(2085), + [aux_sym_binary_expression_token5] = ACTIONS(2085), + [aux_sym_binary_expression_token6] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2085), + [anon_sym_In] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_IN] = ACTIONS(2083), + [anon_sym_InstanceOf] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_INSTANCEOF] = ACTIONS(2085), + [anon_sym_instanceOf] = ACTIONS(2085), + [anon_sym_Of] = ACTIONS(2085), + [anon_sym_of] = ACTIONS(2085), + [anon_sym_OF] = ACTIONS(2085), + [sym__ternary_qmark] = ACTIONS(2085), + [sym__elvis_operator] = ACTIONS(2085), + [sym_logical_or] = ACTIONS(2085), + }, + [STATE(2065)] = { + [anon_sym_DOT] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_COMMA] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_RPAREN] = ACTIONS(2047), + [anon_sym_COLON] = ACTIONS(2045), + [anon_sym_EQ] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2045), + [sym_optional_chain] = ACTIONS(2047), + [sym_static_chain] = ACTIONS(2047), + [anon_sym_PLUS_EQ] = ACTIONS(2047), + [anon_sym_DASH_EQ] = ACTIONS(2047), + [anon_sym_STAR_EQ] = ACTIONS(2047), + [anon_sym_SLASH_EQ] = ACTIONS(2047), + [anon_sym_PERCENT_EQ] = ACTIONS(2047), + [anon_sym_CARET_EQ] = ACTIONS(2047), + [anon_sym_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_LT_LT_EQ] = ACTIONS(2047), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_GT_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_CARET] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_SLASH] = ACTIONS(2045), + [anon_sym_PERCENT] = ACTIONS(2045), + [anon_sym_BSLASH] = ACTIONS(2047), + [anon_sym_STAR_STAR] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_EQ_EQ] = ACTIONS(2045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2047), + [anon_sym_LT_GT] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2047), + [aux_sym_binary_expression_token1] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [aux_sym_binary_expression_token2] = ACTIONS(2045), + [aux_sym_binary_expression_token3] = ACTIONS(2045), + [aux_sym_binary_expression_token4] = ACTIONS(2047), + [aux_sym_binary_expression_token5] = ACTIONS(2047), + [aux_sym_binary_expression_token6] = ACTIONS(2047), + [anon_sym_QMARK_QMARK] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2047), + [anon_sym_In] = ACTIONS(2045), + [anon_sym_in] = ACTIONS(2045), + [anon_sym_IN] = ACTIONS(2045), + [anon_sym_InstanceOf] = ACTIONS(2047), + [anon_sym_instanceof] = ACTIONS(2047), + [anon_sym_INSTANCEOF] = ACTIONS(2047), + [anon_sym_instanceOf] = ACTIONS(2047), + [anon_sym_Of] = ACTIONS(2047), + [anon_sym_of] = ACTIONS(2047), + [anon_sym_OF] = ACTIONS(2047), + [sym__ternary_qmark] = ACTIONS(2047), + [sym__elvis_operator] = ACTIONS(2047), + [sym_logical_or] = ACTIONS(2047), + }, + [STATE(2066)] = { + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_COLON] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_RBRACK] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1959), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1959), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1959), + [anon_sym_instanceof] = ACTIONS(1959), + [anon_sym_INSTANCEOF] = ACTIONS(1959), + [anon_sym_instanceOf] = ACTIONS(1959), + [anon_sym_Of] = ACTIONS(1959), + [anon_sym_of] = ACTIONS(1959), + [anon_sym_OF] = ACTIONS(1959), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), + }, + [STATE(2067)] = { + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_RPAREN] = ACTIONS(2091), + [anon_sym_COLON] = ACTIONS(2089), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_RBRACK] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2089), + [sym_optional_chain] = ACTIONS(2091), + [sym_static_chain] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [anon_sym_DASH_EQ] = ACTIONS(2091), + [anon_sym_STAR_EQ] = ACTIONS(2091), + [anon_sym_SLASH_EQ] = ACTIONS(2091), + [anon_sym_PERCENT_EQ] = ACTIONS(2091), + [anon_sym_CARET_EQ] = ACTIONS(2091), + [anon_sym_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_LT_LT_EQ] = ACTIONS(2091), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2091), + [anon_sym_STAR_STAR] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_GT] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [aux_sym_binary_expression_token1] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2089), + [aux_sym_binary_expression_token2] = ACTIONS(2089), + [aux_sym_binary_expression_token3] = ACTIONS(2089), + [aux_sym_binary_expression_token4] = ACTIONS(2091), + [aux_sym_binary_expression_token5] = ACTIONS(2091), + [aux_sym_binary_expression_token6] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2091), + [anon_sym_In] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_IN] = ACTIONS(2089), + [anon_sym_InstanceOf] = ACTIONS(2091), + [anon_sym_instanceof] = ACTIONS(2091), + [anon_sym_INSTANCEOF] = ACTIONS(2091), + [anon_sym_instanceOf] = ACTIONS(2091), + [anon_sym_Of] = ACTIONS(2091), + [anon_sym_of] = ACTIONS(2091), + [anon_sym_OF] = ACTIONS(2091), + [sym__ternary_qmark] = ACTIONS(2091), + [sym__elvis_operator] = ACTIONS(2091), + [sym_logical_or] = ACTIONS(2091), + }, + [STATE(2068)] = { + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_COLON] = ACTIONS(2101), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_RBRACK] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2101), + [sym_optional_chain] = ACTIONS(2103), + [sym_static_chain] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [anon_sym_DASH_EQ] = ACTIONS(2103), + [anon_sym_STAR_EQ] = ACTIONS(2103), + [anon_sym_SLASH_EQ] = ACTIONS(2103), + [anon_sym_PERCENT_EQ] = ACTIONS(2103), + [anon_sym_CARET_EQ] = ACTIONS(2103), + [anon_sym_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_LT_LT_EQ] = ACTIONS(2103), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2103), + [anon_sym_STAR_STAR] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_GT] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [aux_sym_binary_expression_token1] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2101), + [aux_sym_binary_expression_token2] = ACTIONS(2101), + [aux_sym_binary_expression_token3] = ACTIONS(2101), + [aux_sym_binary_expression_token4] = ACTIONS(2103), + [aux_sym_binary_expression_token5] = ACTIONS(2103), + [aux_sym_binary_expression_token6] = ACTIONS(2103), + [anon_sym_QMARK_QMARK] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2103), + [anon_sym_In] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_IN] = ACTIONS(2101), + [anon_sym_InstanceOf] = ACTIONS(2103), + [anon_sym_instanceof] = ACTIONS(2103), + [anon_sym_INSTANCEOF] = ACTIONS(2103), + [anon_sym_instanceOf] = ACTIONS(2103), + [anon_sym_Of] = ACTIONS(2103), + [anon_sym_of] = ACTIONS(2103), + [anon_sym_OF] = ACTIONS(2103), + [sym__ternary_qmark] = ACTIONS(2103), + [sym__elvis_operator] = ACTIONS(2103), + [sym_logical_or] = ACTIONS(2103), + }, + [STATE(2069)] = { + [anon_sym_DOT] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_COMMA] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_COLON] = ACTIONS(2019), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_RBRACK] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2019), + [sym_optional_chain] = ACTIONS(2021), + [sym_static_chain] = ACTIONS(2021), + [anon_sym_PLUS_EQ] = ACTIONS(2021), + [anon_sym_DASH_EQ] = ACTIONS(2021), + [anon_sym_STAR_EQ] = ACTIONS(2021), + [anon_sym_SLASH_EQ] = ACTIONS(2021), + [anon_sym_PERCENT_EQ] = ACTIONS(2021), + [anon_sym_CARET_EQ] = ACTIONS(2021), + [anon_sym_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_LT_LT_EQ] = ACTIONS(2021), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2021), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_GT_GT_GT] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_CARET] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_BSLASH] = ACTIONS(2021), + [anon_sym_STAR_STAR] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2021), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), + [anon_sym_LT_GT] = ACTIONS(2021), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), + [aux_sym_binary_expression_token1] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2019), + [aux_sym_binary_expression_token2] = ACTIONS(2019), + [aux_sym_binary_expression_token3] = ACTIONS(2019), + [aux_sym_binary_expression_token4] = ACTIONS(2021), + [aux_sym_binary_expression_token5] = ACTIONS(2021), + [aux_sym_binary_expression_token6] = ACTIONS(2021), + [anon_sym_QMARK_QMARK] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2021), + [anon_sym_In] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_IN] = ACTIONS(2019), + [anon_sym_InstanceOf] = ACTIONS(2021), + [anon_sym_instanceof] = ACTIONS(2021), + [anon_sym_INSTANCEOF] = ACTIONS(2021), + [anon_sym_instanceOf] = ACTIONS(2021), + [anon_sym_Of] = ACTIONS(2021), + [anon_sym_of] = ACTIONS(2021), + [anon_sym_OF] = ACTIONS(2021), + [sym__ternary_qmark] = ACTIONS(2021), + [sym__elvis_operator] = ACTIONS(2021), + [sym_logical_or] = ACTIONS(2021), + }, + [STATE(2070)] = { + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_RPAREN] = ACTIONS(2029), + [anon_sym_COLON] = ACTIONS(2027), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_RBRACK] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2027), + [sym_optional_chain] = ACTIONS(2029), + [sym_static_chain] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2029), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_GT_GT] = ACTIONS(2027), + [anon_sym_GT_GT_GT] = ACTIONS(2027), + [anon_sym_LT_LT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2029), + [anon_sym_STAR_STAR] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), + [anon_sym_LT_GT] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), + [aux_sym_binary_expression_token1] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2027), + [aux_sym_binary_expression_token2] = ACTIONS(2027), + [aux_sym_binary_expression_token3] = ACTIONS(2027), + [aux_sym_binary_expression_token4] = ACTIONS(2029), + [aux_sym_binary_expression_token5] = ACTIONS(2029), + [aux_sym_binary_expression_token6] = ACTIONS(2029), + [anon_sym_QMARK_QMARK] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2029), + [anon_sym_In] = ACTIONS(2027), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_IN] = ACTIONS(2027), + [anon_sym_InstanceOf] = ACTIONS(2029), + [anon_sym_instanceof] = ACTIONS(2029), + [anon_sym_INSTANCEOF] = ACTIONS(2029), + [anon_sym_instanceOf] = ACTIONS(2029), + [anon_sym_Of] = ACTIONS(2029), + [anon_sym_of] = ACTIONS(2029), + [anon_sym_OF] = ACTIONS(2029), + [sym__ternary_qmark] = ACTIONS(2029), + [sym__elvis_operator] = ACTIONS(2029), + [sym_logical_or] = ACTIONS(2029), + }, + [STATE(2071)] = { + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_RPAREN] = ACTIONS(2107), + [anon_sym_COLON] = ACTIONS(2105), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_RBRACK] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2105), + [sym_optional_chain] = ACTIONS(2107), + [sym_static_chain] = ACTIONS(2107), + [anon_sym_PLUS_EQ] = ACTIONS(2107), + [anon_sym_DASH_EQ] = ACTIONS(2107), + [anon_sym_STAR_EQ] = ACTIONS(2107), + [anon_sym_SLASH_EQ] = ACTIONS(2107), + [anon_sym_PERCENT_EQ] = ACTIONS(2107), + [anon_sym_CARET_EQ] = ACTIONS(2107), + [anon_sym_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_LT_LT_EQ] = ACTIONS(2107), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2107), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2107), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_GT] = ACTIONS(2107), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [aux_sym_binary_expression_token1] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2105), + [aux_sym_binary_expression_token2] = ACTIONS(2105), + [aux_sym_binary_expression_token3] = ACTIONS(2105), + [aux_sym_binary_expression_token4] = ACTIONS(2107), + [aux_sym_binary_expression_token5] = ACTIONS(2107), + [aux_sym_binary_expression_token6] = ACTIONS(2107), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_In] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_IN] = ACTIONS(2105), + [anon_sym_InstanceOf] = ACTIONS(2107), + [anon_sym_instanceof] = ACTIONS(2107), + [anon_sym_INSTANCEOF] = ACTIONS(2107), + [anon_sym_instanceOf] = ACTIONS(2107), + [anon_sym_Of] = ACTIONS(2107), + [anon_sym_of] = ACTIONS(2107), + [anon_sym_OF] = ACTIONS(2107), + [sym__ternary_qmark] = ACTIONS(2107), + [sym__elvis_operator] = ACTIONS(2107), + [sym_logical_or] = ACTIONS(2107), + }, + [STATE(2072)] = { + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_RPAREN] = ACTIONS(2033), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_RBRACK] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2031), + [sym_optional_chain] = ACTIONS(2033), + [sym_static_chain] = ACTIONS(2033), + [anon_sym_PLUS_EQ] = ACTIONS(2033), + [anon_sym_DASH_EQ] = ACTIONS(2033), + [anon_sym_STAR_EQ] = ACTIONS(2033), + [anon_sym_SLASH_EQ] = ACTIONS(2033), + [anon_sym_PERCENT_EQ] = ACTIONS(2033), + [anon_sym_CARET_EQ] = ACTIONS(2033), + [anon_sym_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_LT_LT_EQ] = ACTIONS(2033), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2033), + [anon_sym_STAR_STAR] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2033), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), + [anon_sym_LT_GT] = ACTIONS(2033), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), + [aux_sym_binary_expression_token1] = ACTIONS(2033), + [anon_sym_GT_EQ] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [aux_sym_binary_expression_token2] = ACTIONS(2031), + [aux_sym_binary_expression_token3] = ACTIONS(2031), + [aux_sym_binary_expression_token4] = ACTIONS(2033), + [aux_sym_binary_expression_token5] = ACTIONS(2033), + [aux_sym_binary_expression_token6] = ACTIONS(2033), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2033), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2033), + [anon_sym_In] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_IN] = ACTIONS(2031), + [anon_sym_InstanceOf] = ACTIONS(2033), + [anon_sym_instanceof] = ACTIONS(2033), + [anon_sym_INSTANCEOF] = ACTIONS(2033), + [anon_sym_instanceOf] = ACTIONS(2033), + [anon_sym_Of] = ACTIONS(2033), + [anon_sym_of] = ACTIONS(2033), + [anon_sym_OF] = ACTIONS(2033), + [sym__ternary_qmark] = ACTIONS(2033), + [sym__elvis_operator] = ACTIONS(2033), + [sym_logical_or] = ACTIONS(2033), + }, + [STATE(2073)] = { + [sym__initializer] = STATE(4000), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1036), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -330502,27 +334292,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), + [anon_sym_In] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_IN] = ACTIONS(1044), [anon_sym_InstanceOf] = ACTIONS(404), [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_Of] = ACTIONS(5122), + [anon_sym_of] = ACTIONS(5122), + [anon_sym_OF] = ACTIONS(5122), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2047)] = { - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), + [STATE(2074)] = { + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -330602,20 +334395,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2048)] = { - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), + [STATE(2075)] = { + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -330695,22 +334488,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2049)] = { - [sym__initializer] = STATE(3952), + [STATE(2076)] = { + [sym__initializer] = STATE(4003), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5126), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5128), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -330778,35 +334571,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5124), - [anon_sym_in] = ACTIONS(5124), - [anon_sym_IN] = ACTIONS(5124), + [anon_sym_In] = ACTIONS(5130), + [anon_sym_in] = ACTIONS(5130), + [anon_sym_IN] = ACTIONS(5130), [anon_sym_InstanceOf] = ACTIONS(509), [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(5127), - [anon_sym_of] = ACTIONS(5127), - [anon_sym_OF] = ACTIONS(5127), - [sym__automatic_semicolon] = ACTIONS(5120), + [anon_sym_Of] = ACTIONS(5133), + [anon_sym_of] = ACTIONS(5133), + [anon_sym_OF] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5126), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2050)] = { - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), + [STATE(2077)] = { + [sym__initializer] = STATE(4005), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_COLON] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1036), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -330874,27 +334664,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), + [anon_sym_In] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_IN] = ACTIONS(1044), [anon_sym_InstanceOf] = ACTIONS(404), [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [anon_sym_Of] = ACTIONS(5122), + [anon_sym_of] = ACTIONS(5122), + [anon_sym_OF] = ACTIONS(5122), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2051)] = { - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), + [STATE(2078)] = { + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -330974,22 +334767,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2052)] = { - [sym__initializer] = STATE(3951), + [STATE(2079)] = { + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -331057,29 +334853,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_IN] = ACTIONS(1046), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), [anon_sym_InstanceOf] = ACTIONS(404), [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Of] = ACTIONS(5129), - [anon_sym_of] = ACTIONS(5129), - [anon_sym_OF] = ACTIONS(5129), - [sym__automatic_semicolon] = ACTIONS(1033), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2053)] = { - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), + [STATE(2080)] = { + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -331165,14 +334958,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2054)] = { - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), + [STATE(2081)] = { + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(5135), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -331258,14 +335051,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2055)] = { - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), + [STATE(2082)] = { + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -331351,15 +335144,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2056)] = { - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), + [STATE(2083)] = { + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -331439,19 +335232,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2057)] = { - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [STATE(2084)] = { + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(5135), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -331537,15 +335330,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2058)] = { - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), + [STATE(2085)] = { + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -331625,19 +335418,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2059)] = { - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), + [STATE(2086)] = { + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -331723,15 +335516,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2060)] = { - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [STATE(2087)] = { + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -331811,22 +335604,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2061)] = { - [sym__initializer] = STATE(3948), + [STATE(2088)] = { + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -331894,30 +335690,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_IN] = ACTIONS(1046), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), [anon_sym_InstanceOf] = ACTIONS(404), [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Of] = ACTIONS(5129), - [anon_sym_of] = ACTIONS(5129), - [anon_sym_OF] = ACTIONS(5129), - [sym__automatic_semicolon] = ACTIONS(1033), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2062)] = { - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [STATE(2089)] = { + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -331997,19 +335790,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2063)] = { - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [STATE(2090)] = { + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_LPAREN] = ACTIONS(5135), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -332095,15 +335888,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2064)] = { - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [STATE(2091)] = { + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -332183,19 +335976,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2065)] = { - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [STATE(2092)] = { + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(5135), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -332281,15 +336074,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2066)] = { - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [STATE(2093)] = { + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -332369,20 +336162,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2067)] = { - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), + [STATE(2094)] = { + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -332462,19 +336255,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2068)] = { - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [STATE(2095)] = { + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(5135), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -332560,14 +336353,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2069)] = { - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [STATE(2096)] = { + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -332653,15 +336446,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2070)] = { - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), + [STATE(2097)] = { + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(5124), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -332741,19 +336534,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2071)] = { - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), + [STATE(2098)] = { + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -332839,15 +336632,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2072)] = { - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), + [STATE(2099)] = { + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -332927,19 +336720,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2073)] = { - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [STATE(2100)] = { + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(5114), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(2138), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), @@ -333025,15 +336818,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2074)] = { - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), + [STATE(2101)] = { + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(418), [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), @@ -333113,500 +336906,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2075)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5133), - [anon_sym_DASH_GT] = ACTIONS(5133), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2076)] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_Query] = ACTIONS(2278), - [anon_sym_query] = ACTIONS(2278), - [anon_sym_QUERY] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [aux_sym_unary_operator_token1] = ACTIONS(2278), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2278), - [aux_sym_number_token2] = ACTIONS(2280), - [anon_sym_This] = ACTIONS(2278), - [anon_sym_this] = ACTIONS(2278), - [anon_sym_THIS] = ACTIONS(2278), - [anon_sym_Super] = ACTIONS(2278), - [anon_sym_super] = ACTIONS(2278), - [anon_sym_SUPER] = ACTIONS(2278), - [anon_sym_True] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2278), - [anon_sym_TRUE] = ACTIONS(2278), - [anon_sym_False] = ACTIONS(2278), - [anon_sym_false] = ACTIONS(2278), - [anon_sym_FALSE] = ACTIONS(2278), - [anon_sym_Null] = ACTIONS(2278), - [anon_sym_null] = ACTIONS(2278), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_Undefined] = ACTIONS(2278), - [anon_sym_undefined] = ACTIONS(2278), - [anon_sym_UNDEFINED] = ACTIONS(2278), - [anon_sym_get] = ACTIONS(2278), - [anon_sym_set] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(2278), - [sym_hash_empty] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2278), - [anon_sym_QueryExecute] = ACTIONS(2278), - [anon_sym_queryexecute] = ACTIONS(2278), - [anon_sym_QUERYEXECUTE] = ACTIONS(2278), - [anon_sym_queryExecute] = ACTIONS(2278), - [anon_sym_BQUOTE] = ACTIONS(2280), - [anon_sym_Abstract] = ACTIONS(2278), - [anon_sym_abstract] = ACTIONS(2278), - [anon_sym_ABSTRACT] = ACTIONS(2278), - [anon_sym_Component] = ACTIONS(2278), - [anon_sym_component] = ACTIONS(2278), - [anon_sym_COMPONENT] = ACTIONS(2278), - [anon_sym_Debugger] = ACTIONS(2278), - [anon_sym_debugger] = ACTIONS(2278), - [anon_sym_DEBUGGER] = ACTIONS(2278), - [anon_sym_Final] = ACTIONS(2278), - [anon_sym_final] = ACTIONS(2278), - [anon_sym_FINAL] = ACTIONS(2278), - [anon_sym_Function] = ACTIONS(2278), - [anon_sym_function] = ACTIONS(2278), - [anon_sym_FUNCTION] = ACTIONS(2278), - [anon_sym_Include] = ACTIONS(2278), - [anon_sym_include] = ACTIONS(2278), - [anon_sym_INCLUDE] = ACTIONS(2278), - [anon_sym_New] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [anon_sym_NEW] = ACTIONS(2278), - [anon_sym_Package] = ACTIONS(2278), - [anon_sym_package] = ACTIONS(2278), - [anon_sym_PACKAGE] = ACTIONS(2278), - [anon_sym_Private] = ACTIONS(2278), - [anon_sym_private] = ACTIONS(2278), - [anon_sym_PRIVATE] = ACTIONS(2278), - [anon_sym_Public] = ACTIONS(2278), - [anon_sym_public] = ACTIONS(2278), - [anon_sym_PUBLIC] = ACTIONS(2278), - [anon_sym_Remote] = ACTIONS(2278), - [anon_sym_remote] = ACTIONS(2278), - [anon_sym_REMOTE] = ACTIONS(2278), - [anon_sym_Static] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_STATIC] = ACTIONS(2278), - [sym__automatic_semicolon] = ACTIONS(2280), - [sym_tag_linefeed] = ACTIONS(2280), - [sym__java_block_open] = ACTIONS(2280), - [sym__static_type_prefix] = ACTIONS(2280), - }, - [STATE(2077)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5133), - [anon_sym_DASH_GT] = ACTIONS(5133), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2078)] = { - [sym_identifier] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_SEMI] = ACTIONS(5137), - [anon_sym_let] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_Query] = ACTIONS(5135), - [anon_sym_query] = ACTIONS(5135), - [anon_sym_QUERY] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5137), - [anon_sym_TILDE] = ACTIONS(5137), - [aux_sym_unary_operator_token1] = ACTIONS(5135), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DQUOTE] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5137), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5135), - [aux_sym_number_token2] = ACTIONS(5137), - [anon_sym_This] = ACTIONS(5135), - [anon_sym_this] = ACTIONS(5135), - [anon_sym_THIS] = ACTIONS(5135), - [anon_sym_Super] = ACTIONS(5135), - [anon_sym_super] = ACTIONS(5135), - [anon_sym_SUPER] = ACTIONS(5135), - [anon_sym_True] = ACTIONS(5135), - [anon_sym_true] = ACTIONS(5135), - [anon_sym_TRUE] = ACTIONS(5135), - [anon_sym_False] = ACTIONS(5135), - [anon_sym_false] = ACTIONS(5135), - [anon_sym_FALSE] = ACTIONS(5135), - [anon_sym_Null] = ACTIONS(5135), - [anon_sym_null] = ACTIONS(5135), - [anon_sym_NULL] = ACTIONS(5135), - [anon_sym_Undefined] = ACTIONS(5135), - [anon_sym_undefined] = ACTIONS(5135), - [anon_sym_UNDEFINED] = ACTIONS(5135), - [anon_sym_get] = ACTIONS(5135), - [anon_sym_set] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [sym_hash_empty] = ACTIONS(5137), - [anon_sym_export] = ACTIONS(5135), - [anon_sym_QueryExecute] = ACTIONS(5135), - [anon_sym_queryexecute] = ACTIONS(5135), - [anon_sym_QUERYEXECUTE] = ACTIONS(5135), - [anon_sym_queryExecute] = ACTIONS(5135), - [anon_sym_BQUOTE] = ACTIONS(5137), - [anon_sym_Abstract] = ACTIONS(5135), - [anon_sym_abstract] = ACTIONS(5135), - [anon_sym_ABSTRACT] = ACTIONS(5135), - [anon_sym_Component] = ACTIONS(5135), - [anon_sym_component] = ACTIONS(5135), - [anon_sym_COMPONENT] = ACTIONS(5135), - [anon_sym_Debugger] = ACTIONS(5135), - [anon_sym_debugger] = ACTIONS(5135), - [anon_sym_DEBUGGER] = ACTIONS(5135), - [anon_sym_Final] = ACTIONS(5135), - [anon_sym_final] = ACTIONS(5135), - [anon_sym_FINAL] = ACTIONS(5135), - [anon_sym_Function] = ACTIONS(5135), - [anon_sym_function] = ACTIONS(5135), - [anon_sym_FUNCTION] = ACTIONS(5135), - [anon_sym_Include] = ACTIONS(5135), - [anon_sym_include] = ACTIONS(5135), - [anon_sym_INCLUDE] = ACTIONS(5135), - [anon_sym_New] = ACTIONS(5135), - [anon_sym_new] = ACTIONS(5135), - [anon_sym_NEW] = ACTIONS(5135), - [anon_sym_Package] = ACTIONS(5135), - [anon_sym_package] = ACTIONS(5135), - [anon_sym_PACKAGE] = ACTIONS(5135), - [anon_sym_Private] = ACTIONS(5135), - [anon_sym_private] = ACTIONS(5135), - [anon_sym_PRIVATE] = ACTIONS(5135), - [anon_sym_Public] = ACTIONS(5135), - [anon_sym_public] = ACTIONS(5135), - [anon_sym_PUBLIC] = ACTIONS(5135), - [anon_sym_Remote] = ACTIONS(5135), - [anon_sym_remote] = ACTIONS(5135), - [anon_sym_REMOTE] = ACTIONS(5135), - [anon_sym_Static] = ACTIONS(5135), - [anon_sym_static] = ACTIONS(5135), - [anon_sym_STATIC] = ACTIONS(5135), - [sym__automatic_semicolon] = ACTIONS(5137), - [sym_tag_linefeed] = ACTIONS(5137), - [sym__java_block_open] = ACTIONS(5137), - [sym__static_type_prefix] = ACTIONS(5137), - }, - [STATE(2079)] = { - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_COLON] = ACTIONS(2107), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2107), - [sym_optional_chain] = ACTIONS(2109), - [sym_static_chain] = ACTIONS(2109), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_CARET_EQ] = ACTIONS(2109), - [anon_sym_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_LT_LT_EQ] = ACTIONS(2109), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_BSLASH] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_GT] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [aux_sym_binary_expression_token1] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2107), - [aux_sym_binary_expression_token2] = ACTIONS(2107), - [aux_sym_binary_expression_token3] = ACTIONS(2107), - [aux_sym_binary_expression_token4] = ACTIONS(2109), - [aux_sym_binary_expression_token5] = ACTIONS(2109), - [aux_sym_binary_expression_token6] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_IN] = ACTIONS(2107), - [anon_sym_InstanceOf] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_INSTANCEOF] = ACTIONS(2109), - [anon_sym_instanceOf] = ACTIONS(2109), - [anon_sym_Of] = ACTIONS(2109), - [anon_sym_of] = ACTIONS(2109), - [anon_sym_OF] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2109), - [sym__ternary_qmark] = ACTIONS(2109), - [sym__elvis_operator] = ACTIONS(2109), - [sym_logical_or] = ACTIONS(2109), - }, - [STATE(2080)] = { - [sym_component_attribute] = STATE(4291), - [sym_component_body] = STATE(3351), - [aux_sym_component_repeat1] = STATE(4291), - [sym_identifier] = ACTIONS(5071), + [STATE(2102)] = { + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -333637,7 +336971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -333661,44 +336995,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), }, - [STATE(2081)] = { - [sym_component_attribute] = STATE(4187), - [sym_component_body] = STATE(2464), - [aux_sym_component_repeat1] = STATE(4187), - [sym_identifier] = ACTIONS(5071), + [STATE(2103)] = { + [sym_identifier] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym_let] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_Query] = ACTIONS(5139), + [anon_sym_query] = ACTIONS(5139), + [anon_sym_QUERY] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5141), + [anon_sym_TILDE] = ACTIONS(5141), + [aux_sym_unary_operator_token1] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_DQUOTE] = ACTIONS(5141), + [anon_sym_SQUOTE] = ACTIONS(5141), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5139), + [aux_sym_number_token2] = ACTIONS(5141), + [anon_sym_This] = ACTIONS(5139), + [anon_sym_this] = ACTIONS(5139), + [anon_sym_THIS] = ACTIONS(5139), + [anon_sym_Super] = ACTIONS(5139), + [anon_sym_super] = ACTIONS(5139), + [anon_sym_SUPER] = ACTIONS(5139), + [anon_sym_True] = ACTIONS(5139), + [anon_sym_true] = ACTIONS(5139), + [anon_sym_TRUE] = ACTIONS(5139), + [anon_sym_False] = ACTIONS(5139), + [anon_sym_false] = ACTIONS(5139), + [anon_sym_FALSE] = ACTIONS(5139), + [anon_sym_Null] = ACTIONS(5139), + [anon_sym_null] = ACTIONS(5139), + [anon_sym_NULL] = ACTIONS(5139), + [anon_sym_Undefined] = ACTIONS(5139), + [anon_sym_undefined] = ACTIONS(5139), + [anon_sym_UNDEFINED] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_POUND] = ACTIONS(5139), + [sym_hash_empty] = ACTIONS(5141), + [anon_sym_export] = ACTIONS(5139), + [anon_sym_QueryExecute] = ACTIONS(5139), + [anon_sym_queryexecute] = ACTIONS(5139), + [anon_sym_QUERYEXECUTE] = ACTIONS(5139), + [anon_sym_queryExecute] = ACTIONS(5139), + [anon_sym_BQUOTE] = ACTIONS(5141), + [anon_sym_Abstract] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_ABSTRACT] = ACTIONS(5139), + [anon_sym_Component] = ACTIONS(5139), + [anon_sym_component] = ACTIONS(5139), + [anon_sym_COMPONENT] = ACTIONS(5139), + [anon_sym_Debugger] = ACTIONS(5139), + [anon_sym_debugger] = ACTIONS(5139), + [anon_sym_DEBUGGER] = ACTIONS(5139), + [anon_sym_Final] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_FINAL] = ACTIONS(5139), + [anon_sym_Function] = ACTIONS(5139), + [anon_sym_function] = ACTIONS(5139), + [anon_sym_FUNCTION] = ACTIONS(5139), + [anon_sym_Include] = ACTIONS(5139), + [anon_sym_include] = ACTIONS(5139), + [anon_sym_INCLUDE] = ACTIONS(5139), + [anon_sym_New] = ACTIONS(5139), + [anon_sym_new] = ACTIONS(5139), + [anon_sym_NEW] = ACTIONS(5139), + [anon_sym_Package] = ACTIONS(5139), + [anon_sym_package] = ACTIONS(5139), + [anon_sym_PACKAGE] = ACTIONS(5139), + [anon_sym_Private] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_PRIVATE] = ACTIONS(5139), + [anon_sym_Public] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_PUBLIC] = ACTIONS(5139), + [anon_sym_Remote] = ACTIONS(5139), + [anon_sym_remote] = ACTIONS(5139), + [anon_sym_REMOTE] = ACTIONS(5139), + [anon_sym_Static] = ACTIONS(5139), + [anon_sym_static] = ACTIONS(5139), + [anon_sym_STATIC] = ACTIONS(5139), + [sym__automatic_semicolon] = ACTIONS(5141), + [sym_tag_linefeed] = ACTIONS(5141), + [sym__java_block_open] = ACTIONS(5141), + [sym__static_type_prefix] = ACTIONS(5141), + }, + [STATE(2104)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(5141), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -333729,7 +337152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -333753,16 +337176,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_Of] = ACTIONS(404), + [anon_sym_of] = ACTIONS(404), + [anon_sym_OF] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), }, - [STATE(2082)] = { + [STATE(2105)] = { [sym_identifier] = ACTIONS(5143), [anon_sym_LBRACE] = ACTIONS(5145), [anon_sym_LPAREN] = ACTIONS(5145), @@ -333830,1052 +337256,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_FUNCTION] = ACTIONS(5143), [anon_sym_Include] = ACTIONS(5143), [anon_sym_include] = ACTIONS(5143), - [anon_sym_INCLUDE] = ACTIONS(5143), - [anon_sym_New] = ACTIONS(5143), - [anon_sym_new] = ACTIONS(5143), - [anon_sym_NEW] = ACTIONS(5143), - [anon_sym_Package] = ACTIONS(5143), - [anon_sym_package] = ACTIONS(5143), - [anon_sym_PACKAGE] = ACTIONS(5143), - [anon_sym_Private] = ACTIONS(5143), - [anon_sym_private] = ACTIONS(5143), - [anon_sym_PRIVATE] = ACTIONS(5143), - [anon_sym_Public] = ACTIONS(5143), - [anon_sym_public] = ACTIONS(5143), - [anon_sym_PUBLIC] = ACTIONS(5143), - [anon_sym_Remote] = ACTIONS(5143), - [anon_sym_remote] = ACTIONS(5143), - [anon_sym_REMOTE] = ACTIONS(5143), - [anon_sym_Static] = ACTIONS(5143), - [anon_sym_static] = ACTIONS(5143), - [anon_sym_STATIC] = ACTIONS(5143), - [sym__automatic_semicolon] = ACTIONS(5145), - [sym_tag_linefeed] = ACTIONS(5145), - [sym__java_block_open] = ACTIONS(5145), - [sym__static_type_prefix] = ACTIONS(5145), - }, - [STATE(2083)] = { - [sym_identifier] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5149), - [anon_sym_LPAREN] = ACTIONS(5149), - [anon_sym_SEMI] = ACTIONS(5149), - [anon_sym_let] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_Query] = ACTIONS(5147), - [anon_sym_query] = ACTIONS(5147), - [anon_sym_QUERY] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_TILDE] = ACTIONS(5149), - [aux_sym_unary_operator_token1] = ACTIONS(5147), - [anon_sym_PLUS_PLUS] = ACTIONS(5149), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DQUOTE] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5149), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5147), - [aux_sym_number_token2] = ACTIONS(5149), - [anon_sym_This] = ACTIONS(5147), - [anon_sym_this] = ACTIONS(5147), - [anon_sym_THIS] = ACTIONS(5147), - [anon_sym_Super] = ACTIONS(5147), - [anon_sym_super] = ACTIONS(5147), - [anon_sym_SUPER] = ACTIONS(5147), - [anon_sym_True] = ACTIONS(5147), - [anon_sym_true] = ACTIONS(5147), - [anon_sym_TRUE] = ACTIONS(5147), - [anon_sym_False] = ACTIONS(5147), - [anon_sym_false] = ACTIONS(5147), - [anon_sym_FALSE] = ACTIONS(5147), - [anon_sym_Null] = ACTIONS(5147), - [anon_sym_null] = ACTIONS(5147), - [anon_sym_NULL] = ACTIONS(5147), - [anon_sym_Undefined] = ACTIONS(5147), - [anon_sym_undefined] = ACTIONS(5147), - [anon_sym_UNDEFINED] = ACTIONS(5147), - [anon_sym_get] = ACTIONS(5147), - [anon_sym_set] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [sym_hash_empty] = ACTIONS(5149), - [anon_sym_export] = ACTIONS(5147), - [anon_sym_QueryExecute] = ACTIONS(5147), - [anon_sym_queryexecute] = ACTIONS(5147), - [anon_sym_QUERYEXECUTE] = ACTIONS(5147), - [anon_sym_queryExecute] = ACTIONS(5147), - [anon_sym_BQUOTE] = ACTIONS(5149), - [anon_sym_Abstract] = ACTIONS(5147), - [anon_sym_abstract] = ACTIONS(5147), - [anon_sym_ABSTRACT] = ACTIONS(5147), - [anon_sym_Component] = ACTIONS(5147), - [anon_sym_component] = ACTIONS(5147), - [anon_sym_COMPONENT] = ACTIONS(5147), - [anon_sym_Debugger] = ACTIONS(5147), - [anon_sym_debugger] = ACTIONS(5147), - [anon_sym_DEBUGGER] = ACTIONS(5147), - [anon_sym_Final] = ACTIONS(5147), - [anon_sym_final] = ACTIONS(5147), - [anon_sym_FINAL] = ACTIONS(5147), - [anon_sym_Function] = ACTIONS(5147), - [anon_sym_function] = ACTIONS(5147), - [anon_sym_FUNCTION] = ACTIONS(5147), - [anon_sym_Include] = ACTIONS(5147), - [anon_sym_include] = ACTIONS(5147), - [anon_sym_INCLUDE] = ACTIONS(5147), - [anon_sym_New] = ACTIONS(5147), - [anon_sym_new] = ACTIONS(5147), - [anon_sym_NEW] = ACTIONS(5147), - [anon_sym_Package] = ACTIONS(5147), - [anon_sym_package] = ACTIONS(5147), - [anon_sym_PACKAGE] = ACTIONS(5147), - [anon_sym_Private] = ACTIONS(5147), - [anon_sym_private] = ACTIONS(5147), - [anon_sym_PRIVATE] = ACTIONS(5147), - [anon_sym_Public] = ACTIONS(5147), - [anon_sym_public] = ACTIONS(5147), - [anon_sym_PUBLIC] = ACTIONS(5147), - [anon_sym_Remote] = ACTIONS(5147), - [anon_sym_remote] = ACTIONS(5147), - [anon_sym_REMOTE] = ACTIONS(5147), - [anon_sym_Static] = ACTIONS(5147), - [anon_sym_static] = ACTIONS(5147), - [anon_sym_STATIC] = ACTIONS(5147), - [sym__automatic_semicolon] = ACTIONS(5149), - [sym_tag_linefeed] = ACTIONS(5149), - [sym__java_block_open] = ACTIONS(5149), - [sym__static_type_prefix] = ACTIONS(5149), - }, - [STATE(2084)] = { - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_COLON] = ACTIONS(2095), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2095), - [sym_optional_chain] = ACTIONS(2097), - [sym_static_chain] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2097), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2095), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_BSLASH] = ACTIONS(2097), - [anon_sym_STAR_STAR] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_GT] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [aux_sym_binary_expression_token1] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2095), - [aux_sym_binary_expression_token2] = ACTIONS(2095), - [aux_sym_binary_expression_token3] = ACTIONS(2095), - [aux_sym_binary_expression_token4] = ACTIONS(2097), - [aux_sym_binary_expression_token5] = ACTIONS(2097), - [aux_sym_binary_expression_token6] = ACTIONS(2097), - [anon_sym_QMARK_QMARK] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_IN] = ACTIONS(2095), - [anon_sym_InstanceOf] = ACTIONS(2097), - [anon_sym_instanceof] = ACTIONS(2097), - [anon_sym_INSTANCEOF] = ACTIONS(2097), - [anon_sym_instanceOf] = ACTIONS(2097), - [anon_sym_Of] = ACTIONS(2097), - [anon_sym_of] = ACTIONS(2097), - [anon_sym_OF] = ACTIONS(2097), - [sym__automatic_semicolon] = ACTIONS(2097), - [sym__ternary_qmark] = ACTIONS(2097), - [sym__elvis_operator] = ACTIONS(2097), - [sym_logical_or] = ACTIONS(2097), - }, - [STATE(2085)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Of] = ACTIONS(404), - [anon_sym_of] = ACTIONS(404), - [anon_sym_OF] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(2086)] = { - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_COLON] = ACTIONS(2115), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2115), - [sym_optional_chain] = ACTIONS(2117), - [sym_static_chain] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2117), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_BSLASH] = ACTIONS(2117), - [anon_sym_STAR_STAR] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_GT] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [aux_sym_binary_expression_token1] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2115), - [aux_sym_binary_expression_token2] = ACTIONS(2115), - [aux_sym_binary_expression_token3] = ACTIONS(2115), - [aux_sym_binary_expression_token4] = ACTIONS(2117), - [aux_sym_binary_expression_token5] = ACTIONS(2117), - [aux_sym_binary_expression_token6] = ACTIONS(2117), - [anon_sym_QMARK_QMARK] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_IN] = ACTIONS(2115), - [anon_sym_InstanceOf] = ACTIONS(2117), - [anon_sym_instanceof] = ACTIONS(2117), - [anon_sym_INSTANCEOF] = ACTIONS(2117), - [anon_sym_instanceOf] = ACTIONS(2117), - [anon_sym_Of] = ACTIONS(2117), - [anon_sym_of] = ACTIONS(2117), - [anon_sym_OF] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2117), - [sym__ternary_qmark] = ACTIONS(2117), - [sym__elvis_operator] = ACTIONS(2117), - [sym_logical_or] = ACTIONS(2117), - }, - [STATE(2087)] = { - [sym_identifier] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_Query] = ACTIONS(5151), - [anon_sym_query] = ACTIONS(5151), - [anon_sym_QUERY] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [aux_sym_unary_operator_token1] = ACTIONS(5151), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5151), - [aux_sym_number_token2] = ACTIONS(2223), - [anon_sym_This] = ACTIONS(5151), - [anon_sym_this] = ACTIONS(5151), - [anon_sym_THIS] = ACTIONS(5151), - [anon_sym_Super] = ACTIONS(5151), - [anon_sym_super] = ACTIONS(5151), - [anon_sym_SUPER] = ACTIONS(5151), - [anon_sym_True] = ACTIONS(5151), - [anon_sym_true] = ACTIONS(5151), - [anon_sym_TRUE] = ACTIONS(5151), - [anon_sym_False] = ACTIONS(5151), - [anon_sym_false] = ACTIONS(5151), - [anon_sym_FALSE] = ACTIONS(5151), - [anon_sym_Null] = ACTIONS(5151), - [anon_sym_null] = ACTIONS(5151), - [anon_sym_NULL] = ACTIONS(5151), - [anon_sym_Undefined] = ACTIONS(5151), - [anon_sym_undefined] = ACTIONS(5151), - [anon_sym_UNDEFINED] = ACTIONS(5151), - [anon_sym_get] = ACTIONS(5151), - [anon_sym_set] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [sym_hash_empty] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(5151), - [anon_sym_QueryExecute] = ACTIONS(5151), - [anon_sym_queryexecute] = ACTIONS(5151), - [anon_sym_QUERYEXECUTE] = ACTIONS(5151), - [anon_sym_queryExecute] = ACTIONS(5151), - [anon_sym_BQUOTE] = ACTIONS(2223), - [anon_sym_Abstract] = ACTIONS(5151), - [anon_sym_abstract] = ACTIONS(5151), - [anon_sym_ABSTRACT] = ACTIONS(5151), - [anon_sym_Component] = ACTIONS(5151), - [anon_sym_component] = ACTIONS(5151), - [anon_sym_COMPONENT] = ACTIONS(5151), - [anon_sym_Debugger] = ACTIONS(5151), - [anon_sym_debugger] = ACTIONS(5151), - [anon_sym_DEBUGGER] = ACTIONS(5151), - [anon_sym_Final] = ACTIONS(5151), - [anon_sym_final] = ACTIONS(5151), - [anon_sym_FINAL] = ACTIONS(5151), - [anon_sym_Function] = ACTIONS(5151), - [anon_sym_function] = ACTIONS(5151), - [anon_sym_FUNCTION] = ACTIONS(5151), - [anon_sym_Include] = ACTIONS(5151), - [anon_sym_include] = ACTIONS(5151), - [anon_sym_INCLUDE] = ACTIONS(5151), - [anon_sym_New] = ACTIONS(5151), - [anon_sym_new] = ACTIONS(5151), - [anon_sym_NEW] = ACTIONS(5151), - [anon_sym_Package] = ACTIONS(5151), - [anon_sym_package] = ACTIONS(5151), - [anon_sym_PACKAGE] = ACTIONS(5151), - [anon_sym_Private] = ACTIONS(5151), - [anon_sym_private] = ACTIONS(5151), - [anon_sym_PRIVATE] = ACTIONS(5151), - [anon_sym_Public] = ACTIONS(5151), - [anon_sym_public] = ACTIONS(5151), - [anon_sym_PUBLIC] = ACTIONS(5151), - [anon_sym_Remote] = ACTIONS(5151), - [anon_sym_remote] = ACTIONS(5151), - [anon_sym_REMOTE] = ACTIONS(5151), - [anon_sym_Static] = ACTIONS(5151), - [anon_sym_static] = ACTIONS(5151), - [anon_sym_STATIC] = ACTIONS(5151), - [sym__automatic_semicolon] = ACTIONS(2223), - [sym_tag_linefeed] = ACTIONS(2223), - [sym__java_block_open] = ACTIONS(2223), - [sym__static_type_prefix] = ACTIONS(2223), - }, - [STATE(2088)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5133), - [anon_sym_DASH_GT] = ACTIONS(5133), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2089)] = { - [sym_identifier] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_SEMI] = ACTIONS(5157), - [anon_sym_let] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_Query] = ACTIONS(5155), - [anon_sym_query] = ACTIONS(5155), - [anon_sym_QUERY] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_TILDE] = ACTIONS(5157), - [aux_sym_unary_operator_token1] = ACTIONS(5155), - [anon_sym_PLUS_PLUS] = ACTIONS(5157), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DQUOTE] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5155), - [aux_sym_number_token2] = ACTIONS(5157), - [anon_sym_This] = ACTIONS(5155), - [anon_sym_this] = ACTIONS(5155), - [anon_sym_THIS] = ACTIONS(5155), - [anon_sym_Super] = ACTIONS(5155), - [anon_sym_super] = ACTIONS(5155), - [anon_sym_SUPER] = ACTIONS(5155), - [anon_sym_True] = ACTIONS(5155), - [anon_sym_true] = ACTIONS(5155), - [anon_sym_TRUE] = ACTIONS(5155), - [anon_sym_False] = ACTIONS(5155), - [anon_sym_false] = ACTIONS(5155), - [anon_sym_FALSE] = ACTIONS(5155), - [anon_sym_Null] = ACTIONS(5155), - [anon_sym_null] = ACTIONS(5155), - [anon_sym_NULL] = ACTIONS(5155), - [anon_sym_Undefined] = ACTIONS(5155), - [anon_sym_undefined] = ACTIONS(5155), - [anon_sym_UNDEFINED] = ACTIONS(5155), - [anon_sym_get] = ACTIONS(5155), - [anon_sym_set] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [sym_hash_empty] = ACTIONS(5157), - [anon_sym_export] = ACTIONS(5155), - [anon_sym_QueryExecute] = ACTIONS(5155), - [anon_sym_queryexecute] = ACTIONS(5155), - [anon_sym_QUERYEXECUTE] = ACTIONS(5155), - [anon_sym_queryExecute] = ACTIONS(5155), - [anon_sym_BQUOTE] = ACTIONS(5157), - [anon_sym_Abstract] = ACTIONS(5155), - [anon_sym_abstract] = ACTIONS(5155), - [anon_sym_ABSTRACT] = ACTIONS(5155), - [anon_sym_Component] = ACTIONS(5155), - [anon_sym_component] = ACTIONS(5155), - [anon_sym_COMPONENT] = ACTIONS(5155), - [anon_sym_Debugger] = ACTIONS(5155), - [anon_sym_debugger] = ACTIONS(5155), - [anon_sym_DEBUGGER] = ACTIONS(5155), - [anon_sym_Final] = ACTIONS(5155), - [anon_sym_final] = ACTIONS(5155), - [anon_sym_FINAL] = ACTIONS(5155), - [anon_sym_Function] = ACTIONS(5155), - [anon_sym_function] = ACTIONS(5155), - [anon_sym_FUNCTION] = ACTIONS(5155), - [anon_sym_Include] = ACTIONS(5155), - [anon_sym_include] = ACTIONS(5155), - [anon_sym_INCLUDE] = ACTIONS(5155), - [anon_sym_New] = ACTIONS(5155), - [anon_sym_new] = ACTIONS(5155), - [anon_sym_NEW] = ACTIONS(5155), - [anon_sym_Package] = ACTIONS(5155), - [anon_sym_package] = ACTIONS(5155), - [anon_sym_PACKAGE] = ACTIONS(5155), - [anon_sym_Private] = ACTIONS(5155), - [anon_sym_private] = ACTIONS(5155), - [anon_sym_PRIVATE] = ACTIONS(5155), - [anon_sym_Public] = ACTIONS(5155), - [anon_sym_public] = ACTIONS(5155), - [anon_sym_PUBLIC] = ACTIONS(5155), - [anon_sym_Remote] = ACTIONS(5155), - [anon_sym_remote] = ACTIONS(5155), - [anon_sym_REMOTE] = ACTIONS(5155), - [anon_sym_Static] = ACTIONS(5155), - [anon_sym_static] = ACTIONS(5155), - [anon_sym_STATIC] = ACTIONS(5155), - [sym__automatic_semicolon] = ACTIONS(5157), - [sym_tag_linefeed] = ACTIONS(5157), - [sym__java_block_open] = ACTIONS(5157), - [sym__static_type_prefix] = ACTIONS(5157), - }, - [STATE(2090)] = { - [sym_identifier] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_SEMI] = ACTIONS(5161), - [anon_sym_let] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_Query] = ACTIONS(5159), - [anon_sym_query] = ACTIONS(5159), - [anon_sym_QUERY] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_TILDE] = ACTIONS(5161), - [aux_sym_unary_operator_token1] = ACTIONS(5159), - [anon_sym_PLUS_PLUS] = ACTIONS(5161), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DQUOTE] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5159), - [aux_sym_number_token2] = ACTIONS(5161), - [anon_sym_This] = ACTIONS(5159), - [anon_sym_this] = ACTIONS(5159), - [anon_sym_THIS] = ACTIONS(5159), - [anon_sym_Super] = ACTIONS(5159), - [anon_sym_super] = ACTIONS(5159), - [anon_sym_SUPER] = ACTIONS(5159), - [anon_sym_True] = ACTIONS(5159), - [anon_sym_true] = ACTIONS(5159), - [anon_sym_TRUE] = ACTIONS(5159), - [anon_sym_False] = ACTIONS(5159), - [anon_sym_false] = ACTIONS(5159), - [anon_sym_FALSE] = ACTIONS(5159), - [anon_sym_Null] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(5159), - [anon_sym_NULL] = ACTIONS(5159), - [anon_sym_Undefined] = ACTIONS(5159), - [anon_sym_undefined] = ACTIONS(5159), - [anon_sym_UNDEFINED] = ACTIONS(5159), - [anon_sym_get] = ACTIONS(5159), - [anon_sym_set] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [sym_hash_empty] = ACTIONS(5161), - [anon_sym_export] = ACTIONS(5159), - [anon_sym_QueryExecute] = ACTIONS(5159), - [anon_sym_queryexecute] = ACTIONS(5159), - [anon_sym_QUERYEXECUTE] = ACTIONS(5159), - [anon_sym_queryExecute] = ACTIONS(5159), - [anon_sym_BQUOTE] = ACTIONS(5161), - [anon_sym_Abstract] = ACTIONS(5159), - [anon_sym_abstract] = ACTIONS(5159), - [anon_sym_ABSTRACT] = ACTIONS(5159), - [anon_sym_Component] = ACTIONS(5159), - [anon_sym_component] = ACTIONS(5159), - [anon_sym_COMPONENT] = ACTIONS(5159), - [anon_sym_Debugger] = ACTIONS(5159), - [anon_sym_debugger] = ACTIONS(5159), - [anon_sym_DEBUGGER] = ACTIONS(5159), - [anon_sym_Final] = ACTIONS(5159), - [anon_sym_final] = ACTIONS(5159), - [anon_sym_FINAL] = ACTIONS(5159), - [anon_sym_Function] = ACTIONS(5159), - [anon_sym_function] = ACTIONS(5159), - [anon_sym_FUNCTION] = ACTIONS(5159), - [anon_sym_Include] = ACTIONS(5159), - [anon_sym_include] = ACTIONS(5159), - [anon_sym_INCLUDE] = ACTIONS(5159), - [anon_sym_New] = ACTIONS(5159), - [anon_sym_new] = ACTIONS(5159), - [anon_sym_NEW] = ACTIONS(5159), - [anon_sym_Package] = ACTIONS(5159), - [anon_sym_package] = ACTIONS(5159), - [anon_sym_PACKAGE] = ACTIONS(5159), - [anon_sym_Private] = ACTIONS(5159), - [anon_sym_private] = ACTIONS(5159), - [anon_sym_PRIVATE] = ACTIONS(5159), - [anon_sym_Public] = ACTIONS(5159), - [anon_sym_public] = ACTIONS(5159), - [anon_sym_PUBLIC] = ACTIONS(5159), - [anon_sym_Remote] = ACTIONS(5159), - [anon_sym_remote] = ACTIONS(5159), - [anon_sym_REMOTE] = ACTIONS(5159), - [anon_sym_Static] = ACTIONS(5159), - [anon_sym_static] = ACTIONS(5159), - [anon_sym_STATIC] = ACTIONS(5159), - [sym__automatic_semicolon] = ACTIONS(5161), - [sym_tag_linefeed] = ACTIONS(5161), - [sym__java_block_open] = ACTIONS(5161), - [sym__static_type_prefix] = ACTIONS(5161), - }, - [STATE(2091)] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_Query] = ACTIONS(2300), - [anon_sym_query] = ACTIONS(2300), - [anon_sym_QUERY] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [aux_sym_unary_operator_token1] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2300), - [aux_sym_number_token2] = ACTIONS(2302), - [anon_sym_This] = ACTIONS(2300), - [anon_sym_this] = ACTIONS(2300), - [anon_sym_THIS] = ACTIONS(2300), - [anon_sym_Super] = ACTIONS(2300), - [anon_sym_super] = ACTIONS(2300), - [anon_sym_SUPER] = ACTIONS(2300), - [anon_sym_True] = ACTIONS(2300), - [anon_sym_true] = ACTIONS(2300), - [anon_sym_TRUE] = ACTIONS(2300), - [anon_sym_False] = ACTIONS(2300), - [anon_sym_false] = ACTIONS(2300), - [anon_sym_FALSE] = ACTIONS(2300), - [anon_sym_Null] = ACTIONS(2300), - [anon_sym_null] = ACTIONS(2300), - [anon_sym_NULL] = ACTIONS(2300), - [anon_sym_Undefined] = ACTIONS(2300), - [anon_sym_undefined] = ACTIONS(2300), - [anon_sym_UNDEFINED] = ACTIONS(2300), - [anon_sym_get] = ACTIONS(2300), - [anon_sym_set] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(2300), - [sym_hash_empty] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_QueryExecute] = ACTIONS(2300), - [anon_sym_queryexecute] = ACTIONS(2300), - [anon_sym_QUERYEXECUTE] = ACTIONS(2300), - [anon_sym_queryExecute] = ACTIONS(2300), - [anon_sym_BQUOTE] = ACTIONS(2302), - [anon_sym_Abstract] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_ABSTRACT] = ACTIONS(2300), - [anon_sym_Component] = ACTIONS(2300), - [anon_sym_component] = ACTIONS(2300), - [anon_sym_COMPONENT] = ACTIONS(2300), - [anon_sym_Debugger] = ACTIONS(2300), - [anon_sym_debugger] = ACTIONS(2300), - [anon_sym_DEBUGGER] = ACTIONS(2300), - [anon_sym_Final] = ACTIONS(2300), - [anon_sym_final] = ACTIONS(2300), - [anon_sym_FINAL] = ACTIONS(2300), - [anon_sym_Function] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_FUNCTION] = ACTIONS(2300), - [anon_sym_Include] = ACTIONS(2300), - [anon_sym_include] = ACTIONS(2300), - [anon_sym_INCLUDE] = ACTIONS(2300), - [anon_sym_New] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_NEW] = ACTIONS(2300), - [anon_sym_Package] = ACTIONS(2300), - [anon_sym_package] = ACTIONS(2300), - [anon_sym_PACKAGE] = ACTIONS(2300), - [anon_sym_Private] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_PRIVATE] = ACTIONS(2300), - [anon_sym_Public] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_PUBLIC] = ACTIONS(2300), - [anon_sym_Remote] = ACTIONS(2300), - [anon_sym_remote] = ACTIONS(2300), - [anon_sym_REMOTE] = ACTIONS(2300), - [anon_sym_Static] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_STATIC] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym_tag_linefeed] = ACTIONS(2302), - [sym__java_block_open] = ACTIONS(2302), - [sym__static_type_prefix] = ACTIONS(2302), + [anon_sym_INCLUDE] = ACTIONS(5143), + [anon_sym_New] = ACTIONS(5143), + [anon_sym_new] = ACTIONS(5143), + [anon_sym_NEW] = ACTIONS(5143), + [anon_sym_Package] = ACTIONS(5143), + [anon_sym_package] = ACTIONS(5143), + [anon_sym_PACKAGE] = ACTIONS(5143), + [anon_sym_Private] = ACTIONS(5143), + [anon_sym_private] = ACTIONS(5143), + [anon_sym_PRIVATE] = ACTIONS(5143), + [anon_sym_Public] = ACTIONS(5143), + [anon_sym_public] = ACTIONS(5143), + [anon_sym_PUBLIC] = ACTIONS(5143), + [anon_sym_Remote] = ACTIONS(5143), + [anon_sym_remote] = ACTIONS(5143), + [anon_sym_REMOTE] = ACTIONS(5143), + [anon_sym_Static] = ACTIONS(5143), + [anon_sym_static] = ACTIONS(5143), + [anon_sym_STATIC] = ACTIONS(5143), + [sym__automatic_semicolon] = ACTIONS(5145), + [sym_tag_linefeed] = ACTIONS(5145), + [sym__java_block_open] = ACTIONS(5145), + [sym__static_type_prefix] = ACTIONS(5145), }, - [STATE(2092)] = { - [sym_identifier] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5165), - [anon_sym_let] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_Query] = ACTIONS(5163), - [anon_sym_query] = ACTIONS(5163), - [anon_sym_QUERY] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_TILDE] = ACTIONS(5165), - [aux_sym_unary_operator_token1] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5165), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DQUOTE] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5163), - [aux_sym_number_token2] = ACTIONS(5165), - [anon_sym_This] = ACTIONS(5163), - [anon_sym_this] = ACTIONS(5163), - [anon_sym_THIS] = ACTIONS(5163), - [anon_sym_Super] = ACTIONS(5163), - [anon_sym_super] = ACTIONS(5163), - [anon_sym_SUPER] = ACTIONS(5163), - [anon_sym_True] = ACTIONS(5163), - [anon_sym_true] = ACTIONS(5163), - [anon_sym_TRUE] = ACTIONS(5163), - [anon_sym_False] = ACTIONS(5163), - [anon_sym_false] = ACTIONS(5163), - [anon_sym_FALSE] = ACTIONS(5163), - [anon_sym_Null] = ACTIONS(5163), - [anon_sym_null] = ACTIONS(5163), - [anon_sym_NULL] = ACTIONS(5163), - [anon_sym_Undefined] = ACTIONS(5163), - [anon_sym_undefined] = ACTIONS(5163), - [anon_sym_UNDEFINED] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5163), - [anon_sym_set] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [sym_hash_empty] = ACTIONS(5165), - [anon_sym_export] = ACTIONS(5163), - [anon_sym_QueryExecute] = ACTIONS(5163), - [anon_sym_queryexecute] = ACTIONS(5163), - [anon_sym_QUERYEXECUTE] = ACTIONS(5163), - [anon_sym_queryExecute] = ACTIONS(5163), - [anon_sym_BQUOTE] = ACTIONS(5165), - [anon_sym_Abstract] = ACTIONS(5163), - [anon_sym_abstract] = ACTIONS(5163), - [anon_sym_ABSTRACT] = ACTIONS(5163), - [anon_sym_Component] = ACTIONS(5163), - [anon_sym_component] = ACTIONS(5163), - [anon_sym_COMPONENT] = ACTIONS(5163), - [anon_sym_Debugger] = ACTIONS(5163), - [anon_sym_debugger] = ACTIONS(5163), - [anon_sym_DEBUGGER] = ACTIONS(5163), - [anon_sym_Final] = ACTIONS(5163), - [anon_sym_final] = ACTIONS(5163), - [anon_sym_FINAL] = ACTIONS(5163), - [anon_sym_Function] = ACTIONS(5163), - [anon_sym_function] = ACTIONS(5163), - [anon_sym_FUNCTION] = ACTIONS(5163), - [anon_sym_Include] = ACTIONS(5163), - [anon_sym_include] = ACTIONS(5163), - [anon_sym_INCLUDE] = ACTIONS(5163), - [anon_sym_New] = ACTIONS(5163), - [anon_sym_new] = ACTIONS(5163), - [anon_sym_NEW] = ACTIONS(5163), - [anon_sym_Package] = ACTIONS(5163), - [anon_sym_package] = ACTIONS(5163), - [anon_sym_PACKAGE] = ACTIONS(5163), - [anon_sym_Private] = ACTIONS(5163), - [anon_sym_private] = ACTIONS(5163), - [anon_sym_PRIVATE] = ACTIONS(5163), - [anon_sym_Public] = ACTIONS(5163), - [anon_sym_public] = ACTIONS(5163), - [anon_sym_PUBLIC] = ACTIONS(5163), - [anon_sym_Remote] = ACTIONS(5163), - [anon_sym_remote] = ACTIONS(5163), - [anon_sym_REMOTE] = ACTIONS(5163), - [anon_sym_Static] = ACTIONS(5163), - [anon_sym_static] = ACTIONS(5163), - [anon_sym_STATIC] = ACTIONS(5163), - [sym__automatic_semicolon] = ACTIONS(5165), - [sym_tag_linefeed] = ACTIONS(5165), - [sym__java_block_open] = ACTIONS(5165), - [sym__static_type_prefix] = ACTIONS(5165), + [STATE(2106)] = { + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1949), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1949), + [anon_sym_instanceof] = ACTIONS(1949), + [anon_sym_INSTANCEOF] = ACTIONS(1949), + [anon_sym_instanceOf] = ACTIONS(1949), + [anon_sym_Of] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1955), + [anon_sym_OF] = ACTIONS(1955), + [sym__automatic_semicolon] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), }, - [STATE(2093)] = { - [sym_identifier] = ACTIONS(2356), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_let] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2360), - [anon_sym_Query] = ACTIONS(2356), - [anon_sym_query] = ACTIONS(2356), - [anon_sym_QUERY] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_SLASH] = ACTIONS(2356), - [anon_sym_BANG] = ACTIONS(2360), - [anon_sym_TILDE] = ACTIONS(2360), - [aux_sym_unary_operator_token1] = ACTIONS(2356), - [anon_sym_PLUS_PLUS] = ACTIONS(2360), - [anon_sym_DASH_DASH] = ACTIONS(2360), - [anon_sym_DQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2356), - [aux_sym_number_token2] = ACTIONS(2360), - [anon_sym_This] = ACTIONS(2356), - [anon_sym_this] = ACTIONS(2356), - [anon_sym_THIS] = ACTIONS(2356), - [anon_sym_Super] = ACTIONS(2356), - [anon_sym_super] = ACTIONS(2356), - [anon_sym_SUPER] = ACTIONS(2356), - [anon_sym_True] = ACTIONS(2356), - [anon_sym_true] = ACTIONS(2356), - [anon_sym_TRUE] = ACTIONS(2356), - [anon_sym_False] = ACTIONS(2356), - [anon_sym_false] = ACTIONS(2356), - [anon_sym_FALSE] = ACTIONS(2356), - [anon_sym_Null] = ACTIONS(2356), - [anon_sym_null] = ACTIONS(2356), - [anon_sym_NULL] = ACTIONS(2356), - [anon_sym_Undefined] = ACTIONS(2356), - [anon_sym_undefined] = ACTIONS(2356), - [anon_sym_UNDEFINED] = ACTIONS(2356), - [anon_sym_get] = ACTIONS(2356), - [anon_sym_set] = ACTIONS(2356), - [anon_sym_POUND] = ACTIONS(2356), - [sym_hash_empty] = ACTIONS(2360), - [anon_sym_export] = ACTIONS(2356), - [anon_sym_QueryExecute] = ACTIONS(2356), - [anon_sym_queryexecute] = ACTIONS(2356), - [anon_sym_QUERYEXECUTE] = ACTIONS(2356), - [anon_sym_queryExecute] = ACTIONS(2356), - [anon_sym_BQUOTE] = ACTIONS(2360), - [anon_sym_Abstract] = ACTIONS(2356), - [anon_sym_abstract] = ACTIONS(2356), - [anon_sym_ABSTRACT] = ACTIONS(2356), - [anon_sym_Component] = ACTIONS(2356), - [anon_sym_component] = ACTIONS(2356), - [anon_sym_COMPONENT] = ACTIONS(2356), - [anon_sym_Debugger] = ACTIONS(2356), - [anon_sym_debugger] = ACTIONS(2356), - [anon_sym_DEBUGGER] = ACTIONS(2356), - [anon_sym_Final] = ACTIONS(2356), - [anon_sym_final] = ACTIONS(2356), - [anon_sym_FINAL] = ACTIONS(2356), - [anon_sym_Function] = ACTIONS(2356), - [anon_sym_function] = ACTIONS(2356), - [anon_sym_FUNCTION] = ACTIONS(2356), - [anon_sym_Include] = ACTIONS(2356), - [anon_sym_include] = ACTIONS(2356), - [anon_sym_INCLUDE] = ACTIONS(2356), - [anon_sym_New] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2356), - [anon_sym_NEW] = ACTIONS(2356), - [anon_sym_Package] = ACTIONS(2356), - [anon_sym_package] = ACTIONS(2356), - [anon_sym_PACKAGE] = ACTIONS(2356), - [anon_sym_Private] = ACTIONS(2356), - [anon_sym_private] = ACTIONS(2356), - [anon_sym_PRIVATE] = ACTIONS(2356), - [anon_sym_Public] = ACTIONS(2356), - [anon_sym_public] = ACTIONS(2356), - [anon_sym_PUBLIC] = ACTIONS(2356), - [anon_sym_Remote] = ACTIONS(2356), - [anon_sym_remote] = ACTIONS(2356), - [anon_sym_REMOTE] = ACTIONS(2356), - [anon_sym_Static] = ACTIONS(2356), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_STATIC] = ACTIONS(2356), - [sym__automatic_semicolon] = ACTIONS(2360), - [sym_tag_linefeed] = ACTIONS(2360), - [sym__java_block_open] = ACTIONS(2360), - [sym__static_type_prefix] = ACTIONS(2360), + [STATE(2107)] = { + [sym_identifier] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_Query] = ACTIONS(1908), + [anon_sym_query] = ACTIONS(1908), + [anon_sym_QUERY] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [aux_sym_unary_operator_token1] = ACTIONS(1908), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(1908), + [aux_sym_number_token2] = ACTIONS(1910), + [anon_sym_This] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(1908), + [anon_sym_THIS] = ACTIONS(1908), + [anon_sym_Super] = ACTIONS(1908), + [anon_sym_super] = ACTIONS(1908), + [anon_sym_SUPER] = ACTIONS(1908), + [anon_sym_True] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_TRUE] = ACTIONS(1908), + [anon_sym_False] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [anon_sym_FALSE] = ACTIONS(1908), + [anon_sym_Null] = ACTIONS(1908), + [anon_sym_null] = ACTIONS(1908), + [anon_sym_NULL] = ACTIONS(1908), + [anon_sym_Undefined] = ACTIONS(1908), + [anon_sym_undefined] = ACTIONS(1908), + [anon_sym_UNDEFINED] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [sym_hash_empty] = ACTIONS(1910), + [anon_sym_export] = ACTIONS(1908), + [anon_sym_QueryExecute] = ACTIONS(1908), + [anon_sym_queryexecute] = ACTIONS(1908), + [anon_sym_QUERYEXECUTE] = ACTIONS(1908), + [anon_sym_queryExecute] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1910), + [anon_sym_Abstract] = ACTIONS(1908), + [anon_sym_abstract] = ACTIONS(1908), + [anon_sym_ABSTRACT] = ACTIONS(1908), + [anon_sym_Component] = ACTIONS(1908), + [anon_sym_component] = ACTIONS(1908), + [anon_sym_COMPONENT] = ACTIONS(1908), + [anon_sym_Debugger] = ACTIONS(1908), + [anon_sym_debugger] = ACTIONS(1908), + [anon_sym_DEBUGGER] = ACTIONS(1908), + [anon_sym_Final] = ACTIONS(1908), + [anon_sym_final] = ACTIONS(1908), + [anon_sym_FINAL] = ACTIONS(1908), + [anon_sym_Function] = ACTIONS(1908), + [anon_sym_function] = ACTIONS(1908), + [anon_sym_FUNCTION] = ACTIONS(1908), + [anon_sym_Include] = ACTIONS(1908), + [anon_sym_include] = ACTIONS(1908), + [anon_sym_INCLUDE] = ACTIONS(1908), + [anon_sym_New] = ACTIONS(1908), + [anon_sym_new] = ACTIONS(1908), + [anon_sym_NEW] = ACTIONS(1908), + [anon_sym_Package] = ACTIONS(1908), + [anon_sym_package] = ACTIONS(1908), + [anon_sym_PACKAGE] = ACTIONS(1908), + [anon_sym_Private] = ACTIONS(1908), + [anon_sym_private] = ACTIONS(1908), + [anon_sym_PRIVATE] = ACTIONS(1908), + [anon_sym_Public] = ACTIONS(1908), + [anon_sym_public] = ACTIONS(1908), + [anon_sym_PUBLIC] = ACTIONS(1908), + [anon_sym_Remote] = ACTIONS(1908), + [anon_sym_remote] = ACTIONS(1908), + [anon_sym_REMOTE] = ACTIONS(1908), + [anon_sym_Static] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_STATIC] = ACTIONS(1908), + [sym__automatic_semicolon] = ACTIONS(1910), + [sym_tag_linefeed] = ACTIONS(1910), + [sym__java_block_open] = ACTIONS(1910), + [sym__static_type_prefix] = ACTIONS(1910), }, - [STATE(2094)] = { + [STATE(2108)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -334958,19 +337556,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2095)] = { - [sym_component_attribute] = STATE(4161), - [sym_component_body] = STATE(2949), - [aux_sym_component_repeat1] = STATE(4161), - [sym_identifier] = ACTIONS(5071), + [STATE(2109)] = { + [sym_component_attribute] = STATE(4338), + [sym_component_body] = STATE(2714), + [aux_sym_component_repeat1] = STATE(4338), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5147), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -335048,113 +337646,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2096)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Of] = ACTIONS(404), - [anon_sym_of] = ACTIONS(404), - [anon_sym_OF] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [STATE(2110)] = { + [sym_identifier] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_let] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_Query] = ACTIONS(5149), + [anon_sym_query] = ACTIONS(5149), + [anon_sym_QUERY] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_TILDE] = ACTIONS(5151), + [aux_sym_unary_operator_token1] = ACTIONS(5149), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_DQUOTE] = ACTIONS(5151), + [anon_sym_SQUOTE] = ACTIONS(5151), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5149), + [aux_sym_number_token2] = ACTIONS(5151), + [anon_sym_This] = ACTIONS(5149), + [anon_sym_this] = ACTIONS(5149), + [anon_sym_THIS] = ACTIONS(5149), + [anon_sym_Super] = ACTIONS(5149), + [anon_sym_super] = ACTIONS(5149), + [anon_sym_SUPER] = ACTIONS(5149), + [anon_sym_True] = ACTIONS(5149), + [anon_sym_true] = ACTIONS(5149), + [anon_sym_TRUE] = ACTIONS(5149), + [anon_sym_False] = ACTIONS(5149), + [anon_sym_false] = ACTIONS(5149), + [anon_sym_FALSE] = ACTIONS(5149), + [anon_sym_Null] = ACTIONS(5149), + [anon_sym_null] = ACTIONS(5149), + [anon_sym_NULL] = ACTIONS(5149), + [anon_sym_Undefined] = ACTIONS(5149), + [anon_sym_undefined] = ACTIONS(5149), + [anon_sym_UNDEFINED] = ACTIONS(5149), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_POUND] = ACTIONS(5149), + [sym_hash_empty] = ACTIONS(5151), + [anon_sym_export] = ACTIONS(5149), + [anon_sym_QueryExecute] = ACTIONS(5149), + [anon_sym_queryexecute] = ACTIONS(5149), + [anon_sym_QUERYEXECUTE] = ACTIONS(5149), + [anon_sym_queryExecute] = ACTIONS(5149), + [anon_sym_BQUOTE] = ACTIONS(5151), + [anon_sym_Abstract] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_ABSTRACT] = ACTIONS(5149), + [anon_sym_Component] = ACTIONS(5149), + [anon_sym_component] = ACTIONS(5149), + [anon_sym_COMPONENT] = ACTIONS(5149), + [anon_sym_Debugger] = ACTIONS(5149), + [anon_sym_debugger] = ACTIONS(5149), + [anon_sym_DEBUGGER] = ACTIONS(5149), + [anon_sym_Final] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_FINAL] = ACTIONS(5149), + [anon_sym_Function] = ACTIONS(5149), + [anon_sym_function] = ACTIONS(5149), + [anon_sym_FUNCTION] = ACTIONS(5149), + [anon_sym_Include] = ACTIONS(5149), + [anon_sym_include] = ACTIONS(5149), + [anon_sym_INCLUDE] = ACTIONS(5149), + [anon_sym_New] = ACTIONS(5149), + [anon_sym_new] = ACTIONS(5149), + [anon_sym_NEW] = ACTIONS(5149), + [anon_sym_Package] = ACTIONS(5149), + [anon_sym_package] = ACTIONS(5149), + [anon_sym_PACKAGE] = ACTIONS(5149), + [anon_sym_Private] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_PRIVATE] = ACTIONS(5149), + [anon_sym_Public] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_PUBLIC] = ACTIONS(5149), + [anon_sym_Remote] = ACTIONS(5149), + [anon_sym_remote] = ACTIONS(5149), + [anon_sym_REMOTE] = ACTIONS(5149), + [anon_sym_Static] = ACTIONS(5149), + [anon_sym_static] = ACTIONS(5149), + [anon_sym_STATIC] = ACTIONS(5149), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_tag_linefeed] = ACTIONS(5151), + [sym__java_block_open] = ACTIONS(5151), + [sym__static_type_prefix] = ACTIONS(5151), }, - [STATE(2097)] = { - [sym_component_attribute] = STATE(4174), - [sym_component_body] = STATE(765), - [aux_sym_component_repeat1] = STATE(4174), - [sym_identifier] = ACTIONS(5071), + [STATE(2111)] = { + [sym_identifier] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_let] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_Query] = ACTIONS(5153), + [anon_sym_query] = ACTIONS(5153), + [anon_sym_QUERY] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_TILDE] = ACTIONS(5155), + [aux_sym_unary_operator_token1] = ACTIONS(5153), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_DQUOTE] = ACTIONS(5155), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5153), + [aux_sym_number_token2] = ACTIONS(5155), + [anon_sym_This] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_THIS] = ACTIONS(5153), + [anon_sym_Super] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_SUPER] = ACTIONS(5153), + [anon_sym_True] = ACTIONS(5153), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_TRUE] = ACTIONS(5153), + [anon_sym_False] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_FALSE] = ACTIONS(5153), + [anon_sym_Null] = ACTIONS(5153), + [anon_sym_null] = ACTIONS(5153), + [anon_sym_NULL] = ACTIONS(5153), + [anon_sym_Undefined] = ACTIONS(5153), + [anon_sym_undefined] = ACTIONS(5153), + [anon_sym_UNDEFINED] = ACTIONS(5153), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_POUND] = ACTIONS(5153), + [sym_hash_empty] = ACTIONS(5155), + [anon_sym_export] = ACTIONS(5153), + [anon_sym_QueryExecute] = ACTIONS(5153), + [anon_sym_queryexecute] = ACTIONS(5153), + [anon_sym_QUERYEXECUTE] = ACTIONS(5153), + [anon_sym_queryExecute] = ACTIONS(5153), + [anon_sym_BQUOTE] = ACTIONS(5155), + [anon_sym_Abstract] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_ABSTRACT] = ACTIONS(5153), + [anon_sym_Component] = ACTIONS(5153), + [anon_sym_component] = ACTIONS(5153), + [anon_sym_COMPONENT] = ACTIONS(5153), + [anon_sym_Debugger] = ACTIONS(5153), + [anon_sym_debugger] = ACTIONS(5153), + [anon_sym_DEBUGGER] = ACTIONS(5153), + [anon_sym_Final] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_FINAL] = ACTIONS(5153), + [anon_sym_Function] = ACTIONS(5153), + [anon_sym_function] = ACTIONS(5153), + [anon_sym_FUNCTION] = ACTIONS(5153), + [anon_sym_Include] = ACTIONS(5153), + [anon_sym_include] = ACTIONS(5153), + [anon_sym_INCLUDE] = ACTIONS(5153), + [anon_sym_New] = ACTIONS(5153), + [anon_sym_new] = ACTIONS(5153), + [anon_sym_NEW] = ACTIONS(5153), + [anon_sym_Package] = ACTIONS(5153), + [anon_sym_package] = ACTIONS(5153), + [anon_sym_PACKAGE] = ACTIONS(5153), + [anon_sym_Private] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_PRIVATE] = ACTIONS(5153), + [anon_sym_Public] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_PUBLIC] = ACTIONS(5153), + [anon_sym_Remote] = ACTIONS(5153), + [anon_sym_remote] = ACTIONS(5153), + [anon_sym_REMOTE] = ACTIONS(5153), + [anon_sym_Static] = ACTIONS(5153), + [anon_sym_static] = ACTIONS(5153), + [anon_sym_STATIC] = ACTIONS(5153), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_tag_linefeed] = ACTIONS(5155), + [sym__java_block_open] = ACTIONS(5155), + [sym__static_type_prefix] = ACTIONS(5155), + }, + [STATE(2112)] = { + [sym_component_attribute] = STATE(4260), + [sym_component_body] = STATE(676), + [aux_sym_component_repeat1] = STATE(4260), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_LBRACE] = ACTIONS(5157), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -335232,310 +337922,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2098)] = { - [sym_identifier] = ACTIONS(5174), - [anon_sym_LBRACE] = ACTIONS(5176), - [anon_sym_LPAREN] = ACTIONS(5176), - [anon_sym_SEMI] = ACTIONS(5176), - [anon_sym_let] = ACTIONS(5174), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_Query] = ACTIONS(5174), - [anon_sym_query] = ACTIONS(5174), - [anon_sym_QUERY] = ACTIONS(5174), - [anon_sym_PLUS] = ACTIONS(5174), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_SLASH] = ACTIONS(5174), - [anon_sym_BANG] = ACTIONS(5176), - [anon_sym_TILDE] = ACTIONS(5176), - [aux_sym_unary_operator_token1] = ACTIONS(5174), - [anon_sym_PLUS_PLUS] = ACTIONS(5176), - [anon_sym_DASH_DASH] = ACTIONS(5176), - [anon_sym_DQUOTE] = ACTIONS(5176), - [anon_sym_SQUOTE] = ACTIONS(5176), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5174), - [aux_sym_number_token2] = ACTIONS(5176), - [anon_sym_This] = ACTIONS(5174), - [anon_sym_this] = ACTIONS(5174), - [anon_sym_THIS] = ACTIONS(5174), - [anon_sym_Super] = ACTIONS(5174), - [anon_sym_super] = ACTIONS(5174), - [anon_sym_SUPER] = ACTIONS(5174), - [anon_sym_True] = ACTIONS(5174), - [anon_sym_true] = ACTIONS(5174), - [anon_sym_TRUE] = ACTIONS(5174), - [anon_sym_False] = ACTIONS(5174), - [anon_sym_false] = ACTIONS(5174), - [anon_sym_FALSE] = ACTIONS(5174), - [anon_sym_Null] = ACTIONS(5174), - [anon_sym_null] = ACTIONS(5174), - [anon_sym_NULL] = ACTIONS(5174), - [anon_sym_Undefined] = ACTIONS(5174), - [anon_sym_undefined] = ACTIONS(5174), - [anon_sym_UNDEFINED] = ACTIONS(5174), - [anon_sym_get] = ACTIONS(5174), - [anon_sym_set] = ACTIONS(5174), - [anon_sym_POUND] = ACTIONS(5174), - [sym_hash_empty] = ACTIONS(5176), - [anon_sym_export] = ACTIONS(5174), - [anon_sym_QueryExecute] = ACTIONS(5174), - [anon_sym_queryexecute] = ACTIONS(5174), - [anon_sym_QUERYEXECUTE] = ACTIONS(5174), - [anon_sym_queryExecute] = ACTIONS(5174), - [anon_sym_BQUOTE] = ACTIONS(5176), - [anon_sym_Abstract] = ACTIONS(5174), - [anon_sym_abstract] = ACTIONS(5174), - [anon_sym_ABSTRACT] = ACTIONS(5174), - [anon_sym_Component] = ACTIONS(5174), - [anon_sym_component] = ACTIONS(5174), - [anon_sym_COMPONENT] = ACTIONS(5174), - [anon_sym_Debugger] = ACTIONS(5174), - [anon_sym_debugger] = ACTIONS(5174), - [anon_sym_DEBUGGER] = ACTIONS(5174), - [anon_sym_Final] = ACTIONS(5174), - [anon_sym_final] = ACTIONS(5174), - [anon_sym_FINAL] = ACTIONS(5174), - [anon_sym_Function] = ACTIONS(5174), - [anon_sym_function] = ACTIONS(5174), - [anon_sym_FUNCTION] = ACTIONS(5174), - [anon_sym_Include] = ACTIONS(5174), - [anon_sym_include] = ACTIONS(5174), - [anon_sym_INCLUDE] = ACTIONS(5174), - [anon_sym_New] = ACTIONS(5174), - [anon_sym_new] = ACTIONS(5174), - [anon_sym_NEW] = ACTIONS(5174), - [anon_sym_Package] = ACTIONS(5174), - [anon_sym_package] = ACTIONS(5174), - [anon_sym_PACKAGE] = ACTIONS(5174), - [anon_sym_Private] = ACTIONS(5174), - [anon_sym_private] = ACTIONS(5174), - [anon_sym_PRIVATE] = ACTIONS(5174), - [anon_sym_Public] = ACTIONS(5174), - [anon_sym_public] = ACTIONS(5174), - [anon_sym_PUBLIC] = ACTIONS(5174), - [anon_sym_Remote] = ACTIONS(5174), - [anon_sym_remote] = ACTIONS(5174), - [anon_sym_REMOTE] = ACTIONS(5174), - [anon_sym_Static] = ACTIONS(5174), - [anon_sym_static] = ACTIONS(5174), - [anon_sym_STATIC] = ACTIONS(5174), - [sym__automatic_semicolon] = ACTIONS(5176), - [sym_tag_linefeed] = ACTIONS(5176), - [sym__java_block_open] = ACTIONS(5176), - [sym__static_type_prefix] = ACTIONS(5176), + [STATE(2113)] = { + [sym_identifier] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_Query] = ACTIONS(2228), + [anon_sym_query] = ACTIONS(2228), + [anon_sym_QUERY] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_TILDE] = ACTIONS(2230), + [aux_sym_unary_operator_token1] = ACTIONS(2228), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2228), + [aux_sym_number_token2] = ACTIONS(2230), + [anon_sym_This] = ACTIONS(2228), + [anon_sym_this] = ACTIONS(2228), + [anon_sym_THIS] = ACTIONS(2228), + [anon_sym_Super] = ACTIONS(2228), + [anon_sym_super] = ACTIONS(2228), + [anon_sym_SUPER] = ACTIONS(2228), + [anon_sym_True] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_TRUE] = ACTIONS(2228), + [anon_sym_False] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_FALSE] = ACTIONS(2228), + [anon_sym_Null] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [anon_sym_NULL] = ACTIONS(2228), + [anon_sym_Undefined] = ACTIONS(2228), + [anon_sym_undefined] = ACTIONS(2228), + [anon_sym_UNDEFINED] = ACTIONS(2228), + [anon_sym_get] = ACTIONS(2228), + [anon_sym_set] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(2228), + [sym_hash_empty] = ACTIONS(2230), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_QueryExecute] = ACTIONS(2228), + [anon_sym_queryexecute] = ACTIONS(2228), + [anon_sym_QUERYEXECUTE] = ACTIONS(2228), + [anon_sym_queryExecute] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_Abstract] = ACTIONS(2228), + [anon_sym_abstract] = ACTIONS(2228), + [anon_sym_ABSTRACT] = ACTIONS(2228), + [anon_sym_Component] = ACTIONS(2228), + [anon_sym_component] = ACTIONS(2228), + [anon_sym_COMPONENT] = ACTIONS(2228), + [anon_sym_Debugger] = ACTIONS(2228), + [anon_sym_debugger] = ACTIONS(2228), + [anon_sym_DEBUGGER] = ACTIONS(2228), + [anon_sym_Final] = ACTIONS(2228), + [anon_sym_final] = ACTIONS(2228), + [anon_sym_FINAL] = ACTIONS(2228), + [anon_sym_Function] = ACTIONS(2228), + [anon_sym_function] = ACTIONS(2228), + [anon_sym_FUNCTION] = ACTIONS(2228), + [anon_sym_Include] = ACTIONS(2228), + [anon_sym_include] = ACTIONS(2228), + [anon_sym_INCLUDE] = ACTIONS(2228), + [anon_sym_New] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2228), + [anon_sym_NEW] = ACTIONS(2228), + [anon_sym_Package] = ACTIONS(2228), + [anon_sym_package] = ACTIONS(2228), + [anon_sym_PACKAGE] = ACTIONS(2228), + [anon_sym_Private] = ACTIONS(2228), + [anon_sym_private] = ACTIONS(2228), + [anon_sym_PRIVATE] = ACTIONS(2228), + [anon_sym_Public] = ACTIONS(2228), + [anon_sym_public] = ACTIONS(2228), + [anon_sym_PUBLIC] = ACTIONS(2228), + [anon_sym_Remote] = ACTIONS(2228), + [anon_sym_remote] = ACTIONS(2228), + [anon_sym_REMOTE] = ACTIONS(2228), + [anon_sym_Static] = ACTIONS(2228), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_STATIC] = ACTIONS(2228), + [sym__automatic_semicolon] = ACTIONS(2230), + [sym_tag_linefeed] = ACTIONS(2230), + [sym__java_block_open] = ACTIONS(2230), + [sym__static_type_prefix] = ACTIONS(2230), }, - [STATE(2099)] = { - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_COLON] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2099), - [sym_optional_chain] = ACTIONS(2101), - [sym_static_chain] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2101), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(2101), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_GT] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [aux_sym_binary_expression_token1] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2099), - [aux_sym_binary_expression_token2] = ACTIONS(2099), - [aux_sym_binary_expression_token3] = ACTIONS(2099), - [aux_sym_binary_expression_token4] = ACTIONS(2101), - [aux_sym_binary_expression_token5] = ACTIONS(2101), - [aux_sym_binary_expression_token6] = ACTIONS(2101), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_IN] = ACTIONS(2099), - [anon_sym_InstanceOf] = ACTIONS(2101), - [anon_sym_instanceof] = ACTIONS(2101), - [anon_sym_INSTANCEOF] = ACTIONS(2101), - [anon_sym_instanceOf] = ACTIONS(2101), - [anon_sym_Of] = ACTIONS(2101), - [anon_sym_of] = ACTIONS(2101), - [anon_sym_OF] = ACTIONS(2101), - [sym__automatic_semicolon] = ACTIONS(2101), - [sym__ternary_qmark] = ACTIONS(2101), - [sym__elvis_operator] = ACTIONS(2101), - [sym_logical_or] = ACTIONS(2101), + [STATE(2114)] = { + [sym_identifier] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5161), + [anon_sym_SEMI] = ACTIONS(5161), + [anon_sym_let] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_Query] = ACTIONS(5159), + [anon_sym_query] = ACTIONS(5159), + [anon_sym_QUERY] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5159), + [anon_sym_DASH] = ACTIONS(5159), + [anon_sym_SLASH] = ACTIONS(5159), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_TILDE] = ACTIONS(5161), + [aux_sym_unary_operator_token1] = ACTIONS(5159), + [anon_sym_PLUS_PLUS] = ACTIONS(5161), + [anon_sym_DASH_DASH] = ACTIONS(5161), + [anon_sym_DQUOTE] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5159), + [aux_sym_number_token2] = ACTIONS(5161), + [anon_sym_This] = ACTIONS(5159), + [anon_sym_this] = ACTIONS(5159), + [anon_sym_THIS] = ACTIONS(5159), + [anon_sym_Super] = ACTIONS(5159), + [anon_sym_super] = ACTIONS(5159), + [anon_sym_SUPER] = ACTIONS(5159), + [anon_sym_True] = ACTIONS(5159), + [anon_sym_true] = ACTIONS(5159), + [anon_sym_TRUE] = ACTIONS(5159), + [anon_sym_False] = ACTIONS(5159), + [anon_sym_false] = ACTIONS(5159), + [anon_sym_FALSE] = ACTIONS(5159), + [anon_sym_Null] = ACTIONS(5159), + [anon_sym_null] = ACTIONS(5159), + [anon_sym_NULL] = ACTIONS(5159), + [anon_sym_Undefined] = ACTIONS(5159), + [anon_sym_undefined] = ACTIONS(5159), + [anon_sym_UNDEFINED] = ACTIONS(5159), + [anon_sym_get] = ACTIONS(5159), + [anon_sym_set] = ACTIONS(5159), + [anon_sym_POUND] = ACTIONS(5159), + [sym_hash_empty] = ACTIONS(5161), + [anon_sym_export] = ACTIONS(5159), + [anon_sym_QueryExecute] = ACTIONS(5159), + [anon_sym_queryexecute] = ACTIONS(5159), + [anon_sym_QUERYEXECUTE] = ACTIONS(5159), + [anon_sym_queryExecute] = ACTIONS(5159), + [anon_sym_BQUOTE] = ACTIONS(5161), + [anon_sym_Abstract] = ACTIONS(5159), + [anon_sym_abstract] = ACTIONS(5159), + [anon_sym_ABSTRACT] = ACTIONS(5159), + [anon_sym_Component] = ACTIONS(5159), + [anon_sym_component] = ACTIONS(5159), + [anon_sym_COMPONENT] = ACTIONS(5159), + [anon_sym_Debugger] = ACTIONS(5159), + [anon_sym_debugger] = ACTIONS(5159), + [anon_sym_DEBUGGER] = ACTIONS(5159), + [anon_sym_Final] = ACTIONS(5159), + [anon_sym_final] = ACTIONS(5159), + [anon_sym_FINAL] = ACTIONS(5159), + [anon_sym_Function] = ACTIONS(5159), + [anon_sym_function] = ACTIONS(5159), + [anon_sym_FUNCTION] = ACTIONS(5159), + [anon_sym_Include] = ACTIONS(5159), + [anon_sym_include] = ACTIONS(5159), + [anon_sym_INCLUDE] = ACTIONS(5159), + [anon_sym_New] = ACTIONS(5159), + [anon_sym_new] = ACTIONS(5159), + [anon_sym_NEW] = ACTIONS(5159), + [anon_sym_Package] = ACTIONS(5159), + [anon_sym_package] = ACTIONS(5159), + [anon_sym_PACKAGE] = ACTIONS(5159), + [anon_sym_Private] = ACTIONS(5159), + [anon_sym_private] = ACTIONS(5159), + [anon_sym_PRIVATE] = ACTIONS(5159), + [anon_sym_Public] = ACTIONS(5159), + [anon_sym_public] = ACTIONS(5159), + [anon_sym_PUBLIC] = ACTIONS(5159), + [anon_sym_Remote] = ACTIONS(5159), + [anon_sym_remote] = ACTIONS(5159), + [anon_sym_REMOTE] = ACTIONS(5159), + [anon_sym_Static] = ACTIONS(5159), + [anon_sym_static] = ACTIONS(5159), + [anon_sym_STATIC] = ACTIONS(5159), + [sym__automatic_semicolon] = ACTIONS(5161), + [sym_tag_linefeed] = ACTIONS(5161), + [sym__java_block_open] = ACTIONS(5161), + [sym__static_type_prefix] = ACTIONS(5161), }, - [STATE(2100)] = { - [anon_sym_DOT] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2111), - [sym_optional_chain] = ACTIONS(2113), - [sym_static_chain] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2113), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_BSLASH] = ACTIONS(2113), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_GT] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [aux_sym_binary_expression_token1] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2111), - [aux_sym_binary_expression_token2] = ACTIONS(2111), - [aux_sym_binary_expression_token3] = ACTIONS(2111), - [aux_sym_binary_expression_token4] = ACTIONS(2113), - [aux_sym_binary_expression_token5] = ACTIONS(2113), - [aux_sym_binary_expression_token6] = ACTIONS(2113), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_IN] = ACTIONS(2111), - [anon_sym_InstanceOf] = ACTIONS(2113), - [anon_sym_instanceof] = ACTIONS(2113), - [anon_sym_INSTANCEOF] = ACTIONS(2113), - [anon_sym_instanceOf] = ACTIONS(2113), - [anon_sym_Of] = ACTIONS(2113), - [anon_sym_of] = ACTIONS(2113), - [anon_sym_OF] = ACTIONS(2113), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym__elvis_operator] = ACTIONS(2113), - [sym_logical_or] = ACTIONS(2113), + [STATE(2115)] = { + [sym_identifier] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_Query] = ACTIONS(2236), + [anon_sym_query] = ACTIONS(2236), + [anon_sym_QUERY] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_TILDE] = ACTIONS(2238), + [aux_sym_unary_operator_token1] = ACTIONS(2236), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2236), + [aux_sym_number_token2] = ACTIONS(2238), + [anon_sym_This] = ACTIONS(2236), + [anon_sym_this] = ACTIONS(2236), + [anon_sym_THIS] = ACTIONS(2236), + [anon_sym_Super] = ACTIONS(2236), + [anon_sym_super] = ACTIONS(2236), + [anon_sym_SUPER] = ACTIONS(2236), + [anon_sym_True] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2236), + [anon_sym_TRUE] = ACTIONS(2236), + [anon_sym_False] = ACTIONS(2236), + [anon_sym_false] = ACTIONS(2236), + [anon_sym_FALSE] = ACTIONS(2236), + [anon_sym_Null] = ACTIONS(2236), + [anon_sym_null] = ACTIONS(2236), + [anon_sym_NULL] = ACTIONS(2236), + [anon_sym_Undefined] = ACTIONS(2236), + [anon_sym_undefined] = ACTIONS(2236), + [anon_sym_UNDEFINED] = ACTIONS(2236), + [anon_sym_get] = ACTIONS(2236), + [anon_sym_set] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(2236), + [sym_hash_empty] = ACTIONS(2238), + [anon_sym_export] = ACTIONS(2236), + [anon_sym_QueryExecute] = ACTIONS(2236), + [anon_sym_queryexecute] = ACTIONS(2236), + [anon_sym_QUERYEXECUTE] = ACTIONS(2236), + [anon_sym_queryExecute] = ACTIONS(2236), + [anon_sym_BQUOTE] = ACTIONS(2238), + [anon_sym_Abstract] = ACTIONS(2236), + [anon_sym_abstract] = ACTIONS(2236), + [anon_sym_ABSTRACT] = ACTIONS(2236), + [anon_sym_Component] = ACTIONS(2236), + [anon_sym_component] = ACTIONS(2236), + [anon_sym_COMPONENT] = ACTIONS(2236), + [anon_sym_Debugger] = ACTIONS(2236), + [anon_sym_debugger] = ACTIONS(2236), + [anon_sym_DEBUGGER] = ACTIONS(2236), + [anon_sym_Final] = ACTIONS(2236), + [anon_sym_final] = ACTIONS(2236), + [anon_sym_FINAL] = ACTIONS(2236), + [anon_sym_Function] = ACTIONS(2236), + [anon_sym_function] = ACTIONS(2236), + [anon_sym_FUNCTION] = ACTIONS(2236), + [anon_sym_Include] = ACTIONS(2236), + [anon_sym_include] = ACTIONS(2236), + [anon_sym_INCLUDE] = ACTIONS(2236), + [anon_sym_New] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2236), + [anon_sym_NEW] = ACTIONS(2236), + [anon_sym_Package] = ACTIONS(2236), + [anon_sym_package] = ACTIONS(2236), + [anon_sym_PACKAGE] = ACTIONS(2236), + [anon_sym_Private] = ACTIONS(2236), + [anon_sym_private] = ACTIONS(2236), + [anon_sym_PRIVATE] = ACTIONS(2236), + [anon_sym_Public] = ACTIONS(2236), + [anon_sym_public] = ACTIONS(2236), + [anon_sym_PUBLIC] = ACTIONS(2236), + [anon_sym_Remote] = ACTIONS(2236), + [anon_sym_remote] = ACTIONS(2236), + [anon_sym_REMOTE] = ACTIONS(2236), + [anon_sym_Static] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_STATIC] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2238), + [sym_tag_linefeed] = ACTIONS(2238), + [sym__java_block_open] = ACTIONS(2238), + [sym__static_type_prefix] = ACTIONS(2238), }, - [STATE(2101)] = { + [STATE(2116)] = { + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_COLON] = ACTIONS(2089), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2089), + [sym_optional_chain] = ACTIONS(2091), + [sym_static_chain] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [anon_sym_DASH_EQ] = ACTIONS(2091), + [anon_sym_STAR_EQ] = ACTIONS(2091), + [anon_sym_SLASH_EQ] = ACTIONS(2091), + [anon_sym_PERCENT_EQ] = ACTIONS(2091), + [anon_sym_CARET_EQ] = ACTIONS(2091), + [anon_sym_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_LT_LT_EQ] = ACTIONS(2091), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2091), + [anon_sym_STAR_STAR] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_GT] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [aux_sym_binary_expression_token1] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2089), + [aux_sym_binary_expression_token2] = ACTIONS(2089), + [aux_sym_binary_expression_token3] = ACTIONS(2089), + [aux_sym_binary_expression_token4] = ACTIONS(2091), + [aux_sym_binary_expression_token5] = ACTIONS(2091), + [aux_sym_binary_expression_token6] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_IN] = ACTIONS(2089), + [anon_sym_InstanceOf] = ACTIONS(2091), + [anon_sym_instanceof] = ACTIONS(2091), + [anon_sym_INSTANCEOF] = ACTIONS(2091), + [anon_sym_instanceOf] = ACTIONS(2091), + [anon_sym_Of] = ACTIONS(2091), + [anon_sym_of] = ACTIONS(2091), + [anon_sym_OF] = ACTIONS(2091), + [sym__automatic_semicolon] = ACTIONS(2091), + [sym__ternary_qmark] = ACTIONS(2091), + [sym__elvis_operator] = ACTIONS(2091), + [sym_logical_or] = ACTIONS(2091), + }, + [STATE(2117)] = { + [sym_component_attribute] = STATE(4211), + [sym_component_body] = STATE(2519), + [aux_sym_component_repeat1] = STATE(4211), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(5163), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -335566,7 +338351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -335590,31 +338375,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Of] = ACTIONS(404), - [anon_sym_of] = ACTIONS(404), - [anon_sym_OF] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2102)] = { - [sym_component_attribute] = STATE(4298), - [sym_component_body] = STATE(2864), - [aux_sym_component_repeat1] = STATE(4298), - [sym_identifier] = ACTIONS(5071), + [STATE(2118)] = { + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_COLON] = ACTIONS(2101), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2101), + [sym_optional_chain] = ACTIONS(2103), + [sym_static_chain] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [anon_sym_DASH_EQ] = ACTIONS(2103), + [anon_sym_STAR_EQ] = ACTIONS(2103), + [anon_sym_SLASH_EQ] = ACTIONS(2103), + [anon_sym_PERCENT_EQ] = ACTIONS(2103), + [anon_sym_CARET_EQ] = ACTIONS(2103), + [anon_sym_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_LT_LT_EQ] = ACTIONS(2103), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2103), + [anon_sym_STAR_STAR] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_GT] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [aux_sym_binary_expression_token1] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2101), + [aux_sym_binary_expression_token2] = ACTIONS(2101), + [aux_sym_binary_expression_token3] = ACTIONS(2101), + [aux_sym_binary_expression_token4] = ACTIONS(2103), + [aux_sym_binary_expression_token5] = ACTIONS(2103), + [aux_sym_binary_expression_token6] = ACTIONS(2103), + [anon_sym_QMARK_QMARK] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_IN] = ACTIONS(2101), + [anon_sym_InstanceOf] = ACTIONS(2103), + [anon_sym_instanceof] = ACTIONS(2103), + [anon_sym_INSTANCEOF] = ACTIONS(2103), + [anon_sym_instanceOf] = ACTIONS(2103), + [anon_sym_Of] = ACTIONS(2103), + [anon_sym_of] = ACTIONS(2103), + [anon_sym_OF] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2103), + [sym__ternary_qmark] = ACTIONS(2103), + [sym__elvis_operator] = ACTIONS(2103), + [sym_logical_or] = ACTIONS(2103), + }, + [STATE(2119)] = { + [sym_component_attribute] = STATE(4321), + [sym_component_body] = STATE(2809), + [aux_sym_component_repeat1] = STATE(4321), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5165), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -335692,18 +338566,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2103)] = { + [STATE(2120)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5169), + [anon_sym_DASH_GT] = ACTIONS(5169), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2121)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5171), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -335786,32 +338752,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2104)] = { + [STATE(2122)] = { + [sym_identifier] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_Query] = ACTIONS(2424), + [anon_sym_query] = ACTIONS(2424), + [anon_sym_QUERY] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_BANG] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2428), + [aux_sym_unary_operator_token1] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2428), + [anon_sym_SQUOTE] = ACTIONS(2428), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2424), + [aux_sym_number_token2] = ACTIONS(2428), + [anon_sym_This] = ACTIONS(2424), + [anon_sym_this] = ACTIONS(2424), + [anon_sym_THIS] = ACTIONS(2424), + [anon_sym_Super] = ACTIONS(2424), + [anon_sym_super] = ACTIONS(2424), + [anon_sym_SUPER] = ACTIONS(2424), + [anon_sym_True] = ACTIONS(2424), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_TRUE] = ACTIONS(2424), + [anon_sym_False] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [anon_sym_FALSE] = ACTIONS(2424), + [anon_sym_Null] = ACTIONS(2424), + [anon_sym_null] = ACTIONS(2424), + [anon_sym_NULL] = ACTIONS(2424), + [anon_sym_Undefined] = ACTIONS(2424), + [anon_sym_undefined] = ACTIONS(2424), + [anon_sym_UNDEFINED] = ACTIONS(2424), + [anon_sym_get] = ACTIONS(2424), + [anon_sym_set] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [sym_hash_empty] = ACTIONS(2428), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_QueryExecute] = ACTIONS(2424), + [anon_sym_queryexecute] = ACTIONS(2424), + [anon_sym_QUERYEXECUTE] = ACTIONS(2424), + [anon_sym_queryExecute] = ACTIONS(2424), + [anon_sym_BQUOTE] = ACTIONS(2428), + [anon_sym_Abstract] = ACTIONS(2424), + [anon_sym_abstract] = ACTIONS(2424), + [anon_sym_ABSTRACT] = ACTIONS(2424), + [anon_sym_Component] = ACTIONS(2424), + [anon_sym_component] = ACTIONS(2424), + [anon_sym_COMPONENT] = ACTIONS(2424), + [anon_sym_Debugger] = ACTIONS(2424), + [anon_sym_debugger] = ACTIONS(2424), + [anon_sym_DEBUGGER] = ACTIONS(2424), + [anon_sym_Final] = ACTIONS(2424), + [anon_sym_final] = ACTIONS(2424), + [anon_sym_FINAL] = ACTIONS(2424), + [anon_sym_Function] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2424), + [anon_sym_FUNCTION] = ACTIONS(2424), + [anon_sym_Include] = ACTIONS(2424), + [anon_sym_include] = ACTIONS(2424), + [anon_sym_INCLUDE] = ACTIONS(2424), + [anon_sym_New] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_NEW] = ACTIONS(2424), + [anon_sym_Package] = ACTIONS(2424), + [anon_sym_package] = ACTIONS(2424), + [anon_sym_PACKAGE] = ACTIONS(2424), + [anon_sym_Private] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_PRIVATE] = ACTIONS(2424), + [anon_sym_Public] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_PUBLIC] = ACTIONS(2424), + [anon_sym_Remote] = ACTIONS(2424), + [anon_sym_remote] = ACTIONS(2424), + [anon_sym_REMOTE] = ACTIONS(2424), + [anon_sym_Static] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_STATIC] = ACTIONS(2424), + [sym__automatic_semicolon] = ACTIONS(2428), + [sym_tag_linefeed] = ACTIONS(2428), + [sym__java_block_open] = ACTIONS(2428), + [sym__static_type_prefix] = ACTIONS(2428), + }, + [STATE(2123)] = { + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_COLON] = ACTIONS(2105), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2105), + [sym_optional_chain] = ACTIONS(2107), + [sym_static_chain] = ACTIONS(2107), + [anon_sym_PLUS_EQ] = ACTIONS(2107), + [anon_sym_DASH_EQ] = ACTIONS(2107), + [anon_sym_STAR_EQ] = ACTIONS(2107), + [anon_sym_SLASH_EQ] = ACTIONS(2107), + [anon_sym_PERCENT_EQ] = ACTIONS(2107), + [anon_sym_CARET_EQ] = ACTIONS(2107), + [anon_sym_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_LT_LT_EQ] = ACTIONS(2107), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2107), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2107), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_GT] = ACTIONS(2107), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [aux_sym_binary_expression_token1] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2105), + [aux_sym_binary_expression_token2] = ACTIONS(2105), + [aux_sym_binary_expression_token3] = ACTIONS(2105), + [aux_sym_binary_expression_token4] = ACTIONS(2107), + [aux_sym_binary_expression_token5] = ACTIONS(2107), + [aux_sym_binary_expression_token6] = ACTIONS(2107), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_IN] = ACTIONS(2105), + [anon_sym_InstanceOf] = ACTIONS(2107), + [anon_sym_instanceof] = ACTIONS(2107), + [anon_sym_INSTANCEOF] = ACTIONS(2107), + [anon_sym_instanceOf] = ACTIONS(2107), + [anon_sym_Of] = ACTIONS(2107), + [anon_sym_of] = ACTIONS(2107), + [anon_sym_OF] = ACTIONS(2107), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym__ternary_qmark] = ACTIONS(2107), + [sym__elvis_operator] = ACTIONS(2107), + [sym_logical_or] = ACTIONS(2107), + }, + [STATE(2124)] = { + [anon_sym_DOT] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_COMMA] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_COLON] = ACTIONS(2019), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2019), + [sym_optional_chain] = ACTIONS(2021), + [sym_static_chain] = ACTIONS(2021), + [anon_sym_PLUS_EQ] = ACTIONS(2021), + [anon_sym_DASH_EQ] = ACTIONS(2021), + [anon_sym_STAR_EQ] = ACTIONS(2021), + [anon_sym_SLASH_EQ] = ACTIONS(2021), + [anon_sym_PERCENT_EQ] = ACTIONS(2021), + [anon_sym_CARET_EQ] = ACTIONS(2021), + [anon_sym_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_LT_LT_EQ] = ACTIONS(2021), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2021), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_GT_GT_GT] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_CARET] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_BSLASH] = ACTIONS(2021), + [anon_sym_STAR_STAR] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2021), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), + [anon_sym_LT_GT] = ACTIONS(2021), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), + [aux_sym_binary_expression_token1] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2019), + [aux_sym_binary_expression_token2] = ACTIONS(2019), + [aux_sym_binary_expression_token3] = ACTIONS(2019), + [aux_sym_binary_expression_token4] = ACTIONS(2021), + [aux_sym_binary_expression_token5] = ACTIONS(2021), + [aux_sym_binary_expression_token6] = ACTIONS(2021), + [anon_sym_QMARK_QMARK] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_IN] = ACTIONS(2019), + [anon_sym_InstanceOf] = ACTIONS(2021), + [anon_sym_instanceof] = ACTIONS(2021), + [anon_sym_INSTANCEOF] = ACTIONS(2021), + [anon_sym_instanceOf] = ACTIONS(2021), + [anon_sym_Of] = ACTIONS(2021), + [anon_sym_of] = ACTIONS(2021), + [anon_sym_OF] = ACTIONS(2021), + [sym__automatic_semicolon] = ACTIONS(2021), + [sym__ternary_qmark] = ACTIONS(2021), + [sym__elvis_operator] = ACTIONS(2021), + [sym_logical_or] = ACTIONS(2021), + }, + [STATE(2125)] = { + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_COLON] = ACTIONS(2027), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2027), + [sym_optional_chain] = ACTIONS(2029), + [sym_static_chain] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2029), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_GT_GT] = ACTIONS(2027), + [anon_sym_GT_GT_GT] = ACTIONS(2027), + [anon_sym_LT_LT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2029), + [anon_sym_STAR_STAR] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), + [anon_sym_LT_GT] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), + [aux_sym_binary_expression_token1] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2027), + [aux_sym_binary_expression_token2] = ACTIONS(2027), + [aux_sym_binary_expression_token3] = ACTIONS(2027), + [aux_sym_binary_expression_token4] = ACTIONS(2029), + [aux_sym_binary_expression_token5] = ACTIONS(2029), + [aux_sym_binary_expression_token6] = ACTIONS(2029), + [anon_sym_QMARK_QMARK] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2027), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_IN] = ACTIONS(2027), + [anon_sym_InstanceOf] = ACTIONS(2029), + [anon_sym_instanceof] = ACTIONS(2029), + [anon_sym_INSTANCEOF] = ACTIONS(2029), + [anon_sym_instanceOf] = ACTIONS(2029), + [anon_sym_Of] = ACTIONS(2029), + [anon_sym_of] = ACTIONS(2029), + [anon_sym_OF] = ACTIONS(2029), + [sym__automatic_semicolon] = ACTIONS(2029), + [sym__ternary_qmark] = ACTIONS(2029), + [sym__elvis_operator] = ACTIONS(2029), + [sym_logical_or] = ACTIONS(2029), + }, + [STATE(2126)] = { + [sym_component_attribute] = STATE(4206), + [sym_component_body] = STATE(442), + [aux_sym_component_repeat1] = STATE(4206), + [sym_identifier] = ACTIONS(5079), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_DASH_GT] = ACTIONS(1066), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -335842,7 +339179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -335866,41 +339203,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Of] = ACTIONS(404), - [anon_sym_of] = ACTIONS(404), - [anon_sym_OF] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2105)] = { + [STATE(2127)] = { + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2031), + [sym_optional_chain] = ACTIONS(2033), + [sym_static_chain] = ACTIONS(2033), + [anon_sym_PLUS_EQ] = ACTIONS(2033), + [anon_sym_DASH_EQ] = ACTIONS(2033), + [anon_sym_STAR_EQ] = ACTIONS(2033), + [anon_sym_SLASH_EQ] = ACTIONS(2033), + [anon_sym_PERCENT_EQ] = ACTIONS(2033), + [anon_sym_CARET_EQ] = ACTIONS(2033), + [anon_sym_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_LT_LT_EQ] = ACTIONS(2033), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2033), + [anon_sym_STAR_STAR] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2033), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), + [anon_sym_LT_GT] = ACTIONS(2033), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), + [aux_sym_binary_expression_token1] = ACTIONS(2033), + [anon_sym_GT_EQ] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [aux_sym_binary_expression_token2] = ACTIONS(2031), + [aux_sym_binary_expression_token3] = ACTIONS(2031), + [aux_sym_binary_expression_token4] = ACTIONS(2033), + [aux_sym_binary_expression_token5] = ACTIONS(2033), + [aux_sym_binary_expression_token6] = ACTIONS(2033), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2033), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_IN] = ACTIONS(2031), + [anon_sym_InstanceOf] = ACTIONS(2033), + [anon_sym_instanceof] = ACTIONS(2033), + [anon_sym_INSTANCEOF] = ACTIONS(2033), + [anon_sym_instanceOf] = ACTIONS(2033), + [anon_sym_Of] = ACTIONS(2033), + [anon_sym_of] = ACTIONS(2033), + [anon_sym_OF] = ACTIONS(2033), + [sym__automatic_semicolon] = ACTIONS(2033), + [sym__ternary_qmark] = ACTIONS(2033), + [sym__elvis_operator] = ACTIONS(2033), + [sym_logical_or] = ACTIONS(2033), + }, + [STATE(2128)] = { + [sym_identifier] = ACTIONS(5176), + [anon_sym_LBRACE] = ACTIONS(5178), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_SEMI] = ACTIONS(5178), + [anon_sym_let] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_Query] = ACTIONS(5176), + [anon_sym_query] = ACTIONS(5176), + [anon_sym_QUERY] = ACTIONS(5176), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5178), + [anon_sym_TILDE] = ACTIONS(5178), + [aux_sym_unary_operator_token1] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5178), + [anon_sym_DASH_DASH] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_SQUOTE] = ACTIONS(5178), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5176), + [aux_sym_number_token2] = ACTIONS(5178), + [anon_sym_This] = ACTIONS(5176), + [anon_sym_this] = ACTIONS(5176), + [anon_sym_THIS] = ACTIONS(5176), + [anon_sym_Super] = ACTIONS(5176), + [anon_sym_super] = ACTIONS(5176), + [anon_sym_SUPER] = ACTIONS(5176), + [anon_sym_True] = ACTIONS(5176), + [anon_sym_true] = ACTIONS(5176), + [anon_sym_TRUE] = ACTIONS(5176), + [anon_sym_False] = ACTIONS(5176), + [anon_sym_false] = ACTIONS(5176), + [anon_sym_FALSE] = ACTIONS(5176), + [anon_sym_Null] = ACTIONS(5176), + [anon_sym_null] = ACTIONS(5176), + [anon_sym_NULL] = ACTIONS(5176), + [anon_sym_Undefined] = ACTIONS(5176), + [anon_sym_undefined] = ACTIONS(5176), + [anon_sym_UNDEFINED] = ACTIONS(5176), + [anon_sym_get] = ACTIONS(5176), + [anon_sym_set] = ACTIONS(5176), + [anon_sym_POUND] = ACTIONS(5176), + [sym_hash_empty] = ACTIONS(5178), + [anon_sym_export] = ACTIONS(5176), + [anon_sym_QueryExecute] = ACTIONS(5176), + [anon_sym_queryexecute] = ACTIONS(5176), + [anon_sym_QUERYEXECUTE] = ACTIONS(5176), + [anon_sym_queryExecute] = ACTIONS(5176), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_Abstract] = ACTIONS(5176), + [anon_sym_abstract] = ACTIONS(5176), + [anon_sym_ABSTRACT] = ACTIONS(5176), + [anon_sym_Component] = ACTIONS(5176), + [anon_sym_component] = ACTIONS(5176), + [anon_sym_COMPONENT] = ACTIONS(5176), + [anon_sym_Debugger] = ACTIONS(5176), + [anon_sym_debugger] = ACTIONS(5176), + [anon_sym_DEBUGGER] = ACTIONS(5176), + [anon_sym_Final] = ACTIONS(5176), + [anon_sym_final] = ACTIONS(5176), + [anon_sym_FINAL] = ACTIONS(5176), + [anon_sym_Function] = ACTIONS(5176), + [anon_sym_function] = ACTIONS(5176), + [anon_sym_FUNCTION] = ACTIONS(5176), + [anon_sym_Include] = ACTIONS(5176), + [anon_sym_include] = ACTIONS(5176), + [anon_sym_INCLUDE] = ACTIONS(5176), + [anon_sym_New] = ACTIONS(5176), + [anon_sym_new] = ACTIONS(5176), + [anon_sym_NEW] = ACTIONS(5176), + [anon_sym_Package] = ACTIONS(5176), + [anon_sym_package] = ACTIONS(5176), + [anon_sym_PACKAGE] = ACTIONS(5176), + [anon_sym_Private] = ACTIONS(5176), + [anon_sym_private] = ACTIONS(5176), + [anon_sym_PRIVATE] = ACTIONS(5176), + [anon_sym_Public] = ACTIONS(5176), + [anon_sym_public] = ACTIONS(5176), + [anon_sym_PUBLIC] = ACTIONS(5176), + [anon_sym_Remote] = ACTIONS(5176), + [anon_sym_remote] = ACTIONS(5176), + [anon_sym_REMOTE] = ACTIONS(5176), + [anon_sym_Static] = ACTIONS(5176), + [anon_sym_static] = ACTIONS(5176), + [anon_sym_STATIC] = ACTIONS(5176), + [sym__automatic_semicolon] = ACTIONS(5178), + [sym_tag_linefeed] = ACTIONS(5178), + [sym__java_block_open] = ACTIONS(5178), + [sym__static_type_prefix] = ACTIONS(5178), + }, + [STATE(2129)] = { + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1949), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1949), + [anon_sym_instanceof] = ACTIONS(1949), + [anon_sym_INSTANCEOF] = ACTIONS(1949), + [anon_sym_instanceOf] = ACTIONS(1949), + [anon_sym_Of] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1955), + [anon_sym_OF] = ACTIONS(1955), + [sym__automatic_semicolon] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + }, + [STATE(2130)] = { [sym_identifier] = ACTIONS(5180), - [anon_sym_LBRACE] = ACTIONS(5182), - [anon_sym_LPAREN] = ACTIONS(5182), - [anon_sym_SEMI] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), [anon_sym_let] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(2215), [anon_sym_Query] = ACTIONS(5180), [anon_sym_query] = ACTIONS(5180), [anon_sym_QUERY] = ACTIONS(5180), [anon_sym_PLUS] = ACTIONS(5180), [anon_sym_DASH] = ACTIONS(5180), [anon_sym_SLASH] = ACTIONS(5180), - [anon_sym_BANG] = ACTIONS(5182), - [anon_sym_TILDE] = ACTIONS(5182), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), [aux_sym_unary_operator_token1] = ACTIONS(5180), - [anon_sym_PLUS_PLUS] = ACTIONS(5182), - [anon_sym_DASH_DASH] = ACTIONS(5182), - [anon_sym_DQUOTE] = ACTIONS(5182), - [anon_sym_SQUOTE] = ACTIONS(5182), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), [sym_comment] = ACTIONS(129), [aux_sym_number_token1] = ACTIONS(5180), - [aux_sym_number_token2] = ACTIONS(5182), + [aux_sym_number_token2] = ACTIONS(2215), [anon_sym_This] = ACTIONS(5180), [anon_sym_this] = ACTIONS(5180), [anon_sym_THIS] = ACTIONS(5180), @@ -335922,13 +339532,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(5180), [anon_sym_set] = ACTIONS(5180), [anon_sym_POUND] = ACTIONS(5180), - [sym_hash_empty] = ACTIONS(5182), + [sym_hash_empty] = ACTIONS(2215), [anon_sym_export] = ACTIONS(5180), [anon_sym_QueryExecute] = ACTIONS(5180), [anon_sym_queryexecute] = ACTIONS(5180), [anon_sym_QUERYEXECUTE] = ACTIONS(5180), [anon_sym_queryExecute] = ACTIONS(5180), - [anon_sym_BQUOTE] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(2215), [anon_sym_Abstract] = ACTIONS(5180), [anon_sym_abstract] = ACTIONS(5180), [anon_sym_ABSTRACT] = ACTIONS(5180), @@ -335965,132 +339575,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Static] = ACTIONS(5180), [anon_sym_static] = ACTIONS(5180), [anon_sym_STATIC] = ACTIONS(5180), - [sym__automatic_semicolon] = ACTIONS(5182), - [sym_tag_linefeed] = ACTIONS(5182), - [sym__java_block_open] = ACTIONS(5182), - [sym__static_type_prefix] = ACTIONS(5182), + [sym__automatic_semicolon] = ACTIONS(2215), + [sym_tag_linefeed] = ACTIONS(2215), + [sym__java_block_open] = ACTIONS(2215), + [sym__static_type_prefix] = ACTIONS(2215), }, - [STATE(2106)] = { - [sym_component_attribute] = STATE(4314), - [sym_component_body] = STATE(2533), - [aux_sym_component_repeat1] = STATE(4314), - [sym_identifier] = ACTIONS(5071), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), + [STATE(2131)] = { + [sym_identifier] = ACTIONS(5182), [anon_sym_LBRACE] = ACTIONS(5184), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_let] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_Query] = ACTIONS(5182), + [anon_sym_query] = ACTIONS(5182), + [anon_sym_QUERY] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5182), + [anon_sym_DASH] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5182), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_TILDE] = ACTIONS(5184), + [aux_sym_unary_operator_token1] = ACTIONS(5182), + [anon_sym_PLUS_PLUS] = ACTIONS(5184), + [anon_sym_DASH_DASH] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_SQUOTE] = ACTIONS(5184), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5182), + [aux_sym_number_token2] = ACTIONS(5184), + [anon_sym_This] = ACTIONS(5182), + [anon_sym_this] = ACTIONS(5182), + [anon_sym_THIS] = ACTIONS(5182), + [anon_sym_Super] = ACTIONS(5182), + [anon_sym_super] = ACTIONS(5182), + [anon_sym_SUPER] = ACTIONS(5182), + [anon_sym_True] = ACTIONS(5182), + [anon_sym_true] = ACTIONS(5182), + [anon_sym_TRUE] = ACTIONS(5182), + [anon_sym_False] = ACTIONS(5182), + [anon_sym_false] = ACTIONS(5182), + [anon_sym_FALSE] = ACTIONS(5182), + [anon_sym_Null] = ACTIONS(5182), + [anon_sym_null] = ACTIONS(5182), + [anon_sym_NULL] = ACTIONS(5182), + [anon_sym_Undefined] = ACTIONS(5182), + [anon_sym_undefined] = ACTIONS(5182), + [anon_sym_UNDEFINED] = ACTIONS(5182), + [anon_sym_get] = ACTIONS(5182), + [anon_sym_set] = ACTIONS(5182), + [anon_sym_POUND] = ACTIONS(5182), + [sym_hash_empty] = ACTIONS(5184), + [anon_sym_export] = ACTIONS(5182), + [anon_sym_QueryExecute] = ACTIONS(5182), + [anon_sym_queryexecute] = ACTIONS(5182), + [anon_sym_QUERYEXECUTE] = ACTIONS(5182), + [anon_sym_queryExecute] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_Abstract] = ACTIONS(5182), + [anon_sym_abstract] = ACTIONS(5182), + [anon_sym_ABSTRACT] = ACTIONS(5182), + [anon_sym_Component] = ACTIONS(5182), + [anon_sym_component] = ACTIONS(5182), + [anon_sym_COMPONENT] = ACTIONS(5182), + [anon_sym_Debugger] = ACTIONS(5182), + [anon_sym_debugger] = ACTIONS(5182), + [anon_sym_DEBUGGER] = ACTIONS(5182), + [anon_sym_Final] = ACTIONS(5182), + [anon_sym_final] = ACTIONS(5182), + [anon_sym_FINAL] = ACTIONS(5182), + [anon_sym_Function] = ACTIONS(5182), + [anon_sym_function] = ACTIONS(5182), + [anon_sym_FUNCTION] = ACTIONS(5182), + [anon_sym_Include] = ACTIONS(5182), + [anon_sym_include] = ACTIONS(5182), + [anon_sym_INCLUDE] = ACTIONS(5182), + [anon_sym_New] = ACTIONS(5182), + [anon_sym_new] = ACTIONS(5182), + [anon_sym_NEW] = ACTIONS(5182), + [anon_sym_Package] = ACTIONS(5182), + [anon_sym_package] = ACTIONS(5182), + [anon_sym_PACKAGE] = ACTIONS(5182), + [anon_sym_Private] = ACTIONS(5182), + [anon_sym_private] = ACTIONS(5182), + [anon_sym_PRIVATE] = ACTIONS(5182), + [anon_sym_Public] = ACTIONS(5182), + [anon_sym_public] = ACTIONS(5182), + [anon_sym_PUBLIC] = ACTIONS(5182), + [anon_sym_Remote] = ACTIONS(5182), + [anon_sym_remote] = ACTIONS(5182), + [anon_sym_REMOTE] = ACTIONS(5182), + [anon_sym_Static] = ACTIONS(5182), + [anon_sym_static] = ACTIONS(5182), + [anon_sym_STATIC] = ACTIONS(5182), + [sym__automatic_semicolon] = ACTIONS(5184), + [sym_tag_linefeed] = ACTIONS(5184), + [sym__java_block_open] = ACTIONS(5184), + [sym__static_type_prefix] = ACTIONS(5184), }, - [STATE(2107)] = { - [sym_component_attribute] = STATE(4234), - [sym_component_body] = STATE(541), - [aux_sym_component_repeat1] = STATE(4234), - [sym_identifier] = ACTIONS(5071), + [STATE(2132)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1069), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -336121,7 +339728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -336145,395 +339752,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_Of] = ACTIONS(404), + [anon_sym_of] = ACTIONS(404), + [anon_sym_OF] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(5079), - }, - [STATE(2108)] = { - [sym_identifier] = ACTIONS(5188), - [anon_sym_LBRACE] = ACTIONS(5190), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_SEMI] = ACTIONS(5190), - [anon_sym_let] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5190), - [anon_sym_Query] = ACTIONS(5188), - [anon_sym_query] = ACTIONS(5188), - [anon_sym_QUERY] = ACTIONS(5188), - [anon_sym_PLUS] = ACTIONS(5188), - [anon_sym_DASH] = ACTIONS(5188), - [anon_sym_SLASH] = ACTIONS(5188), - [anon_sym_BANG] = ACTIONS(5190), - [anon_sym_TILDE] = ACTIONS(5190), - [aux_sym_unary_operator_token1] = ACTIONS(5188), - [anon_sym_PLUS_PLUS] = ACTIONS(5190), - [anon_sym_DASH_DASH] = ACTIONS(5190), - [anon_sym_DQUOTE] = ACTIONS(5190), - [anon_sym_SQUOTE] = ACTIONS(5190), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5188), - [aux_sym_number_token2] = ACTIONS(5190), - [anon_sym_This] = ACTIONS(5188), - [anon_sym_this] = ACTIONS(5188), - [anon_sym_THIS] = ACTIONS(5188), - [anon_sym_Super] = ACTIONS(5188), - [anon_sym_super] = ACTIONS(5188), - [anon_sym_SUPER] = ACTIONS(5188), - [anon_sym_True] = ACTIONS(5188), - [anon_sym_true] = ACTIONS(5188), - [anon_sym_TRUE] = ACTIONS(5188), - [anon_sym_False] = ACTIONS(5188), - [anon_sym_false] = ACTIONS(5188), - [anon_sym_FALSE] = ACTIONS(5188), - [anon_sym_Null] = ACTIONS(5188), - [anon_sym_null] = ACTIONS(5188), - [anon_sym_NULL] = ACTIONS(5188), - [anon_sym_Undefined] = ACTIONS(5188), - [anon_sym_undefined] = ACTIONS(5188), - [anon_sym_UNDEFINED] = ACTIONS(5188), - [anon_sym_get] = ACTIONS(5188), - [anon_sym_set] = ACTIONS(5188), - [anon_sym_POUND] = ACTIONS(5188), - [sym_hash_empty] = ACTIONS(5190), - [anon_sym_export] = ACTIONS(5188), - [anon_sym_QueryExecute] = ACTIONS(5188), - [anon_sym_queryexecute] = ACTIONS(5188), - [anon_sym_QUERYEXECUTE] = ACTIONS(5188), - [anon_sym_queryExecute] = ACTIONS(5188), - [anon_sym_BQUOTE] = ACTIONS(5190), - [anon_sym_Abstract] = ACTIONS(5188), - [anon_sym_abstract] = ACTIONS(5188), - [anon_sym_ABSTRACT] = ACTIONS(5188), - [anon_sym_Component] = ACTIONS(5188), - [anon_sym_component] = ACTIONS(5188), - [anon_sym_COMPONENT] = ACTIONS(5188), - [anon_sym_Debugger] = ACTIONS(5188), - [anon_sym_debugger] = ACTIONS(5188), - [anon_sym_DEBUGGER] = ACTIONS(5188), - [anon_sym_Final] = ACTIONS(5188), - [anon_sym_final] = ACTIONS(5188), - [anon_sym_FINAL] = ACTIONS(5188), - [anon_sym_Function] = ACTIONS(5188), - [anon_sym_function] = ACTIONS(5188), - [anon_sym_FUNCTION] = ACTIONS(5188), - [anon_sym_Include] = ACTIONS(5188), - [anon_sym_include] = ACTIONS(5188), - [anon_sym_INCLUDE] = ACTIONS(5188), - [anon_sym_New] = ACTIONS(5188), - [anon_sym_new] = ACTIONS(5188), - [anon_sym_NEW] = ACTIONS(5188), - [anon_sym_Package] = ACTIONS(5188), - [anon_sym_package] = ACTIONS(5188), - [anon_sym_PACKAGE] = ACTIONS(5188), - [anon_sym_Private] = ACTIONS(5188), - [anon_sym_private] = ACTIONS(5188), - [anon_sym_PRIVATE] = ACTIONS(5188), - [anon_sym_Public] = ACTIONS(5188), - [anon_sym_public] = ACTIONS(5188), - [anon_sym_PUBLIC] = ACTIONS(5188), - [anon_sym_Remote] = ACTIONS(5188), - [anon_sym_remote] = ACTIONS(5188), - [anon_sym_REMOTE] = ACTIONS(5188), - [anon_sym_Static] = ACTIONS(5188), - [anon_sym_static] = ACTIONS(5188), - [anon_sym_STATIC] = ACTIONS(5188), - [sym__automatic_semicolon] = ACTIONS(5190), - [sym_tag_linefeed] = ACTIONS(5190), - [sym__java_block_open] = ACTIONS(5190), - [sym__static_type_prefix] = ACTIONS(5190), - }, - [STATE(2109)] = { - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_COLON] = ACTIONS(2103), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2103), - [sym_optional_chain] = ACTIONS(2105), - [sym_static_chain] = ACTIONS(2105), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_CARET_EQ] = ACTIONS(2105), - [anon_sym_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_LT_EQ] = ACTIONS(2105), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2103), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_BSLASH] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_GT] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [aux_sym_binary_expression_token1] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2103), - [aux_sym_binary_expression_token2] = ACTIONS(2103), - [aux_sym_binary_expression_token3] = ACTIONS(2103), - [aux_sym_binary_expression_token4] = ACTIONS(2105), - [aux_sym_binary_expression_token5] = ACTIONS(2105), - [aux_sym_binary_expression_token6] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2103), - [anon_sym_IN] = ACTIONS(2103), - [anon_sym_InstanceOf] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_INSTANCEOF] = ACTIONS(2105), - [anon_sym_instanceOf] = ACTIONS(2105), - [anon_sym_Of] = ACTIONS(2105), - [anon_sym_of] = ACTIONS(2105), - [anon_sym_OF] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2105), - [sym__ternary_qmark] = ACTIONS(2105), - [sym__elvis_operator] = ACTIONS(2105), - [sym_logical_or] = ACTIONS(2105), - }, - [STATE(2110)] = { - [sym_identifier] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_Query] = ACTIONS(1921), - [anon_sym_query] = ACTIONS(1921), - [anon_sym_QUERY] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [aux_sym_unary_operator_token1] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(1921), - [aux_sym_number_token2] = ACTIONS(1923), - [anon_sym_This] = ACTIONS(1921), - [anon_sym_this] = ACTIONS(1921), - [anon_sym_THIS] = ACTIONS(1921), - [anon_sym_Super] = ACTIONS(1921), - [anon_sym_super] = ACTIONS(1921), - [anon_sym_SUPER] = ACTIONS(1921), - [anon_sym_True] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_TRUE] = ACTIONS(1921), - [anon_sym_False] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [anon_sym_FALSE] = ACTIONS(1921), - [anon_sym_Null] = ACTIONS(1921), - [anon_sym_null] = ACTIONS(1921), - [anon_sym_NULL] = ACTIONS(1921), - [anon_sym_Undefined] = ACTIONS(1921), - [anon_sym_undefined] = ACTIONS(1921), - [anon_sym_UNDEFINED] = ACTIONS(1921), - [anon_sym_get] = ACTIONS(1921), - [anon_sym_set] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1921), - [sym_hash_empty] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_QueryExecute] = ACTIONS(1921), - [anon_sym_queryexecute] = ACTIONS(1921), - [anon_sym_QUERYEXECUTE] = ACTIONS(1921), - [anon_sym_queryExecute] = ACTIONS(1921), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_Abstract] = ACTIONS(1921), - [anon_sym_abstract] = ACTIONS(1921), - [anon_sym_ABSTRACT] = ACTIONS(1921), - [anon_sym_Component] = ACTIONS(1921), - [anon_sym_component] = ACTIONS(1921), - [anon_sym_COMPONENT] = ACTIONS(1921), - [anon_sym_Debugger] = ACTIONS(1921), - [anon_sym_debugger] = ACTIONS(1921), - [anon_sym_DEBUGGER] = ACTIONS(1921), - [anon_sym_Final] = ACTIONS(1921), - [anon_sym_final] = ACTIONS(1921), - [anon_sym_FINAL] = ACTIONS(1921), - [anon_sym_Function] = ACTIONS(1921), - [anon_sym_function] = ACTIONS(1921), - [anon_sym_FUNCTION] = ACTIONS(1921), - [anon_sym_Include] = ACTIONS(1921), - [anon_sym_include] = ACTIONS(1921), - [anon_sym_INCLUDE] = ACTIONS(1921), - [anon_sym_New] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1921), - [anon_sym_NEW] = ACTIONS(1921), - [anon_sym_Package] = ACTIONS(1921), - [anon_sym_package] = ACTIONS(1921), - [anon_sym_PACKAGE] = ACTIONS(1921), - [anon_sym_Private] = ACTIONS(1921), - [anon_sym_private] = ACTIONS(1921), - [anon_sym_PRIVATE] = ACTIONS(1921), - [anon_sym_Public] = ACTIONS(1921), - [anon_sym_public] = ACTIONS(1921), - [anon_sym_PUBLIC] = ACTIONS(1921), - [anon_sym_Remote] = ACTIONS(1921), - [anon_sym_remote] = ACTIONS(1921), - [anon_sym_REMOTE] = ACTIONS(1921), - [anon_sym_Static] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_STATIC] = ACTIONS(1921), - [sym__automatic_semicolon] = ACTIONS(1923), - [sym_tag_linefeed] = ACTIONS(1923), - [sym__java_block_open] = ACTIONS(1923), - [sym__static_type_prefix] = ACTIONS(1923), - }, - [STATE(2111)] = { - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2017), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2017), - [anon_sym_instanceof] = ACTIONS(2017), - [anon_sym_INSTANCEOF] = ACTIONS(2017), - [anon_sym_instanceOf] = ACTIONS(2017), - [anon_sym_Of] = ACTIONS(2023), - [anon_sym_of] = ACTIONS(2023), - [anon_sym_OF] = ACTIONS(2023), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), }, - [STATE(2112)] = { + [STATE(2133)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5186), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_EQ_GT] = ACTIONS(5169), + [anon_sym_DASH_GT] = ACTIONS(5169), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -336608,23 +339848,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2113)] = { + [STATE(2134)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5171), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1069), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -336699,114 +339940,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_Of] = ACTIONS(404), + [anon_sym_of] = ACTIONS(404), + [anon_sym_OF] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2114)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2135)] = { + [sym_component_attribute] = STATE(4343), + [sym_component_body] = STATE(2477), + [aux_sym_component_repeat1] = STATE(4343), + [sym_identifier] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2115)] = { + [STATE(2136)] = { + [sym_identifier] = ACTIONS(5190), + [anon_sym_LBRACE] = ACTIONS(5192), + [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_SEMI] = ACTIONS(5192), + [anon_sym_let] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_Query] = ACTIONS(5190), + [anon_sym_query] = ACTIONS(5190), + [anon_sym_QUERY] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_SLASH] = ACTIONS(5190), + [anon_sym_BANG] = ACTIONS(5192), + [anon_sym_TILDE] = ACTIONS(5192), + [aux_sym_unary_operator_token1] = ACTIONS(5190), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_DQUOTE] = ACTIONS(5192), + [anon_sym_SQUOTE] = ACTIONS(5192), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5190), + [aux_sym_number_token2] = ACTIONS(5192), + [anon_sym_This] = ACTIONS(5190), + [anon_sym_this] = ACTIONS(5190), + [anon_sym_THIS] = ACTIONS(5190), + [anon_sym_Super] = ACTIONS(5190), + [anon_sym_super] = ACTIONS(5190), + [anon_sym_SUPER] = ACTIONS(5190), + [anon_sym_True] = ACTIONS(5190), + [anon_sym_true] = ACTIONS(5190), + [anon_sym_TRUE] = ACTIONS(5190), + [anon_sym_False] = ACTIONS(5190), + [anon_sym_false] = ACTIONS(5190), + [anon_sym_FALSE] = ACTIONS(5190), + [anon_sym_Null] = ACTIONS(5190), + [anon_sym_null] = ACTIONS(5190), + [anon_sym_NULL] = ACTIONS(5190), + [anon_sym_Undefined] = ACTIONS(5190), + [anon_sym_undefined] = ACTIONS(5190), + [anon_sym_UNDEFINED] = ACTIONS(5190), + [anon_sym_get] = ACTIONS(5190), + [anon_sym_set] = ACTIONS(5190), + [anon_sym_POUND] = ACTIONS(5190), + [sym_hash_empty] = ACTIONS(5192), + [anon_sym_export] = ACTIONS(5190), + [anon_sym_QueryExecute] = ACTIONS(5190), + [anon_sym_queryexecute] = ACTIONS(5190), + [anon_sym_QUERYEXECUTE] = ACTIONS(5190), + [anon_sym_queryExecute] = ACTIONS(5190), + [anon_sym_BQUOTE] = ACTIONS(5192), + [anon_sym_Abstract] = ACTIONS(5190), + [anon_sym_abstract] = ACTIONS(5190), + [anon_sym_ABSTRACT] = ACTIONS(5190), + [anon_sym_Component] = ACTIONS(5190), + [anon_sym_component] = ACTIONS(5190), + [anon_sym_COMPONENT] = ACTIONS(5190), + [anon_sym_Debugger] = ACTIONS(5190), + [anon_sym_debugger] = ACTIONS(5190), + [anon_sym_DEBUGGER] = ACTIONS(5190), + [anon_sym_Final] = ACTIONS(5190), + [anon_sym_final] = ACTIONS(5190), + [anon_sym_FINAL] = ACTIONS(5190), + [anon_sym_Function] = ACTIONS(5190), + [anon_sym_function] = ACTIONS(5190), + [anon_sym_FUNCTION] = ACTIONS(5190), + [anon_sym_Include] = ACTIONS(5190), + [anon_sym_include] = ACTIONS(5190), + [anon_sym_INCLUDE] = ACTIONS(5190), + [anon_sym_New] = ACTIONS(5190), + [anon_sym_new] = ACTIONS(5190), + [anon_sym_NEW] = ACTIONS(5190), + [anon_sym_Package] = ACTIONS(5190), + [anon_sym_package] = ACTIONS(5190), + [anon_sym_PACKAGE] = ACTIONS(5190), + [anon_sym_Private] = ACTIONS(5190), + [anon_sym_private] = ACTIONS(5190), + [anon_sym_PRIVATE] = ACTIONS(5190), + [anon_sym_Public] = ACTIONS(5190), + [anon_sym_public] = ACTIONS(5190), + [anon_sym_PUBLIC] = ACTIONS(5190), + [anon_sym_Remote] = ACTIONS(5190), + [anon_sym_remote] = ACTIONS(5190), + [anon_sym_REMOTE] = ACTIONS(5190), + [anon_sym_Static] = ACTIONS(5190), + [anon_sym_static] = ACTIONS(5190), + [anon_sym_STATIC] = ACTIONS(5190), + [sym__automatic_semicolon] = ACTIONS(5192), + [sym_tag_linefeed] = ACTIONS(5192), + [sym__java_block_open] = ACTIONS(5192), + [sym__static_type_prefix] = ACTIONS(5192), + }, + [STATE(2137)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -336881,387 +340216,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_Of] = ACTIONS(404), + [anon_sym_of] = ACTIONS(404), + [anon_sym_OF] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2116)] = { - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_RBRACK] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2017), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2023), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2017), - [anon_sym_instanceof] = ACTIONS(2017), - [anon_sym_INSTANCEOF] = ACTIONS(2017), - [anon_sym_instanceOf] = ACTIONS(2017), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - }, - [STATE(2117)] = { - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1981), - [sym_optional_chain] = ACTIONS(1983), - [sym_static_chain] = ACTIONS(1983), - [anon_sym_PLUS_EQ] = ACTIONS(1983), - [anon_sym_DASH_EQ] = ACTIONS(1983), - [anon_sym_STAR_EQ] = ACTIONS(1983), - [anon_sym_SLASH_EQ] = ACTIONS(1983), - [anon_sym_PERCENT_EQ] = ACTIONS(1983), - [anon_sym_CARET_EQ] = ACTIONS(1983), - [anon_sym_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_LT_LT_EQ] = ACTIONS(1983), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_BSLASH] = ACTIONS(1983), - [anon_sym_STAR_STAR] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1983), - [anon_sym_LT_GT] = ACTIONS(1983), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1983), - [aux_sym_binary_expression_token1] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1981), - [aux_sym_binary_expression_token2] = ACTIONS(1981), - [aux_sym_binary_expression_token3] = ACTIONS(1981), - [aux_sym_binary_expression_token4] = ACTIONS(1983), - [aux_sym_binary_expression_token5] = ACTIONS(1983), - [aux_sym_binary_expression_token6] = ACTIONS(1983), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_IN] = ACTIONS(1981), - [anon_sym_InstanceOf] = ACTIONS(1983), - [anon_sym_instanceof] = ACTIONS(1983), - [anon_sym_INSTANCEOF] = ACTIONS(1983), - [anon_sym_instanceOf] = ACTIONS(1983), - [anon_sym_Of] = ACTIONS(1983), - [anon_sym_of] = ACTIONS(1983), - [anon_sym_OF] = ACTIONS(1983), - [sym__automatic_semicolon] = ACTIONS(1983), - [sym__ternary_qmark] = ACTIONS(1983), - [sym__elvis_operator] = ACTIONS(1983), - [sym_logical_or] = ACTIONS(1983), + [STATE(2138)] = { + [sym_identifier] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym_let] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_Query] = ACTIONS(5194), + [anon_sym_query] = ACTIONS(5194), + [anon_sym_QUERY] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_BANG] = ACTIONS(5196), + [anon_sym_TILDE] = ACTIONS(5196), + [aux_sym_unary_operator_token1] = ACTIONS(5194), + [anon_sym_PLUS_PLUS] = ACTIONS(5196), + [anon_sym_DASH_DASH] = ACTIONS(5196), + [anon_sym_DQUOTE] = ACTIONS(5196), + [anon_sym_SQUOTE] = ACTIONS(5196), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5194), + [aux_sym_number_token2] = ACTIONS(5196), + [anon_sym_This] = ACTIONS(5194), + [anon_sym_this] = ACTIONS(5194), + [anon_sym_THIS] = ACTIONS(5194), + [anon_sym_Super] = ACTIONS(5194), + [anon_sym_super] = ACTIONS(5194), + [anon_sym_SUPER] = ACTIONS(5194), + [anon_sym_True] = ACTIONS(5194), + [anon_sym_true] = ACTIONS(5194), + [anon_sym_TRUE] = ACTIONS(5194), + [anon_sym_False] = ACTIONS(5194), + [anon_sym_false] = ACTIONS(5194), + [anon_sym_FALSE] = ACTIONS(5194), + [anon_sym_Null] = ACTIONS(5194), + [anon_sym_null] = ACTIONS(5194), + [anon_sym_NULL] = ACTIONS(5194), + [anon_sym_Undefined] = ACTIONS(5194), + [anon_sym_undefined] = ACTIONS(5194), + [anon_sym_UNDEFINED] = ACTIONS(5194), + [anon_sym_get] = ACTIONS(5194), + [anon_sym_set] = ACTIONS(5194), + [anon_sym_POUND] = ACTIONS(5194), + [sym_hash_empty] = ACTIONS(5196), + [anon_sym_export] = ACTIONS(5194), + [anon_sym_QueryExecute] = ACTIONS(5194), + [anon_sym_queryexecute] = ACTIONS(5194), + [anon_sym_QUERYEXECUTE] = ACTIONS(5194), + [anon_sym_queryExecute] = ACTIONS(5194), + [anon_sym_BQUOTE] = ACTIONS(5196), + [anon_sym_Abstract] = ACTIONS(5194), + [anon_sym_abstract] = ACTIONS(5194), + [anon_sym_ABSTRACT] = ACTIONS(5194), + [anon_sym_Component] = ACTIONS(5194), + [anon_sym_component] = ACTIONS(5194), + [anon_sym_COMPONENT] = ACTIONS(5194), + [anon_sym_Debugger] = ACTIONS(5194), + [anon_sym_debugger] = ACTIONS(5194), + [anon_sym_DEBUGGER] = ACTIONS(5194), + [anon_sym_Final] = ACTIONS(5194), + [anon_sym_final] = ACTIONS(5194), + [anon_sym_FINAL] = ACTIONS(5194), + [anon_sym_Function] = ACTIONS(5194), + [anon_sym_function] = ACTIONS(5194), + [anon_sym_FUNCTION] = ACTIONS(5194), + [anon_sym_Include] = ACTIONS(5194), + [anon_sym_include] = ACTIONS(5194), + [anon_sym_INCLUDE] = ACTIONS(5194), + [anon_sym_New] = ACTIONS(5194), + [anon_sym_new] = ACTIONS(5194), + [anon_sym_NEW] = ACTIONS(5194), + [anon_sym_Package] = ACTIONS(5194), + [anon_sym_package] = ACTIONS(5194), + [anon_sym_PACKAGE] = ACTIONS(5194), + [anon_sym_Private] = ACTIONS(5194), + [anon_sym_private] = ACTIONS(5194), + [anon_sym_PRIVATE] = ACTIONS(5194), + [anon_sym_Public] = ACTIONS(5194), + [anon_sym_public] = ACTIONS(5194), + [anon_sym_PUBLIC] = ACTIONS(5194), + [anon_sym_Remote] = ACTIONS(5194), + [anon_sym_remote] = ACTIONS(5194), + [anon_sym_REMOTE] = ACTIONS(5194), + [anon_sym_Static] = ACTIONS(5194), + [anon_sym_static] = ACTIONS(5194), + [anon_sym_STATIC] = ACTIONS(5194), + [sym__automatic_semicolon] = ACTIONS(5196), + [sym_tag_linefeed] = ACTIONS(5196), + [sym__java_block_open] = ACTIONS(5196), + [sym__static_type_prefix] = ACTIONS(5196), }, - [STATE(2118)] = { - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2009), - [anon_sym_instanceof] = ACTIONS(2009), - [anon_sym_INSTANCEOF] = ACTIONS(2009), - [anon_sym_instanceOf] = ACTIONS(2009), - [anon_sym_Of] = ACTIONS(2009), - [anon_sym_of] = ACTIONS(2009), - [anon_sym_OF] = ACTIONS(2009), - [sym__automatic_semicolon] = ACTIONS(2009), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), + [STATE(2139)] = { + [sym_component_attribute] = STATE(4201), + [sym_component_body] = STATE(2840), + [aux_sym_component_repeat1] = STATE(4201), + [sym_identifier] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(5087), }, - [STATE(2119)] = { - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1985), - [sym_optional_chain] = ACTIONS(1987), - [sym_static_chain] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1987), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_GT_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_PERCENT] = ACTIONS(1985), - [anon_sym_BSLASH] = ACTIONS(1987), - [anon_sym_STAR_STAR] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1987), - [anon_sym_LT_GT] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1987), - [aux_sym_binary_expression_token1] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1985), - [aux_sym_binary_expression_token2] = ACTIONS(1985), - [aux_sym_binary_expression_token3] = ACTIONS(1985), - [aux_sym_binary_expression_token4] = ACTIONS(1987), - [aux_sym_binary_expression_token5] = ACTIONS(1987), - [aux_sym_binary_expression_token6] = ACTIONS(1987), - [anon_sym_QMARK_QMARK] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1985), - [anon_sym_in] = ACTIONS(1985), - [anon_sym_IN] = ACTIONS(1985), - [anon_sym_InstanceOf] = ACTIONS(1987), - [anon_sym_instanceof] = ACTIONS(1987), - [anon_sym_INSTANCEOF] = ACTIONS(1987), - [anon_sym_instanceOf] = ACTIONS(1987), - [anon_sym_Of] = ACTIONS(1987), - [anon_sym_of] = ACTIONS(1987), - [anon_sym_OF] = ACTIONS(1987), - [sym__automatic_semicolon] = ACTIONS(1987), - [sym__ternary_qmark] = ACTIONS(1987), - [sym__elvis_operator] = ACTIONS(1987), - [sym_logical_or] = ACTIONS(1987), + [STATE(2140)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5169), + [anon_sym_DASH_GT] = ACTIONS(5169), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2120)] = { + [STATE(2141)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -337340,34 +340591,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2121)] = { - [sym_identifier] = ACTIONS(5194), + [STATE(2142)] = { + [sym_identifier] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_RPAREN] = ACTIONS(2894), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_Query] = ACTIONS(2896), + [anon_sym_query] = ACTIONS(2896), + [anon_sym_QUERY] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [aux_sym_unary_operator_token1] = ACTIONS(2896), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_DQUOTE] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2896), + [aux_sym_number_token2] = ACTIONS(2894), + [anon_sym_This] = ACTIONS(2896), + [anon_sym_this] = ACTIONS(2896), + [anon_sym_THIS] = ACTIONS(2896), + [anon_sym_Super] = ACTIONS(2896), + [anon_sym_super] = ACTIONS(2896), + [anon_sym_SUPER] = ACTIONS(2896), + [anon_sym_True] = ACTIONS(2896), + [anon_sym_true] = ACTIONS(2896), + [anon_sym_TRUE] = ACTIONS(2896), + [anon_sym_False] = ACTIONS(2896), + [anon_sym_false] = ACTIONS(2896), + [anon_sym_FALSE] = ACTIONS(2896), + [anon_sym_Null] = ACTIONS(2896), + [anon_sym_null] = ACTIONS(2896), + [anon_sym_NULL] = ACTIONS(2896), + [anon_sym_Undefined] = ACTIONS(2896), + [anon_sym_undefined] = ACTIONS(2896), + [anon_sym_UNDEFINED] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2896), + [anon_sym_set] = ACTIONS(2896), + [anon_sym_POUND] = ACTIONS(2896), + [sym_hash_empty] = ACTIONS(2894), + [anon_sym_export] = ACTIONS(2896), + [anon_sym_QueryExecute] = ACTIONS(2896), + [anon_sym_queryexecute] = ACTIONS(2896), + [anon_sym_QUERYEXECUTE] = ACTIONS(2896), + [anon_sym_queryExecute] = ACTIONS(2896), + [anon_sym_BQUOTE] = ACTIONS(2894), + [anon_sym_Abstract] = ACTIONS(2896), + [anon_sym_abstract] = ACTIONS(2896), + [anon_sym_ABSTRACT] = ACTIONS(2896), + [anon_sym_Component] = ACTIONS(2896), + [anon_sym_component] = ACTIONS(2896), + [anon_sym_COMPONENT] = ACTIONS(2896), + [anon_sym_Debugger] = ACTIONS(2896), + [anon_sym_debugger] = ACTIONS(2896), + [anon_sym_DEBUGGER] = ACTIONS(2896), + [anon_sym_Final] = ACTIONS(2896), + [anon_sym_final] = ACTIONS(2896), + [anon_sym_FINAL] = ACTIONS(2896), + [anon_sym_Function] = ACTIONS(2896), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_FUNCTION] = ACTIONS(2896), + [anon_sym_Include] = ACTIONS(2896), + [anon_sym_include] = ACTIONS(2896), + [anon_sym_INCLUDE] = ACTIONS(2896), + [anon_sym_New] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_NEW] = ACTIONS(2896), + [anon_sym_Package] = ACTIONS(2896), + [anon_sym_package] = ACTIONS(2896), + [anon_sym_PACKAGE] = ACTIONS(2896), + [anon_sym_Private] = ACTIONS(2896), + [anon_sym_private] = ACTIONS(2896), + [anon_sym_PRIVATE] = ACTIONS(2896), + [anon_sym_Public] = ACTIONS(2896), + [anon_sym_public] = ACTIONS(2896), + [anon_sym_PUBLIC] = ACTIONS(2896), + [anon_sym_Remote] = ACTIONS(2896), + [anon_sym_remote] = ACTIONS(2896), + [anon_sym_REMOTE] = ACTIONS(2896), + [anon_sym_Static] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_STATIC] = ACTIONS(2896), + [sym__java_block_open] = ACTIONS(2894), + [sym__static_type_prefix] = ACTIONS(2894), + }, + [STATE(2143)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -337398,7 +340741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -337422,16 +340765,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1127), }, - [STATE(2122)] = { + [STATE(2144)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), @@ -337439,11 +340781,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -337522,19 +340864,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2123)] = { + [STATE(2145)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1098), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -337613,19 +340955,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2124)] = { + [STATE(2146)] = { + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1959), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1959), + [anon_sym_instanceof] = ACTIONS(1959), + [anon_sym_INSTANCEOF] = ACTIONS(1959), + [anon_sym_instanceOf] = ACTIONS(1959), + [anon_sym_Of] = ACTIONS(1959), + [anon_sym_of] = ACTIONS(1959), + [anon_sym_OF] = ACTIONS(1959), + [sym__automatic_semicolon] = ACTIONS(1959), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), + }, + [STATE(2147)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -337693,25 +341123,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), + [anon_sym_In] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [anon_sym_IN] = ACTIONS(863), [anon_sym_InstanceOf] = ACTIONS(404), [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_Of] = ACTIONS(5202), + [anon_sym_of] = ACTIONS(5202), + [anon_sym_OF] = ACTIONS(5202), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2125)] = { + [STATE(2148)] = { + [sym__initializer] = STATE(4002), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5126), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5128), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -337780,140 +341213,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), + [anon_sym_In] = ACTIONS(5130), + [anon_sym_in] = ACTIONS(5130), + [anon_sym_IN] = ACTIONS(5130), [anon_sym_InstanceOf] = ACTIONS(509), [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(5133), + [anon_sym_of] = ACTIONS(5133), + [anon_sym_OF] = ACTIONS(5133), + [sym__automatic_semicolon] = ACTIONS(5126), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2126)] = { - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2017), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2017), - [anon_sym_instanceof] = ACTIONS(2017), - [anon_sym_INSTANCEOF] = ACTIONS(2017), - [anon_sym_instanceOf] = ACTIONS(2017), - [anon_sym_Of] = ACTIONS(2023), - [anon_sym_of] = ACTIONS(2023), - [anon_sym_OF] = ACTIONS(2023), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), + [STATE(2149)] = { + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1949), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1949), + [anon_sym_instanceof] = ACTIONS(1949), + [anon_sym_INSTANCEOF] = ACTIONS(1949), + [anon_sym_instanceOf] = ACTIONS(1949), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), }, - [STATE(2127)] = { - [sym_identifier] = ACTIONS(5194), + [STATE(2150)] = { + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2083), + [sym_optional_chain] = ACTIONS(2085), + [sym_static_chain] = ACTIONS(2085), + [anon_sym_PLUS_EQ] = ACTIONS(2085), + [anon_sym_DASH_EQ] = ACTIONS(2085), + [anon_sym_STAR_EQ] = ACTIONS(2085), + [anon_sym_SLASH_EQ] = ACTIONS(2085), + [anon_sym_PERCENT_EQ] = ACTIONS(2085), + [anon_sym_CARET_EQ] = ACTIONS(2085), + [anon_sym_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_LT_LT_EQ] = ACTIONS(2085), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [anon_sym_GT_GT] = ACTIONS(2083), + [anon_sym_GT_GT_GT] = ACTIONS(2083), + [anon_sym_LT_LT] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_BSLASH] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_LT_GT] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [aux_sym_binary_expression_token1] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2083), + [aux_sym_binary_expression_token2] = ACTIONS(2083), + [aux_sym_binary_expression_token3] = ACTIONS(2083), + [aux_sym_binary_expression_token4] = ACTIONS(2085), + [aux_sym_binary_expression_token5] = ACTIONS(2085), + [aux_sym_binary_expression_token6] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_IN] = ACTIONS(2083), + [anon_sym_InstanceOf] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_INSTANCEOF] = ACTIONS(2085), + [anon_sym_instanceOf] = ACTIONS(2085), + [anon_sym_Of] = ACTIONS(2085), + [anon_sym_of] = ACTIONS(2085), + [anon_sym_OF] = ACTIONS(2085), + [sym__automatic_semicolon] = ACTIONS(2085), + [sym__ternary_qmark] = ACTIONS(2085), + [sym__elvis_operator] = ACTIONS(2085), + [sym_logical_or] = ACTIONS(2085), + }, + [STATE(2151)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -337944,7 +341469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -337968,25 +341493,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1127), }, - [STATE(2128)] = { + [STATE(2152)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -338054,121 +341581,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5198), - [anon_sym_in] = ACTIONS(5198), - [anon_sym_IN] = ACTIONS(5198), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), [anon_sym_InstanceOf] = ACTIONS(509), [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(5201), - [anon_sym_of] = ACTIONS(5201), - [anon_sym_OF] = ACTIONS(5201), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2129)] = { - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_RBRACK] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2017), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2023), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2017), - [anon_sym_instanceof] = ACTIONS(2017), - [anon_sym_INSTANCEOF] = ACTIONS(2017), - [anon_sym_instanceOf] = ACTIONS(2017), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - }, - [STATE(2130)] = { + [STATE(2153)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1098), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -338236,32 +341672,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [anon_sym_IN] = ACTIONS(851), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), [anon_sym_InstanceOf] = ACTIONS(404), [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Of] = ACTIONS(5203), - [anon_sym_of] = ACTIONS(5203), - [anon_sym_OF] = ACTIONS(5203), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2131)] = { + [STATE(2154)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -338329,7 +341759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -338337,130 +341766,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2132)] = { - [sym_identifier] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_Query] = ACTIONS(3014), - [anon_sym_query] = ACTIONS(3014), - [anon_sym_QUERY] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [aux_sym_unary_operator_token1] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_DQUOTE] = ACTIONS(3012), - [anon_sym_SQUOTE] = ACTIONS(3012), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3014), - [aux_sym_number_token2] = ACTIONS(3012), - [anon_sym_This] = ACTIONS(3014), - [anon_sym_this] = ACTIONS(3014), - [anon_sym_THIS] = ACTIONS(3014), - [anon_sym_Super] = ACTIONS(3014), - [anon_sym_super] = ACTIONS(3014), - [anon_sym_SUPER] = ACTIONS(3014), - [anon_sym_True] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3014), - [anon_sym_TRUE] = ACTIONS(3014), - [anon_sym_False] = ACTIONS(3014), - [anon_sym_false] = ACTIONS(3014), - [anon_sym_FALSE] = ACTIONS(3014), - [anon_sym_Null] = ACTIONS(3014), - [anon_sym_null] = ACTIONS(3014), - [anon_sym_NULL] = ACTIONS(3014), - [anon_sym_Undefined] = ACTIONS(3014), - [anon_sym_undefined] = ACTIONS(3014), - [anon_sym_UNDEFINED] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(3014), - [anon_sym_set] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [sym_hash_empty] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3014), - [anon_sym_QueryExecute] = ACTIONS(3014), - [anon_sym_queryexecute] = ACTIONS(3014), - [anon_sym_QUERYEXECUTE] = ACTIONS(3014), - [anon_sym_queryExecute] = ACTIONS(3014), - [anon_sym_BQUOTE] = ACTIONS(3012), - [anon_sym_Abstract] = ACTIONS(3014), - [anon_sym_abstract] = ACTIONS(3014), - [anon_sym_ABSTRACT] = ACTIONS(3014), - [anon_sym_Component] = ACTIONS(3014), - [anon_sym_component] = ACTIONS(3014), - [anon_sym_COMPONENT] = ACTIONS(3014), - [anon_sym_Debugger] = ACTIONS(3014), - [anon_sym_debugger] = ACTIONS(3014), - [anon_sym_DEBUGGER] = ACTIONS(3014), - [anon_sym_Final] = ACTIONS(3014), - [anon_sym_final] = ACTIONS(3014), - [anon_sym_FINAL] = ACTIONS(3014), - [anon_sym_Function] = ACTIONS(3014), - [anon_sym_function] = ACTIONS(3014), - [anon_sym_FUNCTION] = ACTIONS(3014), - [anon_sym_Include] = ACTIONS(3014), - [anon_sym_include] = ACTIONS(3014), - [anon_sym_INCLUDE] = ACTIONS(3014), - [anon_sym_New] = ACTIONS(3014), - [anon_sym_new] = ACTIONS(3014), - [anon_sym_NEW] = ACTIONS(3014), - [anon_sym_Package] = ACTIONS(3014), - [anon_sym_package] = ACTIONS(3014), - [anon_sym_PACKAGE] = ACTIONS(3014), - [anon_sym_Private] = ACTIONS(3014), - [anon_sym_private] = ACTIONS(3014), - [anon_sym_PRIVATE] = ACTIONS(3014), - [anon_sym_Public] = ACTIONS(3014), - [anon_sym_public] = ACTIONS(3014), - [anon_sym_PUBLIC] = ACTIONS(3014), - [anon_sym_Remote] = ACTIONS(3014), - [anon_sym_remote] = ACTIONS(3014), - [anon_sym_REMOTE] = ACTIONS(3014), - [anon_sym_Static] = ACTIONS(3014), - [anon_sym_static] = ACTIONS(3014), - [anon_sym_STATIC] = ACTIONS(3014), - [sym__java_block_open] = ACTIONS(3012), - [sym__static_type_prefix] = ACTIONS(3012), + [STATE(2155)] = { + [anon_sym_DOT] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_COMMA] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_EQ] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2045), + [sym_optional_chain] = ACTIONS(2047), + [sym_static_chain] = ACTIONS(2047), + [anon_sym_PLUS_EQ] = ACTIONS(2047), + [anon_sym_DASH_EQ] = ACTIONS(2047), + [anon_sym_STAR_EQ] = ACTIONS(2047), + [anon_sym_SLASH_EQ] = ACTIONS(2047), + [anon_sym_PERCENT_EQ] = ACTIONS(2047), + [anon_sym_CARET_EQ] = ACTIONS(2047), + [anon_sym_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_LT_LT_EQ] = ACTIONS(2047), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_GT_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_CARET] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_SLASH] = ACTIONS(2045), + [anon_sym_PERCENT] = ACTIONS(2045), + [anon_sym_BSLASH] = ACTIONS(2047), + [anon_sym_STAR_STAR] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_EQ_EQ] = ACTIONS(2045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2047), + [anon_sym_LT_GT] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2047), + [aux_sym_binary_expression_token1] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [aux_sym_binary_expression_token2] = ACTIONS(2045), + [aux_sym_binary_expression_token3] = ACTIONS(2045), + [aux_sym_binary_expression_token4] = ACTIONS(2047), + [aux_sym_binary_expression_token5] = ACTIONS(2047), + [aux_sym_binary_expression_token6] = ACTIONS(2047), + [anon_sym_QMARK_QMARK] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2045), + [anon_sym_in] = ACTIONS(2045), + [anon_sym_IN] = ACTIONS(2045), + [anon_sym_InstanceOf] = ACTIONS(2047), + [anon_sym_instanceof] = ACTIONS(2047), + [anon_sym_INSTANCEOF] = ACTIONS(2047), + [anon_sym_instanceOf] = ACTIONS(2047), + [anon_sym_Of] = ACTIONS(2047), + [anon_sym_of] = ACTIONS(2047), + [anon_sym_OF] = ACTIONS(2047), + [sym__automatic_semicolon] = ACTIONS(2047), + [sym__ternary_qmark] = ACTIONS(2047), + [sym__elvis_operator] = ACTIONS(2047), + [sym_logical_or] = ACTIONS(2047), }, - [STATE(2133)] = { + [STATE(2156)] = { + [sym_identifier] = ACTIONS(5204), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1098), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -338491,7 +341923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -338515,131 +341947,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(1204), }, - [STATE(2134)] = { - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2003), - [sym_optional_chain] = ACTIONS(2005), - [sym_static_chain] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_PERCENT_EQ] = ACTIONS(2005), - [anon_sym_CARET_EQ] = ACTIONS(2005), - [anon_sym_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_EQ] = ACTIONS(2005), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2005), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_GT_GT_GT] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_PERCENT] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2005), - [anon_sym_STAR_STAR] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT_GT] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2005), - [aux_sym_binary_expression_token1] = ACTIONS(2005), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2003), - [aux_sym_binary_expression_token2] = ACTIONS(2003), - [aux_sym_binary_expression_token3] = ACTIONS(2003), - [aux_sym_binary_expression_token4] = ACTIONS(2005), - [aux_sym_binary_expression_token5] = ACTIONS(2005), - [aux_sym_binary_expression_token6] = ACTIONS(2005), - [anon_sym_QMARK_QMARK] = ACTIONS(2003), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2003), - [anon_sym_in] = ACTIONS(2003), - [anon_sym_IN] = ACTIONS(2003), - [anon_sym_InstanceOf] = ACTIONS(2005), - [anon_sym_instanceof] = ACTIONS(2005), - [anon_sym_INSTANCEOF] = ACTIONS(2005), - [anon_sym_instanceOf] = ACTIONS(2005), - [anon_sym_Of] = ACTIONS(2005), - [anon_sym_of] = ACTIONS(2005), - [anon_sym_OF] = ACTIONS(2005), - [sym__automatic_semicolon] = ACTIONS(2005), - [sym__ternary_qmark] = ACTIONS(2005), - [sym__elvis_operator] = ACTIONS(2005), - [sym_logical_or] = ACTIONS(2005), - }, - [STATE(2135)] = { + [STATE(2157)] = { + [sym_identifier] = ACTIONS(5204), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -338670,7 +342014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -338691,29 +342035,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [anon_sym_IN] = ACTIONS(851), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [anon_sym_Of] = ACTIONS(5203), - [anon_sym_of] = ACTIONS(5203), - [anon_sym_OF] = ACTIONS(5203), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(1204), }, - [STATE(2136)] = { - [sym__initializer] = STATE(3950), + [STATE(2158)] = { + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_EQ] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2073), + [sym_optional_chain] = ACTIONS(2075), + [sym_static_chain] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2075), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_GT_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_PERCENT] = ACTIONS(2073), + [anon_sym_BSLASH] = ACTIONS(2075), + [anon_sym_STAR_STAR] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_LT_GT] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [aux_sym_binary_expression_token1] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2073), + [aux_sym_binary_expression_token2] = ACTIONS(2073), + [aux_sym_binary_expression_token3] = ACTIONS(2073), + [aux_sym_binary_expression_token4] = ACTIONS(2075), + [aux_sym_binary_expression_token5] = ACTIONS(2075), + [aux_sym_binary_expression_token6] = ACTIONS(2075), + [anon_sym_QMARK_QMARK] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2073), + [anon_sym_in] = ACTIONS(2073), + [anon_sym_IN] = ACTIONS(2073), + [anon_sym_InstanceOf] = ACTIONS(2075), + [anon_sym_instanceof] = ACTIONS(2075), + [anon_sym_INSTANCEOF] = ACTIONS(2075), + [anon_sym_instanceOf] = ACTIONS(2075), + [anon_sym_Of] = ACTIONS(2075), + [anon_sym_of] = ACTIONS(2075), + [anon_sym_OF] = ACTIONS(2075), + [sym__automatic_semicolon] = ACTIONS(2075), + [sym__ternary_qmark] = ACTIONS(2075), + [sym__elvis_operator] = ACTIONS(2075), + [sym_logical_or] = ACTIONS(2075), + }, + [STATE(2159)] = { + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1949), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1949), + [anon_sym_instanceof] = ACTIONS(1949), + [anon_sym_INSTANCEOF] = ACTIONS(1949), + [anon_sym_instanceOf] = ACTIONS(1949), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + }, + [STATE(2160)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -338781,47 +342308,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5124), - [anon_sym_in] = ACTIONS(5124), - [anon_sym_IN] = ACTIONS(5124), + [anon_sym_POUND] = ACTIONS(509), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), [anon_sym_InstanceOf] = ACTIONS(509), [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(5127), - [anon_sym_of] = ACTIONS(5127), - [anon_sym_OF] = ACTIONS(5127), - [sym__automatic_semicolon] = ACTIONS(5120), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2137)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2161)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5205), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5207), - [anon_sym_DASH_GT] = ACTIONS(5207), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -338852,7 +342376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -338873,46 +342397,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), + [anon_sym_In] = ACTIONS(5206), + [anon_sym_in] = ACTIONS(5206), + [anon_sym_IN] = ACTIONS(5206), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(5209), + [anon_sym_of] = ACTIONS(5209), + [anon_sym_OF] = ACTIONS(5209), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2138)] = { - [sym_identifier] = ACTIONS(5209), + [STATE(2162)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2163)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(863), + [anon_sym_in] = ACTIONS(863), + [anon_sym_IN] = ACTIONS(863), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_Of] = ACTIONS(5202), + [anon_sym_of] = ACTIONS(5202), + [anon_sym_OF] = ACTIONS(5202), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2164)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5211), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -338943,7 +342652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -338967,26 +342676,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5214), }, - [STATE(2139)] = { + [STATE(2165)] = { + [sym_identifier] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_Query] = ACTIONS(2960), + [anon_sym_query] = ACTIONS(2960), + [anon_sym_QUERY] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [aux_sym_unary_operator_token1] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2958), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2960), + [aux_sym_number_token2] = ACTIONS(2958), + [anon_sym_This] = ACTIONS(2960), + [anon_sym_this] = ACTIONS(2960), + [anon_sym_THIS] = ACTIONS(2960), + [anon_sym_Super] = ACTIONS(2960), + [anon_sym_super] = ACTIONS(2960), + [anon_sym_SUPER] = ACTIONS(2960), + [anon_sym_True] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_TRUE] = ACTIONS(2960), + [anon_sym_False] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_FALSE] = ACTIONS(2960), + [anon_sym_Null] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2960), + [anon_sym_NULL] = ACTIONS(2960), + [anon_sym_Undefined] = ACTIONS(2960), + [anon_sym_undefined] = ACTIONS(2960), + [anon_sym_UNDEFINED] = ACTIONS(2960), + [anon_sym_get] = ACTIONS(2960), + [anon_sym_set] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [sym_hash_empty] = ACTIONS(2958), + [anon_sym_export] = ACTIONS(2960), + [anon_sym_QueryExecute] = ACTIONS(2960), + [anon_sym_queryexecute] = ACTIONS(2960), + [anon_sym_QUERYEXECUTE] = ACTIONS(2960), + [anon_sym_queryExecute] = ACTIONS(2960), + [anon_sym_BQUOTE] = ACTIONS(2958), + [anon_sym_Abstract] = ACTIONS(2960), + [anon_sym_abstract] = ACTIONS(2960), + [anon_sym_ABSTRACT] = ACTIONS(2960), + [anon_sym_Component] = ACTIONS(2960), + [anon_sym_component] = ACTIONS(2960), + [anon_sym_COMPONENT] = ACTIONS(2960), + [anon_sym_Debugger] = ACTIONS(2960), + [anon_sym_debugger] = ACTIONS(2960), + [anon_sym_DEBUGGER] = ACTIONS(2960), + [anon_sym_Final] = ACTIONS(2960), + [anon_sym_final] = ACTIONS(2960), + [anon_sym_FINAL] = ACTIONS(2960), + [anon_sym_Function] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2960), + [anon_sym_FUNCTION] = ACTIONS(2960), + [anon_sym_Include] = ACTIONS(2960), + [anon_sym_include] = ACTIONS(2960), + [anon_sym_INCLUDE] = ACTIONS(2960), + [anon_sym_New] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2960), + [anon_sym_NEW] = ACTIONS(2960), + [anon_sym_Package] = ACTIONS(2960), + [anon_sym_package] = ACTIONS(2960), + [anon_sym_PACKAGE] = ACTIONS(2960), + [anon_sym_Private] = ACTIONS(2960), + [anon_sym_private] = ACTIONS(2960), + [anon_sym_PRIVATE] = ACTIONS(2960), + [anon_sym_Public] = ACTIONS(2960), + [anon_sym_public] = ACTIONS(2960), + [anon_sym_PUBLIC] = ACTIONS(2960), + [anon_sym_Remote] = ACTIONS(2960), + [anon_sym_remote] = ACTIONS(2960), + [anon_sym_REMOTE] = ACTIONS(2960), + [anon_sym_Static] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_STATIC] = ACTIONS(2960), + [sym__java_block_open] = ACTIONS(2958), + [sym__static_type_prefix] = ACTIONS(2958), + }, + [STATE(2166)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(404), + }, + [STATE(2167)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(1204), + }, + [STATE(2168)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(553), + [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -339061,308 +343039,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(5124), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2140)] = { - [sym_identifier] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_Query] = ACTIONS(2732), - [anon_sym_query] = ACTIONS(2732), - [anon_sym_QUERY] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [aux_sym_unary_operator_token1] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2730), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2732), - [aux_sym_number_token2] = ACTIONS(2730), - [anon_sym_This] = ACTIONS(2732), - [anon_sym_this] = ACTIONS(2732), - [anon_sym_THIS] = ACTIONS(2732), - [anon_sym_Super] = ACTIONS(2732), - [anon_sym_super] = ACTIONS(2732), - [anon_sym_SUPER] = ACTIONS(2732), - [anon_sym_True] = ACTIONS(2732), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_TRUE] = ACTIONS(2732), - [anon_sym_False] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_FALSE] = ACTIONS(2732), - [anon_sym_Null] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_NULL] = ACTIONS(2732), - [anon_sym_Undefined] = ACTIONS(2732), - [anon_sym_undefined] = ACTIONS(2732), - [anon_sym_UNDEFINED] = ACTIONS(2732), - [anon_sym_get] = ACTIONS(2732), - [anon_sym_set] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2732), - [sym_hash_empty] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_QueryExecute] = ACTIONS(2732), - [anon_sym_queryexecute] = ACTIONS(2732), - [anon_sym_QUERYEXECUTE] = ACTIONS(2732), - [anon_sym_queryExecute] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2730), - [anon_sym_Abstract] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_ABSTRACT] = ACTIONS(2732), - [anon_sym_Component] = ACTIONS(2732), - [anon_sym_component] = ACTIONS(2732), - [anon_sym_COMPONENT] = ACTIONS(2732), - [anon_sym_Debugger] = ACTIONS(2732), - [anon_sym_debugger] = ACTIONS(2732), - [anon_sym_DEBUGGER] = ACTIONS(2732), - [anon_sym_Final] = ACTIONS(2732), - [anon_sym_final] = ACTIONS(2732), - [anon_sym_FINAL] = ACTIONS(2732), - [anon_sym_Function] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_FUNCTION] = ACTIONS(2732), - [anon_sym_Include] = ACTIONS(2732), - [anon_sym_include] = ACTIONS(2732), - [anon_sym_INCLUDE] = ACTIONS(2732), - [anon_sym_New] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_NEW] = ACTIONS(2732), - [anon_sym_Package] = ACTIONS(2732), - [anon_sym_package] = ACTIONS(2732), - [anon_sym_PACKAGE] = ACTIONS(2732), - [anon_sym_Private] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_PRIVATE] = ACTIONS(2732), - [anon_sym_Public] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_PUBLIC] = ACTIONS(2732), - [anon_sym_Remote] = ACTIONS(2732), - [anon_sym_remote] = ACTIONS(2732), - [anon_sym_REMOTE] = ACTIONS(2732), - [anon_sym_Static] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_STATIC] = ACTIONS(2732), - [sym__java_block_open] = ACTIONS(2730), - [sym__static_type_prefix] = ACTIONS(2730), - }, - [STATE(2141)] = { - [sym_identifier] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_Query] = ACTIONS(2804), - [anon_sym_query] = ACTIONS(2804), - [anon_sym_QUERY] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [aux_sym_unary_operator_token1] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2802), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2804), - [aux_sym_number_token2] = ACTIONS(2802), - [anon_sym_This] = ACTIONS(2804), - [anon_sym_this] = ACTIONS(2804), - [anon_sym_THIS] = ACTIONS(2804), - [anon_sym_Super] = ACTIONS(2804), - [anon_sym_super] = ACTIONS(2804), - [anon_sym_SUPER] = ACTIONS(2804), - [anon_sym_True] = ACTIONS(2804), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_TRUE] = ACTIONS(2804), - [anon_sym_False] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_FALSE] = ACTIONS(2804), - [anon_sym_Null] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2804), - [anon_sym_NULL] = ACTIONS(2804), - [anon_sym_Undefined] = ACTIONS(2804), - [anon_sym_undefined] = ACTIONS(2804), - [anon_sym_UNDEFINED] = ACTIONS(2804), - [anon_sym_get] = ACTIONS(2804), - [anon_sym_set] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [sym_hash_empty] = ACTIONS(2802), - [anon_sym_export] = ACTIONS(2804), - [anon_sym_QueryExecute] = ACTIONS(2804), - [anon_sym_queryexecute] = ACTIONS(2804), - [anon_sym_QUERYEXECUTE] = ACTIONS(2804), - [anon_sym_queryExecute] = ACTIONS(2804), - [anon_sym_BQUOTE] = ACTIONS(2802), - [anon_sym_Abstract] = ACTIONS(2804), - [anon_sym_abstract] = ACTIONS(2804), - [anon_sym_ABSTRACT] = ACTIONS(2804), - [anon_sym_Component] = ACTIONS(2804), - [anon_sym_component] = ACTIONS(2804), - [anon_sym_COMPONENT] = ACTIONS(2804), - [anon_sym_Debugger] = ACTIONS(2804), - [anon_sym_debugger] = ACTIONS(2804), - [anon_sym_DEBUGGER] = ACTIONS(2804), - [anon_sym_Final] = ACTIONS(2804), - [anon_sym_final] = ACTIONS(2804), - [anon_sym_FINAL] = ACTIONS(2804), - [anon_sym_Function] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2804), - [anon_sym_FUNCTION] = ACTIONS(2804), - [anon_sym_Include] = ACTIONS(2804), - [anon_sym_include] = ACTIONS(2804), - [anon_sym_INCLUDE] = ACTIONS(2804), - [anon_sym_New] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_NEW] = ACTIONS(2804), - [anon_sym_Package] = ACTIONS(2804), - [anon_sym_package] = ACTIONS(2804), - [anon_sym_PACKAGE] = ACTIONS(2804), - [anon_sym_Private] = ACTIONS(2804), - [anon_sym_private] = ACTIONS(2804), - [anon_sym_PRIVATE] = ACTIONS(2804), - [anon_sym_Public] = ACTIONS(2804), - [anon_sym_public] = ACTIONS(2804), - [anon_sym_PUBLIC] = ACTIONS(2804), - [anon_sym_Remote] = ACTIONS(2804), - [anon_sym_remote] = ACTIONS(2804), - [anon_sym_REMOTE] = ACTIONS(2804), - [anon_sym_Static] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_STATIC] = ACTIONS(2804), - [sym__java_block_open] = ACTIONS(2802), - [sym__static_type_prefix] = ACTIONS(2802), - }, - [STATE(2142)] = { - [sym_identifier] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_Query] = ACTIONS(2804), - [anon_sym_query] = ACTIONS(2804), - [anon_sym_QUERY] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [aux_sym_unary_operator_token1] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2802), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2804), - [aux_sym_number_token2] = ACTIONS(2802), - [anon_sym_This] = ACTIONS(2804), - [anon_sym_this] = ACTIONS(2804), - [anon_sym_THIS] = ACTIONS(2804), - [anon_sym_Super] = ACTIONS(2804), - [anon_sym_super] = ACTIONS(2804), - [anon_sym_SUPER] = ACTIONS(2804), - [anon_sym_True] = ACTIONS(2804), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_TRUE] = ACTIONS(2804), - [anon_sym_False] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_FALSE] = ACTIONS(2804), - [anon_sym_Null] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2804), - [anon_sym_NULL] = ACTIONS(2804), - [anon_sym_Undefined] = ACTIONS(2804), - [anon_sym_undefined] = ACTIONS(2804), - [anon_sym_UNDEFINED] = ACTIONS(2804), - [anon_sym_get] = ACTIONS(2804), - [anon_sym_set] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [sym_hash_empty] = ACTIONS(2802), - [anon_sym_export] = ACTIONS(2804), - [anon_sym_QueryExecute] = ACTIONS(2804), - [anon_sym_queryexecute] = ACTIONS(2804), - [anon_sym_QUERYEXECUTE] = ACTIONS(2804), - [anon_sym_queryExecute] = ACTIONS(2804), - [anon_sym_BQUOTE] = ACTIONS(2802), - [anon_sym_Abstract] = ACTIONS(2804), - [anon_sym_abstract] = ACTIONS(2804), - [anon_sym_ABSTRACT] = ACTIONS(2804), - [anon_sym_Component] = ACTIONS(2804), - [anon_sym_component] = ACTIONS(2804), - [anon_sym_COMPONENT] = ACTIONS(2804), - [anon_sym_Debugger] = ACTIONS(2804), - [anon_sym_debugger] = ACTIONS(2804), - [anon_sym_DEBUGGER] = ACTIONS(2804), - [anon_sym_Final] = ACTIONS(2804), - [anon_sym_final] = ACTIONS(2804), - [anon_sym_FINAL] = ACTIONS(2804), - [anon_sym_Function] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2804), - [anon_sym_FUNCTION] = ACTIONS(2804), - [anon_sym_Include] = ACTIONS(2804), - [anon_sym_include] = ACTIONS(2804), - [anon_sym_INCLUDE] = ACTIONS(2804), - [anon_sym_New] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_NEW] = ACTIONS(2804), - [anon_sym_Package] = ACTIONS(2804), - [anon_sym_package] = ACTIONS(2804), - [anon_sym_PACKAGE] = ACTIONS(2804), - [anon_sym_Private] = ACTIONS(2804), - [anon_sym_private] = ACTIONS(2804), - [anon_sym_PRIVATE] = ACTIONS(2804), - [anon_sym_Public] = ACTIONS(2804), - [anon_sym_public] = ACTIONS(2804), - [anon_sym_PUBLIC] = ACTIONS(2804), - [anon_sym_Remote] = ACTIONS(2804), - [anon_sym_remote] = ACTIONS(2804), - [anon_sym_REMOTE] = ACTIONS(2804), - [anon_sym_Static] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_STATIC] = ACTIONS(2804), - [sym__java_block_open] = ACTIONS(2802), - [sym__static_type_prefix] = ACTIONS(2802), + [STATE(2169)] = { + [sym_identifier] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5218), }, - [STATE(2143)] = { + [STATE(2170)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -339393,7 +343191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -339417,26 +343215,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(404), }, - [STATE(2144)] = { - [sym_identifier] = ACTIONS(5216), + [STATE(2171)] = { + [sym_identifier] = ACTIONS(5220), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -339514,19 +343312,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1383), + [sym__parameter_separator] = ACTIONS(1211), }, - [STATE(2145)] = { + [STATE(2172)] = { + [sym__initializer] = STATE(4608), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1185), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -339601,22 +343399,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2146)] = { - [sym_identifier] = ACTIONS(5194), + [STATE(2173)] = { + [sym_identifier] = ACTIONS(5204), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -339694,35 +343492,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1127), + [sym__parameter_separator] = ACTIONS(1204), }, - [STATE(2147)] = { + [STATE(2174)] = { + [sym_identifier] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5218), + }, + [STATE(2175)] = { + [sym_identifier] = ACTIONS(5220), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(5218), - [anon_sym_COLON] = ACTIONS(553), - [anon_sym_EQ] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -339753,7 +343641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -339777,22 +343665,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5218), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(1211), }, - [STATE(2148)] = { + [STATE(2176)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(553), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_EQ_GT] = ACTIONS(430), @@ -339876,107 +343764,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2149)] = { - [sym_identifier] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_Query] = ACTIONS(3018), - [anon_sym_query] = ACTIONS(3018), - [anon_sym_QUERY] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3016), - [aux_sym_unary_operator_token1] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3016), - [anon_sym_DASH_DASH] = ACTIONS(3016), - [anon_sym_DQUOTE] = ACTIONS(3016), - [anon_sym_SQUOTE] = ACTIONS(3016), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3018), - [aux_sym_number_token2] = ACTIONS(3016), - [anon_sym_This] = ACTIONS(3018), - [anon_sym_this] = ACTIONS(3018), - [anon_sym_THIS] = ACTIONS(3018), - [anon_sym_Super] = ACTIONS(3018), - [anon_sym_super] = ACTIONS(3018), - [anon_sym_SUPER] = ACTIONS(3018), - [anon_sym_True] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3018), - [anon_sym_TRUE] = ACTIONS(3018), - [anon_sym_False] = ACTIONS(3018), - [anon_sym_false] = ACTIONS(3018), - [anon_sym_FALSE] = ACTIONS(3018), - [anon_sym_Null] = ACTIONS(3018), - [anon_sym_null] = ACTIONS(3018), - [anon_sym_NULL] = ACTIONS(3018), - [anon_sym_Undefined] = ACTIONS(3018), - [anon_sym_undefined] = ACTIONS(3018), - [anon_sym_UNDEFINED] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3018), - [anon_sym_set] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3018), - [sym_hash_empty] = ACTIONS(3016), - [anon_sym_export] = ACTIONS(3018), - [anon_sym_QueryExecute] = ACTIONS(3018), - [anon_sym_queryexecute] = ACTIONS(3018), - [anon_sym_QUERYEXECUTE] = ACTIONS(3018), - [anon_sym_queryExecute] = ACTIONS(3018), - [anon_sym_BQUOTE] = ACTIONS(3016), - [anon_sym_Abstract] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_ABSTRACT] = ACTIONS(3018), - [anon_sym_Component] = ACTIONS(3018), - [anon_sym_component] = ACTIONS(3018), - [anon_sym_COMPONENT] = ACTIONS(3018), - [anon_sym_Debugger] = ACTIONS(3018), - [anon_sym_debugger] = ACTIONS(3018), - [anon_sym_DEBUGGER] = ACTIONS(3018), - [anon_sym_Final] = ACTIONS(3018), - [anon_sym_final] = ACTIONS(3018), - [anon_sym_FINAL] = ACTIONS(3018), - [anon_sym_Function] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_FUNCTION] = ACTIONS(3018), - [anon_sym_Include] = ACTIONS(3018), - [anon_sym_include] = ACTIONS(3018), - [anon_sym_INCLUDE] = ACTIONS(3018), - [anon_sym_New] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_NEW] = ACTIONS(3018), - [anon_sym_Package] = ACTIONS(3018), - [anon_sym_package] = ACTIONS(3018), - [anon_sym_PACKAGE] = ACTIONS(3018), - [anon_sym_Private] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_PRIVATE] = ACTIONS(3018), - [anon_sym_Public] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_PUBLIC] = ACTIONS(3018), - [anon_sym_Remote] = ACTIONS(3018), - [anon_sym_remote] = ACTIONS(3018), - [anon_sym_REMOTE] = ACTIONS(3018), - [anon_sym_Static] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_STATIC] = ACTIONS(3018), - [sym__java_block_open] = ACTIONS(3016), - [sym__static_type_prefix] = ACTIONS(3016), + [STATE(2177)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5222), + [anon_sym_DASH_GT] = ACTIONS(5222), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2150)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2178)] = { + [sym_identifier] = ACTIONS(5204), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -340054,19 +343942,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(1204), }, - [STATE(2151)] = { + [STATE(2179)] = { + [sym_identifier] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_Query] = ACTIONS(2976), + [anon_sym_query] = ACTIONS(2976), + [anon_sym_QUERY] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2974), + [aux_sym_unary_operator_token1] = ACTIONS(2976), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2974), + [anon_sym_SQUOTE] = ACTIONS(2974), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2976), + [aux_sym_number_token2] = ACTIONS(2974), + [anon_sym_This] = ACTIONS(2976), + [anon_sym_this] = ACTIONS(2976), + [anon_sym_THIS] = ACTIONS(2976), + [anon_sym_Super] = ACTIONS(2976), + [anon_sym_super] = ACTIONS(2976), + [anon_sym_SUPER] = ACTIONS(2976), + [anon_sym_True] = ACTIONS(2976), + [anon_sym_true] = ACTIONS(2976), + [anon_sym_TRUE] = ACTIONS(2976), + [anon_sym_False] = ACTIONS(2976), + [anon_sym_false] = ACTIONS(2976), + [anon_sym_FALSE] = ACTIONS(2976), + [anon_sym_Null] = ACTIONS(2976), + [anon_sym_null] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_Undefined] = ACTIONS(2976), + [anon_sym_undefined] = ACTIONS(2976), + [anon_sym_UNDEFINED] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(2976), + [anon_sym_set] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(2976), + [sym_hash_empty] = ACTIONS(2974), + [anon_sym_export] = ACTIONS(2976), + [anon_sym_QueryExecute] = ACTIONS(2976), + [anon_sym_queryexecute] = ACTIONS(2976), + [anon_sym_QUERYEXECUTE] = ACTIONS(2976), + [anon_sym_queryExecute] = ACTIONS(2976), + [anon_sym_BQUOTE] = ACTIONS(2974), + [anon_sym_Abstract] = ACTIONS(2976), + [anon_sym_abstract] = ACTIONS(2976), + [anon_sym_ABSTRACT] = ACTIONS(2976), + [anon_sym_Component] = ACTIONS(2976), + [anon_sym_component] = ACTIONS(2976), + [anon_sym_COMPONENT] = ACTIONS(2976), + [anon_sym_Debugger] = ACTIONS(2976), + [anon_sym_debugger] = ACTIONS(2976), + [anon_sym_DEBUGGER] = ACTIONS(2976), + [anon_sym_Final] = ACTIONS(2976), + [anon_sym_final] = ACTIONS(2976), + [anon_sym_FINAL] = ACTIONS(2976), + [anon_sym_Function] = ACTIONS(2976), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_FUNCTION] = ACTIONS(2976), + [anon_sym_Include] = ACTIONS(2976), + [anon_sym_include] = ACTIONS(2976), + [anon_sym_INCLUDE] = ACTIONS(2976), + [anon_sym_New] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_NEW] = ACTIONS(2976), + [anon_sym_Package] = ACTIONS(2976), + [anon_sym_package] = ACTIONS(2976), + [anon_sym_PACKAGE] = ACTIONS(2976), + [anon_sym_Private] = ACTIONS(2976), + [anon_sym_private] = ACTIONS(2976), + [anon_sym_PRIVATE] = ACTIONS(2976), + [anon_sym_Public] = ACTIONS(2976), + [anon_sym_public] = ACTIONS(2976), + [anon_sym_PUBLIC] = ACTIONS(2976), + [anon_sym_Remote] = ACTIONS(2976), + [anon_sym_remote] = ACTIONS(2976), + [anon_sym_REMOTE] = ACTIONS(2976), + [anon_sym_Static] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_STATIC] = ACTIONS(2976), + [sym__java_block_open] = ACTIONS(2974), + [sym__static_type_prefix] = ACTIONS(2974), + }, + [STATE(2180)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(5220), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -340141,38 +344119,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5220), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2152)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2181)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -340203,7 +344181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -340227,117 +344205,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(404), }, - [STATE(2153)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2182)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), }, - [STATE(2154)] = { + [STATE(2183)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -340416,17 +344394,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2155)] = { - [sym_identifier] = ACTIONS(5194), + [STATE(2184)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2185)] = { + [sym_identifier] = ACTIONS(5220), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1213), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -340504,19 +344572,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1127), + [sym__parameter_separator] = ACTIONS(1211), }, - [STATE(2156)] = { - [sym__initializer] = STATE(4551), + [STATE(2186)] = { + [sym_identifier] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_Query] = ACTIONS(2956), + [anon_sym_query] = ACTIONS(2956), + [anon_sym_QUERY] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_unary_operator_token1] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2956), + [aux_sym_number_token2] = ACTIONS(2954), + [anon_sym_This] = ACTIONS(2956), + [anon_sym_this] = ACTIONS(2956), + [anon_sym_THIS] = ACTIONS(2956), + [anon_sym_Super] = ACTIONS(2956), + [anon_sym_super] = ACTIONS(2956), + [anon_sym_SUPER] = ACTIONS(2956), + [anon_sym_True] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2956), + [anon_sym_TRUE] = ACTIONS(2956), + [anon_sym_False] = ACTIONS(2956), + [anon_sym_false] = ACTIONS(2956), + [anon_sym_FALSE] = ACTIONS(2956), + [anon_sym_Null] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_Undefined] = ACTIONS(2956), + [anon_sym_undefined] = ACTIONS(2956), + [anon_sym_UNDEFINED] = ACTIONS(2956), + [anon_sym_get] = ACTIONS(2956), + [anon_sym_set] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [sym_hash_empty] = ACTIONS(2954), + [anon_sym_export] = ACTIONS(2956), + [anon_sym_QueryExecute] = ACTIONS(2956), + [anon_sym_queryexecute] = ACTIONS(2956), + [anon_sym_QUERYEXECUTE] = ACTIONS(2956), + [anon_sym_queryExecute] = ACTIONS(2956), + [anon_sym_BQUOTE] = ACTIONS(2954), + [anon_sym_Abstract] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2956), + [anon_sym_ABSTRACT] = ACTIONS(2956), + [anon_sym_Component] = ACTIONS(2956), + [anon_sym_component] = ACTIONS(2956), + [anon_sym_COMPONENT] = ACTIONS(2956), + [anon_sym_Debugger] = ACTIONS(2956), + [anon_sym_debugger] = ACTIONS(2956), + [anon_sym_DEBUGGER] = ACTIONS(2956), + [anon_sym_Final] = ACTIONS(2956), + [anon_sym_final] = ACTIONS(2956), + [anon_sym_FINAL] = ACTIONS(2956), + [anon_sym_Function] = ACTIONS(2956), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_FUNCTION] = ACTIONS(2956), + [anon_sym_Include] = ACTIONS(2956), + [anon_sym_include] = ACTIONS(2956), + [anon_sym_INCLUDE] = ACTIONS(2956), + [anon_sym_New] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_NEW] = ACTIONS(2956), + [anon_sym_Package] = ACTIONS(2956), + [anon_sym_package] = ACTIONS(2956), + [anon_sym_PACKAGE] = ACTIONS(2956), + [anon_sym_Private] = ACTIONS(2956), + [anon_sym_private] = ACTIONS(2956), + [anon_sym_PRIVATE] = ACTIONS(2956), + [anon_sym_Public] = ACTIONS(2956), + [anon_sym_public] = ACTIONS(2956), + [anon_sym_PUBLIC] = ACTIONS(2956), + [anon_sym_Remote] = ACTIONS(2956), + [anon_sym_remote] = ACTIONS(2956), + [anon_sym_REMOTE] = ACTIONS(2956), + [anon_sym_Static] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_STATIC] = ACTIONS(2956), + [sym__java_block_open] = ACTIONS(2954), + [sym__static_type_prefix] = ACTIONS(2954), + }, + [STATE(2187)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1129), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -340591,113 +344749,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(1033), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2157)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5222), - [anon_sym_DASH_GT] = ACTIONS(5222), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2158)] = { + [STATE(2188)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -340776,107 +344844,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2159)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5226), - [anon_sym_DASH_GT] = ACTIONS(5226), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(509), - }, - [STATE(2160)] = { + [STATE(2189)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -340951,19 +344930,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2161)] = { + [STATE(2190)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(5224), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5226), + [anon_sym_DASH_GT] = ACTIONS(5226), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -341001,167 +344982,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(507), [anon_sym_PIPE_PIPE] = ACTIONS(507), [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2162)] = { - [sym_identifier] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(404), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2163)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2191)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5171), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1179), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -341192,7 +345081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -341216,107 +345105,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), - }, - [STATE(2164)] = { - [sym_identifier] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_Query] = ACTIONS(3062), - [anon_sym_query] = ACTIONS(3062), - [anon_sym_QUERY] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [aux_sym_unary_operator_token1] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3062), - [aux_sym_number_token2] = ACTIONS(3060), - [anon_sym_This] = ACTIONS(3062), - [anon_sym_this] = ACTIONS(3062), - [anon_sym_THIS] = ACTIONS(3062), - [anon_sym_Super] = ACTIONS(3062), - [anon_sym_super] = ACTIONS(3062), - [anon_sym_SUPER] = ACTIONS(3062), - [anon_sym_True] = ACTIONS(3062), - [anon_sym_true] = ACTIONS(3062), - [anon_sym_TRUE] = ACTIONS(3062), - [anon_sym_False] = ACTIONS(3062), - [anon_sym_false] = ACTIONS(3062), - [anon_sym_FALSE] = ACTIONS(3062), - [anon_sym_Null] = ACTIONS(3062), - [anon_sym_null] = ACTIONS(3062), - [anon_sym_NULL] = ACTIONS(3062), - [anon_sym_Undefined] = ACTIONS(3062), - [anon_sym_undefined] = ACTIONS(3062), - [anon_sym_UNDEFINED] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [sym_hash_empty] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_QueryExecute] = ACTIONS(3062), - [anon_sym_queryexecute] = ACTIONS(3062), - [anon_sym_QUERYEXECUTE] = ACTIONS(3062), - [anon_sym_queryExecute] = ACTIONS(3062), - [anon_sym_BQUOTE] = ACTIONS(3060), - [anon_sym_Abstract] = ACTIONS(3062), - [anon_sym_abstract] = ACTIONS(3062), - [anon_sym_ABSTRACT] = ACTIONS(3062), - [anon_sym_Component] = ACTIONS(3062), - [anon_sym_component] = ACTIONS(3062), - [anon_sym_COMPONENT] = ACTIONS(3062), - [anon_sym_Debugger] = ACTIONS(3062), - [anon_sym_debugger] = ACTIONS(3062), - [anon_sym_DEBUGGER] = ACTIONS(3062), - [anon_sym_Final] = ACTIONS(3062), - [anon_sym_final] = ACTIONS(3062), - [anon_sym_FINAL] = ACTIONS(3062), - [anon_sym_Function] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_FUNCTION] = ACTIONS(3062), - [anon_sym_Include] = ACTIONS(3062), - [anon_sym_include] = ACTIONS(3062), - [anon_sym_INCLUDE] = ACTIONS(3062), - [anon_sym_New] = ACTIONS(3062), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_NEW] = ACTIONS(3062), - [anon_sym_Package] = ACTIONS(3062), - [anon_sym_package] = ACTIONS(3062), - [anon_sym_PACKAGE] = ACTIONS(3062), - [anon_sym_Private] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_PRIVATE] = ACTIONS(3062), - [anon_sym_Public] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_PUBLIC] = ACTIONS(3062), - [anon_sym_Remote] = ACTIONS(3062), - [anon_sym_remote] = ACTIONS(3062), - [anon_sym_REMOTE] = ACTIONS(3062), - [anon_sym_Static] = ACTIONS(3062), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_STATIC] = ACTIONS(3062), - [sym__java_block_open] = ACTIONS(3060), - [sym__static_type_prefix] = ACTIONS(3060), }, - [STATE(2165)] = { + [STATE(2192)] = { [sym_identifier] = ACTIONS(5228), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), @@ -341325,8 +345123,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(5230), [anon_sym_EQ] = ACTIONS(5232), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -341406,101 +345204,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym__parameter_separator] = ACTIONS(5230), }, - [STATE(2166)] = { - [sym_identifier] = ACTIONS(5216), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1383), - }, - [STATE(2167)] = { + [STATE(2193)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_LPAREN] = ACTIONS(5171), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(553), [anon_sym_EQ] = ACTIONS(555), @@ -341586,287 +345294,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2168)] = { - [sym_identifier] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_Query] = ACTIONS(3070), - [anon_sym_query] = ACTIONS(3070), - [anon_sym_QUERY] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_unary_operator_token1] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3070), - [aux_sym_number_token2] = ACTIONS(3068), - [anon_sym_This] = ACTIONS(3070), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_THIS] = ACTIONS(3070), - [anon_sym_Super] = ACTIONS(3070), - [anon_sym_super] = ACTIONS(3070), - [anon_sym_SUPER] = ACTIONS(3070), - [anon_sym_True] = ACTIONS(3070), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_TRUE] = ACTIONS(3070), - [anon_sym_False] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_FALSE] = ACTIONS(3070), - [anon_sym_Null] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_Undefined] = ACTIONS(3070), - [anon_sym_undefined] = ACTIONS(3070), - [anon_sym_UNDEFINED] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [sym_hash_empty] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_QueryExecute] = ACTIONS(3070), - [anon_sym_queryexecute] = ACTIONS(3070), - [anon_sym_QUERYEXECUTE] = ACTIONS(3070), - [anon_sym_queryExecute] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_Abstract] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_ABSTRACT] = ACTIONS(3070), - [anon_sym_Component] = ACTIONS(3070), - [anon_sym_component] = ACTIONS(3070), - [anon_sym_COMPONENT] = ACTIONS(3070), - [anon_sym_Debugger] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_DEBUGGER] = ACTIONS(3070), - [anon_sym_Final] = ACTIONS(3070), - [anon_sym_final] = ACTIONS(3070), - [anon_sym_FINAL] = ACTIONS(3070), - [anon_sym_Function] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_FUNCTION] = ACTIONS(3070), - [anon_sym_Include] = ACTIONS(3070), - [anon_sym_include] = ACTIONS(3070), - [anon_sym_INCLUDE] = ACTIONS(3070), - [anon_sym_New] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_NEW] = ACTIONS(3070), - [anon_sym_Package] = ACTIONS(3070), - [anon_sym_package] = ACTIONS(3070), - [anon_sym_PACKAGE] = ACTIONS(3070), - [anon_sym_Private] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_PRIVATE] = ACTIONS(3070), - [anon_sym_Public] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_PUBLIC] = ACTIONS(3070), - [anon_sym_Remote] = ACTIONS(3070), - [anon_sym_remote] = ACTIONS(3070), - [anon_sym_REMOTE] = ACTIONS(3070), - [anon_sym_Static] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_STATIC] = ACTIONS(3070), - [sym__java_block_open] = ACTIONS(3068), - [sym__static_type_prefix] = ACTIONS(3068), - }, - [STATE(2169)] = { - [sym_identifier] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_Query] = ACTIONS(3070), - [anon_sym_query] = ACTIONS(3070), - [anon_sym_QUERY] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [aux_sym_unary_operator_token1] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3070), - [aux_sym_number_token2] = ACTIONS(3068), - [anon_sym_This] = ACTIONS(3070), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_THIS] = ACTIONS(3070), - [anon_sym_Super] = ACTIONS(3070), - [anon_sym_super] = ACTIONS(3070), - [anon_sym_SUPER] = ACTIONS(3070), - [anon_sym_True] = ACTIONS(3070), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_TRUE] = ACTIONS(3070), - [anon_sym_False] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_FALSE] = ACTIONS(3070), - [anon_sym_Null] = ACTIONS(3070), - [anon_sym_null] = ACTIONS(3070), - [anon_sym_NULL] = ACTIONS(3070), - [anon_sym_Undefined] = ACTIONS(3070), - [anon_sym_undefined] = ACTIONS(3070), - [anon_sym_UNDEFINED] = ACTIONS(3070), - [anon_sym_get] = ACTIONS(3070), - [anon_sym_set] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [sym_hash_empty] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3070), - [anon_sym_QueryExecute] = ACTIONS(3070), - [anon_sym_queryexecute] = ACTIONS(3070), - [anon_sym_QUERYEXECUTE] = ACTIONS(3070), - [anon_sym_queryExecute] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_Abstract] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_ABSTRACT] = ACTIONS(3070), - [anon_sym_Component] = ACTIONS(3070), - [anon_sym_component] = ACTIONS(3070), - [anon_sym_COMPONENT] = ACTIONS(3070), - [anon_sym_Debugger] = ACTIONS(3070), - [anon_sym_debugger] = ACTIONS(3070), - [anon_sym_DEBUGGER] = ACTIONS(3070), - [anon_sym_Final] = ACTIONS(3070), - [anon_sym_final] = ACTIONS(3070), - [anon_sym_FINAL] = ACTIONS(3070), - [anon_sym_Function] = ACTIONS(3070), - [anon_sym_function] = ACTIONS(3070), - [anon_sym_FUNCTION] = ACTIONS(3070), - [anon_sym_Include] = ACTIONS(3070), - [anon_sym_include] = ACTIONS(3070), - [anon_sym_INCLUDE] = ACTIONS(3070), - [anon_sym_New] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_NEW] = ACTIONS(3070), - [anon_sym_Package] = ACTIONS(3070), - [anon_sym_package] = ACTIONS(3070), - [anon_sym_PACKAGE] = ACTIONS(3070), - [anon_sym_Private] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_PRIVATE] = ACTIONS(3070), - [anon_sym_Public] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_PUBLIC] = ACTIONS(3070), - [anon_sym_Remote] = ACTIONS(3070), - [anon_sym_remote] = ACTIONS(3070), - [anon_sym_REMOTE] = ACTIONS(3070), - [anon_sym_Static] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_STATIC] = ACTIONS(3070), - [sym__java_block_open] = ACTIONS(3068), - [sym__static_type_prefix] = ACTIONS(3068), - }, - [STATE(2170)] = { - [sym_identifier] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_Query] = ACTIONS(2938), - [anon_sym_query] = ACTIONS(2938), - [anon_sym_QUERY] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_unary_operator_token1] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2938), - [aux_sym_number_token2] = ACTIONS(2936), - [anon_sym_This] = ACTIONS(2938), - [anon_sym_this] = ACTIONS(2938), - [anon_sym_THIS] = ACTIONS(2938), - [anon_sym_Super] = ACTIONS(2938), - [anon_sym_super] = ACTIONS(2938), - [anon_sym_SUPER] = ACTIONS(2938), - [anon_sym_True] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_TRUE] = ACTIONS(2938), - [anon_sym_False] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [anon_sym_FALSE] = ACTIONS(2938), - [anon_sym_Null] = ACTIONS(2938), - [anon_sym_null] = ACTIONS(2938), - [anon_sym_NULL] = ACTIONS(2938), - [anon_sym_Undefined] = ACTIONS(2938), - [anon_sym_undefined] = ACTIONS(2938), - [anon_sym_UNDEFINED] = ACTIONS(2938), - [anon_sym_get] = ACTIONS(2938), - [anon_sym_set] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [sym_hash_empty] = ACTIONS(2936), - [anon_sym_export] = ACTIONS(2938), - [anon_sym_QueryExecute] = ACTIONS(2938), - [anon_sym_queryexecute] = ACTIONS(2938), - [anon_sym_QUERYEXECUTE] = ACTIONS(2938), - [anon_sym_queryExecute] = ACTIONS(2938), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_Abstract] = ACTIONS(2938), - [anon_sym_abstract] = ACTIONS(2938), - [anon_sym_ABSTRACT] = ACTIONS(2938), - [anon_sym_Component] = ACTIONS(2938), - [anon_sym_component] = ACTIONS(2938), - [anon_sym_COMPONENT] = ACTIONS(2938), - [anon_sym_Debugger] = ACTIONS(2938), - [anon_sym_debugger] = ACTIONS(2938), - [anon_sym_DEBUGGER] = ACTIONS(2938), - [anon_sym_Final] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_FINAL] = ACTIONS(2938), - [anon_sym_Function] = ACTIONS(2938), - [anon_sym_function] = ACTIONS(2938), - [anon_sym_FUNCTION] = ACTIONS(2938), - [anon_sym_Include] = ACTIONS(2938), - [anon_sym_include] = ACTIONS(2938), - [anon_sym_INCLUDE] = ACTIONS(2938), - [anon_sym_New] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(2938), - [anon_sym_NEW] = ACTIONS(2938), - [anon_sym_Package] = ACTIONS(2938), - [anon_sym_package] = ACTIONS(2938), - [anon_sym_PACKAGE] = ACTIONS(2938), - [anon_sym_Private] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_PRIVATE] = ACTIONS(2938), - [anon_sym_Public] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_PUBLIC] = ACTIONS(2938), - [anon_sym_Remote] = ACTIONS(2938), - [anon_sym_remote] = ACTIONS(2938), - [anon_sym_REMOTE] = ACTIONS(2938), - [anon_sym_Static] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_STATIC] = ACTIONS(2938), - [sym__java_block_open] = ACTIONS(2936), - [sym__static_type_prefix] = ACTIONS(2936), - }, - [STATE(2171)] = { - [sym_identifier] = ACTIONS(5194), + [STATE(2194)] = { + [sym_identifier] = ACTIONS(5204), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_EQ] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -341944,19 +345382,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1127), + [sym__parameter_separator] = ACTIONS(1204), }, - [STATE(2172)] = { + [STATE(2195)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_RBRACE] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1116), + [anon_sym_EQ] = ACTIONS(1193), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_DASH_GT] = ACTIONS(1181), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -342036,13 +345474,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2173)] = { + [STATE(2196)] = { + [sym_identifier] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_Query] = ACTIONS(2916), + [anon_sym_query] = ACTIONS(2916), + [anon_sym_QUERY] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [aux_sym_unary_operator_token1] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2916), + [aux_sym_number_token2] = ACTIONS(2914), + [anon_sym_This] = ACTIONS(2916), + [anon_sym_this] = ACTIONS(2916), + [anon_sym_THIS] = ACTIONS(2916), + [anon_sym_Super] = ACTIONS(2916), + [anon_sym_super] = ACTIONS(2916), + [anon_sym_SUPER] = ACTIONS(2916), + [anon_sym_True] = ACTIONS(2916), + [anon_sym_true] = ACTIONS(2916), + [anon_sym_TRUE] = ACTIONS(2916), + [anon_sym_False] = ACTIONS(2916), + [anon_sym_false] = ACTIONS(2916), + [anon_sym_FALSE] = ACTIONS(2916), + [anon_sym_Null] = ACTIONS(2916), + [anon_sym_null] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_Undefined] = ACTIONS(2916), + [anon_sym_undefined] = ACTIONS(2916), + [anon_sym_UNDEFINED] = ACTIONS(2916), + [anon_sym_get] = ACTIONS(2916), + [anon_sym_set] = ACTIONS(2916), + [anon_sym_POUND] = ACTIONS(2916), + [sym_hash_empty] = ACTIONS(2914), + [anon_sym_export] = ACTIONS(2916), + [anon_sym_QueryExecute] = ACTIONS(2916), + [anon_sym_queryexecute] = ACTIONS(2916), + [anon_sym_QUERYEXECUTE] = ACTIONS(2916), + [anon_sym_queryExecute] = ACTIONS(2916), + [anon_sym_BQUOTE] = ACTIONS(2914), + [anon_sym_Abstract] = ACTIONS(2916), + [anon_sym_abstract] = ACTIONS(2916), + [anon_sym_ABSTRACT] = ACTIONS(2916), + [anon_sym_Component] = ACTIONS(2916), + [anon_sym_component] = ACTIONS(2916), + [anon_sym_COMPONENT] = ACTIONS(2916), + [anon_sym_Debugger] = ACTIONS(2916), + [anon_sym_debugger] = ACTIONS(2916), + [anon_sym_DEBUGGER] = ACTIONS(2916), + [anon_sym_Final] = ACTIONS(2916), + [anon_sym_final] = ACTIONS(2916), + [anon_sym_FINAL] = ACTIONS(2916), + [anon_sym_Function] = ACTIONS(2916), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_FUNCTION] = ACTIONS(2916), + [anon_sym_Include] = ACTIONS(2916), + [anon_sym_include] = ACTIONS(2916), + [anon_sym_INCLUDE] = ACTIONS(2916), + [anon_sym_New] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_NEW] = ACTIONS(2916), + [anon_sym_Package] = ACTIONS(2916), + [anon_sym_package] = ACTIONS(2916), + [anon_sym_PACKAGE] = ACTIONS(2916), + [anon_sym_Private] = ACTIONS(2916), + [anon_sym_private] = ACTIONS(2916), + [anon_sym_PRIVATE] = ACTIONS(2916), + [anon_sym_Public] = ACTIONS(2916), + [anon_sym_public] = ACTIONS(2916), + [anon_sym_PUBLIC] = ACTIONS(2916), + [anon_sym_Remote] = ACTIONS(2916), + [anon_sym_remote] = ACTIONS(2916), + [anon_sym_REMOTE] = ACTIONS(2916), + [anon_sym_Static] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_STATIC] = ACTIONS(2916), + [sym__java_block_open] = ACTIONS(2914), + [sym__static_type_prefix] = ACTIONS(2914), + }, + [STATE(2197)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2198)] = { + [sym_identifier] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_Query] = ACTIONS(2956), + [anon_sym_query] = ACTIONS(2956), + [anon_sym_QUERY] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [aux_sym_unary_operator_token1] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2956), + [aux_sym_number_token2] = ACTIONS(2954), + [anon_sym_This] = ACTIONS(2956), + [anon_sym_this] = ACTIONS(2956), + [anon_sym_THIS] = ACTIONS(2956), + [anon_sym_Super] = ACTIONS(2956), + [anon_sym_super] = ACTIONS(2956), + [anon_sym_SUPER] = ACTIONS(2956), + [anon_sym_True] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2956), + [anon_sym_TRUE] = ACTIONS(2956), + [anon_sym_False] = ACTIONS(2956), + [anon_sym_false] = ACTIONS(2956), + [anon_sym_FALSE] = ACTIONS(2956), + [anon_sym_Null] = ACTIONS(2956), + [anon_sym_null] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_Undefined] = ACTIONS(2956), + [anon_sym_undefined] = ACTIONS(2956), + [anon_sym_UNDEFINED] = ACTIONS(2956), + [anon_sym_get] = ACTIONS(2956), + [anon_sym_set] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [sym_hash_empty] = ACTIONS(2954), + [anon_sym_export] = ACTIONS(2956), + [anon_sym_QueryExecute] = ACTIONS(2956), + [anon_sym_queryexecute] = ACTIONS(2956), + [anon_sym_QUERYEXECUTE] = ACTIONS(2956), + [anon_sym_queryExecute] = ACTIONS(2956), + [anon_sym_BQUOTE] = ACTIONS(2954), + [anon_sym_Abstract] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2956), + [anon_sym_ABSTRACT] = ACTIONS(2956), + [anon_sym_Component] = ACTIONS(2956), + [anon_sym_component] = ACTIONS(2956), + [anon_sym_COMPONENT] = ACTIONS(2956), + [anon_sym_Debugger] = ACTIONS(2956), + [anon_sym_debugger] = ACTIONS(2956), + [anon_sym_DEBUGGER] = ACTIONS(2956), + [anon_sym_Final] = ACTIONS(2956), + [anon_sym_final] = ACTIONS(2956), + [anon_sym_FINAL] = ACTIONS(2956), + [anon_sym_Function] = ACTIONS(2956), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_FUNCTION] = ACTIONS(2956), + [anon_sym_Include] = ACTIONS(2956), + [anon_sym_include] = ACTIONS(2956), + [anon_sym_INCLUDE] = ACTIONS(2956), + [anon_sym_New] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_NEW] = ACTIONS(2956), + [anon_sym_Package] = ACTIONS(2956), + [anon_sym_package] = ACTIONS(2956), + [anon_sym_PACKAGE] = ACTIONS(2956), + [anon_sym_Private] = ACTIONS(2956), + [anon_sym_private] = ACTIONS(2956), + [anon_sym_PRIVATE] = ACTIONS(2956), + [anon_sym_Public] = ACTIONS(2956), + [anon_sym_public] = ACTIONS(2956), + [anon_sym_PUBLIC] = ACTIONS(2956), + [anon_sym_Remote] = ACTIONS(2956), + [anon_sym_remote] = ACTIONS(2956), + [anon_sym_REMOTE] = ACTIONS(2956), + [anon_sym_Static] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_STATIC] = ACTIONS(2956), + [sym__java_block_open] = ACTIONS(2954), + [sym__static_type_prefix] = ACTIONS(2954), + }, + [STATE(2199)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(5235), + [anon_sym_COLON] = ACTIONS(565), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_EQ_GT] = ACTIONS(430), @@ -342121,23 +345829,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(5118), + [sym__automatic_semicolon] = ACTIONS(5235), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2174)] = { + [STATE(2200)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2201)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -342212,37 +346009,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2175)] = { + [STATE(2202)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5222), - [anon_sym_DASH_GT] = ACTIONS(5222), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5237), + [anon_sym_DASH_GT] = ACTIONS(5237), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -342273,7 +346070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -342297,26 +346094,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2176)] = { - [sym_identifier] = ACTIONS(5216), + [STATE(2203)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -342391,108 +346188,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1383), - }, - [STATE(2177)] = { - [sym__initializer] = STATE(4554), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(5120), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2178)] = { + [STATE(2204)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(557), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_EQ_GT] = ACTIONS(430), @@ -342576,33 +346284,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2179)] = { + [STATE(2205)] = { + [sym_identifier] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_Query] = ACTIONS(2700), + [anon_sym_query] = ACTIONS(2700), + [anon_sym_QUERY] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [aux_sym_unary_operator_token1] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2700), + [aux_sym_number_token2] = ACTIONS(2698), + [anon_sym_This] = ACTIONS(2700), + [anon_sym_this] = ACTIONS(2700), + [anon_sym_THIS] = ACTIONS(2700), + [anon_sym_Super] = ACTIONS(2700), + [anon_sym_super] = ACTIONS(2700), + [anon_sym_SUPER] = ACTIONS(2700), + [anon_sym_True] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_TRUE] = ACTIONS(2700), + [anon_sym_False] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_FALSE] = ACTIONS(2700), + [anon_sym_Null] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_Undefined] = ACTIONS(2700), + [anon_sym_undefined] = ACTIONS(2700), + [anon_sym_UNDEFINED] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [sym_hash_empty] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_QueryExecute] = ACTIONS(2700), + [anon_sym_queryexecute] = ACTIONS(2700), + [anon_sym_QUERYEXECUTE] = ACTIONS(2700), + [anon_sym_queryExecute] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(2698), + [anon_sym_Abstract] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_ABSTRACT] = ACTIONS(2700), + [anon_sym_Component] = ACTIONS(2700), + [anon_sym_component] = ACTIONS(2700), + [anon_sym_COMPONENT] = ACTIONS(2700), + [anon_sym_Debugger] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_DEBUGGER] = ACTIONS(2700), + [anon_sym_Final] = ACTIONS(2700), + [anon_sym_final] = ACTIONS(2700), + [anon_sym_FINAL] = ACTIONS(2700), + [anon_sym_Function] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_FUNCTION] = ACTIONS(2700), + [anon_sym_Include] = ACTIONS(2700), + [anon_sym_include] = ACTIONS(2700), + [anon_sym_INCLUDE] = ACTIONS(2700), + [anon_sym_New] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_NEW] = ACTIONS(2700), + [anon_sym_Package] = ACTIONS(2700), + [anon_sym_package] = ACTIONS(2700), + [anon_sym_PACKAGE] = ACTIONS(2700), + [anon_sym_Private] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_PRIVATE] = ACTIONS(2700), + [anon_sym_Public] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_PUBLIC] = ACTIONS(2700), + [anon_sym_Remote] = ACTIONS(2700), + [anon_sym_remote] = ACTIONS(2700), + [anon_sym_REMOTE] = ACTIONS(2700), + [anon_sym_Static] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_STATIC] = ACTIONS(2700), + [sym__java_block_open] = ACTIONS(2698), + [sym__static_type_prefix] = ACTIONS(2698), + }, + [STATE(2206)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1238), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -342633,7 +346430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -342657,42 +346454,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2180)] = { + [STATE(2207)] = { + [sym_identifier] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_Query] = ACTIONS(2700), + [anon_sym_query] = ACTIONS(2700), + [anon_sym_QUERY] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [aux_sym_unary_operator_token1] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2700), + [aux_sym_number_token2] = ACTIONS(2698), + [anon_sym_This] = ACTIONS(2700), + [anon_sym_this] = ACTIONS(2700), + [anon_sym_THIS] = ACTIONS(2700), + [anon_sym_Super] = ACTIONS(2700), + [anon_sym_super] = ACTIONS(2700), + [anon_sym_SUPER] = ACTIONS(2700), + [anon_sym_True] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_TRUE] = ACTIONS(2700), + [anon_sym_False] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_FALSE] = ACTIONS(2700), + [anon_sym_Null] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2700), + [anon_sym_NULL] = ACTIONS(2700), + [anon_sym_Undefined] = ACTIONS(2700), + [anon_sym_undefined] = ACTIONS(2700), + [anon_sym_UNDEFINED] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [sym_hash_empty] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_QueryExecute] = ACTIONS(2700), + [anon_sym_queryexecute] = ACTIONS(2700), + [anon_sym_QUERYEXECUTE] = ACTIONS(2700), + [anon_sym_queryExecute] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(2698), + [anon_sym_Abstract] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_ABSTRACT] = ACTIONS(2700), + [anon_sym_Component] = ACTIONS(2700), + [anon_sym_component] = ACTIONS(2700), + [anon_sym_COMPONENT] = ACTIONS(2700), + [anon_sym_Debugger] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_DEBUGGER] = ACTIONS(2700), + [anon_sym_Final] = ACTIONS(2700), + [anon_sym_final] = ACTIONS(2700), + [anon_sym_FINAL] = ACTIONS(2700), + [anon_sym_Function] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_FUNCTION] = ACTIONS(2700), + [anon_sym_Include] = ACTIONS(2700), + [anon_sym_include] = ACTIONS(2700), + [anon_sym_INCLUDE] = ACTIONS(2700), + [anon_sym_New] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_NEW] = ACTIONS(2700), + [anon_sym_Package] = ACTIONS(2700), + [anon_sym_package] = ACTIONS(2700), + [anon_sym_PACKAGE] = ACTIONS(2700), + [anon_sym_Private] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_PRIVATE] = ACTIONS(2700), + [anon_sym_Public] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_PUBLIC] = ACTIONS(2700), + [anon_sym_Remote] = ACTIONS(2700), + [anon_sym_remote] = ACTIONS(2700), + [anon_sym_REMOTE] = ACTIONS(2700), + [anon_sym_Static] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_STATIC] = ACTIONS(2700), + [sym__java_block_open] = ACTIONS(2698), + [sym__static_type_prefix] = ACTIONS(2698), + }, + [STATE(2208)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5237), + [anon_sym_DASH_GT] = ACTIONS(5237), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + }, + [STATE(2209)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5241), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_EQ] = ACTIONS(1238), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -342723,7 +346700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -342747,42 +346724,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2181)] = { + [STATE(2210)] = { + [sym_identifier] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_Query] = ACTIONS(2960), + [anon_sym_query] = ACTIONS(2960), + [anon_sym_QUERY] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [aux_sym_unary_operator_token1] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2958), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2960), + [aux_sym_number_token2] = ACTIONS(2958), + [anon_sym_This] = ACTIONS(2960), + [anon_sym_this] = ACTIONS(2960), + [anon_sym_THIS] = ACTIONS(2960), + [anon_sym_Super] = ACTIONS(2960), + [anon_sym_super] = ACTIONS(2960), + [anon_sym_SUPER] = ACTIONS(2960), + [anon_sym_True] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_TRUE] = ACTIONS(2960), + [anon_sym_False] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [anon_sym_FALSE] = ACTIONS(2960), + [anon_sym_Null] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2960), + [anon_sym_NULL] = ACTIONS(2960), + [anon_sym_Undefined] = ACTIONS(2960), + [anon_sym_undefined] = ACTIONS(2960), + [anon_sym_UNDEFINED] = ACTIONS(2960), + [anon_sym_get] = ACTIONS(2960), + [anon_sym_set] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [sym_hash_empty] = ACTIONS(2958), + [anon_sym_export] = ACTIONS(2960), + [anon_sym_QueryExecute] = ACTIONS(2960), + [anon_sym_queryexecute] = ACTIONS(2960), + [anon_sym_QUERYEXECUTE] = ACTIONS(2960), + [anon_sym_queryExecute] = ACTIONS(2960), + [anon_sym_BQUOTE] = ACTIONS(2958), + [anon_sym_Abstract] = ACTIONS(2960), + [anon_sym_abstract] = ACTIONS(2960), + [anon_sym_ABSTRACT] = ACTIONS(2960), + [anon_sym_Component] = ACTIONS(2960), + [anon_sym_component] = ACTIONS(2960), + [anon_sym_COMPONENT] = ACTIONS(2960), + [anon_sym_Debugger] = ACTIONS(2960), + [anon_sym_debugger] = ACTIONS(2960), + [anon_sym_DEBUGGER] = ACTIONS(2960), + [anon_sym_Final] = ACTIONS(2960), + [anon_sym_final] = ACTIONS(2960), + [anon_sym_FINAL] = ACTIONS(2960), + [anon_sym_Function] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2960), + [anon_sym_FUNCTION] = ACTIONS(2960), + [anon_sym_Include] = ACTIONS(2960), + [anon_sym_include] = ACTIONS(2960), + [anon_sym_INCLUDE] = ACTIONS(2960), + [anon_sym_New] = ACTIONS(2960), + [anon_sym_new] = ACTIONS(2960), + [anon_sym_NEW] = ACTIONS(2960), + [anon_sym_Package] = ACTIONS(2960), + [anon_sym_package] = ACTIONS(2960), + [anon_sym_PACKAGE] = ACTIONS(2960), + [anon_sym_Private] = ACTIONS(2960), + [anon_sym_private] = ACTIONS(2960), + [anon_sym_PRIVATE] = ACTIONS(2960), + [anon_sym_Public] = ACTIONS(2960), + [anon_sym_public] = ACTIONS(2960), + [anon_sym_PUBLIC] = ACTIONS(2960), + [anon_sym_Remote] = ACTIONS(2960), + [anon_sym_remote] = ACTIONS(2960), + [anon_sym_REMOTE] = ACTIONS(2960), + [anon_sym_Static] = ACTIONS(2960), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_STATIC] = ACTIONS(2960), + [sym__java_block_open] = ACTIONS(2958), + [sym__static_type_prefix] = ACTIONS(2958), + }, + [STATE(2211)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1225), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -342813,7 +346881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -342837,26 +346905,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(404), }, - [STATE(2182)] = { + [STATE(2212)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(5244), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5222), - [anon_sym_DASH_GT] = ACTIONS(5222), + [anon_sym_EQ_GT] = ACTIONS(5226), + [anon_sym_DASH_GT] = ACTIONS(5226), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -342936,16 +347004,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2183)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2213)] = { + [sym_identifier] = ACTIONS(5220), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -343020,23 +347089,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(1211), }, - [STATE(2184)] = { + [STATE(2214)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5222), + [anon_sym_DASH_GT] = ACTIONS(5222), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(509), + }, + [STATE(2215)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -343111,128 +347269,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(5248), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2185)] = { - [sym_identifier] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_Query] = ACTIONS(3042), - [anon_sym_query] = ACTIONS(3042), - [anon_sym_QUERY] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3040), - [anon_sym_TILDE] = ACTIONS(3040), - [aux_sym_unary_operator_token1] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3040), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(3042), - [aux_sym_number_token2] = ACTIONS(3040), - [anon_sym_This] = ACTIONS(3042), - [anon_sym_this] = ACTIONS(3042), - [anon_sym_THIS] = ACTIONS(3042), - [anon_sym_Super] = ACTIONS(3042), - [anon_sym_super] = ACTIONS(3042), - [anon_sym_SUPER] = ACTIONS(3042), - [anon_sym_True] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3042), - [anon_sym_TRUE] = ACTIONS(3042), - [anon_sym_False] = ACTIONS(3042), - [anon_sym_false] = ACTIONS(3042), - [anon_sym_FALSE] = ACTIONS(3042), - [anon_sym_Null] = ACTIONS(3042), - [anon_sym_null] = ACTIONS(3042), - [anon_sym_NULL] = ACTIONS(3042), - [anon_sym_Undefined] = ACTIONS(3042), - [anon_sym_undefined] = ACTIONS(3042), - [anon_sym_UNDEFINED] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(3042), - [anon_sym_set] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [sym_hash_empty] = ACTIONS(3040), - [anon_sym_export] = ACTIONS(3042), - [anon_sym_QueryExecute] = ACTIONS(3042), - [anon_sym_queryexecute] = ACTIONS(3042), - [anon_sym_QUERYEXECUTE] = ACTIONS(3042), - [anon_sym_queryExecute] = ACTIONS(3042), - [anon_sym_BQUOTE] = ACTIONS(3040), - [anon_sym_Abstract] = ACTIONS(3042), - [anon_sym_abstract] = ACTIONS(3042), - [anon_sym_ABSTRACT] = ACTIONS(3042), - [anon_sym_Component] = ACTIONS(3042), - [anon_sym_component] = ACTIONS(3042), - [anon_sym_COMPONENT] = ACTIONS(3042), - [anon_sym_Debugger] = ACTIONS(3042), - [anon_sym_debugger] = ACTIONS(3042), - [anon_sym_DEBUGGER] = ACTIONS(3042), - [anon_sym_Final] = ACTIONS(3042), - [anon_sym_final] = ACTIONS(3042), - [anon_sym_FINAL] = ACTIONS(3042), - [anon_sym_Function] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3042), - [anon_sym_FUNCTION] = ACTIONS(3042), - [anon_sym_Include] = ACTIONS(3042), - [anon_sym_include] = ACTIONS(3042), - [anon_sym_INCLUDE] = ACTIONS(3042), - [anon_sym_New] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3042), - [anon_sym_NEW] = ACTIONS(3042), - [anon_sym_Package] = ACTIONS(3042), - [anon_sym_package] = ACTIONS(3042), - [anon_sym_PACKAGE] = ACTIONS(3042), - [anon_sym_Private] = ACTIONS(3042), - [anon_sym_private] = ACTIONS(3042), - [anon_sym_PRIVATE] = ACTIONS(3042), - [anon_sym_Public] = ACTIONS(3042), - [anon_sym_public] = ACTIONS(3042), - [anon_sym_PUBLIC] = ACTIONS(3042), - [anon_sym_Remote] = ACTIONS(3042), - [anon_sym_remote] = ACTIONS(3042), - [anon_sym_REMOTE] = ACTIONS(3042), - [anon_sym_Static] = ACTIONS(3042), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_STATIC] = ACTIONS(3042), - [sym__java_block_open] = ACTIONS(3040), - [sym__static_type_prefix] = ACTIONS(3040), - }, - [STATE(2186)] = { - [sym_identifier] = ACTIONS(5209), + [STATE(2216)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_EQ_GT] = ACTIONS(5226), + [anon_sym_DASH_GT] = ACTIONS(5226), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -343263,7 +347331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -343287,26 +347355,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5214), }, - [STATE(2187)] = { - [sym_identifier] = ACTIONS(5216), + [STATE(2217)] = { + [sym_identifier] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + [sym__parameter_separator] = ACTIONS(404), + }, + [STATE(2218)] = { + [sym_identifier] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_Query] = ACTIONS(2944), + [anon_sym_query] = ACTIONS(2944), + [anon_sym_QUERY] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [aux_sym_unary_operator_token1] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2944), + [aux_sym_number_token2] = ACTIONS(2942), + [anon_sym_This] = ACTIONS(2944), + [anon_sym_this] = ACTIONS(2944), + [anon_sym_THIS] = ACTIONS(2944), + [anon_sym_Super] = ACTIONS(2944), + [anon_sym_super] = ACTIONS(2944), + [anon_sym_SUPER] = ACTIONS(2944), + [anon_sym_True] = ACTIONS(2944), + [anon_sym_true] = ACTIONS(2944), + [anon_sym_TRUE] = ACTIONS(2944), + [anon_sym_False] = ACTIONS(2944), + [anon_sym_false] = ACTIONS(2944), + [anon_sym_FALSE] = ACTIONS(2944), + [anon_sym_Null] = ACTIONS(2944), + [anon_sym_null] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_Undefined] = ACTIONS(2944), + [anon_sym_undefined] = ACTIONS(2944), + [anon_sym_UNDEFINED] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(2944), + [sym_hash_empty] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_QueryExecute] = ACTIONS(2944), + [anon_sym_queryexecute] = ACTIONS(2944), + [anon_sym_QUERYEXECUTE] = ACTIONS(2944), + [anon_sym_queryExecute] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2942), + [anon_sym_Abstract] = ACTIONS(2944), + [anon_sym_abstract] = ACTIONS(2944), + [anon_sym_ABSTRACT] = ACTIONS(2944), + [anon_sym_Component] = ACTIONS(2944), + [anon_sym_component] = ACTIONS(2944), + [anon_sym_COMPONENT] = ACTIONS(2944), + [anon_sym_Debugger] = ACTIONS(2944), + [anon_sym_debugger] = ACTIONS(2944), + [anon_sym_DEBUGGER] = ACTIONS(2944), + [anon_sym_Final] = ACTIONS(2944), + [anon_sym_final] = ACTIONS(2944), + [anon_sym_FINAL] = ACTIONS(2944), + [anon_sym_Function] = ACTIONS(2944), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_FUNCTION] = ACTIONS(2944), + [anon_sym_Include] = ACTIONS(2944), + [anon_sym_include] = ACTIONS(2944), + [anon_sym_INCLUDE] = ACTIONS(2944), + [anon_sym_New] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_NEW] = ACTIONS(2944), + [anon_sym_Package] = ACTIONS(2944), + [anon_sym_package] = ACTIONS(2944), + [anon_sym_PACKAGE] = ACTIONS(2944), + [anon_sym_Private] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_PRIVATE] = ACTIONS(2944), + [anon_sym_Public] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_PUBLIC] = ACTIONS(2944), + [anon_sym_Remote] = ACTIONS(2944), + [anon_sym_remote] = ACTIONS(2944), + [anon_sym_REMOTE] = ACTIONS(2944), + [anon_sym_Static] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_STATIC] = ACTIONS(2944), + [sym__java_block_open] = ACTIONS(2942), + [sym__static_type_prefix] = ACTIONS(2942), + }, + [STATE(2219)] = { + [sym_identifier] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_Query] = ACTIONS(2988), + [anon_sym_query] = ACTIONS(2988), + [anon_sym_QUERY] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_unary_operator_token1] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2988), + [aux_sym_number_token2] = ACTIONS(2986), + [anon_sym_This] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_THIS] = ACTIONS(2988), + [anon_sym_Super] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_SUPER] = ACTIONS(2988), + [anon_sym_True] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_TRUE] = ACTIONS(2988), + [anon_sym_False] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_FALSE] = ACTIONS(2988), + [anon_sym_Null] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_Undefined] = ACTIONS(2988), + [anon_sym_undefined] = ACTIONS(2988), + [anon_sym_UNDEFINED] = ACTIONS(2988), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [sym_hash_empty] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(2988), + [anon_sym_QueryExecute] = ACTIONS(2988), + [anon_sym_queryexecute] = ACTIONS(2988), + [anon_sym_QUERYEXECUTE] = ACTIONS(2988), + [anon_sym_queryExecute] = ACTIONS(2988), + [anon_sym_BQUOTE] = ACTIONS(2986), + [anon_sym_Abstract] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_ABSTRACT] = ACTIONS(2988), + [anon_sym_Component] = ACTIONS(2988), + [anon_sym_component] = ACTIONS(2988), + [anon_sym_COMPONENT] = ACTIONS(2988), + [anon_sym_Debugger] = ACTIONS(2988), + [anon_sym_debugger] = ACTIONS(2988), + [anon_sym_DEBUGGER] = ACTIONS(2988), + [anon_sym_Final] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_FINAL] = ACTIONS(2988), + [anon_sym_Function] = ACTIONS(2988), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_FUNCTION] = ACTIONS(2988), + [anon_sym_Include] = ACTIONS(2988), + [anon_sym_include] = ACTIONS(2988), + [anon_sym_INCLUDE] = ACTIONS(2988), + [anon_sym_New] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_NEW] = ACTIONS(2988), + [anon_sym_Package] = ACTIONS(2988), + [anon_sym_package] = ACTIONS(2988), + [anon_sym_PACKAGE] = ACTIONS(2988), + [anon_sym_Private] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_PRIVATE] = ACTIONS(2988), + [anon_sym_Public] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_PUBLIC] = ACTIONS(2988), + [anon_sym_Remote] = ACTIONS(2988), + [anon_sym_remote] = ACTIONS(2988), + [anon_sym_REMOTE] = ACTIONS(2988), + [anon_sym_Static] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_STATIC] = ACTIONS(2988), + [sym__java_block_open] = ACTIONS(2986), + [sym__static_type_prefix] = ACTIONS(2986), + }, + [STATE(2220)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1407), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -343384,19 +347722,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1383), + [sym__parameter_separator] = ACTIONS(404), }, - [STATE(2188)] = { + [STATE(2221)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(5253), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5226), - [anon_sym_DASH_GT] = ACTIONS(5226), + [anon_sym_EQ_GT] = ACTIONS(5222), + [anon_sym_DASH_GT] = ACTIONS(5222), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -343476,17 +347814,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2189)] = { + [STATE(2222)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5250), [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1407), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -343566,32 +347904,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(404), [sym__parameter_separator] = ACTIONS(404), }, - [STATE(2190)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2223)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -343622,7 +347961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -343646,43 +347985,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2191)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2224)] = { + [sym__initializer] = STATE(4632), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(1031), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1185), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -343713,7 +348051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -343737,42 +348075,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(1031), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(404), }, - [STATE(2192)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2225)] = { + [sym_identifier] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_let] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_Query] = ACTIONS(2988), + [anon_sym_query] = ACTIONS(2988), + [anon_sym_QUERY] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [aux_sym_unary_operator_token1] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2988), + [aux_sym_number_token2] = ACTIONS(2986), + [anon_sym_This] = ACTIONS(2988), + [anon_sym_this] = ACTIONS(2988), + [anon_sym_THIS] = ACTIONS(2988), + [anon_sym_Super] = ACTIONS(2988), + [anon_sym_super] = ACTIONS(2988), + [anon_sym_SUPER] = ACTIONS(2988), + [anon_sym_True] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2988), + [anon_sym_TRUE] = ACTIONS(2988), + [anon_sym_False] = ACTIONS(2988), + [anon_sym_false] = ACTIONS(2988), + [anon_sym_FALSE] = ACTIONS(2988), + [anon_sym_Null] = ACTIONS(2988), + [anon_sym_null] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_Undefined] = ACTIONS(2988), + [anon_sym_undefined] = ACTIONS(2988), + [anon_sym_UNDEFINED] = ACTIONS(2988), + [anon_sym_get] = ACTIONS(2988), + [anon_sym_set] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [sym_hash_empty] = ACTIONS(2986), + [anon_sym_export] = ACTIONS(2988), + [anon_sym_QueryExecute] = ACTIONS(2988), + [anon_sym_queryexecute] = ACTIONS(2988), + [anon_sym_QUERYEXECUTE] = ACTIONS(2988), + [anon_sym_queryExecute] = ACTIONS(2988), + [anon_sym_BQUOTE] = ACTIONS(2986), + [anon_sym_Abstract] = ACTIONS(2988), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_ABSTRACT] = ACTIONS(2988), + [anon_sym_Component] = ACTIONS(2988), + [anon_sym_component] = ACTIONS(2988), + [anon_sym_COMPONENT] = ACTIONS(2988), + [anon_sym_Debugger] = ACTIONS(2988), + [anon_sym_debugger] = ACTIONS(2988), + [anon_sym_DEBUGGER] = ACTIONS(2988), + [anon_sym_Final] = ACTIONS(2988), + [anon_sym_final] = ACTIONS(2988), + [anon_sym_FINAL] = ACTIONS(2988), + [anon_sym_Function] = ACTIONS(2988), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_FUNCTION] = ACTIONS(2988), + [anon_sym_Include] = ACTIONS(2988), + [anon_sym_include] = ACTIONS(2988), + [anon_sym_INCLUDE] = ACTIONS(2988), + [anon_sym_New] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_NEW] = ACTIONS(2988), + [anon_sym_Package] = ACTIONS(2988), + [anon_sym_package] = ACTIONS(2988), + [anon_sym_PACKAGE] = ACTIONS(2988), + [anon_sym_Private] = ACTIONS(2988), + [anon_sym_private] = ACTIONS(2988), + [anon_sym_PRIVATE] = ACTIONS(2988), + [anon_sym_Public] = ACTIONS(2988), + [anon_sym_public] = ACTIONS(2988), + [anon_sym_PUBLIC] = ACTIONS(2988), + [anon_sym_Remote] = ACTIONS(2988), + [anon_sym_remote] = ACTIONS(2988), + [anon_sym_REMOTE] = ACTIONS(2988), + [anon_sym_Static] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_STATIC] = ACTIONS(2988), + [sym__java_block_open] = ACTIONS(2986), + [sym__static_type_prefix] = ACTIONS(2986), + }, + [STATE(2226)] = { + [sym__initializer] = STATE(4735), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5126), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5244), + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5255), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5226), - [anon_sym_DASH_GT] = ACTIONS(5226), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -343803,7 +348231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -343827,26 +348255,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(5126), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2193)] = { + [STATE(2227)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1414), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_DASH_GT] = ACTIONS(1398), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -343921,21 +348348,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2194)] = { + [STATE(2228)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5257), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5207), - [anon_sym_DASH_GT] = ACTIONS(5207), + [anon_sym_EQ_GT] = ACTIONS(5237), + [anon_sym_DASH_GT] = ACTIONS(5237), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -344016,16 +348444,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2195)] = { + [STATE(2229)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5241), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1414), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -344106,16 +348534,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(404), [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2196)] = { + [STATE(2230)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_DASH_GT] = ACTIONS(1240), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -344196,106 +348624,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(404), [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2197)] = { - [sym_identifier] = ACTIONS(5194), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym__parameter_separator] = ACTIONS(1127), - }, - [STATE(2198)] = { + [STATE(2231)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(5248), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(1491), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -344370,292 +348708,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(406), [anon_sym_INSTANCEOF] = ACTIONS(406), [anon_sym_instanceOf] = ACTIONS(406), - [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2199)] = { - [sym_identifier] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_Query] = ACTIONS(2732), - [anon_sym_query] = ACTIONS(2732), - [anon_sym_QUERY] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [aux_sym_unary_operator_token1] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2730), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2732), - [aux_sym_number_token2] = ACTIONS(2730), - [anon_sym_This] = ACTIONS(2732), - [anon_sym_this] = ACTIONS(2732), - [anon_sym_THIS] = ACTIONS(2732), - [anon_sym_Super] = ACTIONS(2732), - [anon_sym_super] = ACTIONS(2732), - [anon_sym_SUPER] = ACTIONS(2732), - [anon_sym_True] = ACTIONS(2732), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_TRUE] = ACTIONS(2732), - [anon_sym_False] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_FALSE] = ACTIONS(2732), - [anon_sym_Null] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(2732), - [anon_sym_NULL] = ACTIONS(2732), - [anon_sym_Undefined] = ACTIONS(2732), - [anon_sym_undefined] = ACTIONS(2732), - [anon_sym_UNDEFINED] = ACTIONS(2732), - [anon_sym_get] = ACTIONS(2732), - [anon_sym_set] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2732), - [sym_hash_empty] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_QueryExecute] = ACTIONS(2732), - [anon_sym_queryexecute] = ACTIONS(2732), - [anon_sym_QUERYEXECUTE] = ACTIONS(2732), - [anon_sym_queryExecute] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2730), - [anon_sym_Abstract] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_ABSTRACT] = ACTIONS(2732), - [anon_sym_Component] = ACTIONS(2732), - [anon_sym_component] = ACTIONS(2732), - [anon_sym_COMPONENT] = ACTIONS(2732), - [anon_sym_Debugger] = ACTIONS(2732), - [anon_sym_debugger] = ACTIONS(2732), - [anon_sym_DEBUGGER] = ACTIONS(2732), - [anon_sym_Final] = ACTIONS(2732), - [anon_sym_final] = ACTIONS(2732), - [anon_sym_FINAL] = ACTIONS(2732), - [anon_sym_Function] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_FUNCTION] = ACTIONS(2732), - [anon_sym_Include] = ACTIONS(2732), - [anon_sym_include] = ACTIONS(2732), - [anon_sym_INCLUDE] = ACTIONS(2732), - [anon_sym_New] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_NEW] = ACTIONS(2732), - [anon_sym_Package] = ACTIONS(2732), - [anon_sym_package] = ACTIONS(2732), - [anon_sym_PACKAGE] = ACTIONS(2732), - [anon_sym_Private] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_PRIVATE] = ACTIONS(2732), - [anon_sym_Public] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_PUBLIC] = ACTIONS(2732), - [anon_sym_Remote] = ACTIONS(2732), - [anon_sym_remote] = ACTIONS(2732), - [anon_sym_REMOTE] = ACTIONS(2732), - [anon_sym_Static] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_STATIC] = ACTIONS(2732), - [sym__java_block_open] = ACTIONS(2730), - [sym__static_type_prefix] = ACTIONS(2730), - }, - [STATE(2200)] = { - [sym__initializer] = STATE(4556), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(1033), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(2201)] = { - [sym_identifier] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_Query] = ACTIONS(2938), - [anon_sym_query] = ACTIONS(2938), - [anon_sym_QUERY] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [aux_sym_unary_operator_token1] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2938), - [aux_sym_number_token2] = ACTIONS(2936), - [anon_sym_This] = ACTIONS(2938), - [anon_sym_this] = ACTIONS(2938), - [anon_sym_THIS] = ACTIONS(2938), - [anon_sym_Super] = ACTIONS(2938), - [anon_sym_super] = ACTIONS(2938), - [anon_sym_SUPER] = ACTIONS(2938), - [anon_sym_True] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2938), - [anon_sym_TRUE] = ACTIONS(2938), - [anon_sym_False] = ACTIONS(2938), - [anon_sym_false] = ACTIONS(2938), - [anon_sym_FALSE] = ACTIONS(2938), - [anon_sym_Null] = ACTIONS(2938), - [anon_sym_null] = ACTIONS(2938), - [anon_sym_NULL] = ACTIONS(2938), - [anon_sym_Undefined] = ACTIONS(2938), - [anon_sym_undefined] = ACTIONS(2938), - [anon_sym_UNDEFINED] = ACTIONS(2938), - [anon_sym_get] = ACTIONS(2938), - [anon_sym_set] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [sym_hash_empty] = ACTIONS(2936), - [anon_sym_export] = ACTIONS(2938), - [anon_sym_QueryExecute] = ACTIONS(2938), - [anon_sym_queryexecute] = ACTIONS(2938), - [anon_sym_QUERYEXECUTE] = ACTIONS(2938), - [anon_sym_queryExecute] = ACTIONS(2938), - [anon_sym_BQUOTE] = ACTIONS(2936), - [anon_sym_Abstract] = ACTIONS(2938), - [anon_sym_abstract] = ACTIONS(2938), - [anon_sym_ABSTRACT] = ACTIONS(2938), - [anon_sym_Component] = ACTIONS(2938), - [anon_sym_component] = ACTIONS(2938), - [anon_sym_COMPONENT] = ACTIONS(2938), - [anon_sym_Debugger] = ACTIONS(2938), - [anon_sym_debugger] = ACTIONS(2938), - [anon_sym_DEBUGGER] = ACTIONS(2938), - [anon_sym_Final] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_FINAL] = ACTIONS(2938), - [anon_sym_Function] = ACTIONS(2938), - [anon_sym_function] = ACTIONS(2938), - [anon_sym_FUNCTION] = ACTIONS(2938), - [anon_sym_Include] = ACTIONS(2938), - [anon_sym_include] = ACTIONS(2938), - [anon_sym_INCLUDE] = ACTIONS(2938), - [anon_sym_New] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(2938), - [anon_sym_NEW] = ACTIONS(2938), - [anon_sym_Package] = ACTIONS(2938), - [anon_sym_package] = ACTIONS(2938), - [anon_sym_PACKAGE] = ACTIONS(2938), - [anon_sym_Private] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_PRIVATE] = ACTIONS(2938), - [anon_sym_Public] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_PUBLIC] = ACTIONS(2938), - [anon_sym_Remote] = ACTIONS(2938), - [anon_sym_remote] = ACTIONS(2938), - [anon_sym_REMOTE] = ACTIONS(2938), - [anon_sym_Static] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_STATIC] = ACTIONS(2938), - [sym__java_block_open] = ACTIONS(2936), - [sym__static_type_prefix] = ACTIONS(2936), + [STATE(2232)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1952), + [anon_sym_instanceof] = ACTIONS(1952), + [anon_sym_INSTANCEOF] = ACTIONS(1952), + [anon_sym_instanceOf] = ACTIONS(1952), + [sym__automatic_semicolon] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + [sym_tag_linefeed] = ACTIONS(1955), }, - [STATE(2202)] = { + [STATE(2233)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5207), - [anon_sym_DASH_GT] = ACTIONS(5207), + [anon_sym_EQ_GT] = ACTIONS(5262), + [anon_sym_DASH_GT] = ACTIONS(5262), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -344730,23 +348886,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2203)] = { + [STATE(2234)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -344814,116 +348966,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), + [anon_sym_In] = ACTIONS(5206), + [anon_sym_in] = ACTIONS(5206), + [anon_sym_IN] = ACTIONS(5206), [anon_sym_InstanceOf] = ACTIONS(509), [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(5209), + [anon_sym_of] = ACTIONS(5209), + [anon_sym_OF] = ACTIONS(5209), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2204)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(2205)] = { + [STATE(2235)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -345003,195 +349069,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(404), [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2206)] = { - [sym_identifier] = ACTIONS(5188), - [anon_sym_LBRACE] = ACTIONS(5190), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_let] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5190), - [anon_sym_Query] = ACTIONS(5188), - [anon_sym_query] = ACTIONS(5188), - [anon_sym_QUERY] = ACTIONS(5188), - [anon_sym_PLUS] = ACTIONS(5188), - [anon_sym_DASH] = ACTIONS(5188), - [anon_sym_SLASH] = ACTIONS(5188), - [anon_sym_BANG] = ACTIONS(5190), - [anon_sym_TILDE] = ACTIONS(5190), - [aux_sym_unary_operator_token1] = ACTIONS(5188), - [anon_sym_PLUS_PLUS] = ACTIONS(5190), - [anon_sym_DASH_DASH] = ACTIONS(5190), - [anon_sym_DQUOTE] = ACTIONS(5190), - [anon_sym_SQUOTE] = ACTIONS(5190), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5188), - [aux_sym_number_token2] = ACTIONS(5190), - [anon_sym_This] = ACTIONS(5188), - [anon_sym_this] = ACTIONS(5188), - [anon_sym_THIS] = ACTIONS(5188), - [anon_sym_Super] = ACTIONS(5188), - [anon_sym_super] = ACTIONS(5188), - [anon_sym_SUPER] = ACTIONS(5188), - [anon_sym_True] = ACTIONS(5188), - [anon_sym_true] = ACTIONS(5188), - [anon_sym_TRUE] = ACTIONS(5188), - [anon_sym_False] = ACTIONS(5188), - [anon_sym_false] = ACTIONS(5188), - [anon_sym_FALSE] = ACTIONS(5188), - [anon_sym_Null] = ACTIONS(5188), - [anon_sym_null] = ACTIONS(5188), - [anon_sym_NULL] = ACTIONS(5188), - [anon_sym_Undefined] = ACTIONS(5188), - [anon_sym_undefined] = ACTIONS(5188), - [anon_sym_UNDEFINED] = ACTIONS(5188), - [anon_sym_get] = ACTIONS(5188), - [anon_sym_set] = ACTIONS(5188), - [anon_sym_POUND] = ACTIONS(5188), - [sym_hash_empty] = ACTIONS(5190), - [anon_sym_export] = ACTIONS(5188), - [anon_sym_QueryExecute] = ACTIONS(5188), - [anon_sym_queryexecute] = ACTIONS(5188), - [anon_sym_QUERYEXECUTE] = ACTIONS(5188), - [anon_sym_queryExecute] = ACTIONS(5188), - [anon_sym_BQUOTE] = ACTIONS(5190), - [anon_sym_Abstract] = ACTIONS(5188), - [anon_sym_abstract] = ACTIONS(5188), - [anon_sym_ABSTRACT] = ACTIONS(5188), - [anon_sym_Component] = ACTIONS(5188), - [anon_sym_component] = ACTIONS(5188), - [anon_sym_COMPONENT] = ACTIONS(5188), - [anon_sym_Debugger] = ACTIONS(5188), - [anon_sym_debugger] = ACTIONS(5188), - [anon_sym_DEBUGGER] = ACTIONS(5188), - [anon_sym_Final] = ACTIONS(5188), - [anon_sym_final] = ACTIONS(5188), - [anon_sym_FINAL] = ACTIONS(5188), - [anon_sym_Function] = ACTIONS(5188), - [anon_sym_function] = ACTIONS(5188), - [anon_sym_FUNCTION] = ACTIONS(5188), - [anon_sym_Include] = ACTIONS(5188), - [anon_sym_include] = ACTIONS(5188), - [anon_sym_INCLUDE] = ACTIONS(5188), - [anon_sym_New] = ACTIONS(5188), - [anon_sym_new] = ACTIONS(5188), - [anon_sym_NEW] = ACTIONS(5188), - [anon_sym_Package] = ACTIONS(5188), - [anon_sym_package] = ACTIONS(5188), - [anon_sym_PACKAGE] = ACTIONS(5188), - [anon_sym_Private] = ACTIONS(5188), - [anon_sym_private] = ACTIONS(5188), - [anon_sym_PRIVATE] = ACTIONS(5188), - [anon_sym_Public] = ACTIONS(5188), - [anon_sym_public] = ACTIONS(5188), - [anon_sym_PUBLIC] = ACTIONS(5188), - [anon_sym_Remote] = ACTIONS(5188), - [anon_sym_remote] = ACTIONS(5188), - [anon_sym_REMOTE] = ACTIONS(5188), - [anon_sym_Static] = ACTIONS(5188), - [anon_sym_static] = ACTIONS(5188), - [anon_sym_STATIC] = ACTIONS(5188), - [sym__java_block_open] = ACTIONS(5190), - [sym__static_type_prefix] = ACTIONS(5190), - }, - [STATE(2207)] = { - [sym_identifier] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_Query] = ACTIONS(5151), - [anon_sym_query] = ACTIONS(5151), - [anon_sym_QUERY] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [aux_sym_unary_operator_token1] = ACTIONS(5151), - [anon_sym_PLUS_PLUS] = ACTIONS(2223), - [anon_sym_DASH_DASH] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5151), - [aux_sym_number_token2] = ACTIONS(2223), - [anon_sym_This] = ACTIONS(5151), - [anon_sym_this] = ACTIONS(5151), - [anon_sym_THIS] = ACTIONS(5151), - [anon_sym_Super] = ACTIONS(5151), - [anon_sym_super] = ACTIONS(5151), - [anon_sym_SUPER] = ACTIONS(5151), - [anon_sym_True] = ACTIONS(5151), - [anon_sym_true] = ACTIONS(5151), - [anon_sym_TRUE] = ACTIONS(5151), - [anon_sym_False] = ACTIONS(5151), - [anon_sym_false] = ACTIONS(5151), - [anon_sym_FALSE] = ACTIONS(5151), - [anon_sym_Null] = ACTIONS(5151), - [anon_sym_null] = ACTIONS(5151), - [anon_sym_NULL] = ACTIONS(5151), - [anon_sym_Undefined] = ACTIONS(5151), - [anon_sym_undefined] = ACTIONS(5151), - [anon_sym_UNDEFINED] = ACTIONS(5151), - [anon_sym_get] = ACTIONS(5151), - [anon_sym_set] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [sym_hash_empty] = ACTIONS(2223), - [anon_sym_export] = ACTIONS(5151), - [anon_sym_QueryExecute] = ACTIONS(5151), - [anon_sym_queryexecute] = ACTIONS(5151), - [anon_sym_QUERYEXECUTE] = ACTIONS(5151), - [anon_sym_queryExecute] = ACTIONS(5151), - [anon_sym_BQUOTE] = ACTIONS(2223), - [anon_sym_Abstract] = ACTIONS(5151), - [anon_sym_abstract] = ACTIONS(5151), - [anon_sym_ABSTRACT] = ACTIONS(5151), - [anon_sym_Component] = ACTIONS(5151), - [anon_sym_component] = ACTIONS(5151), - [anon_sym_COMPONENT] = ACTIONS(5151), - [anon_sym_Debugger] = ACTIONS(5151), - [anon_sym_debugger] = ACTIONS(5151), - [anon_sym_DEBUGGER] = ACTIONS(5151), - [anon_sym_Final] = ACTIONS(5151), - [anon_sym_final] = ACTIONS(5151), - [anon_sym_FINAL] = ACTIONS(5151), - [anon_sym_Function] = ACTIONS(5151), - [anon_sym_function] = ACTIONS(5151), - [anon_sym_FUNCTION] = ACTIONS(5151), - [anon_sym_Include] = ACTIONS(5151), - [anon_sym_include] = ACTIONS(5151), - [anon_sym_INCLUDE] = ACTIONS(5151), - [anon_sym_New] = ACTIONS(5151), - [anon_sym_new] = ACTIONS(5151), - [anon_sym_NEW] = ACTIONS(5151), - [anon_sym_Package] = ACTIONS(5151), - [anon_sym_package] = ACTIONS(5151), - [anon_sym_PACKAGE] = ACTIONS(5151), - [anon_sym_Private] = ACTIONS(5151), - [anon_sym_private] = ACTIONS(5151), - [anon_sym_PRIVATE] = ACTIONS(5151), - [anon_sym_Public] = ACTIONS(5151), - [anon_sym_public] = ACTIONS(5151), - [anon_sym_PUBLIC] = ACTIONS(5151), - [anon_sym_Remote] = ACTIONS(5151), - [anon_sym_remote] = ACTIONS(5151), - [anon_sym_REMOTE] = ACTIONS(5151), - [anon_sym_Static] = ACTIONS(5151), - [anon_sym_static] = ACTIONS(5151), - [anon_sym_STATIC] = ACTIONS(5151), - [sym__java_block_open] = ACTIONS(2223), - [sym__static_type_prefix] = ACTIONS(2223), - }, - [STATE(2208)] = { + [STATE(2236)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1375), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1198), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -345270,16 +349158,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2209)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2237)] = { + [sym_identifier] = ACTIONS(5264), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5266), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5257), - [anon_sym_DASH_GT] = ACTIONS(5257), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -345357,104 +349246,459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2210)] = { - [sym_identifier] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5161), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_let] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_Query] = ACTIONS(5159), - [anon_sym_query] = ACTIONS(5159), - [anon_sym_QUERY] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_TILDE] = ACTIONS(5161), - [aux_sym_unary_operator_token1] = ACTIONS(5159), - [anon_sym_PLUS_PLUS] = ACTIONS(5161), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DQUOTE] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5161), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5159), - [aux_sym_number_token2] = ACTIONS(5161), - [anon_sym_This] = ACTIONS(5159), - [anon_sym_this] = ACTIONS(5159), - [anon_sym_THIS] = ACTIONS(5159), - [anon_sym_Super] = ACTIONS(5159), - [anon_sym_super] = ACTIONS(5159), - [anon_sym_SUPER] = ACTIONS(5159), - [anon_sym_True] = ACTIONS(5159), - [anon_sym_true] = ACTIONS(5159), - [anon_sym_TRUE] = ACTIONS(5159), - [anon_sym_False] = ACTIONS(5159), - [anon_sym_false] = ACTIONS(5159), - [anon_sym_FALSE] = ACTIONS(5159), - [anon_sym_Null] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(5159), - [anon_sym_NULL] = ACTIONS(5159), - [anon_sym_Undefined] = ACTIONS(5159), - [anon_sym_undefined] = ACTIONS(5159), - [anon_sym_UNDEFINED] = ACTIONS(5159), - [anon_sym_get] = ACTIONS(5159), - [anon_sym_set] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [sym_hash_empty] = ACTIONS(5161), - [anon_sym_export] = ACTIONS(5159), - [anon_sym_QueryExecute] = ACTIONS(5159), - [anon_sym_queryexecute] = ACTIONS(5159), - [anon_sym_QUERYEXECUTE] = ACTIONS(5159), - [anon_sym_queryExecute] = ACTIONS(5159), - [anon_sym_BQUOTE] = ACTIONS(5161), - [anon_sym_Abstract] = ACTIONS(5159), - [anon_sym_abstract] = ACTIONS(5159), - [anon_sym_ABSTRACT] = ACTIONS(5159), - [anon_sym_Component] = ACTIONS(5159), - [anon_sym_component] = ACTIONS(5159), - [anon_sym_COMPONENT] = ACTIONS(5159), - [anon_sym_Debugger] = ACTIONS(5159), - [anon_sym_debugger] = ACTIONS(5159), - [anon_sym_DEBUGGER] = ACTIONS(5159), - [anon_sym_Final] = ACTIONS(5159), - [anon_sym_final] = ACTIONS(5159), - [anon_sym_FINAL] = ACTIONS(5159), - [anon_sym_Function] = ACTIONS(5159), - [anon_sym_function] = ACTIONS(5159), - [anon_sym_FUNCTION] = ACTIONS(5159), - [anon_sym_Include] = ACTIONS(5159), - [anon_sym_include] = ACTIONS(5159), - [anon_sym_INCLUDE] = ACTIONS(5159), - [anon_sym_New] = ACTIONS(5159), - [anon_sym_new] = ACTIONS(5159), - [anon_sym_NEW] = ACTIONS(5159), - [anon_sym_Package] = ACTIONS(5159), - [anon_sym_package] = ACTIONS(5159), - [anon_sym_PACKAGE] = ACTIONS(5159), - [anon_sym_Private] = ACTIONS(5159), - [anon_sym_private] = ACTIONS(5159), - [anon_sym_PRIVATE] = ACTIONS(5159), - [anon_sym_Public] = ACTIONS(5159), - [anon_sym_public] = ACTIONS(5159), - [anon_sym_PUBLIC] = ACTIONS(5159), - [anon_sym_Remote] = ACTIONS(5159), - [anon_sym_remote] = ACTIONS(5159), - [anon_sym_REMOTE] = ACTIONS(5159), - [anon_sym_Static] = ACTIONS(5159), - [anon_sym_static] = ACTIONS(5159), - [anon_sym_STATIC] = ACTIONS(5159), - [sym__java_block_open] = ACTIONS(5161), - [sym__static_type_prefix] = ACTIONS(5161), + [STATE(2238)] = { + [sym_identifier] = ACTIONS(5176), + [anon_sym_LBRACE] = ACTIONS(5178), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_let] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_Query] = ACTIONS(5176), + [anon_sym_query] = ACTIONS(5176), + [anon_sym_QUERY] = ACTIONS(5176), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5178), + [anon_sym_TILDE] = ACTIONS(5178), + [aux_sym_unary_operator_token1] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5178), + [anon_sym_DASH_DASH] = ACTIONS(5178), + [anon_sym_DQUOTE] = ACTIONS(5178), + [anon_sym_SQUOTE] = ACTIONS(5178), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5176), + [aux_sym_number_token2] = ACTIONS(5178), + [anon_sym_This] = ACTIONS(5176), + [anon_sym_this] = ACTIONS(5176), + [anon_sym_THIS] = ACTIONS(5176), + [anon_sym_Super] = ACTIONS(5176), + [anon_sym_super] = ACTIONS(5176), + [anon_sym_SUPER] = ACTIONS(5176), + [anon_sym_True] = ACTIONS(5176), + [anon_sym_true] = ACTIONS(5176), + [anon_sym_TRUE] = ACTIONS(5176), + [anon_sym_False] = ACTIONS(5176), + [anon_sym_false] = ACTIONS(5176), + [anon_sym_FALSE] = ACTIONS(5176), + [anon_sym_Null] = ACTIONS(5176), + [anon_sym_null] = ACTIONS(5176), + [anon_sym_NULL] = ACTIONS(5176), + [anon_sym_Undefined] = ACTIONS(5176), + [anon_sym_undefined] = ACTIONS(5176), + [anon_sym_UNDEFINED] = ACTIONS(5176), + [anon_sym_get] = ACTIONS(5176), + [anon_sym_set] = ACTIONS(5176), + [anon_sym_POUND] = ACTIONS(5176), + [sym_hash_empty] = ACTIONS(5178), + [anon_sym_export] = ACTIONS(5176), + [anon_sym_QueryExecute] = ACTIONS(5176), + [anon_sym_queryexecute] = ACTIONS(5176), + [anon_sym_QUERYEXECUTE] = ACTIONS(5176), + [anon_sym_queryExecute] = ACTIONS(5176), + [anon_sym_BQUOTE] = ACTIONS(5178), + [anon_sym_Abstract] = ACTIONS(5176), + [anon_sym_abstract] = ACTIONS(5176), + [anon_sym_ABSTRACT] = ACTIONS(5176), + [anon_sym_Component] = ACTIONS(5176), + [anon_sym_component] = ACTIONS(5176), + [anon_sym_COMPONENT] = ACTIONS(5176), + [anon_sym_Debugger] = ACTIONS(5176), + [anon_sym_debugger] = ACTIONS(5176), + [anon_sym_DEBUGGER] = ACTIONS(5176), + [anon_sym_Final] = ACTIONS(5176), + [anon_sym_final] = ACTIONS(5176), + [anon_sym_FINAL] = ACTIONS(5176), + [anon_sym_Function] = ACTIONS(5176), + [anon_sym_function] = ACTIONS(5176), + [anon_sym_FUNCTION] = ACTIONS(5176), + [anon_sym_Include] = ACTIONS(5176), + [anon_sym_include] = ACTIONS(5176), + [anon_sym_INCLUDE] = ACTIONS(5176), + [anon_sym_New] = ACTIONS(5176), + [anon_sym_new] = ACTIONS(5176), + [anon_sym_NEW] = ACTIONS(5176), + [anon_sym_Package] = ACTIONS(5176), + [anon_sym_package] = ACTIONS(5176), + [anon_sym_PACKAGE] = ACTIONS(5176), + [anon_sym_Private] = ACTIONS(5176), + [anon_sym_private] = ACTIONS(5176), + [anon_sym_PRIVATE] = ACTIONS(5176), + [anon_sym_Public] = ACTIONS(5176), + [anon_sym_public] = ACTIONS(5176), + [anon_sym_PUBLIC] = ACTIONS(5176), + [anon_sym_Remote] = ACTIONS(5176), + [anon_sym_remote] = ACTIONS(5176), + [anon_sym_REMOTE] = ACTIONS(5176), + [anon_sym_Static] = ACTIONS(5176), + [anon_sym_static] = ACTIONS(5176), + [anon_sym_STATIC] = ACTIONS(5176), + [sym__java_block_open] = ACTIONS(5178), + [sym__static_type_prefix] = ACTIONS(5178), + }, + [STATE(2239)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2211)] = { + [STATE(2240)] = { + [sym_identifier] = ACTIONS(5194), + [anon_sym_LBRACE] = ACTIONS(5196), + [anon_sym_LPAREN] = ACTIONS(5196), + [anon_sym_let] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(5196), + [anon_sym_Query] = ACTIONS(5194), + [anon_sym_query] = ACTIONS(5194), + [anon_sym_QUERY] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_SLASH] = ACTIONS(5194), + [anon_sym_BANG] = ACTIONS(5196), + [anon_sym_TILDE] = ACTIONS(5196), + [aux_sym_unary_operator_token1] = ACTIONS(5194), + [anon_sym_PLUS_PLUS] = ACTIONS(5196), + [anon_sym_DASH_DASH] = ACTIONS(5196), + [anon_sym_DQUOTE] = ACTIONS(5196), + [anon_sym_SQUOTE] = ACTIONS(5196), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5194), + [aux_sym_number_token2] = ACTIONS(5196), + [anon_sym_This] = ACTIONS(5194), + [anon_sym_this] = ACTIONS(5194), + [anon_sym_THIS] = ACTIONS(5194), + [anon_sym_Super] = ACTIONS(5194), + [anon_sym_super] = ACTIONS(5194), + [anon_sym_SUPER] = ACTIONS(5194), + [anon_sym_True] = ACTIONS(5194), + [anon_sym_true] = ACTIONS(5194), + [anon_sym_TRUE] = ACTIONS(5194), + [anon_sym_False] = ACTIONS(5194), + [anon_sym_false] = ACTIONS(5194), + [anon_sym_FALSE] = ACTIONS(5194), + [anon_sym_Null] = ACTIONS(5194), + [anon_sym_null] = ACTIONS(5194), + [anon_sym_NULL] = ACTIONS(5194), + [anon_sym_Undefined] = ACTIONS(5194), + [anon_sym_undefined] = ACTIONS(5194), + [anon_sym_UNDEFINED] = ACTIONS(5194), + [anon_sym_get] = ACTIONS(5194), + [anon_sym_set] = ACTIONS(5194), + [anon_sym_POUND] = ACTIONS(5194), + [sym_hash_empty] = ACTIONS(5196), + [anon_sym_export] = ACTIONS(5194), + [anon_sym_QueryExecute] = ACTIONS(5194), + [anon_sym_queryexecute] = ACTIONS(5194), + [anon_sym_QUERYEXECUTE] = ACTIONS(5194), + [anon_sym_queryExecute] = ACTIONS(5194), + [anon_sym_BQUOTE] = ACTIONS(5196), + [anon_sym_Abstract] = ACTIONS(5194), + [anon_sym_abstract] = ACTIONS(5194), + [anon_sym_ABSTRACT] = ACTIONS(5194), + [anon_sym_Component] = ACTIONS(5194), + [anon_sym_component] = ACTIONS(5194), + [anon_sym_COMPONENT] = ACTIONS(5194), + [anon_sym_Debugger] = ACTIONS(5194), + [anon_sym_debugger] = ACTIONS(5194), + [anon_sym_DEBUGGER] = ACTIONS(5194), + [anon_sym_Final] = ACTIONS(5194), + [anon_sym_final] = ACTIONS(5194), + [anon_sym_FINAL] = ACTIONS(5194), + [anon_sym_Function] = ACTIONS(5194), + [anon_sym_function] = ACTIONS(5194), + [anon_sym_FUNCTION] = ACTIONS(5194), + [anon_sym_Include] = ACTIONS(5194), + [anon_sym_include] = ACTIONS(5194), + [anon_sym_INCLUDE] = ACTIONS(5194), + [anon_sym_New] = ACTIONS(5194), + [anon_sym_new] = ACTIONS(5194), + [anon_sym_NEW] = ACTIONS(5194), + [anon_sym_Package] = ACTIONS(5194), + [anon_sym_package] = ACTIONS(5194), + [anon_sym_PACKAGE] = ACTIONS(5194), + [anon_sym_Private] = ACTIONS(5194), + [anon_sym_private] = ACTIONS(5194), + [anon_sym_PRIVATE] = ACTIONS(5194), + [anon_sym_Public] = ACTIONS(5194), + [anon_sym_public] = ACTIONS(5194), + [anon_sym_PUBLIC] = ACTIONS(5194), + [anon_sym_Remote] = ACTIONS(5194), + [anon_sym_remote] = ACTIONS(5194), + [anon_sym_REMOTE] = ACTIONS(5194), + [anon_sym_Static] = ACTIONS(5194), + [anon_sym_static] = ACTIONS(5194), + [anon_sym_STATIC] = ACTIONS(5194), + [sym__java_block_open] = ACTIONS(5196), + [sym__static_type_prefix] = ACTIONS(5196), + }, + [STATE(2241)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1952), + [anon_sym_instanceof] = ACTIONS(1952), + [anon_sym_INSTANCEOF] = ACTIONS(1952), + [anon_sym_instanceOf] = ACTIONS(1952), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + [sym__parameter_separator] = ACTIONS(1955), + }, + [STATE(2242)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1952), + [anon_sym_instanceof] = ACTIONS(1952), + [anon_sym_INSTANCEOF] = ACTIONS(1952), + [anon_sym_instanceOf] = ACTIONS(1952), + [sym__automatic_semicolon] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + [sym_tag_linefeed] = ACTIONS(1955), + }, + [STATE(2243)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(5268), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_EQ_GT] = ACTIONS(527), [anon_sym_DASH_GT] = ACTIONS(527), @@ -345537,17 +349781,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2212)] = { + [STATE(2244)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1383), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -345622,199 +349865,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2213)] = { - [sym_identifier] = ACTIONS(5174), - [anon_sym_LBRACE] = ACTIONS(5176), - [anon_sym_LPAREN] = ACTIONS(5176), - [anon_sym_let] = ACTIONS(5174), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_Query] = ACTIONS(5174), - [anon_sym_query] = ACTIONS(5174), - [anon_sym_QUERY] = ACTIONS(5174), - [anon_sym_PLUS] = ACTIONS(5174), - [anon_sym_DASH] = ACTIONS(5174), - [anon_sym_SLASH] = ACTIONS(5174), - [anon_sym_BANG] = ACTIONS(5176), - [anon_sym_TILDE] = ACTIONS(5176), - [aux_sym_unary_operator_token1] = ACTIONS(5174), - [anon_sym_PLUS_PLUS] = ACTIONS(5176), - [anon_sym_DASH_DASH] = ACTIONS(5176), - [anon_sym_DQUOTE] = ACTIONS(5176), - [anon_sym_SQUOTE] = ACTIONS(5176), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5174), - [aux_sym_number_token2] = ACTIONS(5176), - [anon_sym_This] = ACTIONS(5174), - [anon_sym_this] = ACTIONS(5174), - [anon_sym_THIS] = ACTIONS(5174), - [anon_sym_Super] = ACTIONS(5174), - [anon_sym_super] = ACTIONS(5174), - [anon_sym_SUPER] = ACTIONS(5174), - [anon_sym_True] = ACTIONS(5174), - [anon_sym_true] = ACTIONS(5174), - [anon_sym_TRUE] = ACTIONS(5174), - [anon_sym_False] = ACTIONS(5174), - [anon_sym_false] = ACTIONS(5174), - [anon_sym_FALSE] = ACTIONS(5174), - [anon_sym_Null] = ACTIONS(5174), - [anon_sym_null] = ACTIONS(5174), - [anon_sym_NULL] = ACTIONS(5174), - [anon_sym_Undefined] = ACTIONS(5174), - [anon_sym_undefined] = ACTIONS(5174), - [anon_sym_UNDEFINED] = ACTIONS(5174), - [anon_sym_get] = ACTIONS(5174), - [anon_sym_set] = ACTIONS(5174), - [anon_sym_POUND] = ACTIONS(5174), - [sym_hash_empty] = ACTIONS(5176), - [anon_sym_export] = ACTIONS(5174), - [anon_sym_QueryExecute] = ACTIONS(5174), - [anon_sym_queryexecute] = ACTIONS(5174), - [anon_sym_QUERYEXECUTE] = ACTIONS(5174), - [anon_sym_queryExecute] = ACTIONS(5174), - [anon_sym_BQUOTE] = ACTIONS(5176), - [anon_sym_Abstract] = ACTIONS(5174), - [anon_sym_abstract] = ACTIONS(5174), - [anon_sym_ABSTRACT] = ACTIONS(5174), - [anon_sym_Component] = ACTIONS(5174), - [anon_sym_component] = ACTIONS(5174), - [anon_sym_COMPONENT] = ACTIONS(5174), - [anon_sym_Debugger] = ACTIONS(5174), - [anon_sym_debugger] = ACTIONS(5174), - [anon_sym_DEBUGGER] = ACTIONS(5174), - [anon_sym_Final] = ACTIONS(5174), - [anon_sym_final] = ACTIONS(5174), - [anon_sym_FINAL] = ACTIONS(5174), - [anon_sym_Function] = ACTIONS(5174), - [anon_sym_function] = ACTIONS(5174), - [anon_sym_FUNCTION] = ACTIONS(5174), - [anon_sym_Include] = ACTIONS(5174), - [anon_sym_include] = ACTIONS(5174), - [anon_sym_INCLUDE] = ACTIONS(5174), - [anon_sym_New] = ACTIONS(5174), - [anon_sym_new] = ACTIONS(5174), - [anon_sym_NEW] = ACTIONS(5174), - [anon_sym_Package] = ACTIONS(5174), - [anon_sym_package] = ACTIONS(5174), - [anon_sym_PACKAGE] = ACTIONS(5174), - [anon_sym_Private] = ACTIONS(5174), - [anon_sym_private] = ACTIONS(5174), - [anon_sym_PRIVATE] = ACTIONS(5174), - [anon_sym_Public] = ACTIONS(5174), - [anon_sym_public] = ACTIONS(5174), - [anon_sym_PUBLIC] = ACTIONS(5174), - [anon_sym_Remote] = ACTIONS(5174), - [anon_sym_remote] = ACTIONS(5174), - [anon_sym_REMOTE] = ACTIONS(5174), - [anon_sym_Static] = ACTIONS(5174), - [anon_sym_static] = ACTIONS(5174), - [anon_sym_STATIC] = ACTIONS(5174), - [sym__java_block_open] = ACTIONS(5176), - [sym__static_type_prefix] = ACTIONS(5176), - }, - [STATE(2214)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5257), - [anon_sym_DASH_GT] = ACTIONS(5257), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - }, - [STATE(2215)] = { + [STATE(2245)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1418), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1383), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -345893,33 +349959,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2216)] = { - [sym_identifier] = ACTIONS(5261), + [STATE(2246)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5270), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -345950,7 +350016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -345974,25 +350040,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2217)] = { + [STATE(2247)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1418), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -346071,100 +350137,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2218)] = { - [sym_identifier] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_let] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_Query] = ACTIONS(5135), - [anon_sym_query] = ACTIONS(5135), - [anon_sym_QUERY] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5137), - [anon_sym_TILDE] = ACTIONS(5137), - [aux_sym_unary_operator_token1] = ACTIONS(5135), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DQUOTE] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5137), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5135), - [aux_sym_number_token2] = ACTIONS(5137), - [anon_sym_This] = ACTIONS(5135), - [anon_sym_this] = ACTIONS(5135), - [anon_sym_THIS] = ACTIONS(5135), - [anon_sym_Super] = ACTIONS(5135), - [anon_sym_super] = ACTIONS(5135), - [anon_sym_SUPER] = ACTIONS(5135), - [anon_sym_True] = ACTIONS(5135), - [anon_sym_true] = ACTIONS(5135), - [anon_sym_TRUE] = ACTIONS(5135), - [anon_sym_False] = ACTIONS(5135), - [anon_sym_false] = ACTIONS(5135), - [anon_sym_FALSE] = ACTIONS(5135), - [anon_sym_Null] = ACTIONS(5135), - [anon_sym_null] = ACTIONS(5135), - [anon_sym_NULL] = ACTIONS(5135), - [anon_sym_Undefined] = ACTIONS(5135), - [anon_sym_undefined] = ACTIONS(5135), - [anon_sym_UNDEFINED] = ACTIONS(5135), - [anon_sym_get] = ACTIONS(5135), - [anon_sym_set] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [sym_hash_empty] = ACTIONS(5137), - [anon_sym_export] = ACTIONS(5135), - [anon_sym_QueryExecute] = ACTIONS(5135), - [anon_sym_queryexecute] = ACTIONS(5135), - [anon_sym_QUERYEXECUTE] = ACTIONS(5135), - [anon_sym_queryExecute] = ACTIONS(5135), - [anon_sym_BQUOTE] = ACTIONS(5137), - [anon_sym_Abstract] = ACTIONS(5135), - [anon_sym_abstract] = ACTIONS(5135), - [anon_sym_ABSTRACT] = ACTIONS(5135), - [anon_sym_Component] = ACTIONS(5135), - [anon_sym_component] = ACTIONS(5135), - [anon_sym_COMPONENT] = ACTIONS(5135), - [anon_sym_Debugger] = ACTIONS(5135), - [anon_sym_debugger] = ACTIONS(5135), - [anon_sym_DEBUGGER] = ACTIONS(5135), - [anon_sym_Final] = ACTIONS(5135), - [anon_sym_final] = ACTIONS(5135), - [anon_sym_FINAL] = ACTIONS(5135), - [anon_sym_Function] = ACTIONS(5135), - [anon_sym_function] = ACTIONS(5135), - [anon_sym_FUNCTION] = ACTIONS(5135), - [anon_sym_Include] = ACTIONS(5135), - [anon_sym_include] = ACTIONS(5135), - [anon_sym_INCLUDE] = ACTIONS(5135), - [anon_sym_New] = ACTIONS(5135), - [anon_sym_new] = ACTIONS(5135), - [anon_sym_NEW] = ACTIONS(5135), - [anon_sym_Package] = ACTIONS(5135), - [anon_sym_package] = ACTIONS(5135), - [anon_sym_PACKAGE] = ACTIONS(5135), - [anon_sym_Private] = ACTIONS(5135), - [anon_sym_private] = ACTIONS(5135), - [anon_sym_PRIVATE] = ACTIONS(5135), - [anon_sym_Public] = ACTIONS(5135), - [anon_sym_public] = ACTIONS(5135), - [anon_sym_PUBLIC] = ACTIONS(5135), - [anon_sym_Remote] = ACTIONS(5135), - [anon_sym_remote] = ACTIONS(5135), - [anon_sym_REMOTE] = ACTIONS(5135), - [anon_sym_Static] = ACTIONS(5135), - [anon_sym_static] = ACTIONS(5135), - [anon_sym_STATIC] = ACTIONS(5135), - [sym__java_block_open] = ACTIONS(5137), - [sym__static_type_prefix] = ACTIONS(5137), + [STATE(2248)] = { + [sym_identifier] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_let] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_Query] = ACTIONS(5182), + [anon_sym_query] = ACTIONS(5182), + [anon_sym_QUERY] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5182), + [anon_sym_DASH] = ACTIONS(5182), + [anon_sym_SLASH] = ACTIONS(5182), + [anon_sym_BANG] = ACTIONS(5184), + [anon_sym_TILDE] = ACTIONS(5184), + [aux_sym_unary_operator_token1] = ACTIONS(5182), + [anon_sym_PLUS_PLUS] = ACTIONS(5184), + [anon_sym_DASH_DASH] = ACTIONS(5184), + [anon_sym_DQUOTE] = ACTIONS(5184), + [anon_sym_SQUOTE] = ACTIONS(5184), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5182), + [aux_sym_number_token2] = ACTIONS(5184), + [anon_sym_This] = ACTIONS(5182), + [anon_sym_this] = ACTIONS(5182), + [anon_sym_THIS] = ACTIONS(5182), + [anon_sym_Super] = ACTIONS(5182), + [anon_sym_super] = ACTIONS(5182), + [anon_sym_SUPER] = ACTIONS(5182), + [anon_sym_True] = ACTIONS(5182), + [anon_sym_true] = ACTIONS(5182), + [anon_sym_TRUE] = ACTIONS(5182), + [anon_sym_False] = ACTIONS(5182), + [anon_sym_false] = ACTIONS(5182), + [anon_sym_FALSE] = ACTIONS(5182), + [anon_sym_Null] = ACTIONS(5182), + [anon_sym_null] = ACTIONS(5182), + [anon_sym_NULL] = ACTIONS(5182), + [anon_sym_Undefined] = ACTIONS(5182), + [anon_sym_undefined] = ACTIONS(5182), + [anon_sym_UNDEFINED] = ACTIONS(5182), + [anon_sym_get] = ACTIONS(5182), + [anon_sym_set] = ACTIONS(5182), + [anon_sym_POUND] = ACTIONS(5182), + [sym_hash_empty] = ACTIONS(5184), + [anon_sym_export] = ACTIONS(5182), + [anon_sym_QueryExecute] = ACTIONS(5182), + [anon_sym_queryexecute] = ACTIONS(5182), + [anon_sym_QUERYEXECUTE] = ACTIONS(5182), + [anon_sym_queryExecute] = ACTIONS(5182), + [anon_sym_BQUOTE] = ACTIONS(5184), + [anon_sym_Abstract] = ACTIONS(5182), + [anon_sym_abstract] = ACTIONS(5182), + [anon_sym_ABSTRACT] = ACTIONS(5182), + [anon_sym_Component] = ACTIONS(5182), + [anon_sym_component] = ACTIONS(5182), + [anon_sym_COMPONENT] = ACTIONS(5182), + [anon_sym_Debugger] = ACTIONS(5182), + [anon_sym_debugger] = ACTIONS(5182), + [anon_sym_DEBUGGER] = ACTIONS(5182), + [anon_sym_Final] = ACTIONS(5182), + [anon_sym_final] = ACTIONS(5182), + [anon_sym_FINAL] = ACTIONS(5182), + [anon_sym_Function] = ACTIONS(5182), + [anon_sym_function] = ACTIONS(5182), + [anon_sym_FUNCTION] = ACTIONS(5182), + [anon_sym_Include] = ACTIONS(5182), + [anon_sym_include] = ACTIONS(5182), + [anon_sym_INCLUDE] = ACTIONS(5182), + [anon_sym_New] = ACTIONS(5182), + [anon_sym_new] = ACTIONS(5182), + [anon_sym_NEW] = ACTIONS(5182), + [anon_sym_Package] = ACTIONS(5182), + [anon_sym_package] = ACTIONS(5182), + [anon_sym_PACKAGE] = ACTIONS(5182), + [anon_sym_Private] = ACTIONS(5182), + [anon_sym_private] = ACTIONS(5182), + [anon_sym_PRIVATE] = ACTIONS(5182), + [anon_sym_Public] = ACTIONS(5182), + [anon_sym_public] = ACTIONS(5182), + [anon_sym_PUBLIC] = ACTIONS(5182), + [anon_sym_Remote] = ACTIONS(5182), + [anon_sym_remote] = ACTIONS(5182), + [anon_sym_REMOTE] = ACTIONS(5182), + [anon_sym_Static] = ACTIONS(5182), + [anon_sym_static] = ACTIONS(5182), + [anon_sym_STATIC] = ACTIONS(5182), + [sym__java_block_open] = ACTIONS(5184), + [sym__static_type_prefix] = ACTIONS(5184), }, - [STATE(2219)] = { + [STATE(2249)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(527), + [anon_sym_DASH_GT] = ACTIONS(527), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2250)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5171), [anon_sym_SEMI] = ACTIONS(404), [anon_sym_EQ] = ACTIONS(555), [anon_sym_LBRACK] = ACTIONS(404), @@ -346249,32 +350404,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2220)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2251)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1220), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -346305,7 +350460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -346329,22 +350484,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2221)] = { + [STATE(2252)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(527), + [anon_sym_DASH_GT] = ACTIONS(527), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2253)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5171), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1220), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), @@ -346427,17 +350671,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2222)] = { + [STATE(2254)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -346516,105 +350760,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2223)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(527), - [anon_sym_DASH_GT] = ACTIONS(527), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2224)] = { + [STATE(2255)] = { [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), [aux_sym__operator_shaped_name_token1] = ACTIONS(406), [aux_sym__operator_shaped_name_token2] = ACTIONS(406), [aux_sym__operator_shaped_name_token3] = ACTIONS(406), @@ -346694,16 +350849,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(404), [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2225)] = { + [STATE(2256)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -346778,196 +350934,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2226)] = { - [sym_identifier] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5157), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_let] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_Query] = ACTIONS(5155), - [anon_sym_query] = ACTIONS(5155), - [anon_sym_QUERY] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5157), - [anon_sym_TILDE] = ACTIONS(5157), - [aux_sym_unary_operator_token1] = ACTIONS(5155), - [anon_sym_PLUS_PLUS] = ACTIONS(5157), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DQUOTE] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5157), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5155), - [aux_sym_number_token2] = ACTIONS(5157), - [anon_sym_This] = ACTIONS(5155), - [anon_sym_this] = ACTIONS(5155), - [anon_sym_THIS] = ACTIONS(5155), - [anon_sym_Super] = ACTIONS(5155), - [anon_sym_super] = ACTIONS(5155), - [anon_sym_SUPER] = ACTIONS(5155), - [anon_sym_True] = ACTIONS(5155), - [anon_sym_true] = ACTIONS(5155), - [anon_sym_TRUE] = ACTIONS(5155), - [anon_sym_False] = ACTIONS(5155), - [anon_sym_false] = ACTIONS(5155), - [anon_sym_FALSE] = ACTIONS(5155), - [anon_sym_Null] = ACTIONS(5155), - [anon_sym_null] = ACTIONS(5155), - [anon_sym_NULL] = ACTIONS(5155), - [anon_sym_Undefined] = ACTIONS(5155), - [anon_sym_undefined] = ACTIONS(5155), - [anon_sym_UNDEFINED] = ACTIONS(5155), - [anon_sym_get] = ACTIONS(5155), - [anon_sym_set] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [sym_hash_empty] = ACTIONS(5157), - [anon_sym_export] = ACTIONS(5155), - [anon_sym_QueryExecute] = ACTIONS(5155), - [anon_sym_queryexecute] = ACTIONS(5155), - [anon_sym_QUERYEXECUTE] = ACTIONS(5155), - [anon_sym_queryExecute] = ACTIONS(5155), - [anon_sym_BQUOTE] = ACTIONS(5157), - [anon_sym_Abstract] = ACTIONS(5155), - [anon_sym_abstract] = ACTIONS(5155), - [anon_sym_ABSTRACT] = ACTIONS(5155), - [anon_sym_Component] = ACTIONS(5155), - [anon_sym_component] = ACTIONS(5155), - [anon_sym_COMPONENT] = ACTIONS(5155), - [anon_sym_Debugger] = ACTIONS(5155), - [anon_sym_debugger] = ACTIONS(5155), - [anon_sym_DEBUGGER] = ACTIONS(5155), - [anon_sym_Final] = ACTIONS(5155), - [anon_sym_final] = ACTIONS(5155), - [anon_sym_FINAL] = ACTIONS(5155), - [anon_sym_Function] = ACTIONS(5155), - [anon_sym_function] = ACTIONS(5155), - [anon_sym_FUNCTION] = ACTIONS(5155), - [anon_sym_Include] = ACTIONS(5155), - [anon_sym_include] = ACTIONS(5155), - [anon_sym_INCLUDE] = ACTIONS(5155), - [anon_sym_New] = ACTIONS(5155), - [anon_sym_new] = ACTIONS(5155), - [anon_sym_NEW] = ACTIONS(5155), - [anon_sym_Package] = ACTIONS(5155), - [anon_sym_package] = ACTIONS(5155), - [anon_sym_PACKAGE] = ACTIONS(5155), - [anon_sym_Private] = ACTIONS(5155), - [anon_sym_private] = ACTIONS(5155), - [anon_sym_PRIVATE] = ACTIONS(5155), - [anon_sym_Public] = ACTIONS(5155), - [anon_sym_public] = ACTIONS(5155), - [anon_sym_PUBLIC] = ACTIONS(5155), - [anon_sym_Remote] = ACTIONS(5155), - [anon_sym_remote] = ACTIONS(5155), - [anon_sym_REMOTE] = ACTIONS(5155), - [anon_sym_Static] = ACTIONS(5155), - [anon_sym_static] = ACTIONS(5155), - [anon_sym_STATIC] = ACTIONS(5155), - [sym__java_block_open] = ACTIONS(5157), - [sym__static_type_prefix] = ACTIONS(5157), - }, - [STATE(2227)] = { - [sym_identifier] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5145), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_let] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_Query] = ACTIONS(5143), - [anon_sym_query] = ACTIONS(5143), - [anon_sym_QUERY] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5145), - [anon_sym_TILDE] = ACTIONS(5145), - [aux_sym_unary_operator_token1] = ACTIONS(5143), - [anon_sym_PLUS_PLUS] = ACTIONS(5145), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DQUOTE] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5145), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5143), - [aux_sym_number_token2] = ACTIONS(5145), - [anon_sym_This] = ACTIONS(5143), - [anon_sym_this] = ACTIONS(5143), - [anon_sym_THIS] = ACTIONS(5143), - [anon_sym_Super] = ACTIONS(5143), - [anon_sym_super] = ACTIONS(5143), - [anon_sym_SUPER] = ACTIONS(5143), - [anon_sym_True] = ACTIONS(5143), - [anon_sym_true] = ACTIONS(5143), - [anon_sym_TRUE] = ACTIONS(5143), - [anon_sym_False] = ACTIONS(5143), - [anon_sym_false] = ACTIONS(5143), - [anon_sym_FALSE] = ACTIONS(5143), - [anon_sym_Null] = ACTIONS(5143), - [anon_sym_null] = ACTIONS(5143), - [anon_sym_NULL] = ACTIONS(5143), - [anon_sym_Undefined] = ACTIONS(5143), - [anon_sym_undefined] = ACTIONS(5143), - [anon_sym_UNDEFINED] = ACTIONS(5143), - [anon_sym_get] = ACTIONS(5143), - [anon_sym_set] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [sym_hash_empty] = ACTIONS(5145), - [anon_sym_export] = ACTIONS(5143), - [anon_sym_QueryExecute] = ACTIONS(5143), - [anon_sym_queryexecute] = ACTIONS(5143), - [anon_sym_QUERYEXECUTE] = ACTIONS(5143), - [anon_sym_queryExecute] = ACTIONS(5143), - [anon_sym_BQUOTE] = ACTIONS(5145), - [anon_sym_Abstract] = ACTIONS(5143), - [anon_sym_abstract] = ACTIONS(5143), - [anon_sym_ABSTRACT] = ACTIONS(5143), - [anon_sym_Component] = ACTIONS(5143), - [anon_sym_component] = ACTIONS(5143), - [anon_sym_COMPONENT] = ACTIONS(5143), - [anon_sym_Debugger] = ACTIONS(5143), - [anon_sym_debugger] = ACTIONS(5143), - [anon_sym_DEBUGGER] = ACTIONS(5143), - [anon_sym_Final] = ACTIONS(5143), - [anon_sym_final] = ACTIONS(5143), - [anon_sym_FINAL] = ACTIONS(5143), - [anon_sym_Function] = ACTIONS(5143), - [anon_sym_function] = ACTIONS(5143), - [anon_sym_FUNCTION] = ACTIONS(5143), - [anon_sym_Include] = ACTIONS(5143), - [anon_sym_include] = ACTIONS(5143), - [anon_sym_INCLUDE] = ACTIONS(5143), - [anon_sym_New] = ACTIONS(5143), - [anon_sym_new] = ACTIONS(5143), - [anon_sym_NEW] = ACTIONS(5143), - [anon_sym_Package] = ACTIONS(5143), - [anon_sym_package] = ACTIONS(5143), - [anon_sym_PACKAGE] = ACTIONS(5143), - [anon_sym_Private] = ACTIONS(5143), - [anon_sym_private] = ACTIONS(5143), - [anon_sym_PRIVATE] = ACTIONS(5143), - [anon_sym_Public] = ACTIONS(5143), - [anon_sym_public] = ACTIONS(5143), - [anon_sym_PUBLIC] = ACTIONS(5143), - [anon_sym_Remote] = ACTIONS(5143), - [anon_sym_remote] = ACTIONS(5143), - [anon_sym_REMOTE] = ACTIONS(5143), - [anon_sym_Static] = ACTIONS(5143), - [anon_sym_static] = ACTIONS(5143), - [anon_sym_STATIC] = ACTIONS(5143), - [sym__java_block_open] = ACTIONS(5145), - [sym__static_type_prefix] = ACTIONS(5145), - }, - [STATE(2228)] = { + [STATE(2257)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1378), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_EQ_GT] = ACTIONS(430), [anon_sym_DASH_GT] = ACTIONS(430), @@ -347050,17 +351027,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2229)] = { + [STATE(2258)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(527), + [anon_sym_DASH_GT] = ACTIONS(527), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -347135,214 +351111,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2230)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5198), - [anon_sym_in] = ACTIONS(5198), - [anon_sym_IN] = ACTIONS(5198), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(5201), - [anon_sym_of] = ACTIONS(5201), - [anon_sym_OF] = ACTIONS(5201), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2231)] = { - [sym_identifier] = ACTIONS(5261), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2232)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2259)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(430), + [anon_sym_DASH_GT] = ACTIONS(430), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -347373,7 +351172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -347397,26 +351196,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2233)] = { + [STATE(2260)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -347495,194 +351294,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2234)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5268), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(527), - [anon_sym_DASH_GT] = ACTIONS(527), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2235)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2236)] = { + [STATE(2261)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1378), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), + [anon_sym_RBRACK] = ACTIONS(1198), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -347757,22 +351379,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(404), [anon_sym_INSTANCEOF] = ACTIONS(404), [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2237)] = { + [STATE(2262)] = { + [sym_identifier] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_let] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_Query] = ACTIONS(5153), + [anon_sym_query] = ACTIONS(5153), + [anon_sym_QUERY] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_TILDE] = ACTIONS(5155), + [aux_sym_unary_operator_token1] = ACTIONS(5153), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_DQUOTE] = ACTIONS(5155), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5153), + [aux_sym_number_token2] = ACTIONS(5155), + [anon_sym_This] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_THIS] = ACTIONS(5153), + [anon_sym_Super] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_SUPER] = ACTIONS(5153), + [anon_sym_True] = ACTIONS(5153), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_TRUE] = ACTIONS(5153), + [anon_sym_False] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_FALSE] = ACTIONS(5153), + [anon_sym_Null] = ACTIONS(5153), + [anon_sym_null] = ACTIONS(5153), + [anon_sym_NULL] = ACTIONS(5153), + [anon_sym_Undefined] = ACTIONS(5153), + [anon_sym_undefined] = ACTIONS(5153), + [anon_sym_UNDEFINED] = ACTIONS(5153), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_POUND] = ACTIONS(5153), + [sym_hash_empty] = ACTIONS(5155), + [anon_sym_export] = ACTIONS(5153), + [anon_sym_QueryExecute] = ACTIONS(5153), + [anon_sym_queryexecute] = ACTIONS(5153), + [anon_sym_QUERYEXECUTE] = ACTIONS(5153), + [anon_sym_queryExecute] = ACTIONS(5153), + [anon_sym_BQUOTE] = ACTIONS(5155), + [anon_sym_Abstract] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_ABSTRACT] = ACTIONS(5153), + [anon_sym_Component] = ACTIONS(5153), + [anon_sym_component] = ACTIONS(5153), + [anon_sym_COMPONENT] = ACTIONS(5153), + [anon_sym_Debugger] = ACTIONS(5153), + [anon_sym_debugger] = ACTIONS(5153), + [anon_sym_DEBUGGER] = ACTIONS(5153), + [anon_sym_Final] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_FINAL] = ACTIONS(5153), + [anon_sym_Function] = ACTIONS(5153), + [anon_sym_function] = ACTIONS(5153), + [anon_sym_FUNCTION] = ACTIONS(5153), + [anon_sym_Include] = ACTIONS(5153), + [anon_sym_include] = ACTIONS(5153), + [anon_sym_INCLUDE] = ACTIONS(5153), + [anon_sym_New] = ACTIONS(5153), + [anon_sym_new] = ACTIONS(5153), + [anon_sym_NEW] = ACTIONS(5153), + [anon_sym_Package] = ACTIONS(5153), + [anon_sym_package] = ACTIONS(5153), + [anon_sym_PACKAGE] = ACTIONS(5153), + [anon_sym_Private] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_PRIVATE] = ACTIONS(5153), + [anon_sym_Public] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_PUBLIC] = ACTIONS(5153), + [anon_sym_Remote] = ACTIONS(5153), + [anon_sym_remote] = ACTIONS(5153), + [anon_sym_REMOTE] = ACTIONS(5153), + [anon_sym_Static] = ACTIONS(5153), + [anon_sym_static] = ACTIONS(5153), + [anon_sym_STATIC] = ACTIONS(5153), + [sym__java_block_open] = ACTIONS(5155), + [sym__static_type_prefix] = ACTIONS(5155), + }, + [STATE(2263)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5214), - [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(5276), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5214), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), + [anon_sym_RBRACK] = ACTIONS(5276), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -347851,16 +351561,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2238)] = { + [STATE(2264)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1952), + [anon_sym_instanceof] = ACTIONS(1952), + [anon_sym_INSTANCEOF] = ACTIONS(1952), + [anon_sym_instanceOf] = ACTIONS(1952), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + [sym__parameter_separator] = ACTIONS(1955), + }, + [STATE(2265)] = { + [sym_identifier] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_let] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_Query] = ACTIONS(5149), + [anon_sym_query] = ACTIONS(5149), + [anon_sym_QUERY] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_TILDE] = ACTIONS(5151), + [aux_sym_unary_operator_token1] = ACTIONS(5149), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_DQUOTE] = ACTIONS(5151), + [anon_sym_SQUOTE] = ACTIONS(5151), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5149), + [aux_sym_number_token2] = ACTIONS(5151), + [anon_sym_This] = ACTIONS(5149), + [anon_sym_this] = ACTIONS(5149), + [anon_sym_THIS] = ACTIONS(5149), + [anon_sym_Super] = ACTIONS(5149), + [anon_sym_super] = ACTIONS(5149), + [anon_sym_SUPER] = ACTIONS(5149), + [anon_sym_True] = ACTIONS(5149), + [anon_sym_true] = ACTIONS(5149), + [anon_sym_TRUE] = ACTIONS(5149), + [anon_sym_False] = ACTIONS(5149), + [anon_sym_false] = ACTIONS(5149), + [anon_sym_FALSE] = ACTIONS(5149), + [anon_sym_Null] = ACTIONS(5149), + [anon_sym_null] = ACTIONS(5149), + [anon_sym_NULL] = ACTIONS(5149), + [anon_sym_Undefined] = ACTIONS(5149), + [anon_sym_undefined] = ACTIONS(5149), + [anon_sym_UNDEFINED] = ACTIONS(5149), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_POUND] = ACTIONS(5149), + [sym_hash_empty] = ACTIONS(5151), + [anon_sym_export] = ACTIONS(5149), + [anon_sym_QueryExecute] = ACTIONS(5149), + [anon_sym_queryexecute] = ACTIONS(5149), + [anon_sym_QUERYEXECUTE] = ACTIONS(5149), + [anon_sym_queryExecute] = ACTIONS(5149), + [anon_sym_BQUOTE] = ACTIONS(5151), + [anon_sym_Abstract] = ACTIONS(5149), + [anon_sym_abstract] = ACTIONS(5149), + [anon_sym_ABSTRACT] = ACTIONS(5149), + [anon_sym_Component] = ACTIONS(5149), + [anon_sym_component] = ACTIONS(5149), + [anon_sym_COMPONENT] = ACTIONS(5149), + [anon_sym_Debugger] = ACTIONS(5149), + [anon_sym_debugger] = ACTIONS(5149), + [anon_sym_DEBUGGER] = ACTIONS(5149), + [anon_sym_Final] = ACTIONS(5149), + [anon_sym_final] = ACTIONS(5149), + [anon_sym_FINAL] = ACTIONS(5149), + [anon_sym_Function] = ACTIONS(5149), + [anon_sym_function] = ACTIONS(5149), + [anon_sym_FUNCTION] = ACTIONS(5149), + [anon_sym_Include] = ACTIONS(5149), + [anon_sym_include] = ACTIONS(5149), + [anon_sym_INCLUDE] = ACTIONS(5149), + [anon_sym_New] = ACTIONS(5149), + [anon_sym_new] = ACTIONS(5149), + [anon_sym_NEW] = ACTIONS(5149), + [anon_sym_Package] = ACTIONS(5149), + [anon_sym_package] = ACTIONS(5149), + [anon_sym_PACKAGE] = ACTIONS(5149), + [anon_sym_Private] = ACTIONS(5149), + [anon_sym_private] = ACTIONS(5149), + [anon_sym_PRIVATE] = ACTIONS(5149), + [anon_sym_Public] = ACTIONS(5149), + [anon_sym_public] = ACTIONS(5149), + [anon_sym_PUBLIC] = ACTIONS(5149), + [anon_sym_Remote] = ACTIONS(5149), + [anon_sym_remote] = ACTIONS(5149), + [anon_sym_REMOTE] = ACTIONS(5149), + [anon_sym_Static] = ACTIONS(5149), + [anon_sym_static] = ACTIONS(5149), + [anon_sym_STATIC] = ACTIONS(5149), + [sym__java_block_open] = ACTIONS(5151), + [sym__static_type_prefix] = ACTIONS(5151), + }, + [STATE(2266)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5211), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(527), - [anon_sym_DASH_GT] = ACTIONS(527), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -347935,126 +351824,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2239)] = { - [sym_identifier] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), - }, - [STATE(2240)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2267)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5257), - [anon_sym_DASH_GT] = ACTIONS(5257), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -348085,7 +351885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -348109,41 +351909,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2241)] = { - [sym_identifier] = ACTIONS(406), + [STATE(2268)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_DASH_GT] = ACTIONS(1497), - [aux_sym__operator_shaped_name_token1] = ACTIONS(406), - [aux_sym__operator_shaped_name_token2] = ACTIONS(406), - [aux_sym__operator_shaped_name_token3] = ACTIONS(406), - [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(406), - [aux_sym__operator_shaped_name_token10] = ACTIONS(406), - [aux_sym__operator_shaped_name_token11] = ACTIONS(406), - [aux_sym__operator_shaped_name_token12] = ACTIONS(406), - [aux_sym__operator_shaped_name_token13] = ACTIONS(406), - [aux_sym__operator_shaped_name_token14] = ACTIONS(406), - [aux_sym__operator_shaped_name_token15] = ACTIONS(406), - [aux_sym__operator_shaped_name_token16] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -348174,7 +351974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -348198,26 +351998,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(406), - [anon_sym_instanceof] = ACTIONS(406), - [anon_sym_INSTANCEOF] = ACTIONS(406), - [anon_sym_instanceOf] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), - [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2242)] = { + [STATE(2269)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2270)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5279), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5272), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -348296,17 +352184,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2243)] = { + [STATE(2271)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1216), [anon_sym_LBRACK] = ACTIONS(404), [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), + [anon_sym_EQ_GT] = ACTIONS(1206), + [anon_sym_DASH_GT] = ACTIONS(1206), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -348385,33 +352273,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2244)] = { + [STATE(2272)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(404), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(1502), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1375), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -348442,7 +352329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -348466,40 +352353,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2245)] = { + [STATE(2273)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5281), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5262), + [anon_sym_DASH_GT] = ACTIONS(5262), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + }, + [STATE(2274)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(1502), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(430), - [anon_sym_DASH_GT] = ACTIONS(430), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -348530,7 +352507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -348554,26 +352531,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__automatic_semicolon] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2246)] = { + [STATE(2275)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -348652,122 +352629,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2247)] = { - [sym_identifier] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5277), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_let] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_Query] = ACTIONS(5275), - [anon_sym_query] = ACTIONS(5275), - [anon_sym_QUERY] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5277), - [anon_sym_TILDE] = ACTIONS(5277), - [aux_sym_unary_operator_token1] = ACTIONS(5275), - [anon_sym_PLUS_PLUS] = ACTIONS(5277), - [anon_sym_DASH_DASH] = ACTIONS(5277), - [anon_sym_DQUOTE] = ACTIONS(5277), - [anon_sym_SQUOTE] = ACTIONS(5277), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5275), - [aux_sym_number_token2] = ACTIONS(5277), - [anon_sym_This] = ACTIONS(5275), - [anon_sym_this] = ACTIONS(5275), - [anon_sym_THIS] = ACTIONS(5275), - [anon_sym_Super] = ACTIONS(5275), - [anon_sym_super] = ACTIONS(5275), - [anon_sym_SUPER] = ACTIONS(5275), - [anon_sym_True] = ACTIONS(5275), - [anon_sym_true] = ACTIONS(5275), - [anon_sym_TRUE] = ACTIONS(5275), - [anon_sym_False] = ACTIONS(5275), - [anon_sym_false] = ACTIONS(5275), - [anon_sym_FALSE] = ACTIONS(5275), - [anon_sym_Null] = ACTIONS(5275), - [anon_sym_null] = ACTIONS(5275), - [anon_sym_NULL] = ACTIONS(5275), - [anon_sym_Undefined] = ACTIONS(5275), - [anon_sym_undefined] = ACTIONS(5275), - [anon_sym_UNDEFINED] = ACTIONS(5275), - [anon_sym_get] = ACTIONS(5275), - [anon_sym_set] = ACTIONS(5275), - [anon_sym_POUND] = ACTIONS(5275), - [sym_hash_empty] = ACTIONS(5277), - [anon_sym_export] = ACTIONS(5275), - [anon_sym_QueryExecute] = ACTIONS(5275), - [anon_sym_queryexecute] = ACTIONS(5275), - [anon_sym_QUERYEXECUTE] = ACTIONS(5275), - [anon_sym_queryExecute] = ACTIONS(5275), - [anon_sym_BQUOTE] = ACTIONS(5277), - [anon_sym_Abstract] = ACTIONS(5275), - [anon_sym_abstract] = ACTIONS(5275), - [anon_sym_ABSTRACT] = ACTIONS(5275), - [anon_sym_Component] = ACTIONS(5275), - [anon_sym_component] = ACTIONS(5275), - [anon_sym_COMPONENT] = ACTIONS(5275), - [anon_sym_Debugger] = ACTIONS(5275), - [anon_sym_debugger] = ACTIONS(5275), - [anon_sym_DEBUGGER] = ACTIONS(5275), - [anon_sym_Final] = ACTIONS(5275), - [anon_sym_final] = ACTIONS(5275), - [anon_sym_FINAL] = ACTIONS(5275), - [anon_sym_Function] = ACTIONS(5275), - [anon_sym_function] = ACTIONS(5275), - [anon_sym_FUNCTION] = ACTIONS(5275), - [anon_sym_Include] = ACTIONS(5275), - [anon_sym_include] = ACTIONS(5275), - [anon_sym_INCLUDE] = ACTIONS(5275), - [anon_sym_New] = ACTIONS(5275), - [anon_sym_new] = ACTIONS(5275), - [anon_sym_NEW] = ACTIONS(5275), - [anon_sym_Package] = ACTIONS(5275), - [anon_sym_package] = ACTIONS(5275), - [anon_sym_PACKAGE] = ACTIONS(5275), - [anon_sym_Private] = ACTIONS(5275), - [anon_sym_private] = ACTIONS(5275), - [anon_sym_PRIVATE] = ACTIONS(5275), - [anon_sym_Public] = ACTIONS(5275), - [anon_sym_public] = ACTIONS(5275), - [anon_sym_PUBLIC] = ACTIONS(5275), - [anon_sym_Remote] = ACTIONS(5275), - [anon_sym_remote] = ACTIONS(5275), - [anon_sym_REMOTE] = ACTIONS(5275), - [anon_sym_Static] = ACTIONS(5275), - [anon_sym_static] = ACTIONS(5275), - [anon_sym_STATIC] = ACTIONS(5275), - [sym__java_block_open] = ACTIONS(5277), - [sym__static_type_prefix] = ACTIONS(5277), - }, - [STATE(2248)] = { + [STATE(2276)] = { + [sym_identifier] = ACTIONS(5264), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -348798,7 +352686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -348822,41 +352710,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2249)] = { + [STATE(2277)] = { + [sym_identifier] = ACTIONS(5139), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_let] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_Query] = ACTIONS(5139), + [anon_sym_query] = ACTIONS(5139), + [anon_sym_QUERY] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5141), + [anon_sym_TILDE] = ACTIONS(5141), + [aux_sym_unary_operator_token1] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_DQUOTE] = ACTIONS(5141), + [anon_sym_SQUOTE] = ACTIONS(5141), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5139), + [aux_sym_number_token2] = ACTIONS(5141), + [anon_sym_This] = ACTIONS(5139), + [anon_sym_this] = ACTIONS(5139), + [anon_sym_THIS] = ACTIONS(5139), + [anon_sym_Super] = ACTIONS(5139), + [anon_sym_super] = ACTIONS(5139), + [anon_sym_SUPER] = ACTIONS(5139), + [anon_sym_True] = ACTIONS(5139), + [anon_sym_true] = ACTIONS(5139), + [anon_sym_TRUE] = ACTIONS(5139), + [anon_sym_False] = ACTIONS(5139), + [anon_sym_false] = ACTIONS(5139), + [anon_sym_FALSE] = ACTIONS(5139), + [anon_sym_Null] = ACTIONS(5139), + [anon_sym_null] = ACTIONS(5139), + [anon_sym_NULL] = ACTIONS(5139), + [anon_sym_Undefined] = ACTIONS(5139), + [anon_sym_undefined] = ACTIONS(5139), + [anon_sym_UNDEFINED] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5139), + [anon_sym_set] = ACTIONS(5139), + [anon_sym_POUND] = ACTIONS(5139), + [sym_hash_empty] = ACTIONS(5141), + [anon_sym_export] = ACTIONS(5139), + [anon_sym_QueryExecute] = ACTIONS(5139), + [anon_sym_queryexecute] = ACTIONS(5139), + [anon_sym_QUERYEXECUTE] = ACTIONS(5139), + [anon_sym_queryExecute] = ACTIONS(5139), + [anon_sym_BQUOTE] = ACTIONS(5141), + [anon_sym_Abstract] = ACTIONS(5139), + [anon_sym_abstract] = ACTIONS(5139), + [anon_sym_ABSTRACT] = ACTIONS(5139), + [anon_sym_Component] = ACTIONS(5139), + [anon_sym_component] = ACTIONS(5139), + [anon_sym_COMPONENT] = ACTIONS(5139), + [anon_sym_Debugger] = ACTIONS(5139), + [anon_sym_debugger] = ACTIONS(5139), + [anon_sym_DEBUGGER] = ACTIONS(5139), + [anon_sym_Final] = ACTIONS(5139), + [anon_sym_final] = ACTIONS(5139), + [anon_sym_FINAL] = ACTIONS(5139), + [anon_sym_Function] = ACTIONS(5139), + [anon_sym_function] = ACTIONS(5139), + [anon_sym_FUNCTION] = ACTIONS(5139), + [anon_sym_Include] = ACTIONS(5139), + [anon_sym_include] = ACTIONS(5139), + [anon_sym_INCLUDE] = ACTIONS(5139), + [anon_sym_New] = ACTIONS(5139), + [anon_sym_new] = ACTIONS(5139), + [anon_sym_NEW] = ACTIONS(5139), + [anon_sym_Package] = ACTIONS(5139), + [anon_sym_package] = ACTIONS(5139), + [anon_sym_PACKAGE] = ACTIONS(5139), + [anon_sym_Private] = ACTIONS(5139), + [anon_sym_private] = ACTIONS(5139), + [anon_sym_PRIVATE] = ACTIONS(5139), + [anon_sym_Public] = ACTIONS(5139), + [anon_sym_public] = ACTIONS(5139), + [anon_sym_PUBLIC] = ACTIONS(5139), + [anon_sym_Remote] = ACTIONS(5139), + [anon_sym_remote] = ACTIONS(5139), + [anon_sym_REMOTE] = ACTIONS(5139), + [anon_sym_Static] = ACTIONS(5139), + [anon_sym_static] = ACTIONS(5139), + [anon_sym_STATIC] = ACTIONS(5139), + [sym__java_block_open] = ACTIONS(5141), + [sym__static_type_prefix] = ACTIONS(5141), + }, + [STATE(2278)] = { + [sym_identifier] = ACTIONS(406), [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1491), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1493), + [anon_sym_DASH_GT] = ACTIONS(1493), + [aux_sym__operator_shaped_name_token1] = ACTIONS(406), + [aux_sym__operator_shaped_name_token2] = ACTIONS(406), + [aux_sym__operator_shaped_name_token3] = ACTIONS(406), + [aux_sym__operator_shaped_name_token4] = ACTIONS(406), [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token6] = ACTIONS(406), [aux_sym__operator_shaped_name_token7] = ACTIONS(406), [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token9] = ACTIONS(406), + [aux_sym__operator_shaped_name_token10] = ACTIONS(406), + [aux_sym__operator_shaped_name_token11] = ACTIONS(406), + [aux_sym__operator_shaped_name_token12] = ACTIONS(406), + [aux_sym__operator_shaped_name_token13] = ACTIONS(406), + [aux_sym__operator_shaped_name_token14] = ACTIONS(406), + [aux_sym__operator_shaped_name_token15] = ACTIONS(406), + [aux_sym__operator_shaped_name_token16] = ACTIONS(406), [aux_sym__operator_shaped_name_token17] = ACTIONS(406), [sym_optional_chain] = ACTIONS(404), [sym_static_chain] = ACTIONS(404), @@ -348887,7 +352863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(406), [anon_sym_SLASH] = ACTIONS(406), [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(406), [anon_sym_STAR_STAR] = ACTIONS(406), [anon_sym_LT] = ACTIONS(406), [anon_sym_LT_EQ] = ACTIONS(404), @@ -348911,25 +352887,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), + [anon_sym_InstanceOf] = ACTIONS(406), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_INSTANCEOF] = ACTIONS(406), + [anon_sym_instanceOf] = ACTIONS(406), [sym__ternary_qmark] = ACTIONS(404), [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), + [sym_tag_linefeed] = ACTIONS(404), }, - [STATE(2250)] = { + [STATE(2279)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(5262), + [anon_sym_DASH_GT] = ACTIONS(5262), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + }, + [STATE(2280)] = { + [sym_identifier] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_let] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_Query] = ACTIONS(5143), + [anon_sym_query] = ACTIONS(5143), + [anon_sym_QUERY] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_TILDE] = ACTIONS(5145), + [aux_sym_unary_operator_token1] = ACTIONS(5143), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_DQUOTE] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5143), + [aux_sym_number_token2] = ACTIONS(5145), + [anon_sym_This] = ACTIONS(5143), + [anon_sym_this] = ACTIONS(5143), + [anon_sym_THIS] = ACTIONS(5143), + [anon_sym_Super] = ACTIONS(5143), + [anon_sym_super] = ACTIONS(5143), + [anon_sym_SUPER] = ACTIONS(5143), + [anon_sym_True] = ACTIONS(5143), + [anon_sym_true] = ACTIONS(5143), + [anon_sym_TRUE] = ACTIONS(5143), + [anon_sym_False] = ACTIONS(5143), + [anon_sym_false] = ACTIONS(5143), + [anon_sym_FALSE] = ACTIONS(5143), + [anon_sym_Null] = ACTIONS(5143), + [anon_sym_null] = ACTIONS(5143), + [anon_sym_NULL] = ACTIONS(5143), + [anon_sym_Undefined] = ACTIONS(5143), + [anon_sym_undefined] = ACTIONS(5143), + [anon_sym_UNDEFINED] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_POUND] = ACTIONS(5143), + [sym_hash_empty] = ACTIONS(5145), + [anon_sym_export] = ACTIONS(5143), + [anon_sym_QueryExecute] = ACTIONS(5143), + [anon_sym_queryexecute] = ACTIONS(5143), + [anon_sym_QUERYEXECUTE] = ACTIONS(5143), + [anon_sym_queryExecute] = ACTIONS(5143), + [anon_sym_BQUOTE] = ACTIONS(5145), + [anon_sym_Abstract] = ACTIONS(5143), + [anon_sym_abstract] = ACTIONS(5143), + [anon_sym_ABSTRACT] = ACTIONS(5143), + [anon_sym_Component] = ACTIONS(5143), + [anon_sym_component] = ACTIONS(5143), + [anon_sym_COMPONENT] = ACTIONS(5143), + [anon_sym_Debugger] = ACTIONS(5143), + [anon_sym_debugger] = ACTIONS(5143), + [anon_sym_DEBUGGER] = ACTIONS(5143), + [anon_sym_Final] = ACTIONS(5143), + [anon_sym_final] = ACTIONS(5143), + [anon_sym_FINAL] = ACTIONS(5143), + [anon_sym_Function] = ACTIONS(5143), + [anon_sym_function] = ACTIONS(5143), + [anon_sym_FUNCTION] = ACTIONS(5143), + [anon_sym_Include] = ACTIONS(5143), + [anon_sym_include] = ACTIONS(5143), + [anon_sym_INCLUDE] = ACTIONS(5143), + [anon_sym_New] = ACTIONS(5143), + [anon_sym_new] = ACTIONS(5143), + [anon_sym_NEW] = ACTIONS(5143), + [anon_sym_Package] = ACTIONS(5143), + [anon_sym_package] = ACTIONS(5143), + [anon_sym_PACKAGE] = ACTIONS(5143), + [anon_sym_Private] = ACTIONS(5143), + [anon_sym_private] = ACTIONS(5143), + [anon_sym_PRIVATE] = ACTIONS(5143), + [anon_sym_Public] = ACTIONS(5143), + [anon_sym_public] = ACTIONS(5143), + [anon_sym_PUBLIC] = ACTIONS(5143), + [anon_sym_Remote] = ACTIONS(5143), + [anon_sym_remote] = ACTIONS(5143), + [anon_sym_REMOTE] = ACTIONS(5143), + [anon_sym_Static] = ACTIONS(5143), + [anon_sym_static] = ACTIONS(5143), + [anon_sym_STATIC] = ACTIONS(5143), + [sym__java_block_open] = ACTIONS(5145), + [sym__static_type_prefix] = ACTIONS(5145), + }, + [STATE(2281)] = { + [sym_identifier] = ACTIONS(5285), + [anon_sym_LBRACE] = ACTIONS(5287), + [anon_sym_LPAREN] = ACTIONS(5287), + [anon_sym_let] = ACTIONS(5285), + [anon_sym_LBRACK] = ACTIONS(5287), + [anon_sym_Query] = ACTIONS(5285), + [anon_sym_query] = ACTIONS(5285), + [anon_sym_QUERY] = ACTIONS(5285), + [anon_sym_PLUS] = ACTIONS(5285), + [anon_sym_DASH] = ACTIONS(5285), + [anon_sym_SLASH] = ACTIONS(5285), + [anon_sym_BANG] = ACTIONS(5287), + [anon_sym_TILDE] = ACTIONS(5287), + [aux_sym_unary_operator_token1] = ACTIONS(5285), + [anon_sym_PLUS_PLUS] = ACTIONS(5287), + [anon_sym_DASH_DASH] = ACTIONS(5287), + [anon_sym_DQUOTE] = ACTIONS(5287), + [anon_sym_SQUOTE] = ACTIONS(5287), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5285), + [aux_sym_number_token2] = ACTIONS(5287), + [anon_sym_This] = ACTIONS(5285), + [anon_sym_this] = ACTIONS(5285), + [anon_sym_THIS] = ACTIONS(5285), + [anon_sym_Super] = ACTIONS(5285), + [anon_sym_super] = ACTIONS(5285), + [anon_sym_SUPER] = ACTIONS(5285), + [anon_sym_True] = ACTIONS(5285), + [anon_sym_true] = ACTIONS(5285), + [anon_sym_TRUE] = ACTIONS(5285), + [anon_sym_False] = ACTIONS(5285), + [anon_sym_false] = ACTIONS(5285), + [anon_sym_FALSE] = ACTIONS(5285), + [anon_sym_Null] = ACTIONS(5285), + [anon_sym_null] = ACTIONS(5285), + [anon_sym_NULL] = ACTIONS(5285), + [anon_sym_Undefined] = ACTIONS(5285), + [anon_sym_undefined] = ACTIONS(5285), + [anon_sym_UNDEFINED] = ACTIONS(5285), + [anon_sym_get] = ACTIONS(5285), + [anon_sym_set] = ACTIONS(5285), + [anon_sym_POUND] = ACTIONS(5285), + [sym_hash_empty] = ACTIONS(5287), + [anon_sym_export] = ACTIONS(5285), + [anon_sym_QueryExecute] = ACTIONS(5285), + [anon_sym_queryexecute] = ACTIONS(5285), + [anon_sym_QUERYEXECUTE] = ACTIONS(5285), + [anon_sym_queryExecute] = ACTIONS(5285), + [anon_sym_BQUOTE] = ACTIONS(5287), + [anon_sym_Abstract] = ACTIONS(5285), + [anon_sym_abstract] = ACTIONS(5285), + [anon_sym_ABSTRACT] = ACTIONS(5285), + [anon_sym_Component] = ACTIONS(5285), + [anon_sym_component] = ACTIONS(5285), + [anon_sym_COMPONENT] = ACTIONS(5285), + [anon_sym_Debugger] = ACTIONS(5285), + [anon_sym_debugger] = ACTIONS(5285), + [anon_sym_DEBUGGER] = ACTIONS(5285), + [anon_sym_Final] = ACTIONS(5285), + [anon_sym_final] = ACTIONS(5285), + [anon_sym_FINAL] = ACTIONS(5285), + [anon_sym_Function] = ACTIONS(5285), + [anon_sym_function] = ACTIONS(5285), + [anon_sym_FUNCTION] = ACTIONS(5285), + [anon_sym_Include] = ACTIONS(5285), + [anon_sym_include] = ACTIONS(5285), + [anon_sym_INCLUDE] = ACTIONS(5285), + [anon_sym_New] = ACTIONS(5285), + [anon_sym_new] = ACTIONS(5285), + [anon_sym_NEW] = ACTIONS(5285), + [anon_sym_Package] = ACTIONS(5285), + [anon_sym_package] = ACTIONS(5285), + [anon_sym_PACKAGE] = ACTIONS(5285), + [anon_sym_Private] = ACTIONS(5285), + [anon_sym_private] = ACTIONS(5285), + [anon_sym_PRIVATE] = ACTIONS(5285), + [anon_sym_Public] = ACTIONS(5285), + [anon_sym_public] = ACTIONS(5285), + [anon_sym_PUBLIC] = ACTIONS(5285), + [anon_sym_Remote] = ACTIONS(5285), + [anon_sym_remote] = ACTIONS(5285), + [anon_sym_REMOTE] = ACTIONS(5285), + [anon_sym_Static] = ACTIONS(5285), + [anon_sym_static] = ACTIONS(5285), + [anon_sym_STATIC] = ACTIONS(5285), + [sym__java_block_open] = ACTIONS(5287), + [sym__static_type_prefix] = ACTIONS(5287), + }, + [STATE(2282)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5218), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2283)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1387), - [anon_sym_DASH_GT] = ACTIONS(1387), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -349008,17 +353341,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2251)] = { + [STATE(2284)] = { + [sym_identifier] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_Query] = ACTIONS(5180), + [anon_sym_query] = ACTIONS(5180), + [anon_sym_QUERY] = ACTIONS(5180), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [aux_sym_unary_operator_token1] = ACTIONS(5180), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(5180), + [aux_sym_number_token2] = ACTIONS(2215), + [anon_sym_This] = ACTIONS(5180), + [anon_sym_this] = ACTIONS(5180), + [anon_sym_THIS] = ACTIONS(5180), + [anon_sym_Super] = ACTIONS(5180), + [anon_sym_super] = ACTIONS(5180), + [anon_sym_SUPER] = ACTIONS(5180), + [anon_sym_True] = ACTIONS(5180), + [anon_sym_true] = ACTIONS(5180), + [anon_sym_TRUE] = ACTIONS(5180), + [anon_sym_False] = ACTIONS(5180), + [anon_sym_false] = ACTIONS(5180), + [anon_sym_FALSE] = ACTIONS(5180), + [anon_sym_Null] = ACTIONS(5180), + [anon_sym_null] = ACTIONS(5180), + [anon_sym_NULL] = ACTIONS(5180), + [anon_sym_Undefined] = ACTIONS(5180), + [anon_sym_undefined] = ACTIONS(5180), + [anon_sym_UNDEFINED] = ACTIONS(5180), + [anon_sym_get] = ACTIONS(5180), + [anon_sym_set] = ACTIONS(5180), + [anon_sym_POUND] = ACTIONS(5180), + [sym_hash_empty] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(5180), + [anon_sym_QueryExecute] = ACTIONS(5180), + [anon_sym_queryexecute] = ACTIONS(5180), + [anon_sym_QUERYEXECUTE] = ACTIONS(5180), + [anon_sym_queryExecute] = ACTIONS(5180), + [anon_sym_BQUOTE] = ACTIONS(2215), + [anon_sym_Abstract] = ACTIONS(5180), + [anon_sym_abstract] = ACTIONS(5180), + [anon_sym_ABSTRACT] = ACTIONS(5180), + [anon_sym_Component] = ACTIONS(5180), + [anon_sym_component] = ACTIONS(5180), + [anon_sym_COMPONENT] = ACTIONS(5180), + [anon_sym_Debugger] = ACTIONS(5180), + [anon_sym_debugger] = ACTIONS(5180), + [anon_sym_DEBUGGER] = ACTIONS(5180), + [anon_sym_Final] = ACTIONS(5180), + [anon_sym_final] = ACTIONS(5180), + [anon_sym_FINAL] = ACTIONS(5180), + [anon_sym_Function] = ACTIONS(5180), + [anon_sym_function] = ACTIONS(5180), + [anon_sym_FUNCTION] = ACTIONS(5180), + [anon_sym_Include] = ACTIONS(5180), + [anon_sym_include] = ACTIONS(5180), + [anon_sym_INCLUDE] = ACTIONS(5180), + [anon_sym_New] = ACTIONS(5180), + [anon_sym_new] = ACTIONS(5180), + [anon_sym_NEW] = ACTIONS(5180), + [anon_sym_Package] = ACTIONS(5180), + [anon_sym_package] = ACTIONS(5180), + [anon_sym_PACKAGE] = ACTIONS(5180), + [anon_sym_Private] = ACTIONS(5180), + [anon_sym_private] = ACTIONS(5180), + [anon_sym_PRIVATE] = ACTIONS(5180), + [anon_sym_Public] = ACTIONS(5180), + [anon_sym_public] = ACTIONS(5180), + [anon_sym_PUBLIC] = ACTIONS(5180), + [anon_sym_Remote] = ACTIONS(5180), + [anon_sym_remote] = ACTIONS(5180), + [anon_sym_REMOTE] = ACTIONS(5180), + [anon_sym_Static] = ACTIONS(5180), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_STATIC] = ACTIONS(5180), + [sym__java_block_open] = ACTIONS(2215), + [sym__static_type_prefix] = ACTIONS(2215), + }, + [STATE(2285)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_EQ_GT] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -349097,17 +353519,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2252)] = { + [STATE(2286)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(5257), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + }, + [STATE(2287)] = { + [sym__initializer] = STATE(4616), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5126), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5255), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -349182,197 +353690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(5126), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2253)] = { - [sym_identifier] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5165), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_let] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_Query] = ACTIONS(5163), - [anon_sym_query] = ACTIONS(5163), - [anon_sym_QUERY] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_TILDE] = ACTIONS(5165), - [aux_sym_unary_operator_token1] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5165), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DQUOTE] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5165), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(5163), - [aux_sym_number_token2] = ACTIONS(5165), - [anon_sym_This] = ACTIONS(5163), - [anon_sym_this] = ACTIONS(5163), - [anon_sym_THIS] = ACTIONS(5163), - [anon_sym_Super] = ACTIONS(5163), - [anon_sym_super] = ACTIONS(5163), - [anon_sym_SUPER] = ACTIONS(5163), - [anon_sym_True] = ACTIONS(5163), - [anon_sym_true] = ACTIONS(5163), - [anon_sym_TRUE] = ACTIONS(5163), - [anon_sym_False] = ACTIONS(5163), - [anon_sym_false] = ACTIONS(5163), - [anon_sym_FALSE] = ACTIONS(5163), - [anon_sym_Null] = ACTIONS(5163), - [anon_sym_null] = ACTIONS(5163), - [anon_sym_NULL] = ACTIONS(5163), - [anon_sym_Undefined] = ACTIONS(5163), - [anon_sym_undefined] = ACTIONS(5163), - [anon_sym_UNDEFINED] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5163), - [anon_sym_set] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [sym_hash_empty] = ACTIONS(5165), - [anon_sym_export] = ACTIONS(5163), - [anon_sym_QueryExecute] = ACTIONS(5163), - [anon_sym_queryexecute] = ACTIONS(5163), - [anon_sym_QUERYEXECUTE] = ACTIONS(5163), - [anon_sym_queryExecute] = ACTIONS(5163), - [anon_sym_BQUOTE] = ACTIONS(5165), - [anon_sym_Abstract] = ACTIONS(5163), - [anon_sym_abstract] = ACTIONS(5163), - [anon_sym_ABSTRACT] = ACTIONS(5163), - [anon_sym_Component] = ACTIONS(5163), - [anon_sym_component] = ACTIONS(5163), - [anon_sym_COMPONENT] = ACTIONS(5163), - [anon_sym_Debugger] = ACTIONS(5163), - [anon_sym_debugger] = ACTIONS(5163), - [anon_sym_DEBUGGER] = ACTIONS(5163), - [anon_sym_Final] = ACTIONS(5163), - [anon_sym_final] = ACTIONS(5163), - [anon_sym_FINAL] = ACTIONS(5163), - [anon_sym_Function] = ACTIONS(5163), - [anon_sym_function] = ACTIONS(5163), - [anon_sym_FUNCTION] = ACTIONS(5163), - [anon_sym_Include] = ACTIONS(5163), - [anon_sym_include] = ACTIONS(5163), - [anon_sym_INCLUDE] = ACTIONS(5163), - [anon_sym_New] = ACTIONS(5163), - [anon_sym_new] = ACTIONS(5163), - [anon_sym_NEW] = ACTIONS(5163), - [anon_sym_Package] = ACTIONS(5163), - [anon_sym_package] = ACTIONS(5163), - [anon_sym_PACKAGE] = ACTIONS(5163), - [anon_sym_Private] = ACTIONS(5163), - [anon_sym_private] = ACTIONS(5163), - [anon_sym_PRIVATE] = ACTIONS(5163), - [anon_sym_Public] = ACTIONS(5163), - [anon_sym_public] = ACTIONS(5163), - [anon_sym_PUBLIC] = ACTIONS(5163), - [anon_sym_Remote] = ACTIONS(5163), - [anon_sym_remote] = ACTIONS(5163), - [anon_sym_REMOTE] = ACTIONS(5163), - [anon_sym_Static] = ACTIONS(5163), - [anon_sym_static] = ACTIONS(5163), - [anon_sym_STATIC] = ACTIONS(5163), - [sym__java_block_open] = ACTIONS(5165), - [sym__static_type_prefix] = ACTIONS(5165), - }, - [STATE(2254)] = { - [sym_identifier] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2003), - [sym_optional_chain] = ACTIONS(2005), - [sym_static_chain] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_PERCENT_EQ] = ACTIONS(2005), - [anon_sym_CARET_EQ] = ACTIONS(2005), - [anon_sym_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_EQ] = ACTIONS(2005), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2005), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_GT_GT_GT] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_PERCENT] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2003), - [anon_sym_STAR_STAR] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT_GT] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2005), - [aux_sym_binary_expression_token1] = ACTIONS(2005), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2003), - [aux_sym_binary_expression_token2] = ACTIONS(2003), - [aux_sym_binary_expression_token3] = ACTIONS(2003), - [aux_sym_binary_expression_token4] = ACTIONS(2005), - [aux_sym_binary_expression_token5] = ACTIONS(2005), - [aux_sym_binary_expression_token6] = ACTIONS(2005), - [anon_sym_QMARK_QMARK] = ACTIONS(2003), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2003), - [anon_sym_in] = ACTIONS(2003), - [anon_sym_IN] = ACTIONS(2003), - [anon_sym_InstanceOf] = ACTIONS(2003), - [anon_sym_instanceof] = ACTIONS(2003), - [anon_sym_INSTANCEOF] = ACTIONS(2003), - [anon_sym_instanceOf] = ACTIONS(2003), - [sym__automatic_semicolon] = ACTIONS(2005), - [sym__ternary_qmark] = ACTIONS(2005), - [sym__elvis_operator] = ACTIONS(2005), - [sym_logical_or] = ACTIONS(2005), - [sym_tag_linefeed] = ACTIONS(2005), - }, - [STATE(2255)] = { + [STATE(2288)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1204), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_RBRACK] = ACTIONS(1198), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -349451,16 +353783,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2256)] = { + [STATE(2289)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1127), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_RBRACK] = ACTIONS(1198), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -349539,119 +353871,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2257)] = { - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2009), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2007), - [anon_sym_instanceof] = ACTIONS(2007), - [anon_sym_INSTANCEOF] = ACTIONS(2007), - [anon_sym_instanceOf] = ACTIONS(2007), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), - [sym__parameter_separator] = ACTIONS(2009), + [STATE(2290)] = { + [sym_identifier] = ACTIONS(2045), + [anon_sym_DOT] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_EQ] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2045), + [sym_optional_chain] = ACTIONS(2047), + [sym_static_chain] = ACTIONS(2047), + [anon_sym_PLUS_EQ] = ACTIONS(2047), + [anon_sym_DASH_EQ] = ACTIONS(2047), + [anon_sym_STAR_EQ] = ACTIONS(2047), + [anon_sym_SLASH_EQ] = ACTIONS(2047), + [anon_sym_PERCENT_EQ] = ACTIONS(2047), + [anon_sym_CARET_EQ] = ACTIONS(2047), + [anon_sym_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_LT_LT_EQ] = ACTIONS(2047), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_GT_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_CARET] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_SLASH] = ACTIONS(2045), + [anon_sym_PERCENT] = ACTIONS(2045), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_STAR_STAR] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_EQ_EQ] = ACTIONS(2045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2047), + [anon_sym_LT_GT] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2047), + [aux_sym_binary_expression_token1] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [aux_sym_binary_expression_token2] = ACTIONS(2045), + [aux_sym_binary_expression_token3] = ACTIONS(2045), + [aux_sym_binary_expression_token4] = ACTIONS(2047), + [aux_sym_binary_expression_token5] = ACTIONS(2047), + [aux_sym_binary_expression_token6] = ACTIONS(2047), + [anon_sym_QMARK_QMARK] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2045), + [anon_sym_in] = ACTIONS(2045), + [anon_sym_IN] = ACTIONS(2045), + [anon_sym_InstanceOf] = ACTIONS(2045), + [anon_sym_instanceof] = ACTIONS(2045), + [anon_sym_INSTANCEOF] = ACTIONS(2045), + [anon_sym_instanceOf] = ACTIONS(2045), + [sym__automatic_semicolon] = ACTIONS(2047), + [sym__ternary_qmark] = ACTIONS(2047), + [sym__elvis_operator] = ACTIONS(2047), + [sym_logical_or] = ACTIONS(2047), + [sym_tag_linefeed] = ACTIONS(2047), }, - [STATE(2258)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2291)] = { + [sym_identifier] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_RPAREN] = ACTIONS(2107), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2105), + [sym_optional_chain] = ACTIONS(2107), + [sym_static_chain] = ACTIONS(2107), + [anon_sym_PLUS_EQ] = ACTIONS(2107), + [anon_sym_DASH_EQ] = ACTIONS(2107), + [anon_sym_STAR_EQ] = ACTIONS(2107), + [anon_sym_SLASH_EQ] = ACTIONS(2107), + [anon_sym_PERCENT_EQ] = ACTIONS(2107), + [anon_sym_CARET_EQ] = ACTIONS(2107), + [anon_sym_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_LT_LT_EQ] = ACTIONS(2107), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2107), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_GT] = ACTIONS(2107), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [aux_sym_binary_expression_token1] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2105), + [aux_sym_binary_expression_token2] = ACTIONS(2105), + [aux_sym_binary_expression_token3] = ACTIONS(2105), + [aux_sym_binary_expression_token4] = ACTIONS(2107), + [aux_sym_binary_expression_token5] = ACTIONS(2107), + [aux_sym_binary_expression_token6] = ACTIONS(2107), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_IN] = ACTIONS(2105), + [anon_sym_InstanceOf] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_INSTANCEOF] = ACTIONS(2105), + [anon_sym_instanceOf] = ACTIONS(2105), + [sym__ternary_qmark] = ACTIONS(2107), + [sym__elvis_operator] = ACTIONS(2107), + [sym_logical_or] = ACTIONS(2107), + [sym__parameter_separator] = ACTIONS(2107), + }, + [STATE(2292)] = { + [sym_identifier] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_EQ] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2073), + [sym_optional_chain] = ACTIONS(2075), + [sym_static_chain] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2075), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_GT_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_PERCENT] = ACTIONS(2073), + [anon_sym_BSLASH] = ACTIONS(2073), + [anon_sym_STAR_STAR] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_LT_GT] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [aux_sym_binary_expression_token1] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2073), + [aux_sym_binary_expression_token2] = ACTIONS(2073), + [aux_sym_binary_expression_token3] = ACTIONS(2073), + [aux_sym_binary_expression_token4] = ACTIONS(2075), + [aux_sym_binary_expression_token5] = ACTIONS(2075), + [aux_sym_binary_expression_token6] = ACTIONS(2075), + [anon_sym_QMARK_QMARK] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2073), + [anon_sym_in] = ACTIONS(2073), + [anon_sym_IN] = ACTIONS(2073), + [anon_sym_InstanceOf] = ACTIONS(2073), + [anon_sym_instanceof] = ACTIONS(2073), + [anon_sym_INSTANCEOF] = ACTIONS(2073), + [anon_sym_instanceOf] = ACTIONS(2073), + [sym__automatic_semicolon] = ACTIONS(2075), + [sym__ternary_qmark] = ACTIONS(2075), + [sym__elvis_operator] = ACTIONS(2075), + [sym_logical_or] = ACTIONS(2075), + [sym_tag_linefeed] = ACTIONS(2075), + }, + [STATE(2293)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(5276), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -349682,7 +354191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -349706,814 +354215,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(509), - }, - [STATE(2259)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2020), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2020), - [anon_sym_instanceof] = ACTIONS(2020), - [anon_sym_INSTANCEOF] = ACTIONS(2020), - [anon_sym_instanceOf] = ACTIONS(2020), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - [sym__parameter_separator] = ACTIONS(2023), - }, - [STATE(2260)] = { - [sym_identifier] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1981), - [sym_optional_chain] = ACTIONS(1983), - [sym_static_chain] = ACTIONS(1983), - [anon_sym_PLUS_EQ] = ACTIONS(1983), - [anon_sym_DASH_EQ] = ACTIONS(1983), - [anon_sym_STAR_EQ] = ACTIONS(1983), - [anon_sym_SLASH_EQ] = ACTIONS(1983), - [anon_sym_PERCENT_EQ] = ACTIONS(1983), - [anon_sym_CARET_EQ] = ACTIONS(1983), - [anon_sym_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_LT_LT_EQ] = ACTIONS(1983), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_BSLASH] = ACTIONS(1981), - [anon_sym_STAR_STAR] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1983), - [anon_sym_LT_GT] = ACTIONS(1983), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1983), - [aux_sym_binary_expression_token1] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1981), - [aux_sym_binary_expression_token2] = ACTIONS(1981), - [aux_sym_binary_expression_token3] = ACTIONS(1981), - [aux_sym_binary_expression_token4] = ACTIONS(1983), - [aux_sym_binary_expression_token5] = ACTIONS(1983), - [aux_sym_binary_expression_token6] = ACTIONS(1983), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_IN] = ACTIONS(1981), - [anon_sym_InstanceOf] = ACTIONS(1981), - [anon_sym_instanceof] = ACTIONS(1981), - [anon_sym_INSTANCEOF] = ACTIONS(1981), - [anon_sym_instanceOf] = ACTIONS(1981), - [sym__automatic_semicolon] = ACTIONS(1983), - [sym__ternary_qmark] = ACTIONS(1983), - [sym__elvis_operator] = ACTIONS(1983), - [sym_logical_or] = ACTIONS(1983), - [sym_tag_linefeed] = ACTIONS(1983), - }, - [STATE(2261)] = { - [sym_identifier] = ACTIONS(1985), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1985), - [sym_optional_chain] = ACTIONS(1987), - [sym_static_chain] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1987), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_GT_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_PERCENT] = ACTIONS(1985), - [anon_sym_BSLASH] = ACTIONS(1985), - [anon_sym_STAR_STAR] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1987), - [anon_sym_LT_GT] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1987), - [aux_sym_binary_expression_token1] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1985), - [aux_sym_binary_expression_token2] = ACTIONS(1985), - [aux_sym_binary_expression_token3] = ACTIONS(1985), - [aux_sym_binary_expression_token4] = ACTIONS(1987), - [aux_sym_binary_expression_token5] = ACTIONS(1987), - [aux_sym_binary_expression_token6] = ACTIONS(1987), - [anon_sym_QMARK_QMARK] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1985), - [anon_sym_in] = ACTIONS(1985), - [anon_sym_IN] = ACTIONS(1985), - [anon_sym_InstanceOf] = ACTIONS(1985), - [anon_sym_instanceof] = ACTIONS(1985), - [anon_sym_INSTANCEOF] = ACTIONS(1985), - [anon_sym_instanceOf] = ACTIONS(1985), - [sym__automatic_semicolon] = ACTIONS(1987), - [sym__ternary_qmark] = ACTIONS(1987), - [sym__elvis_operator] = ACTIONS(1987), - [sym_logical_or] = ACTIONS(1987), - [sym_tag_linefeed] = ACTIONS(1987), - }, - [STATE(2262)] = { - [sym_identifier] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2095), - [sym_optional_chain] = ACTIONS(2097), - [sym_static_chain] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2097), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2095), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_BSLASH] = ACTIONS(2095), - [anon_sym_STAR_STAR] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_GT] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [aux_sym_binary_expression_token1] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2095), - [aux_sym_binary_expression_token2] = ACTIONS(2095), - [aux_sym_binary_expression_token3] = ACTIONS(2095), - [aux_sym_binary_expression_token4] = ACTIONS(2097), - [aux_sym_binary_expression_token5] = ACTIONS(2097), - [aux_sym_binary_expression_token6] = ACTIONS(2097), - [anon_sym_QMARK_QMARK] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_IN] = ACTIONS(2095), - [anon_sym_InstanceOf] = ACTIONS(2095), - [anon_sym_instanceof] = ACTIONS(2095), - [anon_sym_INSTANCEOF] = ACTIONS(2095), - [anon_sym_instanceOf] = ACTIONS(2095), - [sym__automatic_semicolon] = ACTIONS(2097), - [sym__ternary_qmark] = ACTIONS(2097), - [sym__elvis_operator] = ACTIONS(2097), - [sym_logical_or] = ACTIONS(2097), - [sym_tag_linefeed] = ACTIONS(2097), - }, - [STATE(2263)] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2099), - [sym_optional_chain] = ACTIONS(2101), - [sym_static_chain] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2101), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_GT] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [aux_sym_binary_expression_token1] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2099), - [aux_sym_binary_expression_token2] = ACTIONS(2099), - [aux_sym_binary_expression_token3] = ACTIONS(2099), - [aux_sym_binary_expression_token4] = ACTIONS(2101), - [aux_sym_binary_expression_token5] = ACTIONS(2101), - [aux_sym_binary_expression_token6] = ACTIONS(2101), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_IN] = ACTIONS(2099), - [anon_sym_InstanceOf] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_INSTANCEOF] = ACTIONS(2099), - [anon_sym_instanceOf] = ACTIONS(2099), - [sym__automatic_semicolon] = ACTIONS(2101), - [sym__ternary_qmark] = ACTIONS(2101), - [sym__elvis_operator] = ACTIONS(2101), - [sym_logical_or] = ACTIONS(2101), - [sym_tag_linefeed] = ACTIONS(2101), - }, - [STATE(2264)] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2103), - [sym_optional_chain] = ACTIONS(2105), - [sym_static_chain] = ACTIONS(2105), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_CARET_EQ] = ACTIONS(2105), - [anon_sym_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_LT_EQ] = ACTIONS(2105), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2103), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_STAR_STAR] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_GT] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [aux_sym_binary_expression_token1] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2103), - [aux_sym_binary_expression_token2] = ACTIONS(2103), - [aux_sym_binary_expression_token3] = ACTIONS(2103), - [aux_sym_binary_expression_token4] = ACTIONS(2105), - [aux_sym_binary_expression_token5] = ACTIONS(2105), - [aux_sym_binary_expression_token6] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2103), - [anon_sym_IN] = ACTIONS(2103), - [anon_sym_InstanceOf] = ACTIONS(2103), - [anon_sym_instanceof] = ACTIONS(2103), - [anon_sym_INSTANCEOF] = ACTIONS(2103), - [anon_sym_instanceOf] = ACTIONS(2103), - [sym__automatic_semicolon] = ACTIONS(2105), - [sym__ternary_qmark] = ACTIONS(2105), - [sym__elvis_operator] = ACTIONS(2105), - [sym_logical_or] = ACTIONS(2105), - [sym_tag_linefeed] = ACTIONS(2105), - }, - [STATE(2265)] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2107), - [sym_optional_chain] = ACTIONS(2109), - [sym_static_chain] = ACTIONS(2109), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_CARET_EQ] = ACTIONS(2109), - [anon_sym_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_LT_LT_EQ] = ACTIONS(2109), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_STAR_STAR] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_GT] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [aux_sym_binary_expression_token1] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2107), - [aux_sym_binary_expression_token2] = ACTIONS(2107), - [aux_sym_binary_expression_token3] = ACTIONS(2107), - [aux_sym_binary_expression_token4] = ACTIONS(2109), - [aux_sym_binary_expression_token5] = ACTIONS(2109), - [aux_sym_binary_expression_token6] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_IN] = ACTIONS(2107), - [anon_sym_InstanceOf] = ACTIONS(2107), - [anon_sym_instanceof] = ACTIONS(2107), - [anon_sym_INSTANCEOF] = ACTIONS(2107), - [anon_sym_instanceOf] = ACTIONS(2107), - [sym__automatic_semicolon] = ACTIONS(2109), - [sym__ternary_qmark] = ACTIONS(2109), - [sym__elvis_operator] = ACTIONS(2109), - [sym_logical_or] = ACTIONS(2109), - [sym_tag_linefeed] = ACTIONS(2109), }, - [STATE(2266)] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2111), - [sym_optional_chain] = ACTIONS(2113), - [sym_static_chain] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2113), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_GT] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [aux_sym_binary_expression_token1] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2111), - [aux_sym_binary_expression_token2] = ACTIONS(2111), - [aux_sym_binary_expression_token3] = ACTIONS(2111), - [aux_sym_binary_expression_token4] = ACTIONS(2113), - [aux_sym_binary_expression_token5] = ACTIONS(2113), - [aux_sym_binary_expression_token6] = ACTIONS(2113), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_IN] = ACTIONS(2111), - [anon_sym_InstanceOf] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_INSTANCEOF] = ACTIONS(2111), - [anon_sym_instanceOf] = ACTIONS(2111), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym__elvis_operator] = ACTIONS(2113), - [sym_logical_or] = ACTIONS(2113), - [sym_tag_linefeed] = ACTIONS(2113), + [STATE(2294)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1952), + [anon_sym_instanceof] = ACTIONS(1952), + [anon_sym_INSTANCEOF] = ACTIONS(1952), + [anon_sym_instanceOf] = ACTIONS(1952), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + [sym_tag_linefeed] = ACTIONS(1955), }, - [STATE(2267)] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2115), - [sym_optional_chain] = ACTIONS(2117), - [sym_static_chain] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2117), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_STAR_STAR] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_GT] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [aux_sym_binary_expression_token1] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2115), - [aux_sym_binary_expression_token2] = ACTIONS(2115), - [aux_sym_binary_expression_token3] = ACTIONS(2115), - [aux_sym_binary_expression_token4] = ACTIONS(2117), - [aux_sym_binary_expression_token5] = ACTIONS(2117), - [aux_sym_binary_expression_token6] = ACTIONS(2117), - [anon_sym_QMARK_QMARK] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_IN] = ACTIONS(2115), - [anon_sym_InstanceOf] = ACTIONS(2115), - [anon_sym_instanceof] = ACTIONS(2115), - [anon_sym_INSTANCEOF] = ACTIONS(2115), - [anon_sym_instanceOf] = ACTIONS(2115), - [sym__automatic_semicolon] = ACTIONS(2117), - [sym__ternary_qmark] = ACTIONS(2117), - [sym__elvis_operator] = ACTIONS(2117), - [sym_logical_or] = ACTIONS(2117), - [sym_tag_linefeed] = ACTIONS(2117), + [STATE(2295)] = { + [sym_identifier] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2083), + [sym_optional_chain] = ACTIONS(2085), + [sym_static_chain] = ACTIONS(2085), + [anon_sym_PLUS_EQ] = ACTIONS(2085), + [anon_sym_DASH_EQ] = ACTIONS(2085), + [anon_sym_STAR_EQ] = ACTIONS(2085), + [anon_sym_SLASH_EQ] = ACTIONS(2085), + [anon_sym_PERCENT_EQ] = ACTIONS(2085), + [anon_sym_CARET_EQ] = ACTIONS(2085), + [anon_sym_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_LT_LT_EQ] = ACTIONS(2085), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [anon_sym_GT_GT] = ACTIONS(2083), + [anon_sym_GT_GT_GT] = ACTIONS(2083), + [anon_sym_LT_LT] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_BSLASH] = ACTIONS(2083), + [anon_sym_STAR_STAR] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_LT_GT] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [aux_sym_binary_expression_token1] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2083), + [aux_sym_binary_expression_token2] = ACTIONS(2083), + [aux_sym_binary_expression_token3] = ACTIONS(2083), + [aux_sym_binary_expression_token4] = ACTIONS(2085), + [aux_sym_binary_expression_token5] = ACTIONS(2085), + [aux_sym_binary_expression_token6] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_IN] = ACTIONS(2083), + [anon_sym_InstanceOf] = ACTIONS(2083), + [anon_sym_instanceof] = ACTIONS(2083), + [anon_sym_INSTANCEOF] = ACTIONS(2083), + [anon_sym_instanceOf] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2085), + [sym__ternary_qmark] = ACTIONS(2085), + [sym__elvis_operator] = ACTIONS(2085), + [sym_logical_or] = ACTIONS(2085), + [sym_tag_linefeed] = ACTIONS(2085), }, - [STATE(2268)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2296)] = { + [sym_identifier] = ACTIONS(5228), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5276), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5276), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -350589,195 +354482,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5230), }, - [STATE(2269)] = { - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2007), - [anon_sym_instanceof] = ACTIONS(2007), - [anon_sym_INSTANCEOF] = ACTIONS(2007), - [anon_sym_instanceOf] = ACTIONS(2007), - [sym__automatic_semicolon] = ACTIONS(2009), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), - [sym_tag_linefeed] = ACTIONS(2009), + [STATE(2297)] = { + [sym_identifier] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_COMMA] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2019), + [sym_optional_chain] = ACTIONS(2021), + [sym_static_chain] = ACTIONS(2021), + [anon_sym_PLUS_EQ] = ACTIONS(2021), + [anon_sym_DASH_EQ] = ACTIONS(2021), + [anon_sym_STAR_EQ] = ACTIONS(2021), + [anon_sym_SLASH_EQ] = ACTIONS(2021), + [anon_sym_PERCENT_EQ] = ACTIONS(2021), + [anon_sym_CARET_EQ] = ACTIONS(2021), + [anon_sym_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_LT_LT_EQ] = ACTIONS(2021), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2021), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_GT_GT_GT] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_CARET] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_BSLASH] = ACTIONS(2019), + [anon_sym_STAR_STAR] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2021), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), + [anon_sym_LT_GT] = ACTIONS(2021), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), + [aux_sym_binary_expression_token1] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2019), + [aux_sym_binary_expression_token2] = ACTIONS(2019), + [aux_sym_binary_expression_token3] = ACTIONS(2019), + [aux_sym_binary_expression_token4] = ACTIONS(2021), + [aux_sym_binary_expression_token5] = ACTIONS(2021), + [aux_sym_binary_expression_token6] = ACTIONS(2021), + [anon_sym_QMARK_QMARK] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_IN] = ACTIONS(2019), + [anon_sym_InstanceOf] = ACTIONS(2019), + [anon_sym_instanceof] = ACTIONS(2019), + [anon_sym_INSTANCEOF] = ACTIONS(2019), + [anon_sym_instanceOf] = ACTIONS(2019), + [sym__ternary_qmark] = ACTIONS(2021), + [sym__elvis_operator] = ACTIONS(2021), + [sym_logical_or] = ACTIONS(2021), + [sym__parameter_separator] = ACTIONS(2021), }, - [STATE(2270)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2020), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2020), - [anon_sym_instanceof] = ACTIONS(2020), - [anon_sym_INSTANCEOF] = ACTIONS(2020), - [anon_sym_instanceOf] = ACTIONS(2020), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - [sym__parameter_separator] = ACTIONS(2023), + [STATE(2298)] = { + [sym_identifier] = ACTIONS(2027), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_RPAREN] = ACTIONS(2029), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2027), + [sym_optional_chain] = ACTIONS(2029), + [sym_static_chain] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2029), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_GT_GT] = ACTIONS(2027), + [anon_sym_GT_GT_GT] = ACTIONS(2027), + [anon_sym_LT_LT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2027), + [anon_sym_STAR_STAR] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), + [anon_sym_LT_GT] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), + [aux_sym_binary_expression_token1] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2027), + [aux_sym_binary_expression_token2] = ACTIONS(2027), + [aux_sym_binary_expression_token3] = ACTIONS(2027), + [aux_sym_binary_expression_token4] = ACTIONS(2029), + [aux_sym_binary_expression_token5] = ACTIONS(2029), + [aux_sym_binary_expression_token6] = ACTIONS(2029), + [anon_sym_QMARK_QMARK] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2027), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_IN] = ACTIONS(2027), + [anon_sym_InstanceOf] = ACTIONS(2027), + [anon_sym_instanceof] = ACTIONS(2027), + [anon_sym_INSTANCEOF] = ACTIONS(2027), + [anon_sym_instanceOf] = ACTIONS(2027), + [sym__ternary_qmark] = ACTIONS(2029), + [sym__elvis_operator] = ACTIONS(2029), + [sym_logical_or] = ACTIONS(2029), + [sym__parameter_separator] = ACTIONS(2029), }, - [STATE(2271)] = { + [STATE(2299)] = { + [sym_identifier] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_RPAREN] = ACTIONS(2033), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2031), + [sym_optional_chain] = ACTIONS(2033), + [sym_static_chain] = ACTIONS(2033), + [anon_sym_PLUS_EQ] = ACTIONS(2033), + [anon_sym_DASH_EQ] = ACTIONS(2033), + [anon_sym_STAR_EQ] = ACTIONS(2033), + [anon_sym_SLASH_EQ] = ACTIONS(2033), + [anon_sym_PERCENT_EQ] = ACTIONS(2033), + [anon_sym_CARET_EQ] = ACTIONS(2033), + [anon_sym_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_LT_LT_EQ] = ACTIONS(2033), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2033), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), + [anon_sym_LT_GT] = ACTIONS(2033), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), + [aux_sym_binary_expression_token1] = ACTIONS(2033), + [anon_sym_GT_EQ] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [aux_sym_binary_expression_token2] = ACTIONS(2031), + [aux_sym_binary_expression_token3] = ACTIONS(2031), + [aux_sym_binary_expression_token4] = ACTIONS(2033), + [aux_sym_binary_expression_token5] = ACTIONS(2033), + [aux_sym_binary_expression_token6] = ACTIONS(2033), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2033), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_IN] = ACTIONS(2031), + [anon_sym_InstanceOf] = ACTIONS(2031), + [anon_sym_instanceof] = ACTIONS(2031), + [anon_sym_INSTANCEOF] = ACTIONS(2031), + [anon_sym_instanceOf] = ACTIONS(2031), + [sym__ternary_qmark] = ACTIONS(2033), + [sym__elvis_operator] = ACTIONS(2033), + [sym_logical_or] = ACTIONS(2033), + [sym__parameter_separator] = ACTIONS(2033), + }, + [STATE(2300)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5246), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -350846,293 +354827,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - }, - [STATE(2272)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2020), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2020), - [anon_sym_instanceof] = ACTIONS(2020), - [anon_sym_INSTANCEOF] = ACTIONS(2020), - [anon_sym_instanceOf] = ACTIONS(2020), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - [sym_tag_linefeed] = ACTIONS(2023), - }, - [STATE(2273)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2020), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2020), - [anon_sym_instanceof] = ACTIONS(2020), - [anon_sym_INSTANCEOF] = ACTIONS(2020), - [anon_sym_instanceOf] = ACTIONS(2020), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - [sym_tag_linefeed] = ACTIONS(2023), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(509), + }, + [STATE(2301)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2302)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), }, - [STATE(2274)] = { - [sym__initializer] = STATE(4577), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5120), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(5120), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(5120), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(2303)] = { + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1957), + [anon_sym_instanceof] = ACTIONS(1957), + [anon_sym_INSTANCEOF] = ACTIONS(1957), + [anon_sym_instanceOf] = ACTIONS(1957), + [sym__automatic_semicolon] = ACTIONS(1959), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), + [sym_tag_linefeed] = ACTIONS(1959), }, - [STATE(2275)] = { + [STATE(2304)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1878), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5272), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -351211,14 +355191,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2276)] = { - [sym_identifier] = ACTIONS(5209), + [STATE(2305)] = { + [sym_identifier] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_EQ] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2073), + [sym_optional_chain] = ACTIONS(2075), + [sym_static_chain] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2075), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_GT_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_PERCENT] = ACTIONS(2073), + [anon_sym_BSLASH] = ACTIONS(2073), + [anon_sym_STAR_STAR] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_LT_GT] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [aux_sym_binary_expression_token1] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2073), + [aux_sym_binary_expression_token2] = ACTIONS(2073), + [aux_sym_binary_expression_token3] = ACTIONS(2073), + [aux_sym_binary_expression_token4] = ACTIONS(2075), + [aux_sym_binary_expression_token5] = ACTIONS(2075), + [aux_sym_binary_expression_token6] = ACTIONS(2075), + [anon_sym_QMARK_QMARK] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2073), + [anon_sym_in] = ACTIONS(2073), + [anon_sym_IN] = ACTIONS(2073), + [anon_sym_InstanceOf] = ACTIONS(2073), + [anon_sym_instanceof] = ACTIONS(2073), + [anon_sym_INSTANCEOF] = ACTIONS(2073), + [anon_sym_instanceOf] = ACTIONS(2073), + [sym__ternary_qmark] = ACTIONS(2075), + [sym__elvis_operator] = ACTIONS(2075), + [sym_logical_or] = ACTIONS(2075), + [sym__parameter_separator] = ACTIONS(2075), + }, + [STATE(2306)] = { + [sym_identifier] = ACTIONS(5228), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(1878), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -351297,120 +355365,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5214), - }, - [STATE(2277)] = { - [sym_identifier] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2095), - [sym_optional_chain] = ACTIONS(2097), - [sym_static_chain] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2097), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2095), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_BSLASH] = ACTIONS(2095), - [anon_sym_STAR_STAR] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_GT] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [aux_sym_binary_expression_token1] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2095), - [aux_sym_binary_expression_token2] = ACTIONS(2095), - [aux_sym_binary_expression_token3] = ACTIONS(2095), - [aux_sym_binary_expression_token4] = ACTIONS(2097), - [aux_sym_binary_expression_token5] = ACTIONS(2097), - [aux_sym_binary_expression_token6] = ACTIONS(2097), - [anon_sym_QMARK_QMARK] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_IN] = ACTIONS(2095), - [anon_sym_InstanceOf] = ACTIONS(2095), - [anon_sym_instanceof] = ACTIONS(2095), - [anon_sym_INSTANCEOF] = ACTIONS(2095), - [anon_sym_instanceOf] = ACTIONS(2095), - [sym__ternary_qmark] = ACTIONS(2097), - [sym__elvis_operator] = ACTIONS(2097), - [sym_logical_or] = ACTIONS(2097), - [sym__parameter_separator] = ACTIONS(2097), + [sym__parameter_separator] = ACTIONS(5230), }, - [STATE(2278)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2307)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5205), + [anon_sym_EQ] = ACTIONS(5224), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -351441,7 +355422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -351465,378 +355446,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - }, - [STATE(2279)] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2103), - [sym_optional_chain] = ACTIONS(2105), - [sym_static_chain] = ACTIONS(2105), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_CARET_EQ] = ACTIONS(2105), - [anon_sym_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_LT_EQ] = ACTIONS(2105), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2103), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_STAR_STAR] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_GT] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [aux_sym_binary_expression_token1] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2103), - [aux_sym_binary_expression_token2] = ACTIONS(2103), - [aux_sym_binary_expression_token3] = ACTIONS(2103), - [aux_sym_binary_expression_token4] = ACTIONS(2105), - [aux_sym_binary_expression_token5] = ACTIONS(2105), - [aux_sym_binary_expression_token6] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2103), - [anon_sym_IN] = ACTIONS(2103), - [anon_sym_InstanceOf] = ACTIONS(2103), - [anon_sym_instanceof] = ACTIONS(2103), - [anon_sym_INSTANCEOF] = ACTIONS(2103), - [anon_sym_instanceOf] = ACTIONS(2103), - [sym__ternary_qmark] = ACTIONS(2105), - [sym__elvis_operator] = ACTIONS(2105), - [sym_logical_or] = ACTIONS(2105), - [sym__parameter_separator] = ACTIONS(2105), - }, - [STATE(2280)] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2107), - [sym_optional_chain] = ACTIONS(2109), - [sym_static_chain] = ACTIONS(2109), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_CARET_EQ] = ACTIONS(2109), - [anon_sym_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_LT_LT_EQ] = ACTIONS(2109), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_STAR_STAR] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_GT] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [aux_sym_binary_expression_token1] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2107), - [aux_sym_binary_expression_token2] = ACTIONS(2107), - [aux_sym_binary_expression_token3] = ACTIONS(2107), - [aux_sym_binary_expression_token4] = ACTIONS(2109), - [aux_sym_binary_expression_token5] = ACTIONS(2109), - [aux_sym_binary_expression_token6] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_IN] = ACTIONS(2107), - [anon_sym_InstanceOf] = ACTIONS(2107), - [anon_sym_instanceof] = ACTIONS(2107), - [anon_sym_INSTANCEOF] = ACTIONS(2107), - [anon_sym_instanceOf] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2109), - [sym__elvis_operator] = ACTIONS(2109), - [sym_logical_or] = ACTIONS(2109), - [sym__parameter_separator] = ACTIONS(2109), - }, - [STATE(2281)] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2111), - [sym_optional_chain] = ACTIONS(2113), - [sym_static_chain] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2113), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_GT] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [aux_sym_binary_expression_token1] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2111), - [aux_sym_binary_expression_token2] = ACTIONS(2111), - [aux_sym_binary_expression_token3] = ACTIONS(2111), - [aux_sym_binary_expression_token4] = ACTIONS(2113), - [aux_sym_binary_expression_token5] = ACTIONS(2113), - [aux_sym_binary_expression_token6] = ACTIONS(2113), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_IN] = ACTIONS(2111), - [anon_sym_InstanceOf] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_INSTANCEOF] = ACTIONS(2111), - [anon_sym_instanceOf] = ACTIONS(2111), - [sym__ternary_qmark] = ACTIONS(2113), - [sym__elvis_operator] = ACTIONS(2113), - [sym_logical_or] = ACTIONS(2113), - [sym__parameter_separator] = ACTIONS(2113), }, - [STATE(2282)] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2115), - [sym_optional_chain] = ACTIONS(2117), - [sym_static_chain] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2117), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_STAR_STAR] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_GT] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [aux_sym_binary_expression_token1] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2115), - [aux_sym_binary_expression_token2] = ACTIONS(2115), - [aux_sym_binary_expression_token3] = ACTIONS(2115), - [aux_sym_binary_expression_token4] = ACTIONS(2117), - [aux_sym_binary_expression_token5] = ACTIONS(2117), - [aux_sym_binary_expression_token6] = ACTIONS(2117), - [anon_sym_QMARK_QMARK] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_IN] = ACTIONS(2115), - [anon_sym_InstanceOf] = ACTIONS(2115), - [anon_sym_instanceof] = ACTIONS(2115), - [anon_sym_INSTANCEOF] = ACTIONS(2115), - [anon_sym_instanceOf] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2117), - [sym__elvis_operator] = ACTIONS(2117), - [sym_logical_or] = ACTIONS(2117), - [sym__parameter_separator] = ACTIONS(2117), + [STATE(2308)] = { + [sym_identifier] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2083), + [sym_optional_chain] = ACTIONS(2085), + [sym_static_chain] = ACTIONS(2085), + [anon_sym_PLUS_EQ] = ACTIONS(2085), + [anon_sym_DASH_EQ] = ACTIONS(2085), + [anon_sym_STAR_EQ] = ACTIONS(2085), + [anon_sym_SLASH_EQ] = ACTIONS(2085), + [anon_sym_PERCENT_EQ] = ACTIONS(2085), + [anon_sym_CARET_EQ] = ACTIONS(2085), + [anon_sym_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_LT_LT_EQ] = ACTIONS(2085), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [anon_sym_GT_GT] = ACTIONS(2083), + [anon_sym_GT_GT_GT] = ACTIONS(2083), + [anon_sym_LT_LT] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_BSLASH] = ACTIONS(2083), + [anon_sym_STAR_STAR] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_LT_GT] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [aux_sym_binary_expression_token1] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2083), + [aux_sym_binary_expression_token2] = ACTIONS(2083), + [aux_sym_binary_expression_token3] = ACTIONS(2083), + [aux_sym_binary_expression_token4] = ACTIONS(2085), + [aux_sym_binary_expression_token5] = ACTIONS(2085), + [aux_sym_binary_expression_token6] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_IN] = ACTIONS(2083), + [anon_sym_InstanceOf] = ACTIONS(2083), + [anon_sym_instanceof] = ACTIONS(2083), + [anon_sym_INSTANCEOF] = ACTIONS(2083), + [anon_sym_instanceOf] = ACTIONS(2083), + [sym__ternary_qmark] = ACTIONS(2085), + [sym__elvis_operator] = ACTIONS(2085), + [sym_logical_or] = ACTIONS(2085), + [sym__parameter_separator] = ACTIONS(2085), }, - [STATE(2283)] = { + [STATE(2309)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5244), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -351911,107 +355626,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2284)] = { - [sym_identifier] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_COMMA] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2003), - [sym_optional_chain] = ACTIONS(2005), - [sym_static_chain] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_PERCENT_EQ] = ACTIONS(2005), - [anon_sym_CARET_EQ] = ACTIONS(2005), - [anon_sym_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_EQ] = ACTIONS(2005), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2005), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_GT_GT_GT] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_PERCENT] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2003), - [anon_sym_STAR_STAR] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT_GT] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2005), - [aux_sym_binary_expression_token1] = ACTIONS(2005), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2003), - [aux_sym_binary_expression_token2] = ACTIONS(2003), - [aux_sym_binary_expression_token3] = ACTIONS(2003), - [aux_sym_binary_expression_token4] = ACTIONS(2005), - [aux_sym_binary_expression_token5] = ACTIONS(2005), - [aux_sym_binary_expression_token6] = ACTIONS(2005), - [anon_sym_QMARK_QMARK] = ACTIONS(2003), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2003), - [anon_sym_in] = ACTIONS(2003), - [anon_sym_IN] = ACTIONS(2003), - [anon_sym_InstanceOf] = ACTIONS(2003), - [anon_sym_instanceof] = ACTIONS(2003), - [anon_sym_INSTANCEOF] = ACTIONS(2003), - [anon_sym_instanceOf] = ACTIONS(2003), - [sym__ternary_qmark] = ACTIONS(2005), - [sym__elvis_operator] = ACTIONS(2005), - [sym_logical_or] = ACTIONS(2005), - [sym__parameter_separator] = ACTIONS(2005), + [STATE(2310)] = { + [sym_identifier] = ACTIONS(2101), + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2101), + [sym_optional_chain] = ACTIONS(2103), + [sym_static_chain] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [anon_sym_DASH_EQ] = ACTIONS(2103), + [anon_sym_STAR_EQ] = ACTIONS(2103), + [anon_sym_SLASH_EQ] = ACTIONS(2103), + [anon_sym_PERCENT_EQ] = ACTIONS(2103), + [anon_sym_CARET_EQ] = ACTIONS(2103), + [anon_sym_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_LT_LT_EQ] = ACTIONS(2103), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2101), + [anon_sym_STAR_STAR] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_GT] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [aux_sym_binary_expression_token1] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2101), + [aux_sym_binary_expression_token2] = ACTIONS(2101), + [aux_sym_binary_expression_token3] = ACTIONS(2101), + [aux_sym_binary_expression_token4] = ACTIONS(2103), + [aux_sym_binary_expression_token5] = ACTIONS(2103), + [aux_sym_binary_expression_token6] = ACTIONS(2103), + [anon_sym_QMARK_QMARK] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_IN] = ACTIONS(2101), + [anon_sym_InstanceOf] = ACTIONS(2101), + [anon_sym_instanceof] = ACTIONS(2101), + [anon_sym_INSTANCEOF] = ACTIONS(2101), + [anon_sym_instanceOf] = ACTIONS(2101), + [sym__ternary_qmark] = ACTIONS(2103), + [sym__elvis_operator] = ACTIONS(2103), + [sym_logical_or] = ACTIONS(2103), + [sym__parameter_separator] = ACTIONS(2103), }, - [STATE(2285)] = { + [STATE(2311)] = { + [sym_identifier] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2089), + [sym_optional_chain] = ACTIONS(2091), + [sym_static_chain] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [anon_sym_DASH_EQ] = ACTIONS(2091), + [anon_sym_STAR_EQ] = ACTIONS(2091), + [anon_sym_SLASH_EQ] = ACTIONS(2091), + [anon_sym_PERCENT_EQ] = ACTIONS(2091), + [anon_sym_CARET_EQ] = ACTIONS(2091), + [anon_sym_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_LT_LT_EQ] = ACTIONS(2091), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2089), + [anon_sym_STAR_STAR] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_GT] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [aux_sym_binary_expression_token1] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2089), + [aux_sym_binary_expression_token2] = ACTIONS(2089), + [aux_sym_binary_expression_token3] = ACTIONS(2089), + [aux_sym_binary_expression_token4] = ACTIONS(2091), + [aux_sym_binary_expression_token5] = ACTIONS(2091), + [aux_sym_binary_expression_token6] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_IN] = ACTIONS(2089), + [anon_sym_InstanceOf] = ACTIONS(2089), + [anon_sym_instanceof] = ACTIONS(2089), + [anon_sym_INSTANCEOF] = ACTIONS(2089), + [anon_sym_instanceOf] = ACTIONS(2089), + [sym__automatic_semicolon] = ACTIONS(2091), + [sym__ternary_qmark] = ACTIONS(2091), + [sym__elvis_operator] = ACTIONS(2091), + [sym_logical_or] = ACTIONS(2091), + [sym_tag_linefeed] = ACTIONS(2091), + }, + [STATE(2312)] = { + [sym_identifier] = ACTIONS(2101), + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2101), + [sym_optional_chain] = ACTIONS(2103), + [sym_static_chain] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [anon_sym_DASH_EQ] = ACTIONS(2103), + [anon_sym_STAR_EQ] = ACTIONS(2103), + [anon_sym_SLASH_EQ] = ACTIONS(2103), + [anon_sym_PERCENT_EQ] = ACTIONS(2103), + [anon_sym_CARET_EQ] = ACTIONS(2103), + [anon_sym_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_LT_LT_EQ] = ACTIONS(2103), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2101), + [anon_sym_STAR_STAR] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_GT] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [aux_sym_binary_expression_token1] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2101), + [aux_sym_binary_expression_token2] = ACTIONS(2101), + [aux_sym_binary_expression_token3] = ACTIONS(2101), + [aux_sym_binary_expression_token4] = ACTIONS(2103), + [aux_sym_binary_expression_token5] = ACTIONS(2103), + [aux_sym_binary_expression_token6] = ACTIONS(2103), + [anon_sym_QMARK_QMARK] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_IN] = ACTIONS(2101), + [anon_sym_InstanceOf] = ACTIONS(2101), + [anon_sym_instanceof] = ACTIONS(2101), + [anon_sym_INSTANCEOF] = ACTIONS(2101), + [anon_sym_instanceOf] = ACTIONS(2101), + [sym__automatic_semicolon] = ACTIONS(2103), + [sym__ternary_qmark] = ACTIONS(2103), + [sym__elvis_operator] = ACTIONS(2103), + [sym_logical_or] = ACTIONS(2103), + [sym_tag_linefeed] = ACTIONS(2103), + }, + [STATE(2313)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(1204), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2314)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(1878), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -352086,195 +356067,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2286)] = { - [sym_identifier] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1981), - [sym_optional_chain] = ACTIONS(1983), - [sym_static_chain] = ACTIONS(1983), - [anon_sym_PLUS_EQ] = ACTIONS(1983), - [anon_sym_DASH_EQ] = ACTIONS(1983), - [anon_sym_STAR_EQ] = ACTIONS(1983), - [anon_sym_SLASH_EQ] = ACTIONS(1983), - [anon_sym_PERCENT_EQ] = ACTIONS(1983), - [anon_sym_CARET_EQ] = ACTIONS(1983), - [anon_sym_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_LT_LT_EQ] = ACTIONS(1983), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_BSLASH] = ACTIONS(1981), - [anon_sym_STAR_STAR] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1983), - [anon_sym_LT_GT] = ACTIONS(1983), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1983), - [aux_sym_binary_expression_token1] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1981), - [aux_sym_binary_expression_token2] = ACTIONS(1981), - [aux_sym_binary_expression_token3] = ACTIONS(1981), - [aux_sym_binary_expression_token4] = ACTIONS(1983), - [aux_sym_binary_expression_token5] = ACTIONS(1983), - [aux_sym_binary_expression_token6] = ACTIONS(1983), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_IN] = ACTIONS(1981), - [anon_sym_InstanceOf] = ACTIONS(1981), - [anon_sym_instanceof] = ACTIONS(1981), - [anon_sym_INSTANCEOF] = ACTIONS(1981), - [anon_sym_instanceOf] = ACTIONS(1981), - [sym__ternary_qmark] = ACTIONS(1983), - [sym__elvis_operator] = ACTIONS(1983), - [sym_logical_or] = ACTIONS(1983), - [sym__parameter_separator] = ACTIONS(1983), - }, - [STATE(2287)] = { - [sym_identifier] = ACTIONS(1985), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1985), - [sym_optional_chain] = ACTIONS(1987), - [sym_static_chain] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1987), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_GT_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_PERCENT] = ACTIONS(1985), - [anon_sym_BSLASH] = ACTIONS(1985), - [anon_sym_STAR_STAR] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1987), - [anon_sym_LT_GT] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1987), - [aux_sym_binary_expression_token1] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1985), - [aux_sym_binary_expression_token2] = ACTIONS(1985), - [aux_sym_binary_expression_token3] = ACTIONS(1985), - [aux_sym_binary_expression_token4] = ACTIONS(1987), - [aux_sym_binary_expression_token5] = ACTIONS(1987), - [aux_sym_binary_expression_token6] = ACTIONS(1987), - [anon_sym_QMARK_QMARK] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1985), - [anon_sym_in] = ACTIONS(1985), - [anon_sym_IN] = ACTIONS(1985), - [anon_sym_InstanceOf] = ACTIONS(1985), - [anon_sym_instanceof] = ACTIONS(1985), - [anon_sym_INSTANCEOF] = ACTIONS(1985), - [anon_sym_instanceOf] = ACTIONS(1985), - [sym__ternary_qmark] = ACTIONS(1987), - [sym__elvis_operator] = ACTIONS(1987), - [sym_logical_or] = ACTIONS(1987), - [sym__parameter_separator] = ACTIONS(1987), - }, - [STATE(2288)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2315)] = { + [sym_identifier] = ACTIONS(5213), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5218), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5224), + [anon_sym_RPAREN] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -352353,106 +356157,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5218), }, - [STATE(2289)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [STATE(2316)] = { + [sym_identifier] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2105), + [sym_optional_chain] = ACTIONS(2107), + [sym_static_chain] = ACTIONS(2107), + [anon_sym_PLUS_EQ] = ACTIONS(2107), + [anon_sym_DASH_EQ] = ACTIONS(2107), + [anon_sym_STAR_EQ] = ACTIONS(2107), + [anon_sym_SLASH_EQ] = ACTIONS(2107), + [anon_sym_PERCENT_EQ] = ACTIONS(2107), + [anon_sym_CARET_EQ] = ACTIONS(2107), + [anon_sym_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_LT_LT_EQ] = ACTIONS(2107), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2107), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_GT] = ACTIONS(2107), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [aux_sym_binary_expression_token1] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2105), + [aux_sym_binary_expression_token2] = ACTIONS(2105), + [aux_sym_binary_expression_token3] = ACTIONS(2105), + [aux_sym_binary_expression_token4] = ACTIONS(2107), + [aux_sym_binary_expression_token5] = ACTIONS(2107), + [aux_sym_binary_expression_token6] = ACTIONS(2107), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_IN] = ACTIONS(2105), + [anon_sym_InstanceOf] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_INSTANCEOF] = ACTIONS(2105), + [anon_sym_instanceOf] = ACTIONS(2105), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym__ternary_qmark] = ACTIONS(2107), + [sym__elvis_operator] = ACTIONS(2107), + [sym_logical_or] = ACTIONS(2107), + [sym_tag_linefeed] = ACTIONS(2107), }, - [STATE(2290)] = { + [STATE(2317)] = { + [sym_identifier] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2019), + [sym_optional_chain] = ACTIONS(2021), + [sym_static_chain] = ACTIONS(2021), + [anon_sym_PLUS_EQ] = ACTIONS(2021), + [anon_sym_DASH_EQ] = ACTIONS(2021), + [anon_sym_STAR_EQ] = ACTIONS(2021), + [anon_sym_SLASH_EQ] = ACTIONS(2021), + [anon_sym_PERCENT_EQ] = ACTIONS(2021), + [anon_sym_CARET_EQ] = ACTIONS(2021), + [anon_sym_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_LT_LT_EQ] = ACTIONS(2021), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2021), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_GT_GT_GT] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_CARET] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_BSLASH] = ACTIONS(2019), + [anon_sym_STAR_STAR] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2021), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), + [anon_sym_LT_GT] = ACTIONS(2021), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), + [aux_sym_binary_expression_token1] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2019), + [aux_sym_binary_expression_token2] = ACTIONS(2019), + [aux_sym_binary_expression_token3] = ACTIONS(2019), + [aux_sym_binary_expression_token4] = ACTIONS(2021), + [aux_sym_binary_expression_token5] = ACTIONS(2021), + [aux_sym_binary_expression_token6] = ACTIONS(2021), + [anon_sym_QMARK_QMARK] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_IN] = ACTIONS(2019), + [anon_sym_InstanceOf] = ACTIONS(2019), + [anon_sym_instanceof] = ACTIONS(2019), + [anon_sym_INSTANCEOF] = ACTIONS(2019), + [anon_sym_instanceOf] = ACTIONS(2019), + [sym__automatic_semicolon] = ACTIONS(2021), + [sym__ternary_qmark] = ACTIONS(2021), + [sym__elvis_operator] = ACTIONS(2021), + [sym_logical_or] = ACTIONS(2021), + [sym_tag_linefeed] = ACTIONS(2021), + }, + [STATE(2318)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(1204), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -352531,14 +356423,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2291)] = { - [sym_identifier] = ACTIONS(5228), + [STATE(2319)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5230), - [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5253), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -352617,16 +356509,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5230), + [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2292)] = { - [sym_identifier] = ACTIONS(5228), + [STATE(2320)] = { + [sym_identifier] = ACTIONS(2027), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2027), + [sym_optional_chain] = ACTIONS(2029), + [sym_static_chain] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2029), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_GT_GT] = ACTIONS(2027), + [anon_sym_GT_GT_GT] = ACTIONS(2027), + [anon_sym_LT_LT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2027), + [anon_sym_STAR_STAR] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), + [anon_sym_LT_GT] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), + [aux_sym_binary_expression_token1] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2027), + [aux_sym_binary_expression_token2] = ACTIONS(2027), + [aux_sym_binary_expression_token3] = ACTIONS(2027), + [aux_sym_binary_expression_token4] = ACTIONS(2029), + [aux_sym_binary_expression_token5] = ACTIONS(2029), + [aux_sym_binary_expression_token6] = ACTIONS(2029), + [anon_sym_QMARK_QMARK] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2027), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_IN] = ACTIONS(2027), + [anon_sym_InstanceOf] = ACTIONS(2027), + [anon_sym_instanceof] = ACTIONS(2027), + [anon_sym_INSTANCEOF] = ACTIONS(2027), + [anon_sym_instanceOf] = ACTIONS(2027), + [sym__automatic_semicolon] = ACTIONS(2029), + [sym__ternary_qmark] = ACTIONS(2029), + [sym__elvis_operator] = ACTIONS(2029), + [sym_logical_or] = ACTIONS(2029), + [sym_tag_linefeed] = ACTIONS(2029), + }, + [STATE(2321)] = { + [sym_identifier] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2031), + [sym_optional_chain] = ACTIONS(2033), + [sym_static_chain] = ACTIONS(2033), + [anon_sym_PLUS_EQ] = ACTIONS(2033), + [anon_sym_DASH_EQ] = ACTIONS(2033), + [anon_sym_STAR_EQ] = ACTIONS(2033), + [anon_sym_SLASH_EQ] = ACTIONS(2033), + [anon_sym_PERCENT_EQ] = ACTIONS(2033), + [anon_sym_CARET_EQ] = ACTIONS(2033), + [anon_sym_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_LT_LT_EQ] = ACTIONS(2033), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2033), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), + [anon_sym_LT_GT] = ACTIONS(2033), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), + [aux_sym_binary_expression_token1] = ACTIONS(2033), + [anon_sym_GT_EQ] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [aux_sym_binary_expression_token2] = ACTIONS(2031), + [aux_sym_binary_expression_token3] = ACTIONS(2031), + [aux_sym_binary_expression_token4] = ACTIONS(2033), + [aux_sym_binary_expression_token5] = ACTIONS(2033), + [aux_sym_binary_expression_token6] = ACTIONS(2033), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2033), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_IN] = ACTIONS(2031), + [anon_sym_InstanceOf] = ACTIONS(2031), + [anon_sym_instanceof] = ACTIONS(2031), + [anon_sym_INSTANCEOF] = ACTIONS(2031), + [anon_sym_instanceOf] = ACTIONS(2031), + [sym__automatic_semicolon] = ACTIONS(2033), + [sym__ternary_qmark] = ACTIONS(2033), + [sym__elvis_operator] = ACTIONS(2033), + [sym_logical_or] = ACTIONS(2033), + [sym_tag_linefeed] = ACTIONS(2033), + }, + [STATE(2322)] = { + [sym_identifier] = ACTIONS(2045), + [anon_sym_DOT] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_COMMA] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_RPAREN] = ACTIONS(2047), + [anon_sym_EQ] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2045), + [sym_optional_chain] = ACTIONS(2047), + [sym_static_chain] = ACTIONS(2047), + [anon_sym_PLUS_EQ] = ACTIONS(2047), + [anon_sym_DASH_EQ] = ACTIONS(2047), + [anon_sym_STAR_EQ] = ACTIONS(2047), + [anon_sym_SLASH_EQ] = ACTIONS(2047), + [anon_sym_PERCENT_EQ] = ACTIONS(2047), + [anon_sym_CARET_EQ] = ACTIONS(2047), + [anon_sym_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_LT_LT_EQ] = ACTIONS(2047), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_GT_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_CARET] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_SLASH] = ACTIONS(2045), + [anon_sym_PERCENT] = ACTIONS(2045), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_STAR_STAR] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_EQ_EQ] = ACTIONS(2045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2047), + [anon_sym_LT_GT] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2047), + [aux_sym_binary_expression_token1] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [aux_sym_binary_expression_token2] = ACTIONS(2045), + [aux_sym_binary_expression_token3] = ACTIONS(2045), + [aux_sym_binary_expression_token4] = ACTIONS(2047), + [aux_sym_binary_expression_token5] = ACTIONS(2047), + [aux_sym_binary_expression_token6] = ACTIONS(2047), + [anon_sym_QMARK_QMARK] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2045), + [anon_sym_in] = ACTIONS(2045), + [anon_sym_IN] = ACTIONS(2045), + [anon_sym_InstanceOf] = ACTIONS(2045), + [anon_sym_instanceof] = ACTIONS(2045), + [anon_sym_INSTANCEOF] = ACTIONS(2045), + [anon_sym_instanceOf] = ACTIONS(2045), + [sym__ternary_qmark] = ACTIONS(2047), + [sym__elvis_operator] = ACTIONS(2047), + [sym_logical_or] = ACTIONS(2047), + [sym__parameter_separator] = ACTIONS(2047), + }, + [STATE(2323)] = { + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1957), + [anon_sym_instanceof] = ACTIONS(1957), + [anon_sym_INSTANCEOF] = ACTIONS(1957), + [anon_sym_instanceOf] = ACTIONS(1957), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), + [sym__parameter_separator] = ACTIONS(1959), + }, + [STATE(2324)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5272), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -352702,19 +356945,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5230), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2293)] = { - [sym_identifier] = ACTIONS(5209), + [STATE(2325)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1949), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1952), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1952), + [sym_optional_chain] = ACTIONS(1949), + [sym_static_chain] = ACTIONS(1949), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_GT_GT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_PERCENT] = ACTIONS(1952), + [anon_sym_BSLASH] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), + [anon_sym_LT_GT] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), + [aux_sym_binary_expression_token1] = ACTIONS(1949), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1952), + [aux_sym_binary_expression_token2] = ACTIONS(1952), + [aux_sym_binary_expression_token3] = ACTIONS(1952), + [aux_sym_binary_expression_token4] = ACTIONS(1949), + [aux_sym_binary_expression_token5] = ACTIONS(1949), + [aux_sym_binary_expression_token6] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_IN] = ACTIONS(1952), + [anon_sym_InstanceOf] = ACTIONS(1952), + [anon_sym_instanceof] = ACTIONS(1952), + [anon_sym_INSTANCEOF] = ACTIONS(1952), + [anon_sym_instanceOf] = ACTIONS(1952), + [sym__ternary_qmark] = ACTIONS(1949), + [sym__elvis_operator] = ACTIONS(1949), + [sym_logical_or] = ACTIONS(1949), + [sym_tag_linefeed] = ACTIONS(1955), + }, + [STATE(2326)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -352793,17 +357125,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5214), + [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2294)] = { + [STATE(2327)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5276), + [anon_sym_RBRACE] = ACTIONS(5276), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -352878,124 +357211,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2295)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5230), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(2328)] = { + [sym_identifier] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_RPAREN] = ACTIONS(2091), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2089), + [sym_optional_chain] = ACTIONS(2091), + [sym_static_chain] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [anon_sym_DASH_EQ] = ACTIONS(2091), + [anon_sym_STAR_EQ] = ACTIONS(2091), + [anon_sym_SLASH_EQ] = ACTIONS(2091), + [anon_sym_PERCENT_EQ] = ACTIONS(2091), + [anon_sym_CARET_EQ] = ACTIONS(2091), + [anon_sym_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_LT_LT_EQ] = ACTIONS(2091), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2089), + [anon_sym_STAR_STAR] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_GT] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [aux_sym_binary_expression_token1] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2089), + [aux_sym_binary_expression_token2] = ACTIONS(2089), + [aux_sym_binary_expression_token3] = ACTIONS(2089), + [aux_sym_binary_expression_token4] = ACTIONS(2091), + [aux_sym_binary_expression_token5] = ACTIONS(2091), + [aux_sym_binary_expression_token6] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_IN] = ACTIONS(2089), + [anon_sym_InstanceOf] = ACTIONS(2089), + [anon_sym_instanceof] = ACTIONS(2089), + [anon_sym_INSTANCEOF] = ACTIONS(2089), + [anon_sym_instanceOf] = ACTIONS(2089), + [sym__ternary_qmark] = ACTIONS(2091), + [sym__elvis_operator] = ACTIONS(2091), + [sym_logical_or] = ACTIONS(2091), + [sym__parameter_separator] = ACTIONS(2091), }, - [STATE(2296)] = { + [STATE(2329)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(5239), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -353026,7 +357357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -353050,113 +357381,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2297)] = { + [STATE(2330)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(2298)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -353235,104 +357479,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2299)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), + [STATE(2331)] = { + [sym_identifier] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5218), }, - [STATE(2300)] = { + [STATE(2332)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(849), - [anon_sym_DASH_GT] = ACTIONS(849), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -353411,14 +357655,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2301)] = { + [STATE(2333)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -353499,14 +357743,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2302)] = { + [STATE(2334)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_COLON] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -353587,16 +357831,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2303)] = { + [STATE(2335)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), - [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -353671,211 +357914,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2304)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2336)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5244), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(509), - }, - [STATE(2305)] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2099), - [sym_optional_chain] = ACTIONS(2101), - [sym_static_chain] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2101), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_GT] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [aux_sym_binary_expression_token1] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2099), - [aux_sym_binary_expression_token2] = ACTIONS(2099), - [aux_sym_binary_expression_token3] = ACTIONS(2099), - [aux_sym_binary_expression_token4] = ACTIONS(2101), - [aux_sym_binary_expression_token5] = ACTIONS(2101), - [aux_sym_binary_expression_token6] = ACTIONS(2101), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_IN] = ACTIONS(2099), - [anon_sym_InstanceOf] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_INSTANCEOF] = ACTIONS(2099), - [anon_sym_instanceOf] = ACTIONS(2099), - [sym__ternary_qmark] = ACTIONS(2101), - [sym__elvis_operator] = ACTIONS(2101), - [sym_logical_or] = ACTIONS(2101), - [sym__parameter_separator] = ACTIONS(2101), - }, - [STATE(2306)] = { - [sym_identifier] = ACTIONS(5261), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5274), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -353906,7 +357973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -353930,22 +357997,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2307)] = { + [STATE(2337)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -354025,14 +358093,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2308)] = { + [STATE(2338)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5289), - [anon_sym_DASH_GT] = ACTIONS(5289), + [anon_sym_EQ_GT] = ACTIONS(5295), + [anon_sym_DASH_GT] = ACTIONS(5295), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -354112,14 +358180,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2309)] = { + [STATE(2339)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -354199,15 +358267,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2310)] = { + [STATE(2340)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5272), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -354282,628 +358349,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2311)] = { - [sym_identifier] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2095), - [sym_optional_chain] = ACTIONS(2097), - [sym_static_chain] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2097), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2095), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_BSLASH] = ACTIONS(2095), - [anon_sym_STAR_STAR] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_GT] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [aux_sym_binary_expression_token1] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2095), - [aux_sym_binary_expression_token2] = ACTIONS(2095), - [aux_sym_binary_expression_token3] = ACTIONS(2095), - [aux_sym_binary_expression_token4] = ACTIONS(2097), - [aux_sym_binary_expression_token5] = ACTIONS(2097), - [aux_sym_binary_expression_token6] = ACTIONS(2097), - [anon_sym_QMARK_QMARK] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_IN] = ACTIONS(2095), - [anon_sym_InstanceOf] = ACTIONS(2095), - [anon_sym_instanceof] = ACTIONS(2095), - [anon_sym_INSTANCEOF] = ACTIONS(2095), - [anon_sym_instanceOf] = ACTIONS(2095), - [sym__ternary_qmark] = ACTIONS(2097), - [sym__elvis_operator] = ACTIONS(2097), - [sym_logical_or] = ACTIONS(2097), - }, - [STATE(2312)] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2099), - [sym_optional_chain] = ACTIONS(2101), - [sym_static_chain] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2101), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_GT] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [aux_sym_binary_expression_token1] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2099), - [aux_sym_binary_expression_token2] = ACTIONS(2099), - [aux_sym_binary_expression_token3] = ACTIONS(2099), - [aux_sym_binary_expression_token4] = ACTIONS(2101), - [aux_sym_binary_expression_token5] = ACTIONS(2101), - [aux_sym_binary_expression_token6] = ACTIONS(2101), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_IN] = ACTIONS(2099), - [anon_sym_InstanceOf] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_INSTANCEOF] = ACTIONS(2099), - [anon_sym_instanceOf] = ACTIONS(2099), - [sym__ternary_qmark] = ACTIONS(2101), - [sym__elvis_operator] = ACTIONS(2101), - [sym_logical_or] = ACTIONS(2101), - }, - [STATE(2313)] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2103), - [sym_optional_chain] = ACTIONS(2105), - [sym_static_chain] = ACTIONS(2105), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_CARET_EQ] = ACTIONS(2105), - [anon_sym_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_LT_EQ] = ACTIONS(2105), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2103), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_STAR_STAR] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_GT] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [aux_sym_binary_expression_token1] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2103), - [aux_sym_binary_expression_token2] = ACTIONS(2103), - [aux_sym_binary_expression_token3] = ACTIONS(2103), - [aux_sym_binary_expression_token4] = ACTIONS(2105), - [aux_sym_binary_expression_token5] = ACTIONS(2105), - [aux_sym_binary_expression_token6] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2103), - [anon_sym_IN] = ACTIONS(2103), - [anon_sym_InstanceOf] = ACTIONS(2103), - [anon_sym_instanceof] = ACTIONS(2103), - [anon_sym_INSTANCEOF] = ACTIONS(2103), - [anon_sym_instanceOf] = ACTIONS(2103), - [sym__ternary_qmark] = ACTIONS(2105), - [sym__elvis_operator] = ACTIONS(2105), - [sym_logical_or] = ACTIONS(2105), - }, - [STATE(2314)] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2107), - [sym_optional_chain] = ACTIONS(2109), - [sym_static_chain] = ACTIONS(2109), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_CARET_EQ] = ACTIONS(2109), - [anon_sym_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_LT_LT_EQ] = ACTIONS(2109), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_STAR_STAR] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_GT] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [aux_sym_binary_expression_token1] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2107), - [aux_sym_binary_expression_token2] = ACTIONS(2107), - [aux_sym_binary_expression_token3] = ACTIONS(2107), - [aux_sym_binary_expression_token4] = ACTIONS(2109), - [aux_sym_binary_expression_token5] = ACTIONS(2109), - [aux_sym_binary_expression_token6] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_IN] = ACTIONS(2107), - [anon_sym_InstanceOf] = ACTIONS(2107), - [anon_sym_instanceof] = ACTIONS(2107), - [anon_sym_INSTANCEOF] = ACTIONS(2107), - [anon_sym_instanceOf] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2109), - [sym__elvis_operator] = ACTIONS(2109), - [sym_logical_or] = ACTIONS(2109), - }, - [STATE(2315)] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2111), - [sym_optional_chain] = ACTIONS(2113), - [sym_static_chain] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2113), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_GT] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [aux_sym_binary_expression_token1] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2111), - [aux_sym_binary_expression_token2] = ACTIONS(2111), - [aux_sym_binary_expression_token3] = ACTIONS(2111), - [aux_sym_binary_expression_token4] = ACTIONS(2113), - [aux_sym_binary_expression_token5] = ACTIONS(2113), - [aux_sym_binary_expression_token6] = ACTIONS(2113), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_IN] = ACTIONS(2111), - [anon_sym_InstanceOf] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_INSTANCEOF] = ACTIONS(2111), - [anon_sym_instanceOf] = ACTIONS(2111), - [sym__ternary_qmark] = ACTIONS(2113), - [sym__elvis_operator] = ACTIONS(2113), - [sym_logical_or] = ACTIONS(2113), - }, - [STATE(2316)] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2115), - [sym_optional_chain] = ACTIONS(2117), - [sym_static_chain] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2117), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_STAR_STAR] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_GT] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [aux_sym_binary_expression_token1] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2115), - [aux_sym_binary_expression_token2] = ACTIONS(2115), - [aux_sym_binary_expression_token3] = ACTIONS(2115), - [aux_sym_binary_expression_token4] = ACTIONS(2117), - [aux_sym_binary_expression_token5] = ACTIONS(2117), - [aux_sym_binary_expression_token6] = ACTIONS(2117), - [anon_sym_QMARK_QMARK] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_IN] = ACTIONS(2115), - [anon_sym_InstanceOf] = ACTIONS(2115), - [anon_sym_instanceof] = ACTIONS(2115), - [anon_sym_INSTANCEOF] = ACTIONS(2115), - [anon_sym_instanceOf] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2117), - [sym__elvis_operator] = ACTIONS(2117), - [sym_logical_or] = ACTIONS(2117), - }, - [STATE(2317)] = { - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2007), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2007), - [anon_sym_instanceof] = ACTIONS(2007), - [anon_sym_INSTANCEOF] = ACTIONS(2007), - [anon_sym_instanceOf] = ACTIONS(2007), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), - [sym_tag_linefeed] = ACTIONS(2009), - }, - [STATE(2318)] = { + [STATE(2341)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1680), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -354971,6 +358429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(404), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -354982,15 +358441,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2319)] = { + [STATE(2342)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5297), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5293), - [anon_sym_DASH_GT] = ACTIONS(5293), + [anon_sym_EQ_GT] = ACTIONS(5295), + [anon_sym_DASH_GT] = ACTIONS(5295), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -355058,6 +358516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -355069,15 +358528,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2320)] = { + [STATE(2343)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1680), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -355145,6 +358603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(404), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -355156,30 +358615,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2321)] = { + [STATE(2344)] = { + [sym_identifier] = ACTIONS(5264), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -355210,7 +358670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -355234,197 +358694,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2322)] = { - [sym_identifier] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2095), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2095), - [sym_optional_chain] = ACTIONS(2097), - [sym_static_chain] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_CARET_EQ] = ACTIONS(2097), - [anon_sym_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), - [anon_sym_LT_LT_EQ] = ACTIONS(2097), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2097), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2097), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2097), - [anon_sym_AMP_AMP] = ACTIONS(2095), - [anon_sym_PIPE_PIPE] = ACTIONS(2095), - [anon_sym_GT_GT] = ACTIONS(2095), - [anon_sym_GT_GT_GT] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_BSLASH] = ACTIONS(2095), - [anon_sym_STAR_STAR] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ] = ACTIONS(2095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_GT] = ACTIONS(2097), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [aux_sym_binary_expression_token1] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_GT] = ACTIONS(2095), - [aux_sym_binary_expression_token2] = ACTIONS(2095), - [aux_sym_binary_expression_token3] = ACTIONS(2095), - [aux_sym_binary_expression_token4] = ACTIONS(2097), - [aux_sym_binary_expression_token5] = ACTIONS(2097), - [aux_sym_binary_expression_token6] = ACTIONS(2097), - [anon_sym_QMARK_QMARK] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_IN] = ACTIONS(2095), - [anon_sym_InstanceOf] = ACTIONS(2095), - [anon_sym_instanceof] = ACTIONS(2095), - [anon_sym_INSTANCEOF] = ACTIONS(2095), - [anon_sym_instanceOf] = ACTIONS(2095), - [sym__ternary_qmark] = ACTIONS(2097), - [sym__elvis_operator] = ACTIONS(2097), - [sym_logical_or] = ACTIONS(2097), - [sym_tag_linefeed] = ACTIONS(2097), + [STATE(2345)] = { + [sym_identifier] = ACTIONS(2045), + [anon_sym_DOT] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_EQ] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2047), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2045), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2045), + [sym_optional_chain] = ACTIONS(2047), + [sym_static_chain] = ACTIONS(2047), + [anon_sym_PLUS_EQ] = ACTIONS(2047), + [anon_sym_DASH_EQ] = ACTIONS(2047), + [anon_sym_STAR_EQ] = ACTIONS(2047), + [anon_sym_SLASH_EQ] = ACTIONS(2047), + [anon_sym_PERCENT_EQ] = ACTIONS(2047), + [anon_sym_CARET_EQ] = ACTIONS(2047), + [anon_sym_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2047), + [anon_sym_LT_LT_EQ] = ACTIONS(2047), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2047), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2047), + [anon_sym_AMP_AMP] = ACTIONS(2045), + [anon_sym_PIPE_PIPE] = ACTIONS(2045), + [anon_sym_GT_GT] = ACTIONS(2045), + [anon_sym_GT_GT_GT] = ACTIONS(2045), + [anon_sym_LT_LT] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_CARET] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_SLASH] = ACTIONS(2045), + [anon_sym_PERCENT] = ACTIONS(2045), + [anon_sym_BSLASH] = ACTIONS(2045), + [anon_sym_STAR_STAR] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_EQ_EQ] = ACTIONS(2045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2047), + [anon_sym_LT_GT] = ACTIONS(2047), + [anon_sym_BANG_EQ] = ACTIONS(2045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2047), + [aux_sym_binary_expression_token1] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2045), + [aux_sym_binary_expression_token2] = ACTIONS(2045), + [aux_sym_binary_expression_token3] = ACTIONS(2045), + [aux_sym_binary_expression_token4] = ACTIONS(2047), + [aux_sym_binary_expression_token5] = ACTIONS(2047), + [aux_sym_binary_expression_token6] = ACTIONS(2047), + [anon_sym_QMARK_QMARK] = ACTIONS(2045), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2045), + [anon_sym_in] = ACTIONS(2045), + [anon_sym_IN] = ACTIONS(2045), + [anon_sym_InstanceOf] = ACTIONS(2045), + [anon_sym_instanceof] = ACTIONS(2045), + [anon_sym_INSTANCEOF] = ACTIONS(2045), + [anon_sym_instanceOf] = ACTIONS(2045), + [sym__ternary_qmark] = ACTIONS(2047), + [sym__elvis_operator] = ACTIONS(2047), + [sym_logical_or] = ACTIONS(2047), + [sym_tag_linefeed] = ACTIONS(2047), }, - [STATE(2323)] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2099), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2099), - [sym_optional_chain] = ACTIONS(2101), - [sym_static_chain] = ACTIONS(2101), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_CARET_EQ] = ACTIONS(2101), - [anon_sym_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), - [anon_sym_LT_LT_EQ] = ACTIONS(2101), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2101), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2101), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2101), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_GT_GT_GT] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_BSLASH] = ACTIONS(2099), - [anon_sym_STAR_STAR] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(2099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_GT] = ACTIONS(2101), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [aux_sym_binary_expression_token1] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2099), - [aux_sym_binary_expression_token2] = ACTIONS(2099), - [aux_sym_binary_expression_token3] = ACTIONS(2099), - [aux_sym_binary_expression_token4] = ACTIONS(2101), - [aux_sym_binary_expression_token5] = ACTIONS(2101), - [aux_sym_binary_expression_token6] = ACTIONS(2101), - [anon_sym_QMARK_QMARK] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(2101), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2099), - [anon_sym_in] = ACTIONS(2099), - [anon_sym_IN] = ACTIONS(2099), - [anon_sym_InstanceOf] = ACTIONS(2099), - [anon_sym_instanceof] = ACTIONS(2099), - [anon_sym_INSTANCEOF] = ACTIONS(2099), - [anon_sym_instanceOf] = ACTIONS(2099), - [sym__ternary_qmark] = ACTIONS(2101), - [sym__elvis_operator] = ACTIONS(2101), - [sym_logical_or] = ACTIONS(2101), - [sym_tag_linefeed] = ACTIONS(2101), + [STATE(2346)] = { + [sym_identifier] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_EQ] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2075), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2073), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2073), + [sym_optional_chain] = ACTIONS(2075), + [sym_static_chain] = ACTIONS(2075), + [anon_sym_PLUS_EQ] = ACTIONS(2075), + [anon_sym_DASH_EQ] = ACTIONS(2075), + [anon_sym_STAR_EQ] = ACTIONS(2075), + [anon_sym_SLASH_EQ] = ACTIONS(2075), + [anon_sym_PERCENT_EQ] = ACTIONS(2075), + [anon_sym_CARET_EQ] = ACTIONS(2075), + [anon_sym_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2075), + [anon_sym_LT_LT_EQ] = ACTIONS(2075), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2075), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2075), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2075), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_GT_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2073), + [anon_sym_PERCENT] = ACTIONS(2073), + [anon_sym_BSLASH] = ACTIONS(2073), + [anon_sym_STAR_STAR] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_LT_GT] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [aux_sym_binary_expression_token1] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2073), + [aux_sym_binary_expression_token2] = ACTIONS(2073), + [aux_sym_binary_expression_token3] = ACTIONS(2073), + [aux_sym_binary_expression_token4] = ACTIONS(2075), + [aux_sym_binary_expression_token5] = ACTIONS(2075), + [aux_sym_binary_expression_token6] = ACTIONS(2075), + [anon_sym_QMARK_QMARK] = ACTIONS(2073), + [anon_sym_PLUS_PLUS] = ACTIONS(2075), + [anon_sym_DASH_DASH] = ACTIONS(2075), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2073), + [anon_sym_in] = ACTIONS(2073), + [anon_sym_IN] = ACTIONS(2073), + [anon_sym_InstanceOf] = ACTIONS(2073), + [anon_sym_instanceof] = ACTIONS(2073), + [anon_sym_INSTANCEOF] = ACTIONS(2073), + [anon_sym_instanceOf] = ACTIONS(2073), + [sym__ternary_qmark] = ACTIONS(2075), + [sym__elvis_operator] = ACTIONS(2075), + [sym_logical_or] = ACTIONS(2075), + [sym_tag_linefeed] = ACTIONS(2075), }, - [STATE(2324)] = { + [STATE(2347)] = { + [sym_identifier] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_EQ] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2083), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2083), + [sym_optional_chain] = ACTIONS(2085), + [sym_static_chain] = ACTIONS(2085), + [anon_sym_PLUS_EQ] = ACTIONS(2085), + [anon_sym_DASH_EQ] = ACTIONS(2085), + [anon_sym_STAR_EQ] = ACTIONS(2085), + [anon_sym_SLASH_EQ] = ACTIONS(2085), + [anon_sym_PERCENT_EQ] = ACTIONS(2085), + [anon_sym_CARET_EQ] = ACTIONS(2085), + [anon_sym_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2085), + [anon_sym_LT_LT_EQ] = ACTIONS(2085), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2085), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2085), + [anon_sym_AMP_AMP] = ACTIONS(2083), + [anon_sym_PIPE_PIPE] = ACTIONS(2083), + [anon_sym_GT_GT] = ACTIONS(2083), + [anon_sym_GT_GT_GT] = ACTIONS(2083), + [anon_sym_LT_LT] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_CARET] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_BSLASH] = ACTIONS(2083), + [anon_sym_STAR_STAR] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_LT_GT] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [aux_sym_binary_expression_token1] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2083), + [aux_sym_binary_expression_token2] = ACTIONS(2083), + [aux_sym_binary_expression_token3] = ACTIONS(2083), + [aux_sym_binary_expression_token4] = ACTIONS(2085), + [aux_sym_binary_expression_token5] = ACTIONS(2085), + [aux_sym_binary_expression_token6] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_IN] = ACTIONS(2083), + [anon_sym_InstanceOf] = ACTIONS(2083), + [anon_sym_instanceof] = ACTIONS(2083), + [anon_sym_INSTANCEOF] = ACTIONS(2083), + [anon_sym_instanceOf] = ACTIONS(2083), + [sym__ternary_qmark] = ACTIONS(2085), + [sym__elvis_operator] = ACTIONS(2085), + [sym_logical_or] = ACTIONS(2085), + [sym_tag_linefeed] = ACTIONS(2085), + }, + [STATE(2348)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1508), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -355492,7 +359039,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(404), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -355504,14 +359050,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2325)] = { + [STATE(2349)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5299), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5289), - [anon_sym_DASH_GT] = ACTIONS(5289), + [anon_sym_EQ_GT] = ACTIONS(5301), + [anon_sym_DASH_GT] = ACTIONS(5301), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -355579,7 +359126,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -355591,14 +359137,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2326)] = { + [STATE(2350)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1508), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -355666,7 +359213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(404), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -355678,101 +359224,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2327)] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2103), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2103), - [sym_optional_chain] = ACTIONS(2105), - [sym_static_chain] = ACTIONS(2105), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_CARET_EQ] = ACTIONS(2105), - [anon_sym_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2105), - [anon_sym_LT_LT_EQ] = ACTIONS(2105), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2105), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2103), - [anon_sym_PIPE_PIPE] = ACTIONS(2103), - [anon_sym_GT_GT] = ACTIONS(2103), - [anon_sym_GT_GT_GT] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_BSLASH] = ACTIONS(2103), - [anon_sym_STAR_STAR] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_GT] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [aux_sym_binary_expression_token1] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2103), - [aux_sym_binary_expression_token2] = ACTIONS(2103), - [aux_sym_binary_expression_token3] = ACTIONS(2103), - [aux_sym_binary_expression_token4] = ACTIONS(2105), - [aux_sym_binary_expression_token5] = ACTIONS(2105), - [aux_sym_binary_expression_token6] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2103), - [anon_sym_in] = ACTIONS(2103), - [anon_sym_IN] = ACTIONS(2103), - [anon_sym_InstanceOf] = ACTIONS(2103), - [anon_sym_instanceof] = ACTIONS(2103), - [anon_sym_INSTANCEOF] = ACTIONS(2103), - [anon_sym_instanceOf] = ACTIONS(2103), - [sym__ternary_qmark] = ACTIONS(2105), - [sym__elvis_operator] = ACTIONS(2105), - [sym_logical_or] = ACTIONS(2105), - [sym_tag_linefeed] = ACTIONS(2105), - }, - [STATE(2328)] = { + [STATE(2351)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -355840,7 +359300,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(404), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -355852,14 +359311,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2329)] = { + [STATE(2352)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5289), - [anon_sym_DASH_GT] = ACTIONS(5289), + [anon_sym_EQ_GT] = ACTIONS(5301), + [anon_sym_DASH_GT] = ACTIONS(5301), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -355927,7 +359387,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -355939,14 +359398,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2330)] = { + [STATE(2353)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1644), - [anon_sym_DASH_GT] = ACTIONS(1644), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -356014,7 +359474,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(404), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -356026,189 +359485,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2331)] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2107), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2107), - [sym_optional_chain] = ACTIONS(2109), - [sym_static_chain] = ACTIONS(2109), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_CARET_EQ] = ACTIONS(2109), - [anon_sym_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2109), - [anon_sym_LT_LT_EQ] = ACTIONS(2109), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2109), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2107), - [anon_sym_PIPE_PIPE] = ACTIONS(2107), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_GT_GT_GT] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_BSLASH] = ACTIONS(2107), - [anon_sym_STAR_STAR] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_GT] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [aux_sym_binary_expression_token1] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2107), - [aux_sym_binary_expression_token2] = ACTIONS(2107), - [aux_sym_binary_expression_token3] = ACTIONS(2107), - [aux_sym_binary_expression_token4] = ACTIONS(2109), - [aux_sym_binary_expression_token5] = ACTIONS(2109), - [aux_sym_binary_expression_token6] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2107), - [anon_sym_in] = ACTIONS(2107), - [anon_sym_IN] = ACTIONS(2107), - [anon_sym_InstanceOf] = ACTIONS(2107), - [anon_sym_instanceof] = ACTIONS(2107), - [anon_sym_INSTANCEOF] = ACTIONS(2107), - [anon_sym_instanceOf] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2109), - [sym__elvis_operator] = ACTIONS(2109), - [sym_logical_or] = ACTIONS(2109), - [sym_tag_linefeed] = ACTIONS(2109), - }, - [STATE(2332)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), + [STATE(2354)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2333)] = { + [STATE(2355)] = { + [sym_identifier] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_RPAREN] = ACTIONS(2091), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2089), + [sym_optional_chain] = ACTIONS(2091), + [sym_static_chain] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [anon_sym_DASH_EQ] = ACTIONS(2091), + [anon_sym_STAR_EQ] = ACTIONS(2091), + [anon_sym_SLASH_EQ] = ACTIONS(2091), + [anon_sym_PERCENT_EQ] = ACTIONS(2091), + [anon_sym_CARET_EQ] = ACTIONS(2091), + [anon_sym_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_LT_LT_EQ] = ACTIONS(2091), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2089), + [anon_sym_STAR_STAR] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_GT] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [aux_sym_binary_expression_token1] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2089), + [aux_sym_binary_expression_token2] = ACTIONS(2089), + [aux_sym_binary_expression_token3] = ACTIONS(2089), + [aux_sym_binary_expression_token4] = ACTIONS(2091), + [aux_sym_binary_expression_token5] = ACTIONS(2091), + [aux_sym_binary_expression_token6] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_IN] = ACTIONS(2089), + [anon_sym_InstanceOf] = ACTIONS(2089), + [anon_sym_instanceof] = ACTIONS(2089), + [anon_sym_INSTANCEOF] = ACTIONS(2089), + [anon_sym_instanceOf] = ACTIONS(2089), + [sym__ternary_qmark] = ACTIONS(2091), + [sym__elvis_operator] = ACTIONS(2091), + [sym_logical_or] = ACTIONS(2091), + }, + [STATE(2356)] = { + [sym_identifier] = ACTIONS(2101), + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2101), + [sym_optional_chain] = ACTIONS(2103), + [sym_static_chain] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [anon_sym_DASH_EQ] = ACTIONS(2103), + [anon_sym_STAR_EQ] = ACTIONS(2103), + [anon_sym_SLASH_EQ] = ACTIONS(2103), + [anon_sym_PERCENT_EQ] = ACTIONS(2103), + [anon_sym_CARET_EQ] = ACTIONS(2103), + [anon_sym_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_LT_LT_EQ] = ACTIONS(2103), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2101), + [anon_sym_STAR_STAR] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_GT] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [aux_sym_binary_expression_token1] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2101), + [aux_sym_binary_expression_token2] = ACTIONS(2101), + [aux_sym_binary_expression_token3] = ACTIONS(2101), + [aux_sym_binary_expression_token4] = ACTIONS(2103), + [aux_sym_binary_expression_token5] = ACTIONS(2103), + [aux_sym_binary_expression_token6] = ACTIONS(2103), + [anon_sym_QMARK_QMARK] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_IN] = ACTIONS(2101), + [anon_sym_InstanceOf] = ACTIONS(2101), + [anon_sym_instanceof] = ACTIONS(2101), + [anon_sym_INSTANCEOF] = ACTIONS(2101), + [anon_sym_instanceOf] = ACTIONS(2101), + [sym__ternary_qmark] = ACTIONS(2103), + [sym__elvis_operator] = ACTIONS(2103), + [sym_logical_or] = ACTIONS(2103), + }, + [STATE(2357)] = { + [sym_identifier] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_RPAREN] = ACTIONS(2107), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2105), + [sym_optional_chain] = ACTIONS(2107), + [sym_static_chain] = ACTIONS(2107), + [anon_sym_PLUS_EQ] = ACTIONS(2107), + [anon_sym_DASH_EQ] = ACTIONS(2107), + [anon_sym_STAR_EQ] = ACTIONS(2107), + [anon_sym_SLASH_EQ] = ACTIONS(2107), + [anon_sym_PERCENT_EQ] = ACTIONS(2107), + [anon_sym_CARET_EQ] = ACTIONS(2107), + [anon_sym_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_LT_LT_EQ] = ACTIONS(2107), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2107), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_GT] = ACTIONS(2107), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [aux_sym_binary_expression_token1] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2105), + [aux_sym_binary_expression_token2] = ACTIONS(2105), + [aux_sym_binary_expression_token3] = ACTIONS(2105), + [aux_sym_binary_expression_token4] = ACTIONS(2107), + [aux_sym_binary_expression_token5] = ACTIONS(2107), + [aux_sym_binary_expression_token6] = ACTIONS(2107), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_IN] = ACTIONS(2105), + [anon_sym_InstanceOf] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_INSTANCEOF] = ACTIONS(2105), + [anon_sym_instanceOf] = ACTIONS(2105), + [sym__ternary_qmark] = ACTIONS(2107), + [sym__elvis_operator] = ACTIONS(2107), + [sym_logical_or] = ACTIONS(2107), + }, + [STATE(2358)] = { + [sym_identifier] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_COMMA] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2019), + [sym_optional_chain] = ACTIONS(2021), + [sym_static_chain] = ACTIONS(2021), + [anon_sym_PLUS_EQ] = ACTIONS(2021), + [anon_sym_DASH_EQ] = ACTIONS(2021), + [anon_sym_STAR_EQ] = ACTIONS(2021), + [anon_sym_SLASH_EQ] = ACTIONS(2021), + [anon_sym_PERCENT_EQ] = ACTIONS(2021), + [anon_sym_CARET_EQ] = ACTIONS(2021), + [anon_sym_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_LT_LT_EQ] = ACTIONS(2021), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2021), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_GT_GT_GT] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_CARET] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_BSLASH] = ACTIONS(2019), + [anon_sym_STAR_STAR] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2021), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), + [anon_sym_LT_GT] = ACTIONS(2021), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), + [aux_sym_binary_expression_token1] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2019), + [aux_sym_binary_expression_token2] = ACTIONS(2019), + [aux_sym_binary_expression_token3] = ACTIONS(2019), + [aux_sym_binary_expression_token4] = ACTIONS(2021), + [aux_sym_binary_expression_token5] = ACTIONS(2021), + [aux_sym_binary_expression_token6] = ACTIONS(2021), + [anon_sym_QMARK_QMARK] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_IN] = ACTIONS(2019), + [anon_sym_InstanceOf] = ACTIONS(2019), + [anon_sym_instanceof] = ACTIONS(2019), + [anon_sym_INSTANCEOF] = ACTIONS(2019), + [anon_sym_instanceOf] = ACTIONS(2019), + [sym__ternary_qmark] = ACTIONS(2021), + [sym__elvis_operator] = ACTIONS(2021), + [sym_logical_or] = ACTIONS(2021), + }, + [STATE(2359)] = { + [sym_identifier] = ACTIONS(2027), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_RPAREN] = ACTIONS(2029), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2027), + [sym_optional_chain] = ACTIONS(2029), + [sym_static_chain] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2029), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_GT_GT] = ACTIONS(2027), + [anon_sym_GT_GT_GT] = ACTIONS(2027), + [anon_sym_LT_LT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2027), + [anon_sym_STAR_STAR] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), + [anon_sym_LT_GT] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), + [aux_sym_binary_expression_token1] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2027), + [aux_sym_binary_expression_token2] = ACTIONS(2027), + [aux_sym_binary_expression_token3] = ACTIONS(2027), + [aux_sym_binary_expression_token4] = ACTIONS(2029), + [aux_sym_binary_expression_token5] = ACTIONS(2029), + [aux_sym_binary_expression_token6] = ACTIONS(2029), + [anon_sym_QMARK_QMARK] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2027), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_IN] = ACTIONS(2027), + [anon_sym_InstanceOf] = ACTIONS(2027), + [anon_sym_instanceof] = ACTIONS(2027), + [anon_sym_INSTANCEOF] = ACTIONS(2027), + [anon_sym_instanceOf] = ACTIONS(2027), + [sym__ternary_qmark] = ACTIONS(2029), + [sym__elvis_operator] = ACTIONS(2029), + [sym_logical_or] = ACTIONS(2029), + }, + [STATE(2360)] = { + [sym_identifier] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_RPAREN] = ACTIONS(2033), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2031), + [sym_optional_chain] = ACTIONS(2033), + [sym_static_chain] = ACTIONS(2033), + [anon_sym_PLUS_EQ] = ACTIONS(2033), + [anon_sym_DASH_EQ] = ACTIONS(2033), + [anon_sym_STAR_EQ] = ACTIONS(2033), + [anon_sym_SLASH_EQ] = ACTIONS(2033), + [anon_sym_PERCENT_EQ] = ACTIONS(2033), + [anon_sym_CARET_EQ] = ACTIONS(2033), + [anon_sym_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_LT_LT_EQ] = ACTIONS(2033), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2033), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), + [anon_sym_LT_GT] = ACTIONS(2033), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), + [aux_sym_binary_expression_token1] = ACTIONS(2033), + [anon_sym_GT_EQ] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [aux_sym_binary_expression_token2] = ACTIONS(2031), + [aux_sym_binary_expression_token3] = ACTIONS(2031), + [aux_sym_binary_expression_token4] = ACTIONS(2033), + [aux_sym_binary_expression_token5] = ACTIONS(2033), + [aux_sym_binary_expression_token6] = ACTIONS(2033), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2033), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_IN] = ACTIONS(2031), + [anon_sym_InstanceOf] = ACTIONS(2031), + [anon_sym_instanceof] = ACTIONS(2031), + [anon_sym_INSTANCEOF] = ACTIONS(2031), + [anon_sym_instanceOf] = ACTIONS(2031), + [sym__ternary_qmark] = ACTIONS(2033), + [sym__elvis_operator] = ACTIONS(2033), + [sym_logical_or] = ACTIONS(2033), + }, + [STATE(2361)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5297), + [anon_sym_EQ] = ACTIONS(5303), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5293), - [anon_sym_DASH_GT] = ACTIONS(5293), + [anon_sym_EQ_GT] = ACTIONS(5301), + [anon_sym_DASH_GT] = ACTIONS(5301), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -356287,15 +360181,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2334)] = { + [STATE(2362)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1918), [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -356374,15 +360268,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2335)] = { + [STATE(2363)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1692), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -356450,6 +360343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(404), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -356461,15 +360355,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2336)] = { + [STATE(2364)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(5305), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(5293), - [anon_sym_DASH_GT] = ACTIONS(5293), + [anon_sym_EQ_GT] = ACTIONS(5295), + [anon_sym_DASH_GT] = ACTIONS(5295), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -356537,6 +360430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -356548,15 +360442,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2337)] = { + [STATE(2365)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_COLON] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1692), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(1574), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -356624,6 +360517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(404), [anon_sym_In] = ACTIONS(406), [anon_sym_in] = ACTIONS(406), [anon_sym_IN] = ACTIONS(406), @@ -356635,187 +360529,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2338)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2020), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2020), - [anon_sym_instanceof] = ACTIONS(2020), - [anon_sym_INSTANCEOF] = ACTIONS(2020), - [anon_sym_instanceOf] = ACTIONS(2020), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - [sym_tag_linefeed] = ACTIONS(2023), + [STATE(2366)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5218), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2339)] = { - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2009), - [anon_sym_instanceof] = ACTIONS(2009), - [anon_sym_INSTANCEOF] = ACTIONS(2009), - [anon_sym_instanceOf] = ACTIONS(2009), - [sym__automatic_semicolon] = ACTIONS(2017), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), + [STATE(2367)] = { + [sym_identifier] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2089), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2089), + [sym_optional_chain] = ACTIONS(2091), + [sym_static_chain] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [anon_sym_DASH_EQ] = ACTIONS(2091), + [anon_sym_STAR_EQ] = ACTIONS(2091), + [anon_sym_SLASH_EQ] = ACTIONS(2091), + [anon_sym_PERCENT_EQ] = ACTIONS(2091), + [anon_sym_CARET_EQ] = ACTIONS(2091), + [anon_sym_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2091), + [anon_sym_LT_LT_EQ] = ACTIONS(2091), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2091), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_BSLASH] = ACTIONS(2089), + [anon_sym_STAR_STAR] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_GT] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [aux_sym_binary_expression_token1] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2089), + [aux_sym_binary_expression_token2] = ACTIONS(2089), + [aux_sym_binary_expression_token3] = ACTIONS(2089), + [aux_sym_binary_expression_token4] = ACTIONS(2091), + [aux_sym_binary_expression_token5] = ACTIONS(2091), + [aux_sym_binary_expression_token6] = ACTIONS(2091), + [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_IN] = ACTIONS(2089), + [anon_sym_InstanceOf] = ACTIONS(2089), + [anon_sym_instanceof] = ACTIONS(2089), + [anon_sym_INSTANCEOF] = ACTIONS(2089), + [anon_sym_instanceOf] = ACTIONS(2089), + [sym__ternary_qmark] = ACTIONS(2091), + [sym__elvis_operator] = ACTIONS(2091), + [sym_logical_or] = ACTIONS(2091), + [sym_tag_linefeed] = ACTIONS(2091), }, - [STATE(2340)] = { + [STATE(2368)] = { + [sym_identifier] = ACTIONS(2101), + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2101), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2101), + [sym_optional_chain] = ACTIONS(2103), + [sym_static_chain] = ACTIONS(2103), + [anon_sym_PLUS_EQ] = ACTIONS(2103), + [anon_sym_DASH_EQ] = ACTIONS(2103), + [anon_sym_STAR_EQ] = ACTIONS(2103), + [anon_sym_SLASH_EQ] = ACTIONS(2103), + [anon_sym_PERCENT_EQ] = ACTIONS(2103), + [anon_sym_CARET_EQ] = ACTIONS(2103), + [anon_sym_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2103), + [anon_sym_LT_LT_EQ] = ACTIONS(2103), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2103), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2101), + [anon_sym_STAR_STAR] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_GT] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [aux_sym_binary_expression_token1] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2101), + [aux_sym_binary_expression_token2] = ACTIONS(2101), + [aux_sym_binary_expression_token3] = ACTIONS(2101), + [aux_sym_binary_expression_token4] = ACTIONS(2103), + [aux_sym_binary_expression_token5] = ACTIONS(2103), + [aux_sym_binary_expression_token6] = ACTIONS(2103), + [anon_sym_QMARK_QMARK] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_IN] = ACTIONS(2101), + [anon_sym_InstanceOf] = ACTIONS(2101), + [anon_sym_instanceof] = ACTIONS(2101), + [anon_sym_INSTANCEOF] = ACTIONS(2101), + [anon_sym_instanceOf] = ACTIONS(2101), + [sym__ternary_qmark] = ACTIONS(2103), + [sym__elvis_operator] = ACTIONS(2103), + [sym_logical_or] = ACTIONS(2103), + [sym_tag_linefeed] = ACTIONS(2103), + }, + [STATE(2369)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2370)] = { + [sym_identifier] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2371)] = { + [sym_identifier] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2105), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2105), + [sym_optional_chain] = ACTIONS(2107), + [sym_static_chain] = ACTIONS(2107), + [anon_sym_PLUS_EQ] = ACTIONS(2107), + [anon_sym_DASH_EQ] = ACTIONS(2107), + [anon_sym_STAR_EQ] = ACTIONS(2107), + [anon_sym_SLASH_EQ] = ACTIONS(2107), + [anon_sym_PERCENT_EQ] = ACTIONS(2107), + [anon_sym_CARET_EQ] = ACTIONS(2107), + [anon_sym_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2107), + [anon_sym_LT_LT_EQ] = ACTIONS(2107), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2107), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2107), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_BSLASH] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_GT] = ACTIONS(2107), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [aux_sym_binary_expression_token1] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2105), + [aux_sym_binary_expression_token2] = ACTIONS(2105), + [aux_sym_binary_expression_token3] = ACTIONS(2105), + [aux_sym_binary_expression_token4] = ACTIONS(2107), + [aux_sym_binary_expression_token5] = ACTIONS(2107), + [aux_sym_binary_expression_token6] = ACTIONS(2107), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_IN] = ACTIONS(2105), + [anon_sym_InstanceOf] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_INSTANCEOF] = ACTIONS(2105), + [anon_sym_instanceOf] = ACTIONS(2105), + [sym__ternary_qmark] = ACTIONS(2107), + [sym__elvis_operator] = ACTIONS(2107), + [sym_logical_or] = ACTIONS(2107), + [sym_tag_linefeed] = ACTIONS(2107), + }, + [STATE(2372)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -356896,189 +361138,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2341)] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_DOT] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2111), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2111), - [sym_optional_chain] = ACTIONS(2113), - [sym_static_chain] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2113), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2113), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2111), - [anon_sym_PIPE_PIPE] = ACTIONS(2111), - [anon_sym_GT_GT] = ACTIONS(2111), - [anon_sym_GT_GT_GT] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_BSLASH] = ACTIONS(2111), - [anon_sym_STAR_STAR] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_GT] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [aux_sym_binary_expression_token1] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2111), - [aux_sym_binary_expression_token2] = ACTIONS(2111), - [aux_sym_binary_expression_token3] = ACTIONS(2111), - [aux_sym_binary_expression_token4] = ACTIONS(2113), - [aux_sym_binary_expression_token5] = ACTIONS(2113), - [aux_sym_binary_expression_token6] = ACTIONS(2113), - [anon_sym_QMARK_QMARK] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2111), - [anon_sym_in] = ACTIONS(2111), - [anon_sym_IN] = ACTIONS(2111), - [anon_sym_InstanceOf] = ACTIONS(2111), - [anon_sym_instanceof] = ACTIONS(2111), - [anon_sym_INSTANCEOF] = ACTIONS(2111), - [anon_sym_instanceOf] = ACTIONS(2111), - [sym__ternary_qmark] = ACTIONS(2113), - [sym__elvis_operator] = ACTIONS(2113), - [sym_logical_or] = ACTIONS(2113), - [sym_tag_linefeed] = ACTIONS(2113), + [STATE(2373)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2342)] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2115), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2115), - [sym_optional_chain] = ACTIONS(2117), - [sym_static_chain] = ACTIONS(2117), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_CARET_EQ] = ACTIONS(2117), - [anon_sym_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2117), - [anon_sym_LT_LT_EQ] = ACTIONS(2117), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2117), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2117), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_BSLASH] = ACTIONS(2115), - [anon_sym_STAR_STAR] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_GT] = ACTIONS(2117), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [aux_sym_binary_expression_token1] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2115), - [aux_sym_binary_expression_token2] = ACTIONS(2115), - [aux_sym_binary_expression_token3] = ACTIONS(2115), - [aux_sym_binary_expression_token4] = ACTIONS(2117), - [aux_sym_binary_expression_token5] = ACTIONS(2117), - [aux_sym_binary_expression_token6] = ACTIONS(2117), - [anon_sym_QMARK_QMARK] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_IN] = ACTIONS(2115), - [anon_sym_InstanceOf] = ACTIONS(2115), - [anon_sym_instanceof] = ACTIONS(2115), - [anon_sym_INSTANCEOF] = ACTIONS(2115), - [anon_sym_instanceOf] = ACTIONS(2115), - [sym__ternary_qmark] = ACTIONS(2117), - [sym__elvis_operator] = ACTIONS(2117), - [sym_logical_or] = ACTIONS(2117), - [sym_tag_linefeed] = ACTIONS(2117), + [STATE(2374)] = { + [sym_identifier] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_EQ] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2019), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2019), + [sym_optional_chain] = ACTIONS(2021), + [sym_static_chain] = ACTIONS(2021), + [anon_sym_PLUS_EQ] = ACTIONS(2021), + [anon_sym_DASH_EQ] = ACTIONS(2021), + [anon_sym_STAR_EQ] = ACTIONS(2021), + [anon_sym_SLASH_EQ] = ACTIONS(2021), + [anon_sym_PERCENT_EQ] = ACTIONS(2021), + [anon_sym_CARET_EQ] = ACTIONS(2021), + [anon_sym_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2021), + [anon_sym_LT_LT_EQ] = ACTIONS(2021), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2021), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2021), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2021), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_GT_GT_GT] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_CARET] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_BSLASH] = ACTIONS(2019), + [anon_sym_STAR_STAR] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2021), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), + [anon_sym_LT_GT] = ACTIONS(2021), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), + [aux_sym_binary_expression_token1] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2019), + [aux_sym_binary_expression_token2] = ACTIONS(2019), + [aux_sym_binary_expression_token3] = ACTIONS(2019), + [aux_sym_binary_expression_token4] = ACTIONS(2021), + [aux_sym_binary_expression_token5] = ACTIONS(2021), + [aux_sym_binary_expression_token6] = ACTIONS(2021), + [anon_sym_QMARK_QMARK] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_IN] = ACTIONS(2019), + [anon_sym_InstanceOf] = ACTIONS(2019), + [anon_sym_instanceof] = ACTIONS(2019), + [anon_sym_INSTANCEOF] = ACTIONS(2019), + [anon_sym_instanceOf] = ACTIONS(2019), + [sym__ternary_qmark] = ACTIONS(2021), + [sym__elvis_operator] = ACTIONS(2021), + [sym_logical_or] = ACTIONS(2021), + [sym_tag_linefeed] = ACTIONS(2021), }, - [STATE(2343)] = { - [sym_identifier] = ACTIONS(5261), + [STATE(2375)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(5281), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), [aux_sym__operator_shaped_name_token3] = ACTIONS(507), @@ -357156,32 +361397,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2344)] = { + [STATE(2376)] = { + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1957), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1957), + [anon_sym_instanceof] = ACTIONS(1957), + [anon_sym_INSTANCEOF] = ACTIONS(1957), + [anon_sym_instanceOf] = ACTIONS(1957), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), + [sym_tag_linefeed] = ACTIONS(1959), + }, + [STATE(2377)] = { + [sym_identifier] = ACTIONS(2027), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2027), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2027), + [sym_optional_chain] = ACTIONS(2029), + [sym_static_chain] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2029), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_GT_GT] = ACTIONS(2027), + [anon_sym_GT_GT_GT] = ACTIONS(2027), + [anon_sym_LT_LT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2027), + [anon_sym_STAR_STAR] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), + [anon_sym_LT_GT] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), + [aux_sym_binary_expression_token1] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2027), + [aux_sym_binary_expression_token2] = ACTIONS(2027), + [aux_sym_binary_expression_token3] = ACTIONS(2027), + [aux_sym_binary_expression_token4] = ACTIONS(2029), + [aux_sym_binary_expression_token5] = ACTIONS(2029), + [aux_sym_binary_expression_token6] = ACTIONS(2029), + [anon_sym_QMARK_QMARK] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2027), + [anon_sym_in] = ACTIONS(2027), + [anon_sym_IN] = ACTIONS(2027), + [anon_sym_InstanceOf] = ACTIONS(2027), + [anon_sym_instanceof] = ACTIONS(2027), + [anon_sym_INSTANCEOF] = ACTIONS(2027), + [anon_sym_instanceOf] = ACTIONS(2027), + [sym__ternary_qmark] = ACTIONS(2029), + [sym__elvis_operator] = ACTIONS(2029), + [sym_logical_or] = ACTIONS(2029), + [sym_tag_linefeed] = ACTIONS(2029), + }, + [STATE(2378)] = { + [sym_identifier] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2031), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2031), + [sym_optional_chain] = ACTIONS(2033), + [sym_static_chain] = ACTIONS(2033), + [anon_sym_PLUS_EQ] = ACTIONS(2033), + [anon_sym_DASH_EQ] = ACTIONS(2033), + [anon_sym_STAR_EQ] = ACTIONS(2033), + [anon_sym_SLASH_EQ] = ACTIONS(2033), + [anon_sym_PERCENT_EQ] = ACTIONS(2033), + [anon_sym_CARET_EQ] = ACTIONS(2033), + [anon_sym_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2033), + [anon_sym_LT_LT_EQ] = ACTIONS(2033), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2033), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2033), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2033), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2031), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2031), + [anon_sym_STAR_STAR] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2033), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), + [anon_sym_LT_GT] = ACTIONS(2033), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), + [aux_sym_binary_expression_token1] = ACTIONS(2033), + [anon_sym_GT_EQ] = ACTIONS(2033), + [anon_sym_GT] = ACTIONS(2031), + [aux_sym_binary_expression_token2] = ACTIONS(2031), + [aux_sym_binary_expression_token3] = ACTIONS(2031), + [aux_sym_binary_expression_token4] = ACTIONS(2033), + [aux_sym_binary_expression_token5] = ACTIONS(2033), + [aux_sym_binary_expression_token6] = ACTIONS(2033), + [anon_sym_QMARK_QMARK] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2033), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2031), + [anon_sym_IN] = ACTIONS(2031), + [anon_sym_InstanceOf] = ACTIONS(2031), + [anon_sym_instanceof] = ACTIONS(2031), + [anon_sym_INSTANCEOF] = ACTIONS(2031), + [anon_sym_instanceOf] = ACTIONS(2031), + [sym__ternary_qmark] = ACTIONS(2033), + [sym__elvis_operator] = ACTIONS(2033), + [sym_logical_or] = ACTIONS(2033), + [sym_tag_linefeed] = ACTIONS(2033), + }, + [STATE(2379)] = { + [sym_identifier] = ACTIONS(5264), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5211), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2380)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5276), + [anon_sym_RBRACE] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5276), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2381)] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -357212,7 +361888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -357236,110 +361912,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2345)] = { - [sym_identifier] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2005), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2003), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2003), - [sym_optional_chain] = ACTIONS(2005), - [sym_static_chain] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_PERCENT_EQ] = ACTIONS(2005), - [anon_sym_CARET_EQ] = ACTIONS(2005), - [anon_sym_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2005), - [anon_sym_LT_LT_EQ] = ACTIONS(2005), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2005), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2005), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2005), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_GT_GT_GT] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_PERCENT] = ACTIONS(2003), - [anon_sym_BSLASH] = ACTIONS(2003), - [anon_sym_STAR_STAR] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT_GT] = ACTIONS(2005), - [anon_sym_BANG_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2005), - [aux_sym_binary_expression_token1] = ACTIONS(2005), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2003), - [aux_sym_binary_expression_token2] = ACTIONS(2003), - [aux_sym_binary_expression_token3] = ACTIONS(2003), - [aux_sym_binary_expression_token4] = ACTIONS(2005), - [aux_sym_binary_expression_token5] = ACTIONS(2005), - [aux_sym_binary_expression_token6] = ACTIONS(2005), - [anon_sym_QMARK_QMARK] = ACTIONS(2003), - [anon_sym_PLUS_PLUS] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2003), - [anon_sym_in] = ACTIONS(2003), - [anon_sym_IN] = ACTIONS(2003), - [anon_sym_InstanceOf] = ACTIONS(2003), - [anon_sym_instanceof] = ACTIONS(2003), - [anon_sym_INSTANCEOF] = ACTIONS(2003), - [anon_sym_instanceOf] = ACTIONS(2003), - [sym__ternary_qmark] = ACTIONS(2005), - [sym__elvis_operator] = ACTIONS(2005), - [sym_logical_or] = ACTIONS(2005), - [sym_tag_linefeed] = ACTIONS(2005), + [STATE(2382)] = { + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1959), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1959), + [anon_sym_instanceof] = ACTIONS(1959), + [anon_sym_INSTANCEOF] = ACTIONS(1959), + [anon_sym_instanceOf] = ACTIONS(1959), + [sym__automatic_semicolon] = ACTIONS(1949), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), }, - [STATE(2346)] = { + [STATE(2383)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_DASH_GT] = ACTIONS(1506), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2384)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5214), - [anon_sym_RBRACE] = ACTIONS(5214), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5214), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -357414,106 +362176,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(1610), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2347)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2017), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2020), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2020), - [sym_optional_chain] = ACTIONS(2017), - [sym_static_chain] = ACTIONS(2017), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2020), - [anon_sym_PIPE_PIPE] = ACTIONS(2020), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PERCENT] = ACTIONS(2020), - [anon_sym_BSLASH] = ACTIONS(2020), - [anon_sym_STAR_STAR] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_GT] = ACTIONS(2017), - [anon_sym_BANG_EQ] = ACTIONS(2020), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [aux_sym_binary_expression_token1] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2020), - [aux_sym_binary_expression_token2] = ACTIONS(2020), - [aux_sym_binary_expression_token3] = ACTIONS(2020), - [aux_sym_binary_expression_token4] = ACTIONS(2017), - [aux_sym_binary_expression_token5] = ACTIONS(2017), - [aux_sym_binary_expression_token6] = ACTIONS(2017), - [anon_sym_QMARK_QMARK] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2017), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2020), - [anon_sym_in] = ACTIONS(2020), - [anon_sym_IN] = ACTIONS(2020), - [anon_sym_InstanceOf] = ACTIONS(2020), - [anon_sym_instanceof] = ACTIONS(2020), - [anon_sym_INSTANCEOF] = ACTIONS(2020), - [anon_sym_instanceOf] = ACTIONS(2020), - [sym__ternary_qmark] = ACTIONS(2017), - [sym__elvis_operator] = ACTIONS(2017), - [sym_logical_or] = ACTIONS(2017), - [sym_tag_linefeed] = ACTIONS(2023), + [STATE(2385)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), }, - [STATE(2348)] = { + [STATE(2386)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2387)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -357588,19 +362434,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(1602), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2349)] = { + [STATE(2388)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5307), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -357679,14 +362525,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2350)] = { + [STATE(2389)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(2127), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -357761,123 +362607,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2351)] = { - [sym_identifier] = ACTIONS(1981), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1983), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1981), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1981), - [sym_optional_chain] = ACTIONS(1983), - [sym_static_chain] = ACTIONS(1983), - [anon_sym_PLUS_EQ] = ACTIONS(1983), - [anon_sym_DASH_EQ] = ACTIONS(1983), - [anon_sym_STAR_EQ] = ACTIONS(1983), - [anon_sym_SLASH_EQ] = ACTIONS(1983), - [anon_sym_PERCENT_EQ] = ACTIONS(1983), - [anon_sym_CARET_EQ] = ACTIONS(1983), - [anon_sym_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1983), - [anon_sym_LT_LT_EQ] = ACTIONS(1983), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1983), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1983), - [anon_sym_AMP_AMP] = ACTIONS(1981), - [anon_sym_PIPE_PIPE] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1981), - [anon_sym_GT_GT_GT] = ACTIONS(1981), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_BSLASH] = ACTIONS(1981), - [anon_sym_STAR_STAR] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1983), - [anon_sym_EQ_EQ] = ACTIONS(1981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1983), - [anon_sym_LT_GT] = ACTIONS(1983), - [anon_sym_BANG_EQ] = ACTIONS(1981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1983), - [aux_sym_binary_expression_token1] = ACTIONS(1983), - [anon_sym_GT_EQ] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1981), - [aux_sym_binary_expression_token2] = ACTIONS(1981), - [aux_sym_binary_expression_token3] = ACTIONS(1981), - [aux_sym_binary_expression_token4] = ACTIONS(1983), - [aux_sym_binary_expression_token5] = ACTIONS(1983), - [aux_sym_binary_expression_token6] = ACTIONS(1983), - [anon_sym_QMARK_QMARK] = ACTIONS(1981), - [anon_sym_PLUS_PLUS] = ACTIONS(1983), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_IN] = ACTIONS(1981), - [anon_sym_InstanceOf] = ACTIONS(1981), - [anon_sym_instanceof] = ACTIONS(1981), - [anon_sym_INSTANCEOF] = ACTIONS(1981), - [anon_sym_instanceOf] = ACTIONS(1981), - [sym__ternary_qmark] = ACTIONS(1983), - [sym__elvis_operator] = ACTIONS(1983), - [sym_logical_or] = ACTIONS(1983), - [sym_tag_linefeed] = ACTIONS(1983), + [STATE(2390)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), }, - [STATE(2352)] = { - [sym_identifier] = ACTIONS(5261), + [STATE(2391)] = { + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(404), + [aux_sym__operator_shaped_name_token2] = ACTIONS(404), + [aux_sym__operator_shaped_name_token3] = ACTIONS(404), + [aux_sym__operator_shaped_name_token4] = ACTIONS(404), + [aux_sym__operator_shaped_name_token5] = ACTIONS(406), + [aux_sym__operator_shaped_name_token6] = ACTIONS(404), + [aux_sym__operator_shaped_name_token7] = ACTIONS(406), + [aux_sym__operator_shaped_name_token8] = ACTIONS(406), + [aux_sym__operator_shaped_name_token9] = ACTIONS(404), + [aux_sym__operator_shaped_name_token10] = ACTIONS(404), + [aux_sym__operator_shaped_name_token11] = ACTIONS(404), + [aux_sym__operator_shaped_name_token12] = ACTIONS(404), + [aux_sym__operator_shaped_name_token13] = ACTIONS(404), + [aux_sym__operator_shaped_name_token14] = ACTIONS(404), + [aux_sym__operator_shaped_name_token15] = ACTIONS(404), + [aux_sym__operator_shaped_name_token16] = ACTIONS(404), + [aux_sym__operator_shaped_name_token17] = ACTIONS(406), + [sym_optional_chain] = ACTIONS(404), + [sym_static_chain] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_STAR_STAR_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(404), + [anon_sym_LT_GT] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(404), + [aux_sym_binary_expression_token1] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [aux_sym_binary_expression_token2] = ACTIONS(406), + [aux_sym_binary_expression_token3] = ACTIONS(406), + [aux_sym_binary_expression_token4] = ACTIONS(404), + [aux_sym_binary_expression_token5] = ACTIONS(404), + [aux_sym_binary_expression_token6] = ACTIONS(404), + [anon_sym_QMARK_QMARK] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2392)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -357908,7 +362836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -357932,125 +362860,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(1606), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2353)] = { - [sym_identifier] = ACTIONS(1985), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1987), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1985), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1985), - [sym_optional_chain] = ACTIONS(1987), - [sym_static_chain] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1987), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1987), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1985), - [anon_sym_PIPE_PIPE] = ACTIONS(1985), - [anon_sym_GT_GT] = ACTIONS(1985), - [anon_sym_GT_GT_GT] = ACTIONS(1985), - [anon_sym_LT_LT] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_PERCENT] = ACTIONS(1985), - [anon_sym_BSLASH] = ACTIONS(1985), - [anon_sym_STAR_STAR] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1987), - [anon_sym_LT_GT] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1987), - [aux_sym_binary_expression_token1] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1985), - [aux_sym_binary_expression_token2] = ACTIONS(1985), - [aux_sym_binary_expression_token3] = ACTIONS(1985), - [aux_sym_binary_expression_token4] = ACTIONS(1987), - [aux_sym_binary_expression_token5] = ACTIONS(1987), - [aux_sym_binary_expression_token6] = ACTIONS(1987), - [anon_sym_QMARK_QMARK] = ACTIONS(1985), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1985), - [anon_sym_in] = ACTIONS(1985), - [anon_sym_IN] = ACTIONS(1985), - [anon_sym_InstanceOf] = ACTIONS(1985), - [anon_sym_instanceof] = ACTIONS(1985), - [anon_sym_INSTANCEOF] = ACTIONS(1985), - [anon_sym_instanceOf] = ACTIONS(1985), - [sym__ternary_qmark] = ACTIONS(1987), - [sym__elvis_operator] = ACTIONS(1987), - [sym_logical_or] = ACTIONS(1987), - [sym_tag_linefeed] = ACTIONS(1987), - }, - [STATE(2354)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2393)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(5276), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -358081,7 +362923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -358105,39 +362947,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2355)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2394)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -358168,7 +363008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(507), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -358192,23 +363032,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(1676), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2356)] = { + [STATE(2395)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1191), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -358287,14 +363127,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2357)] = { + [STATE(2396)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -358373,14 +363213,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2358)] = { + [STATE(2397)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -358459,14 +363299,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2359)] = { + [STATE(2398)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1064), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -358545,14 +363385,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(404), [sym_logical_or] = ACTIONS(404), }, - [STATE(2360)] = { + [STATE(2399)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -358631,14 +363471,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2361)] = { + [STATE(2400)] = { [anon_sym_DOT] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(1678), [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1038), + [anon_sym_DASH_GT] = ACTIONS(1038), [aux_sym__operator_shaped_name_token1] = ACTIONS(404), [aux_sym__operator_shaped_name_token2] = ACTIONS(404), [aux_sym__operator_shaped_name_token3] = ACTIONS(404), @@ -358706,23 +363546,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(404), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [anon_sym_In] = ACTIONS(406), + [anon_sym_in] = ACTIONS(406), + [anon_sym_IN] = ACTIONS(406), + [anon_sym_InstanceOf] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(404), + [anon_sym_INSTANCEOF] = ACTIONS(404), + [anon_sym_instanceOf] = ACTIONS(404), + [sym__ternary_qmark] = ACTIONS(404), + [sym__elvis_operator] = ACTIONS(404), + [sym_logical_or] = ACTIONS(404), + }, + [STATE(2401)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5230), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2402)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2403)] = { + [sym_identifier] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2404)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2405)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_CARET_EQ] = ACTIONS(529), + [anon_sym_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_EQ] = ACTIONS(529), + [anon_sym_GT_GT_EQ] = ACTIONS(529), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), + [anon_sym_LT_LT_EQ] = ACTIONS(529), + [anon_sym_STAR_STAR_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP_EQ] = ACTIONS(529), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(507), + [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(507), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2362)] = { + [STATE(2406)] = { + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1957), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1959), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1957), + [sym_optional_chain] = ACTIONS(1959), + [sym_static_chain] = ACTIONS(1959), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_STAR_EQ] = ACTIONS(1959), + [anon_sym_SLASH_EQ] = ACTIONS(1959), + [anon_sym_PERCENT_EQ] = ACTIONS(1959), + [anon_sym_CARET_EQ] = ACTIONS(1959), + [anon_sym_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1959), + [anon_sym_LT_LT_EQ] = ACTIONS(1959), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1959), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1959), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1957), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_BSLASH] = ACTIONS(1959), + [anon_sym_STAR_STAR] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_GT] = ACTIONS(1959), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [aux_sym_binary_expression_token1] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1957), + [aux_sym_binary_expression_token2] = ACTIONS(1957), + [aux_sym_binary_expression_token3] = ACTIONS(1957), + [aux_sym_binary_expression_token4] = ACTIONS(1959), + [aux_sym_binary_expression_token5] = ACTIONS(1959), + [aux_sym_binary_expression_token6] = ACTIONS(1959), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_IN] = ACTIONS(1957), + [anon_sym_InstanceOf] = ACTIONS(1959), + [anon_sym_instanceof] = ACTIONS(1959), + [anon_sym_INSTANCEOF] = ACTIONS(1959), + [anon_sym_instanceOf] = ACTIONS(1959), + [sym__ternary_qmark] = ACTIONS(1959), + [sym__elvis_operator] = ACTIONS(1959), + [sym_logical_or] = ACTIONS(1959), + }, + [STATE(2407)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(5297), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -358791,6 +364142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -358798,17 +364150,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(1678), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2363)] = { + [STATE(2408)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(5305), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -358877,6 +364227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -358884,105 +364235,520 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(1696), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2364)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [STATE(2409)] = { + [sym_object_assignment_pattern] = STATE(4749), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4633), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4749), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4469), + [sym_pair_pattern] = STATE(4749), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4671), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5311), + [anon_sym_let] = ACTIONS(5309), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5309), + [anon_sym_query] = ACTIONS(5309), + [anon_sym_QUERY] = ACTIONS(5309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5317), + [anon_sym_set] = ACTIONS(5317), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5309), + [anon_sym_QueryExecute] = ACTIONS(5309), + [anon_sym_queryexecute] = ACTIONS(5309), + [anon_sym_QUERYEXECUTE] = ACTIONS(5309), + [anon_sym_queryExecute] = ACTIONS(5309), + [anon_sym_Abstract] = ACTIONS(5309), + [anon_sym_abstract] = ACTIONS(5309), + [anon_sym_ABSTRACT] = ACTIONS(5309), + [anon_sym_Component] = ACTIONS(5309), + [anon_sym_component] = ACTIONS(5309), + [anon_sym_COMPONENT] = ACTIONS(5309), + [anon_sym_Debugger] = ACTIONS(5309), + [anon_sym_debugger] = ACTIONS(5309), + [anon_sym_DEBUGGER] = ACTIONS(5309), + [anon_sym_Final] = ACTIONS(5309), + [anon_sym_final] = ACTIONS(5309), + [anon_sym_FINAL] = ACTIONS(5309), + [anon_sym_Include] = ACTIONS(5309), + [anon_sym_include] = ACTIONS(5309), + [anon_sym_INCLUDE] = ACTIONS(5309), + [anon_sym_New] = ACTIONS(5309), + [anon_sym_new] = ACTIONS(5309), + [anon_sym_NEW] = ACTIONS(5309), + [anon_sym_Package] = ACTIONS(5309), + [anon_sym_package] = ACTIONS(5309), + [anon_sym_PACKAGE] = ACTIONS(5309), + [anon_sym_Private] = ACTIONS(5309), + [anon_sym_private] = ACTIONS(5309), + [anon_sym_PRIVATE] = ACTIONS(5309), + [anon_sym_Public] = ACTIONS(5309), + [anon_sym_public] = ACTIONS(5309), + [anon_sym_PUBLIC] = ACTIONS(5309), + [anon_sym_Remote] = ACTIONS(5309), + [anon_sym_remote] = ACTIONS(5309), + [anon_sym_REMOTE] = ACTIONS(5309), + [anon_sym_Static] = ACTIONS(5321), + [anon_sym_static] = ACTIONS(5321), + [anon_sym_STATIC] = ACTIONS(5321), }, - [STATE(2365)] = { + [STATE(2410)] = { + [sym_object_assignment_pattern] = STATE(4722), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4830), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4722), + [sym_method_definition] = STATE(4830), + [sym_pair] = STATE(4830), + [sym_cf_pair] = STATE(4490), + [sym_pair_pattern] = STATE(4722), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4727), + [aux_sym_object_pattern_repeat1] = STATE(4734), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5325), + [anon_sym_let] = ACTIONS(5323), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5323), + [anon_sym_query] = ACTIONS(5323), + [anon_sym_QUERY] = ACTIONS(5323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5327), + [anon_sym_set] = ACTIONS(5327), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5323), + [anon_sym_QueryExecute] = ACTIONS(5323), + [anon_sym_queryexecute] = ACTIONS(5323), + [anon_sym_QUERYEXECUTE] = ACTIONS(5323), + [anon_sym_queryExecute] = ACTIONS(5323), + [anon_sym_Abstract] = ACTIONS(5323), + [anon_sym_abstract] = ACTIONS(5323), + [anon_sym_ABSTRACT] = ACTIONS(5323), + [anon_sym_Component] = ACTIONS(5323), + [anon_sym_component] = ACTIONS(5323), + [anon_sym_COMPONENT] = ACTIONS(5323), + [anon_sym_Debugger] = ACTIONS(5323), + [anon_sym_debugger] = ACTIONS(5323), + [anon_sym_DEBUGGER] = ACTIONS(5323), + [anon_sym_Final] = ACTIONS(5323), + [anon_sym_final] = ACTIONS(5323), + [anon_sym_FINAL] = ACTIONS(5323), + [anon_sym_Include] = ACTIONS(5323), + [anon_sym_include] = ACTIONS(5323), + [anon_sym_INCLUDE] = ACTIONS(5323), + [anon_sym_New] = ACTIONS(5323), + [anon_sym_new] = ACTIONS(5323), + [anon_sym_NEW] = ACTIONS(5323), + [anon_sym_Package] = ACTIONS(5323), + [anon_sym_package] = ACTIONS(5323), + [anon_sym_PACKAGE] = ACTIONS(5323), + [anon_sym_Private] = ACTIONS(5323), + [anon_sym_private] = ACTIONS(5323), + [anon_sym_PRIVATE] = ACTIONS(5323), + [anon_sym_Public] = ACTIONS(5323), + [anon_sym_public] = ACTIONS(5323), + [anon_sym_PUBLIC] = ACTIONS(5323), + [anon_sym_Remote] = ACTIONS(5323), + [anon_sym_remote] = ACTIONS(5323), + [anon_sym_REMOTE] = ACTIONS(5323), + [anon_sym_Static] = ACTIONS(5329), + [anon_sym_static] = ACTIONS(5329), + [anon_sym_STATIC] = ACTIONS(5329), + }, + [STATE(2411)] = { + [sym_object_assignment_pattern] = STATE(4689), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4695), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4689), + [sym_method_definition] = STATE(4695), + [sym_pair] = STATE(4695), + [sym_cf_pair] = STATE(4463), + [sym_pair_pattern] = STATE(4689), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4700), + [aux_sym_object_pattern_repeat1] = STATE(4707), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5331), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5333), + [anon_sym_let] = ACTIONS(5331), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5331), + [anon_sym_query] = ACTIONS(5331), + [anon_sym_QUERY] = ACTIONS(5331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5335), + [anon_sym_set] = ACTIONS(5335), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5331), + [anon_sym_QueryExecute] = ACTIONS(5331), + [anon_sym_queryexecute] = ACTIONS(5331), + [anon_sym_QUERYEXECUTE] = ACTIONS(5331), + [anon_sym_queryExecute] = ACTIONS(5331), + [anon_sym_Abstract] = ACTIONS(5331), + [anon_sym_abstract] = ACTIONS(5331), + [anon_sym_ABSTRACT] = ACTIONS(5331), + [anon_sym_Component] = ACTIONS(5331), + [anon_sym_component] = ACTIONS(5331), + [anon_sym_COMPONENT] = ACTIONS(5331), + [anon_sym_Debugger] = ACTIONS(5331), + [anon_sym_debugger] = ACTIONS(5331), + [anon_sym_DEBUGGER] = ACTIONS(5331), + [anon_sym_Final] = ACTIONS(5331), + [anon_sym_final] = ACTIONS(5331), + [anon_sym_FINAL] = ACTIONS(5331), + [anon_sym_Include] = ACTIONS(5331), + [anon_sym_include] = ACTIONS(5331), + [anon_sym_INCLUDE] = ACTIONS(5331), + [anon_sym_New] = ACTIONS(5331), + [anon_sym_new] = ACTIONS(5331), + [anon_sym_NEW] = ACTIONS(5331), + [anon_sym_Package] = ACTIONS(5331), + [anon_sym_package] = ACTIONS(5331), + [anon_sym_PACKAGE] = ACTIONS(5331), + [anon_sym_Private] = ACTIONS(5331), + [anon_sym_private] = ACTIONS(5331), + [anon_sym_PRIVATE] = ACTIONS(5331), + [anon_sym_Public] = ACTIONS(5331), + [anon_sym_public] = ACTIONS(5331), + [anon_sym_PUBLIC] = ACTIONS(5331), + [anon_sym_Remote] = ACTIONS(5331), + [anon_sym_remote] = ACTIONS(5331), + [anon_sym_REMOTE] = ACTIONS(5331), + [anon_sym_Static] = ACTIONS(5337), + [anon_sym_static] = ACTIONS(5337), + [anon_sym_STATIC] = ACTIONS(5337), + }, + [STATE(2412)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4673), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4673), + [sym_pair] = STATE(4673), + [sym_cf_pair] = STATE(4482), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4693), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5339), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5341), + [anon_sym_let] = ACTIONS(5339), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5339), + [anon_sym_query] = ACTIONS(5339), + [anon_sym_QUERY] = ACTIONS(5339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5343), + [anon_sym_set] = ACTIONS(5343), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5339), + [anon_sym_QueryExecute] = ACTIONS(5339), + [anon_sym_queryexecute] = ACTIONS(5339), + [anon_sym_QUERYEXECUTE] = ACTIONS(5339), + [anon_sym_queryExecute] = ACTIONS(5339), + [anon_sym_Abstract] = ACTIONS(5339), + [anon_sym_abstract] = ACTIONS(5339), + [anon_sym_ABSTRACT] = ACTIONS(5339), + [anon_sym_Component] = ACTIONS(5339), + [anon_sym_component] = ACTIONS(5339), + [anon_sym_COMPONENT] = ACTIONS(5339), + [anon_sym_Debugger] = ACTIONS(5339), + [anon_sym_debugger] = ACTIONS(5339), + [anon_sym_DEBUGGER] = ACTIONS(5339), + [anon_sym_Final] = ACTIONS(5339), + [anon_sym_final] = ACTIONS(5339), + [anon_sym_FINAL] = ACTIONS(5339), + [anon_sym_Include] = ACTIONS(5339), + [anon_sym_include] = ACTIONS(5339), + [anon_sym_INCLUDE] = ACTIONS(5339), + [anon_sym_New] = ACTIONS(5339), + [anon_sym_new] = ACTIONS(5339), + [anon_sym_NEW] = ACTIONS(5339), + [anon_sym_Package] = ACTIONS(5339), + [anon_sym_package] = ACTIONS(5339), + [anon_sym_PACKAGE] = ACTIONS(5339), + [anon_sym_Private] = ACTIONS(5339), + [anon_sym_private] = ACTIONS(5339), + [anon_sym_PRIVATE] = ACTIONS(5339), + [anon_sym_Public] = ACTIONS(5339), + [anon_sym_public] = ACTIONS(5339), + [anon_sym_PUBLIC] = ACTIONS(5339), + [anon_sym_Remote] = ACTIONS(5339), + [anon_sym_remote] = ACTIONS(5339), + [anon_sym_REMOTE] = ACTIONS(5339), + [anon_sym_Static] = ACTIONS(5345), + [anon_sym_static] = ACTIONS(5345), + [anon_sym_STATIC] = ACTIONS(5345), + }, + [STATE(2413)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4713), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4713), + [sym_pair] = STATE(4713), + [sym_cf_pair] = STATE(4488), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4716), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5347), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5349), + [anon_sym_let] = ACTIONS(5347), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5347), + [anon_sym_query] = ACTIONS(5347), + [anon_sym_QUERY] = ACTIONS(5347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5351), + [anon_sym_set] = ACTIONS(5351), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5347), + [anon_sym_QueryExecute] = ACTIONS(5347), + [anon_sym_queryexecute] = ACTIONS(5347), + [anon_sym_QUERYEXECUTE] = ACTIONS(5347), + [anon_sym_queryExecute] = ACTIONS(5347), + [anon_sym_Abstract] = ACTIONS(5347), + [anon_sym_abstract] = ACTIONS(5347), + [anon_sym_ABSTRACT] = ACTIONS(5347), + [anon_sym_Component] = ACTIONS(5347), + [anon_sym_component] = ACTIONS(5347), + [anon_sym_COMPONENT] = ACTIONS(5347), + [anon_sym_Debugger] = ACTIONS(5347), + [anon_sym_debugger] = ACTIONS(5347), + [anon_sym_DEBUGGER] = ACTIONS(5347), + [anon_sym_Final] = ACTIONS(5347), + [anon_sym_final] = ACTIONS(5347), + [anon_sym_FINAL] = ACTIONS(5347), + [anon_sym_Include] = ACTIONS(5347), + [anon_sym_include] = ACTIONS(5347), + [anon_sym_INCLUDE] = ACTIONS(5347), + [anon_sym_New] = ACTIONS(5347), + [anon_sym_new] = ACTIONS(5347), + [anon_sym_NEW] = ACTIONS(5347), + [anon_sym_Package] = ACTIONS(5347), + [anon_sym_package] = ACTIONS(5347), + [anon_sym_PACKAGE] = ACTIONS(5347), + [anon_sym_Private] = ACTIONS(5347), + [anon_sym_private] = ACTIONS(5347), + [anon_sym_PRIVATE] = ACTIONS(5347), + [anon_sym_Public] = ACTIONS(5347), + [anon_sym_public] = ACTIONS(5347), + [anon_sym_PUBLIC] = ACTIONS(5347), + [anon_sym_Remote] = ACTIONS(5347), + [anon_sym_remote] = ACTIONS(5347), + [anon_sym_REMOTE] = ACTIONS(5347), + [anon_sym_Static] = ACTIONS(5353), + [anon_sym_static] = ACTIONS(5353), + [anon_sym_STATIC] = ACTIONS(5353), + }, + [STATE(2414)] = { + [sym_object_assignment_pattern] = STATE(4664), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4713), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4664), + [sym_method_definition] = STATE(4713), + [sym_pair] = STATE(4713), + [sym_cf_pair] = STATE(4486), + [sym_pair_pattern] = STATE(4664), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4716), + [aux_sym_object_pattern_repeat1] = STATE(4697), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5355), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5357), + [anon_sym_let] = ACTIONS(5355), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5355), + [anon_sym_query] = ACTIONS(5355), + [anon_sym_QUERY] = ACTIONS(5355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5359), + [anon_sym_set] = ACTIONS(5359), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5355), + [anon_sym_QueryExecute] = ACTIONS(5355), + [anon_sym_queryexecute] = ACTIONS(5355), + [anon_sym_QUERYEXECUTE] = ACTIONS(5355), + [anon_sym_queryExecute] = ACTIONS(5355), + [anon_sym_Abstract] = ACTIONS(5355), + [anon_sym_abstract] = ACTIONS(5355), + [anon_sym_ABSTRACT] = ACTIONS(5355), + [anon_sym_Component] = ACTIONS(5355), + [anon_sym_component] = ACTIONS(5355), + [anon_sym_COMPONENT] = ACTIONS(5355), + [anon_sym_Debugger] = ACTIONS(5355), + [anon_sym_debugger] = ACTIONS(5355), + [anon_sym_DEBUGGER] = ACTIONS(5355), + [anon_sym_Final] = ACTIONS(5355), + [anon_sym_final] = ACTIONS(5355), + [anon_sym_FINAL] = ACTIONS(5355), + [anon_sym_Include] = ACTIONS(5355), + [anon_sym_include] = ACTIONS(5355), + [anon_sym_INCLUDE] = ACTIONS(5355), + [anon_sym_New] = ACTIONS(5355), + [anon_sym_new] = ACTIONS(5355), + [anon_sym_NEW] = ACTIONS(5355), + [anon_sym_Package] = ACTIONS(5355), + [anon_sym_package] = ACTIONS(5355), + [anon_sym_PACKAGE] = ACTIONS(5355), + [anon_sym_Private] = ACTIONS(5355), + [anon_sym_private] = ACTIONS(5355), + [anon_sym_PRIVATE] = ACTIONS(5355), + [anon_sym_Public] = ACTIONS(5355), + [anon_sym_public] = ACTIONS(5355), + [anon_sym_PUBLIC] = ACTIONS(5355), + [anon_sym_Remote] = ACTIONS(5355), + [anon_sym_remote] = ACTIONS(5355), + [anon_sym_REMOTE] = ACTIONS(5355), + [anon_sym_Static] = ACTIONS(5361), + [anon_sym_static] = ACTIONS(5361), + [anon_sym_STATIC] = ACTIONS(5361), + }, + [STATE(2415)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(2129), + [anon_sym_EQ] = ACTIONS(2127), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -359061,99 +364827,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2366)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), - }, - [STATE(2367)] = { + [STATE(2416)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), - [anon_sym_RBRACE] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(5307), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -359233,14 +364911,936 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2368)] = { + [STATE(2417)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4830), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4830), + [sym_pair] = STATE(4830), + [sym_cf_pair] = STATE(4526), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4727), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5363), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5365), + [anon_sym_let] = ACTIONS(5363), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5363), + [anon_sym_query] = ACTIONS(5363), + [anon_sym_QUERY] = ACTIONS(5363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5367), + [anon_sym_set] = ACTIONS(5367), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5363), + [anon_sym_QueryExecute] = ACTIONS(5363), + [anon_sym_queryexecute] = ACTIONS(5363), + [anon_sym_QUERYEXECUTE] = ACTIONS(5363), + [anon_sym_queryExecute] = ACTIONS(5363), + [anon_sym_Abstract] = ACTIONS(5363), + [anon_sym_abstract] = ACTIONS(5363), + [anon_sym_ABSTRACT] = ACTIONS(5363), + [anon_sym_Component] = ACTIONS(5363), + [anon_sym_component] = ACTIONS(5363), + [anon_sym_COMPONENT] = ACTIONS(5363), + [anon_sym_Debugger] = ACTIONS(5363), + [anon_sym_debugger] = ACTIONS(5363), + [anon_sym_DEBUGGER] = ACTIONS(5363), + [anon_sym_Final] = ACTIONS(5363), + [anon_sym_final] = ACTIONS(5363), + [anon_sym_FINAL] = ACTIONS(5363), + [anon_sym_Include] = ACTIONS(5363), + [anon_sym_include] = ACTIONS(5363), + [anon_sym_INCLUDE] = ACTIONS(5363), + [anon_sym_New] = ACTIONS(5363), + [anon_sym_new] = ACTIONS(5363), + [anon_sym_NEW] = ACTIONS(5363), + [anon_sym_Package] = ACTIONS(5363), + [anon_sym_package] = ACTIONS(5363), + [anon_sym_PACKAGE] = ACTIONS(5363), + [anon_sym_Private] = ACTIONS(5363), + [anon_sym_private] = ACTIONS(5363), + [anon_sym_PRIVATE] = ACTIONS(5363), + [anon_sym_Public] = ACTIONS(5363), + [anon_sym_public] = ACTIONS(5363), + [anon_sym_PUBLIC] = ACTIONS(5363), + [anon_sym_Remote] = ACTIONS(5363), + [anon_sym_remote] = ACTIONS(5363), + [anon_sym_REMOTE] = ACTIONS(5363), + [anon_sym_Static] = ACTIONS(5369), + [anon_sym_static] = ACTIONS(5369), + [anon_sym_STATIC] = ACTIONS(5369), + }, + [STATE(2418)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4719), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4541), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5371), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5373), + [anon_sym_let] = ACTIONS(5371), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5371), + [anon_sym_query] = ACTIONS(5371), + [anon_sym_QUERY] = ACTIONS(5371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5375), + [anon_sym_set] = ACTIONS(5375), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5371), + [anon_sym_QueryExecute] = ACTIONS(5371), + [anon_sym_queryexecute] = ACTIONS(5371), + [anon_sym_QUERYEXECUTE] = ACTIONS(5371), + [anon_sym_queryExecute] = ACTIONS(5371), + [anon_sym_Abstract] = ACTIONS(5371), + [anon_sym_abstract] = ACTIONS(5371), + [anon_sym_ABSTRACT] = ACTIONS(5371), + [anon_sym_Component] = ACTIONS(5371), + [anon_sym_component] = ACTIONS(5371), + [anon_sym_COMPONENT] = ACTIONS(5371), + [anon_sym_Debugger] = ACTIONS(5371), + [anon_sym_debugger] = ACTIONS(5371), + [anon_sym_DEBUGGER] = ACTIONS(5371), + [anon_sym_Final] = ACTIONS(5371), + [anon_sym_final] = ACTIONS(5371), + [anon_sym_FINAL] = ACTIONS(5371), + [anon_sym_Include] = ACTIONS(5371), + [anon_sym_include] = ACTIONS(5371), + [anon_sym_INCLUDE] = ACTIONS(5371), + [anon_sym_New] = ACTIONS(5371), + [anon_sym_new] = ACTIONS(5371), + [anon_sym_NEW] = ACTIONS(5371), + [anon_sym_Package] = ACTIONS(5371), + [anon_sym_package] = ACTIONS(5371), + [anon_sym_PACKAGE] = ACTIONS(5371), + [anon_sym_Private] = ACTIONS(5371), + [anon_sym_private] = ACTIONS(5371), + [anon_sym_PRIVATE] = ACTIONS(5371), + [anon_sym_Public] = ACTIONS(5371), + [anon_sym_public] = ACTIONS(5371), + [anon_sym_PUBLIC] = ACTIONS(5371), + [anon_sym_Remote] = ACTIONS(5371), + [anon_sym_remote] = ACTIONS(5371), + [anon_sym_REMOTE] = ACTIONS(5371), + [anon_sym_Static] = ACTIONS(5377), + [anon_sym_static] = ACTIONS(5377), + [anon_sym_STATIC] = ACTIONS(5377), + }, + [STATE(2419)] = { + [sym_object_assignment_pattern] = STATE(4669), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4673), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4669), + [sym_method_definition] = STATE(4673), + [sym_pair] = STATE(4673), + [sym_cf_pair] = STATE(4527), + [sym_pair_pattern] = STATE(4669), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4693), + [aux_sym_object_pattern_repeat1] = STATE(4718), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5379), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5381), + [anon_sym_let] = ACTIONS(5379), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5379), + [anon_sym_query] = ACTIONS(5379), + [anon_sym_QUERY] = ACTIONS(5379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5383), + [anon_sym_set] = ACTIONS(5383), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5379), + [anon_sym_QueryExecute] = ACTIONS(5379), + [anon_sym_queryexecute] = ACTIONS(5379), + [anon_sym_QUERYEXECUTE] = ACTIONS(5379), + [anon_sym_queryExecute] = ACTIONS(5379), + [anon_sym_Abstract] = ACTIONS(5379), + [anon_sym_abstract] = ACTIONS(5379), + [anon_sym_ABSTRACT] = ACTIONS(5379), + [anon_sym_Component] = ACTIONS(5379), + [anon_sym_component] = ACTIONS(5379), + [anon_sym_COMPONENT] = ACTIONS(5379), + [anon_sym_Debugger] = ACTIONS(5379), + [anon_sym_debugger] = ACTIONS(5379), + [anon_sym_DEBUGGER] = ACTIONS(5379), + [anon_sym_Final] = ACTIONS(5379), + [anon_sym_final] = ACTIONS(5379), + [anon_sym_FINAL] = ACTIONS(5379), + [anon_sym_Include] = ACTIONS(5379), + [anon_sym_include] = ACTIONS(5379), + [anon_sym_INCLUDE] = ACTIONS(5379), + [anon_sym_New] = ACTIONS(5379), + [anon_sym_new] = ACTIONS(5379), + [anon_sym_NEW] = ACTIONS(5379), + [anon_sym_Package] = ACTIONS(5379), + [anon_sym_package] = ACTIONS(5379), + [anon_sym_PACKAGE] = ACTIONS(5379), + [anon_sym_Private] = ACTIONS(5379), + [anon_sym_private] = ACTIONS(5379), + [anon_sym_PRIVATE] = ACTIONS(5379), + [anon_sym_Public] = ACTIONS(5379), + [anon_sym_public] = ACTIONS(5379), + [anon_sym_PUBLIC] = ACTIONS(5379), + [anon_sym_Remote] = ACTIONS(5379), + [anon_sym_remote] = ACTIONS(5379), + [anon_sym_REMOTE] = ACTIONS(5379), + [anon_sym_Static] = ACTIONS(5385), + [anon_sym_static] = ACTIONS(5385), + [anon_sym_STATIC] = ACTIONS(5385), + }, + [STATE(2420)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4633), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4589), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5387), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5389), + [anon_sym_let] = ACTIONS(5387), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5387), + [anon_sym_query] = ACTIONS(5387), + [anon_sym_QUERY] = ACTIONS(5387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5391), + [anon_sym_set] = ACTIONS(5391), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5387), + [anon_sym_QueryExecute] = ACTIONS(5387), + [anon_sym_queryexecute] = ACTIONS(5387), + [anon_sym_QUERYEXECUTE] = ACTIONS(5387), + [anon_sym_queryExecute] = ACTIONS(5387), + [anon_sym_Abstract] = ACTIONS(5387), + [anon_sym_abstract] = ACTIONS(5387), + [anon_sym_ABSTRACT] = ACTIONS(5387), + [anon_sym_Component] = ACTIONS(5387), + [anon_sym_component] = ACTIONS(5387), + [anon_sym_COMPONENT] = ACTIONS(5387), + [anon_sym_Debugger] = ACTIONS(5387), + [anon_sym_debugger] = ACTIONS(5387), + [anon_sym_DEBUGGER] = ACTIONS(5387), + [anon_sym_Final] = ACTIONS(5387), + [anon_sym_final] = ACTIONS(5387), + [anon_sym_FINAL] = ACTIONS(5387), + [anon_sym_Include] = ACTIONS(5387), + [anon_sym_include] = ACTIONS(5387), + [anon_sym_INCLUDE] = ACTIONS(5387), + [anon_sym_New] = ACTIONS(5387), + [anon_sym_new] = ACTIONS(5387), + [anon_sym_NEW] = ACTIONS(5387), + [anon_sym_Package] = ACTIONS(5387), + [anon_sym_package] = ACTIONS(5387), + [anon_sym_PACKAGE] = ACTIONS(5387), + [anon_sym_Private] = ACTIONS(5387), + [anon_sym_private] = ACTIONS(5387), + [anon_sym_PRIVATE] = ACTIONS(5387), + [anon_sym_Public] = ACTIONS(5387), + [anon_sym_public] = ACTIONS(5387), + [anon_sym_PUBLIC] = ACTIONS(5387), + [anon_sym_Remote] = ACTIONS(5387), + [anon_sym_remote] = ACTIONS(5387), + [anon_sym_REMOTE] = ACTIONS(5387), + [anon_sym_Static] = ACTIONS(5393), + [anon_sym_static] = ACTIONS(5393), + [anon_sym_STATIC] = ACTIONS(5393), + }, + [STATE(2421)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4796), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4796), + [sym_pair] = STATE(4796), + [sym_cf_pair] = STATE(4561), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4800), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5395), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5397), + [anon_sym_let] = ACTIONS(5395), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5395), + [anon_sym_query] = ACTIONS(5395), + [anon_sym_QUERY] = ACTIONS(5395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5399), + [anon_sym_set] = ACTIONS(5399), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5395), + [anon_sym_QueryExecute] = ACTIONS(5395), + [anon_sym_queryexecute] = ACTIONS(5395), + [anon_sym_QUERYEXECUTE] = ACTIONS(5395), + [anon_sym_queryExecute] = ACTIONS(5395), + [anon_sym_Abstract] = ACTIONS(5395), + [anon_sym_abstract] = ACTIONS(5395), + [anon_sym_ABSTRACT] = ACTIONS(5395), + [anon_sym_Component] = ACTIONS(5395), + [anon_sym_component] = ACTIONS(5395), + [anon_sym_COMPONENT] = ACTIONS(5395), + [anon_sym_Debugger] = ACTIONS(5395), + [anon_sym_debugger] = ACTIONS(5395), + [anon_sym_DEBUGGER] = ACTIONS(5395), + [anon_sym_Final] = ACTIONS(5395), + [anon_sym_final] = ACTIONS(5395), + [anon_sym_FINAL] = ACTIONS(5395), + [anon_sym_Include] = ACTIONS(5395), + [anon_sym_include] = ACTIONS(5395), + [anon_sym_INCLUDE] = ACTIONS(5395), + [anon_sym_New] = ACTIONS(5395), + [anon_sym_new] = ACTIONS(5395), + [anon_sym_NEW] = ACTIONS(5395), + [anon_sym_Package] = ACTIONS(5395), + [anon_sym_package] = ACTIONS(5395), + [anon_sym_PACKAGE] = ACTIONS(5395), + [anon_sym_Private] = ACTIONS(5395), + [anon_sym_private] = ACTIONS(5395), + [anon_sym_PRIVATE] = ACTIONS(5395), + [anon_sym_Public] = ACTIONS(5395), + [anon_sym_public] = ACTIONS(5395), + [anon_sym_PUBLIC] = ACTIONS(5395), + [anon_sym_Remote] = ACTIONS(5395), + [anon_sym_remote] = ACTIONS(5395), + [anon_sym_REMOTE] = ACTIONS(5395), + [anon_sym_Static] = ACTIONS(5401), + [anon_sym_static] = ACTIONS(5401), + [anon_sym_STATIC] = ACTIONS(5401), + }, + [STATE(2422)] = { + [sym_object_assignment_pattern] = STATE(4664), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4713), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4664), + [sym_method_definition] = STATE(4713), + [sym_pair] = STATE(4713), + [sym_cf_pair] = STATE(4590), + [sym_pair_pattern] = STATE(4664), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4716), + [aux_sym_object_pattern_repeat1] = STATE(4697), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5405), + [anon_sym_let] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5403), + [anon_sym_query] = ACTIONS(5403), + [anon_sym_QUERY] = ACTIONS(5403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5407), + [anon_sym_set] = ACTIONS(5407), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5403), + [anon_sym_QueryExecute] = ACTIONS(5403), + [anon_sym_queryexecute] = ACTIONS(5403), + [anon_sym_QUERYEXECUTE] = ACTIONS(5403), + [anon_sym_queryExecute] = ACTIONS(5403), + [anon_sym_Abstract] = ACTIONS(5403), + [anon_sym_abstract] = ACTIONS(5403), + [anon_sym_ABSTRACT] = ACTIONS(5403), + [anon_sym_Component] = ACTIONS(5403), + [anon_sym_component] = ACTIONS(5403), + [anon_sym_COMPONENT] = ACTIONS(5403), + [anon_sym_Debugger] = ACTIONS(5403), + [anon_sym_debugger] = ACTIONS(5403), + [anon_sym_DEBUGGER] = ACTIONS(5403), + [anon_sym_Final] = ACTIONS(5403), + [anon_sym_final] = ACTIONS(5403), + [anon_sym_FINAL] = ACTIONS(5403), + [anon_sym_Include] = ACTIONS(5403), + [anon_sym_include] = ACTIONS(5403), + [anon_sym_INCLUDE] = ACTIONS(5403), + [anon_sym_New] = ACTIONS(5403), + [anon_sym_new] = ACTIONS(5403), + [anon_sym_NEW] = ACTIONS(5403), + [anon_sym_Package] = ACTIONS(5403), + [anon_sym_package] = ACTIONS(5403), + [anon_sym_PACKAGE] = ACTIONS(5403), + [anon_sym_Private] = ACTIONS(5403), + [anon_sym_private] = ACTIONS(5403), + [anon_sym_PRIVATE] = ACTIONS(5403), + [anon_sym_Public] = ACTIONS(5403), + [anon_sym_public] = ACTIONS(5403), + [anon_sym_PUBLIC] = ACTIONS(5403), + [anon_sym_Remote] = ACTIONS(5403), + [anon_sym_remote] = ACTIONS(5403), + [anon_sym_REMOTE] = ACTIONS(5403), + [anon_sym_Static] = ACTIONS(5409), + [anon_sym_static] = ACTIONS(5409), + [anon_sym_STATIC] = ACTIONS(5409), + }, + [STATE(2423)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4719), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4498), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5411), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5413), + [anon_sym_let] = ACTIONS(5411), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5411), + [anon_sym_query] = ACTIONS(5411), + [anon_sym_QUERY] = ACTIONS(5411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5415), + [anon_sym_set] = ACTIONS(5415), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5411), + [anon_sym_QueryExecute] = ACTIONS(5411), + [anon_sym_queryexecute] = ACTIONS(5411), + [anon_sym_QUERYEXECUTE] = ACTIONS(5411), + [anon_sym_queryExecute] = ACTIONS(5411), + [anon_sym_Abstract] = ACTIONS(5411), + [anon_sym_abstract] = ACTIONS(5411), + [anon_sym_ABSTRACT] = ACTIONS(5411), + [anon_sym_Component] = ACTIONS(5411), + [anon_sym_component] = ACTIONS(5411), + [anon_sym_COMPONENT] = ACTIONS(5411), + [anon_sym_Debugger] = ACTIONS(5411), + [anon_sym_debugger] = ACTIONS(5411), + [anon_sym_DEBUGGER] = ACTIONS(5411), + [anon_sym_Final] = ACTIONS(5411), + [anon_sym_final] = ACTIONS(5411), + [anon_sym_FINAL] = ACTIONS(5411), + [anon_sym_Include] = ACTIONS(5411), + [anon_sym_include] = ACTIONS(5411), + [anon_sym_INCLUDE] = ACTIONS(5411), + [anon_sym_New] = ACTIONS(5411), + [anon_sym_new] = ACTIONS(5411), + [anon_sym_NEW] = ACTIONS(5411), + [anon_sym_Package] = ACTIONS(5411), + [anon_sym_package] = ACTIONS(5411), + [anon_sym_PACKAGE] = ACTIONS(5411), + [anon_sym_Private] = ACTIONS(5411), + [anon_sym_private] = ACTIONS(5411), + [anon_sym_PRIVATE] = ACTIONS(5411), + [anon_sym_Public] = ACTIONS(5411), + [anon_sym_public] = ACTIONS(5411), + [anon_sym_PUBLIC] = ACTIONS(5411), + [anon_sym_Remote] = ACTIONS(5411), + [anon_sym_remote] = ACTIONS(5411), + [anon_sym_REMOTE] = ACTIONS(5411), + [anon_sym_Static] = ACTIONS(5417), + [anon_sym_static] = ACTIONS(5417), + [anon_sym_STATIC] = ACTIONS(5417), + }, + [STATE(2424)] = { + [sym_object_assignment_pattern] = STATE(4722), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4830), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4722), + [sym_method_definition] = STATE(4830), + [sym_pair] = STATE(4830), + [sym_cf_pair] = STATE(4489), + [sym_pair_pattern] = STATE(4722), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4727), + [aux_sym_object_pattern_repeat1] = STATE(4734), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5419), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5421), + [anon_sym_let] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5419), + [anon_sym_query] = ACTIONS(5419), + [anon_sym_QUERY] = ACTIONS(5419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5423), + [anon_sym_set] = ACTIONS(5423), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5419), + [anon_sym_QueryExecute] = ACTIONS(5419), + [anon_sym_queryexecute] = ACTIONS(5419), + [anon_sym_QUERYEXECUTE] = ACTIONS(5419), + [anon_sym_queryExecute] = ACTIONS(5419), + [anon_sym_Abstract] = ACTIONS(5419), + [anon_sym_abstract] = ACTIONS(5419), + [anon_sym_ABSTRACT] = ACTIONS(5419), + [anon_sym_Component] = ACTIONS(5419), + [anon_sym_component] = ACTIONS(5419), + [anon_sym_COMPONENT] = ACTIONS(5419), + [anon_sym_Debugger] = ACTIONS(5419), + [anon_sym_debugger] = ACTIONS(5419), + [anon_sym_DEBUGGER] = ACTIONS(5419), + [anon_sym_Final] = ACTIONS(5419), + [anon_sym_final] = ACTIONS(5419), + [anon_sym_FINAL] = ACTIONS(5419), + [anon_sym_Include] = ACTIONS(5419), + [anon_sym_include] = ACTIONS(5419), + [anon_sym_INCLUDE] = ACTIONS(5419), + [anon_sym_New] = ACTIONS(5419), + [anon_sym_new] = ACTIONS(5419), + [anon_sym_NEW] = ACTIONS(5419), + [anon_sym_Package] = ACTIONS(5419), + [anon_sym_package] = ACTIONS(5419), + [anon_sym_PACKAGE] = ACTIONS(5419), + [anon_sym_Private] = ACTIONS(5419), + [anon_sym_private] = ACTIONS(5419), + [anon_sym_PRIVATE] = ACTIONS(5419), + [anon_sym_Public] = ACTIONS(5419), + [anon_sym_public] = ACTIONS(5419), + [anon_sym_PUBLIC] = ACTIONS(5419), + [anon_sym_Remote] = ACTIONS(5419), + [anon_sym_remote] = ACTIONS(5419), + [anon_sym_REMOTE] = ACTIONS(5419), + [anon_sym_Static] = ACTIONS(5425), + [anon_sym_static] = ACTIONS(5425), + [anon_sym_STATIC] = ACTIONS(5425), + }, + [STATE(2425)] = { + [sym_object_assignment_pattern] = STATE(4689), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4695), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4689), + [sym_method_definition] = STATE(4695), + [sym_pair] = STATE(4695), + [sym_cf_pair] = STATE(4596), + [sym_pair_pattern] = STATE(4689), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4700), + [aux_sym_object_pattern_repeat1] = STATE(4707), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5427), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5429), + [anon_sym_let] = ACTIONS(5427), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5427), + [anon_sym_query] = ACTIONS(5427), + [anon_sym_QUERY] = ACTIONS(5427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5431), + [anon_sym_set] = ACTIONS(5431), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5427), + [anon_sym_QueryExecute] = ACTIONS(5427), + [anon_sym_queryexecute] = ACTIONS(5427), + [anon_sym_QUERYEXECUTE] = ACTIONS(5427), + [anon_sym_queryExecute] = ACTIONS(5427), + [anon_sym_Abstract] = ACTIONS(5427), + [anon_sym_abstract] = ACTIONS(5427), + [anon_sym_ABSTRACT] = ACTIONS(5427), + [anon_sym_Component] = ACTIONS(5427), + [anon_sym_component] = ACTIONS(5427), + [anon_sym_COMPONENT] = ACTIONS(5427), + [anon_sym_Debugger] = ACTIONS(5427), + [anon_sym_debugger] = ACTIONS(5427), + [anon_sym_DEBUGGER] = ACTIONS(5427), + [anon_sym_Final] = ACTIONS(5427), + [anon_sym_final] = ACTIONS(5427), + [anon_sym_FINAL] = ACTIONS(5427), + [anon_sym_Include] = ACTIONS(5427), + [anon_sym_include] = ACTIONS(5427), + [anon_sym_INCLUDE] = ACTIONS(5427), + [anon_sym_New] = ACTIONS(5427), + [anon_sym_new] = ACTIONS(5427), + [anon_sym_NEW] = ACTIONS(5427), + [anon_sym_Package] = ACTIONS(5427), + [anon_sym_package] = ACTIONS(5427), + [anon_sym_PACKAGE] = ACTIONS(5427), + [anon_sym_Private] = ACTIONS(5427), + [anon_sym_private] = ACTIONS(5427), + [anon_sym_PRIVATE] = ACTIONS(5427), + [anon_sym_Public] = ACTIONS(5427), + [anon_sym_public] = ACTIONS(5427), + [anon_sym_PUBLIC] = ACTIONS(5427), + [anon_sym_Remote] = ACTIONS(5427), + [anon_sym_remote] = ACTIONS(5427), + [anon_sym_REMOTE] = ACTIONS(5427), + [anon_sym_Static] = ACTIONS(5433), + [anon_sym_static] = ACTIONS(5433), + [anon_sym_STATIC] = ACTIONS(5433), + }, + [STATE(2426)] = { + [sym_object_assignment_pattern] = STATE(4787), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4796), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4787), + [sym_method_definition] = STATE(4796), + [sym_pair] = STATE(4796), + [sym_cf_pair] = STATE(4555), + [sym_pair_pattern] = STATE(4787), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4800), + [aux_sym_object_pattern_repeat1] = STATE(4804), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5435), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_let] = ACTIONS(5435), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5435), + [anon_sym_query] = ACTIONS(5435), + [anon_sym_QUERY] = ACTIONS(5435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5439), + [anon_sym_set] = ACTIONS(5439), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5435), + [anon_sym_QueryExecute] = ACTIONS(5435), + [anon_sym_queryexecute] = ACTIONS(5435), + [anon_sym_QUERYEXECUTE] = ACTIONS(5435), + [anon_sym_queryExecute] = ACTIONS(5435), + [anon_sym_Abstract] = ACTIONS(5435), + [anon_sym_abstract] = ACTIONS(5435), + [anon_sym_ABSTRACT] = ACTIONS(5435), + [anon_sym_Component] = ACTIONS(5435), + [anon_sym_component] = ACTIONS(5435), + [anon_sym_COMPONENT] = ACTIONS(5435), + [anon_sym_Debugger] = ACTIONS(5435), + [anon_sym_debugger] = ACTIONS(5435), + [anon_sym_DEBUGGER] = ACTIONS(5435), + [anon_sym_Final] = ACTIONS(5435), + [anon_sym_final] = ACTIONS(5435), + [anon_sym_FINAL] = ACTIONS(5435), + [anon_sym_Include] = ACTIONS(5435), + [anon_sym_include] = ACTIONS(5435), + [anon_sym_INCLUDE] = ACTIONS(5435), + [anon_sym_New] = ACTIONS(5435), + [anon_sym_new] = ACTIONS(5435), + [anon_sym_NEW] = ACTIONS(5435), + [anon_sym_Package] = ACTIONS(5435), + [anon_sym_package] = ACTIONS(5435), + [anon_sym_PACKAGE] = ACTIONS(5435), + [anon_sym_Private] = ACTIONS(5435), + [anon_sym_private] = ACTIONS(5435), + [anon_sym_PRIVATE] = ACTIONS(5435), + [anon_sym_Public] = ACTIONS(5435), + [anon_sym_public] = ACTIONS(5435), + [anon_sym_PUBLIC] = ACTIONS(5435), + [anon_sym_Remote] = ACTIONS(5435), + [anon_sym_remote] = ACTIONS(5435), + [anon_sym_REMOTE] = ACTIONS(5435), + [anon_sym_Static] = ACTIONS(5441), + [anon_sym_static] = ACTIONS(5441), + [anon_sym_STATIC] = ACTIONS(5441), + }, + [STATE(2427)] = { + [sym_object_assignment_pattern] = STATE(4749), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4633), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4749), + [sym_method_definition] = STATE(4633), + [sym_pair] = STATE(4633), + [sym_cf_pair] = STATE(4497), + [sym_pair_pattern] = STATE(4749), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4652), + [aux_sym_object_pattern_repeat1] = STATE(4671), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5443), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_let] = ACTIONS(5443), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5443), + [anon_sym_query] = ACTIONS(5443), + [anon_sym_QUERY] = ACTIONS(5443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5447), + [anon_sym_set] = ACTIONS(5447), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5443), + [anon_sym_QueryExecute] = ACTIONS(5443), + [anon_sym_queryexecute] = ACTIONS(5443), + [anon_sym_QUERYEXECUTE] = ACTIONS(5443), + [anon_sym_queryExecute] = ACTIONS(5443), + [anon_sym_Abstract] = ACTIONS(5443), + [anon_sym_abstract] = ACTIONS(5443), + [anon_sym_ABSTRACT] = ACTIONS(5443), + [anon_sym_Component] = ACTIONS(5443), + [anon_sym_component] = ACTIONS(5443), + [anon_sym_COMPONENT] = ACTIONS(5443), + [anon_sym_Debugger] = ACTIONS(5443), + [anon_sym_debugger] = ACTIONS(5443), + [anon_sym_DEBUGGER] = ACTIONS(5443), + [anon_sym_Final] = ACTIONS(5443), + [anon_sym_final] = ACTIONS(5443), + [anon_sym_FINAL] = ACTIONS(5443), + [anon_sym_Include] = ACTIONS(5443), + [anon_sym_include] = ACTIONS(5443), + [anon_sym_INCLUDE] = ACTIONS(5443), + [anon_sym_New] = ACTIONS(5443), + [anon_sym_new] = ACTIONS(5443), + [anon_sym_NEW] = ACTIONS(5443), + [anon_sym_Package] = ACTIONS(5443), + [anon_sym_package] = ACTIONS(5443), + [anon_sym_PACKAGE] = ACTIONS(5443), + [anon_sym_Private] = ACTIONS(5443), + [anon_sym_private] = ACTIONS(5443), + [anon_sym_PRIVATE] = ACTIONS(5443), + [anon_sym_Public] = ACTIONS(5443), + [anon_sym_public] = ACTIONS(5443), + [anon_sym_PUBLIC] = ACTIONS(5443), + [anon_sym_Remote] = ACTIONS(5443), + [anon_sym_remote] = ACTIONS(5443), + [anon_sym_REMOTE] = ACTIONS(5443), + [anon_sym_Static] = ACTIONS(5449), + [anon_sym_static] = ACTIONS(5449), + [anon_sym_STATIC] = ACTIONS(5449), + }, + [STATE(2428)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5272), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -359319,614 +365919,2219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2369)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), + [STATE(2429)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4695), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4695), + [sym_pair] = STATE(4695), + [sym_cf_pair] = STATE(4474), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4700), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5451), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5453), + [anon_sym_let] = ACTIONS(5451), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5451), + [anon_sym_query] = ACTIONS(5451), + [anon_sym_QUERY] = ACTIONS(5451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5455), + [anon_sym_set] = ACTIONS(5455), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5451), + [anon_sym_QueryExecute] = ACTIONS(5451), + [anon_sym_queryexecute] = ACTIONS(5451), + [anon_sym_QUERYEXECUTE] = ACTIONS(5451), + [anon_sym_queryExecute] = ACTIONS(5451), + [anon_sym_Abstract] = ACTIONS(5451), + [anon_sym_abstract] = ACTIONS(5451), + [anon_sym_ABSTRACT] = ACTIONS(5451), + [anon_sym_Component] = ACTIONS(5451), + [anon_sym_component] = ACTIONS(5451), + [anon_sym_COMPONENT] = ACTIONS(5451), + [anon_sym_Debugger] = ACTIONS(5451), + [anon_sym_debugger] = ACTIONS(5451), + [anon_sym_DEBUGGER] = ACTIONS(5451), + [anon_sym_Final] = ACTIONS(5451), + [anon_sym_final] = ACTIONS(5451), + [anon_sym_FINAL] = ACTIONS(5451), + [anon_sym_Include] = ACTIONS(5451), + [anon_sym_include] = ACTIONS(5451), + [anon_sym_INCLUDE] = ACTIONS(5451), + [anon_sym_New] = ACTIONS(5451), + [anon_sym_new] = ACTIONS(5451), + [anon_sym_NEW] = ACTIONS(5451), + [anon_sym_Package] = ACTIONS(5451), + [anon_sym_package] = ACTIONS(5451), + [anon_sym_PACKAGE] = ACTIONS(5451), + [anon_sym_Private] = ACTIONS(5451), + [anon_sym_private] = ACTIONS(5451), + [anon_sym_PRIVATE] = ACTIONS(5451), + [anon_sym_Public] = ACTIONS(5451), + [anon_sym_public] = ACTIONS(5451), + [anon_sym_PUBLIC] = ACTIONS(5451), + [anon_sym_Remote] = ACTIONS(5451), + [anon_sym_remote] = ACTIONS(5451), + [anon_sym_REMOTE] = ACTIONS(5451), + [anon_sym_Static] = ACTIONS(5457), + [anon_sym_static] = ACTIONS(5457), + [anon_sym_STATIC] = ACTIONS(5457), + }, + [STATE(2430)] = { + [sym_object_assignment_pattern] = STATE(4715), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4719), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(4715), + [sym_method_definition] = STATE(4719), + [sym_pair] = STATE(4719), + [sym_cf_pair] = STATE(4548), + [sym_pair_pattern] = STATE(4715), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_object_repeat1] = STATE(4790), + [aux_sym_object_pattern_repeat1] = STATE(4795), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5459), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5461), + [anon_sym_let] = ACTIONS(5459), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5459), + [anon_sym_query] = ACTIONS(5459), + [anon_sym_QUERY] = ACTIONS(5459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5463), + [anon_sym_set] = ACTIONS(5463), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5459), + [anon_sym_QueryExecute] = ACTIONS(5459), + [anon_sym_queryexecute] = ACTIONS(5459), + [anon_sym_QUERYEXECUTE] = ACTIONS(5459), + [anon_sym_queryExecute] = ACTIONS(5459), + [anon_sym_Abstract] = ACTIONS(5459), + [anon_sym_abstract] = ACTIONS(5459), + [anon_sym_ABSTRACT] = ACTIONS(5459), + [anon_sym_Component] = ACTIONS(5459), + [anon_sym_component] = ACTIONS(5459), + [anon_sym_COMPONENT] = ACTIONS(5459), + [anon_sym_Debugger] = ACTIONS(5459), + [anon_sym_debugger] = ACTIONS(5459), + [anon_sym_DEBUGGER] = ACTIONS(5459), + [anon_sym_Final] = ACTIONS(5459), + [anon_sym_final] = ACTIONS(5459), + [anon_sym_FINAL] = ACTIONS(5459), + [anon_sym_Include] = ACTIONS(5459), + [anon_sym_include] = ACTIONS(5459), + [anon_sym_INCLUDE] = ACTIONS(5459), + [anon_sym_New] = ACTIONS(5459), + [anon_sym_new] = ACTIONS(5459), + [anon_sym_NEW] = ACTIONS(5459), + [anon_sym_Package] = ACTIONS(5459), + [anon_sym_package] = ACTIONS(5459), + [anon_sym_PACKAGE] = ACTIONS(5459), + [anon_sym_Private] = ACTIONS(5459), + [anon_sym_private] = ACTIONS(5459), + [anon_sym_PRIVATE] = ACTIONS(5459), + [anon_sym_Public] = ACTIONS(5459), + [anon_sym_public] = ACTIONS(5459), + [anon_sym_PUBLIC] = ACTIONS(5459), + [anon_sym_Remote] = ACTIONS(5459), + [anon_sym_remote] = ACTIONS(5459), + [anon_sym_REMOTE] = ACTIONS(5459), + [anon_sym_Static] = ACTIONS(5465), + [anon_sym_static] = ACTIONS(5465), + [anon_sym_STATIC] = ACTIONS(5465), + }, + [STATE(2431)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [anon_sym_Catch] = ACTIONS(1083), + [anon_sym_catch] = ACTIONS(1083), + [anon_sym_CATCH] = ACTIONS(1083), + [anon_sym_Else] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_ELSE] = ACTIONS(1083), + [anon_sym_Finally] = ACTIONS(1083), + [anon_sym_finally] = ACTIONS(1083), + [anon_sym_FINALLY] = ACTIONS(1083), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [anon_sym_While] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_WHILE] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(5467), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2370)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2432)] = { + [sym_object_assignment_pattern] = STATE(5055), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_spread_element] = STATE(4875), + [sym_string] = STATE(4588), + [sym_number] = STATE(4588), + [sym_null] = STATE(4588), + [sym_decorator] = STATE(3899), + [sym_rest_pattern] = STATE(5055), + [sym_method_definition] = STATE(4875), + [sym_pair] = STATE(4875), + [sym_cf_pair] = STATE(4922), + [sym_pair_pattern] = STATE(5055), + [sym__property_name] = STATE(4588), + [sym__hash_always_eval] = STATE(4588), + [sym_hash_expression] = STATE(4588), + [sym_computed_property_name] = STATE(4588), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5469), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(5471), + [anon_sym_RBRACE] = ACTIONS(5471), + [anon_sym_let] = ACTIONS(5469), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5469), + [anon_sym_query] = ACTIONS(5469), + [anon_sym_QUERY] = ACTIONS(5469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5474), + [anon_sym_set] = ACTIONS(5474), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5319), + [anon_sym_export] = ACTIONS(5469), + [anon_sym_QueryExecute] = ACTIONS(5469), + [anon_sym_queryexecute] = ACTIONS(5469), + [anon_sym_QUERYEXECUTE] = ACTIONS(5469), + [anon_sym_queryExecute] = ACTIONS(5469), + [anon_sym_Abstract] = ACTIONS(5469), + [anon_sym_abstract] = ACTIONS(5469), + [anon_sym_ABSTRACT] = ACTIONS(5469), + [anon_sym_Component] = ACTIONS(5469), + [anon_sym_component] = ACTIONS(5469), + [anon_sym_COMPONENT] = ACTIONS(5469), + [anon_sym_Debugger] = ACTIONS(5469), + [anon_sym_debugger] = ACTIONS(5469), + [anon_sym_DEBUGGER] = ACTIONS(5469), + [anon_sym_Final] = ACTIONS(5469), + [anon_sym_final] = ACTIONS(5469), + [anon_sym_FINAL] = ACTIONS(5469), + [anon_sym_Include] = ACTIONS(5469), + [anon_sym_include] = ACTIONS(5469), + [anon_sym_INCLUDE] = ACTIONS(5469), + [anon_sym_New] = ACTIONS(5469), + [anon_sym_new] = ACTIONS(5469), + [anon_sym_NEW] = ACTIONS(5469), + [anon_sym_Package] = ACTIONS(5469), + [anon_sym_package] = ACTIONS(5469), + [anon_sym_PACKAGE] = ACTIONS(5469), + [anon_sym_Private] = ACTIONS(5469), + [anon_sym_private] = ACTIONS(5469), + [anon_sym_PRIVATE] = ACTIONS(5469), + [anon_sym_Public] = ACTIONS(5469), + [anon_sym_public] = ACTIONS(5469), + [anon_sym_PUBLIC] = ACTIONS(5469), + [anon_sym_Remote] = ACTIONS(5469), + [anon_sym_remote] = ACTIONS(5469), + [anon_sym_REMOTE] = ACTIONS(5469), + [anon_sym_Static] = ACTIONS(5476), + [anon_sym_static] = ACTIONS(5476), + [anon_sym_STATIC] = ACTIONS(5476), + }, + [STATE(2433)] = { + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_Else] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_ELSE] = ACTIONS(1588), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1588), + [anon_sym_instanceof] = ACTIONS(1588), + [anon_sym_INSTANCEOF] = ACTIONS(1588), + [anon_sym_instanceOf] = ACTIONS(1588), + [anon_sym_Of] = ACTIONS(1588), + [anon_sym_of] = ACTIONS(1588), + [anon_sym_OF] = ACTIONS(1588), + [anon_sym_While] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_WHILE] = ACTIONS(1588), + [sym__automatic_semicolon] = ACTIONS(5478), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + }, + [STATE(2434)] = { + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [anon_sym_Else] = ACTIONS(1596), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_ELSE] = ACTIONS(1596), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1596), + [anon_sym_instanceof] = ACTIONS(1596), + [anon_sym_INSTANCEOF] = ACTIONS(1596), + [anon_sym_instanceOf] = ACTIONS(1596), + [anon_sym_Of] = ACTIONS(1596), + [anon_sym_of] = ACTIONS(1596), + [anon_sym_OF] = ACTIONS(1596), + [anon_sym_While] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_WHILE] = ACTIONS(1596), + [sym__automatic_semicolon] = ACTIONS(1596), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), + }, + [STATE(2435)] = { + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_Else] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_ELSE] = ACTIONS(1588), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1588), + [anon_sym_instanceof] = ACTIONS(1588), + [anon_sym_INSTANCEOF] = ACTIONS(1588), + [anon_sym_instanceOf] = ACTIONS(1588), + [anon_sym_Of] = ACTIONS(1588), + [anon_sym_of] = ACTIONS(1588), + [anon_sym_OF] = ACTIONS(1588), + [anon_sym_While] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_WHILE] = ACTIONS(1588), + [sym__automatic_semicolon] = ACTIONS(1588), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + }, + [STATE(2436)] = { + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_COMMA] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1083), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(1692), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_Else] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_ELSE] = ACTIONS(1083), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1083), + [anon_sym_instanceof] = ACTIONS(1083), + [anon_sym_INSTANCEOF] = ACTIONS(1083), + [anon_sym_instanceOf] = ACTIONS(1083), + [anon_sym_Of] = ACTIONS(1083), + [anon_sym_of] = ACTIONS(1083), + [anon_sym_OF] = ACTIONS(1083), + [anon_sym_While] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_WHILE] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(5480), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), }, - [STATE(2371)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2437)] = { + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_COLON] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_RBRACK] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2230), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(1668), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2230), + [anon_sym_instanceof] = ACTIONS(2230), + [anon_sym_INSTANCEOF] = ACTIONS(2230), + [anon_sym_instanceOf] = ACTIONS(2230), + [anon_sym_Of] = ACTIONS(2230), + [anon_sym_of] = ACTIONS(2230), + [anon_sym_OF] = ACTIONS(2230), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), }, - [STATE(2372)] = { - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [aux_sym__operator_shaped_name_token1] = ACTIONS(404), - [aux_sym__operator_shaped_name_token2] = ACTIONS(404), - [aux_sym__operator_shaped_name_token3] = ACTIONS(404), - [aux_sym__operator_shaped_name_token4] = ACTIONS(404), - [aux_sym__operator_shaped_name_token5] = ACTIONS(406), - [aux_sym__operator_shaped_name_token6] = ACTIONS(404), - [aux_sym__operator_shaped_name_token7] = ACTIONS(406), - [aux_sym__operator_shaped_name_token8] = ACTIONS(406), - [aux_sym__operator_shaped_name_token9] = ACTIONS(404), - [aux_sym__operator_shaped_name_token10] = ACTIONS(404), - [aux_sym__operator_shaped_name_token11] = ACTIONS(404), - [aux_sym__operator_shaped_name_token12] = ACTIONS(404), - [aux_sym__operator_shaped_name_token13] = ACTIONS(404), - [aux_sym__operator_shaped_name_token14] = ACTIONS(404), - [aux_sym__operator_shaped_name_token15] = ACTIONS(404), - [aux_sym__operator_shaped_name_token16] = ACTIONS(404), - [aux_sym__operator_shaped_name_token17] = ACTIONS(406), - [sym_optional_chain] = ACTIONS(404), - [sym_static_chain] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_STAR_STAR_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PERCENT] = ACTIONS(406), - [anon_sym_BSLASH] = ACTIONS(404), - [anon_sym_STAR_STAR] = ACTIONS(406), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_EQ_EQ_EQ] = ACTIONS(404), - [anon_sym_LT_GT] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ_EQ] = ACTIONS(404), - [aux_sym_binary_expression_token1] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [aux_sym_binary_expression_token2] = ACTIONS(406), - [aux_sym_binary_expression_token3] = ACTIONS(406), - [aux_sym_binary_expression_token4] = ACTIONS(404), - [aux_sym_binary_expression_token5] = ACTIONS(404), - [aux_sym_binary_expression_token6] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), + [STATE(2438)] = { + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_RPAREN] = ACTIONS(2238), + [anon_sym_COLON] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_RBRACK] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2238), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(406), - [anon_sym_in] = ACTIONS(406), - [anon_sym_IN] = ACTIONS(406), - [anon_sym_InstanceOf] = ACTIONS(404), - [anon_sym_instanceof] = ACTIONS(404), - [anon_sym_INSTANCEOF] = ACTIONS(404), - [anon_sym_instanceOf] = ACTIONS(404), - [sym__ternary_qmark] = ACTIONS(404), - [sym__elvis_operator] = ACTIONS(404), - [sym_logical_or] = ACTIONS(404), + [anon_sym_POUND] = ACTIONS(2238), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2238), + [anon_sym_instanceof] = ACTIONS(2238), + [anon_sym_INSTANCEOF] = ACTIONS(2238), + [anon_sym_instanceOf] = ACTIONS(2238), + [anon_sym_Of] = ACTIONS(2238), + [anon_sym_of] = ACTIONS(2238), + [anon_sym_OF] = ACTIONS(2238), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), }, - [STATE(2373)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5299), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2439)] = { + [anon_sym_DOT] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_COLON] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_RBRACK] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), + [sym_optional_chain] = ACTIONS(2276), + [sym_static_chain] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_BSLASH] = ACTIONS(2276), + [anon_sym_STAR_STAR] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT_EQ] = ACTIONS(2276), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2276), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), + [aux_sym_binary_expression_token1] = ACTIONS(2276), + [anon_sym_GT_EQ] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2274), + [aux_sym_binary_expression_token2] = ACTIONS(2274), + [aux_sym_binary_expression_token3] = ACTIONS(2274), + [aux_sym_binary_expression_token4] = ACTIONS(2276), + [aux_sym_binary_expression_token5] = ACTIONS(2276), + [aux_sym_binary_expression_token6] = ACTIONS(2276), + [anon_sym_QMARK_QMARK] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_POUND] = ACTIONS(2276), + [anon_sym_In] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_IN] = ACTIONS(2274), + [anon_sym_InstanceOf] = ACTIONS(2276), + [anon_sym_instanceof] = ACTIONS(2276), + [anon_sym_INSTANCEOF] = ACTIONS(2276), + [anon_sym_instanceOf] = ACTIONS(2276), + [anon_sym_Of] = ACTIONS(2276), + [anon_sym_of] = ACTIONS(2276), + [anon_sym_OF] = ACTIONS(2276), + [sym__ternary_qmark] = ACTIONS(2276), + [sym__elvis_operator] = ACTIONS(2276), + [sym_logical_or] = ACTIONS(2276), }, - [STATE(2374)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_DASH_GT] = ACTIONS(1452), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2440)] = { + [anon_sym_DOT] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_RPAREN] = ACTIONS(2316), + [anon_sym_COLON] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2316), + [anon_sym_RBRACK] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2314), + [sym_optional_chain] = ACTIONS(2316), + [sym_static_chain] = ACTIONS(2316), + [anon_sym_AMP_AMP] = ACTIONS(2316), + [anon_sym_PIPE_PIPE] = ACTIONS(2316), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2316), + [anon_sym_LT_LT] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2316), + [anon_sym_BSLASH] = ACTIONS(2316), + [anon_sym_STAR_STAR] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2316), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2316), + [anon_sym_LT_GT] = ACTIONS(2316), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2316), + [aux_sym_binary_expression_token1] = ACTIONS(2316), + [anon_sym_GT_EQ] = ACTIONS(2316), + [anon_sym_GT] = ACTIONS(2314), + [aux_sym_binary_expression_token2] = ACTIONS(2314), + [aux_sym_binary_expression_token3] = ACTIONS(2314), + [aux_sym_binary_expression_token4] = ACTIONS(2316), + [aux_sym_binary_expression_token5] = ACTIONS(2316), + [aux_sym_binary_expression_token6] = ACTIONS(2316), + [anon_sym_QMARK_QMARK] = ACTIONS(2316), + [anon_sym_PLUS_PLUS] = ACTIONS(2316), + [anon_sym_DASH_DASH] = ACTIONS(2316), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2316), + [anon_sym_In] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_IN] = ACTIONS(2314), + [anon_sym_InstanceOf] = ACTIONS(2316), + [anon_sym_instanceof] = ACTIONS(2316), + [anon_sym_INSTANCEOF] = ACTIONS(2316), + [anon_sym_instanceOf] = ACTIONS(2316), + [anon_sym_Of] = ACTIONS(2316), + [anon_sym_of] = ACTIONS(2316), + [anon_sym_OF] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2316), + [sym__elvis_operator] = ACTIONS(2316), + [sym_logical_or] = ACTIONS(2316), + }, + [STATE(2441)] = { + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_DASH_GT] = ACTIONS(2215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2213), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2213), + [anon_sym_instanceof] = ACTIONS(2213), + [anon_sym_INSTANCEOF] = ACTIONS(2213), + [anon_sym_instanceOf] = ACTIONS(2213), + [anon_sym_Of] = ACTIONS(2213), + [anon_sym_of] = ACTIONS(2213), + [anon_sym_OF] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2213), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + }, + [STATE(2442)] = { + [sym_spread_element] = STATE(4681), + [sym_string] = STATE(4578), + [sym_number] = STATE(4578), + [sym_null] = STATE(4578), + [sym_decorator] = STATE(3899), + [sym_method_definition] = STATE(4681), + [sym_pair] = STATE(4681), + [sym_cf_pair] = STATE(4681), + [sym__property_name] = STATE(4578), + [sym__hash_always_eval] = STATE(4578), + [sym_hash_expression] = STATE(4578), + [sym_computed_property_name] = STATE(4578), + [aux_sym_object_repeat1] = STATE(4699), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5482), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(5484), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_let] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(5482), + [anon_sym_query] = ACTIONS(5482), + [anon_sym_QUERY] = ACTIONS(5482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5490), + [anon_sym_set] = ACTIONS(5490), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5492), + [anon_sym_export] = ACTIONS(5482), + [anon_sym_QueryExecute] = ACTIONS(5482), + [anon_sym_queryexecute] = ACTIONS(5482), + [anon_sym_QUERYEXECUTE] = ACTIONS(5482), + [anon_sym_queryExecute] = ACTIONS(5482), + [anon_sym_Abstract] = ACTIONS(5482), + [anon_sym_abstract] = ACTIONS(5482), + [anon_sym_ABSTRACT] = ACTIONS(5482), + [anon_sym_Component] = ACTIONS(5482), + [anon_sym_component] = ACTIONS(5482), + [anon_sym_COMPONENT] = ACTIONS(5482), + [anon_sym_Debugger] = ACTIONS(5482), + [anon_sym_debugger] = ACTIONS(5482), + [anon_sym_DEBUGGER] = ACTIONS(5482), + [anon_sym_Final] = ACTIONS(5482), + [anon_sym_final] = ACTIONS(5482), + [anon_sym_FINAL] = ACTIONS(5482), + [anon_sym_Include] = ACTIONS(5482), + [anon_sym_include] = ACTIONS(5482), + [anon_sym_INCLUDE] = ACTIONS(5482), + [anon_sym_New] = ACTIONS(5482), + [anon_sym_new] = ACTIONS(5482), + [anon_sym_NEW] = ACTIONS(5482), + [anon_sym_Package] = ACTIONS(5482), + [anon_sym_package] = ACTIONS(5482), + [anon_sym_PACKAGE] = ACTIONS(5482), + [anon_sym_Private] = ACTIONS(5482), + [anon_sym_private] = ACTIONS(5482), + [anon_sym_PRIVATE] = ACTIONS(5482), + [anon_sym_Public] = ACTIONS(5482), + [anon_sym_public] = ACTIONS(5482), + [anon_sym_PUBLIC] = ACTIONS(5482), + [anon_sym_Remote] = ACTIONS(5482), + [anon_sym_remote] = ACTIONS(5482), + [anon_sym_REMOTE] = ACTIONS(5482), + [anon_sym_Static] = ACTIONS(5494), + [anon_sym_static] = ACTIONS(5494), + [anon_sym_STATIC] = ACTIONS(5494), + }, + [STATE(2443)] = { + [anon_sym_DOT] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_COMMA] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_COLON] = ACTIONS(2508), + [anon_sym_EQ] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2508), + [sym_optional_chain] = ACTIONS(2510), + [sym_static_chain] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_BSLASH] = ACTIONS(2510), + [anon_sym_STAR_STAR] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), + [anon_sym_LT_GT] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), + [aux_sym_binary_expression_token1] = ACTIONS(2510), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [aux_sym_binary_expression_token2] = ACTIONS(2508), + [aux_sym_binary_expression_token3] = ACTIONS(2508), + [aux_sym_binary_expression_token4] = ACTIONS(2510), + [aux_sym_binary_expression_token5] = ACTIONS(2510), + [aux_sym_binary_expression_token6] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_IN] = ACTIONS(2508), + [anon_sym_InstanceOf] = ACTIONS(2510), + [anon_sym_instanceof] = ACTIONS(2510), + [anon_sym_INSTANCEOF] = ACTIONS(2510), + [anon_sym_instanceOf] = ACTIONS(2510), + [anon_sym_Of] = ACTIONS(2510), + [anon_sym_of] = ACTIONS(2510), + [anon_sym_OF] = ACTIONS(2510), + [sym__automatic_semicolon] = ACTIONS(2510), + [sym__ternary_qmark] = ACTIONS(2510), + [sym__elvis_operator] = ACTIONS(2510), + [sym_logical_or] = ACTIONS(2510), + }, + [STATE(2444)] = { + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [sym_comment] = ACTIONS(129), + [anon_sym_Else] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_ELSE] = ACTIONS(1682), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1686), + [anon_sym_instanceof] = ACTIONS(1686), + [anon_sym_INSTANCEOF] = ACTIONS(1686), + [anon_sym_instanceOf] = ACTIONS(1686), + [anon_sym_While] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_WHILE] = ACTIONS(1682), + [sym__automatic_semicolon] = ACTIONS(5496), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + }, + [STATE(2445)] = { + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_COLON] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2230), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2230), + [anon_sym_instanceof] = ACTIONS(2230), + [anon_sym_INSTANCEOF] = ACTIONS(2230), + [anon_sym_instanceOf] = ACTIONS(2230), + [anon_sym_Of] = ACTIONS(2230), + [anon_sym_of] = ACTIONS(2230), + [anon_sym_OF] = ACTIONS(2230), + [sym__automatic_semicolon] = ACTIONS(2230), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), + }, + [STATE(2446)] = { + [sym_spread_element] = STATE(4875), + [sym_string] = STATE(4578), + [sym_number] = STATE(4578), + [sym_null] = STATE(4578), + [sym_decorator] = STATE(3899), + [sym_method_definition] = STATE(4875), + [sym_pair] = STATE(4875), + [sym_cf_pair] = STATE(4875), + [sym__property_name] = STATE(4578), + [sym__hash_always_eval] = STATE(4578), + [sym_hash_expression] = STATE(4578), + [sym_computed_property_name] = STATE(4578), + [aux_sym_method_definition_repeat1] = STATE(3482), + [sym_identifier] = ACTIONS(5498), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(5500), + [anon_sym_RBRACE] = ACTIONS(5500), + [anon_sym_let] = ACTIONS(5498), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(5498), + [anon_sym_query] = ACTIONS(5498), + [anon_sym_QUERY] = ACTIONS(5498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(133), + [anon_sym_get] = ACTIONS(5502), + [anon_sym_set] = ACTIONS(5502), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5492), + [anon_sym_export] = ACTIONS(5498), + [anon_sym_QueryExecute] = ACTIONS(5498), + [anon_sym_queryexecute] = ACTIONS(5498), + [anon_sym_QUERYEXECUTE] = ACTIONS(5498), + [anon_sym_queryExecute] = ACTIONS(5498), + [anon_sym_Abstract] = ACTIONS(5498), + [anon_sym_abstract] = ACTIONS(5498), + [anon_sym_ABSTRACT] = ACTIONS(5498), + [anon_sym_Component] = ACTIONS(5498), + [anon_sym_component] = ACTIONS(5498), + [anon_sym_COMPONENT] = ACTIONS(5498), + [anon_sym_Debugger] = ACTIONS(5498), + [anon_sym_debugger] = ACTIONS(5498), + [anon_sym_DEBUGGER] = ACTIONS(5498), + [anon_sym_Final] = ACTIONS(5498), + [anon_sym_final] = ACTIONS(5498), + [anon_sym_FINAL] = ACTIONS(5498), + [anon_sym_Include] = ACTIONS(5498), + [anon_sym_include] = ACTIONS(5498), + [anon_sym_INCLUDE] = ACTIONS(5498), + [anon_sym_New] = ACTIONS(5498), + [anon_sym_new] = ACTIONS(5498), + [anon_sym_NEW] = ACTIONS(5498), + [anon_sym_Package] = ACTIONS(5498), + [anon_sym_package] = ACTIONS(5498), + [anon_sym_PACKAGE] = ACTIONS(5498), + [anon_sym_Private] = ACTIONS(5498), + [anon_sym_private] = ACTIONS(5498), + [anon_sym_PRIVATE] = ACTIONS(5498), + [anon_sym_Public] = ACTIONS(5498), + [anon_sym_public] = ACTIONS(5498), + [anon_sym_PUBLIC] = ACTIONS(5498), + [anon_sym_Remote] = ACTIONS(5498), + [anon_sym_remote] = ACTIONS(5498), + [anon_sym_REMOTE] = ACTIONS(5498), + [anon_sym_Static] = ACTIONS(5504), + [anon_sym_static] = ACTIONS(5504), + [anon_sym_STATIC] = ACTIONS(5504), + }, + [STATE(2447)] = { + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_COLON] = ACTIONS(2504), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2504), + [sym_optional_chain] = ACTIONS(2506), + [sym_static_chain] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_BSLASH] = ACTIONS(2506), + [anon_sym_STAR_STAR] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2504), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), + [anon_sym_LT_GT] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2504), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), + [aux_sym_binary_expression_token1] = ACTIONS(2506), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [aux_sym_binary_expression_token2] = ACTIONS(2504), + [aux_sym_binary_expression_token3] = ACTIONS(2504), + [aux_sym_binary_expression_token4] = ACTIONS(2506), + [aux_sym_binary_expression_token5] = ACTIONS(2506), + [aux_sym_binary_expression_token6] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2504), + [anon_sym_in] = ACTIONS(2504), + [anon_sym_IN] = ACTIONS(2504), + [anon_sym_InstanceOf] = ACTIONS(2506), + [anon_sym_instanceof] = ACTIONS(2506), + [anon_sym_INSTANCEOF] = ACTIONS(2506), + [anon_sym_instanceOf] = ACTIONS(2506), + [anon_sym_Of] = ACTIONS(2506), + [anon_sym_of] = ACTIONS(2506), + [anon_sym_OF] = ACTIONS(2506), + [sym__automatic_semicolon] = ACTIONS(2506), + [sym__ternary_qmark] = ACTIONS(2506), + [sym__elvis_operator] = ACTIONS(2506), + [sym_logical_or] = ACTIONS(2506), + }, + [STATE(2448)] = { + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_DASH_GT] = ACTIONS(2215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2213), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2213), + [anon_sym_instanceof] = ACTIONS(2213), + [anon_sym_INSTANCEOF] = ACTIONS(2213), + [anon_sym_instanceOf] = ACTIONS(2213), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + }, + [STATE(2449)] = { + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_COLON] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2238), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2238), + [anon_sym_instanceof] = ACTIONS(2238), + [anon_sym_INSTANCEOF] = ACTIONS(2238), + [anon_sym_instanceOf] = ACTIONS(2238), + [anon_sym_Of] = ACTIONS(2238), + [anon_sym_of] = ACTIONS(2238), + [anon_sym_OF] = ACTIONS(2238), + [sym__automatic_semicolon] = ACTIONS(2238), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), + }, + [STATE(2450)] = { + [anon_sym_DOT] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_COLON] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), + [sym_optional_chain] = ACTIONS(2276), + [sym_static_chain] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_BSLASH] = ACTIONS(2276), + [anon_sym_STAR_STAR] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT_EQ] = ACTIONS(2276), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2276), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), + [aux_sym_binary_expression_token1] = ACTIONS(2276), + [anon_sym_GT_EQ] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2274), + [aux_sym_binary_expression_token2] = ACTIONS(2274), + [aux_sym_binary_expression_token3] = ACTIONS(2274), + [aux_sym_binary_expression_token4] = ACTIONS(2276), + [aux_sym_binary_expression_token5] = ACTIONS(2276), + [aux_sym_binary_expression_token6] = ACTIONS(2276), + [anon_sym_QMARK_QMARK] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_IN] = ACTIONS(2274), + [anon_sym_InstanceOf] = ACTIONS(2276), + [anon_sym_instanceof] = ACTIONS(2276), + [anon_sym_INSTANCEOF] = ACTIONS(2276), + [anon_sym_instanceOf] = ACTIONS(2276), + [anon_sym_Of] = ACTIONS(2276), + [anon_sym_of] = ACTIONS(2276), + [anon_sym_OF] = ACTIONS(2276), + [sym__automatic_semicolon] = ACTIONS(2276), + [sym__ternary_qmark] = ACTIONS(2276), + [sym__elvis_operator] = ACTIONS(2276), + [sym_logical_or] = ACTIONS(2276), + }, + [STATE(2451)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [anon_sym_Of] = ACTIONS(1716), + [anon_sym_of] = ACTIONS(1716), + [anon_sym_OF] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2452)] = { + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2246), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2246), + [anon_sym_instanceof] = ACTIONS(2246), + [anon_sym_INSTANCEOF] = ACTIONS(2246), + [anon_sym_instanceOf] = ACTIONS(2246), + [anon_sym_Of] = ACTIONS(2246), + [anon_sym_of] = ACTIONS(2246), + [anon_sym_OF] = ACTIONS(2246), + [sym__automatic_semicolon] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), }, - [STATE(2375)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2453)] = { + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_COLON] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2248), + [sym_optional_chain] = ACTIONS(2250), + [sym_static_chain] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2248), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2250), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_LT_GT] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [aux_sym_binary_expression_token1] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2248), + [aux_sym_binary_expression_token2] = ACTIONS(2248), + [aux_sym_binary_expression_token3] = ACTIONS(2248), + [aux_sym_binary_expression_token4] = ACTIONS(2250), + [aux_sym_binary_expression_token5] = ACTIONS(2250), + [aux_sym_binary_expression_token6] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [anon_sym_IN] = ACTIONS(2248), + [anon_sym_InstanceOf] = ACTIONS(2250), + [anon_sym_instanceof] = ACTIONS(2250), + [anon_sym_INSTANCEOF] = ACTIONS(2250), + [anon_sym_instanceOf] = ACTIONS(2250), + [anon_sym_Of] = ACTIONS(2250), + [anon_sym_of] = ACTIONS(2250), + [anon_sym_OF] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2250), + [sym__ternary_qmark] = ACTIONS(2250), + [sym__elvis_operator] = ACTIONS(2250), + [sym_logical_or] = ACTIONS(2250), + }, + [STATE(2454)] = { + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2234), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2234), + [anon_sym_instanceof] = ACTIONS(2234), + [anon_sym_INSTANCEOF] = ACTIONS(2234), + [anon_sym_instanceOf] = ACTIONS(2234), + [anon_sym_Of] = ACTIONS(2234), + [anon_sym_of] = ACTIONS(2234), + [anon_sym_OF] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + }, + [STATE(2455)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2309), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2309), + [anon_sym_instanceof] = ACTIONS(2309), + [anon_sym_INSTANCEOF] = ACTIONS(2309), + [anon_sym_instanceOf] = ACTIONS(2309), + [anon_sym_Of] = ACTIONS(2309), + [anon_sym_of] = ACTIONS(2309), + [anon_sym_OF] = ACTIONS(2309), + [sym__automatic_semicolon] = ACTIONS(2309), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), + }, + [STATE(2456)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_Else] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_ELSE] = ACTIONS(1083), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [anon_sym_While] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_WHILE] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(5508), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2376)] = { + [STATE(2457)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5297), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -359946,35 +368151,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), [anon_sym_PIPE] = ACTIONS(507), [anon_sym_PLUS] = ACTIONS(507), [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), [anon_sym_EQ_EQ] = ACTIONS(507), @@ -359990,10 +368180,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token4] = ACTIONS(509), [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_QMARK_QMARK] = ACTIONS(509), [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -360005,181 +368196,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2377)] = { - [anon_sym_DOT] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2007), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2009), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2007), - [sym_optional_chain] = ACTIONS(2009), - [sym_static_chain] = ACTIONS(2009), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_CARET_EQ] = ACTIONS(2009), - [anon_sym_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2009), - [anon_sym_LT_LT_EQ] = ACTIONS(2009), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2009), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2009), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_GT_GT_GT] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_BSLASH] = ACTIONS(2009), - [anon_sym_STAR_STAR] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_GT] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [aux_sym_binary_expression_token1] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2007), - [aux_sym_binary_expression_token2] = ACTIONS(2007), - [aux_sym_binary_expression_token3] = ACTIONS(2007), - [aux_sym_binary_expression_token4] = ACTIONS(2009), - [aux_sym_binary_expression_token5] = ACTIONS(2009), - [aux_sym_binary_expression_token6] = ACTIONS(2009), - [anon_sym_QMARK_QMARK] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_IN] = ACTIONS(2007), - [anon_sym_InstanceOf] = ACTIONS(2009), - [anon_sym_instanceof] = ACTIONS(2009), - [anon_sym_INSTANCEOF] = ACTIONS(2009), - [anon_sym_instanceOf] = ACTIONS(2009), - [sym__ternary_qmark] = ACTIONS(2009), - [sym__elvis_operator] = ACTIONS(2009), - [sym_logical_or] = ACTIONS(2009), + [STATE(2458)] = { + [anon_sym_DOT] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_COLON] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2328), + [sym_optional_chain] = ACTIONS(2330), + [sym_static_chain] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2330), + [anon_sym_LT_LT] = ACTIONS(2330), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2330), + [anon_sym_BSLASH] = ACTIONS(2330), + [anon_sym_STAR_STAR] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2330), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2330), + [anon_sym_LT_GT] = ACTIONS(2330), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2330), + [aux_sym_binary_expression_token1] = ACTIONS(2330), + [anon_sym_GT_EQ] = ACTIONS(2330), + [anon_sym_GT] = ACTIONS(2328), + [aux_sym_binary_expression_token2] = ACTIONS(2328), + [aux_sym_binary_expression_token3] = ACTIONS(2328), + [aux_sym_binary_expression_token4] = ACTIONS(2330), + [aux_sym_binary_expression_token5] = ACTIONS(2330), + [aux_sym_binary_expression_token6] = ACTIONS(2330), + [anon_sym_QMARK_QMARK] = ACTIONS(2330), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_IN] = ACTIONS(2328), + [anon_sym_InstanceOf] = ACTIONS(2330), + [anon_sym_instanceof] = ACTIONS(2330), + [anon_sym_INSTANCEOF] = ACTIONS(2330), + [anon_sym_instanceOf] = ACTIONS(2330), + [anon_sym_Of] = ACTIONS(2330), + [anon_sym_of] = ACTIONS(2330), + [anon_sym_OF] = ACTIONS(2330), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2330), + [sym__elvis_operator] = ACTIONS(2330), + [sym_logical_or] = ACTIONS(2330), }, - [STATE(2378)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2459)] = { + [anon_sym_DOT] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_COMMA] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_COLON] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2252), + [sym_optional_chain] = ACTIONS(2254), + [sym_static_chain] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_SLASH] = ACTIONS(2252), + [anon_sym_PERCENT] = ACTIONS(2254), + [anon_sym_BSLASH] = ACTIONS(2254), + [anon_sym_STAR_STAR] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_LT_EQ] = ACTIONS(2254), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), + [anon_sym_LT_GT] = ACTIONS(2254), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), + [aux_sym_binary_expression_token1] = ACTIONS(2254), + [anon_sym_GT_EQ] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2252), + [aux_sym_binary_expression_token2] = ACTIONS(2252), + [aux_sym_binary_expression_token3] = ACTIONS(2252), + [aux_sym_binary_expression_token4] = ACTIONS(2254), + [aux_sym_binary_expression_token5] = ACTIONS(2254), + [aux_sym_binary_expression_token6] = ACTIONS(2254), + [anon_sym_QMARK_QMARK] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_In] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_IN] = ACTIONS(2252), + [anon_sym_InstanceOf] = ACTIONS(2254), + [anon_sym_instanceof] = ACTIONS(2254), + [anon_sym_INSTANCEOF] = ACTIONS(2254), + [anon_sym_instanceOf] = ACTIONS(2254), + [anon_sym_Of] = ACTIONS(2254), + [anon_sym_of] = ACTIONS(2254), + [anon_sym_OF] = ACTIONS(2254), + [sym__automatic_semicolon] = ACTIONS(2254), + [sym__ternary_qmark] = ACTIONS(2254), + [sym__elvis_operator] = ACTIONS(2254), + [sym_logical_or] = ACTIONS(2254), }, - [STATE(2379)] = { + [STATE(2460)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(5514), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_INSTANCEOF] = ACTIONS(2260), + [anon_sym_instanceOf] = ACTIONS(2260), + [anon_sym_Of] = ACTIONS(2260), + [anon_sym_of] = ACTIONS(2260), + [anon_sym_OF] = ACTIONS(2260), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + }, + [STATE(2461)] = { + [anon_sym_DOT] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2314), + [sym_optional_chain] = ACTIONS(2316), + [sym_static_chain] = ACTIONS(2316), + [anon_sym_AMP_AMP] = ACTIONS(2316), + [anon_sym_PIPE_PIPE] = ACTIONS(2316), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2316), + [anon_sym_LT_LT] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2316), + [anon_sym_BSLASH] = ACTIONS(2316), + [anon_sym_STAR_STAR] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2316), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2316), + [anon_sym_LT_GT] = ACTIONS(2316), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2316), + [aux_sym_binary_expression_token1] = ACTIONS(2316), + [anon_sym_GT_EQ] = ACTIONS(2316), + [anon_sym_GT] = ACTIONS(2314), + [aux_sym_binary_expression_token2] = ACTIONS(2314), + [aux_sym_binary_expression_token3] = ACTIONS(2314), + [aux_sym_binary_expression_token4] = ACTIONS(2316), + [aux_sym_binary_expression_token5] = ACTIONS(2316), + [aux_sym_binary_expression_token6] = ACTIONS(2316), + [anon_sym_QMARK_QMARK] = ACTIONS(2316), + [anon_sym_PLUS_PLUS] = ACTIONS(2316), + [anon_sym_DASH_DASH] = ACTIONS(2316), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_IN] = ACTIONS(2314), + [anon_sym_InstanceOf] = ACTIONS(2316), + [anon_sym_instanceof] = ACTIONS(2316), + [anon_sym_INSTANCEOF] = ACTIONS(2316), + [anon_sym_instanceOf] = ACTIONS(2316), + [anon_sym_Of] = ACTIONS(2316), + [anon_sym_of] = ACTIONS(2316), + [anon_sym_OF] = ACTIONS(2316), + [sym__automatic_semicolon] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2316), + [sym__elvis_operator] = ACTIONS(2316), + [sym_logical_or] = ACTIONS(2316), + }, + [STATE(2462)] = { + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1947), + [sym_optional_chain] = ACTIONS(1955), + [sym_static_chain] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_BSLASH] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_LT_GT] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [aux_sym_binary_expression_token1] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1947), + [aux_sym_binary_expression_token2] = ACTIONS(1947), + [aux_sym_binary_expression_token3] = ACTIONS(1947), + [aux_sym_binary_expression_token4] = ACTIONS(1955), + [aux_sym_binary_expression_token5] = ACTIONS(1955), + [aux_sym_binary_expression_token6] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_IN] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_INSTANCEOF] = ACTIONS(1955), + [anon_sym_instanceOf] = ACTIONS(1955), + [anon_sym_Of] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1955), + [anon_sym_OF] = ACTIONS(1955), + [sym__automatic_semicolon] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1955), + [sym__elvis_operator] = ACTIONS(1955), + [sym_logical_or] = ACTIONS(1955), + }, + [STATE(2463)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2260), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_INSTANCEOF] = ACTIONS(2260), + [anon_sym_instanceOf] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + }, + [STATE(2464)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -360200,35 +368680,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), [anon_sym_PIPE] = ACTIONS(507), [anon_sym_PLUS] = ACTIONS(507), [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), [anon_sym_EQ_EQ] = ACTIONS(507), @@ -360244,11 +368709,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token4] = ACTIONS(509), [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_QMARK_QMARK] = ACTIONS(509), [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -360256,604 +368720,1466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2380)] = { - [sym_identifier] = ACTIONS(5261), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2465)] = { + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2260), + [sym_static_chain] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_INSTANCEOF] = ACTIONS(2260), + [anon_sym_instanceOf] = ACTIONS(2260), + [anon_sym_Of] = ACTIONS(2260), + [anon_sym_of] = ACTIONS(2260), + [anon_sym_OF] = ACTIONS(2260), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + }, + [STATE(2466)] = { + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2294), + [sym_optional_chain] = ACTIONS(2296), + [sym_static_chain] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2296), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_LT_GT] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [aux_sym_binary_expression_token1] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2294), + [aux_sym_binary_expression_token2] = ACTIONS(2294), + [aux_sym_binary_expression_token3] = ACTIONS(2294), + [aux_sym_binary_expression_token4] = ACTIONS(2296), + [aux_sym_binary_expression_token5] = ACTIONS(2296), + [aux_sym_binary_expression_token6] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_IN] = ACTIONS(2294), + [anon_sym_InstanceOf] = ACTIONS(2296), + [anon_sym_instanceof] = ACTIONS(2296), + [anon_sym_INSTANCEOF] = ACTIONS(2296), + [anon_sym_instanceOf] = ACTIONS(2296), + [anon_sym_Of] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_OF] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2296), + [sym__ternary_qmark] = ACTIONS(2296), + [sym__elvis_operator] = ACTIONS(2296), + [sym_logical_or] = ACTIONS(2296), + }, + [STATE(2467)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_BSLASH] = ACTIONS(2303), + [anon_sym_STAR_STAR] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2300), + [aux_sym_binary_expression_token2] = ACTIONS(2300), + [aux_sym_binary_expression_token3] = ACTIONS(2300), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_IN] = ACTIONS(2300), + [anon_sym_InstanceOf] = ACTIONS(2303), + [anon_sym_instanceof] = ACTIONS(2303), + [anon_sym_INSTANCEOF] = ACTIONS(2303), + [anon_sym_instanceOf] = ACTIONS(2303), + [anon_sym_Of] = ACTIONS(2303), + [anon_sym_of] = ACTIONS(2303), + [anon_sym_OF] = ACTIONS(2303), + [sym__automatic_semicolon] = ACTIONS(2303), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), + }, + [STATE(2468)] = { + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2320), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2320), + [anon_sym_instanceof] = ACTIONS(2320), + [anon_sym_INSTANCEOF] = ACTIONS(2320), + [anon_sym_instanceOf] = ACTIONS(2320), + [anon_sym_Of] = ACTIONS(2320), + [anon_sym_of] = ACTIONS(2320), + [anon_sym_OF] = ACTIONS(2320), + [sym__automatic_semicolon] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + }, + [STATE(2469)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2470)] = { + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_COMMA] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), + [sym_optional_chain] = ACTIONS(2272), + [sym_static_chain] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2272), + [anon_sym_LT_LT] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_PERCENT] = ACTIONS(2272), + [anon_sym_BSLASH] = ACTIONS(2272), + [anon_sym_STAR_STAR] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), + [anon_sym_LT_GT] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), + [aux_sym_binary_expression_token1] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2270), + [aux_sym_binary_expression_token2] = ACTIONS(2270), + [aux_sym_binary_expression_token3] = ACTIONS(2270), + [aux_sym_binary_expression_token4] = ACTIONS(2272), + [aux_sym_binary_expression_token5] = ACTIONS(2272), + [aux_sym_binary_expression_token6] = ACTIONS(2272), + [anon_sym_QMARK_QMARK] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2270), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_IN] = ACTIONS(2270), + [anon_sym_InstanceOf] = ACTIONS(2272), + [anon_sym_instanceof] = ACTIONS(2272), + [anon_sym_INSTANCEOF] = ACTIONS(2272), + [anon_sym_instanceOf] = ACTIONS(2272), + [anon_sym_Of] = ACTIONS(2272), + [anon_sym_of] = ACTIONS(2272), + [anon_sym_OF] = ACTIONS(2272), + [sym__automatic_semicolon] = ACTIONS(2272), + [sym__ternary_qmark] = ACTIONS(2272), + [sym__elvis_operator] = ACTIONS(2272), + [sym_logical_or] = ACTIONS(2272), + }, + [STATE(2471)] = { + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_COLON] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1588), + [anon_sym_instanceof] = ACTIONS(1588), + [anon_sym_INSTANCEOF] = ACTIONS(1588), + [anon_sym_instanceOf] = ACTIONS(1588), + [sym__automatic_semicolon] = ACTIONS(5528), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + }, + [STATE(2472)] = { + [anon_sym_DOT] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2282), + [sym_optional_chain] = ACTIONS(2284), + [sym_static_chain] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_GT_GT_GT] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2284), + [anon_sym_STAR_STAR] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_LT_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2284), + [anon_sym_LT_GT] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2284), + [aux_sym_binary_expression_token1] = ACTIONS(2284), + [anon_sym_GT_EQ] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2282), + [aux_sym_binary_expression_token2] = ACTIONS(2282), + [aux_sym_binary_expression_token3] = ACTIONS(2282), + [aux_sym_binary_expression_token4] = ACTIONS(2284), + [aux_sym_binary_expression_token5] = ACTIONS(2284), + [aux_sym_binary_expression_token6] = ACTIONS(2284), + [anon_sym_QMARK_QMARK] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2282), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_IN] = ACTIONS(2282), + [anon_sym_InstanceOf] = ACTIONS(2284), + [anon_sym_instanceof] = ACTIONS(2284), + [anon_sym_INSTANCEOF] = ACTIONS(2284), + [anon_sym_instanceOf] = ACTIONS(2284), + [anon_sym_Of] = ACTIONS(2284), + [anon_sym_of] = ACTIONS(2284), + [anon_sym_OF] = ACTIONS(2284), + [sym__automatic_semicolon] = ACTIONS(2284), + [sym__ternary_qmark] = ACTIONS(2284), + [sym__elvis_operator] = ACTIONS(2284), + [sym_logical_or] = ACTIONS(2284), + }, + [STATE(2473)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(5514), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_INSTANCEOF] = ACTIONS(2286), + [anon_sym_instanceOf] = ACTIONS(2286), + [anon_sym_Of] = ACTIONS(2260), + [anon_sym_of] = ACTIONS(2260), + [anon_sym_OF] = ACTIONS(2260), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + }, + [STATE(2474)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2260), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_INSTANCEOF] = ACTIONS(2286), + [anon_sym_instanceOf] = ACTIONS(2286), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + }, + [STATE(2475)] = { + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2234), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2234), + [anon_sym_instanceof] = ACTIONS(2234), + [anon_sym_INSTANCEOF] = ACTIONS(2234), + [anon_sym_instanceOf] = ACTIONS(2234), + [anon_sym_Of] = ACTIONS(2234), + [anon_sym_of] = ACTIONS(2234), + [anon_sym_OF] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + }, + [STATE(2476)] = { + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_COLON] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_RBRACK] = ACTIONS(2334), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), + [sym_optional_chain] = ACTIONS(2334), + [sym_static_chain] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2332), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_BSLASH] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [aux_sym_binary_expression_token1] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2332), + [aux_sym_binary_expression_token2] = ACTIONS(2332), + [aux_sym_binary_expression_token3] = ACTIONS(2332), + [aux_sym_binary_expression_token4] = ACTIONS(2334), + [aux_sym_binary_expression_token5] = ACTIONS(2334), + [aux_sym_binary_expression_token6] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [sym_comment] = ACTIONS(129), + [sym_regex_flags] = ACTIONS(5530), + [anon_sym_POUND] = ACTIONS(2334), + [anon_sym_In] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_IN] = ACTIONS(2332), + [anon_sym_InstanceOf] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_INSTANCEOF] = ACTIONS(2334), + [anon_sym_instanceOf] = ACTIONS(2334), + [sym__ternary_qmark] = ACTIONS(2334), + [sym__elvis_operator] = ACTIONS(2334), + [sym_logical_or] = ACTIONS(2334), + }, + [STATE(2477)] = { + [anon_sym_DOT] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_COLON] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2224), + [sym_optional_chain] = ACTIONS(2226), + [sym_static_chain] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2226), + [anon_sym_PIPE_PIPE] = ACTIONS(2226), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2226), + [anon_sym_BSLASH] = ACTIONS(2226), + [anon_sym_STAR_STAR] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2226), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2226), + [anon_sym_LT_GT] = ACTIONS(2226), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2226), + [aux_sym_binary_expression_token1] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2224), + [aux_sym_binary_expression_token2] = ACTIONS(2224), + [aux_sym_binary_expression_token3] = ACTIONS(2224), + [aux_sym_binary_expression_token4] = ACTIONS(2226), + [aux_sym_binary_expression_token5] = ACTIONS(2226), + [aux_sym_binary_expression_token6] = ACTIONS(2226), + [anon_sym_QMARK_QMARK] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_IN] = ACTIONS(2224), + [anon_sym_InstanceOf] = ACTIONS(2226), + [anon_sym_instanceof] = ACTIONS(2226), + [anon_sym_INSTANCEOF] = ACTIONS(2226), + [anon_sym_instanceOf] = ACTIONS(2226), + [anon_sym_Of] = ACTIONS(2226), + [anon_sym_of] = ACTIONS(2226), + [anon_sym_OF] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2226), + [sym__ternary_qmark] = ACTIONS(2226), + [sym__elvis_operator] = ACTIONS(2226), + [sym_logical_or] = ACTIONS(2226), + }, + [STATE(2478)] = { + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2246), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2246), + [anon_sym_instanceof] = ACTIONS(2246), + [anon_sym_INSTANCEOF] = ACTIONS(2246), + [anon_sym_instanceOf] = ACTIONS(2246), + [anon_sym_Of] = ACTIONS(2246), + [anon_sym_of] = ACTIONS(2246), + [anon_sym_OF] = ACTIONS(2246), + [sym__automatic_semicolon] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + }, + [STATE(2479)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5514), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [anon_sym_Of] = ACTIONS(1716), + [anon_sym_of] = ACTIONS(1716), + [anon_sym_OF] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2480)] = { + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_COLON] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), + [sym_optional_chain] = ACTIONS(2326), + [sym_static_chain] = ACTIONS(2326), + [anon_sym_AMP_AMP] = ACTIONS(2326), + [anon_sym_PIPE_PIPE] = ACTIONS(2326), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_GT_GT_GT] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_SLASH] = ACTIONS(2324), + [anon_sym_PERCENT] = ACTIONS(2326), + [anon_sym_BSLASH] = ACTIONS(2326), + [anon_sym_STAR_STAR] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_LT_EQ] = ACTIONS(2326), + [anon_sym_EQ_EQ] = ACTIONS(2324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), + [anon_sym_LT_GT] = ACTIONS(2326), + [anon_sym_BANG_EQ] = ACTIONS(2324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), + [aux_sym_binary_expression_token1] = ACTIONS(2326), + [anon_sym_GT_EQ] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2324), + [aux_sym_binary_expression_token2] = ACTIONS(2324), + [aux_sym_binary_expression_token3] = ACTIONS(2324), + [aux_sym_binary_expression_token4] = ACTIONS(2326), + [aux_sym_binary_expression_token5] = ACTIONS(2326), + [aux_sym_binary_expression_token6] = ACTIONS(2326), + [anon_sym_QMARK_QMARK] = ACTIONS(2326), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2381)] = { - [sym_object_assignment_pattern] = STATE(4631), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4634), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4631), - [sym_method_definition] = STATE(4634), - [sym_pair] = STATE(4634), - [sym_cf_pair] = STATE(4465), - [sym_pair_pattern] = STATE(4631), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4660), - [aux_sym_object_pattern_repeat1] = STATE(4666), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5301), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5303), - [anon_sym_let] = ACTIONS(5301), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5301), - [anon_sym_query] = ACTIONS(5301), - [anon_sym_QUERY] = ACTIONS(5301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5309), - [anon_sym_set] = ACTIONS(5309), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5301), - [anon_sym_QueryExecute] = ACTIONS(5301), - [anon_sym_queryexecute] = ACTIONS(5301), - [anon_sym_QUERYEXECUTE] = ACTIONS(5301), - [anon_sym_queryExecute] = ACTIONS(5301), - [anon_sym_Abstract] = ACTIONS(5301), - [anon_sym_abstract] = ACTIONS(5301), - [anon_sym_ABSTRACT] = ACTIONS(5301), - [anon_sym_Component] = ACTIONS(5301), - [anon_sym_component] = ACTIONS(5301), - [anon_sym_COMPONENT] = ACTIONS(5301), - [anon_sym_Debugger] = ACTIONS(5301), - [anon_sym_debugger] = ACTIONS(5301), - [anon_sym_DEBUGGER] = ACTIONS(5301), - [anon_sym_Final] = ACTIONS(5301), - [anon_sym_final] = ACTIONS(5301), - [anon_sym_FINAL] = ACTIONS(5301), - [anon_sym_Include] = ACTIONS(5301), - [anon_sym_include] = ACTIONS(5301), - [anon_sym_INCLUDE] = ACTIONS(5301), - [anon_sym_New] = ACTIONS(5301), - [anon_sym_new] = ACTIONS(5301), - [anon_sym_NEW] = ACTIONS(5301), - [anon_sym_Package] = ACTIONS(5301), - [anon_sym_package] = ACTIONS(5301), - [anon_sym_PACKAGE] = ACTIONS(5301), - [anon_sym_Private] = ACTIONS(5301), - [anon_sym_private] = ACTIONS(5301), - [anon_sym_PRIVATE] = ACTIONS(5301), - [anon_sym_Public] = ACTIONS(5301), - [anon_sym_public] = ACTIONS(5301), - [anon_sym_PUBLIC] = ACTIONS(5301), - [anon_sym_Remote] = ACTIONS(5301), - [anon_sym_remote] = ACTIONS(5301), - [anon_sym_REMOTE] = ACTIONS(5301), - [anon_sym_Static] = ACTIONS(5313), - [anon_sym_static] = ACTIONS(5313), - [anon_sym_STATIC] = ACTIONS(5313), - }, - [STATE(2382)] = { - [sym_object_assignment_pattern] = STATE(4631), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4634), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4631), - [sym_method_definition] = STATE(4634), - [sym_pair] = STATE(4634), - [sym_cf_pair] = STATE(4409), - [sym_pair_pattern] = STATE(4631), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4660), - [aux_sym_object_pattern_repeat1] = STATE(4666), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5315), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5317), - [anon_sym_let] = ACTIONS(5315), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5315), - [anon_sym_query] = ACTIONS(5315), - [anon_sym_QUERY] = ACTIONS(5315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5319), - [anon_sym_set] = ACTIONS(5319), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5315), - [anon_sym_QueryExecute] = ACTIONS(5315), - [anon_sym_queryexecute] = ACTIONS(5315), - [anon_sym_QUERYEXECUTE] = ACTIONS(5315), - [anon_sym_queryExecute] = ACTIONS(5315), - [anon_sym_Abstract] = ACTIONS(5315), - [anon_sym_abstract] = ACTIONS(5315), - [anon_sym_ABSTRACT] = ACTIONS(5315), - [anon_sym_Component] = ACTIONS(5315), - [anon_sym_component] = ACTIONS(5315), - [anon_sym_COMPONENT] = ACTIONS(5315), - [anon_sym_Debugger] = ACTIONS(5315), - [anon_sym_debugger] = ACTIONS(5315), - [anon_sym_DEBUGGER] = ACTIONS(5315), - [anon_sym_Final] = ACTIONS(5315), - [anon_sym_final] = ACTIONS(5315), - [anon_sym_FINAL] = ACTIONS(5315), - [anon_sym_Include] = ACTIONS(5315), - [anon_sym_include] = ACTIONS(5315), - [anon_sym_INCLUDE] = ACTIONS(5315), - [anon_sym_New] = ACTIONS(5315), - [anon_sym_new] = ACTIONS(5315), - [anon_sym_NEW] = ACTIONS(5315), - [anon_sym_Package] = ACTIONS(5315), - [anon_sym_package] = ACTIONS(5315), - [anon_sym_PACKAGE] = ACTIONS(5315), - [anon_sym_Private] = ACTIONS(5315), - [anon_sym_private] = ACTIONS(5315), - [anon_sym_PRIVATE] = ACTIONS(5315), - [anon_sym_Public] = ACTIONS(5315), - [anon_sym_public] = ACTIONS(5315), - [anon_sym_PUBLIC] = ACTIONS(5315), - [anon_sym_Remote] = ACTIONS(5315), - [anon_sym_remote] = ACTIONS(5315), - [anon_sym_REMOTE] = ACTIONS(5315), - [anon_sym_Static] = ACTIONS(5321), - [anon_sym_static] = ACTIONS(5321), - [anon_sym_STATIC] = ACTIONS(5321), - }, - [STATE(2383)] = { - [sym_object_assignment_pattern] = STATE(4696), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4697), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4696), - [sym_method_definition] = STATE(4697), - [sym_pair] = STATE(4697), - [sym_cf_pair] = STATE(4424), - [sym_pair_pattern] = STATE(4696), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4702), - [aux_sym_object_pattern_repeat1] = STATE(4704), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5323), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5325), - [anon_sym_let] = ACTIONS(5323), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5323), - [anon_sym_query] = ACTIONS(5323), - [anon_sym_QUERY] = ACTIONS(5323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5327), - [anon_sym_set] = ACTIONS(5327), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5323), - [anon_sym_QueryExecute] = ACTIONS(5323), - [anon_sym_queryexecute] = ACTIONS(5323), - [anon_sym_QUERYEXECUTE] = ACTIONS(5323), - [anon_sym_queryExecute] = ACTIONS(5323), - [anon_sym_Abstract] = ACTIONS(5323), - [anon_sym_abstract] = ACTIONS(5323), - [anon_sym_ABSTRACT] = ACTIONS(5323), - [anon_sym_Component] = ACTIONS(5323), - [anon_sym_component] = ACTIONS(5323), - [anon_sym_COMPONENT] = ACTIONS(5323), - [anon_sym_Debugger] = ACTIONS(5323), - [anon_sym_debugger] = ACTIONS(5323), - [anon_sym_DEBUGGER] = ACTIONS(5323), - [anon_sym_Final] = ACTIONS(5323), - [anon_sym_final] = ACTIONS(5323), - [anon_sym_FINAL] = ACTIONS(5323), - [anon_sym_Include] = ACTIONS(5323), - [anon_sym_include] = ACTIONS(5323), - [anon_sym_INCLUDE] = ACTIONS(5323), - [anon_sym_New] = ACTIONS(5323), - [anon_sym_new] = ACTIONS(5323), - [anon_sym_NEW] = ACTIONS(5323), - [anon_sym_Package] = ACTIONS(5323), - [anon_sym_package] = ACTIONS(5323), - [anon_sym_PACKAGE] = ACTIONS(5323), - [anon_sym_Private] = ACTIONS(5323), - [anon_sym_private] = ACTIONS(5323), - [anon_sym_PRIVATE] = ACTIONS(5323), - [anon_sym_Public] = ACTIONS(5323), - [anon_sym_public] = ACTIONS(5323), - [anon_sym_PUBLIC] = ACTIONS(5323), - [anon_sym_Remote] = ACTIONS(5323), - [anon_sym_remote] = ACTIONS(5323), - [anon_sym_REMOTE] = ACTIONS(5323), - [anon_sym_Static] = ACTIONS(5329), - [anon_sym_static] = ACTIONS(5329), - [anon_sym_STATIC] = ACTIONS(5329), + [anon_sym_In] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2324), + [anon_sym_IN] = ACTIONS(2324), + [anon_sym_InstanceOf] = ACTIONS(2326), + [anon_sym_instanceof] = ACTIONS(2326), + [anon_sym_INSTANCEOF] = ACTIONS(2326), + [anon_sym_instanceOf] = ACTIONS(2326), + [anon_sym_Of] = ACTIONS(2326), + [anon_sym_of] = ACTIONS(2326), + [anon_sym_OF] = ACTIONS(2326), + [sym__automatic_semicolon] = ACTIONS(2326), + [sym__ternary_qmark] = ACTIONS(2326), + [sym__elvis_operator] = ACTIONS(2326), + [sym_logical_or] = ACTIONS(2326), }, - [STATE(2384)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4748), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4748), - [sym_pair] = STATE(4748), - [sym_cf_pair] = STATE(4445), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4751), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5331), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5333), - [anon_sym_let] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5331), - [anon_sym_query] = ACTIONS(5331), - [anon_sym_QUERY] = ACTIONS(5331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5335), - [anon_sym_set] = ACTIONS(5335), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5331), - [anon_sym_QueryExecute] = ACTIONS(5331), - [anon_sym_queryexecute] = ACTIONS(5331), - [anon_sym_QUERYEXECUTE] = ACTIONS(5331), - [anon_sym_queryExecute] = ACTIONS(5331), - [anon_sym_Abstract] = ACTIONS(5331), - [anon_sym_abstract] = ACTIONS(5331), - [anon_sym_ABSTRACT] = ACTIONS(5331), - [anon_sym_Component] = ACTIONS(5331), - [anon_sym_component] = ACTIONS(5331), - [anon_sym_COMPONENT] = ACTIONS(5331), - [anon_sym_Debugger] = ACTIONS(5331), - [anon_sym_debugger] = ACTIONS(5331), - [anon_sym_DEBUGGER] = ACTIONS(5331), - [anon_sym_Final] = ACTIONS(5331), - [anon_sym_final] = ACTIONS(5331), - [anon_sym_FINAL] = ACTIONS(5331), - [anon_sym_Include] = ACTIONS(5331), - [anon_sym_include] = ACTIONS(5331), - [anon_sym_INCLUDE] = ACTIONS(5331), - [anon_sym_New] = ACTIONS(5331), - [anon_sym_new] = ACTIONS(5331), - [anon_sym_NEW] = ACTIONS(5331), - [anon_sym_Package] = ACTIONS(5331), - [anon_sym_package] = ACTIONS(5331), - [anon_sym_PACKAGE] = ACTIONS(5331), - [anon_sym_Private] = ACTIONS(5331), - [anon_sym_private] = ACTIONS(5331), - [anon_sym_PRIVATE] = ACTIONS(5331), - [anon_sym_Public] = ACTIONS(5331), - [anon_sym_public] = ACTIONS(5331), - [anon_sym_PUBLIC] = ACTIONS(5331), - [anon_sym_Remote] = ACTIONS(5331), - [anon_sym_remote] = ACTIONS(5331), - [anon_sym_REMOTE] = ACTIONS(5331), - [anon_sym_Static] = ACTIONS(5337), - [anon_sym_static] = ACTIONS(5337), - [anon_sym_STATIC] = ACTIONS(5337), + [STATE(2481)] = { + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2234), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2234), + [anon_sym_instanceof] = ACTIONS(2234), + [anon_sym_INSTANCEOF] = ACTIONS(2234), + [anon_sym_instanceOf] = ACTIONS(2234), + [anon_sym_Of] = ACTIONS(2234), + [anon_sym_of] = ACTIONS(2234), + [anon_sym_OF] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), }, - [STATE(2385)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4611), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4611), - [sym_pair] = STATE(4611), - [sym_cf_pair] = STATE(4455), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4613), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5339), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5341), - [anon_sym_let] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5339), - [anon_sym_query] = ACTIONS(5339), - [anon_sym_QUERY] = ACTIONS(5339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5343), - [anon_sym_set] = ACTIONS(5343), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5339), - [anon_sym_QueryExecute] = ACTIONS(5339), - [anon_sym_queryexecute] = ACTIONS(5339), - [anon_sym_QUERYEXECUTE] = ACTIONS(5339), - [anon_sym_queryExecute] = ACTIONS(5339), - [anon_sym_Abstract] = ACTIONS(5339), - [anon_sym_abstract] = ACTIONS(5339), - [anon_sym_ABSTRACT] = ACTIONS(5339), - [anon_sym_Component] = ACTIONS(5339), - [anon_sym_component] = ACTIONS(5339), - [anon_sym_COMPONENT] = ACTIONS(5339), - [anon_sym_Debugger] = ACTIONS(5339), - [anon_sym_debugger] = ACTIONS(5339), - [anon_sym_DEBUGGER] = ACTIONS(5339), - [anon_sym_Final] = ACTIONS(5339), - [anon_sym_final] = ACTIONS(5339), - [anon_sym_FINAL] = ACTIONS(5339), - [anon_sym_Include] = ACTIONS(5339), - [anon_sym_include] = ACTIONS(5339), - [anon_sym_INCLUDE] = ACTIONS(5339), - [anon_sym_New] = ACTIONS(5339), - [anon_sym_new] = ACTIONS(5339), - [anon_sym_NEW] = ACTIONS(5339), - [anon_sym_Package] = ACTIONS(5339), - [anon_sym_package] = ACTIONS(5339), - [anon_sym_PACKAGE] = ACTIONS(5339), - [anon_sym_Private] = ACTIONS(5339), - [anon_sym_private] = ACTIONS(5339), - [anon_sym_PRIVATE] = ACTIONS(5339), - [anon_sym_Public] = ACTIONS(5339), - [anon_sym_public] = ACTIONS(5339), - [anon_sym_PUBLIC] = ACTIONS(5339), - [anon_sym_Remote] = ACTIONS(5339), - [anon_sym_remote] = ACTIONS(5339), - [anon_sym_REMOTE] = ACTIONS(5339), - [anon_sym_Static] = ACTIONS(5345), - [anon_sym_static] = ACTIONS(5345), - [anon_sym_STATIC] = ACTIONS(5345), + [STATE(2482)] = { + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_COMMA] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1083), + [anon_sym_COLON] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_RBRACK] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1083), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1083), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1083), + [anon_sym_instanceof] = ACTIONS(1083), + [anon_sym_INSTANCEOF] = ACTIONS(1083), + [anon_sym_instanceOf] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(5532), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), }, - [STATE(2386)] = { - [sym_object_assignment_pattern] = STATE(4747), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4611), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4747), - [sym_method_definition] = STATE(4611), - [sym_pair] = STATE(4611), - [sym_cf_pair] = STATE(4451), - [sym_pair_pattern] = STATE(4747), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4613), - [aux_sym_object_pattern_repeat1] = STATE(4752), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5347), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5349), - [anon_sym_let] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5347), - [anon_sym_query] = ACTIONS(5347), - [anon_sym_QUERY] = ACTIONS(5347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5351), - [anon_sym_set] = ACTIONS(5351), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5347), - [anon_sym_QueryExecute] = ACTIONS(5347), - [anon_sym_queryexecute] = ACTIONS(5347), - [anon_sym_QUERYEXECUTE] = ACTIONS(5347), - [anon_sym_queryExecute] = ACTIONS(5347), - [anon_sym_Abstract] = ACTIONS(5347), - [anon_sym_abstract] = ACTIONS(5347), - [anon_sym_ABSTRACT] = ACTIONS(5347), - [anon_sym_Component] = ACTIONS(5347), - [anon_sym_component] = ACTIONS(5347), - [anon_sym_COMPONENT] = ACTIONS(5347), - [anon_sym_Debugger] = ACTIONS(5347), - [anon_sym_debugger] = ACTIONS(5347), - [anon_sym_DEBUGGER] = ACTIONS(5347), - [anon_sym_Final] = ACTIONS(5347), - [anon_sym_final] = ACTIONS(5347), - [anon_sym_FINAL] = ACTIONS(5347), - [anon_sym_Include] = ACTIONS(5347), - [anon_sym_include] = ACTIONS(5347), - [anon_sym_INCLUDE] = ACTIONS(5347), - [anon_sym_New] = ACTIONS(5347), - [anon_sym_new] = ACTIONS(5347), - [anon_sym_NEW] = ACTIONS(5347), - [anon_sym_Package] = ACTIONS(5347), - [anon_sym_package] = ACTIONS(5347), - [anon_sym_PACKAGE] = ACTIONS(5347), - [anon_sym_Private] = ACTIONS(5347), - [anon_sym_private] = ACTIONS(5347), - [anon_sym_PRIVATE] = ACTIONS(5347), - [anon_sym_Public] = ACTIONS(5347), - [anon_sym_public] = ACTIONS(5347), - [anon_sym_PUBLIC] = ACTIONS(5347), - [anon_sym_Remote] = ACTIONS(5347), - [anon_sym_remote] = ACTIONS(5347), - [anon_sym_REMOTE] = ACTIONS(5347), - [anon_sym_Static] = ACTIONS(5353), - [anon_sym_static] = ACTIONS(5353), - [anon_sym_STATIC] = ACTIONS(5353), + [STATE(2483)] = { + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2240), + [sym_optional_chain] = ACTIONS(2242), + [sym_static_chain] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2242), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2242), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2242), + [aux_sym_binary_expression_token1] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2240), + [aux_sym_binary_expression_token2] = ACTIONS(2240), + [aux_sym_binary_expression_token3] = ACTIONS(2240), + [aux_sym_binary_expression_token4] = ACTIONS(2242), + [aux_sym_binary_expression_token5] = ACTIONS(2242), + [aux_sym_binary_expression_token6] = ACTIONS(2242), + [anon_sym_QMARK_QMARK] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_IN] = ACTIONS(2240), + [anon_sym_InstanceOf] = ACTIONS(2242), + [anon_sym_instanceof] = ACTIONS(2242), + [anon_sym_INSTANCEOF] = ACTIONS(2242), + [anon_sym_instanceOf] = ACTIONS(2242), + [anon_sym_Of] = ACTIONS(2242), + [anon_sym_of] = ACTIONS(2242), + [anon_sym_OF] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2242), + [sym__ternary_qmark] = ACTIONS(2242), + [sym__elvis_operator] = ACTIONS(2242), + [sym_logical_or] = ACTIONS(2242), }, - [STATE(2387)] = { + [STATE(2484)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(2312), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -360874,35 +370200,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), [anon_sym_PIPE] = ACTIONS(507), [anon_sym_PLUS] = ACTIONS(507), [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), [anon_sym_EQ_EQ] = ACTIONS(507), @@ -360918,7 +370229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token4] = ACTIONS(509), [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_QMARK_QMARK] = ACTIONS(509), [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), @@ -360929,772 +370240,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2388)] = { - [sym_object_assignment_pattern] = STATE(4696), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4697), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4696), - [sym_method_definition] = STATE(4697), - [sym_pair] = STATE(4697), - [sym_cf_pair] = STATE(4428), - [sym_pair_pattern] = STATE(4696), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4702), - [aux_sym_object_pattern_repeat1] = STATE(4704), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5355), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5357), - [anon_sym_let] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5355), - [anon_sym_query] = ACTIONS(5355), - [anon_sym_QUERY] = ACTIONS(5355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5359), - [anon_sym_set] = ACTIONS(5359), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5355), - [anon_sym_QueryExecute] = ACTIONS(5355), - [anon_sym_queryexecute] = ACTIONS(5355), - [anon_sym_QUERYEXECUTE] = ACTIONS(5355), - [anon_sym_queryExecute] = ACTIONS(5355), - [anon_sym_Abstract] = ACTIONS(5355), - [anon_sym_abstract] = ACTIONS(5355), - [anon_sym_ABSTRACT] = ACTIONS(5355), - [anon_sym_Component] = ACTIONS(5355), - [anon_sym_component] = ACTIONS(5355), - [anon_sym_COMPONENT] = ACTIONS(5355), - [anon_sym_Debugger] = ACTIONS(5355), - [anon_sym_debugger] = ACTIONS(5355), - [anon_sym_DEBUGGER] = ACTIONS(5355), - [anon_sym_Final] = ACTIONS(5355), - [anon_sym_final] = ACTIONS(5355), - [anon_sym_FINAL] = ACTIONS(5355), - [anon_sym_Include] = ACTIONS(5355), - [anon_sym_include] = ACTIONS(5355), - [anon_sym_INCLUDE] = ACTIONS(5355), - [anon_sym_New] = ACTIONS(5355), - [anon_sym_new] = ACTIONS(5355), - [anon_sym_NEW] = ACTIONS(5355), - [anon_sym_Package] = ACTIONS(5355), - [anon_sym_package] = ACTIONS(5355), - [anon_sym_PACKAGE] = ACTIONS(5355), - [anon_sym_Private] = ACTIONS(5355), - [anon_sym_private] = ACTIONS(5355), - [anon_sym_PRIVATE] = ACTIONS(5355), - [anon_sym_Public] = ACTIONS(5355), - [anon_sym_public] = ACTIONS(5355), - [anon_sym_PUBLIC] = ACTIONS(5355), - [anon_sym_Remote] = ACTIONS(5355), - [anon_sym_remote] = ACTIONS(5355), - [anon_sym_REMOTE] = ACTIONS(5355), - [anon_sym_Static] = ACTIONS(5361), - [anon_sym_static] = ACTIONS(5361), - [anon_sym_STATIC] = ACTIONS(5361), - }, - [STATE(2389)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4589), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4589), - [sym_pair] = STATE(4589), - [sym_cf_pair] = STATE(4520), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4591), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5363), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5365), - [anon_sym_let] = ACTIONS(5363), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5363), - [anon_sym_query] = ACTIONS(5363), - [anon_sym_QUERY] = ACTIONS(5363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5367), - [anon_sym_set] = ACTIONS(5367), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5363), - [anon_sym_QueryExecute] = ACTIONS(5363), - [anon_sym_queryexecute] = ACTIONS(5363), - [anon_sym_QUERYEXECUTE] = ACTIONS(5363), - [anon_sym_queryExecute] = ACTIONS(5363), - [anon_sym_Abstract] = ACTIONS(5363), - [anon_sym_abstract] = ACTIONS(5363), - [anon_sym_ABSTRACT] = ACTIONS(5363), - [anon_sym_Component] = ACTIONS(5363), - [anon_sym_component] = ACTIONS(5363), - [anon_sym_COMPONENT] = ACTIONS(5363), - [anon_sym_Debugger] = ACTIONS(5363), - [anon_sym_debugger] = ACTIONS(5363), - [anon_sym_DEBUGGER] = ACTIONS(5363), - [anon_sym_Final] = ACTIONS(5363), - [anon_sym_final] = ACTIONS(5363), - [anon_sym_FINAL] = ACTIONS(5363), - [anon_sym_Include] = ACTIONS(5363), - [anon_sym_include] = ACTIONS(5363), - [anon_sym_INCLUDE] = ACTIONS(5363), - [anon_sym_New] = ACTIONS(5363), - [anon_sym_new] = ACTIONS(5363), - [anon_sym_NEW] = ACTIONS(5363), - [anon_sym_Package] = ACTIONS(5363), - [anon_sym_package] = ACTIONS(5363), - [anon_sym_PACKAGE] = ACTIONS(5363), - [anon_sym_Private] = ACTIONS(5363), - [anon_sym_private] = ACTIONS(5363), - [anon_sym_PRIVATE] = ACTIONS(5363), - [anon_sym_Public] = ACTIONS(5363), - [anon_sym_public] = ACTIONS(5363), - [anon_sym_PUBLIC] = ACTIONS(5363), - [anon_sym_Remote] = ACTIONS(5363), - [anon_sym_remote] = ACTIONS(5363), - [anon_sym_REMOTE] = ACTIONS(5363), - [anon_sym_Static] = ACTIONS(5369), - [anon_sym_static] = ACTIONS(5369), - [anon_sym_STATIC] = ACTIONS(5369), - }, - [STATE(2390)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4634), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4634), - [sym_pair] = STATE(4634), - [sym_cf_pair] = STATE(4530), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4660), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5373), - [anon_sym_let] = ACTIONS(5371), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5371), - [anon_sym_query] = ACTIONS(5371), - [anon_sym_QUERY] = ACTIONS(5371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5375), - [anon_sym_set] = ACTIONS(5375), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5371), - [anon_sym_QueryExecute] = ACTIONS(5371), - [anon_sym_queryexecute] = ACTIONS(5371), - [anon_sym_QUERYEXECUTE] = ACTIONS(5371), - [anon_sym_queryExecute] = ACTIONS(5371), - [anon_sym_Abstract] = ACTIONS(5371), - [anon_sym_abstract] = ACTIONS(5371), - [anon_sym_ABSTRACT] = ACTIONS(5371), - [anon_sym_Component] = ACTIONS(5371), - [anon_sym_component] = ACTIONS(5371), - [anon_sym_COMPONENT] = ACTIONS(5371), - [anon_sym_Debugger] = ACTIONS(5371), - [anon_sym_debugger] = ACTIONS(5371), - [anon_sym_DEBUGGER] = ACTIONS(5371), - [anon_sym_Final] = ACTIONS(5371), - [anon_sym_final] = ACTIONS(5371), - [anon_sym_FINAL] = ACTIONS(5371), - [anon_sym_Include] = ACTIONS(5371), - [anon_sym_include] = ACTIONS(5371), - [anon_sym_INCLUDE] = ACTIONS(5371), - [anon_sym_New] = ACTIONS(5371), - [anon_sym_new] = ACTIONS(5371), - [anon_sym_NEW] = ACTIONS(5371), - [anon_sym_Package] = ACTIONS(5371), - [anon_sym_package] = ACTIONS(5371), - [anon_sym_PACKAGE] = ACTIONS(5371), - [anon_sym_Private] = ACTIONS(5371), - [anon_sym_private] = ACTIONS(5371), - [anon_sym_PRIVATE] = ACTIONS(5371), - [anon_sym_Public] = ACTIONS(5371), - [anon_sym_public] = ACTIONS(5371), - [anon_sym_PUBLIC] = ACTIONS(5371), - [anon_sym_Remote] = ACTIONS(5371), - [anon_sym_remote] = ACTIONS(5371), - [anon_sym_REMOTE] = ACTIONS(5371), - [anon_sym_Static] = ACTIONS(5377), - [anon_sym_static] = ACTIONS(5377), - [anon_sym_STATIC] = ACTIONS(5377), + [STATE(2485)] = { + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2246), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2246), + [anon_sym_instanceof] = ACTIONS(2246), + [anon_sym_INSTANCEOF] = ACTIONS(2246), + [anon_sym_instanceOf] = ACTIONS(2246), + [anon_sym_Of] = ACTIONS(2246), + [anon_sym_of] = ACTIONS(2246), + [anon_sym_OF] = ACTIONS(2246), + [sym__automatic_semicolon] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), }, - [STATE(2391)] = { - [sym_object_assignment_pattern] = STATE(4747), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4611), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4747), - [sym_method_definition] = STATE(4611), - [sym_pair] = STATE(4611), - [sym_cf_pair] = STATE(4533), - [sym_pair_pattern] = STATE(4747), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4613), - [aux_sym_object_pattern_repeat1] = STATE(4752), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5379), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5381), - [anon_sym_let] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5379), - [anon_sym_query] = ACTIONS(5379), - [anon_sym_QUERY] = ACTIONS(5379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5383), - [anon_sym_set] = ACTIONS(5383), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5379), - [anon_sym_QueryExecute] = ACTIONS(5379), - [anon_sym_queryexecute] = ACTIONS(5379), - [anon_sym_QUERYEXECUTE] = ACTIONS(5379), - [anon_sym_queryExecute] = ACTIONS(5379), - [anon_sym_Abstract] = ACTIONS(5379), - [anon_sym_abstract] = ACTIONS(5379), - [anon_sym_ABSTRACT] = ACTIONS(5379), - [anon_sym_Component] = ACTIONS(5379), - [anon_sym_component] = ACTIONS(5379), - [anon_sym_COMPONENT] = ACTIONS(5379), - [anon_sym_Debugger] = ACTIONS(5379), - [anon_sym_debugger] = ACTIONS(5379), - [anon_sym_DEBUGGER] = ACTIONS(5379), - [anon_sym_Final] = ACTIONS(5379), - [anon_sym_final] = ACTIONS(5379), - [anon_sym_FINAL] = ACTIONS(5379), - [anon_sym_Include] = ACTIONS(5379), - [anon_sym_include] = ACTIONS(5379), - [anon_sym_INCLUDE] = ACTIONS(5379), - [anon_sym_New] = ACTIONS(5379), - [anon_sym_new] = ACTIONS(5379), - [anon_sym_NEW] = ACTIONS(5379), - [anon_sym_Package] = ACTIONS(5379), - [anon_sym_package] = ACTIONS(5379), - [anon_sym_PACKAGE] = ACTIONS(5379), - [anon_sym_Private] = ACTIONS(5379), - [anon_sym_private] = ACTIONS(5379), - [anon_sym_PRIVATE] = ACTIONS(5379), - [anon_sym_Public] = ACTIONS(5379), - [anon_sym_public] = ACTIONS(5379), - [anon_sym_PUBLIC] = ACTIONS(5379), - [anon_sym_Remote] = ACTIONS(5379), - [anon_sym_remote] = ACTIONS(5379), - [anon_sym_REMOTE] = ACTIONS(5379), - [anon_sym_Static] = ACTIONS(5385), - [anon_sym_static] = ACTIONS(5385), - [anon_sym_STATIC] = ACTIONS(5385), + [STATE(2486)] = { + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2213), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2213), + [anon_sym_instanceof] = ACTIONS(2213), + [anon_sym_INSTANCEOF] = ACTIONS(2213), + [anon_sym_instanceOf] = ACTIONS(2213), + [anon_sym_Of] = ACTIONS(2213), + [anon_sym_of] = ACTIONS(2213), + [anon_sym_OF] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2213), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), }, - [STATE(2392)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4657), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4532), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5387), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5389), - [anon_sym_let] = ACTIONS(5387), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5387), - [anon_sym_query] = ACTIONS(5387), - [anon_sym_QUERY] = ACTIONS(5387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5391), - [anon_sym_set] = ACTIONS(5391), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5387), - [anon_sym_QueryExecute] = ACTIONS(5387), - [anon_sym_queryexecute] = ACTIONS(5387), - [anon_sym_QUERYEXECUTE] = ACTIONS(5387), - [anon_sym_queryExecute] = ACTIONS(5387), - [anon_sym_Abstract] = ACTIONS(5387), - [anon_sym_abstract] = ACTIONS(5387), - [anon_sym_ABSTRACT] = ACTIONS(5387), - [anon_sym_Component] = ACTIONS(5387), - [anon_sym_component] = ACTIONS(5387), - [anon_sym_COMPONENT] = ACTIONS(5387), - [anon_sym_Debugger] = ACTIONS(5387), - [anon_sym_debugger] = ACTIONS(5387), - [anon_sym_DEBUGGER] = ACTIONS(5387), - [anon_sym_Final] = ACTIONS(5387), - [anon_sym_final] = ACTIONS(5387), - [anon_sym_FINAL] = ACTIONS(5387), - [anon_sym_Include] = ACTIONS(5387), - [anon_sym_include] = ACTIONS(5387), - [anon_sym_INCLUDE] = ACTIONS(5387), - [anon_sym_New] = ACTIONS(5387), - [anon_sym_new] = ACTIONS(5387), - [anon_sym_NEW] = ACTIONS(5387), - [anon_sym_Package] = ACTIONS(5387), - [anon_sym_package] = ACTIONS(5387), - [anon_sym_PACKAGE] = ACTIONS(5387), - [anon_sym_Private] = ACTIONS(5387), - [anon_sym_private] = ACTIONS(5387), - [anon_sym_PRIVATE] = ACTIONS(5387), - [anon_sym_Public] = ACTIONS(5387), - [anon_sym_public] = ACTIONS(5387), - [anon_sym_PUBLIC] = ACTIONS(5387), - [anon_sym_Remote] = ACTIONS(5387), - [anon_sym_remote] = ACTIONS(5387), - [anon_sym_REMOTE] = ACTIONS(5387), - [anon_sym_Static] = ACTIONS(5393), - [anon_sym_static] = ACTIONS(5393), - [anon_sym_STATIC] = ACTIONS(5393), + [STATE(2487)] = { + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(2286), + [sym_static_chain] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2286), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2286), + [anon_sym_instanceof] = ACTIONS(2286), + [anon_sym_INSTANCEOF] = ACTIONS(2286), + [anon_sym_instanceOf] = ACTIONS(2286), + [anon_sym_Of] = ACTIONS(2260), + [anon_sym_of] = ACTIONS(2260), + [anon_sym_OF] = ACTIONS(2260), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), }, - [STATE(2393)] = { - [sym_object_assignment_pattern] = STATE(4588), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4589), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4588), - [sym_method_definition] = STATE(4589), - [sym_pair] = STATE(4589), - [sym_cf_pair] = STATE(4503), - [sym_pair_pattern] = STATE(4588), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4591), - [aux_sym_object_pattern_repeat1] = STATE(4592), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5397), - [anon_sym_let] = ACTIONS(5395), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5395), - [anon_sym_query] = ACTIONS(5395), - [anon_sym_QUERY] = ACTIONS(5395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5399), - [anon_sym_set] = ACTIONS(5399), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5395), - [anon_sym_QueryExecute] = ACTIONS(5395), - [anon_sym_queryexecute] = ACTIONS(5395), - [anon_sym_QUERYEXECUTE] = ACTIONS(5395), - [anon_sym_queryExecute] = ACTIONS(5395), - [anon_sym_Abstract] = ACTIONS(5395), - [anon_sym_abstract] = ACTIONS(5395), - [anon_sym_ABSTRACT] = ACTIONS(5395), - [anon_sym_Component] = ACTIONS(5395), - [anon_sym_component] = ACTIONS(5395), - [anon_sym_COMPONENT] = ACTIONS(5395), - [anon_sym_Debugger] = ACTIONS(5395), - [anon_sym_debugger] = ACTIONS(5395), - [anon_sym_DEBUGGER] = ACTIONS(5395), - [anon_sym_Final] = ACTIONS(5395), - [anon_sym_final] = ACTIONS(5395), - [anon_sym_FINAL] = ACTIONS(5395), - [anon_sym_Include] = ACTIONS(5395), - [anon_sym_include] = ACTIONS(5395), - [anon_sym_INCLUDE] = ACTIONS(5395), - [anon_sym_New] = ACTIONS(5395), - [anon_sym_new] = ACTIONS(5395), - [anon_sym_NEW] = ACTIONS(5395), - [anon_sym_Package] = ACTIONS(5395), - [anon_sym_package] = ACTIONS(5395), - [anon_sym_PACKAGE] = ACTIONS(5395), - [anon_sym_Private] = ACTIONS(5395), - [anon_sym_private] = ACTIONS(5395), - [anon_sym_PRIVATE] = ACTIONS(5395), - [anon_sym_Public] = ACTIONS(5395), - [anon_sym_public] = ACTIONS(5395), - [anon_sym_PUBLIC] = ACTIONS(5395), - [anon_sym_Remote] = ACTIONS(5395), - [anon_sym_remote] = ACTIONS(5395), - [anon_sym_REMOTE] = ACTIONS(5395), - [anon_sym_Static] = ACTIONS(5401), - [anon_sym_static] = ACTIONS(5401), - [anon_sym_STATIC] = ACTIONS(5401), + [STATE(2488)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_RPAREN] = ACTIONS(2303), + [anon_sym_COLON] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_RBRACK] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_BSLASH] = ACTIONS(2303), + [anon_sym_STAR_STAR] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2300), + [aux_sym_binary_expression_token2] = ACTIONS(2300), + [aux_sym_binary_expression_token3] = ACTIONS(2300), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_In] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_IN] = ACTIONS(2300), + [anon_sym_InstanceOf] = ACTIONS(2303), + [anon_sym_instanceof] = ACTIONS(2303), + [anon_sym_INSTANCEOF] = ACTIONS(2303), + [anon_sym_instanceOf] = ACTIONS(2303), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), }, - [STATE(2394)] = { - [sym_object_assignment_pattern] = STATE(4550), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4603), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4550), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4454), - [sym_pair_pattern] = STATE(4550), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4583), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5403), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5405), - [anon_sym_let] = ACTIONS(5403), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5403), - [anon_sym_query] = ACTIONS(5403), - [anon_sym_QUERY] = ACTIONS(5403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5407), - [anon_sym_set] = ACTIONS(5407), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5403), - [anon_sym_QueryExecute] = ACTIONS(5403), - [anon_sym_queryexecute] = ACTIONS(5403), - [anon_sym_QUERYEXECUTE] = ACTIONS(5403), - [anon_sym_queryExecute] = ACTIONS(5403), - [anon_sym_Abstract] = ACTIONS(5403), - [anon_sym_abstract] = ACTIONS(5403), - [anon_sym_ABSTRACT] = ACTIONS(5403), - [anon_sym_Component] = ACTIONS(5403), - [anon_sym_component] = ACTIONS(5403), - [anon_sym_COMPONENT] = ACTIONS(5403), - [anon_sym_Debugger] = ACTIONS(5403), - [anon_sym_debugger] = ACTIONS(5403), - [anon_sym_DEBUGGER] = ACTIONS(5403), - [anon_sym_Final] = ACTIONS(5403), - [anon_sym_final] = ACTIONS(5403), - [anon_sym_FINAL] = ACTIONS(5403), - [anon_sym_Include] = ACTIONS(5403), - [anon_sym_include] = ACTIONS(5403), - [anon_sym_INCLUDE] = ACTIONS(5403), - [anon_sym_New] = ACTIONS(5403), - [anon_sym_new] = ACTIONS(5403), - [anon_sym_NEW] = ACTIONS(5403), - [anon_sym_Package] = ACTIONS(5403), - [anon_sym_package] = ACTIONS(5403), - [anon_sym_PACKAGE] = ACTIONS(5403), - [anon_sym_Private] = ACTIONS(5403), - [anon_sym_private] = ACTIONS(5403), - [anon_sym_PRIVATE] = ACTIONS(5403), - [anon_sym_Public] = ACTIONS(5403), - [anon_sym_public] = ACTIONS(5403), - [anon_sym_PUBLIC] = ACTIONS(5403), - [anon_sym_Remote] = ACTIONS(5403), - [anon_sym_remote] = ACTIONS(5403), - [anon_sym_REMOTE] = ACTIONS(5403), - [anon_sym_Static] = ACTIONS(5409), - [anon_sym_static] = ACTIONS(5409), - [anon_sym_STATIC] = ACTIONS(5409), + [STATE(2489)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2395)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4603), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4506), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5413), - [anon_sym_let] = ACTIONS(5411), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5411), - [anon_sym_query] = ACTIONS(5411), - [anon_sym_QUERY] = ACTIONS(5411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5415), - [anon_sym_set] = ACTIONS(5415), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5411), - [anon_sym_QueryExecute] = ACTIONS(5411), - [anon_sym_queryexecute] = ACTIONS(5411), - [anon_sym_QUERYEXECUTE] = ACTIONS(5411), - [anon_sym_queryExecute] = ACTIONS(5411), - [anon_sym_Abstract] = ACTIONS(5411), - [anon_sym_abstract] = ACTIONS(5411), - [anon_sym_ABSTRACT] = ACTIONS(5411), - [anon_sym_Component] = ACTIONS(5411), - [anon_sym_component] = ACTIONS(5411), - [anon_sym_COMPONENT] = ACTIONS(5411), - [anon_sym_Debugger] = ACTIONS(5411), - [anon_sym_debugger] = ACTIONS(5411), - [anon_sym_DEBUGGER] = ACTIONS(5411), - [anon_sym_Final] = ACTIONS(5411), - [anon_sym_final] = ACTIONS(5411), - [anon_sym_FINAL] = ACTIONS(5411), - [anon_sym_Include] = ACTIONS(5411), - [anon_sym_include] = ACTIONS(5411), - [anon_sym_INCLUDE] = ACTIONS(5411), - [anon_sym_New] = ACTIONS(5411), - [anon_sym_new] = ACTIONS(5411), - [anon_sym_NEW] = ACTIONS(5411), - [anon_sym_Package] = ACTIONS(5411), - [anon_sym_package] = ACTIONS(5411), - [anon_sym_PACKAGE] = ACTIONS(5411), - [anon_sym_Private] = ACTIONS(5411), - [anon_sym_private] = ACTIONS(5411), - [anon_sym_PRIVATE] = ACTIONS(5411), - [anon_sym_Public] = ACTIONS(5411), - [anon_sym_public] = ACTIONS(5411), - [anon_sym_PUBLIC] = ACTIONS(5411), - [anon_sym_Remote] = ACTIONS(5411), - [anon_sym_remote] = ACTIONS(5411), - [anon_sym_REMOTE] = ACTIONS(5411), - [anon_sym_Static] = ACTIONS(5417), - [anon_sym_static] = ACTIONS(5417), - [anon_sym_STATIC] = ACTIONS(5417), + [STATE(2490)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_RBRACK] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2309), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2309), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2309), + [anon_sym_instanceof] = ACTIONS(2309), + [anon_sym_INSTANCEOF] = ACTIONS(2309), + [anon_sym_instanceOf] = ACTIONS(2309), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), }, - [STATE(2396)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4697), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4697), - [sym_pair] = STATE(4697), - [sym_cf_pair] = STATE(4435), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4702), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5419), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5421), - [anon_sym_let] = ACTIONS(5419), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5419), - [anon_sym_query] = ACTIONS(5419), - [anon_sym_QUERY] = ACTIONS(5419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5423), - [anon_sym_set] = ACTIONS(5423), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5419), - [anon_sym_QueryExecute] = ACTIONS(5419), - [anon_sym_queryexecute] = ACTIONS(5419), - [anon_sym_QUERYEXECUTE] = ACTIONS(5419), - [anon_sym_queryExecute] = ACTIONS(5419), - [anon_sym_Abstract] = ACTIONS(5419), - [anon_sym_abstract] = ACTIONS(5419), - [anon_sym_ABSTRACT] = ACTIONS(5419), - [anon_sym_Component] = ACTIONS(5419), - [anon_sym_component] = ACTIONS(5419), - [anon_sym_COMPONENT] = ACTIONS(5419), - [anon_sym_Debugger] = ACTIONS(5419), - [anon_sym_debugger] = ACTIONS(5419), - [anon_sym_DEBUGGER] = ACTIONS(5419), - [anon_sym_Final] = ACTIONS(5419), - [anon_sym_final] = ACTIONS(5419), - [anon_sym_FINAL] = ACTIONS(5419), - [anon_sym_Include] = ACTIONS(5419), - [anon_sym_include] = ACTIONS(5419), - [anon_sym_INCLUDE] = ACTIONS(5419), - [anon_sym_New] = ACTIONS(5419), - [anon_sym_new] = ACTIONS(5419), - [anon_sym_NEW] = ACTIONS(5419), - [anon_sym_Package] = ACTIONS(5419), - [anon_sym_package] = ACTIONS(5419), - [anon_sym_PACKAGE] = ACTIONS(5419), - [anon_sym_Private] = ACTIONS(5419), - [anon_sym_private] = ACTIONS(5419), - [anon_sym_PRIVATE] = ACTIONS(5419), - [anon_sym_Public] = ACTIONS(5419), - [anon_sym_public] = ACTIONS(5419), - [anon_sym_PUBLIC] = ACTIONS(5419), - [anon_sym_Remote] = ACTIONS(5419), - [anon_sym_remote] = ACTIONS(5419), - [anon_sym_REMOTE] = ACTIONS(5419), - [anon_sym_Static] = ACTIONS(5425), - [anon_sym_static] = ACTIONS(5425), - [anon_sym_STATIC] = ACTIONS(5425), + [STATE(2491)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_COMMA] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2544), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_BSLASH] = ACTIONS(2546), + [anon_sym_STAR_STAR] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2544), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2546), + [anon_sym_LT_GT] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2544), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2546), + [aux_sym_binary_expression_token1] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [aux_sym_binary_expression_token2] = ACTIONS(2544), + [aux_sym_binary_expression_token3] = ACTIONS(2544), + [aux_sym_binary_expression_token4] = ACTIONS(2546), + [aux_sym_binary_expression_token5] = ACTIONS(2546), + [aux_sym_binary_expression_token6] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_IN] = ACTIONS(2544), + [anon_sym_InstanceOf] = ACTIONS(2546), + [anon_sym_instanceof] = ACTIONS(2546), + [anon_sym_INSTANCEOF] = ACTIONS(2546), + [anon_sym_instanceOf] = ACTIONS(2546), + [anon_sym_Of] = ACTIONS(2546), + [anon_sym_of] = ACTIONS(2546), + [anon_sym_OF] = ACTIONS(2546), + [sym__automatic_semicolon] = ACTIONS(2546), + [sym__ternary_qmark] = ACTIONS(2546), + [sym__elvis_operator] = ACTIONS(2546), + [sym_logical_or] = ACTIONS(2546), }, - [STATE(2397)] = { + [STATE(2492)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(507), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -361714,35 +370809,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), [anon_sym_PIPE] = ACTIONS(507), [anon_sym_PLUS] = ACTIONS(507), [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), [anon_sym_EQ_EQ] = ACTIONS(507), @@ -361758,10 +370838,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token4] = ACTIONS(509), [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_QMARK_QMARK] = ACTIONS(509), [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -361773,11 +370854,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2398)] = { + [STATE(2493)] = { + [anon_sym_DOT] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_COMMA] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2452), + [sym_optional_chain] = ACTIONS(2454), + [sym_static_chain] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_BSLASH] = ACTIONS(2454), + [anon_sym_STAR_STAR] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2454), + [anon_sym_LT_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2454), + [aux_sym_binary_expression_token1] = ACTIONS(2454), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [aux_sym_binary_expression_token2] = ACTIONS(2452), + [aux_sym_binary_expression_token3] = ACTIONS(2452), + [aux_sym_binary_expression_token4] = ACTIONS(2454), + [aux_sym_binary_expression_token5] = ACTIONS(2454), + [aux_sym_binary_expression_token6] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(2452), + [anon_sym_IN] = ACTIONS(2452), + [anon_sym_InstanceOf] = ACTIONS(2454), + [anon_sym_instanceof] = ACTIONS(2454), + [anon_sym_INSTANCEOF] = ACTIONS(2454), + [anon_sym_instanceOf] = ACTIONS(2454), + [anon_sym_Of] = ACTIONS(2454), + [anon_sym_of] = ACTIONS(2454), + [anon_sym_OF] = ACTIONS(2454), + [sym__automatic_semicolon] = ACTIONS(2454), + [sym__ternary_qmark] = ACTIONS(2454), + [sym__elvis_operator] = ACTIONS(2454), + [sym_logical_or] = ACTIONS(2454), + }, + [STATE(2494)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(5538), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -361798,35 +370956,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_CARET_EQ] = ACTIONS(529), - [anon_sym_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_EQ] = ACTIONS(529), - [anon_sym_GT_GT_EQ] = ACTIONS(529), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(529), - [anon_sym_LT_LT_EQ] = ACTIONS(529), - [anon_sym_STAR_STAR_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP_EQ] = ACTIONS(529), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), [anon_sym_PIPE] = ACTIONS(507), [anon_sym_PLUS] = ACTIONS(507), [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), [anon_sym_EQ_EQ] = ACTIONS(507), @@ -361842,7 +370985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token4] = ACTIONS(509), [aux_sym_binary_expression_token5] = ACTIONS(509), [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(507), + [anon_sym_QMARK_QMARK] = ACTIONS(509), [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), @@ -361853,2694 +370996,1972 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2399)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4657), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4509), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5427), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5429), - [anon_sym_let] = ACTIONS(5427), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5427), - [anon_sym_query] = ACTIONS(5427), - [anon_sym_QUERY] = ACTIONS(5427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5431), - [anon_sym_set] = ACTIONS(5431), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5427), - [anon_sym_QueryExecute] = ACTIONS(5427), - [anon_sym_queryexecute] = ACTIONS(5427), - [anon_sym_QUERYEXECUTE] = ACTIONS(5427), - [anon_sym_queryExecute] = ACTIONS(5427), - [anon_sym_Abstract] = ACTIONS(5427), - [anon_sym_abstract] = ACTIONS(5427), - [anon_sym_ABSTRACT] = ACTIONS(5427), - [anon_sym_Component] = ACTIONS(5427), - [anon_sym_component] = ACTIONS(5427), - [anon_sym_COMPONENT] = ACTIONS(5427), - [anon_sym_Debugger] = ACTIONS(5427), - [anon_sym_debugger] = ACTIONS(5427), - [anon_sym_DEBUGGER] = ACTIONS(5427), - [anon_sym_Final] = ACTIONS(5427), - [anon_sym_final] = ACTIONS(5427), - [anon_sym_FINAL] = ACTIONS(5427), - [anon_sym_Include] = ACTIONS(5427), - [anon_sym_include] = ACTIONS(5427), - [anon_sym_INCLUDE] = ACTIONS(5427), - [anon_sym_New] = ACTIONS(5427), - [anon_sym_new] = ACTIONS(5427), - [anon_sym_NEW] = ACTIONS(5427), - [anon_sym_Package] = ACTIONS(5427), - [anon_sym_package] = ACTIONS(5427), - [anon_sym_PACKAGE] = ACTIONS(5427), - [anon_sym_Private] = ACTIONS(5427), - [anon_sym_private] = ACTIONS(5427), - [anon_sym_PRIVATE] = ACTIONS(5427), - [anon_sym_Public] = ACTIONS(5427), - [anon_sym_public] = ACTIONS(5427), - [anon_sym_PUBLIC] = ACTIONS(5427), - [anon_sym_Remote] = ACTIONS(5427), - [anon_sym_remote] = ACTIONS(5427), - [anon_sym_REMOTE] = ACTIONS(5427), - [anon_sym_Static] = ACTIONS(5433), - [anon_sym_static] = ACTIONS(5433), - [anon_sym_STATIC] = ACTIONS(5433), - }, - [STATE(2400)] = { - [sym_object_assignment_pattern] = STATE(4638), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4657), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4638), - [sym_method_definition] = STATE(4657), - [sym_pair] = STATE(4657), - [sym_cf_pair] = STATE(4434), - [sym_pair_pattern] = STATE(4638), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4761), - [aux_sym_object_pattern_repeat1] = STATE(4771), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5435), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5437), - [anon_sym_let] = ACTIONS(5435), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5435), - [anon_sym_query] = ACTIONS(5435), - [anon_sym_QUERY] = ACTIONS(5435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5439), - [anon_sym_set] = ACTIONS(5439), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5435), - [anon_sym_QueryExecute] = ACTIONS(5435), - [anon_sym_queryexecute] = ACTIONS(5435), - [anon_sym_QUERYEXECUTE] = ACTIONS(5435), - [anon_sym_queryExecute] = ACTIONS(5435), - [anon_sym_Abstract] = ACTIONS(5435), - [anon_sym_abstract] = ACTIONS(5435), - [anon_sym_ABSTRACT] = ACTIONS(5435), - [anon_sym_Component] = ACTIONS(5435), - [anon_sym_component] = ACTIONS(5435), - [anon_sym_COMPONENT] = ACTIONS(5435), - [anon_sym_Debugger] = ACTIONS(5435), - [anon_sym_debugger] = ACTIONS(5435), - [anon_sym_DEBUGGER] = ACTIONS(5435), - [anon_sym_Final] = ACTIONS(5435), - [anon_sym_final] = ACTIONS(5435), - [anon_sym_FINAL] = ACTIONS(5435), - [anon_sym_Include] = ACTIONS(5435), - [anon_sym_include] = ACTIONS(5435), - [anon_sym_INCLUDE] = ACTIONS(5435), - [anon_sym_New] = ACTIONS(5435), - [anon_sym_new] = ACTIONS(5435), - [anon_sym_NEW] = ACTIONS(5435), - [anon_sym_Package] = ACTIONS(5435), - [anon_sym_package] = ACTIONS(5435), - [anon_sym_PACKAGE] = ACTIONS(5435), - [anon_sym_Private] = ACTIONS(5435), - [anon_sym_private] = ACTIONS(5435), - [anon_sym_PRIVATE] = ACTIONS(5435), - [anon_sym_Public] = ACTIONS(5435), - [anon_sym_public] = ACTIONS(5435), - [anon_sym_PUBLIC] = ACTIONS(5435), - [anon_sym_Remote] = ACTIONS(5435), - [anon_sym_remote] = ACTIONS(5435), - [anon_sym_REMOTE] = ACTIONS(5435), - [anon_sym_Static] = ACTIONS(5441), - [anon_sym_static] = ACTIONS(5441), - [anon_sym_STATIC] = ACTIONS(5441), - }, - [STATE(2401)] = { - [sym_object_assignment_pattern] = STATE(4705), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4748), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4705), - [sym_method_definition] = STATE(4748), - [sym_pair] = STATE(4748), - [sym_cf_pair] = STATE(4495), - [sym_pair_pattern] = STATE(4705), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4751), - [aux_sym_object_pattern_repeat1] = STATE(4724), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5443), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5445), - [anon_sym_let] = ACTIONS(5443), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5443), - [anon_sym_query] = ACTIONS(5443), - [anon_sym_QUERY] = ACTIONS(5443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5447), - [anon_sym_set] = ACTIONS(5447), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5443), - [anon_sym_QueryExecute] = ACTIONS(5443), - [anon_sym_queryexecute] = ACTIONS(5443), - [anon_sym_QUERYEXECUTE] = ACTIONS(5443), - [anon_sym_queryExecute] = ACTIONS(5443), - [anon_sym_Abstract] = ACTIONS(5443), - [anon_sym_abstract] = ACTIONS(5443), - [anon_sym_ABSTRACT] = ACTIONS(5443), - [anon_sym_Component] = ACTIONS(5443), - [anon_sym_component] = ACTIONS(5443), - [anon_sym_COMPONENT] = ACTIONS(5443), - [anon_sym_Debugger] = ACTIONS(5443), - [anon_sym_debugger] = ACTIONS(5443), - [anon_sym_DEBUGGER] = ACTIONS(5443), - [anon_sym_Final] = ACTIONS(5443), - [anon_sym_final] = ACTIONS(5443), - [anon_sym_FINAL] = ACTIONS(5443), - [anon_sym_Include] = ACTIONS(5443), - [anon_sym_include] = ACTIONS(5443), - [anon_sym_INCLUDE] = ACTIONS(5443), - [anon_sym_New] = ACTIONS(5443), - [anon_sym_new] = ACTIONS(5443), - [anon_sym_NEW] = ACTIONS(5443), - [anon_sym_Package] = ACTIONS(5443), - [anon_sym_package] = ACTIONS(5443), - [anon_sym_PACKAGE] = ACTIONS(5443), - [anon_sym_Private] = ACTIONS(5443), - [anon_sym_private] = ACTIONS(5443), - [anon_sym_PRIVATE] = ACTIONS(5443), - [anon_sym_Public] = ACTIONS(5443), - [anon_sym_public] = ACTIONS(5443), - [anon_sym_PUBLIC] = ACTIONS(5443), - [anon_sym_Remote] = ACTIONS(5443), - [anon_sym_remote] = ACTIONS(5443), - [anon_sym_REMOTE] = ACTIONS(5443), - [anon_sym_Static] = ACTIONS(5449), - [anon_sym_static] = ACTIONS(5449), - [anon_sym_STATIC] = ACTIONS(5449), - }, - [STATE(2402)] = { - [sym_object_assignment_pattern] = STATE(4550), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4603), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4550), - [sym_method_definition] = STATE(4603), - [sym_pair] = STATE(4603), - [sym_cf_pair] = STATE(4546), - [sym_pair_pattern] = STATE(4550), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_object_repeat1] = STATE(4580), - [aux_sym_object_pattern_repeat1] = STATE(4583), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5451), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5453), - [anon_sym_let] = ACTIONS(5451), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5451), - [anon_sym_query] = ACTIONS(5451), - [anon_sym_QUERY] = ACTIONS(5451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5455), - [anon_sym_set] = ACTIONS(5455), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5451), - [anon_sym_QueryExecute] = ACTIONS(5451), - [anon_sym_queryexecute] = ACTIONS(5451), - [anon_sym_QUERYEXECUTE] = ACTIONS(5451), - [anon_sym_queryExecute] = ACTIONS(5451), - [anon_sym_Abstract] = ACTIONS(5451), - [anon_sym_abstract] = ACTIONS(5451), - [anon_sym_ABSTRACT] = ACTIONS(5451), - [anon_sym_Component] = ACTIONS(5451), - [anon_sym_component] = ACTIONS(5451), - [anon_sym_COMPONENT] = ACTIONS(5451), - [anon_sym_Debugger] = ACTIONS(5451), - [anon_sym_debugger] = ACTIONS(5451), - [anon_sym_DEBUGGER] = ACTIONS(5451), - [anon_sym_Final] = ACTIONS(5451), - [anon_sym_final] = ACTIONS(5451), - [anon_sym_FINAL] = ACTIONS(5451), - [anon_sym_Include] = ACTIONS(5451), - [anon_sym_include] = ACTIONS(5451), - [anon_sym_INCLUDE] = ACTIONS(5451), - [anon_sym_New] = ACTIONS(5451), - [anon_sym_new] = ACTIONS(5451), - [anon_sym_NEW] = ACTIONS(5451), - [anon_sym_Package] = ACTIONS(5451), - [anon_sym_package] = ACTIONS(5451), - [anon_sym_PACKAGE] = ACTIONS(5451), - [anon_sym_Private] = ACTIONS(5451), - [anon_sym_private] = ACTIONS(5451), - [anon_sym_PRIVATE] = ACTIONS(5451), - [anon_sym_Public] = ACTIONS(5451), - [anon_sym_public] = ACTIONS(5451), - [anon_sym_PUBLIC] = ACTIONS(5451), - [anon_sym_Remote] = ACTIONS(5451), - [anon_sym_remote] = ACTIONS(5451), - [anon_sym_REMOTE] = ACTIONS(5451), - [anon_sym_Static] = ACTIONS(5457), - [anon_sym_static] = ACTIONS(5457), - [anon_sym_STATIC] = ACTIONS(5457), - }, - [STATE(2403)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_Catch] = ACTIONS(1081), - [anon_sym_catch] = ACTIONS(1081), - [anon_sym_CATCH] = ACTIONS(1081), - [anon_sym_Else] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_ELSE] = ACTIONS(1081), - [anon_sym_Finally] = ACTIONS(1081), - [anon_sym_finally] = ACTIONS(1081), - [anon_sym_FINALLY] = ACTIONS(1081), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [anon_sym_While] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_WHILE] = ACTIONS(1081), - [sym__automatic_semicolon] = ACTIONS(5459), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - }, - [STATE(2404)] = { - [sym_object_assignment_pattern] = STATE(4848), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_spread_element] = STATE(4844), - [sym_string] = STATE(4529), - [sym_number] = STATE(4529), - [sym_null] = STATE(4529), - [sym_decorator] = STATE(3847), - [sym_rest_pattern] = STATE(4848), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_cf_pair] = STATE(4886), - [sym_pair_pattern] = STATE(4848), - [sym__property_name] = STATE(4529), - [sym__hash_always_eval] = STATE(4529), - [sym_hash_expression] = STATE(4529), - [sym_computed_property_name] = STATE(4529), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5461), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(5463), - [anon_sym_RBRACE] = ACTIONS(5463), - [anon_sym_let] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5461), - [anon_sym_query] = ACTIONS(5461), - [anon_sym_QUERY] = ACTIONS(5461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5466), - [anon_sym_set] = ACTIONS(5466), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5311), - [anon_sym_export] = ACTIONS(5461), - [anon_sym_QueryExecute] = ACTIONS(5461), - [anon_sym_queryexecute] = ACTIONS(5461), - [anon_sym_QUERYEXECUTE] = ACTIONS(5461), - [anon_sym_queryExecute] = ACTIONS(5461), - [anon_sym_Abstract] = ACTIONS(5461), - [anon_sym_abstract] = ACTIONS(5461), - [anon_sym_ABSTRACT] = ACTIONS(5461), - [anon_sym_Component] = ACTIONS(5461), - [anon_sym_component] = ACTIONS(5461), - [anon_sym_COMPONENT] = ACTIONS(5461), - [anon_sym_Debugger] = ACTIONS(5461), - [anon_sym_debugger] = ACTIONS(5461), - [anon_sym_DEBUGGER] = ACTIONS(5461), - [anon_sym_Final] = ACTIONS(5461), - [anon_sym_final] = ACTIONS(5461), - [anon_sym_FINAL] = ACTIONS(5461), - [anon_sym_Include] = ACTIONS(5461), - [anon_sym_include] = ACTIONS(5461), - [anon_sym_INCLUDE] = ACTIONS(5461), - [anon_sym_New] = ACTIONS(5461), - [anon_sym_new] = ACTIONS(5461), - [anon_sym_NEW] = ACTIONS(5461), - [anon_sym_Package] = ACTIONS(5461), - [anon_sym_package] = ACTIONS(5461), - [anon_sym_PACKAGE] = ACTIONS(5461), - [anon_sym_Private] = ACTIONS(5461), - [anon_sym_private] = ACTIONS(5461), - [anon_sym_PRIVATE] = ACTIONS(5461), - [anon_sym_Public] = ACTIONS(5461), - [anon_sym_public] = ACTIONS(5461), - [anon_sym_PUBLIC] = ACTIONS(5461), - [anon_sym_Remote] = ACTIONS(5461), - [anon_sym_remote] = ACTIONS(5461), - [anon_sym_REMOTE] = ACTIONS(5461), - [anon_sym_Static] = ACTIONS(5468), - [anon_sym_static] = ACTIONS(5468), - [anon_sym_STATIC] = ACTIONS(5468), - }, - [STATE(2405)] = { - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [anon_sym_Else] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_ELSE] = ACTIONS(1670), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1670), - [anon_sym_instanceof] = ACTIONS(1670), - [anon_sym_INSTANCEOF] = ACTIONS(1670), - [anon_sym_instanceOf] = ACTIONS(1670), - [anon_sym_Of] = ACTIONS(1670), - [anon_sym_of] = ACTIONS(1670), - [anon_sym_OF] = ACTIONS(1670), - [anon_sym_While] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_WHILE] = ACTIONS(1670), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - }, - [STATE(2406)] = { - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1081), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [anon_sym_Else] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_ELSE] = ACTIONS(1081), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1081), - [anon_sym_instanceof] = ACTIONS(1081), - [anon_sym_INSTANCEOF] = ACTIONS(1081), - [anon_sym_instanceOf] = ACTIONS(1081), - [anon_sym_Of] = ACTIONS(1081), - [anon_sym_of] = ACTIONS(1081), - [anon_sym_OF] = ACTIONS(1081), - [anon_sym_While] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_WHILE] = ACTIONS(1081), - [sym__automatic_semicolon] = ACTIONS(5470), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), + [STATE(2495)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(5540), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [anon_sym_Of] = ACTIONS(1716), + [anon_sym_of] = ACTIONS(1716), + [anon_sym_OF] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2407)] = { - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1684), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), + [STATE(2496)] = { + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2558), + [anon_sym_COLON] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_RBRACK] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2556), + [sym_optional_chain] = ACTIONS(2558), + [sym_static_chain] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_BSLASH] = ACTIONS(2558), + [anon_sym_STAR_STAR] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2558), + [anon_sym_LT_GT] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2558), + [aux_sym_binary_expression_token1] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [aux_sym_binary_expression_token2] = ACTIONS(2556), + [aux_sym_binary_expression_token3] = ACTIONS(2556), + [aux_sym_binary_expression_token4] = ACTIONS(2558), + [aux_sym_binary_expression_token5] = ACTIONS(2558), + [aux_sym_binary_expression_token6] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), [sym_comment] = ACTIONS(129), - [anon_sym_Else] = ACTIONS(1684), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_ELSE] = ACTIONS(1684), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1684), - [anon_sym_instanceof] = ACTIONS(1684), - [anon_sym_INSTANCEOF] = ACTIONS(1684), - [anon_sym_instanceOf] = ACTIONS(1684), - [anon_sym_Of] = ACTIONS(1684), - [anon_sym_of] = ACTIONS(1684), - [anon_sym_OF] = ACTIONS(1684), - [anon_sym_While] = ACTIONS(1684), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_WHILE] = ACTIONS(1684), - [sym__automatic_semicolon] = ACTIONS(5472), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_In] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_IN] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2558), + [anon_sym_instanceof] = ACTIONS(2558), + [anon_sym_INSTANCEOF] = ACTIONS(2558), + [anon_sym_instanceOf] = ACTIONS(2558), + [sym__ternary_qmark] = ACTIONS(2558), + [sym__elvis_operator] = ACTIONS(2558), + [sym_logical_or] = ACTIONS(2558), }, - [STATE(2408)] = { - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1684), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [anon_sym_Else] = ACTIONS(1684), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_ELSE] = ACTIONS(1684), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1684), - [anon_sym_instanceof] = ACTIONS(1684), - [anon_sym_INSTANCEOF] = ACTIONS(1684), - [anon_sym_instanceOf] = ACTIONS(1684), - [anon_sym_Of] = ACTIONS(1684), - [anon_sym_of] = ACTIONS(1684), - [anon_sym_OF] = ACTIONS(1684), - [anon_sym_While] = ACTIONS(1684), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_WHILE] = ACTIONS(1684), - [sym__automatic_semicolon] = ACTIONS(1684), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), + [STATE(2497)] = { + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_RBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2234), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2234), + [anon_sym_instanceof] = ACTIONS(2234), + [anon_sym_INSTANCEOF] = ACTIONS(2234), + [anon_sym_instanceOf] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), }, - [STATE(2409)] = { - [anon_sym_DOT] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_COLON] = ACTIONS(2270), - [anon_sym_EQ] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), - [sym_optional_chain] = ACTIONS(2272), - [sym_static_chain] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2272), - [anon_sym_PIPE_PIPE] = ACTIONS(2272), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2272), - [anon_sym_LT_LT] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2272), - [anon_sym_BSLASH] = ACTIONS(2272), - [anon_sym_STAR_STAR] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), - [aux_sym_binary_expression_token1] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2270), - [aux_sym_binary_expression_token2] = ACTIONS(2270), - [aux_sym_binary_expression_token3] = ACTIONS(2270), - [aux_sym_binary_expression_token4] = ACTIONS(2272), - [aux_sym_binary_expression_token5] = ACTIONS(2272), - [aux_sym_binary_expression_token6] = ACTIONS(2272), - [anon_sym_QMARK_QMARK] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), + [STATE(2498)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_COMMA] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_COLON] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2546), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2544), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_BSLASH] = ACTIONS(2546), + [anon_sym_STAR_STAR] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2544), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2546), + [anon_sym_LT_GT] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2544), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2546), + [aux_sym_binary_expression_token1] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [aux_sym_binary_expression_token2] = ACTIONS(2544), + [aux_sym_binary_expression_token3] = ACTIONS(2544), + [aux_sym_binary_expression_token4] = ACTIONS(2546), + [aux_sym_binary_expression_token5] = ACTIONS(2546), + [aux_sym_binary_expression_token6] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2272), - [anon_sym_In] = ACTIONS(2270), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_IN] = ACTIONS(2270), - [anon_sym_InstanceOf] = ACTIONS(2272), - [anon_sym_instanceof] = ACTIONS(2272), - [anon_sym_INSTANCEOF] = ACTIONS(2272), - [anon_sym_instanceOf] = ACTIONS(2272), - [anon_sym_Of] = ACTIONS(2272), - [anon_sym_of] = ACTIONS(2272), - [anon_sym_OF] = ACTIONS(2272), - [sym__ternary_qmark] = ACTIONS(2272), - [sym__elvis_operator] = ACTIONS(2272), - [sym_logical_or] = ACTIONS(2272), - }, - [STATE(2410)] = { - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_COLON] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_RBRACK] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2296), - [sym_optional_chain] = ACTIONS(2298), - [sym_static_chain] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_BSLASH] = ACTIONS(2298), - [anon_sym_STAR_STAR] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), - [anon_sym_LT_GT] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), - [aux_sym_binary_expression_token1] = ACTIONS(2298), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [aux_sym_binary_expression_token2] = ACTIONS(2296), - [aux_sym_binary_expression_token3] = ACTIONS(2296), - [aux_sym_binary_expression_token4] = ACTIONS(2298), - [aux_sym_binary_expression_token5] = ACTIONS(2298), - [aux_sym_binary_expression_token6] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2298), - [anon_sym_In] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_IN] = ACTIONS(2296), - [anon_sym_InstanceOf] = ACTIONS(2298), - [anon_sym_instanceof] = ACTIONS(2298), - [anon_sym_INSTANCEOF] = ACTIONS(2298), - [anon_sym_instanceOf] = ACTIONS(2298), - [anon_sym_Of] = ACTIONS(2298), - [anon_sym_of] = ACTIONS(2298), - [anon_sym_OF] = ACTIONS(2298), - [sym__ternary_qmark] = ACTIONS(2298), - [sym__elvis_operator] = ACTIONS(2298), - [sym_logical_or] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_In] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_IN] = ACTIONS(2544), + [anon_sym_InstanceOf] = ACTIONS(2546), + [anon_sym_instanceof] = ACTIONS(2546), + [anon_sym_INSTANCEOF] = ACTIONS(2546), + [anon_sym_instanceOf] = ACTIONS(2546), + [sym__ternary_qmark] = ACTIONS(2546), + [sym__elvis_operator] = ACTIONS(2546), + [sym_logical_or] = ACTIONS(2546), }, - [STATE(2411)] = { - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_COLON] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_RBRACK] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2280), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2280), - [anon_sym_instanceof] = ACTIONS(2280), - [anon_sym_INSTANCEOF] = ACTIONS(2280), - [anon_sym_instanceOf] = ACTIONS(2280), - [anon_sym_Of] = ACTIONS(2280), - [anon_sym_of] = ACTIONS(2280), - [anon_sym_OF] = ACTIONS(2280), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), + [STATE(2499)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(2530), + [anon_sym_COLON] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_RBRACK] = ACTIONS(2530), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2412)] = { - [anon_sym_DOT] = ACTIONS(2302), + [STATE(2500)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(2303), [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_COLON] = ACTIONS(2300), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_RBRACK] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2303), [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2302), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2303), [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2302), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2303), [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), + [anon_sym_CARET] = ACTIONS(2303), [anon_sym_PIPE] = ACTIONS(2300), [anon_sym_PLUS] = ACTIONS(2300), [anon_sym_DASH] = ACTIONS(2300), [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_BSLASH] = ACTIONS(2302), - [anon_sym_STAR_STAR] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_BSLASH] = ACTIONS(2303), + [anon_sym_STAR_STAR] = ACTIONS(2303), [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2303), [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), [anon_sym_GT] = ACTIONS(2300), [aux_sym_binary_expression_token2] = ACTIONS(2300), [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2302), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [sym_comment] = ACTIONS(129), [anon_sym_In] = ACTIONS(2300), [anon_sym_in] = ACTIONS(2300), [anon_sym_IN] = ACTIONS(2300), - [anon_sym_InstanceOf] = ACTIONS(2302), - [anon_sym_instanceof] = ACTIONS(2302), - [anon_sym_INSTANCEOF] = ACTIONS(2302), - [anon_sym_instanceOf] = ACTIONS(2302), - [anon_sym_Of] = ACTIONS(2302), - [anon_sym_of] = ACTIONS(2302), - [anon_sym_OF] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), + [anon_sym_InstanceOf] = ACTIONS(2303), + [anon_sym_instanceof] = ACTIONS(2303), + [anon_sym_INSTANCEOF] = ACTIONS(2303), + [anon_sym_instanceOf] = ACTIONS(2303), + [anon_sym_Of] = ACTIONS(1716), + [anon_sym_of] = ACTIONS(1716), + [anon_sym_OF] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), }, - [STATE(2413)] = { - [sym_spread_element] = STATE(4710), - [sym_string] = STATE(4422), - [sym_number] = STATE(4422), - [sym_null] = STATE(4422), - [sym_decorator] = STATE(3847), - [sym_method_definition] = STATE(4710), - [sym_pair] = STATE(4710), - [sym_cf_pair] = STATE(4710), - [sym__property_name] = STATE(4422), - [sym__hash_always_eval] = STATE(4422), - [sym_hash_expression] = STATE(4422), - [sym_computed_property_name] = STATE(4422), - [aux_sym_object_repeat1] = STATE(4721), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5474), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(5476), - [anon_sym_RBRACE] = ACTIONS(5478), - [anon_sym_let] = ACTIONS(5474), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(5474), - [anon_sym_query] = ACTIONS(5474), - [anon_sym_QUERY] = ACTIONS(5474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5482), - [anon_sym_set] = ACTIONS(5482), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5484), - [anon_sym_export] = ACTIONS(5474), - [anon_sym_QueryExecute] = ACTIONS(5474), - [anon_sym_queryexecute] = ACTIONS(5474), - [anon_sym_QUERYEXECUTE] = ACTIONS(5474), - [anon_sym_queryExecute] = ACTIONS(5474), - [anon_sym_Abstract] = ACTIONS(5474), - [anon_sym_abstract] = ACTIONS(5474), - [anon_sym_ABSTRACT] = ACTIONS(5474), - [anon_sym_Component] = ACTIONS(5474), - [anon_sym_component] = ACTIONS(5474), - [anon_sym_COMPONENT] = ACTIONS(5474), - [anon_sym_Debugger] = ACTIONS(5474), - [anon_sym_debugger] = ACTIONS(5474), - [anon_sym_DEBUGGER] = ACTIONS(5474), - [anon_sym_Final] = ACTIONS(5474), - [anon_sym_final] = ACTIONS(5474), - [anon_sym_FINAL] = ACTIONS(5474), - [anon_sym_Include] = ACTIONS(5474), - [anon_sym_include] = ACTIONS(5474), - [anon_sym_INCLUDE] = ACTIONS(5474), - [anon_sym_New] = ACTIONS(5474), - [anon_sym_new] = ACTIONS(5474), - [anon_sym_NEW] = ACTIONS(5474), - [anon_sym_Package] = ACTIONS(5474), - [anon_sym_package] = ACTIONS(5474), - [anon_sym_PACKAGE] = ACTIONS(5474), - [anon_sym_Private] = ACTIONS(5474), - [anon_sym_private] = ACTIONS(5474), - [anon_sym_PRIVATE] = ACTIONS(5474), - [anon_sym_Public] = ACTIONS(5474), - [anon_sym_public] = ACTIONS(5474), - [anon_sym_PUBLIC] = ACTIONS(5474), - [anon_sym_Remote] = ACTIONS(5474), - [anon_sym_remote] = ACTIONS(5474), - [anon_sym_REMOTE] = ACTIONS(5474), - [anon_sym_Static] = ACTIONS(5486), - [anon_sym_static] = ACTIONS(5486), - [anon_sym_STATIC] = ACTIONS(5486), + [STATE(2501)] = { + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_COLON] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_RBRACK] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2456), + [sym_optional_chain] = ACTIONS(2458), + [sym_static_chain] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_BSLASH] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2456), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_LT_GT] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2456), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [aux_sym_binary_expression_token1] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [aux_sym_binary_expression_token2] = ACTIONS(2456), + [aux_sym_binary_expression_token3] = ACTIONS(2456), + [aux_sym_binary_expression_token4] = ACTIONS(2458), + [aux_sym_binary_expression_token5] = ACTIONS(2458), + [aux_sym_binary_expression_token6] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_In] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2456), + [anon_sym_IN] = ACTIONS(2456), + [anon_sym_InstanceOf] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_INSTANCEOF] = ACTIONS(2458), + [anon_sym_instanceOf] = ACTIONS(2458), + [sym__ternary_qmark] = ACTIONS(2458), + [sym__elvis_operator] = ACTIONS(2458), + [sym_logical_or] = ACTIONS(2458), }, - [STATE(2414)] = { - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_COLON] = ACTIONS(2312), - [anon_sym_EQ] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2312), - [sym_optional_chain] = ACTIONS(2314), - [sym_static_chain] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_BSLASH] = ACTIONS(2314), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_LT_GT] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [aux_sym_binary_expression_token1] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [aux_sym_binary_expression_token2] = ACTIONS(2312), - [aux_sym_binary_expression_token3] = ACTIONS(2312), - [aux_sym_binary_expression_token4] = ACTIONS(2314), - [aux_sym_binary_expression_token5] = ACTIONS(2314), - [aux_sym_binary_expression_token6] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2312), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_IN] = ACTIONS(2312), - [anon_sym_InstanceOf] = ACTIONS(2314), - [anon_sym_instanceof] = ACTIONS(2314), - [anon_sym_INSTANCEOF] = ACTIONS(2314), - [anon_sym_instanceOf] = ACTIONS(2314), - [anon_sym_Of] = ACTIONS(2314), - [anon_sym_of] = ACTIONS(2314), - [anon_sym_OF] = ACTIONS(2314), - [sym__automatic_semicolon] = ACTIONS(2314), - [sym__ternary_qmark] = ACTIONS(2314), - [sym__elvis_operator] = ACTIONS(2314), - [sym_logical_or] = ACTIONS(2314), + [STATE(2502)] = { + [anon_sym_DOT] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_RBRACK] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2532), + [sym_optional_chain] = ACTIONS(2534), + [sym_static_chain] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_BSLASH] = ACTIONS(2534), + [anon_sym_STAR_STAR] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2534), + [anon_sym_LT_GT] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2534), + [aux_sym_binary_expression_token1] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [aux_sym_binary_expression_token2] = ACTIONS(2532), + [aux_sym_binary_expression_token3] = ACTIONS(2532), + [aux_sym_binary_expression_token4] = ACTIONS(2534), + [aux_sym_binary_expression_token5] = ACTIONS(2534), + [aux_sym_binary_expression_token6] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2534), + [anon_sym_In] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_IN] = ACTIONS(2532), + [anon_sym_InstanceOf] = ACTIONS(2534), + [anon_sym_instanceof] = ACTIONS(2534), + [anon_sym_INSTANCEOF] = ACTIONS(2534), + [anon_sym_instanceOf] = ACTIONS(2534), + [sym__ternary_qmark] = ACTIONS(2534), + [sym__elvis_operator] = ACTIONS(2534), + [sym_logical_or] = ACTIONS(2534), }, - [STATE(2415)] = { - [sym_spread_element] = STATE(4844), - [sym_string] = STATE(4422), - [sym_number] = STATE(4422), - [sym_null] = STATE(4422), - [sym_decorator] = STATE(3847), - [sym_method_definition] = STATE(4844), - [sym_pair] = STATE(4844), - [sym_cf_pair] = STATE(4844), - [sym__property_name] = STATE(4422), - [sym__hash_always_eval] = STATE(4422), - [sym_hash_expression] = STATE(4422), - [sym_computed_property_name] = STATE(4422), - [aux_sym_method_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(5488), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(5490), - [anon_sym_RBRACE] = ACTIONS(5490), - [anon_sym_let] = ACTIONS(5488), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(5488), - [anon_sym_query] = ACTIONS(5488), - [anon_sym_QUERY] = ACTIONS(5488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(133), - [anon_sym_get] = ACTIONS(5492), - [anon_sym_set] = ACTIONS(5492), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5484), - [anon_sym_export] = ACTIONS(5488), - [anon_sym_QueryExecute] = ACTIONS(5488), - [anon_sym_queryexecute] = ACTIONS(5488), - [anon_sym_QUERYEXECUTE] = ACTIONS(5488), - [anon_sym_queryExecute] = ACTIONS(5488), - [anon_sym_Abstract] = ACTIONS(5488), - [anon_sym_abstract] = ACTIONS(5488), - [anon_sym_ABSTRACT] = ACTIONS(5488), - [anon_sym_Component] = ACTIONS(5488), - [anon_sym_component] = ACTIONS(5488), - [anon_sym_COMPONENT] = ACTIONS(5488), - [anon_sym_Debugger] = ACTIONS(5488), - [anon_sym_debugger] = ACTIONS(5488), - [anon_sym_DEBUGGER] = ACTIONS(5488), - [anon_sym_Final] = ACTIONS(5488), - [anon_sym_final] = ACTIONS(5488), - [anon_sym_FINAL] = ACTIONS(5488), - [anon_sym_Include] = ACTIONS(5488), - [anon_sym_include] = ACTIONS(5488), - [anon_sym_INCLUDE] = ACTIONS(5488), - [anon_sym_New] = ACTIONS(5488), - [anon_sym_new] = ACTIONS(5488), - [anon_sym_NEW] = ACTIONS(5488), - [anon_sym_Package] = ACTIONS(5488), - [anon_sym_package] = ACTIONS(5488), - [anon_sym_PACKAGE] = ACTIONS(5488), - [anon_sym_Private] = ACTIONS(5488), - [anon_sym_private] = ACTIONS(5488), - [anon_sym_PRIVATE] = ACTIONS(5488), - [anon_sym_Public] = ACTIONS(5488), - [anon_sym_public] = ACTIONS(5488), - [anon_sym_PUBLIC] = ACTIONS(5488), - [anon_sym_Remote] = ACTIONS(5488), - [anon_sym_remote] = ACTIONS(5488), - [anon_sym_REMOTE] = ACTIONS(5488), - [anon_sym_Static] = ACTIONS(5494), - [anon_sym_static] = ACTIONS(5494), - [anon_sym_STATIC] = ACTIONS(5494), + [STATE(2503)] = { + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_COLON] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_RBRACK] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1596), + [anon_sym_instanceof] = ACTIONS(1596), + [anon_sym_INSTANCEOF] = ACTIONS(1596), + [anon_sym_instanceOf] = ACTIONS(1596), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), }, - [STATE(2416)] = { - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_COLON] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2296), - [sym_optional_chain] = ACTIONS(2298), - [sym_static_chain] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_BSLASH] = ACTIONS(2298), - [anon_sym_STAR_STAR] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), - [anon_sym_LT_GT] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), - [aux_sym_binary_expression_token1] = ACTIONS(2298), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [aux_sym_binary_expression_token2] = ACTIONS(2296), - [aux_sym_binary_expression_token3] = ACTIONS(2296), - [aux_sym_binary_expression_token4] = ACTIONS(2298), - [aux_sym_binary_expression_token5] = ACTIONS(2298), - [aux_sym_binary_expression_token6] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_IN] = ACTIONS(2296), - [anon_sym_InstanceOf] = ACTIONS(2298), - [anon_sym_instanceof] = ACTIONS(2298), - [anon_sym_INSTANCEOF] = ACTIONS(2298), - [anon_sym_instanceOf] = ACTIONS(2298), - [anon_sym_Of] = ACTIONS(2298), - [anon_sym_of] = ACTIONS(2298), - [anon_sym_OF] = ACTIONS(2298), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym__ternary_qmark] = ACTIONS(2298), - [sym__elvis_operator] = ACTIONS(2298), - [sym_logical_or] = ACTIONS(2298), + [STATE(2504)] = { + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COLON] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_RBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2449), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2449), + [anon_sym_instanceof] = ACTIONS(2449), + [anon_sym_INSTANCEOF] = ACTIONS(2449), + [anon_sym_instanceOf] = ACTIONS(2449), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), }, - [STATE(2417)] = { - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [sym_comment] = ACTIONS(129), - [anon_sym_Else] = ACTIONS(1646), - [anon_sym_else] = ACTIONS(1646), - [anon_sym_ELSE] = ACTIONS(1646), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1650), - [anon_sym_instanceof] = ACTIONS(1650), - [anon_sym_INSTANCEOF] = ACTIONS(1650), - [anon_sym_instanceOf] = ACTIONS(1650), - [anon_sym_While] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_WHILE] = ACTIONS(1646), - [sym__automatic_semicolon] = ACTIONS(5496), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), + [STATE(2505)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [anon_sym_Of] = ACTIONS(1087), + [anon_sym_of] = ACTIONS(1087), + [anon_sym_OF] = ACTIONS(1087), + [sym__automatic_semicolon] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2418)] = { - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_EQ_GT] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2221), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2221), - [anon_sym_instanceof] = ACTIONS(2221), - [anon_sym_INSTANCEOF] = ACTIONS(2221), - [anon_sym_instanceOf] = ACTIONS(2221), - [anon_sym_Of] = ACTIONS(2221), - [anon_sym_of] = ACTIONS(2221), - [anon_sym_OF] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2221), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), + [STATE(2506)] = { + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2449), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2449), + [anon_sym_instanceof] = ACTIONS(2449), + [anon_sym_INSTANCEOF] = ACTIONS(2449), + [anon_sym_instanceOf] = ACTIONS(2449), + [anon_sym_Of] = ACTIONS(2449), + [anon_sym_of] = ACTIONS(2449), + [anon_sym_OF] = ACTIONS(2449), + [sym__automatic_semicolon] = ACTIONS(2449), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), }, - [STATE(2419)] = { - [anon_sym_DOT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_COLON] = ACTIONS(2332), - [anon_sym_EQ] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), - [sym_optional_chain] = ACTIONS(2334), - [sym_static_chain] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_BSLASH] = ACTIONS(2334), - [anon_sym_STAR_STAR] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), - [anon_sym_LT_GT] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), - [aux_sym_binary_expression_token1] = ACTIONS(2334), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [aux_sym_binary_expression_token2] = ACTIONS(2332), - [aux_sym_binary_expression_token3] = ACTIONS(2332), - [aux_sym_binary_expression_token4] = ACTIONS(2334), - [aux_sym_binary_expression_token5] = ACTIONS(2334), - [aux_sym_binary_expression_token6] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_IN] = ACTIONS(2332), - [anon_sym_InstanceOf] = ACTIONS(2334), - [anon_sym_instanceof] = ACTIONS(2334), - [anon_sym_INSTANCEOF] = ACTIONS(2334), - [anon_sym_instanceOf] = ACTIONS(2334), - [anon_sym_Of] = ACTIONS(2334), - [anon_sym_of] = ACTIONS(2334), - [anon_sym_OF] = ACTIONS(2334), - [sym__automatic_semicolon] = ACTIONS(2334), - [sym__ternary_qmark] = ACTIONS(2334), - [sym__elvis_operator] = ACTIONS(2334), - [sym_logical_or] = ACTIONS(2334), + [STATE(2507)] = { + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_COLON] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1588), + [anon_sym_instanceof] = ACTIONS(1588), + [anon_sym_INSTANCEOF] = ACTIONS(1588), + [anon_sym_instanceOf] = ACTIONS(1588), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), }, - [STATE(2420)] = { - [anon_sym_DOT] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_COLON] = ACTIONS(2300), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_BSLASH] = ACTIONS(2302), - [anon_sym_STAR_STAR] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2300), - [aux_sym_binary_expression_token2] = ACTIONS(2300), - [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), + [STATE(2508)] = { + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_COLON] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_RBRACK] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2460), + [sym_optional_chain] = ACTIONS(2462), + [sym_static_chain] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_BSLASH] = ACTIONS(2462), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_LT_GT] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [aux_sym_binary_expression_token1] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [aux_sym_binary_expression_token2] = ACTIONS(2460), + [aux_sym_binary_expression_token3] = ACTIONS(2460), + [aux_sym_binary_expression_token4] = ACTIONS(2462), + [aux_sym_binary_expression_token5] = ACTIONS(2462), + [aux_sym_binary_expression_token6] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_IN] = ACTIONS(2300), - [anon_sym_InstanceOf] = ACTIONS(2302), - [anon_sym_instanceof] = ACTIONS(2302), - [anon_sym_INSTANCEOF] = ACTIONS(2302), - [anon_sym_instanceOf] = ACTIONS(2302), - [anon_sym_Of] = ACTIONS(2302), - [anon_sym_of] = ACTIONS(2302), - [anon_sym_OF] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), - }, - [STATE(2421)] = { - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_COLON] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2280), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2280), - [anon_sym_instanceof] = ACTIONS(2280), - [anon_sym_INSTANCEOF] = ACTIONS(2280), - [anon_sym_instanceOf] = ACTIONS(2280), - [anon_sym_Of] = ACTIONS(2280), - [anon_sym_of] = ACTIONS(2280), - [anon_sym_OF] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2280), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_In] = ACTIONS(2460), + [anon_sym_in] = ACTIONS(2460), + [anon_sym_IN] = ACTIONS(2460), + [anon_sym_InstanceOf] = ACTIONS(2462), + [anon_sym_instanceof] = ACTIONS(2462), + [anon_sym_INSTANCEOF] = ACTIONS(2462), + [anon_sym_instanceOf] = ACTIONS(2462), + [sym__ternary_qmark] = ACTIONS(2462), + [sym__elvis_operator] = ACTIONS(2462), + [sym_logical_or] = ACTIONS(2462), }, - [STATE(2422)] = { - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_RBRACK] = ACTIONS(2221), - [anon_sym_EQ_GT] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2221), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2221), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2221), - [anon_sym_instanceof] = ACTIONS(2221), - [anon_sym_INSTANCEOF] = ACTIONS(2221), - [anon_sym_instanceOf] = ACTIONS(2221), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), + [STATE(2509)] = { + [anon_sym_DOT] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_RPAREN] = ACTIONS(2550), + [anon_sym_COLON] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_RBRACK] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2548), + [sym_optional_chain] = ACTIONS(2550), + [sym_static_chain] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(2550), + [anon_sym_STAR_STAR] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2550), + [anon_sym_LT_GT] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2550), + [aux_sym_binary_expression_token1] = ACTIONS(2550), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [aux_sym_binary_expression_token2] = ACTIONS(2548), + [aux_sym_binary_expression_token3] = ACTIONS(2548), + [aux_sym_binary_expression_token4] = ACTIONS(2550), + [aux_sym_binary_expression_token5] = ACTIONS(2550), + [aux_sym_binary_expression_token6] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_In] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_IN] = ACTIONS(2548), + [anon_sym_InstanceOf] = ACTIONS(2550), + [anon_sym_instanceof] = ACTIONS(2550), + [anon_sym_INSTANCEOF] = ACTIONS(2550), + [anon_sym_instanceOf] = ACTIONS(2550), + [sym__ternary_qmark] = ACTIONS(2550), + [sym__elvis_operator] = ACTIONS(2550), + [sym_logical_or] = ACTIONS(2550), }, - [STATE(2423)] = { - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_INSTANCEOF] = ACTIONS(2240), - [anon_sym_instanceOf] = ACTIONS(2240), - [anon_sym_Of] = ACTIONS(2240), - [anon_sym_of] = ACTIONS(2240), - [anon_sym_OF] = ACTIONS(2240), - [sym__automatic_semicolon] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), + [STATE(2510)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_RBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2424)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2233), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2233), - [anon_sym_instanceof] = ACTIONS(2233), - [anon_sym_INSTANCEOF] = ACTIONS(2233), - [anon_sym_instanceOf] = ACTIONS(2233), - [anon_sym_Of] = ACTIONS(2233), - [anon_sym_of] = ACTIONS(2233), - [anon_sym_OF] = ACTIONS(2233), - [sym__automatic_semicolon] = ACTIONS(2233), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), + [STATE(2511)] = { + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_RBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2443), + [anon_sym_instanceof] = ACTIONS(2443), + [anon_sym_INSTANCEOF] = ACTIONS(2443), + [anon_sym_instanceOf] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), }, - [STATE(2425)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_Else] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_ELSE] = ACTIONS(1081), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [anon_sym_While] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_WHILE] = ACTIONS(1081), - [sym__automatic_semicolon] = ACTIONS(5500), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), + [STATE(2512)] = { + [anon_sym_DOT] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_RPAREN] = ACTIONS(2514), + [anon_sym_COLON] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_RBRACK] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2512), + [sym_optional_chain] = ACTIONS(2514), + [sym_static_chain] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_BSLASH] = ACTIONS(2514), + [anon_sym_STAR_STAR] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2512), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2514), + [anon_sym_LT_GT] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2512), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2514), + [aux_sym_binary_expression_token1] = ACTIONS(2514), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [aux_sym_binary_expression_token2] = ACTIONS(2512), + [aux_sym_binary_expression_token3] = ACTIONS(2512), + [aux_sym_binary_expression_token4] = ACTIONS(2514), + [aux_sym_binary_expression_token5] = ACTIONS(2514), + [aux_sym_binary_expression_token6] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2514), + [anon_sym_In] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_IN] = ACTIONS(2512), + [anon_sym_InstanceOf] = ACTIONS(2514), + [anon_sym_instanceof] = ACTIONS(2514), + [anon_sym_INSTANCEOF] = ACTIONS(2514), + [anon_sym_instanceOf] = ACTIONS(2514), + [sym__ternary_qmark] = ACTIONS(2514), + [sym__elvis_operator] = ACTIONS(2514), + [sym_logical_or] = ACTIONS(2514), }, - [STATE(2426)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1720), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2513)] = { + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_RBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2234), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2234), + [anon_sym_instanceof] = ACTIONS(2234), + [anon_sym_INSTANCEOF] = ACTIONS(2234), + [anon_sym_instanceOf] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), }, - [STATE(2427)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [anon_sym_Of] = ACTIONS(1720), - [anon_sym_of] = ACTIONS(1720), - [anon_sym_OF] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2514)] = { + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2524), + [sym_optional_chain] = ACTIONS(2526), + [sym_static_chain] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_BSLASH] = ACTIONS(2526), + [anon_sym_STAR_STAR] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2526), + [anon_sym_LT_GT] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2526), + [aux_sym_binary_expression_token1] = ACTIONS(2526), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [aux_sym_binary_expression_token2] = ACTIONS(2524), + [aux_sym_binary_expression_token3] = ACTIONS(2524), + [aux_sym_binary_expression_token4] = ACTIONS(2526), + [aux_sym_binary_expression_token5] = ACTIONS(2526), + [aux_sym_binary_expression_token6] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_IN] = ACTIONS(2524), + [anon_sym_InstanceOf] = ACTIONS(2526), + [anon_sym_instanceof] = ACTIONS(2526), + [anon_sym_INSTANCEOF] = ACTIONS(2526), + [anon_sym_instanceOf] = ACTIONS(2526), + [anon_sym_Of] = ACTIONS(2526), + [anon_sym_of] = ACTIONS(2526), + [anon_sym_OF] = ACTIONS(2526), + [sym__automatic_semicolon] = ACTIONS(2526), + [sym__ternary_qmark] = ACTIONS(2526), + [sym__elvis_operator] = ACTIONS(2526), + [sym_logical_or] = ACTIONS(2526), }, - [STATE(2428)] = { - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_RPAREN] = ACTIONS(1684), - [anon_sym_COLON] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_RBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1684), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), + [STATE(2515)] = { + [anon_sym_DOT] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_COMMA] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_COLON] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_RBRACK] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2252), + [sym_optional_chain] = ACTIONS(2254), + [sym_static_chain] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_SLASH] = ACTIONS(2252), + [anon_sym_PERCENT] = ACTIONS(2254), + [anon_sym_BSLASH] = ACTIONS(2254), + [anon_sym_STAR_STAR] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_LT_EQ] = ACTIONS(2254), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), + [anon_sym_LT_GT] = ACTIONS(2254), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), + [aux_sym_binary_expression_token1] = ACTIONS(2254), + [anon_sym_GT_EQ] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2252), + [aux_sym_binary_expression_token2] = ACTIONS(2252), + [aux_sym_binary_expression_token3] = ACTIONS(2252), + [aux_sym_binary_expression_token4] = ACTIONS(2254), + [aux_sym_binary_expression_token5] = ACTIONS(2254), + [aux_sym_binary_expression_token6] = ACTIONS(2254), + [anon_sym_QMARK_QMARK] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1684), - [anon_sym_instanceof] = ACTIONS(1684), - [anon_sym_INSTANCEOF] = ACTIONS(1684), - [anon_sym_instanceOf] = ACTIONS(1684), - [sym__automatic_semicolon] = ACTIONS(5504), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(2254), + [anon_sym_In] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_IN] = ACTIONS(2252), + [anon_sym_InstanceOf] = ACTIONS(2254), + [anon_sym_instanceof] = ACTIONS(2254), + [anon_sym_INSTANCEOF] = ACTIONS(2254), + [anon_sym_instanceOf] = ACTIONS(2254), + [sym__ternary_qmark] = ACTIONS(2254), + [sym__elvis_operator] = ACTIONS(2254), + [sym_logical_or] = ACTIONS(2254), }, - [STATE(2429)] = { - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_COLON] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_RBRACK] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1081), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1081), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1081), - [anon_sym_instanceof] = ACTIONS(1081), - [anon_sym_INSTANCEOF] = ACTIONS(1081), - [anon_sym_instanceOf] = ACTIONS(1081), - [sym__automatic_semicolon] = ACTIONS(5506), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), + [STATE(2516)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_DASH_GT] = ACTIONS(2215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym__parameter_separator] = ACTIONS(2213), }, - [STATE(2430)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_RBRACK] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2233), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2233), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2233), - [anon_sym_instanceof] = ACTIONS(2233), - [anon_sym_INSTANCEOF] = ACTIONS(2233), - [anon_sym_instanceOf] = ACTIONS(2233), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), + [STATE(2517)] = { + [anon_sym_DOT] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_COMMA] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2492), + [sym_optional_chain] = ACTIONS(2494), + [sym_static_chain] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_BSLASH] = ACTIONS(2494), + [anon_sym_STAR_STAR] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2494), + [anon_sym_LT_GT] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2494), + [aux_sym_binary_expression_token1] = ACTIONS(2494), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [aux_sym_binary_expression_token2] = ACTIONS(2492), + [aux_sym_binary_expression_token3] = ACTIONS(2492), + [aux_sym_binary_expression_token4] = ACTIONS(2494), + [aux_sym_binary_expression_token5] = ACTIONS(2494), + [aux_sym_binary_expression_token6] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2492), + [anon_sym_in] = ACTIONS(2492), + [anon_sym_IN] = ACTIONS(2492), + [anon_sym_InstanceOf] = ACTIONS(2494), + [anon_sym_instanceof] = ACTIONS(2494), + [anon_sym_INSTANCEOF] = ACTIONS(2494), + [anon_sym_instanceOf] = ACTIONS(2494), + [anon_sym_Of] = ACTIONS(2494), + [anon_sym_of] = ACTIONS(2494), + [anon_sym_OF] = ACTIONS(2494), + [sym__automatic_semicolon] = ACTIONS(2494), + [sym__ternary_qmark] = ACTIONS(2494), + [sym__elvis_operator] = ACTIONS(2494), + [sym_logical_or] = ACTIONS(2494), }, - [STATE(2431)] = { - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_RPAREN] = ACTIONS(2290), - [anon_sym_COLON] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_RBRACK] = ACTIONS(2290), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2288), - [sym_optional_chain] = ACTIONS(2290), - [sym_static_chain] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_BSLASH] = ACTIONS(2290), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_LT_GT] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [aux_sym_binary_expression_token1] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [aux_sym_binary_expression_token2] = ACTIONS(2288), - [aux_sym_binary_expression_token3] = ACTIONS(2288), - [aux_sym_binary_expression_token4] = ACTIONS(2290), - [aux_sym_binary_expression_token5] = ACTIONS(2290), - [aux_sym_binary_expression_token6] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [sym_comment] = ACTIONS(129), - [sym_regex_flags] = ACTIONS(5508), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_In] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_IN] = ACTIONS(2288), - [anon_sym_InstanceOf] = ACTIONS(2290), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_INSTANCEOF] = ACTIONS(2290), - [anon_sym_instanceOf] = ACTIONS(2290), - [sym__ternary_qmark] = ACTIONS(2290), - [sym__elvis_operator] = ACTIONS(2290), - [sym_logical_or] = ACTIONS(2290), + [STATE(2518)] = { + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_COLON] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_RBRACK] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2464), + [sym_optional_chain] = ACTIONS(2466), + [sym_static_chain] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_BSLASH] = ACTIONS(2466), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_LT_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [aux_sym_binary_expression_token1] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [aux_sym_binary_expression_token2] = ACTIONS(2464), + [aux_sym_binary_expression_token3] = ACTIONS(2464), + [aux_sym_binary_expression_token4] = ACTIONS(2466), + [aux_sym_binary_expression_token5] = ACTIONS(2466), + [aux_sym_binary_expression_token6] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_In] = ACTIONS(2464), + [anon_sym_in] = ACTIONS(2464), + [anon_sym_IN] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(2466), + [anon_sym_instanceof] = ACTIONS(2466), + [anon_sym_INSTANCEOF] = ACTIONS(2466), + [anon_sym_instanceOf] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(2466), + [sym__elvis_operator] = ACTIONS(2466), + [sym_logical_or] = ACTIONS(2466), }, - [STATE(2432)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_COLON] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_RBRACK] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2267), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2267), - [anon_sym_instanceof] = ACTIONS(2267), - [anon_sym_INSTANCEOF] = ACTIONS(2267), - [anon_sym_instanceOf] = ACTIONS(2267), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), + [STATE(2519)] = { + [anon_sym_DOT] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_RPAREN] = ACTIONS(2226), + [anon_sym_COLON] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_RBRACK] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2224), + [sym_optional_chain] = ACTIONS(2226), + [sym_static_chain] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2226), + [anon_sym_PIPE_PIPE] = ACTIONS(2226), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2226), + [anon_sym_BSLASH] = ACTIONS(2226), + [anon_sym_STAR_STAR] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2226), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2226), + [anon_sym_LT_GT] = ACTIONS(2226), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2226), + [aux_sym_binary_expression_token1] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2224), + [aux_sym_binary_expression_token2] = ACTIONS(2224), + [aux_sym_binary_expression_token3] = ACTIONS(2224), + [aux_sym_binary_expression_token4] = ACTIONS(2226), + [aux_sym_binary_expression_token5] = ACTIONS(2226), + [aux_sym_binary_expression_token6] = ACTIONS(2226), + [anon_sym_QMARK_QMARK] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2226), + [anon_sym_In] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_IN] = ACTIONS(2224), + [anon_sym_InstanceOf] = ACTIONS(2226), + [anon_sym_instanceof] = ACTIONS(2226), + [anon_sym_INSTANCEOF] = ACTIONS(2226), + [anon_sym_instanceOf] = ACTIONS(2226), + [sym__ternary_qmark] = ACTIONS(2226), + [sym__elvis_operator] = ACTIONS(2226), + [sym_logical_or] = ACTIONS(2226), }, - [STATE(2433)] = { + [STATE(2520)] = { + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [anon_sym_COLON] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_RBRACK] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2560), + [sym_optional_chain] = ACTIONS(2562), + [sym_static_chain] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_BSLASH] = ACTIONS(2562), + [anon_sym_STAR_STAR] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2562), + [anon_sym_LT_GT] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2562), + [aux_sym_binary_expression_token1] = ACTIONS(2562), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [aux_sym_binary_expression_token2] = ACTIONS(2560), + [aux_sym_binary_expression_token3] = ACTIONS(2560), + [aux_sym_binary_expression_token4] = ACTIONS(2562), + [aux_sym_binary_expression_token5] = ACTIONS(2562), + [aux_sym_binary_expression_token6] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2562), + [anon_sym_In] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_IN] = ACTIONS(2560), + [anon_sym_InstanceOf] = ACTIONS(2562), + [anon_sym_instanceof] = ACTIONS(2562), + [anon_sym_INSTANCEOF] = ACTIONS(2562), + [anon_sym_instanceOf] = ACTIONS(2562), + [sym__ternary_qmark] = ACTIONS(2562), + [sym__elvis_operator] = ACTIONS(2562), + [sym_logical_or] = ACTIONS(2562), + }, + [STATE(2521)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(5186), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -364593,7 +373014,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -364601,551 +373021,1000 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2434)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_COLON] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2254), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), + [STATE(2522)] = { + [anon_sym_DOT] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_COMMA] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2516), + [sym_optional_chain] = ACTIONS(2518), + [sym_static_chain] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_BSLASH] = ACTIONS(2518), + [anon_sym_STAR_STAR] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2518), + [anon_sym_LT_GT] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2518), + [aux_sym_binary_expression_token1] = ACTIONS(2518), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [aux_sym_binary_expression_token2] = ACTIONS(2516), + [aux_sym_binary_expression_token3] = ACTIONS(2516), + [aux_sym_binary_expression_token4] = ACTIONS(2518), + [aux_sym_binary_expression_token5] = ACTIONS(2518), + [aux_sym_binary_expression_token6] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_IN] = ACTIONS(2516), + [anon_sym_InstanceOf] = ACTIONS(2518), + [anon_sym_instanceof] = ACTIONS(2518), + [anon_sym_INSTANCEOF] = ACTIONS(2518), + [anon_sym_instanceOf] = ACTIONS(2518), + [anon_sym_Of] = ACTIONS(2518), + [anon_sym_of] = ACTIONS(2518), + [anon_sym_OF] = ACTIONS(2518), + [sym__automatic_semicolon] = ACTIONS(2518), + [sym__ternary_qmark] = ACTIONS(2518), + [sym__elvis_operator] = ACTIONS(2518), + [sym_logical_or] = ACTIONS(2518), + }, + [STATE(2523)] = { + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_COLON] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_RBRACK] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2570), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2570), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2570), + [anon_sym_instanceof] = ACTIONS(2570), + [anon_sym_INSTANCEOF] = ACTIONS(2570), + [anon_sym_instanceOf] = ACTIONS(2570), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), + }, + [STATE(2524)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_COMMA] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2520), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_BSLASH] = ACTIONS(2522), + [anon_sym_STAR_STAR] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2520), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2522), + [anon_sym_LT_GT] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2520), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2522), + [aux_sym_binary_expression_token1] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [aux_sym_binary_expression_token2] = ACTIONS(2520), + [aux_sym_binary_expression_token3] = ACTIONS(2520), + [aux_sym_binary_expression_token4] = ACTIONS(2522), + [aux_sym_binary_expression_token5] = ACTIONS(2522), + [aux_sym_binary_expression_token6] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_IN] = ACTIONS(2520), + [anon_sym_InstanceOf] = ACTIONS(2522), + [anon_sym_instanceof] = ACTIONS(2522), + [anon_sym_INSTANCEOF] = ACTIONS(2522), + [anon_sym_instanceOf] = ACTIONS(2522), + [anon_sym_Of] = ACTIONS(2522), + [anon_sym_of] = ACTIONS(2522), + [anon_sym_OF] = ACTIONS(2522), + [sym__automatic_semicolon] = ACTIONS(2522), + [sym__ternary_qmark] = ACTIONS(2522), + [sym__elvis_operator] = ACTIONS(2522), + [sym_logical_or] = ACTIONS(2522), + }, + [STATE(2525)] = { + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2338), + [sym_optional_chain] = ACTIONS(2342), + [sym_static_chain] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2338), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_BSLASH] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_LT_GT] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [aux_sym_binary_expression_token1] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2338), + [aux_sym_binary_expression_token2] = ACTIONS(2338), + [aux_sym_binary_expression_token3] = ACTIONS(2338), + [aux_sym_binary_expression_token4] = ACTIONS(2342), + [aux_sym_binary_expression_token5] = ACTIONS(2342), + [aux_sym_binary_expression_token6] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_IN] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_INSTANCEOF] = ACTIONS(2342), + [anon_sym_instanceOf] = ACTIONS(2342), + [anon_sym_Of] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2342), + [anon_sym_OF] = ACTIONS(2342), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(2342), + [sym__elvis_operator] = ACTIONS(2342), + [sym_logical_or] = ACTIONS(2342), + }, + [STATE(2526)] = { + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), + [sym_optional_chain] = ACTIONS(2334), + [sym_static_chain] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2332), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_BSLASH] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [aux_sym_binary_expression_token1] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2332), + [aux_sym_binary_expression_token2] = ACTIONS(2332), + [aux_sym_binary_expression_token3] = ACTIONS(2332), + [aux_sym_binary_expression_token4] = ACTIONS(2334), + [aux_sym_binary_expression_token5] = ACTIONS(2334), + [aux_sym_binary_expression_token6] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [sym_comment] = ACTIONS(129), + [sym_regex_flags] = ACTIONS(5546), + [anon_sym_In] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_IN] = ACTIONS(2332), + [anon_sym_InstanceOf] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_INSTANCEOF] = ACTIONS(2334), + [anon_sym_instanceOf] = ACTIONS(2334), + [anon_sym_Of] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_OF] = ACTIONS(2334), + [sym__automatic_semicolon] = ACTIONS(2334), + [sym__ternary_qmark] = ACTIONS(2334), + [sym__elvis_operator] = ACTIONS(2334), + [sym_logical_or] = ACTIONS(2334), + }, + [STATE(2527)] = { + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_RPAREN] = ACTIONS(2320), + [anon_sym_COLON] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym_RBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2320), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2320), + [anon_sym_instanceof] = ACTIONS(2320), + [anon_sym_INSTANCEOF] = ACTIONS(2320), + [anon_sym_instanceOf] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + }, + [STATE(2528)] = { + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_RPAREN] = ACTIONS(2574), + [anon_sym_COLON] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_RBRACK] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2572), + [sym_optional_chain] = ACTIONS(2574), + [sym_static_chain] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_BSLASH] = ACTIONS(2574), + [anon_sym_STAR_STAR] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2574), + [anon_sym_LT_GT] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2574), + [aux_sym_binary_expression_token1] = ACTIONS(2574), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [aux_sym_binary_expression_token2] = ACTIONS(2572), + [aux_sym_binary_expression_token3] = ACTIONS(2572), + [aux_sym_binary_expression_token4] = ACTIONS(2574), + [aux_sym_binary_expression_token5] = ACTIONS(2574), + [aux_sym_binary_expression_token6] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2254), - [anon_sym_instanceof] = ACTIONS(2254), - [anon_sym_INSTANCEOF] = ACTIONS(2254), - [anon_sym_instanceOf] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_In] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_IN] = ACTIONS(2572), + [anon_sym_InstanceOf] = ACTIONS(2574), + [anon_sym_instanceof] = ACTIONS(2574), + [anon_sym_INSTANCEOF] = ACTIONS(2574), + [anon_sym_instanceOf] = ACTIONS(2574), + [sym__ternary_qmark] = ACTIONS(2574), + [sym__elvis_operator] = ACTIONS(2574), + [sym_logical_or] = ACTIONS(2574), }, - [STATE(2435)] = { - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2015), - [sym_optional_chain] = ACTIONS(2023), - [sym_static_chain] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_GT_GT_GT] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_BSLASH] = ACTIONS(2023), - [anon_sym_STAR_STAR] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2023), - [anon_sym_LT_GT] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2023), - [aux_sym_binary_expression_token1] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2015), - [aux_sym_binary_expression_token2] = ACTIONS(2015), - [aux_sym_binary_expression_token3] = ACTIONS(2015), - [aux_sym_binary_expression_token4] = ACTIONS(2023), - [aux_sym_binary_expression_token5] = ACTIONS(2023), - [aux_sym_binary_expression_token6] = ACTIONS(2023), - [anon_sym_QMARK_QMARK] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_IN] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2023), - [anon_sym_instanceof] = ACTIONS(2023), - [anon_sym_INSTANCEOF] = ACTIONS(2023), - [anon_sym_instanceOf] = ACTIONS(2023), - [anon_sym_Of] = ACTIONS(2023), - [anon_sym_of] = ACTIONS(2023), - [anon_sym_OF] = ACTIONS(2023), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2023), - [sym__elvis_operator] = ACTIONS(2023), - [sym_logical_or] = ACTIONS(2023), + [STATE(2529)] = { + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2464), + [sym_optional_chain] = ACTIONS(2466), + [sym_static_chain] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_BSLASH] = ACTIONS(2466), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_LT_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [aux_sym_binary_expression_token1] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [aux_sym_binary_expression_token2] = ACTIONS(2464), + [aux_sym_binary_expression_token3] = ACTIONS(2464), + [aux_sym_binary_expression_token4] = ACTIONS(2466), + [aux_sym_binary_expression_token5] = ACTIONS(2466), + [aux_sym_binary_expression_token6] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2464), + [anon_sym_in] = ACTIONS(2464), + [anon_sym_IN] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(2466), + [anon_sym_instanceof] = ACTIONS(2466), + [anon_sym_INSTANCEOF] = ACTIONS(2466), + [anon_sym_instanceOf] = ACTIONS(2466), + [anon_sym_Of] = ACTIONS(2466), + [anon_sym_of] = ACTIONS(2466), + [anon_sym_OF] = ACTIONS(2466), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(2466), + [sym__elvis_operator] = ACTIONS(2466), + [sym_logical_or] = ACTIONS(2466), }, - [STATE(2436)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2267), - [anon_sym_instanceof] = ACTIONS(2267), - [anon_sym_INSTANCEOF] = ACTIONS(2267), - [anon_sym_instanceOf] = ACTIONS(2267), - [anon_sym_Of] = ACTIONS(2267), - [anon_sym_of] = ACTIONS(2267), - [anon_sym_OF] = ACTIONS(2267), - [sym__automatic_semicolon] = ACTIONS(2267), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), + [STATE(2530)] = { + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2560), + [sym_optional_chain] = ACTIONS(2562), + [sym_static_chain] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_BSLASH] = ACTIONS(2562), + [anon_sym_STAR_STAR] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2562), + [anon_sym_LT_GT] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2562), + [aux_sym_binary_expression_token1] = ACTIONS(2562), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [aux_sym_binary_expression_token2] = ACTIONS(2560), + [aux_sym_binary_expression_token3] = ACTIONS(2560), + [aux_sym_binary_expression_token4] = ACTIONS(2562), + [aux_sym_binary_expression_token5] = ACTIONS(2562), + [aux_sym_binary_expression_token6] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_IN] = ACTIONS(2560), + [anon_sym_InstanceOf] = ACTIONS(2562), + [anon_sym_instanceof] = ACTIONS(2562), + [anon_sym_INSTANCEOF] = ACTIONS(2562), + [anon_sym_instanceOf] = ACTIONS(2562), + [anon_sym_Of] = ACTIONS(2562), + [anon_sym_of] = ACTIONS(2562), + [anon_sym_OF] = ACTIONS(2562), + [sym__automatic_semicolon] = ACTIONS(2562), + [sym__ternary_qmark] = ACTIONS(2562), + [sym__elvis_operator] = ACTIONS(2562), + [sym_logical_or] = ACTIONS(2562), }, - [STATE(2437)] = { - [anon_sym_DOT] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), - [sym_optional_chain] = ACTIONS(2276), - [sym_static_chain] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2276), - [anon_sym_BSLASH] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2276), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), - [anon_sym_LT_GT] = ACTIONS(2276), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), - [aux_sym_binary_expression_token1] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2274), - [aux_sym_binary_expression_token2] = ACTIONS(2274), - [aux_sym_binary_expression_token3] = ACTIONS(2274), - [aux_sym_binary_expression_token4] = ACTIONS(2276), - [aux_sym_binary_expression_token5] = ACTIONS(2276), - [aux_sym_binary_expression_token6] = ACTIONS(2276), - [anon_sym_QMARK_QMARK] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_IN] = ACTIONS(2274), - [anon_sym_InstanceOf] = ACTIONS(2276), - [anon_sym_instanceof] = ACTIONS(2276), - [anon_sym_INSTANCEOF] = ACTIONS(2276), - [anon_sym_instanceOf] = ACTIONS(2276), - [anon_sym_Of] = ACTIONS(2276), - [anon_sym_of] = ACTIONS(2276), - [anon_sym_OF] = ACTIONS(2276), - [sym__automatic_semicolon] = ACTIONS(2276), - [sym__ternary_qmark] = ACTIONS(2276), - [sym__elvis_operator] = ACTIONS(2276), - [sym_logical_or] = ACTIONS(2276), + [STATE(2531)] = { + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_COMMA] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2420), + [sym_optional_chain] = ACTIONS(2422), + [sym_static_chain] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_BSLASH] = ACTIONS(2422), + [anon_sym_STAR_STAR] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2422), + [anon_sym_LT_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2422), + [aux_sym_binary_expression_token1] = ACTIONS(2422), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [aux_sym_binary_expression_token2] = ACTIONS(2420), + [aux_sym_binary_expression_token3] = ACTIONS(2420), + [aux_sym_binary_expression_token4] = ACTIONS(2422), + [aux_sym_binary_expression_token5] = ACTIONS(2422), + [aux_sym_binary_expression_token6] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_IN] = ACTIONS(2420), + [anon_sym_InstanceOf] = ACTIONS(2422), + [anon_sym_instanceof] = ACTIONS(2422), + [anon_sym_INSTANCEOF] = ACTIONS(2422), + [anon_sym_instanceOf] = ACTIONS(2422), + [anon_sym_Of] = ACTIONS(2422), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_OF] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2422), + [sym__ternary_qmark] = ACTIONS(2422), + [sym__elvis_operator] = ACTIONS(2422), + [sym_logical_or] = ACTIONS(2422), }, - [STATE(2438)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5522), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [anon_sym_Of] = ACTIONS(1720), - [anon_sym_of] = ACTIONS(1720), - [anon_sym_OF] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2532)] = { + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2468), + [sym_optional_chain] = ACTIONS(2470), + [sym_static_chain] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_BSLASH] = ACTIONS(2470), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_LT_GT] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [aux_sym_binary_expression_token1] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [aux_sym_binary_expression_token2] = ACTIONS(2468), + [aux_sym_binary_expression_token3] = ACTIONS(2468), + [aux_sym_binary_expression_token4] = ACTIONS(2470), + [aux_sym_binary_expression_token5] = ACTIONS(2470), + [aux_sym_binary_expression_token6] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2468), + [anon_sym_IN] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(2470), + [anon_sym_instanceof] = ACTIONS(2470), + [anon_sym_INSTANCEOF] = ACTIONS(2470), + [anon_sym_instanceOf] = ACTIONS(2470), + [anon_sym_Of] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_OF] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(2470), + [sym__elvis_operator] = ACTIONS(2470), + [sym_logical_or] = ACTIONS(2470), }, - [STATE(2439)] = { - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2242), - [sym_optional_chain] = ACTIONS(2282), - [sym_static_chain] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2242), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_BSLASH] = ACTIONS(2282), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_LT_GT] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [aux_sym_binary_expression_token1] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2242), - [aux_sym_binary_expression_token2] = ACTIONS(2242), - [aux_sym_binary_expression_token3] = ACTIONS(2242), - [aux_sym_binary_expression_token4] = ACTIONS(2282), - [aux_sym_binary_expression_token5] = ACTIONS(2282), - [aux_sym_binary_expression_token6] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_IN] = ACTIONS(2242), - [anon_sym_InstanceOf] = ACTIONS(2282), - [anon_sym_instanceof] = ACTIONS(2282), - [anon_sym_INSTANCEOF] = ACTIONS(2282), - [anon_sym_instanceOf] = ACTIONS(2282), - [anon_sym_Of] = ACTIONS(2282), - [anon_sym_of] = ACTIONS(2282), - [anon_sym_OF] = ACTIONS(2282), - [sym__automatic_semicolon] = ACTIONS(2282), - [sym__ternary_qmark] = ACTIONS(2282), - [sym__elvis_operator] = ACTIONS(2282), - [sym_logical_or] = ACTIONS(2282), + [STATE(2533)] = { + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2570), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2570), + [anon_sym_instanceof] = ACTIONS(2570), + [anon_sym_INSTANCEOF] = ACTIONS(2570), + [anon_sym_instanceOf] = ACTIONS(2570), + [anon_sym_Of] = ACTIONS(2570), + [anon_sym_of] = ACTIONS(2570), + [anon_sym_OF] = ACTIONS(2570), + [sym__automatic_semicolon] = ACTIONS(2570), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), }, - [STATE(2440)] = { - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_INSTANCEOF] = ACTIONS(2240), - [anon_sym_instanceOf] = ACTIONS(2240), - [anon_sym_Of] = ACTIONS(2240), - [anon_sym_of] = ACTIONS(2240), - [anon_sym_OF] = ACTIONS(2240), - [sym__automatic_semicolon] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), + [STATE(2534)] = { + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_RBRACK] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2260), + [sym_static_chain] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2260), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_INSTANCEOF] = ACTIONS(2260), + [anon_sym_instanceOf] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), }, - [STATE(2441)] = { + [STATE(2535)] = { [anon_sym_DOT] = ACTIONS(2246), [anon_sym_STAR] = ACTIONS(2244), [anon_sym_COMMA] = ACTIONS(2246), [anon_sym_RBRACE] = ACTIONS(2246), [anon_sym_LPAREN] = ACTIONS(2246), [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2248), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_RBRACK] = ACTIONS(2246), [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), @@ -365198,6 +374067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2246), [anon_sym_DASH_DASH] = ACTIONS(2246), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2246), [anon_sym_In] = ACTIONS(2244), [anon_sym_in] = ACTIONS(2244), [anon_sym_IN] = ACTIONS(2244), @@ -365205,98 +374075,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(2246), [anon_sym_INSTANCEOF] = ACTIONS(2246), [anon_sym_instanceOf] = ACTIONS(2246), - [anon_sym_Of] = ACTIONS(2246), - [anon_sym_of] = ACTIONS(2246), - [anon_sym_OF] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2246), [sym__ternary_qmark] = ACTIONS(2246), [sym__elvis_operator] = ACTIONS(2246), [sym_logical_or] = ACTIONS(2246), }, - [STATE(2442)] = { - [anon_sym_DOT] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), - [sym_optional_chain] = ACTIONS(2272), - [sym_static_chain] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2272), - [anon_sym_PIPE_PIPE] = ACTIONS(2272), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2272), - [anon_sym_LT_LT] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2272), - [anon_sym_BSLASH] = ACTIONS(2272), - [anon_sym_STAR_STAR] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), - [aux_sym_binary_expression_token1] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2270), - [aux_sym_binary_expression_token2] = ACTIONS(2270), - [aux_sym_binary_expression_token3] = ACTIONS(2270), - [aux_sym_binary_expression_token4] = ACTIONS(2272), - [aux_sym_binary_expression_token5] = ACTIONS(2272), - [aux_sym_binary_expression_token6] = ACTIONS(2272), - [anon_sym_QMARK_QMARK] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2270), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_IN] = ACTIONS(2270), - [anon_sym_InstanceOf] = ACTIONS(2272), - [anon_sym_instanceof] = ACTIONS(2272), - [anon_sym_INSTANCEOF] = ACTIONS(2272), - [anon_sym_instanceOf] = ACTIONS(2272), - [anon_sym_Of] = ACTIONS(2272), - [anon_sym_of] = ACTIONS(2272), - [anon_sym_OF] = ACTIONS(2272), - [sym__automatic_semicolon] = ACTIONS(2272), - [sym__ternary_qmark] = ACTIONS(2272), - [sym__elvis_operator] = ACTIONS(2272), - [sym_logical_or] = ACTIONS(2272), - }, - [STATE(2443)] = { + [STATE(2536)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_EQ] = ACTIONS(5167), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -365365,90 +374154,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2444)] = { - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_INSTANCEOF] = ACTIONS(2286), - [anon_sym_instanceOf] = ACTIONS(2286), - [anon_sym_Of] = ACTIONS(2286), - [anon_sym_of] = ACTIONS(2286), - [anon_sym_OF] = ACTIONS(2286), - [sym__automatic_semicolon] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - }, - [STATE(2445)] = { + [STATE(2537)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_COLON] = ACTIONS(5548), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -365517,1455 +374229,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2446)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1720), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2447)] = { - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2221), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2221), - [anon_sym_instanceof] = ACTIONS(2221), - [anon_sym_INSTANCEOF] = ACTIONS(2221), - [anon_sym_instanceOf] = ACTIONS(2221), - [anon_sym_Of] = ACTIONS(2221), - [anon_sym_of] = ACTIONS(2221), - [anon_sym_OF] = ACTIONS(2221), - [sym__automatic_semicolon] = ACTIONS(2221), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - }, - [STATE(2448)] = { - [anon_sym_DOT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_COMMA] = ACTIONS(2306), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_COLON] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2304), - [sym_optional_chain] = ACTIONS(2306), - [sym_static_chain] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_BSLASH] = ACTIONS(2306), - [anon_sym_STAR_STAR] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2306), - [anon_sym_LT_GT] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2306), - [aux_sym_binary_expression_token1] = ACTIONS(2306), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [aux_sym_binary_expression_token2] = ACTIONS(2304), - [aux_sym_binary_expression_token3] = ACTIONS(2304), - [aux_sym_binary_expression_token4] = ACTIONS(2306), - [aux_sym_binary_expression_token5] = ACTIONS(2306), - [aux_sym_binary_expression_token6] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_IN] = ACTIONS(2304), - [anon_sym_InstanceOf] = ACTIONS(2306), - [anon_sym_instanceof] = ACTIONS(2306), - [anon_sym_INSTANCEOF] = ACTIONS(2306), - [anon_sym_instanceOf] = ACTIONS(2306), - [anon_sym_Of] = ACTIONS(2306), - [anon_sym_of] = ACTIONS(2306), - [anon_sym_OF] = ACTIONS(2306), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2306), - [sym__elvis_operator] = ACTIONS(2306), - [sym_logical_or] = ACTIONS(2306), - }, - [STATE(2449)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(5522), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2254), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2254), - [anon_sym_instanceof] = ACTIONS(2254), - [anon_sym_INSTANCEOF] = ACTIONS(2254), - [anon_sym_instanceOf] = ACTIONS(2254), - [anon_sym_Of] = ACTIONS(2254), - [anon_sym_of] = ACTIONS(2254), - [anon_sym_OF] = ACTIONS(2254), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - }, - [STATE(2450)] = { - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_INSTANCEOF] = ACTIONS(2286), - [anon_sym_instanceOf] = ACTIONS(2286), - [anon_sym_Of] = ACTIONS(2286), - [anon_sym_of] = ACTIONS(2286), - [anon_sym_OF] = ACTIONS(2286), - [sym__automatic_semicolon] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - }, - [STATE(2451)] = { - [anon_sym_DOT] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(2484), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_RPAREN] = ACTIONS(2484), - [anon_sym_COLON] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2484), - [anon_sym_RBRACK] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), - [sym_optional_chain] = ACTIONS(2484), - [sym_static_chain] = ACTIONS(2484), - [anon_sym_AMP_AMP] = ACTIONS(2484), - [anon_sym_PIPE_PIPE] = ACTIONS(2484), - [anon_sym_GT_GT] = ACTIONS(2482), - [anon_sym_GT_GT_GT] = ACTIONS(2484), - [anon_sym_LT_LT] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_CARET] = ACTIONS(2484), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(2484), - [anon_sym_BSLASH] = ACTIONS(2484), - [anon_sym_STAR_STAR] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_LT_EQ] = ACTIONS(2484), - [anon_sym_EQ_EQ] = ACTIONS(2482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), - [anon_sym_LT_GT] = ACTIONS(2484), - [anon_sym_BANG_EQ] = ACTIONS(2482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), - [aux_sym_binary_expression_token1] = ACTIONS(2484), - [anon_sym_GT_EQ] = ACTIONS(2484), - [anon_sym_GT] = ACTIONS(2482), - [aux_sym_binary_expression_token2] = ACTIONS(2482), - [aux_sym_binary_expression_token3] = ACTIONS(2482), - [aux_sym_binary_expression_token4] = ACTIONS(2484), - [aux_sym_binary_expression_token5] = ACTIONS(2484), - [aux_sym_binary_expression_token6] = ACTIONS(2484), - [anon_sym_QMARK_QMARK] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2484), - [anon_sym_In] = ACTIONS(2482), - [anon_sym_in] = ACTIONS(2482), - [anon_sym_IN] = ACTIONS(2482), - [anon_sym_InstanceOf] = ACTIONS(2484), - [anon_sym_instanceof] = ACTIONS(2484), - [anon_sym_INSTANCEOF] = ACTIONS(2484), - [anon_sym_instanceOf] = ACTIONS(2484), - [sym__ternary_qmark] = ACTIONS(2484), - [sym__elvis_operator] = ACTIONS(2484), - [sym_logical_or] = ACTIONS(2484), - }, - [STATE(2452)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [anon_sym_Of] = ACTIONS(1085), - [anon_sym_of] = ACTIONS(1085), - [anon_sym_OF] = ACTIONS(1085), - [sym__automatic_semicolon] = ACTIONS(1085), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - }, - [STATE(2453)] = { - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_RPAREN] = ACTIONS(1684), - [anon_sym_COLON] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_RBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1684), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1684), - [anon_sym_instanceof] = ACTIONS(1684), - [anon_sym_INSTANCEOF] = ACTIONS(1684), - [anon_sym_instanceOf] = ACTIONS(1684), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - }, - [STATE(2454)] = { - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_RPAREN] = ACTIONS(2310), - [anon_sym_COLON] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_RBRACK] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2308), - [sym_optional_chain] = ACTIONS(2310), - [sym_static_chain] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_BSLASH] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_LT_GT] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [aux_sym_binary_expression_token1] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [aux_sym_binary_expression_token2] = ACTIONS(2308), - [aux_sym_binary_expression_token3] = ACTIONS(2308), - [aux_sym_binary_expression_token4] = ACTIONS(2310), - [aux_sym_binary_expression_token5] = ACTIONS(2310), - [aux_sym_binary_expression_token6] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_In] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2308), - [anon_sym_IN] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_INSTANCEOF] = ACTIONS(2310), - [anon_sym_instanceOf] = ACTIONS(2310), - [sym__ternary_qmark] = ACTIONS(2310), - [sym__elvis_operator] = ACTIONS(2310), - [sym_logical_or] = ACTIONS(2310), - }, - [STATE(2455)] = { - [anon_sym_DOT] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_COMMA] = ACTIONS(2536), - [anon_sym_RBRACE] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2536), - [anon_sym_RPAREN] = ACTIONS(2536), - [anon_sym_COLON] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_RBRACK] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2534), - [sym_optional_chain] = ACTIONS(2536), - [sym_static_chain] = ACTIONS(2536), - [anon_sym_AMP_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2534), - [anon_sym_GT_GT_GT] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_BSLASH] = ACTIONS(2536), - [anon_sym_STAR_STAR] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_LT_EQ] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2536), - [anon_sym_LT_GT] = ACTIONS(2536), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2536), - [aux_sym_binary_expression_token1] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2534), - [aux_sym_binary_expression_token2] = ACTIONS(2534), - [aux_sym_binary_expression_token3] = ACTIONS(2534), - [aux_sym_binary_expression_token4] = ACTIONS(2536), - [aux_sym_binary_expression_token5] = ACTIONS(2536), - [aux_sym_binary_expression_token6] = ACTIONS(2536), - [anon_sym_QMARK_QMARK] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2536), - [anon_sym_In] = ACTIONS(2534), - [anon_sym_in] = ACTIONS(2534), - [anon_sym_IN] = ACTIONS(2534), - [anon_sym_InstanceOf] = ACTIONS(2536), - [anon_sym_instanceof] = ACTIONS(2536), - [anon_sym_INSTANCEOF] = ACTIONS(2536), - [anon_sym_instanceOf] = ACTIONS(2536), - [sym__ternary_qmark] = ACTIONS(2536), - [sym__elvis_operator] = ACTIONS(2536), - [sym_logical_or] = ACTIONS(2536), - }, - [STATE(2456)] = { - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_RPAREN] = ACTIONS(2540), - [anon_sym_COLON] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_RBRACK] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2540), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2540), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2540), - [anon_sym_instanceof] = ACTIONS(2540), - [anon_sym_INSTANCEOF] = ACTIONS(2540), - [anon_sym_instanceOf] = ACTIONS(2540), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), - }, - [STATE(2457)] = { - [anon_sym_DOT] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_COMMA] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2574), - [sym_optional_chain] = ACTIONS(2576), - [sym_static_chain] = ACTIONS(2576), - [anon_sym_AMP_AMP] = ACTIONS(2576), - [anon_sym_PIPE_PIPE] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2574), - [anon_sym_GT_GT_GT] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_CARET] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2576), - [anon_sym_BSLASH] = ACTIONS(2576), - [anon_sym_STAR_STAR] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2576), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2576), - [anon_sym_LT_GT] = ACTIONS(2576), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2576), - [aux_sym_binary_expression_token1] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2576), - [anon_sym_GT] = ACTIONS(2574), - [aux_sym_binary_expression_token2] = ACTIONS(2574), - [aux_sym_binary_expression_token3] = ACTIONS(2574), - [aux_sym_binary_expression_token4] = ACTIONS(2576), - [aux_sym_binary_expression_token5] = ACTIONS(2576), - [aux_sym_binary_expression_token6] = ACTIONS(2576), - [anon_sym_QMARK_QMARK] = ACTIONS(2576), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [anon_sym_IN] = ACTIONS(2574), - [anon_sym_InstanceOf] = ACTIONS(2576), - [anon_sym_instanceof] = ACTIONS(2576), - [anon_sym_INSTANCEOF] = ACTIONS(2576), - [anon_sym_instanceOf] = ACTIONS(2576), - [anon_sym_Of] = ACTIONS(2576), - [anon_sym_of] = ACTIONS(2576), - [anon_sym_OF] = ACTIONS(2576), - [sym__automatic_semicolon] = ACTIONS(2576), - [sym__ternary_qmark] = ACTIONS(2576), - [sym__elvis_operator] = ACTIONS(2576), - [sym_logical_or] = ACTIONS(2576), - }, - [STATE(2458)] = { - [anon_sym_DOT] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_RBRACK] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2418), - [sym_optional_chain] = ACTIONS(2420), - [sym_static_chain] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2420), - [anon_sym_BSLASH] = ACTIONS(2420), - [anon_sym_STAR_STAR] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), - [anon_sym_LT_GT] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), - [aux_sym_binary_expression_token1] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_GT] = ACTIONS(2418), - [aux_sym_binary_expression_token2] = ACTIONS(2418), - [aux_sym_binary_expression_token3] = ACTIONS(2418), - [aux_sym_binary_expression_token4] = ACTIONS(2420), - [aux_sym_binary_expression_token5] = ACTIONS(2420), - [aux_sym_binary_expression_token6] = ACTIONS(2420), - [anon_sym_QMARK_QMARK] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2420), - [anon_sym_In] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_IN] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(2420), - [anon_sym_instanceof] = ACTIONS(2420), - [anon_sym_INSTANCEOF] = ACTIONS(2420), - [anon_sym_instanceOf] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(2420), - [sym__elvis_operator] = ACTIONS(2420), - [sym_logical_or] = ACTIONS(2420), - }, - [STATE(2459)] = { - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_RPAREN] = ACTIONS(2314), - [anon_sym_COLON] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_RBRACK] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2312), - [sym_optional_chain] = ACTIONS(2314), - [sym_static_chain] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_BSLASH] = ACTIONS(2314), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_LT_GT] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [aux_sym_binary_expression_token1] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [aux_sym_binary_expression_token2] = ACTIONS(2312), - [aux_sym_binary_expression_token3] = ACTIONS(2312), - [aux_sym_binary_expression_token4] = ACTIONS(2314), - [aux_sym_binary_expression_token5] = ACTIONS(2314), - [aux_sym_binary_expression_token6] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2314), - [anon_sym_In] = ACTIONS(2312), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_IN] = ACTIONS(2312), - [anon_sym_InstanceOf] = ACTIONS(2314), - [anon_sym_instanceof] = ACTIONS(2314), - [anon_sym_INSTANCEOF] = ACTIONS(2314), - [anon_sym_instanceOf] = ACTIONS(2314), - [sym__ternary_qmark] = ACTIONS(2314), - [sym__elvis_operator] = ACTIONS(2314), - [sym_logical_or] = ACTIONS(2314), - }, - [STATE(2460)] = { - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_COLON] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2544), - [anon_sym_RBRACK] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2542), - [sym_optional_chain] = ACTIONS(2544), - [sym_static_chain] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2544), - [anon_sym_BSLASH] = ACTIONS(2544), - [anon_sym_STAR_STAR] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2544), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2544), - [anon_sym_LT_GT] = ACTIONS(2544), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2544), - [aux_sym_binary_expression_token1] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2544), - [anon_sym_GT] = ACTIONS(2542), - [aux_sym_binary_expression_token2] = ACTIONS(2542), - [aux_sym_binary_expression_token3] = ACTIONS(2542), - [aux_sym_binary_expression_token4] = ACTIONS(2544), - [aux_sym_binary_expression_token5] = ACTIONS(2544), - [aux_sym_binary_expression_token6] = ACTIONS(2544), - [anon_sym_QMARK_QMARK] = ACTIONS(2544), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2544), - [anon_sym_In] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_IN] = ACTIONS(2542), - [anon_sym_InstanceOf] = ACTIONS(2544), - [anon_sym_instanceof] = ACTIONS(2544), - [anon_sym_INSTANCEOF] = ACTIONS(2544), - [anon_sym_instanceOf] = ACTIONS(2544), - [sym__ternary_qmark] = ACTIONS(2544), - [sym__elvis_operator] = ACTIONS(2544), - [sym_logical_or] = ACTIONS(2544), - }, - [STATE(2461)] = { - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_COLON] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_RBRACK] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2546), - [sym_optional_chain] = ACTIONS(2548), - [sym_static_chain] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_GT_GT] = ACTIONS(2546), - [anon_sym_GT_GT_GT] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_BSLASH] = ACTIONS(2548), - [anon_sym_STAR_STAR] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_LT_EQ] = ACTIONS(2548), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2548), - [anon_sym_LT_GT] = ACTIONS(2548), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2548), - [aux_sym_binary_expression_token1] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(2546), - [aux_sym_binary_expression_token2] = ACTIONS(2546), - [aux_sym_binary_expression_token3] = ACTIONS(2546), - [aux_sym_binary_expression_token4] = ACTIONS(2548), - [aux_sym_binary_expression_token5] = ACTIONS(2548), - [aux_sym_binary_expression_token6] = ACTIONS(2548), - [anon_sym_QMARK_QMARK] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2548), - [anon_sym_In] = ACTIONS(2546), - [anon_sym_in] = ACTIONS(2546), - [anon_sym_IN] = ACTIONS(2546), - [anon_sym_InstanceOf] = ACTIONS(2548), - [anon_sym_instanceof] = ACTIONS(2548), - [anon_sym_INSTANCEOF] = ACTIONS(2548), - [anon_sym_instanceOf] = ACTIONS(2548), - [sym__ternary_qmark] = ACTIONS(2548), - [sym__elvis_operator] = ACTIONS(2548), - [sym_logical_or] = ACTIONS(2548), - }, - [STATE(2462)] = { - [anon_sym_DOT] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_LBRACK] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2578), - [sym_optional_chain] = ACTIONS(2580), - [sym_static_chain] = ACTIONS(2580), - [anon_sym_AMP_AMP] = ACTIONS(2580), - [anon_sym_PIPE_PIPE] = ACTIONS(2580), - [anon_sym_GT_GT] = ACTIONS(2578), - [anon_sym_GT_GT_GT] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_CARET] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2580), - [anon_sym_BSLASH] = ACTIONS(2580), - [anon_sym_STAR_STAR] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_LT_EQ] = ACTIONS(2580), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2580), - [anon_sym_LT_GT] = ACTIONS(2580), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2580), - [aux_sym_binary_expression_token1] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2580), - [anon_sym_GT] = ACTIONS(2578), - [aux_sym_binary_expression_token2] = ACTIONS(2578), - [aux_sym_binary_expression_token3] = ACTIONS(2578), - [aux_sym_binary_expression_token4] = ACTIONS(2580), - [aux_sym_binary_expression_token5] = ACTIONS(2580), - [aux_sym_binary_expression_token6] = ACTIONS(2580), - [anon_sym_QMARK_QMARK] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2578), - [anon_sym_in] = ACTIONS(2578), - [anon_sym_IN] = ACTIONS(2578), - [anon_sym_InstanceOf] = ACTIONS(2580), - [anon_sym_instanceof] = ACTIONS(2580), - [anon_sym_INSTANCEOF] = ACTIONS(2580), - [anon_sym_instanceOf] = ACTIONS(2580), - [anon_sym_Of] = ACTIONS(2580), - [anon_sym_of] = ACTIONS(2580), - [anon_sym_OF] = ACTIONS(2580), - [sym__automatic_semicolon] = ACTIONS(2580), - [sym__ternary_qmark] = ACTIONS(2580), - [sym__elvis_operator] = ACTIONS(2580), - [sym_logical_or] = ACTIONS(2580), - }, - [STATE(2463)] = { - [anon_sym_DOT] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_COMMA] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_COLON] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_RBRACK] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2550), - [sym_optional_chain] = ACTIONS(2552), - [sym_static_chain] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2550), - [anon_sym_GT_GT_GT] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_CARET] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2552), - [anon_sym_STAR_STAR] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_LT_EQ] = ACTIONS(2552), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2552), - [anon_sym_LT_GT] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2552), - [aux_sym_binary_expression_token1] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2550), - [aux_sym_binary_expression_token2] = ACTIONS(2550), - [aux_sym_binary_expression_token3] = ACTIONS(2550), - [aux_sym_binary_expression_token4] = ACTIONS(2552), - [aux_sym_binary_expression_token5] = ACTIONS(2552), - [aux_sym_binary_expression_token6] = ACTIONS(2552), - [anon_sym_QMARK_QMARK] = ACTIONS(2552), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_In] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_IN] = ACTIONS(2550), - [anon_sym_InstanceOf] = ACTIONS(2552), - [anon_sym_instanceof] = ACTIONS(2552), - [anon_sym_INSTANCEOF] = ACTIONS(2552), - [anon_sym_instanceOf] = ACTIONS(2552), - [sym__ternary_qmark] = ACTIONS(2552), - [sym__elvis_operator] = ACTIONS(2552), - [sym_logical_or] = ACTIONS(2552), - }, - [STATE(2464)] = { - [anon_sym_DOT] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_COMMA] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_RPAREN] = ACTIONS(2556), - [anon_sym_COLON] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_RBRACK] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2554), - [sym_optional_chain] = ACTIONS(2556), - [sym_static_chain] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2554), - [anon_sym_GT_GT_GT] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2556), - [anon_sym_BSLASH] = ACTIONS(2556), - [anon_sym_STAR_STAR] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2556), - [anon_sym_LT_GT] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2556), - [aux_sym_binary_expression_token1] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2554), - [aux_sym_binary_expression_token2] = ACTIONS(2554), - [aux_sym_binary_expression_token3] = ACTIONS(2554), - [aux_sym_binary_expression_token4] = ACTIONS(2556), - [aux_sym_binary_expression_token5] = ACTIONS(2556), - [aux_sym_binary_expression_token6] = ACTIONS(2556), - [anon_sym_QMARK_QMARK] = ACTIONS(2556), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_In] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [anon_sym_IN] = ACTIONS(2554), - [anon_sym_InstanceOf] = ACTIONS(2556), - [anon_sym_instanceof] = ACTIONS(2556), - [anon_sym_INSTANCEOF] = ACTIONS(2556), - [anon_sym_instanceOf] = ACTIONS(2556), - [sym__ternary_qmark] = ACTIONS(2556), - [sym__elvis_operator] = ACTIONS(2556), - [sym_logical_or] = ACTIONS(2556), + [STATE(2538)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [anon_sym_Of] = ACTIONS(2530), + [anon_sym_of] = ACTIONS(2530), + [anon_sym_OF] = ACTIONS(2530), + [sym__automatic_semicolon] = ACTIONS(2530), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2465)] = { + [STATE(2539)] = { [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_RBRACK] = ACTIONS(2286), + [anon_sym_RBRACK] = ACTIONS(2260), [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), @@ -366974,35 +374331,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), [sym_optional_chain] = ACTIONS(2286), [sym_static_chain] = ACTIONS(2286), [anon_sym_AMP_AMP] = ACTIONS(2286), [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2289), [anon_sym_GT_GT_GT] = ACTIONS(2286), [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2289), [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), [anon_sym_PERCENT] = ACTIONS(2286), [anon_sym_BSLASH] = ACTIONS(2286), [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2289), [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2289), [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2289), [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), [aux_sym_binary_expression_token1] = ACTIONS(2286), [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), [aux_sym_binary_expression_token4] = ACTIONS(2286), [aux_sym_binary_expression_token5] = ACTIONS(2286), [aux_sym_binary_expression_token6] = ACTIONS(2286), @@ -367010,10 +374367,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2286), [anon_sym_DASH_DASH] = ACTIONS(2286), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(2260), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), [anon_sym_InstanceOf] = ACTIONS(2286), [anon_sym_instanceof] = ACTIONS(2286), [anon_sym_INSTANCEOF] = ACTIONS(2286), @@ -367022,1732 +374379,1432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(2286), [sym_logical_or] = ACTIONS(2286), }, - [STATE(2466)] = { - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_RBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), + [STATE(2540)] = { + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1686), + [anon_sym_COLON] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_RBRACK] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_INSTANCEOF] = ACTIONS(2286), - [anon_sym_instanceOf] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - }, - [STATE(2467)] = { - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_COLON] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1670), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1670), - [anon_sym_instanceof] = ACTIONS(1670), - [anon_sym_INSTANCEOF] = ACTIONS(1670), - [anon_sym_instanceOf] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - }, - [STATE(2468)] = { - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2347), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2347), - [anon_sym_instanceof] = ACTIONS(2347), - [anon_sym_INSTANCEOF] = ACTIONS(2347), - [anon_sym_instanceOf] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - }, - [STATE(2469)] = { - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_COLON] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_RBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2353), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2353), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2353), - [anon_sym_instanceof] = ACTIONS(2353), - [anon_sym_INSTANCEOF] = ACTIONS(2353), - [anon_sym_instanceOf] = ACTIONS(2353), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - }, - [STATE(2470)] = { - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_RBRACK] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2221), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2221), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2221), - [anon_sym_instanceof] = ACTIONS(2221), - [anon_sym_INSTANCEOF] = ACTIONS(2221), - [anon_sym_instanceOf] = ACTIONS(2221), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(1686), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1686), + [anon_sym_instanceof] = ACTIONS(1686), + [anon_sym_INSTANCEOF] = ACTIONS(1686), + [anon_sym_instanceOf] = ACTIONS(1686), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), }, - [STATE(2471)] = { - [anon_sym_DOT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_COMMA] = ACTIONS(2306), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(2306), - [anon_sym_COLON] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_RBRACK] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2304), - [sym_optional_chain] = ACTIONS(2306), - [sym_static_chain] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_BSLASH] = ACTIONS(2306), - [anon_sym_STAR_STAR] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2306), - [anon_sym_LT_GT] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2306), - [aux_sym_binary_expression_token1] = ACTIONS(2306), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [aux_sym_binary_expression_token2] = ACTIONS(2304), - [aux_sym_binary_expression_token3] = ACTIONS(2304), - [aux_sym_binary_expression_token4] = ACTIONS(2306), - [aux_sym_binary_expression_token5] = ACTIONS(2306), - [aux_sym_binary_expression_token6] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_In] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_IN] = ACTIONS(2304), - [anon_sym_InstanceOf] = ACTIONS(2306), - [anon_sym_instanceof] = ACTIONS(2306), - [anon_sym_INSTANCEOF] = ACTIONS(2306), - [anon_sym_instanceOf] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2306), - [sym__elvis_operator] = ACTIONS(2306), - [sym_logical_or] = ACTIONS(2306), + [STATE(2541)] = { + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2320), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5552), + [anon_sym_in] = ACTIONS(5552), + [anon_sym_IN] = ACTIONS(5552), + [anon_sym_InstanceOf] = ACTIONS(2320), + [anon_sym_instanceof] = ACTIONS(2320), + [anon_sym_INSTANCEOF] = ACTIONS(2320), + [anon_sym_instanceOf] = ACTIONS(2320), + [anon_sym_Of] = ACTIONS(5550), + [anon_sym_of] = ACTIONS(5550), + [anon_sym_OF] = ACTIONS(5550), + [sym__automatic_semicolon] = ACTIONS(5550), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), }, - [STATE(2472)] = { - [anon_sym_DOT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_COLON] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_RBRACK] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2254), - [sym_static_chain] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2254), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2254), - [anon_sym_instanceof] = ACTIONS(2254), - [anon_sym_INSTANCEOF] = ACTIONS(2254), - [anon_sym_instanceOf] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), + [STATE(2542)] = { + [anon_sym_DOT] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2548), + [sym_optional_chain] = ACTIONS(2550), + [sym_static_chain] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(2550), + [anon_sym_STAR_STAR] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2550), + [anon_sym_LT_GT] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2550), + [aux_sym_binary_expression_token1] = ACTIONS(2550), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [aux_sym_binary_expression_token2] = ACTIONS(2548), + [aux_sym_binary_expression_token3] = ACTIONS(2548), + [aux_sym_binary_expression_token4] = ACTIONS(2550), + [aux_sym_binary_expression_token5] = ACTIONS(2550), + [aux_sym_binary_expression_token6] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_IN] = ACTIONS(2548), + [anon_sym_InstanceOf] = ACTIONS(2550), + [anon_sym_instanceof] = ACTIONS(2550), + [anon_sym_INSTANCEOF] = ACTIONS(2550), + [anon_sym_instanceOf] = ACTIONS(2550), + [anon_sym_Of] = ACTIONS(2550), + [anon_sym_of] = ACTIONS(2550), + [anon_sym_OF] = ACTIONS(2550), + [sym__automatic_semicolon] = ACTIONS(2550), + [sym__ternary_qmark] = ACTIONS(2550), + [sym__elvis_operator] = ACTIONS(2550), + [sym_logical_or] = ACTIONS(2550), }, - [STATE(2473)] = { - [anon_sym_DOT] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_RPAREN] = ACTIONS(2464), - [anon_sym_COLON] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_RBRACK] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2462), - [sym_optional_chain] = ACTIONS(2464), - [sym_static_chain] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_GT_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_BSLASH] = ACTIONS(2464), - [anon_sym_STAR_STAR] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_LT_EQ] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_LT_GT] = ACTIONS(2464), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2464), - [aux_sym_binary_expression_token1] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2462), - [aux_sym_binary_expression_token2] = ACTIONS(2462), - [aux_sym_binary_expression_token3] = ACTIONS(2462), - [aux_sym_binary_expression_token4] = ACTIONS(2464), - [aux_sym_binary_expression_token5] = ACTIONS(2464), - [aux_sym_binary_expression_token6] = ACTIONS(2464), - [anon_sym_QMARK_QMARK] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), + [STATE(2543)] = { + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_COLON] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_RBRACK] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2248), + [sym_optional_chain] = ACTIONS(2250), + [sym_static_chain] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2248), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2250), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_LT_GT] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [aux_sym_binary_expression_token1] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2248), + [aux_sym_binary_expression_token2] = ACTIONS(2248), + [aux_sym_binary_expression_token3] = ACTIONS(2248), + [aux_sym_binary_expression_token4] = ACTIONS(2250), + [aux_sym_binary_expression_token5] = ACTIONS(2250), + [aux_sym_binary_expression_token6] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2464), - [anon_sym_In] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [anon_sym_IN] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(2464), - [anon_sym_instanceof] = ACTIONS(2464), - [anon_sym_INSTANCEOF] = ACTIONS(2464), - [anon_sym_instanceOf] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(2464), - [sym__elvis_operator] = ACTIONS(2464), - [sym_logical_or] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2250), + [anon_sym_In] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [anon_sym_IN] = ACTIONS(2248), + [anon_sym_InstanceOf] = ACTIONS(2250), + [anon_sym_instanceof] = ACTIONS(2250), + [anon_sym_INSTANCEOF] = ACTIONS(2250), + [anon_sym_instanceOf] = ACTIONS(2250), + [sym__ternary_qmark] = ACTIONS(2250), + [sym__elvis_operator] = ACTIONS(2250), + [sym_logical_or] = ACTIONS(2250), }, - [STATE(2474)] = { - [anon_sym_DOT] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_COMMA] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_COLON] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_RBRACK] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2562), - [sym_optional_chain] = ACTIONS(2564), - [sym_static_chain] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_GT_GT_GT] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2564), - [anon_sym_BSLASH] = ACTIONS(2564), - [anon_sym_STAR_STAR] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2564), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2564), - [anon_sym_LT_GT] = ACTIONS(2564), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2564), - [aux_sym_binary_expression_token1] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2562), - [aux_sym_binary_expression_token2] = ACTIONS(2562), - [aux_sym_binary_expression_token3] = ACTIONS(2562), - [aux_sym_binary_expression_token4] = ACTIONS(2564), - [aux_sym_binary_expression_token5] = ACTIONS(2564), - [aux_sym_binary_expression_token6] = ACTIONS(2564), - [anon_sym_QMARK_QMARK] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2564), - [anon_sym_In] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2562), - [anon_sym_IN] = ACTIONS(2562), - [anon_sym_InstanceOf] = ACTIONS(2564), - [anon_sym_instanceof] = ACTIONS(2564), - [anon_sym_INSTANCEOF] = ACTIONS(2564), - [anon_sym_instanceOf] = ACTIONS(2564), - [sym__ternary_qmark] = ACTIONS(2564), - [sym__elvis_operator] = ACTIONS(2564), - [sym_logical_or] = ACTIONS(2564), + [STATE(2544)] = { + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2392), + [sym_optional_chain] = ACTIONS(2394), + [sym_static_chain] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_BSLASH] = ACTIONS(2394), + [anon_sym_STAR_STAR] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2394), + [aux_sym_binary_expression_token1] = ACTIONS(2394), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [aux_sym_binary_expression_token2] = ACTIONS(2392), + [aux_sym_binary_expression_token3] = ACTIONS(2392), + [aux_sym_binary_expression_token4] = ACTIONS(2394), + [aux_sym_binary_expression_token5] = ACTIONS(2394), + [aux_sym_binary_expression_token6] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_IN] = ACTIONS(2392), + [anon_sym_InstanceOf] = ACTIONS(2394), + [anon_sym_instanceof] = ACTIONS(2394), + [anon_sym_INSTANCEOF] = ACTIONS(2394), + [anon_sym_instanceOf] = ACTIONS(2394), + [anon_sym_Of] = ACTIONS(2394), + [anon_sym_of] = ACTIONS(2394), + [anon_sym_OF] = ACTIONS(2394), + [sym__automatic_semicolon] = ACTIONS(2394), + [sym__ternary_qmark] = ACTIONS(2394), + [sym__elvis_operator] = ACTIONS(2394), + [sym_logical_or] = ACTIONS(2394), }, - [STATE(2475)] = { - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_COMMA] = ACTIONS(2568), - [anon_sym_RBRACE] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_RPAREN] = ACTIONS(2568), - [anon_sym_COLON] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_RBRACK] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2566), - [sym_optional_chain] = ACTIONS(2568), - [sym_static_chain] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_GT_GT_GT] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_CARET] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2568), - [anon_sym_BSLASH] = ACTIONS(2568), - [anon_sym_STAR_STAR] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2568), - [anon_sym_LT_GT] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2568), - [aux_sym_binary_expression_token1] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(2566), - [aux_sym_binary_expression_token2] = ACTIONS(2566), - [aux_sym_binary_expression_token3] = ACTIONS(2566), - [aux_sym_binary_expression_token4] = ACTIONS(2568), - [aux_sym_binary_expression_token5] = ACTIONS(2568), - [aux_sym_binary_expression_token6] = ACTIONS(2568), - [anon_sym_QMARK_QMARK] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2568), - [anon_sym_In] = ACTIONS(2566), - [anon_sym_in] = ACTIONS(2566), - [anon_sym_IN] = ACTIONS(2566), - [anon_sym_InstanceOf] = ACTIONS(2568), - [anon_sym_instanceof] = ACTIONS(2568), - [anon_sym_INSTANCEOF] = ACTIONS(2568), - [anon_sym_instanceOf] = ACTIONS(2568), - [sym__ternary_qmark] = ACTIONS(2568), - [sym__elvis_operator] = ACTIONS(2568), - [sym_logical_or] = ACTIONS(2568), + [STATE(2545)] = { + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_COMMA] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2436), + [sym_optional_chain] = ACTIONS(2438), + [sym_static_chain] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_BSLASH] = ACTIONS(2438), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2436), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_LT_GT] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2436), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [aux_sym_binary_expression_token1] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [aux_sym_binary_expression_token2] = ACTIONS(2436), + [aux_sym_binary_expression_token3] = ACTIONS(2436), + [aux_sym_binary_expression_token4] = ACTIONS(2438), + [aux_sym_binary_expression_token5] = ACTIONS(2438), + [aux_sym_binary_expression_token6] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_IN] = ACTIONS(2436), + [anon_sym_InstanceOf] = ACTIONS(2438), + [anon_sym_instanceof] = ACTIONS(2438), + [anon_sym_INSTANCEOF] = ACTIONS(2438), + [anon_sym_instanceOf] = ACTIONS(2438), + [anon_sym_Of] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_OF] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2438), + [sym__ternary_qmark] = ACTIONS(2438), + [sym__elvis_operator] = ACTIONS(2438), + [sym_logical_or] = ACTIONS(2438), }, - [STATE(2476)] = { - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_COMMA] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_RPAREN] = ACTIONS(2572), - [anon_sym_COLON] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_RBRACK] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2570), - [sym_optional_chain] = ACTIONS(2572), - [sym_static_chain] = ACTIONS(2572), - [anon_sym_AMP_AMP] = ACTIONS(2572), - [anon_sym_PIPE_PIPE] = ACTIONS(2572), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_GT_GT_GT] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2572), - [anon_sym_BSLASH] = ACTIONS(2572), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2572), - [anon_sym_LT_GT] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2572), - [aux_sym_binary_expression_token1] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2570), - [aux_sym_binary_expression_token2] = ACTIONS(2570), - [aux_sym_binary_expression_token3] = ACTIONS(2570), - [aux_sym_binary_expression_token4] = ACTIONS(2572), - [aux_sym_binary_expression_token5] = ACTIONS(2572), - [aux_sym_binary_expression_token6] = ACTIONS(2572), - [anon_sym_QMARK_QMARK] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2572), - [anon_sym_In] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [anon_sym_IN] = ACTIONS(2570), - [anon_sym_InstanceOf] = ACTIONS(2572), - [anon_sym_instanceof] = ACTIONS(2572), - [anon_sym_INSTANCEOF] = ACTIONS(2572), - [anon_sym_instanceOf] = ACTIONS(2572), - [sym__ternary_qmark] = ACTIONS(2572), - [sym__elvis_operator] = ACTIONS(2572), - [sym_logical_or] = ACTIONS(2572), + [STATE(2546)] = { + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_RBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2443), + [anon_sym_instanceof] = ACTIONS(2443), + [anon_sym_INSTANCEOF] = ACTIONS(2443), + [anon_sym_instanceOf] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), }, - [STATE(2477)] = { - [anon_sym_DOT] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_COMMA] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_RPAREN] = ACTIONS(2576), - [anon_sym_COLON] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_RBRACK] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2574), - [sym_optional_chain] = ACTIONS(2576), - [sym_static_chain] = ACTIONS(2576), - [anon_sym_AMP_AMP] = ACTIONS(2576), - [anon_sym_PIPE_PIPE] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2574), - [anon_sym_GT_GT_GT] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_CARET] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2576), - [anon_sym_BSLASH] = ACTIONS(2576), - [anon_sym_STAR_STAR] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2576), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2576), - [anon_sym_LT_GT] = ACTIONS(2576), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2576), - [aux_sym_binary_expression_token1] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2576), - [anon_sym_GT] = ACTIONS(2574), - [aux_sym_binary_expression_token2] = ACTIONS(2574), - [aux_sym_binary_expression_token3] = ACTIONS(2574), - [aux_sym_binary_expression_token4] = ACTIONS(2576), - [aux_sym_binary_expression_token5] = ACTIONS(2576), - [aux_sym_binary_expression_token6] = ACTIONS(2576), - [anon_sym_QMARK_QMARK] = ACTIONS(2576), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2576), - [anon_sym_In] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [anon_sym_IN] = ACTIONS(2574), - [anon_sym_InstanceOf] = ACTIONS(2576), - [anon_sym_instanceof] = ACTIONS(2576), - [anon_sym_INSTANCEOF] = ACTIONS(2576), - [anon_sym_instanceOf] = ACTIONS(2576), - [sym__ternary_qmark] = ACTIONS(2576), - [sym__elvis_operator] = ACTIONS(2576), - [sym_logical_or] = ACTIONS(2576), + [STATE(2547)] = { + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2456), + [sym_optional_chain] = ACTIONS(2458), + [sym_static_chain] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_BSLASH] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2456), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_LT_GT] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2456), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [aux_sym_binary_expression_token1] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [aux_sym_binary_expression_token2] = ACTIONS(2456), + [aux_sym_binary_expression_token3] = ACTIONS(2456), + [aux_sym_binary_expression_token4] = ACTIONS(2458), + [aux_sym_binary_expression_token5] = ACTIONS(2458), + [aux_sym_binary_expression_token6] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2456), + [anon_sym_IN] = ACTIONS(2456), + [anon_sym_InstanceOf] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_INSTANCEOF] = ACTIONS(2458), + [anon_sym_instanceOf] = ACTIONS(2458), + [anon_sym_Of] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_OF] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2458), + [sym__ternary_qmark] = ACTIONS(2458), + [sym__elvis_operator] = ACTIONS(2458), + [sym_logical_or] = ACTIONS(2458), }, - [STATE(2478)] = { - [anon_sym_DOT] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_RPAREN] = ACTIONS(2580), - [anon_sym_COLON] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_RBRACK] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2578), - [sym_optional_chain] = ACTIONS(2580), - [sym_static_chain] = ACTIONS(2580), - [anon_sym_AMP_AMP] = ACTIONS(2580), - [anon_sym_PIPE_PIPE] = ACTIONS(2580), - [anon_sym_GT_GT] = ACTIONS(2578), - [anon_sym_GT_GT_GT] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_CARET] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2580), - [anon_sym_BSLASH] = ACTIONS(2580), - [anon_sym_STAR_STAR] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_LT_EQ] = ACTIONS(2580), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2580), - [anon_sym_LT_GT] = ACTIONS(2580), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2580), - [aux_sym_binary_expression_token1] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2580), - [anon_sym_GT] = ACTIONS(2578), - [aux_sym_binary_expression_token2] = ACTIONS(2578), - [aux_sym_binary_expression_token3] = ACTIONS(2578), - [aux_sym_binary_expression_token4] = ACTIONS(2580), - [aux_sym_binary_expression_token5] = ACTIONS(2580), - [aux_sym_binary_expression_token6] = ACTIONS(2580), - [anon_sym_QMARK_QMARK] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2580), - [anon_sym_In] = ACTIONS(2578), - [anon_sym_in] = ACTIONS(2578), - [anon_sym_IN] = ACTIONS(2578), - [anon_sym_InstanceOf] = ACTIONS(2580), - [anon_sym_instanceof] = ACTIONS(2580), - [anon_sym_INSTANCEOF] = ACTIONS(2580), - [anon_sym_instanceOf] = ACTIONS(2580), - [sym__ternary_qmark] = ACTIONS(2580), - [sym__elvis_operator] = ACTIONS(2580), - [sym_logical_or] = ACTIONS(2580), + [STATE(2548)] = { + [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2472), + [sym_optional_chain] = ACTIONS(2474), + [sym_static_chain] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_BSLASH] = ACTIONS(2474), + [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), + [anon_sym_LT_GT] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), + [aux_sym_binary_expression_token1] = ACTIONS(2474), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [aux_sym_binary_expression_token2] = ACTIONS(2472), + [aux_sym_binary_expression_token3] = ACTIONS(2472), + [aux_sym_binary_expression_token4] = ACTIONS(2474), + [aux_sym_binary_expression_token5] = ACTIONS(2474), + [aux_sym_binary_expression_token6] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_IN] = ACTIONS(2472), + [anon_sym_InstanceOf] = ACTIONS(2474), + [anon_sym_instanceof] = ACTIONS(2474), + [anon_sym_INSTANCEOF] = ACTIONS(2474), + [anon_sym_instanceOf] = ACTIONS(2474), + [anon_sym_Of] = ACTIONS(2474), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_OF] = ACTIONS(2474), + [sym__automatic_semicolon] = ACTIONS(2474), + [sym__ternary_qmark] = ACTIONS(2474), + [sym__elvis_operator] = ACTIONS(2474), + [sym_logical_or] = ACTIONS(2474), }, - [STATE(2479)] = { - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_RPAREN] = ACTIONS(2480), - [anon_sym_COLON] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_RBRACK] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2478), - [sym_optional_chain] = ACTIONS(2480), - [sym_static_chain] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_BSLASH] = ACTIONS(2480), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_LT_GT] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [aux_sym_binary_expression_token1] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2478), - [aux_sym_binary_expression_token2] = ACTIONS(2478), - [aux_sym_binary_expression_token3] = ACTIONS(2478), - [aux_sym_binary_expression_token4] = ACTIONS(2480), - [aux_sym_binary_expression_token5] = ACTIONS(2480), - [aux_sym_binary_expression_token6] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2480), - [anon_sym_In] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_IN] = ACTIONS(2478), - [anon_sym_InstanceOf] = ACTIONS(2480), - [anon_sym_instanceof] = ACTIONS(2480), - [anon_sym_INSTANCEOF] = ACTIONS(2480), - [anon_sym_instanceOf] = ACTIONS(2480), - [sym__ternary_qmark] = ACTIONS(2480), - [sym__elvis_operator] = ACTIONS(2480), - [sym_logical_or] = ACTIONS(2480), + [STATE(2549)] = { + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_RBRACK] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2240), + [sym_optional_chain] = ACTIONS(2242), + [sym_static_chain] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2242), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2242), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2242), + [aux_sym_binary_expression_token1] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2240), + [aux_sym_binary_expression_token2] = ACTIONS(2240), + [aux_sym_binary_expression_token3] = ACTIONS(2240), + [aux_sym_binary_expression_token4] = ACTIONS(2242), + [aux_sym_binary_expression_token5] = ACTIONS(2242), + [aux_sym_binary_expression_token6] = ACTIONS(2242), + [anon_sym_QMARK_QMARK] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2242), + [anon_sym_In] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_IN] = ACTIONS(2240), + [anon_sym_InstanceOf] = ACTIONS(2242), + [anon_sym_instanceof] = ACTIONS(2242), + [anon_sym_INSTANCEOF] = ACTIONS(2242), + [anon_sym_instanceOf] = ACTIONS(2242), + [sym__ternary_qmark] = ACTIONS(2242), + [sym__elvis_operator] = ACTIONS(2242), + [sym_logical_or] = ACTIONS(2242), }, - [STATE(2480)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_COMMA] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_RPAREN] = ACTIONS(2508), - [anon_sym_COLON] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2506), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_GT_GT_GT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2508), - [anon_sym_STAR_STAR] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2508), - [anon_sym_LT_GT] = ACTIONS(2508), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2508), - [aux_sym_binary_expression_token1] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2506), - [aux_sym_binary_expression_token2] = ACTIONS(2506), - [aux_sym_binary_expression_token3] = ACTIONS(2506), - [aux_sym_binary_expression_token4] = ACTIONS(2508), - [aux_sym_binary_expression_token5] = ACTIONS(2508), - [aux_sym_binary_expression_token6] = ACTIONS(2508), - [anon_sym_QMARK_QMARK] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), + [STATE(2550)] = { + [anon_sym_DOT] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_RPAREN] = ACTIONS(2554), + [anon_sym_COLON] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_RBRACK] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2552), + [sym_optional_chain] = ACTIONS(2554), + [sym_static_chain] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_BSLASH] = ACTIONS(2554), + [anon_sym_STAR_STAR] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2554), + [anon_sym_LT_GT] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2554), + [aux_sym_binary_expression_token1] = ACTIONS(2554), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [aux_sym_binary_expression_token2] = ACTIONS(2552), + [aux_sym_binary_expression_token3] = ACTIONS(2552), + [aux_sym_binary_expression_token4] = ACTIONS(2554), + [aux_sym_binary_expression_token5] = ACTIONS(2554), + [aux_sym_binary_expression_token6] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2508), - [anon_sym_In] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_IN] = ACTIONS(2506), - [anon_sym_InstanceOf] = ACTIONS(2508), - [anon_sym_instanceof] = ACTIONS(2508), - [anon_sym_INSTANCEOF] = ACTIONS(2508), - [anon_sym_instanceOf] = ACTIONS(2508), - [sym__ternary_qmark] = ACTIONS(2508), - [sym__elvis_operator] = ACTIONS(2508), - [sym_logical_or] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_In] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_IN] = ACTIONS(2552), + [anon_sym_InstanceOf] = ACTIONS(2554), + [anon_sym_instanceof] = ACTIONS(2554), + [anon_sym_INSTANCEOF] = ACTIONS(2554), + [anon_sym_instanceOf] = ACTIONS(2554), + [sym__ternary_qmark] = ACTIONS(2554), + [sym__elvis_operator] = ACTIONS(2554), + [sym_logical_or] = ACTIONS(2554), }, - [STATE(2481)] = { - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2478), - [sym_optional_chain] = ACTIONS(2480), - [sym_static_chain] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_BSLASH] = ACTIONS(2480), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_LT_GT] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [aux_sym_binary_expression_token1] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2478), - [aux_sym_binary_expression_token2] = ACTIONS(2478), - [aux_sym_binary_expression_token3] = ACTIONS(2478), - [aux_sym_binary_expression_token4] = ACTIONS(2480), - [aux_sym_binary_expression_token5] = ACTIONS(2480), - [aux_sym_binary_expression_token6] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_IN] = ACTIONS(2478), - [anon_sym_InstanceOf] = ACTIONS(2480), - [anon_sym_instanceof] = ACTIONS(2480), - [anon_sym_INSTANCEOF] = ACTIONS(2480), - [anon_sym_instanceOf] = ACTIONS(2480), - [anon_sym_Of] = ACTIONS(2480), - [anon_sym_of] = ACTIONS(2480), - [anon_sym_OF] = ACTIONS(2480), - [sym__automatic_semicolon] = ACTIONS(2480), - [sym__ternary_qmark] = ACTIONS(2480), - [sym__elvis_operator] = ACTIONS(2480), - [sym_logical_or] = ACTIONS(2480), + [STATE(2551)] = { + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COLON] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_RBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2449), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2449), + [anon_sym_instanceof] = ACTIONS(2449), + [anon_sym_INSTANCEOF] = ACTIONS(2449), + [anon_sym_instanceOf] = ACTIONS(2449), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), }, - [STATE(2482)] = { - [anon_sym_DOT] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_RPAREN] = ACTIONS(2342), - [anon_sym_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_RBRACK] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2340), - [sym_optional_chain] = ACTIONS(2342), - [sym_static_chain] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_BSLASH] = ACTIONS(2342), - [anon_sym_STAR_STAR] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_GT] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [aux_sym_binary_expression_token1] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [aux_sym_binary_expression_token2] = ACTIONS(2340), - [aux_sym_binary_expression_token3] = ACTIONS(2340), - [aux_sym_binary_expression_token4] = ACTIONS(2342), - [aux_sym_binary_expression_token5] = ACTIONS(2342), - [aux_sym_binary_expression_token6] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_In] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_IN] = ACTIONS(2340), - [anon_sym_InstanceOf] = ACTIONS(2342), - [anon_sym_instanceof] = ACTIONS(2342), - [anon_sym_INSTANCEOF] = ACTIONS(2342), - [anon_sym_instanceOf] = ACTIONS(2342), - [sym__ternary_qmark] = ACTIONS(2342), - [sym__elvis_operator] = ACTIONS(2342), - [sym_logical_or] = ACTIONS(2342), + [STATE(2552)] = { + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2536), + [sym_optional_chain] = ACTIONS(2538), + [sym_static_chain] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_BSLASH] = ACTIONS(2538), + [anon_sym_STAR_STAR] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2538), + [anon_sym_LT_GT] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2538), + [aux_sym_binary_expression_token1] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [aux_sym_binary_expression_token2] = ACTIONS(2536), + [aux_sym_binary_expression_token3] = ACTIONS(2536), + [aux_sym_binary_expression_token4] = ACTIONS(2538), + [aux_sym_binary_expression_token5] = ACTIONS(2538), + [aux_sym_binary_expression_token6] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_IN] = ACTIONS(2536), + [anon_sym_InstanceOf] = ACTIONS(2538), + [anon_sym_instanceof] = ACTIONS(2538), + [anon_sym_INSTANCEOF] = ACTIONS(2538), + [anon_sym_instanceOf] = ACTIONS(2538), + [anon_sym_Of] = ACTIONS(2538), + [anon_sym_of] = ACTIONS(2538), + [anon_sym_OF] = ACTIONS(2538), + [sym__automatic_semicolon] = ACTIONS(2538), + [sym__ternary_qmark] = ACTIONS(2538), + [sym__elvis_operator] = ACTIONS(2538), + [sym_logical_or] = ACTIONS(2538), }, - [STATE(2483)] = { - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2288), - [sym_optional_chain] = ACTIONS(2290), - [sym_static_chain] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_BSLASH] = ACTIONS(2290), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_LT_GT] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [aux_sym_binary_expression_token1] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [aux_sym_binary_expression_token2] = ACTIONS(2288), - [aux_sym_binary_expression_token3] = ACTIONS(2288), - [aux_sym_binary_expression_token4] = ACTIONS(2290), - [aux_sym_binary_expression_token5] = ACTIONS(2290), - [aux_sym_binary_expression_token6] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [sym_comment] = ACTIONS(129), - [sym_regex_flags] = ACTIONS(5528), - [anon_sym_In] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_IN] = ACTIONS(2288), - [anon_sym_InstanceOf] = ACTIONS(2290), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_INSTANCEOF] = ACTIONS(2290), - [anon_sym_instanceOf] = ACTIONS(2290), - [anon_sym_Of] = ACTIONS(2290), - [anon_sym_of] = ACTIONS(2288), - [anon_sym_OF] = ACTIONS(2290), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym__ternary_qmark] = ACTIONS(2290), - [sym__elvis_operator] = ACTIONS(2290), - [sym_logical_or] = ACTIONS(2290), + [STATE(2553)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(509), + [anon_sym_of] = ACTIONS(509), + [anon_sym_OF] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2484)] = { - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2540), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2540), - [anon_sym_instanceof] = ACTIONS(2540), - [anon_sym_INSTANCEOF] = ACTIONS(2540), - [anon_sym_instanceOf] = ACTIONS(2540), - [anon_sym_Of] = ACTIONS(2540), - [anon_sym_of] = ACTIONS(2540), - [anon_sym_OF] = ACTIONS(2540), - [sym__automatic_semicolon] = ACTIONS(2540), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), + [STATE(2554)] = { + [anon_sym_DOT] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_COMMA] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2500), + [sym_optional_chain] = ACTIONS(2502), + [sym_static_chain] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(2502), + [anon_sym_STAR_STAR] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2500), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), + [anon_sym_LT_GT] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2500), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), + [aux_sym_binary_expression_token1] = ACTIONS(2502), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [aux_sym_binary_expression_token2] = ACTIONS(2500), + [aux_sym_binary_expression_token3] = ACTIONS(2500), + [aux_sym_binary_expression_token4] = ACTIONS(2502), + [aux_sym_binary_expression_token5] = ACTIONS(2502), + [aux_sym_binary_expression_token6] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2500), + [anon_sym_in] = ACTIONS(2500), + [anon_sym_IN] = ACTIONS(2500), + [anon_sym_InstanceOf] = ACTIONS(2502), + [anon_sym_instanceof] = ACTIONS(2502), + [anon_sym_INSTANCEOF] = ACTIONS(2502), + [anon_sym_instanceOf] = ACTIONS(2502), + [anon_sym_Of] = ACTIONS(2502), + [anon_sym_of] = ACTIONS(2502), + [anon_sym_OF] = ACTIONS(2502), + [sym__automatic_semicolon] = ACTIONS(2502), + [sym__ternary_qmark] = ACTIONS(2502), + [sym__elvis_operator] = ACTIONS(2502), + [sym_logical_or] = ACTIONS(2502), }, - [STATE(2485)] = { - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2502), - [sym_optional_chain] = ACTIONS(2504), - [sym_static_chain] = ACTIONS(2504), - [anon_sym_AMP_AMP] = ACTIONS(2504), - [anon_sym_PIPE_PIPE] = ACTIONS(2504), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_GT_GT_GT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_BSLASH] = ACTIONS(2504), - [anon_sym_STAR_STAR] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_LT_EQ] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2504), - [anon_sym_LT_GT] = ACTIONS(2504), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2504), - [aux_sym_binary_expression_token1] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2504), - [anon_sym_GT] = ACTIONS(2502), - [aux_sym_binary_expression_token2] = ACTIONS(2502), - [aux_sym_binary_expression_token3] = ACTIONS(2502), - [aux_sym_binary_expression_token4] = ACTIONS(2504), - [aux_sym_binary_expression_token5] = ACTIONS(2504), - [aux_sym_binary_expression_token6] = ACTIONS(2504), - [anon_sym_QMARK_QMARK] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_IN] = ACTIONS(2502), - [anon_sym_InstanceOf] = ACTIONS(2504), - [anon_sym_instanceof] = ACTIONS(2504), - [anon_sym_INSTANCEOF] = ACTIONS(2504), - [anon_sym_instanceOf] = ACTIONS(2504), - [anon_sym_Of] = ACTIONS(2504), - [anon_sym_of] = ACTIONS(2504), - [anon_sym_OF] = ACTIONS(2504), - [sym__automatic_semicolon] = ACTIONS(2504), - [sym__ternary_qmark] = ACTIONS(2504), - [sym__elvis_operator] = ACTIONS(2504), - [sym_logical_or] = ACTIONS(2504), + [STATE(2555)] = { + [anon_sym_DOT] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2512), + [sym_optional_chain] = ACTIONS(2514), + [sym_static_chain] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_BSLASH] = ACTIONS(2514), + [anon_sym_STAR_STAR] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2512), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2514), + [anon_sym_LT_GT] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2512), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2514), + [aux_sym_binary_expression_token1] = ACTIONS(2514), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [aux_sym_binary_expression_token2] = ACTIONS(2512), + [aux_sym_binary_expression_token3] = ACTIONS(2512), + [aux_sym_binary_expression_token4] = ACTIONS(2514), + [aux_sym_binary_expression_token5] = ACTIONS(2514), + [aux_sym_binary_expression_token6] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_IN] = ACTIONS(2512), + [anon_sym_InstanceOf] = ACTIONS(2514), + [anon_sym_instanceof] = ACTIONS(2514), + [anon_sym_INSTANCEOF] = ACTIONS(2514), + [anon_sym_instanceOf] = ACTIONS(2514), + [anon_sym_Of] = ACTIONS(2514), + [anon_sym_of] = ACTIONS(2514), + [anon_sym_OF] = ACTIONS(2514), + [sym__automatic_semicolon] = ACTIONS(2514), + [sym__ternary_qmark] = ACTIONS(2514), + [sym__elvis_operator] = ACTIONS(2514), + [sym_logical_or] = ACTIONS(2514), }, - [STATE(2486)] = { - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_RBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2240), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_INSTANCEOF] = ACTIONS(2240), - [anon_sym_instanceOf] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), + [STATE(2556)] = { + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2449), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2449), + [anon_sym_instanceof] = ACTIONS(2449), + [anon_sym_INSTANCEOF] = ACTIONS(2449), + [anon_sym_instanceOf] = ACTIONS(2449), + [anon_sym_Of] = ACTIONS(2449), + [anon_sym_of] = ACTIONS(2449), + [anon_sym_OF] = ACTIONS(2449), + [sym__automatic_semicolon] = ACTIONS(2449), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), }, - [STATE(2487)] = { - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_RBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), + [STATE(2557)] = { + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_RBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2246), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2240), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_INSTANCEOF] = ACTIONS(2240), - [anon_sym_instanceOf] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2246), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2246), + [anon_sym_instanceof] = ACTIONS(2246), + [anon_sym_INSTANCEOF] = ACTIONS(2246), + [anon_sym_instanceOf] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), }, - [STATE(2488)] = { - [anon_sym_DOT] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_COMMA] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_RPAREN] = ACTIONS(2424), - [anon_sym_COLON] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_RBRACK] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2422), - [sym_optional_chain] = ACTIONS(2424), - [sym_static_chain] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2422), - [anon_sym_GT_GT_GT] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_CARET] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2424), - [anon_sym_BSLASH] = ACTIONS(2424), - [anon_sym_STAR_STAR] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), - [anon_sym_LT_GT] = ACTIONS(2424), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), - [aux_sym_binary_expression_token1] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2422), - [aux_sym_binary_expression_token2] = ACTIONS(2422), - [aux_sym_binary_expression_token3] = ACTIONS(2422), - [aux_sym_binary_expression_token4] = ACTIONS(2424), - [aux_sym_binary_expression_token5] = ACTIONS(2424), - [aux_sym_binary_expression_token6] = ACTIONS(2424), - [anon_sym_QMARK_QMARK] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2424), - [anon_sym_In] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_IN] = ACTIONS(2422), - [anon_sym_InstanceOf] = ACTIONS(2424), - [anon_sym_instanceof] = ACTIONS(2424), - [anon_sym_INSTANCEOF] = ACTIONS(2424), - [anon_sym_instanceOf] = ACTIONS(2424), - [sym__ternary_qmark] = ACTIONS(2424), - [sym__elvis_operator] = ACTIONS(2424), - [sym_logical_or] = ACTIONS(2424), + [STATE(2558)] = { + [anon_sym_DOT] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2552), + [sym_optional_chain] = ACTIONS(2554), + [sym_static_chain] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_BSLASH] = ACTIONS(2554), + [anon_sym_STAR_STAR] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2554), + [anon_sym_LT_GT] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2554), + [aux_sym_binary_expression_token1] = ACTIONS(2554), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [aux_sym_binary_expression_token2] = ACTIONS(2552), + [aux_sym_binary_expression_token3] = ACTIONS(2552), + [aux_sym_binary_expression_token4] = ACTIONS(2554), + [aux_sym_binary_expression_token5] = ACTIONS(2554), + [aux_sym_binary_expression_token6] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_IN] = ACTIONS(2552), + [anon_sym_InstanceOf] = ACTIONS(2554), + [anon_sym_instanceof] = ACTIONS(2554), + [anon_sym_INSTANCEOF] = ACTIONS(2554), + [anon_sym_instanceOf] = ACTIONS(2554), + [anon_sym_Of] = ACTIONS(2554), + [anon_sym_of] = ACTIONS(2554), + [anon_sym_OF] = ACTIONS(2554), + [sym__automatic_semicolon] = ACTIONS(2554), + [sym__ternary_qmark] = ACTIONS(2554), + [sym__elvis_operator] = ACTIONS(2554), + [sym_logical_or] = ACTIONS(2554), }, - [STATE(2489)] = { + [STATE(2559)] = { [anon_sym_DOT] = ACTIONS(2246), [anon_sym_STAR] = ACTIONS(2244), [anon_sym_COMMA] = ACTIONS(2246), @@ -368756,7 +375813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(2246), [anon_sym_RPAREN] = ACTIONS(2246), [anon_sym_COLON] = ACTIONS(2244), - [anon_sym_EQ] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(2246), [anon_sym_RBRACK] = ACTIONS(2246), [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), @@ -368811,6 +375867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2246), [anon_sym_DASH_DASH] = ACTIONS(2246), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2246), [anon_sym_In] = ACTIONS(2244), [anon_sym_in] = ACTIONS(2244), [anon_sym_IN] = ACTIONS(2244), @@ -368822,1139 +375879,2192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(2246), [sym_logical_or] = ACTIONS(2246), }, - [STATE(2490)] = { - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1650), - [anon_sym_instanceof] = ACTIONS(1650), - [anon_sym_INSTANCEOF] = ACTIONS(1650), - [anon_sym_instanceOf] = ACTIONS(1650), - [anon_sym_Of] = ACTIONS(1650), - [anon_sym_of] = ACTIONS(1650), - [anon_sym_OF] = ACTIONS(1650), - [sym__automatic_semicolon] = ACTIONS(1650), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), + [STATE(2560)] = { + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_COMMA] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2540), + [sym_optional_chain] = ACTIONS(2542), + [sym_static_chain] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_BSLASH] = ACTIONS(2542), + [anon_sym_STAR_STAR] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2540), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2542), + [anon_sym_LT_GT] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2540), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2542), + [aux_sym_binary_expression_token1] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [aux_sym_binary_expression_token2] = ACTIONS(2540), + [aux_sym_binary_expression_token3] = ACTIONS(2540), + [aux_sym_binary_expression_token4] = ACTIONS(2542), + [aux_sym_binary_expression_token5] = ACTIONS(2542), + [aux_sym_binary_expression_token6] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_IN] = ACTIONS(2540), + [anon_sym_InstanceOf] = ACTIONS(2542), + [anon_sym_instanceof] = ACTIONS(2542), + [anon_sym_INSTANCEOF] = ACTIONS(2542), + [anon_sym_instanceOf] = ACTIONS(2542), + [anon_sym_Of] = ACTIONS(2542), + [anon_sym_of] = ACTIONS(2542), + [anon_sym_OF] = ACTIONS(2542), + [sym__automatic_semicolon] = ACTIONS(2542), + [sym__ternary_qmark] = ACTIONS(2542), + [sym__elvis_operator] = ACTIONS(2542), + [sym_logical_or] = ACTIONS(2542), }, - [STATE(2491)] = { - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), + [STATE(2561)] = { + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_COLON] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_RBRACK] = ACTIONS(2566), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), [sym_comment] = ACTIONS(129), - [anon_sym_Else] = ACTIONS(1700), - [anon_sym_else] = ACTIONS(1700), - [anon_sym_ELSE] = ACTIONS(1700), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1650), - [anon_sym_instanceof] = ACTIONS(1650), - [anon_sym_INSTANCEOF] = ACTIONS(1650), - [anon_sym_instanceOf] = ACTIONS(1650), - [anon_sym_While] = ACTIONS(1700), - [anon_sym_while] = ACTIONS(1700), - [anon_sym_WHILE] = ACTIONS(1700), - [sym__automatic_semicolon] = ACTIONS(5530), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(2566), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2443), + [anon_sym_instanceof] = ACTIONS(2443), + [anon_sym_INSTANCEOF] = ACTIONS(2443), + [anon_sym_instanceOf] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), }, - [STATE(2492)] = { - [anon_sym_DOT] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2418), - [sym_optional_chain] = ACTIONS(2420), - [sym_static_chain] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2420), - [anon_sym_BSLASH] = ACTIONS(2420), - [anon_sym_STAR_STAR] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), - [anon_sym_LT_GT] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), - [aux_sym_binary_expression_token1] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_GT] = ACTIONS(2418), - [aux_sym_binary_expression_token2] = ACTIONS(2418), - [aux_sym_binary_expression_token3] = ACTIONS(2418), - [aux_sym_binary_expression_token4] = ACTIONS(2420), - [aux_sym_binary_expression_token5] = ACTIONS(2420), - [aux_sym_binary_expression_token6] = ACTIONS(2420), - [anon_sym_QMARK_QMARK] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_IN] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(2420), - [anon_sym_instanceof] = ACTIONS(2420), - [anon_sym_INSTANCEOF] = ACTIONS(2420), - [anon_sym_instanceOf] = ACTIONS(2420), - [anon_sym_Of] = ACTIONS(2420), - [anon_sym_of] = ACTIONS(2420), - [anon_sym_OF] = ACTIONS(2420), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(2420), - [sym__elvis_operator] = ACTIONS(2420), - [sym_logical_or] = ACTIONS(2420), + [STATE(2562)] = { + [anon_sym_DOT] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2532), + [sym_optional_chain] = ACTIONS(2534), + [sym_static_chain] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_BSLASH] = ACTIONS(2534), + [anon_sym_STAR_STAR] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2534), + [anon_sym_LT_GT] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2534), + [aux_sym_binary_expression_token1] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [aux_sym_binary_expression_token2] = ACTIONS(2532), + [aux_sym_binary_expression_token3] = ACTIONS(2532), + [aux_sym_binary_expression_token4] = ACTIONS(2534), + [aux_sym_binary_expression_token5] = ACTIONS(2534), + [aux_sym_binary_expression_token6] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_IN] = ACTIONS(2532), + [anon_sym_InstanceOf] = ACTIONS(2534), + [anon_sym_instanceof] = ACTIONS(2534), + [anon_sym_INSTANCEOF] = ACTIONS(2534), + [anon_sym_instanceOf] = ACTIONS(2534), + [anon_sym_Of] = ACTIONS(2534), + [anon_sym_of] = ACTIONS(2534), + [anon_sym_OF] = ACTIONS(2534), + [sym__automatic_semicolon] = ACTIONS(2534), + [sym__ternary_qmark] = ACTIONS(2534), + [sym__elvis_operator] = ACTIONS(2534), + [sym_logical_or] = ACTIONS(2534), }, - [STATE(2493)] = { - [anon_sym_DOT] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_COMMA] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_RPAREN] = ACTIONS(2512), - [anon_sym_COLON] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2512), - [anon_sym_RBRACK] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2510), - [sym_optional_chain] = ACTIONS(2512), - [sym_static_chain] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_PIPE_PIPE] = ACTIONS(2512), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_GT_GT_GT] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_CARET] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2512), - [anon_sym_BSLASH] = ACTIONS(2512), - [anon_sym_STAR_STAR] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2512), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2512), - [anon_sym_LT_GT] = ACTIONS(2512), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2512), - [aux_sym_binary_expression_token1] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2512), - [anon_sym_GT] = ACTIONS(2510), - [aux_sym_binary_expression_token2] = ACTIONS(2510), - [aux_sym_binary_expression_token3] = ACTIONS(2510), - [aux_sym_binary_expression_token4] = ACTIONS(2512), - [aux_sym_binary_expression_token5] = ACTIONS(2512), - [aux_sym_binary_expression_token6] = ACTIONS(2512), - [anon_sym_QMARK_QMARK] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), + [STATE(2563)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2564)] = { + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1686), + [anon_sym_instanceof] = ACTIONS(1686), + [anon_sym_INSTANCEOF] = ACTIONS(1686), + [anon_sym_instanceOf] = ACTIONS(1686), + [anon_sym_Of] = ACTIONS(1686), + [anon_sym_of] = ACTIONS(1686), + [anon_sym_OF] = ACTIONS(1686), + [sym__automatic_semicolon] = ACTIONS(1686), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + }, + [STATE(2565)] = { + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2558), + [anon_sym_COLON] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_RBRACK] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2449), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2512), - [anon_sym_In] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_IN] = ACTIONS(2510), - [anon_sym_InstanceOf] = ACTIONS(2512), - [anon_sym_instanceof] = ACTIONS(2512), - [anon_sym_INSTANCEOF] = ACTIONS(2512), - [anon_sym_instanceOf] = ACTIONS(2512), - [sym__ternary_qmark] = ACTIONS(2512), - [sym__elvis_operator] = ACTIONS(2512), - [sym_logical_or] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2449), + [anon_sym_instanceof] = ACTIONS(2449), + [anon_sym_INSTANCEOF] = ACTIONS(2449), + [anon_sym_instanceOf] = ACTIONS(2449), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), }, - [STATE(2494)] = { - [anon_sym_DOT] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_COLON] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_RBRACK] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2558), - [sym_optional_chain] = ACTIONS(2560), - [sym_static_chain] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_GT_GT_GT] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2560), - [anon_sym_BSLASH] = ACTIONS(2560), - [anon_sym_STAR_STAR] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2560), - [anon_sym_LT_GT] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2560), - [aux_sym_binary_expression_token1] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2558), - [aux_sym_binary_expression_token2] = ACTIONS(2558), - [aux_sym_binary_expression_token3] = ACTIONS(2558), - [aux_sym_binary_expression_token4] = ACTIONS(2560), - [aux_sym_binary_expression_token5] = ACTIONS(2560), - [aux_sym_binary_expression_token6] = ACTIONS(2560), - [anon_sym_QMARK_QMARK] = ACTIONS(2560), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), + [STATE(2566)] = { + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_COMMA] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_COLON] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_RBRACK] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2540), + [sym_optional_chain] = ACTIONS(2542), + [sym_static_chain] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_BSLASH] = ACTIONS(2542), + [anon_sym_STAR_STAR] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2540), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2542), + [anon_sym_LT_GT] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2540), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2542), + [aux_sym_binary_expression_token1] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [aux_sym_binary_expression_token2] = ACTIONS(2540), + [aux_sym_binary_expression_token3] = ACTIONS(2540), + [aux_sym_binary_expression_token4] = ACTIONS(2542), + [aux_sym_binary_expression_token5] = ACTIONS(2542), + [aux_sym_binary_expression_token6] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2560), - [anon_sym_In] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_IN] = ACTIONS(2558), - [anon_sym_InstanceOf] = ACTIONS(2560), - [anon_sym_instanceof] = ACTIONS(2560), - [anon_sym_INSTANCEOF] = ACTIONS(2560), - [anon_sym_instanceOf] = ACTIONS(2560), - [sym__ternary_qmark] = ACTIONS(2560), - [sym__elvis_operator] = ACTIONS(2560), - [sym_logical_or] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2542), + [anon_sym_In] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_IN] = ACTIONS(2540), + [anon_sym_InstanceOf] = ACTIONS(2542), + [anon_sym_instanceof] = ACTIONS(2542), + [anon_sym_INSTANCEOF] = ACTIONS(2542), + [anon_sym_instanceOf] = ACTIONS(2542), + [sym__ternary_qmark] = ACTIONS(2542), + [sym__elvis_operator] = ACTIONS(2542), + [sym_logical_or] = ACTIONS(2542), }, - [STATE(2495)] = { - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2542), - [sym_optional_chain] = ACTIONS(2544), - [sym_static_chain] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2544), - [anon_sym_BSLASH] = ACTIONS(2544), - [anon_sym_STAR_STAR] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2544), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2544), - [anon_sym_LT_GT] = ACTIONS(2544), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2544), - [aux_sym_binary_expression_token1] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2544), - [anon_sym_GT] = ACTIONS(2542), - [aux_sym_binary_expression_token2] = ACTIONS(2542), - [aux_sym_binary_expression_token3] = ACTIONS(2542), - [aux_sym_binary_expression_token4] = ACTIONS(2544), - [aux_sym_binary_expression_token5] = ACTIONS(2544), - [aux_sym_binary_expression_token6] = ACTIONS(2544), - [anon_sym_QMARK_QMARK] = ACTIONS(2544), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_IN] = ACTIONS(2542), - [anon_sym_InstanceOf] = ACTIONS(2544), - [anon_sym_instanceof] = ACTIONS(2544), - [anon_sym_INSTANCEOF] = ACTIONS(2544), - [anon_sym_instanceOf] = ACTIONS(2544), - [anon_sym_Of] = ACTIONS(2544), - [anon_sym_of] = ACTIONS(2544), - [anon_sym_OF] = ACTIONS(2544), - [sym__automatic_semicolon] = ACTIONS(2544), - [sym__ternary_qmark] = ACTIONS(2544), - [sym__elvis_operator] = ACTIONS(2544), - [sym_logical_or] = ACTIONS(2544), + [STATE(2567)] = { + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_RPAREN] = ACTIONS(2390), + [anon_sym_COLON] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_RBRACK] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2388), + [sym_optional_chain] = ACTIONS(2390), + [sym_static_chain] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_BSLASH] = ACTIONS(2390), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_LT_GT] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [aux_sym_binary_expression_token1] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2388), + [aux_sym_binary_expression_token2] = ACTIONS(2388), + [aux_sym_binary_expression_token3] = ACTIONS(2388), + [aux_sym_binary_expression_token4] = ACTIONS(2390), + [aux_sym_binary_expression_token5] = ACTIONS(2390), + [aux_sym_binary_expression_token6] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2390), + [anon_sym_In] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_IN] = ACTIONS(2388), + [anon_sym_InstanceOf] = ACTIONS(2390), + [anon_sym_instanceof] = ACTIONS(2390), + [anon_sym_INSTANCEOF] = ACTIONS(2390), + [anon_sym_instanceOf] = ACTIONS(2390), + [sym__ternary_qmark] = ACTIONS(2390), + [sym__elvis_operator] = ACTIONS(2390), + [sym_logical_or] = ACTIONS(2390), }, - [STATE(2496)] = { - [anon_sym_DOT] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_RPAREN] = ACTIONS(2322), - [anon_sym_COLON] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_RBRACK] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2320), - [sym_optional_chain] = ACTIONS(2322), - [sym_static_chain] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_BSLASH] = ACTIONS(2322), - [anon_sym_STAR_STAR] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_LT_GT] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2322), - [aux_sym_binary_expression_token1] = ACTIONS(2322), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [aux_sym_binary_expression_token2] = ACTIONS(2320), - [aux_sym_binary_expression_token3] = ACTIONS(2320), - [aux_sym_binary_expression_token4] = ACTIONS(2322), - [aux_sym_binary_expression_token5] = ACTIONS(2322), - [aux_sym_binary_expression_token6] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2322), - [anon_sym_In] = ACTIONS(2320), - [anon_sym_in] = ACTIONS(2320), - [anon_sym_IN] = ACTIONS(2320), - [anon_sym_InstanceOf] = ACTIONS(2322), - [anon_sym_instanceof] = ACTIONS(2322), - [anon_sym_INSTANCEOF] = ACTIONS(2322), - [anon_sym_instanceOf] = ACTIONS(2322), - [sym__ternary_qmark] = ACTIONS(2322), - [sym__elvis_operator] = ACTIONS(2322), - [sym_logical_or] = ACTIONS(2322), + [STATE(2568)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [anon_sym_Of] = ACTIONS(1087), + [anon_sym_of] = ACTIONS(1087), + [anon_sym_OF] = ACTIONS(1087), + [sym__automatic_semicolon] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2497)] = { - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2324), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_COLON] = ACTIONS(2324), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_RBRACK] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), - [sym_optional_chain] = ACTIONS(2326), - [sym_static_chain] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_GT_GT_GT] = ACTIONS(2326), - [anon_sym_LT_LT] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_SLASH] = ACTIONS(2324), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_BSLASH] = ACTIONS(2326), - [anon_sym_STAR_STAR] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2326), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), - [anon_sym_LT_GT] = ACTIONS(2326), - [anon_sym_BANG_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), - [aux_sym_binary_expression_token1] = ACTIONS(2326), - [anon_sym_GT_EQ] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2324), - [aux_sym_binary_expression_token2] = ACTIONS(2324), - [aux_sym_binary_expression_token3] = ACTIONS(2324), - [aux_sym_binary_expression_token4] = ACTIONS(2326), - [aux_sym_binary_expression_token5] = ACTIONS(2326), - [aux_sym_binary_expression_token6] = ACTIONS(2326), - [anon_sym_QMARK_QMARK] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_DASH_DASH] = ACTIONS(2326), + [STATE(2569)] = { + [anon_sym_DOT] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_COMMA] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_RPAREN] = ACTIONS(2494), + [anon_sym_COLON] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_RBRACK] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2492), + [sym_optional_chain] = ACTIONS(2494), + [sym_static_chain] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_BSLASH] = ACTIONS(2494), + [anon_sym_STAR_STAR] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2494), + [anon_sym_LT_GT] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2494), + [aux_sym_binary_expression_token1] = ACTIONS(2494), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [aux_sym_binary_expression_token2] = ACTIONS(2492), + [aux_sym_binary_expression_token3] = ACTIONS(2492), + [aux_sym_binary_expression_token4] = ACTIONS(2494), + [aux_sym_binary_expression_token5] = ACTIONS(2494), + [aux_sym_binary_expression_token6] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2326), - [anon_sym_In] = ACTIONS(2324), - [anon_sym_in] = ACTIONS(2324), - [anon_sym_IN] = ACTIONS(2324), - [anon_sym_InstanceOf] = ACTIONS(2326), - [anon_sym_instanceof] = ACTIONS(2326), - [anon_sym_INSTANCEOF] = ACTIONS(2326), - [anon_sym_instanceOf] = ACTIONS(2326), - [sym__ternary_qmark] = ACTIONS(2326), - [sym__elvis_operator] = ACTIONS(2326), - [sym_logical_or] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_In] = ACTIONS(2492), + [anon_sym_in] = ACTIONS(2492), + [anon_sym_IN] = ACTIONS(2492), + [anon_sym_InstanceOf] = ACTIONS(2494), + [anon_sym_instanceof] = ACTIONS(2494), + [anon_sym_INSTANCEOF] = ACTIONS(2494), + [anon_sym_instanceOf] = ACTIONS(2494), + [sym__ternary_qmark] = ACTIONS(2494), + [sym__elvis_operator] = ACTIONS(2494), + [sym_logical_or] = ACTIONS(2494), }, - [STATE(2498)] = { - [anon_sym_DOT] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2330), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_RPAREN] = ACTIONS(2330), - [anon_sym_COLON] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_RBRACK] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2328), - [sym_optional_chain] = ACTIONS(2330), - [sym_static_chain] = ACTIONS(2330), - [anon_sym_AMP_AMP] = ACTIONS(2330), - [anon_sym_PIPE_PIPE] = ACTIONS(2330), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2330), - [anon_sym_LT_LT] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2330), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2330), - [anon_sym_BSLASH] = ACTIONS(2330), - [anon_sym_STAR_STAR] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2330), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2330), - [anon_sym_LT_GT] = ACTIONS(2330), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2330), - [aux_sym_binary_expression_token1] = ACTIONS(2330), - [anon_sym_GT_EQ] = ACTIONS(2330), - [anon_sym_GT] = ACTIONS(2328), - [aux_sym_binary_expression_token2] = ACTIONS(2328), - [aux_sym_binary_expression_token3] = ACTIONS(2328), - [aux_sym_binary_expression_token4] = ACTIONS(2330), - [aux_sym_binary_expression_token5] = ACTIONS(2330), - [aux_sym_binary_expression_token6] = ACTIONS(2330), - [anon_sym_QMARK_QMARK] = ACTIONS(2330), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_DASH_DASH] = ACTIONS(2330), + [STATE(2570)] = { + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [sym_comment] = ACTIONS(129), + [anon_sym_Else] = ACTIONS(1698), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_ELSE] = ACTIONS(1698), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1686), + [anon_sym_instanceof] = ACTIONS(1686), + [anon_sym_INSTANCEOF] = ACTIONS(1686), + [anon_sym_instanceOf] = ACTIONS(1686), + [anon_sym_While] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_WHILE] = ACTIONS(1698), + [sym__automatic_semicolon] = ACTIONS(5555), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + }, + [STATE(2571)] = { + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_RPAREN] = ACTIONS(2470), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_RBRACK] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2468), + [sym_optional_chain] = ACTIONS(2470), + [sym_static_chain] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_BSLASH] = ACTIONS(2470), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_LT_GT] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [aux_sym_binary_expression_token1] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [aux_sym_binary_expression_token2] = ACTIONS(2468), + [aux_sym_binary_expression_token3] = ACTIONS(2468), + [aux_sym_binary_expression_token4] = ACTIONS(2470), + [aux_sym_binary_expression_token5] = ACTIONS(2470), + [aux_sym_binary_expression_token6] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_In] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2468), + [anon_sym_IN] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(2470), + [anon_sym_instanceof] = ACTIONS(2470), + [anon_sym_INSTANCEOF] = ACTIONS(2470), + [anon_sym_instanceOf] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(2470), + [sym__elvis_operator] = ACTIONS(2470), + [sym_logical_or] = ACTIONS(2470), + }, + [STATE(2572)] = { + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2556), + [sym_optional_chain] = ACTIONS(2558), + [sym_static_chain] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_BSLASH] = ACTIONS(2558), + [anon_sym_STAR_STAR] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2558), + [anon_sym_LT_GT] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2558), + [aux_sym_binary_expression_token1] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [aux_sym_binary_expression_token2] = ACTIONS(2556), + [aux_sym_binary_expression_token3] = ACTIONS(2556), + [aux_sym_binary_expression_token4] = ACTIONS(2558), + [aux_sym_binary_expression_token5] = ACTIONS(2558), + [aux_sym_binary_expression_token6] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_IN] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2558), + [anon_sym_instanceof] = ACTIONS(2558), + [anon_sym_INSTANCEOF] = ACTIONS(2558), + [anon_sym_instanceOf] = ACTIONS(2558), + [anon_sym_Of] = ACTIONS(2558), + [anon_sym_of] = ACTIONS(2558), + [anon_sym_OF] = ACTIONS(2558), + [sym__automatic_semicolon] = ACTIONS(2558), + [sym__ternary_qmark] = ACTIONS(2558), + [sym__elvis_operator] = ACTIONS(2558), + [sym_logical_or] = ACTIONS(2558), + }, + [STATE(2573)] = { + [anon_sym_DOT] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_COMMA] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2580), + [sym_optional_chain] = ACTIONS(2582), + [sym_static_chain] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_BSLASH] = ACTIONS(2582), + [anon_sym_STAR_STAR] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2582), + [anon_sym_LT_GT] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2582), + [aux_sym_binary_expression_token1] = ACTIONS(2582), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [aux_sym_binary_expression_token2] = ACTIONS(2580), + [aux_sym_binary_expression_token3] = ACTIONS(2580), + [aux_sym_binary_expression_token4] = ACTIONS(2582), + [aux_sym_binary_expression_token5] = ACTIONS(2582), + [aux_sym_binary_expression_token6] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2580), + [anon_sym_IN] = ACTIONS(2580), + [anon_sym_InstanceOf] = ACTIONS(2582), + [anon_sym_instanceof] = ACTIONS(2582), + [anon_sym_INSTANCEOF] = ACTIONS(2582), + [anon_sym_instanceOf] = ACTIONS(2582), + [anon_sym_Of] = ACTIONS(2582), + [anon_sym_of] = ACTIONS(2582), + [anon_sym_OF] = ACTIONS(2582), + [sym__automatic_semicolon] = ACTIONS(2582), + [sym__ternary_qmark] = ACTIONS(2582), + [sym__elvis_operator] = ACTIONS(2582), + [sym_logical_or] = ACTIONS(2582), + }, + [STATE(2574)] = { + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2412), + [sym_optional_chain] = ACTIONS(2414), + [sym_static_chain] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_BSLASH] = ACTIONS(2414), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_LT_GT] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [aux_sym_binary_expression_token1] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [aux_sym_binary_expression_token2] = ACTIONS(2412), + [aux_sym_binary_expression_token3] = ACTIONS(2412), + [aux_sym_binary_expression_token4] = ACTIONS(2414), + [aux_sym_binary_expression_token5] = ACTIONS(2414), + [aux_sym_binary_expression_token6] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_IN] = ACTIONS(2412), + [anon_sym_InstanceOf] = ACTIONS(2414), + [anon_sym_instanceof] = ACTIONS(2414), + [anon_sym_INSTANCEOF] = ACTIONS(2414), + [anon_sym_instanceOf] = ACTIONS(2414), + [anon_sym_Of] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_OF] = ACTIONS(2414), + [sym__automatic_semicolon] = ACTIONS(2414), + [sym__ternary_qmark] = ACTIONS(2414), + [sym__elvis_operator] = ACTIONS(2414), + [sym_logical_or] = ACTIONS(2414), + }, + [STATE(2575)] = { + [anon_sym_DOT] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_COMMA] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_RPAREN] = ACTIONS(2510), + [anon_sym_COLON] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_RBRACK] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2508), + [sym_optional_chain] = ACTIONS(2510), + [sym_static_chain] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_BSLASH] = ACTIONS(2510), + [anon_sym_STAR_STAR] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), + [anon_sym_LT_GT] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), + [aux_sym_binary_expression_token1] = ACTIONS(2510), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [aux_sym_binary_expression_token2] = ACTIONS(2508), + [aux_sym_binary_expression_token3] = ACTIONS(2508), + [aux_sym_binary_expression_token4] = ACTIONS(2510), + [aux_sym_binary_expression_token5] = ACTIONS(2510), + [aux_sym_binary_expression_token6] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2510), + [anon_sym_In] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_IN] = ACTIONS(2508), + [anon_sym_InstanceOf] = ACTIONS(2510), + [anon_sym_instanceof] = ACTIONS(2510), + [anon_sym_INSTANCEOF] = ACTIONS(2510), + [anon_sym_instanceOf] = ACTIONS(2510), + [sym__ternary_qmark] = ACTIONS(2510), + [sym__elvis_operator] = ACTIONS(2510), + [sym_logical_or] = ACTIONS(2510), + }, + [STATE(2576)] = { + [anon_sym_DOT] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_COMMA] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_COLON] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_RBRACK] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2580), + [sym_optional_chain] = ACTIONS(2582), + [sym_static_chain] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_BSLASH] = ACTIONS(2582), + [anon_sym_STAR_STAR] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2582), + [anon_sym_LT_GT] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2582), + [aux_sym_binary_expression_token1] = ACTIONS(2582), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [aux_sym_binary_expression_token2] = ACTIONS(2580), + [aux_sym_binary_expression_token3] = ACTIONS(2580), + [aux_sym_binary_expression_token4] = ACTIONS(2582), + [aux_sym_binary_expression_token5] = ACTIONS(2582), + [aux_sym_binary_expression_token6] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_In] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2580), + [anon_sym_IN] = ACTIONS(2580), + [anon_sym_InstanceOf] = ACTIONS(2582), + [anon_sym_instanceof] = ACTIONS(2582), + [anon_sym_INSTANCEOF] = ACTIONS(2582), + [anon_sym_instanceOf] = ACTIONS(2582), + [sym__ternary_qmark] = ACTIONS(2582), + [sym__elvis_operator] = ACTIONS(2582), + [sym_logical_or] = ACTIONS(2582), + }, + [STATE(2577)] = { + [anon_sym_DOT] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_COMMA] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_RBRACK] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2516), + [sym_optional_chain] = ACTIONS(2518), + [sym_static_chain] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_BSLASH] = ACTIONS(2518), + [anon_sym_STAR_STAR] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2518), + [anon_sym_LT_GT] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2518), + [aux_sym_binary_expression_token1] = ACTIONS(2518), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [aux_sym_binary_expression_token2] = ACTIONS(2516), + [aux_sym_binary_expression_token3] = ACTIONS(2516), + [aux_sym_binary_expression_token4] = ACTIONS(2518), + [aux_sym_binary_expression_token5] = ACTIONS(2518), + [aux_sym_binary_expression_token6] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2518), + [anon_sym_In] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_IN] = ACTIONS(2516), + [anon_sym_InstanceOf] = ACTIONS(2518), + [anon_sym_instanceof] = ACTIONS(2518), + [anon_sym_INSTANCEOF] = ACTIONS(2518), + [anon_sym_instanceOf] = ACTIONS(2518), + [sym__ternary_qmark] = ACTIONS(2518), + [sym__elvis_operator] = ACTIONS(2518), + [sym_logical_or] = ACTIONS(2518), + }, + [STATE(2578)] = { + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2460), + [sym_optional_chain] = ACTIONS(2462), + [sym_static_chain] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_BSLASH] = ACTIONS(2462), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_LT_GT] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [aux_sym_binary_expression_token1] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [aux_sym_binary_expression_token2] = ACTIONS(2460), + [aux_sym_binary_expression_token3] = ACTIONS(2460), + [aux_sym_binary_expression_token4] = ACTIONS(2462), + [aux_sym_binary_expression_token5] = ACTIONS(2462), + [aux_sym_binary_expression_token6] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2460), + [anon_sym_in] = ACTIONS(2460), + [anon_sym_IN] = ACTIONS(2460), + [anon_sym_InstanceOf] = ACTIONS(2462), + [anon_sym_instanceof] = ACTIONS(2462), + [anon_sym_INSTANCEOF] = ACTIONS(2462), + [anon_sym_instanceOf] = ACTIONS(2462), + [anon_sym_Of] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_OF] = ACTIONS(2462), + [sym__automatic_semicolon] = ACTIONS(2462), + [sym__ternary_qmark] = ACTIONS(2462), + [sym__elvis_operator] = ACTIONS(2462), + [sym_logical_or] = ACTIONS(2462), + }, + [STATE(2579)] = { + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2443), + [anon_sym_instanceof] = ACTIONS(2443), + [anon_sym_INSTANCEOF] = ACTIONS(2443), + [anon_sym_instanceOf] = ACTIONS(2443), + [anon_sym_Of] = ACTIONS(2443), + [anon_sym_of] = ACTIONS(2443), + [anon_sym_OF] = ACTIONS(2443), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + }, + [STATE(2580)] = { + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_RPAREN] = ACTIONS(2414), + [anon_sym_COLON] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_RBRACK] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2412), + [sym_optional_chain] = ACTIONS(2414), + [sym_static_chain] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_BSLASH] = ACTIONS(2414), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_LT_GT] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [aux_sym_binary_expression_token1] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [aux_sym_binary_expression_token2] = ACTIONS(2412), + [aux_sym_binary_expression_token3] = ACTIONS(2412), + [aux_sym_binary_expression_token4] = ACTIONS(2414), + [aux_sym_binary_expression_token5] = ACTIONS(2414), + [aux_sym_binary_expression_token6] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2414), + [anon_sym_In] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_IN] = ACTIONS(2412), + [anon_sym_InstanceOf] = ACTIONS(2414), + [anon_sym_instanceof] = ACTIONS(2414), + [anon_sym_INSTANCEOF] = ACTIONS(2414), + [anon_sym_instanceOf] = ACTIONS(2414), + [sym__ternary_qmark] = ACTIONS(2414), + [sym__elvis_operator] = ACTIONS(2414), + [sym_logical_or] = ACTIONS(2414), + }, + [STATE(2581)] = { + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_RBRACK] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2338), + [sym_optional_chain] = ACTIONS(2342), + [sym_static_chain] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2338), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_BSLASH] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_LT_GT] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [aux_sym_binary_expression_token1] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2338), + [aux_sym_binary_expression_token2] = ACTIONS(2338), + [aux_sym_binary_expression_token3] = ACTIONS(2338), + [aux_sym_binary_expression_token4] = ACTIONS(2342), + [aux_sym_binary_expression_token5] = ACTIONS(2342), + [aux_sym_binary_expression_token6] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2330), - [anon_sym_In] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_IN] = ACTIONS(2328), - [anon_sym_InstanceOf] = ACTIONS(2330), - [anon_sym_instanceof] = ACTIONS(2330), - [anon_sym_INSTANCEOF] = ACTIONS(2330), - [anon_sym_instanceOf] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2330), - [sym__elvis_operator] = ACTIONS(2330), - [sym_logical_or] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_In] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_IN] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_INSTANCEOF] = ACTIONS(2342), + [anon_sym_instanceOf] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(2342), + [sym__elvis_operator] = ACTIONS(2342), + [sym_logical_or] = ACTIONS(2342), }, - [STATE(2499)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_RPAREN] = ACTIONS(1085), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_RBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), + [STATE(2582)] = { + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_COLON] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_RBRACK] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2536), + [sym_optional_chain] = ACTIONS(2538), + [sym_static_chain] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_BSLASH] = ACTIONS(2538), + [anon_sym_STAR_STAR] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2538), + [anon_sym_LT_GT] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2538), + [aux_sym_binary_expression_token1] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [aux_sym_binary_expression_token2] = ACTIONS(2536), + [aux_sym_binary_expression_token3] = ACTIONS(2536), + [aux_sym_binary_expression_token4] = ACTIONS(2538), + [aux_sym_binary_expression_token5] = ACTIONS(2538), + [aux_sym_binary_expression_token6] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1085), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_In] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_IN] = ACTIONS(2536), + [anon_sym_InstanceOf] = ACTIONS(2538), + [anon_sym_instanceof] = ACTIONS(2538), + [anon_sym_INSTANCEOF] = ACTIONS(2538), + [anon_sym_instanceOf] = ACTIONS(2538), + [sym__ternary_qmark] = ACTIONS(2538), + [sym__elvis_operator] = ACTIONS(2538), + [sym_logical_or] = ACTIONS(2538), }, - [STATE(2500)] = { - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_COMMA] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_COLON] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2516), - [anon_sym_RBRACK] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2514), - [sym_optional_chain] = ACTIONS(2516), - [sym_static_chain] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_GT_GT_GT] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_CARET] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2516), - [anon_sym_BSLASH] = ACTIONS(2516), - [anon_sym_STAR_STAR] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2516), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2516), - [anon_sym_LT_GT] = ACTIONS(2516), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2516), - [aux_sym_binary_expression_token1] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2516), - [anon_sym_GT] = ACTIONS(2514), - [aux_sym_binary_expression_token2] = ACTIONS(2514), - [aux_sym_binary_expression_token3] = ACTIONS(2514), - [aux_sym_binary_expression_token4] = ACTIONS(2516), - [aux_sym_binary_expression_token5] = ACTIONS(2516), - [aux_sym_binary_expression_token6] = ACTIONS(2516), - [anon_sym_QMARK_QMARK] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2516), - [anon_sym_In] = ACTIONS(2514), - [anon_sym_in] = ACTIONS(2514), - [anon_sym_IN] = ACTIONS(2514), - [anon_sym_InstanceOf] = ACTIONS(2516), - [anon_sym_instanceof] = ACTIONS(2516), - [anon_sym_INSTANCEOF] = ACTIONS(2516), - [anon_sym_instanceOf] = ACTIONS(2516), - [sym__ternary_qmark] = ACTIONS(2516), - [sym__elvis_operator] = ACTIONS(2516), - [sym_logical_or] = ACTIONS(2516), + [STATE(2583)] = { + [anon_sym_DOT] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2496), + [sym_optional_chain] = ACTIONS(2498), + [sym_static_chain] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_BSLASH] = ACTIONS(2498), + [anon_sym_STAR_STAR] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), + [anon_sym_LT_GT] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), + [aux_sym_binary_expression_token1] = ACTIONS(2498), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [aux_sym_binary_expression_token2] = ACTIONS(2496), + [aux_sym_binary_expression_token3] = ACTIONS(2496), + [aux_sym_binary_expression_token4] = ACTIONS(2498), + [aux_sym_binary_expression_token5] = ACTIONS(2498), + [aux_sym_binary_expression_token6] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2496), + [anon_sym_in] = ACTIONS(2496), + [anon_sym_IN] = ACTIONS(2496), + [anon_sym_InstanceOf] = ACTIONS(2498), + [anon_sym_instanceof] = ACTIONS(2498), + [anon_sym_INSTANCEOF] = ACTIONS(2498), + [anon_sym_instanceOf] = ACTIONS(2498), + [anon_sym_Of] = ACTIONS(2498), + [anon_sym_of] = ACTIONS(2498), + [anon_sym_OF] = ACTIONS(2498), + [sym__automatic_semicolon] = ACTIONS(2498), + [sym__ternary_qmark] = ACTIONS(2498), + [sym__elvis_operator] = ACTIONS(2498), + [sym_logical_or] = ACTIONS(2498), }, - [STATE(2501)] = { - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_RPAREN] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_RBRACK] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2502), - [sym_optional_chain] = ACTIONS(2504), - [sym_static_chain] = ACTIONS(2504), - [anon_sym_AMP_AMP] = ACTIONS(2504), - [anon_sym_PIPE_PIPE] = ACTIONS(2504), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_GT_GT_GT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_BSLASH] = ACTIONS(2504), - [anon_sym_STAR_STAR] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_LT_EQ] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2504), - [anon_sym_LT_GT] = ACTIONS(2504), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2504), - [aux_sym_binary_expression_token1] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2504), - [anon_sym_GT] = ACTIONS(2502), - [aux_sym_binary_expression_token2] = ACTIONS(2502), - [aux_sym_binary_expression_token3] = ACTIONS(2502), - [aux_sym_binary_expression_token4] = ACTIONS(2504), - [aux_sym_binary_expression_token5] = ACTIONS(2504), - [aux_sym_binary_expression_token6] = ACTIONS(2504), - [anon_sym_QMARK_QMARK] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2504), - [anon_sym_In] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_IN] = ACTIONS(2502), - [anon_sym_InstanceOf] = ACTIONS(2504), - [anon_sym_instanceof] = ACTIONS(2504), - [anon_sym_INSTANCEOF] = ACTIONS(2504), - [anon_sym_instanceOf] = ACTIONS(2504), - [sym__ternary_qmark] = ACTIONS(2504), - [sym__elvis_operator] = ACTIONS(2504), - [sym_logical_or] = ACTIONS(2504), + [STATE(2584)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1087), + [anon_sym_RBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2502)] = { - [anon_sym_DOT] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(2484), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), - [sym_optional_chain] = ACTIONS(2484), - [sym_static_chain] = ACTIONS(2484), - [anon_sym_AMP_AMP] = ACTIONS(2484), - [anon_sym_PIPE_PIPE] = ACTIONS(2484), - [anon_sym_GT_GT] = ACTIONS(2482), - [anon_sym_GT_GT_GT] = ACTIONS(2484), - [anon_sym_LT_LT] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_CARET] = ACTIONS(2484), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(2484), - [anon_sym_BSLASH] = ACTIONS(2484), - [anon_sym_STAR_STAR] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_LT_EQ] = ACTIONS(2484), - [anon_sym_EQ_EQ] = ACTIONS(2482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), - [anon_sym_LT_GT] = ACTIONS(2484), - [anon_sym_BANG_EQ] = ACTIONS(2482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), - [aux_sym_binary_expression_token1] = ACTIONS(2484), - [anon_sym_GT_EQ] = ACTIONS(2484), - [anon_sym_GT] = ACTIONS(2482), - [aux_sym_binary_expression_token2] = ACTIONS(2482), - [aux_sym_binary_expression_token3] = ACTIONS(2482), - [aux_sym_binary_expression_token4] = ACTIONS(2484), - [aux_sym_binary_expression_token5] = ACTIONS(2484), - [aux_sym_binary_expression_token6] = ACTIONS(2484), - [anon_sym_QMARK_QMARK] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2482), - [anon_sym_in] = ACTIONS(2482), - [anon_sym_IN] = ACTIONS(2482), - [anon_sym_InstanceOf] = ACTIONS(2484), - [anon_sym_instanceof] = ACTIONS(2484), - [anon_sym_INSTANCEOF] = ACTIONS(2484), - [anon_sym_instanceOf] = ACTIONS(2484), - [anon_sym_Of] = ACTIONS(2484), - [anon_sym_of] = ACTIONS(2484), - [anon_sym_OF] = ACTIONS(2484), - [sym__automatic_semicolon] = ACTIONS(2484), - [sym__ternary_qmark] = ACTIONS(2484), - [sym__elvis_operator] = ACTIONS(2484), - [sym_logical_or] = ACTIONS(2484), + [STATE(2585)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2309), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2309), + [anon_sym_instanceof] = ACTIONS(2309), + [anon_sym_INSTANCEOF] = ACTIONS(2309), + [anon_sym_instanceOf] = ACTIONS(2309), + [anon_sym_Of] = ACTIONS(1716), + [anon_sym_of] = ACTIONS(1716), + [anon_sym_OF] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), }, - [STATE(2503)] = { - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2324), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), - [sym_optional_chain] = ACTIONS(2326), - [sym_static_chain] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_GT_GT_GT] = ACTIONS(2326), - [anon_sym_LT_LT] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_SLASH] = ACTIONS(2324), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_BSLASH] = ACTIONS(2326), - [anon_sym_STAR_STAR] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2326), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), - [anon_sym_LT_GT] = ACTIONS(2326), - [anon_sym_BANG_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), - [aux_sym_binary_expression_token1] = ACTIONS(2326), - [anon_sym_GT_EQ] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2324), - [aux_sym_binary_expression_token2] = ACTIONS(2324), - [aux_sym_binary_expression_token3] = ACTIONS(2324), - [aux_sym_binary_expression_token4] = ACTIONS(2326), - [aux_sym_binary_expression_token5] = ACTIONS(2326), - [aux_sym_binary_expression_token6] = ACTIONS(2326), - [anon_sym_QMARK_QMARK] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_DASH_DASH] = ACTIONS(2326), + [STATE(2586)] = { + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2443), + [anon_sym_instanceof] = ACTIONS(2443), + [anon_sym_INSTANCEOF] = ACTIONS(2443), + [anon_sym_instanceOf] = ACTIONS(2443), + [anon_sym_Of] = ACTIONS(2443), + [anon_sym_of] = ACTIONS(2443), + [anon_sym_OF] = ACTIONS(2443), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + }, + [STATE(2587)] = { + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_COLON] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_RBRACK] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2524), + [sym_optional_chain] = ACTIONS(2526), + [sym_static_chain] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_BSLASH] = ACTIONS(2526), + [anon_sym_STAR_STAR] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2526), + [anon_sym_LT_GT] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2526), + [aux_sym_binary_expression_token1] = ACTIONS(2526), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [aux_sym_binary_expression_token2] = ACTIONS(2524), + [aux_sym_binary_expression_token3] = ACTIONS(2524), + [aux_sym_binary_expression_token4] = ACTIONS(2526), + [aux_sym_binary_expression_token5] = ACTIONS(2526), + [aux_sym_binary_expression_token6] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2324), - [anon_sym_in] = ACTIONS(2324), - [anon_sym_IN] = ACTIONS(2324), - [anon_sym_InstanceOf] = ACTIONS(2326), - [anon_sym_instanceof] = ACTIONS(2326), - [anon_sym_INSTANCEOF] = ACTIONS(2326), - [anon_sym_instanceOf] = ACTIONS(2326), - [anon_sym_Of] = ACTIONS(2326), - [anon_sym_of] = ACTIONS(2326), - [anon_sym_OF] = ACTIONS(2326), - [sym__automatic_semicolon] = ACTIONS(2326), - [sym__ternary_qmark] = ACTIONS(2326), - [sym__elvis_operator] = ACTIONS(2326), - [sym_logical_or] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(2526), + [anon_sym_In] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_IN] = ACTIONS(2524), + [anon_sym_InstanceOf] = ACTIONS(2526), + [anon_sym_instanceof] = ACTIONS(2526), + [anon_sym_INSTANCEOF] = ACTIONS(2526), + [anon_sym_instanceOf] = ACTIONS(2526), + [sym__ternary_qmark] = ACTIONS(2526), + [sym__elvis_operator] = ACTIONS(2526), + [sym_logical_or] = ACTIONS(2526), }, - [STATE(2504)] = { - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [anon_sym_Of] = ACTIONS(1720), - [anon_sym_of] = ACTIONS(1720), - [anon_sym_OF] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2588)] = { + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_COLON] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_RBRACK] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2504), + [sym_optional_chain] = ACTIONS(2506), + [sym_static_chain] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_BSLASH] = ACTIONS(2506), + [anon_sym_STAR_STAR] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2504), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), + [anon_sym_LT_GT] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2504), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), + [aux_sym_binary_expression_token1] = ACTIONS(2506), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [aux_sym_binary_expression_token2] = ACTIONS(2504), + [aux_sym_binary_expression_token3] = ACTIONS(2504), + [aux_sym_binary_expression_token4] = ACTIONS(2506), + [aux_sym_binary_expression_token5] = ACTIONS(2506), + [aux_sym_binary_expression_token6] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2506), + [anon_sym_In] = ACTIONS(2504), + [anon_sym_in] = ACTIONS(2504), + [anon_sym_IN] = ACTIONS(2504), + [anon_sym_InstanceOf] = ACTIONS(2506), + [anon_sym_instanceof] = ACTIONS(2506), + [anon_sym_INSTANCEOF] = ACTIONS(2506), + [anon_sym_instanceOf] = ACTIONS(2506), + [sym__ternary_qmark] = ACTIONS(2506), + [sym__elvis_operator] = ACTIONS(2506), + [sym_logical_or] = ACTIONS(2506), }, - [STATE(2505)] = { + [STATE(2589)] = { [anon_sym_DOT] = ACTIONS(2330), [anon_sym_STAR] = ACTIONS(2328), [anon_sym_COMMA] = ACTIONS(2330), [anon_sym_RBRACE] = ACTIONS(2330), [anon_sym_LPAREN] = ACTIONS(2330), [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_COLON] = ACTIONS(2328), [anon_sym_LBRACK] = ACTIONS(2330), + [anon_sym_RBRACK] = ACTIONS(2330), [aux_sym__operator_shaped_name_token1] = ACTIONS(2330), [aux_sym__operator_shaped_name_token2] = ACTIONS(2330), [aux_sym__operator_shaped_name_token3] = ACTIONS(2330), @@ -370007,6 +378117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2330), [anon_sym_DASH_DASH] = ACTIONS(2330), [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2330), [anon_sym_In] = ACTIONS(2328), [anon_sym_in] = ACTIONS(2328), [anon_sym_IN] = ACTIONS(2328), @@ -370014,2347 +378125,2044 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(2330), [anon_sym_INSTANCEOF] = ACTIONS(2330), [anon_sym_instanceOf] = ACTIONS(2330), - [anon_sym_Of] = ACTIONS(2330), - [anon_sym_of] = ACTIONS(2330), - [anon_sym_OF] = ACTIONS(2330), - [sym__automatic_semicolon] = ACTIONS(2330), [sym__ternary_qmark] = ACTIONS(2330), [sym__elvis_operator] = ACTIONS(2330), [sym_logical_or] = ACTIONS(2330), }, - [STATE(2506)] = { - [anon_sym_DOT] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2518), - [sym_optional_chain] = ACTIONS(2520), - [sym_static_chain] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_GT_GT_GT] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_BSLASH] = ACTIONS(2520), - [anon_sym_STAR_STAR] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2520), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2520), - [anon_sym_LT_GT] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2520), - [aux_sym_binary_expression_token1] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [aux_sym_binary_expression_token2] = ACTIONS(2518), - [aux_sym_binary_expression_token3] = ACTIONS(2518), - [aux_sym_binary_expression_token4] = ACTIONS(2520), - [aux_sym_binary_expression_token5] = ACTIONS(2520), - [aux_sym_binary_expression_token6] = ACTIONS(2520), - [anon_sym_QMARK_QMARK] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2518), - [anon_sym_in] = ACTIONS(2518), - [anon_sym_IN] = ACTIONS(2518), - [anon_sym_InstanceOf] = ACTIONS(2520), - [anon_sym_instanceof] = ACTIONS(2520), - [anon_sym_INSTANCEOF] = ACTIONS(2520), - [anon_sym_instanceOf] = ACTIONS(2520), - [anon_sym_Of] = ACTIONS(2520), - [anon_sym_of] = ACTIONS(2520), - [anon_sym_OF] = ACTIONS(2520), - [sym__automatic_semicolon] = ACTIONS(2520), - [sym__ternary_qmark] = ACTIONS(2520), - [sym__elvis_operator] = ACTIONS(2520), - [sym_logical_or] = ACTIONS(2520), - }, - [STATE(2507)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_Else] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_ELSE] = ACTIONS(1081), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [anon_sym_While] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_WHILE] = ACTIONS(1081), - [sym__automatic_semicolon] = ACTIONS(5459), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), + [STATE(2590)] = { + [anon_sym_DOT] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_COMMA] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_RPAREN] = ACTIONS(2490), + [anon_sym_COLON] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_RBRACK] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2488), + [sym_optional_chain] = ACTIONS(2490), + [sym_static_chain] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_BSLASH] = ACTIONS(2490), + [anon_sym_STAR_STAR] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2490), + [anon_sym_LT_GT] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2490), + [aux_sym_binary_expression_token1] = ACTIONS(2490), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [aux_sym_binary_expression_token2] = ACTIONS(2488), + [aux_sym_binary_expression_token3] = ACTIONS(2488), + [aux_sym_binary_expression_token4] = ACTIONS(2490), + [aux_sym_binary_expression_token5] = ACTIONS(2490), + [aux_sym_binary_expression_token6] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_In] = ACTIONS(2488), + [anon_sym_in] = ACTIONS(2488), + [anon_sym_IN] = ACTIONS(2488), + [anon_sym_InstanceOf] = ACTIONS(2490), + [anon_sym_instanceof] = ACTIONS(2490), + [anon_sym_INSTANCEOF] = ACTIONS(2490), + [anon_sym_instanceOf] = ACTIONS(2490), + [sym__ternary_qmark] = ACTIONS(2490), + [sym__elvis_operator] = ACTIONS(2490), + [sym_logical_or] = ACTIONS(2490), }, - [STATE(2508)] = { - [anon_sym_DOT] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2340), - [sym_optional_chain] = ACTIONS(2342), - [sym_static_chain] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_BSLASH] = ACTIONS(2342), - [anon_sym_STAR_STAR] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_GT] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [aux_sym_binary_expression_token1] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [aux_sym_binary_expression_token2] = ACTIONS(2340), - [aux_sym_binary_expression_token3] = ACTIONS(2340), - [aux_sym_binary_expression_token4] = ACTIONS(2342), - [aux_sym_binary_expression_token5] = ACTIONS(2342), - [aux_sym_binary_expression_token6] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), + [STATE(2591)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_COMMA] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_RPAREN] = ACTIONS(2522), + [anon_sym_COLON] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2522), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2520), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_BSLASH] = ACTIONS(2522), + [anon_sym_STAR_STAR] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2520), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2522), + [anon_sym_LT_GT] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2520), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2522), + [aux_sym_binary_expression_token1] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [aux_sym_binary_expression_token2] = ACTIONS(2520), + [aux_sym_binary_expression_token3] = ACTIONS(2520), + [aux_sym_binary_expression_token4] = ACTIONS(2522), + [aux_sym_binary_expression_token5] = ACTIONS(2522), + [aux_sym_binary_expression_token6] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_IN] = ACTIONS(2340), - [anon_sym_InstanceOf] = ACTIONS(2342), - [anon_sym_instanceof] = ACTIONS(2342), - [anon_sym_INSTANCEOF] = ACTIONS(2342), - [anon_sym_instanceOf] = ACTIONS(2342), - [anon_sym_Of] = ACTIONS(2342), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_OF] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2342), - [sym__ternary_qmark] = ACTIONS(2342), - [sym__elvis_operator] = ACTIONS(2342), - [sym_logical_or] = ACTIONS(2342), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_In] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_IN] = ACTIONS(2520), + [anon_sym_InstanceOf] = ACTIONS(2522), + [anon_sym_instanceof] = ACTIONS(2522), + [anon_sym_INSTANCEOF] = ACTIONS(2522), + [anon_sym_instanceOf] = ACTIONS(2522), + [sym__ternary_qmark] = ACTIONS(2522), + [sym__elvis_operator] = ACTIONS(2522), + [sym_logical_or] = ACTIONS(2522), }, - [STATE(2509)] = { - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2347), - [anon_sym_instanceof] = ACTIONS(2347), - [anon_sym_INSTANCEOF] = ACTIONS(2347), - [anon_sym_instanceOf] = ACTIONS(2347), - [anon_sym_Of] = ACTIONS(2347), - [anon_sym_of] = ACTIONS(2347), - [anon_sym_OF] = ACTIONS(2347), - [sym__automatic_semicolon] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), + [STATE(2592)] = { + [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_RPAREN] = ACTIONS(2474), + [anon_sym_COLON] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_RBRACK] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2472), + [sym_optional_chain] = ACTIONS(2474), + [sym_static_chain] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_BSLASH] = ACTIONS(2474), + [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), + [anon_sym_LT_GT] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), + [aux_sym_binary_expression_token1] = ACTIONS(2474), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [aux_sym_binary_expression_token2] = ACTIONS(2472), + [aux_sym_binary_expression_token3] = ACTIONS(2472), + [aux_sym_binary_expression_token4] = ACTIONS(2474), + [aux_sym_binary_expression_token5] = ACTIONS(2474), + [aux_sym_binary_expression_token6] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_In] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_IN] = ACTIONS(2472), + [anon_sym_InstanceOf] = ACTIONS(2474), + [anon_sym_instanceof] = ACTIONS(2474), + [anon_sym_INSTANCEOF] = ACTIONS(2474), + [anon_sym_instanceOf] = ACTIONS(2474), + [sym__ternary_qmark] = ACTIONS(2474), + [sym__elvis_operator] = ACTIONS(2474), + [sym_logical_or] = ACTIONS(2474), }, - [STATE(2510)] = { - [anon_sym_DOT] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_COMMA] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2510), - [sym_optional_chain] = ACTIONS(2512), - [sym_static_chain] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_PIPE_PIPE] = ACTIONS(2512), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_GT_GT_GT] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_CARET] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2512), - [anon_sym_BSLASH] = ACTIONS(2512), - [anon_sym_STAR_STAR] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2512), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2512), - [anon_sym_LT_GT] = ACTIONS(2512), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2512), - [aux_sym_binary_expression_token1] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2512), - [anon_sym_GT] = ACTIONS(2510), - [aux_sym_binary_expression_token2] = ACTIONS(2510), - [aux_sym_binary_expression_token3] = ACTIONS(2510), - [aux_sym_binary_expression_token4] = ACTIONS(2512), - [aux_sym_binary_expression_token5] = ACTIONS(2512), - [aux_sym_binary_expression_token6] = ACTIONS(2512), - [anon_sym_QMARK_QMARK] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_IN] = ACTIONS(2510), - [anon_sym_InstanceOf] = ACTIONS(2512), - [anon_sym_instanceof] = ACTIONS(2512), - [anon_sym_INSTANCEOF] = ACTIONS(2512), - [anon_sym_instanceOf] = ACTIONS(2512), - [anon_sym_Of] = ACTIONS(2512), - [anon_sym_of] = ACTIONS(2512), - [anon_sym_OF] = ACTIONS(2512), - [sym__automatic_semicolon] = ACTIONS(2512), - [sym__ternary_qmark] = ACTIONS(2512), - [sym__elvis_operator] = ACTIONS(2512), - [sym_logical_or] = ACTIONS(2512), + [STATE(2593)] = { + [anon_sym_DOT] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_COMMA] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_RPAREN] = ACTIONS(2502), + [anon_sym_COLON] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_RBRACK] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2500), + [sym_optional_chain] = ACTIONS(2502), + [sym_static_chain] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(2502), + [anon_sym_STAR_STAR] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2500), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), + [anon_sym_LT_GT] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2500), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), + [aux_sym_binary_expression_token1] = ACTIONS(2502), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [aux_sym_binary_expression_token2] = ACTIONS(2500), + [aux_sym_binary_expression_token3] = ACTIONS(2500), + [aux_sym_binary_expression_token4] = ACTIONS(2502), + [aux_sym_binary_expression_token5] = ACTIONS(2502), + [aux_sym_binary_expression_token6] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_In] = ACTIONS(2500), + [anon_sym_in] = ACTIONS(2500), + [anon_sym_IN] = ACTIONS(2500), + [anon_sym_InstanceOf] = ACTIONS(2502), + [anon_sym_instanceof] = ACTIONS(2502), + [anon_sym_INSTANCEOF] = ACTIONS(2502), + [anon_sym_instanceOf] = ACTIONS(2502), + [sym__ternary_qmark] = ACTIONS(2502), + [sym__elvis_operator] = ACTIONS(2502), + [sym_logical_or] = ACTIONS(2502), }, - [STATE(2511)] = { - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_RPAREN] = ACTIONS(2440), - [anon_sym_COLON] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2440), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), + [STATE(2594)] = { + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_COMMA] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_RBRACK] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), + [sym_optional_chain] = ACTIONS(2272), + [sym_static_chain] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2272), + [anon_sym_LT_LT] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_PERCENT] = ACTIONS(2272), + [anon_sym_BSLASH] = ACTIONS(2272), + [anon_sym_STAR_STAR] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), + [anon_sym_LT_GT] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), + [aux_sym_binary_expression_token1] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2270), + [aux_sym_binary_expression_token2] = ACTIONS(2270), + [aux_sym_binary_expression_token3] = ACTIONS(2270), + [aux_sym_binary_expression_token4] = ACTIONS(2272), + [aux_sym_binary_expression_token5] = ACTIONS(2272), + [aux_sym_binary_expression_token6] = ACTIONS(2272), + [anon_sym_QMARK_QMARK] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2347), - [anon_sym_instanceof] = ACTIONS(2347), - [anon_sym_INSTANCEOF] = ACTIONS(2347), - [anon_sym_instanceOf] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), + [anon_sym_POUND] = ACTIONS(2272), + [anon_sym_In] = ACTIONS(2270), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_IN] = ACTIONS(2270), + [anon_sym_InstanceOf] = ACTIONS(2272), + [anon_sym_instanceof] = ACTIONS(2272), + [anon_sym_INSTANCEOF] = ACTIONS(2272), + [anon_sym_instanceOf] = ACTIONS(2272), + [sym__ternary_qmark] = ACTIONS(2272), + [sym__elvis_operator] = ACTIONS(2272), + [sym_logical_or] = ACTIONS(2272), }, - [STATE(2512)] = { - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_RPAREN] = ACTIONS(2444), - [anon_sym_COLON] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_RBRACK] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2353), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2444), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2353), - [anon_sym_instanceof] = ACTIONS(2353), - [anon_sym_INSTANCEOF] = ACTIONS(2353), - [anon_sym_instanceOf] = ACTIONS(2353), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), + [STATE(2595)] = { + [anon_sym_DOT] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_COMMA] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_COLON] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_RBRACK] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2452), + [sym_optional_chain] = ACTIONS(2454), + [sym_static_chain] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_BSLASH] = ACTIONS(2454), + [anon_sym_STAR_STAR] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2454), + [anon_sym_LT_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2454), + [aux_sym_binary_expression_token1] = ACTIONS(2454), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [aux_sym_binary_expression_token2] = ACTIONS(2452), + [aux_sym_binary_expression_token3] = ACTIONS(2452), + [aux_sym_binary_expression_token4] = ACTIONS(2454), + [aux_sym_binary_expression_token5] = ACTIONS(2454), + [aux_sym_binary_expression_token6] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_In] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(2452), + [anon_sym_IN] = ACTIONS(2452), + [anon_sym_InstanceOf] = ACTIONS(2454), + [anon_sym_instanceof] = ACTIONS(2454), + [anon_sym_INSTANCEOF] = ACTIONS(2454), + [anon_sym_instanceOf] = ACTIONS(2454), + [sym__ternary_qmark] = ACTIONS(2454), + [sym__elvis_operator] = ACTIONS(2454), + [sym_logical_or] = ACTIONS(2454), }, - [STATE(2513)] = { - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2353), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), + [STATE(2596)] = { + [anon_sym_DOT] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_RPAREN] = ACTIONS(2498), + [anon_sym_COLON] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_RBRACK] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2496), + [sym_optional_chain] = ACTIONS(2498), + [sym_static_chain] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_BSLASH] = ACTIONS(2498), + [anon_sym_STAR_STAR] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), + [anon_sym_LT_GT] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), + [aux_sym_binary_expression_token1] = ACTIONS(2498), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [aux_sym_binary_expression_token2] = ACTIONS(2496), + [aux_sym_binary_expression_token3] = ACTIONS(2496), + [aux_sym_binary_expression_token4] = ACTIONS(2498), + [aux_sym_binary_expression_token5] = ACTIONS(2498), + [aux_sym_binary_expression_token6] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2353), - [anon_sym_instanceof] = ACTIONS(2353), - [anon_sym_INSTANCEOF] = ACTIONS(2353), - [anon_sym_instanceOf] = ACTIONS(2353), - [anon_sym_Of] = ACTIONS(2353), - [anon_sym_of] = ACTIONS(2353), - [anon_sym_OF] = ACTIONS(2353), - [sym__automatic_semicolon] = ACTIONS(2353), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - }, - [STATE(2514)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [anon_sym_Of] = ACTIONS(2436), - [anon_sym_of] = ACTIONS(2436), - [anon_sym_OF] = ACTIONS(2436), - [sym__automatic_semicolon] = ACTIONS(2436), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_In] = ACTIONS(2496), + [anon_sym_in] = ACTIONS(2496), + [anon_sym_IN] = ACTIONS(2496), + [anon_sym_InstanceOf] = ACTIONS(2498), + [anon_sym_instanceof] = ACTIONS(2498), + [anon_sym_INSTANCEOF] = ACTIONS(2498), + [anon_sym_instanceOf] = ACTIONS(2498), + [sym__ternary_qmark] = ACTIONS(2498), + [sym__elvis_operator] = ACTIONS(2498), + [sym_logical_or] = ACTIONS(2498), }, - [STATE(2515)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [anon_sym_Of] = ACTIONS(1085), - [anon_sym_of] = ACTIONS(1085), - [anon_sym_OF] = ACTIONS(1085), - [sym__automatic_semicolon] = ACTIONS(1085), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), + [STATE(2597)] = { + [anon_sym_DOT] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_RBRACK] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2282), + [sym_optional_chain] = ACTIONS(2284), + [sym_static_chain] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_GT_GT_GT] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2284), + [anon_sym_STAR_STAR] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_LT_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2284), + [anon_sym_LT_GT] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2284), + [aux_sym_binary_expression_token1] = ACTIONS(2284), + [anon_sym_GT_EQ] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2282), + [aux_sym_binary_expression_token2] = ACTIONS(2282), + [aux_sym_binary_expression_token3] = ACTIONS(2282), + [aux_sym_binary_expression_token4] = ACTIONS(2284), + [aux_sym_binary_expression_token5] = ACTIONS(2284), + [aux_sym_binary_expression_token6] = ACTIONS(2284), + [anon_sym_QMARK_QMARK] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2284), + [anon_sym_In] = ACTIONS(2282), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_IN] = ACTIONS(2282), + [anon_sym_InstanceOf] = ACTIONS(2284), + [anon_sym_instanceof] = ACTIONS(2284), + [anon_sym_INSTANCEOF] = ACTIONS(2284), + [anon_sym_instanceOf] = ACTIONS(2284), + [sym__ternary_qmark] = ACTIONS(2284), + [sym__elvis_operator] = ACTIONS(2284), + [sym_logical_or] = ACTIONS(2284), }, - [STATE(2516)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_COMMA] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2522), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2524), - [anon_sym_BSLASH] = ACTIONS(2524), - [anon_sym_STAR_STAR] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2524), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2524), - [anon_sym_LT_GT] = ACTIONS(2524), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2524), - [aux_sym_binary_expression_token1] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2522), - [aux_sym_binary_expression_token2] = ACTIONS(2522), - [aux_sym_binary_expression_token3] = ACTIONS(2522), - [aux_sym_binary_expression_token4] = ACTIONS(2524), - [aux_sym_binary_expression_token5] = ACTIONS(2524), - [aux_sym_binary_expression_token6] = ACTIONS(2524), - [anon_sym_QMARK_QMARK] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_IN] = ACTIONS(2522), - [anon_sym_InstanceOf] = ACTIONS(2524), - [anon_sym_instanceof] = ACTIONS(2524), - [anon_sym_INSTANCEOF] = ACTIONS(2524), - [anon_sym_instanceOf] = ACTIONS(2524), - [anon_sym_Of] = ACTIONS(2524), - [anon_sym_of] = ACTIONS(2524), - [anon_sym_OF] = ACTIONS(2524), - [sym__automatic_semicolon] = ACTIONS(2524), - [sym__ternary_qmark] = ACTIONS(2524), - [sym__elvis_operator] = ACTIONS(2524), - [sym_logical_or] = ACTIONS(2524), + [STATE(2598)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [anon_sym_Of] = ACTIONS(1716), + [anon_sym_of] = ACTIONS(1716), + [anon_sym_OF] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2517)] = { - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_COMMA] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2570), - [sym_optional_chain] = ACTIONS(2572), - [sym_static_chain] = ACTIONS(2572), - [anon_sym_AMP_AMP] = ACTIONS(2572), - [anon_sym_PIPE_PIPE] = ACTIONS(2572), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_GT_GT_GT] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2572), - [anon_sym_BSLASH] = ACTIONS(2572), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2572), - [anon_sym_LT_GT] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2572), - [aux_sym_binary_expression_token1] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2570), - [aux_sym_binary_expression_token2] = ACTIONS(2570), - [aux_sym_binary_expression_token3] = ACTIONS(2570), - [aux_sym_binary_expression_token4] = ACTIONS(2572), - [aux_sym_binary_expression_token5] = ACTIONS(2572), - [aux_sym_binary_expression_token6] = ACTIONS(2572), - [anon_sym_QMARK_QMARK] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [anon_sym_IN] = ACTIONS(2570), - [anon_sym_InstanceOf] = ACTIONS(2572), - [anon_sym_instanceof] = ACTIONS(2572), - [anon_sym_INSTANCEOF] = ACTIONS(2572), - [anon_sym_instanceOf] = ACTIONS(2572), - [anon_sym_Of] = ACTIONS(2572), - [anon_sym_of] = ACTIONS(2572), - [anon_sym_OF] = ACTIONS(2572), - [sym__automatic_semicolon] = ACTIONS(2572), - [sym__ternary_qmark] = ACTIONS(2572), - [sym__elvis_operator] = ACTIONS(2572), - [sym_logical_or] = ACTIONS(2572), + [STATE(2599)] = { + [anon_sym_DOT] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_COMMA] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2488), + [sym_optional_chain] = ACTIONS(2490), + [sym_static_chain] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_BSLASH] = ACTIONS(2490), + [anon_sym_STAR_STAR] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2490), + [anon_sym_LT_GT] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2490), + [aux_sym_binary_expression_token1] = ACTIONS(2490), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [aux_sym_binary_expression_token2] = ACTIONS(2488), + [aux_sym_binary_expression_token3] = ACTIONS(2488), + [aux_sym_binary_expression_token4] = ACTIONS(2490), + [aux_sym_binary_expression_token5] = ACTIONS(2490), + [aux_sym_binary_expression_token6] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2488), + [anon_sym_in] = ACTIONS(2488), + [anon_sym_IN] = ACTIONS(2488), + [anon_sym_InstanceOf] = ACTIONS(2490), + [anon_sym_instanceof] = ACTIONS(2490), + [anon_sym_INSTANCEOF] = ACTIONS(2490), + [anon_sym_instanceOf] = ACTIONS(2490), + [anon_sym_Of] = ACTIONS(2490), + [anon_sym_of] = ACTIONS(2490), + [anon_sym_OF] = ACTIONS(2490), + [sym__automatic_semicolon] = ACTIONS(2490), + [sym__ternary_qmark] = ACTIONS(2490), + [sym__elvis_operator] = ACTIONS(2490), + [sym_logical_or] = ACTIONS(2490), }, - [STATE(2518)] = { - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_INSTANCEOF] = ACTIONS(2240), - [anon_sym_instanceOf] = ACTIONS(2240), - [anon_sym_Of] = ACTIONS(2240), - [anon_sym_of] = ACTIONS(2240), - [anon_sym_OF] = ACTIONS(2240), - [sym__automatic_semicolon] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), + [STATE(2600)] = { + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_RBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2234), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2234), + [anon_sym_instanceof] = ACTIONS(2234), + [anon_sym_INSTANCEOF] = ACTIONS(2234), + [anon_sym_instanceOf] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), }, - [STATE(2519)] = { - [anon_sym_DOT] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_COMMA] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2422), - [sym_optional_chain] = ACTIONS(2424), - [sym_static_chain] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2422), - [anon_sym_GT_GT_GT] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_CARET] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2424), - [anon_sym_BSLASH] = ACTIONS(2424), - [anon_sym_STAR_STAR] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), - [anon_sym_LT_GT] = ACTIONS(2424), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), - [aux_sym_binary_expression_token1] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2422), - [aux_sym_binary_expression_token2] = ACTIONS(2422), - [aux_sym_binary_expression_token3] = ACTIONS(2422), - [aux_sym_binary_expression_token4] = ACTIONS(2424), - [aux_sym_binary_expression_token5] = ACTIONS(2424), - [aux_sym_binary_expression_token6] = ACTIONS(2424), - [anon_sym_QMARK_QMARK] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_IN] = ACTIONS(2422), - [anon_sym_InstanceOf] = ACTIONS(2424), - [anon_sym_instanceof] = ACTIONS(2424), - [anon_sym_INSTANCEOF] = ACTIONS(2424), - [anon_sym_instanceOf] = ACTIONS(2424), - [anon_sym_Of] = ACTIONS(2424), - [anon_sym_of] = ACTIONS(2424), - [anon_sym_OF] = ACTIONS(2424), - [sym__automatic_semicolon] = ACTIONS(2424), - [sym__ternary_qmark] = ACTIONS(2424), - [sym__elvis_operator] = ACTIONS(2424), - [sym_logical_or] = ACTIONS(2424), + [STATE(2601)] = { + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2388), + [sym_optional_chain] = ACTIONS(2390), + [sym_static_chain] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_BSLASH] = ACTIONS(2390), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_LT_GT] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [aux_sym_binary_expression_token1] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2388), + [aux_sym_binary_expression_token2] = ACTIONS(2388), + [aux_sym_binary_expression_token3] = ACTIONS(2388), + [aux_sym_binary_expression_token4] = ACTIONS(2390), + [aux_sym_binary_expression_token5] = ACTIONS(2390), + [aux_sym_binary_expression_token6] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_IN] = ACTIONS(2388), + [anon_sym_InstanceOf] = ACTIONS(2390), + [anon_sym_instanceof] = ACTIONS(2390), + [anon_sym_INSTANCEOF] = ACTIONS(2390), + [anon_sym_instanceOf] = ACTIONS(2390), + [anon_sym_Of] = ACTIONS(2390), + [anon_sym_of] = ACTIONS(2390), + [anon_sym_OF] = ACTIONS(2390), + [sym__automatic_semicolon] = ACTIONS(2390), + [sym__ternary_qmark] = ACTIONS(2390), + [sym__elvis_operator] = ACTIONS(2390), + [sym_logical_or] = ACTIONS(2390), }, - [STATE(2520)] = { - [anon_sym_DOT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_COMMA] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2316), - [sym_optional_chain] = ACTIONS(2318), - [sym_static_chain] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_BSLASH] = ACTIONS(2318), - [anon_sym_STAR_STAR] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2316), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), - [anon_sym_LT_GT] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2316), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), - [aux_sym_binary_expression_token1] = ACTIONS(2318), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [aux_sym_binary_expression_token2] = ACTIONS(2316), - [aux_sym_binary_expression_token3] = ACTIONS(2316), - [aux_sym_binary_expression_token4] = ACTIONS(2318), - [aux_sym_binary_expression_token5] = ACTIONS(2318), - [aux_sym_binary_expression_token6] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2316), - [anon_sym_in] = ACTIONS(2316), - [anon_sym_IN] = ACTIONS(2316), - [anon_sym_InstanceOf] = ACTIONS(2318), - [anon_sym_instanceof] = ACTIONS(2318), - [anon_sym_INSTANCEOF] = ACTIONS(2318), - [anon_sym_instanceOf] = ACTIONS(2318), - [anon_sym_Of] = ACTIONS(2318), - [anon_sym_of] = ACTIONS(2318), - [anon_sym_OF] = ACTIONS(2318), - [sym__automatic_semicolon] = ACTIONS(2318), - [sym__ternary_qmark] = ACTIONS(2318), - [sym__elvis_operator] = ACTIONS(2318), - [sym_logical_or] = ACTIONS(2318), + [STATE(2602)] = { + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2443), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2443), + [anon_sym_instanceof] = ACTIONS(2443), + [anon_sym_INSTANCEOF] = ACTIONS(2443), + [anon_sym_instanceOf] = ACTIONS(2443), + [anon_sym_Of] = ACTIONS(2566), + [anon_sym_of] = ACTIONS(2566), + [anon_sym_OF] = ACTIONS(2566), + [sym__automatic_semicolon] = ACTIONS(2566), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), }, - [STATE(2521)] = { - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(5536), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(5536), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2246), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5538), - [anon_sym_in] = ACTIONS(5538), - [anon_sym_IN] = ACTIONS(5538), - [anon_sym_InstanceOf] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_INSTANCEOF] = ACTIONS(2246), - [anon_sym_instanceOf] = ACTIONS(2246), - [anon_sym_Of] = ACTIONS(5536), - [anon_sym_of] = ACTIONS(5536), - [anon_sym_OF] = ACTIONS(5536), - [sym__automatic_semicolon] = ACTIONS(5536), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), + [STATE(2603)] = { + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2394), + [anon_sym_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_RBRACK] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2392), + [sym_optional_chain] = ACTIONS(2394), + [sym_static_chain] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_BSLASH] = ACTIONS(2394), + [anon_sym_STAR_STAR] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2394), + [aux_sym_binary_expression_token1] = ACTIONS(2394), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [aux_sym_binary_expression_token2] = ACTIONS(2392), + [aux_sym_binary_expression_token3] = ACTIONS(2392), + [aux_sym_binary_expression_token4] = ACTIONS(2394), + [aux_sym_binary_expression_token5] = ACTIONS(2394), + [aux_sym_binary_expression_token6] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2394), + [anon_sym_In] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_IN] = ACTIONS(2392), + [anon_sym_InstanceOf] = ACTIONS(2394), + [anon_sym_instanceof] = ACTIONS(2394), + [anon_sym_INSTANCEOF] = ACTIONS(2394), + [anon_sym_instanceOf] = ACTIONS(2394), + [sym__ternary_qmark] = ACTIONS(2394), + [sym__elvis_operator] = ACTIONS(2394), + [sym_logical_or] = ACTIONS(2394), }, - [STATE(2522)] = { - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_RBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), + [STATE(2604)] = { + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_COMMA] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_RPAREN] = ACTIONS(2438), + [anon_sym_COLON] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_RBRACK] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2436), + [sym_optional_chain] = ACTIONS(2438), + [sym_static_chain] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_BSLASH] = ACTIONS(2438), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2436), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_LT_GT] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2436), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [aux_sym_binary_expression_token1] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [aux_sym_binary_expression_token2] = ACTIONS(2436), + [aux_sym_binary_expression_token3] = ACTIONS(2436), + [aux_sym_binary_expression_token4] = ACTIONS(2438), + [aux_sym_binary_expression_token5] = ACTIONS(2438), + [aux_sym_binary_expression_token6] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_INSTANCEOF] = ACTIONS(2286), - [anon_sym_instanceOf] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - }, - [STATE(2523)] = { - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(2488), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2486), - [sym_optional_chain] = ACTIONS(2488), - [sym_static_chain] = ACTIONS(2488), - [anon_sym_AMP_AMP] = ACTIONS(2488), - [anon_sym_PIPE_PIPE] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2486), - [anon_sym_GT_GT_GT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_BSLASH] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2488), - [anon_sym_LT_GT] = ACTIONS(2488), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2488), - [aux_sym_binary_expression_token1] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2486), - [aux_sym_binary_expression_token2] = ACTIONS(2486), - [aux_sym_binary_expression_token3] = ACTIONS(2486), - [aux_sym_binary_expression_token4] = ACTIONS(2488), - [aux_sym_binary_expression_token5] = ACTIONS(2488), - [aux_sym_binary_expression_token6] = ACTIONS(2488), - [anon_sym_QMARK_QMARK] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2488), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_IN] = ACTIONS(2486), - [anon_sym_InstanceOf] = ACTIONS(2488), - [anon_sym_instanceof] = ACTIONS(2488), - [anon_sym_INSTANCEOF] = ACTIONS(2488), - [anon_sym_instanceOf] = ACTIONS(2488), - [anon_sym_Of] = ACTIONS(2488), - [anon_sym_of] = ACTIONS(2488), - [anon_sym_OF] = ACTIONS(2488), - [sym__automatic_semicolon] = ACTIONS(2488), - [sym__ternary_qmark] = ACTIONS(2488), - [sym__elvis_operator] = ACTIONS(2488), - [sym_logical_or] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_In] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_IN] = ACTIONS(2436), + [anon_sym_InstanceOf] = ACTIONS(2438), + [anon_sym_instanceof] = ACTIONS(2438), + [anon_sym_INSTANCEOF] = ACTIONS(2438), + [anon_sym_instanceOf] = ACTIONS(2438), + [sym__ternary_qmark] = ACTIONS(2438), + [sym__elvis_operator] = ACTIONS(2438), + [sym_logical_or] = ACTIONS(2438), }, - [STATE(2524)] = { - [anon_sym_DOT] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_RPAREN] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_RBRACK] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2518), - [sym_optional_chain] = ACTIONS(2520), - [sym_static_chain] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_GT_GT_GT] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_BSLASH] = ACTIONS(2520), - [anon_sym_STAR_STAR] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2520), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2520), - [anon_sym_LT_GT] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2520), - [aux_sym_binary_expression_token1] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [aux_sym_binary_expression_token2] = ACTIONS(2518), - [aux_sym_binary_expression_token3] = ACTIONS(2518), - [aux_sym_binary_expression_token4] = ACTIONS(2520), - [aux_sym_binary_expression_token5] = ACTIONS(2520), - [aux_sym_binary_expression_token6] = ACTIONS(2520), - [anon_sym_QMARK_QMARK] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), + [STATE(2605)] = { + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_COMMA] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_RBRACK] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2420), + [sym_optional_chain] = ACTIONS(2422), + [sym_static_chain] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_BSLASH] = ACTIONS(2422), + [anon_sym_STAR_STAR] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2422), + [anon_sym_LT_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2422), + [aux_sym_binary_expression_token1] = ACTIONS(2422), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [aux_sym_binary_expression_token2] = ACTIONS(2420), + [aux_sym_binary_expression_token3] = ACTIONS(2420), + [aux_sym_binary_expression_token4] = ACTIONS(2422), + [aux_sym_binary_expression_token5] = ACTIONS(2422), + [aux_sym_binary_expression_token6] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2520), - [anon_sym_In] = ACTIONS(2518), - [anon_sym_in] = ACTIONS(2518), - [anon_sym_IN] = ACTIONS(2518), - [anon_sym_InstanceOf] = ACTIONS(2520), - [anon_sym_instanceof] = ACTIONS(2520), - [anon_sym_INSTANCEOF] = ACTIONS(2520), - [anon_sym_instanceOf] = ACTIONS(2520), - [sym__ternary_qmark] = ACTIONS(2520), - [sym__elvis_operator] = ACTIONS(2520), - [sym_logical_or] = ACTIONS(2520), - }, - [STATE(2525)] = { - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_COMMA] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2490), - [sym_optional_chain] = ACTIONS(2492), - [sym_static_chain] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_GT_GT_GT] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_BSLASH] = ACTIONS(2492), - [anon_sym_STAR_STAR] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2492), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2492), - [anon_sym_LT_GT] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2492), - [aux_sym_binary_expression_token1] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2490), - [aux_sym_binary_expression_token2] = ACTIONS(2490), - [aux_sym_binary_expression_token3] = ACTIONS(2490), - [aux_sym_binary_expression_token4] = ACTIONS(2492), - [aux_sym_binary_expression_token5] = ACTIONS(2492), - [aux_sym_binary_expression_token6] = ACTIONS(2492), - [anon_sym_QMARK_QMARK] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_IN] = ACTIONS(2490), - [anon_sym_InstanceOf] = ACTIONS(2492), - [anon_sym_instanceof] = ACTIONS(2492), - [anon_sym_INSTANCEOF] = ACTIONS(2492), - [anon_sym_instanceOf] = ACTIONS(2492), - [anon_sym_Of] = ACTIONS(2492), - [anon_sym_of] = ACTIONS(2492), - [anon_sym_OF] = ACTIONS(2492), - [sym__automatic_semicolon] = ACTIONS(2492), - [sym__ternary_qmark] = ACTIONS(2492), - [sym__elvis_operator] = ACTIONS(2492), - [sym_logical_or] = ACTIONS(2492), - }, - [STATE(2526)] = { - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_COMMA] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2526), - [sym_optional_chain] = ACTIONS(2528), - [sym_static_chain] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_GT_GT_GT] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_BSLASH] = ACTIONS(2528), - [anon_sym_STAR_STAR] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2528), - [anon_sym_LT_GT] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2528), - [aux_sym_binary_expression_token1] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [aux_sym_binary_expression_token2] = ACTIONS(2526), - [aux_sym_binary_expression_token3] = ACTIONS(2526), - [aux_sym_binary_expression_token4] = ACTIONS(2528), - [aux_sym_binary_expression_token5] = ACTIONS(2528), - [aux_sym_binary_expression_token6] = ACTIONS(2528), - [anon_sym_QMARK_QMARK] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2526), - [anon_sym_in] = ACTIONS(2526), - [anon_sym_IN] = ACTIONS(2526), - [anon_sym_InstanceOf] = ACTIONS(2528), - [anon_sym_instanceof] = ACTIONS(2528), - [anon_sym_INSTANCEOF] = ACTIONS(2528), - [anon_sym_instanceOf] = ACTIONS(2528), - [anon_sym_Of] = ACTIONS(2528), - [anon_sym_of] = ACTIONS(2528), - [anon_sym_OF] = ACTIONS(2528), - [sym__automatic_semicolon] = ACTIONS(2528), - [sym__ternary_qmark] = ACTIONS(2528), - [sym__elvis_operator] = ACTIONS(2528), - [sym_logical_or] = ACTIONS(2528), - }, - [STATE(2527)] = { - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_COMMA] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2494), - [sym_optional_chain] = ACTIONS(2496), - [sym_static_chain] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_GT_GT_GT] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_BSLASH] = ACTIONS(2496), - [anon_sym_STAR_STAR] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2496), - [anon_sym_LT_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2496), - [aux_sym_binary_expression_token1] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [aux_sym_binary_expression_token2] = ACTIONS(2494), - [aux_sym_binary_expression_token3] = ACTIONS(2494), - [aux_sym_binary_expression_token4] = ACTIONS(2496), - [aux_sym_binary_expression_token5] = ACTIONS(2496), - [aux_sym_binary_expression_token6] = ACTIONS(2496), - [anon_sym_QMARK_QMARK] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_IN] = ACTIONS(2494), - [anon_sym_InstanceOf] = ACTIONS(2496), - [anon_sym_instanceof] = ACTIONS(2496), - [anon_sym_INSTANCEOF] = ACTIONS(2496), - [anon_sym_instanceOf] = ACTIONS(2496), - [anon_sym_Of] = ACTIONS(2496), - [anon_sym_of] = ACTIONS(2496), - [anon_sym_OF] = ACTIONS(2496), - [sym__automatic_semicolon] = ACTIONS(2496), - [sym__ternary_qmark] = ACTIONS(2496), - [sym__elvis_operator] = ACTIONS(2496), - [sym_logical_or] = ACTIONS(2496), + [anon_sym_POUND] = ACTIONS(2422), + [anon_sym_In] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_IN] = ACTIONS(2420), + [anon_sym_InstanceOf] = ACTIONS(2422), + [anon_sym_instanceof] = ACTIONS(2422), + [anon_sym_INSTANCEOF] = ACTIONS(2422), + [anon_sym_instanceOf] = ACTIONS(2422), + [sym__ternary_qmark] = ACTIONS(2422), + [sym__elvis_operator] = ACTIONS(2422), + [sym_logical_or] = ACTIONS(2422), }, - [STATE(2528)] = { - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2546), - [sym_optional_chain] = ACTIONS(2548), - [sym_static_chain] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_GT_GT] = ACTIONS(2546), - [anon_sym_GT_GT_GT] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_BSLASH] = ACTIONS(2548), - [anon_sym_STAR_STAR] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_LT_EQ] = ACTIONS(2548), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2548), - [anon_sym_LT_GT] = ACTIONS(2548), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2548), - [aux_sym_binary_expression_token1] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(2546), - [aux_sym_binary_expression_token2] = ACTIONS(2546), - [aux_sym_binary_expression_token3] = ACTIONS(2546), - [aux_sym_binary_expression_token4] = ACTIONS(2548), - [aux_sym_binary_expression_token5] = ACTIONS(2548), - [aux_sym_binary_expression_token6] = ACTIONS(2548), - [anon_sym_QMARK_QMARK] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2546), - [anon_sym_in] = ACTIONS(2546), - [anon_sym_IN] = ACTIONS(2546), - [anon_sym_InstanceOf] = ACTIONS(2548), - [anon_sym_instanceof] = ACTIONS(2548), - [anon_sym_INSTANCEOF] = ACTIONS(2548), - [anon_sym_instanceOf] = ACTIONS(2548), - [anon_sym_Of] = ACTIONS(2548), - [anon_sym_of] = ACTIONS(2548), - [anon_sym_OF] = ACTIONS(2548), - [sym__automatic_semicolon] = ACTIONS(2548), - [sym__ternary_qmark] = ACTIONS(2548), - [sym__elvis_operator] = ACTIONS(2548), - [sym_logical_or] = ACTIONS(2548), + [STATE(2606)] = { + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2449), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2449), + [anon_sym_instanceof] = ACTIONS(2449), + [anon_sym_INSTANCEOF] = ACTIONS(2449), + [anon_sym_instanceOf] = ACTIONS(2449), + [anon_sym_Of] = ACTIONS(2558), + [anon_sym_of] = ACTIONS(2558), + [anon_sym_OF] = ACTIONS(2558), + [sym__automatic_semicolon] = ACTIONS(2558), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), }, - [STATE(2529)] = { - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2308), - [sym_optional_chain] = ACTIONS(2310), - [sym_static_chain] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_BSLASH] = ACTIONS(2310), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_LT_GT] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [aux_sym_binary_expression_token1] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [aux_sym_binary_expression_token2] = ACTIONS(2308), - [aux_sym_binary_expression_token3] = ACTIONS(2308), - [aux_sym_binary_expression_token4] = ACTIONS(2310), - [aux_sym_binary_expression_token5] = ACTIONS(2310), - [aux_sym_binary_expression_token6] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2308), - [anon_sym_IN] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(2310), - [anon_sym_instanceof] = ACTIONS(2310), - [anon_sym_INSTANCEOF] = ACTIONS(2310), - [anon_sym_instanceOf] = ACTIONS(2310), - [anon_sym_Of] = ACTIONS(2310), - [anon_sym_of] = ACTIONS(2310), - [anon_sym_OF] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2310), - [sym__ternary_qmark] = ACTIONS(2310), - [sym__elvis_operator] = ACTIONS(2310), - [sym_logical_or] = ACTIONS(2310), + [STATE(2607)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_DASH_GT] = ACTIONS(2215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [sym__automatic_semicolon] = ACTIONS(2213), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym_tag_linefeed] = ACTIONS(2213), }, - [STATE(2530)] = { - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_RBRACK] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2242), - [sym_optional_chain] = ACTIONS(2282), - [sym_static_chain] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2242), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_BSLASH] = ACTIONS(2282), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_LT_GT] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [aux_sym_binary_expression_token1] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2242), - [aux_sym_binary_expression_token2] = ACTIONS(2242), - [aux_sym_binary_expression_token3] = ACTIONS(2242), - [aux_sym_binary_expression_token4] = ACTIONS(2282), - [aux_sym_binary_expression_token5] = ACTIONS(2282), - [aux_sym_binary_expression_token6] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), + [STATE(2608)] = { + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_RBRACK] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2213), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2213), + [anon_sym_instanceof] = ACTIONS(2213), + [anon_sym_INSTANCEOF] = ACTIONS(2213), + [anon_sym_instanceOf] = ACTIONS(2213), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + }, + [STATE(2609)] = { + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_COLON] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2326), + [anon_sym_RBRACK] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), + [sym_optional_chain] = ACTIONS(2326), + [sym_static_chain] = ACTIONS(2326), + [anon_sym_AMP_AMP] = ACTIONS(2326), + [anon_sym_PIPE_PIPE] = ACTIONS(2326), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_GT_GT_GT] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_SLASH] = ACTIONS(2324), + [anon_sym_PERCENT] = ACTIONS(2326), + [anon_sym_BSLASH] = ACTIONS(2326), + [anon_sym_STAR_STAR] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_LT_EQ] = ACTIONS(2326), + [anon_sym_EQ_EQ] = ACTIONS(2324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), + [anon_sym_LT_GT] = ACTIONS(2326), + [anon_sym_BANG_EQ] = ACTIONS(2324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), + [aux_sym_binary_expression_token1] = ACTIONS(2326), + [anon_sym_GT_EQ] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2324), + [aux_sym_binary_expression_token2] = ACTIONS(2324), + [aux_sym_binary_expression_token3] = ACTIONS(2324), + [aux_sym_binary_expression_token4] = ACTIONS(2326), + [aux_sym_binary_expression_token5] = ACTIONS(2326), + [aux_sym_binary_expression_token6] = ACTIONS(2326), + [anon_sym_QMARK_QMARK] = ACTIONS(2326), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_In] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_IN] = ACTIONS(2242), - [anon_sym_InstanceOf] = ACTIONS(2282), - [anon_sym_instanceof] = ACTIONS(2282), - [anon_sym_INSTANCEOF] = ACTIONS(2282), - [anon_sym_instanceOf] = ACTIONS(2282), - [sym__ternary_qmark] = ACTIONS(2282), - [sym__elvis_operator] = ACTIONS(2282), - [sym_logical_or] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(2326), + [anon_sym_In] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2324), + [anon_sym_IN] = ACTIONS(2324), + [anon_sym_InstanceOf] = ACTIONS(2326), + [anon_sym_instanceof] = ACTIONS(2326), + [anon_sym_INSTANCEOF] = ACTIONS(2326), + [anon_sym_instanceOf] = ACTIONS(2326), + [sym__ternary_qmark] = ACTIONS(2326), + [sym__elvis_operator] = ACTIONS(2326), + [sym_logical_or] = ACTIONS(2326), }, - [STATE(2531)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_COMMA] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2508), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2506), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_GT_GT_GT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2508), - [anon_sym_STAR_STAR] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2508), - [anon_sym_LT_GT] = ACTIONS(2508), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2508), - [aux_sym_binary_expression_token1] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2506), - [aux_sym_binary_expression_token2] = ACTIONS(2506), - [aux_sym_binary_expression_token3] = ACTIONS(2506), - [aux_sym_binary_expression_token4] = ACTIONS(2508), - [aux_sym_binary_expression_token5] = ACTIONS(2508), - [aux_sym_binary_expression_token6] = ACTIONS(2508), - [anon_sym_QMARK_QMARK] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_IN] = ACTIONS(2506), - [anon_sym_InstanceOf] = ACTIONS(2508), - [anon_sym_instanceof] = ACTIONS(2508), - [anon_sym_INSTANCEOF] = ACTIONS(2508), - [anon_sym_instanceOf] = ACTIONS(2508), - [anon_sym_Of] = ACTIONS(2508), - [anon_sym_of] = ACTIONS(2508), - [anon_sym_OF] = ACTIONS(2508), - [sym__automatic_semicolon] = ACTIONS(2508), - [sym__ternary_qmark] = ACTIONS(2508), - [sym__elvis_operator] = ACTIONS(2508), - [sym_logical_or] = ACTIONS(2508), + [STATE(2610)] = { + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_RPAREN] = ACTIONS(2296), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_RBRACK] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2294), + [sym_optional_chain] = ACTIONS(2296), + [sym_static_chain] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2296), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_LT_GT] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [aux_sym_binary_expression_token1] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2294), + [aux_sym_binary_expression_token2] = ACTIONS(2294), + [aux_sym_binary_expression_token3] = ACTIONS(2294), + [aux_sym_binary_expression_token4] = ACTIONS(2296), + [aux_sym_binary_expression_token5] = ACTIONS(2296), + [aux_sym_binary_expression_token6] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2296), + [anon_sym_In] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_IN] = ACTIONS(2294), + [anon_sym_InstanceOf] = ACTIONS(2296), + [anon_sym_instanceof] = ACTIONS(2296), + [anon_sym_INSTANCEOF] = ACTIONS(2296), + [anon_sym_instanceOf] = ACTIONS(2296), + [sym__ternary_qmark] = ACTIONS(2296), + [sym__elvis_operator] = ACTIONS(2296), + [sym_logical_or] = ACTIONS(2296), }, - [STATE(2532)] = { - [anon_sym_DOT] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_COMMA] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2550), - [sym_optional_chain] = ACTIONS(2552), - [sym_static_chain] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2550), - [anon_sym_GT_GT_GT] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_CARET] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2552), - [anon_sym_STAR_STAR] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_LT_EQ] = ACTIONS(2552), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2552), - [anon_sym_LT_GT] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2552), - [aux_sym_binary_expression_token1] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2550), - [aux_sym_binary_expression_token2] = ACTIONS(2550), - [aux_sym_binary_expression_token3] = ACTIONS(2550), - [aux_sym_binary_expression_token4] = ACTIONS(2552), - [aux_sym_binary_expression_token5] = ACTIONS(2552), - [aux_sym_binary_expression_token6] = ACTIONS(2552), - [anon_sym_QMARK_QMARK] = ACTIONS(2552), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_IN] = ACTIONS(2550), - [anon_sym_InstanceOf] = ACTIONS(2552), - [anon_sym_instanceof] = ACTIONS(2552), - [anon_sym_INSTANCEOF] = ACTIONS(2552), - [anon_sym_instanceOf] = ACTIONS(2552), - [anon_sym_Of] = ACTIONS(2552), - [anon_sym_of] = ACTIONS(2552), - [anon_sym_OF] = ACTIONS(2552), - [sym__automatic_semicolon] = ACTIONS(2552), - [sym__ternary_qmark] = ACTIONS(2552), - [sym__elvis_operator] = ACTIONS(2552), - [sym_logical_or] = ACTIONS(2552), + [STATE(2611)] = { + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_Else] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_ELSE] = ACTIONS(1083), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1087), + [anon_sym_instanceof] = ACTIONS(1087), + [anon_sym_INSTANCEOF] = ACTIONS(1087), + [anon_sym_instanceOf] = ACTIONS(1087), + [anon_sym_While] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_WHILE] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(5467), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), }, - [STATE(2533)] = { - [anon_sym_DOT] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_COMMA] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2554), - [sym_optional_chain] = ACTIONS(2556), - [sym_static_chain] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2554), - [anon_sym_GT_GT_GT] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2556), - [anon_sym_BSLASH] = ACTIONS(2556), - [anon_sym_STAR_STAR] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2556), - [anon_sym_LT_GT] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2556), - [aux_sym_binary_expression_token1] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2554), - [aux_sym_binary_expression_token2] = ACTIONS(2554), - [aux_sym_binary_expression_token3] = ACTIONS(2554), - [aux_sym_binary_expression_token4] = ACTIONS(2556), - [aux_sym_binary_expression_token5] = ACTIONS(2556), - [aux_sym_binary_expression_token6] = ACTIONS(2556), - [anon_sym_QMARK_QMARK] = ACTIONS(2556), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [anon_sym_IN] = ACTIONS(2554), - [anon_sym_InstanceOf] = ACTIONS(2556), - [anon_sym_instanceof] = ACTIONS(2556), - [anon_sym_INSTANCEOF] = ACTIONS(2556), - [anon_sym_instanceOf] = ACTIONS(2556), - [anon_sym_Of] = ACTIONS(2556), - [anon_sym_of] = ACTIONS(2556), - [anon_sym_OF] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(2556), - [sym__ternary_qmark] = ACTIONS(2556), - [sym__elvis_operator] = ACTIONS(2556), - [sym_logical_or] = ACTIONS(2556), + [STATE(2612)] = { + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2572), + [sym_optional_chain] = ACTIONS(2574), + [sym_static_chain] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_BSLASH] = ACTIONS(2574), + [anon_sym_STAR_STAR] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2574), + [anon_sym_LT_GT] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2574), + [aux_sym_binary_expression_token1] = ACTIONS(2574), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [aux_sym_binary_expression_token2] = ACTIONS(2572), + [aux_sym_binary_expression_token3] = ACTIONS(2572), + [aux_sym_binary_expression_token4] = ACTIONS(2574), + [aux_sym_binary_expression_token5] = ACTIONS(2574), + [aux_sym_binary_expression_token6] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_IN] = ACTIONS(2572), + [anon_sym_InstanceOf] = ACTIONS(2574), + [anon_sym_instanceof] = ACTIONS(2574), + [anon_sym_INSTANCEOF] = ACTIONS(2574), + [anon_sym_instanceOf] = ACTIONS(2574), + [anon_sym_Of] = ACTIONS(2574), + [anon_sym_of] = ACTIONS(2574), + [anon_sym_OF] = ACTIONS(2574), + [sym__automatic_semicolon] = ACTIONS(2574), + [sym__ternary_qmark] = ACTIONS(2574), + [sym__elvis_operator] = ACTIONS(2574), + [sym_logical_or] = ACTIONS(2574), }, - [STATE(2534)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_COMMA] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_COLON] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2524), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2522), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2524), - [anon_sym_BSLASH] = ACTIONS(2524), - [anon_sym_STAR_STAR] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2524), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2524), - [anon_sym_LT_GT] = ACTIONS(2524), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2524), - [aux_sym_binary_expression_token1] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2522), - [aux_sym_binary_expression_token2] = ACTIONS(2522), - [aux_sym_binary_expression_token3] = ACTIONS(2522), - [aux_sym_binary_expression_token4] = ACTIONS(2524), - [aux_sym_binary_expression_token5] = ACTIONS(2524), - [aux_sym_binary_expression_token6] = ACTIONS(2524), - [anon_sym_QMARK_QMARK] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), + [STATE(2613)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2524), - [anon_sym_In] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_IN] = ACTIONS(2522), - [anon_sym_InstanceOf] = ACTIONS(2524), - [anon_sym_instanceof] = ACTIONS(2524), - [anon_sym_INSTANCEOF] = ACTIONS(2524), - [anon_sym_instanceOf] = ACTIONS(2524), - [sym__ternary_qmark] = ACTIONS(2524), - [sym__elvis_operator] = ACTIONS(2524), - [sym_logical_or] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(509), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2535)] = { - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_COMMA] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_COLON] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_RBRACK] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2526), - [sym_optional_chain] = ACTIONS(2528), - [sym_static_chain] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_GT_GT_GT] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_BSLASH] = ACTIONS(2528), - [anon_sym_STAR_STAR] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2528), - [anon_sym_LT_GT] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2528), - [aux_sym_binary_expression_token1] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [aux_sym_binary_expression_token2] = ACTIONS(2526), - [aux_sym_binary_expression_token3] = ACTIONS(2526), - [aux_sym_binary_expression_token4] = ACTIONS(2528), - [aux_sym_binary_expression_token5] = ACTIONS(2528), - [aux_sym_binary_expression_token6] = ACTIONS(2528), - [anon_sym_QMARK_QMARK] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), + [STATE(2614)] = { + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_RBRACK] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1947), + [sym_optional_chain] = ACTIONS(1955), + [sym_static_chain] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_BSLASH] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_LT_GT] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [aux_sym_binary_expression_token1] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1947), + [aux_sym_binary_expression_token2] = ACTIONS(1947), + [aux_sym_binary_expression_token3] = ACTIONS(1947), + [aux_sym_binary_expression_token4] = ACTIONS(1955), + [aux_sym_binary_expression_token5] = ACTIONS(1955), + [aux_sym_binary_expression_token6] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_In] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_IN] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_INSTANCEOF] = ACTIONS(1955), + [anon_sym_instanceOf] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1955), + [sym__elvis_operator] = ACTIONS(1955), + [sym_logical_or] = ACTIONS(1955), + }, + [STATE(2615)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2528), - [anon_sym_In] = ACTIONS(2526), - [anon_sym_in] = ACTIONS(2526), - [anon_sym_IN] = ACTIONS(2526), - [anon_sym_InstanceOf] = ACTIONS(2528), - [anon_sym_instanceof] = ACTIONS(2528), - [anon_sym_INSTANCEOF] = ACTIONS(2528), - [anon_sym_instanceOf] = ACTIONS(2528), - [sym__ternary_qmark] = ACTIONS(2528), - [sym__elvis_operator] = ACTIONS(2528), - [sym_logical_or] = ACTIONS(2528), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2536)] = { - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2347), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2347), - [anon_sym_instanceof] = ACTIONS(2347), - [anon_sym_INSTANCEOF] = ACTIONS(2347), - [anon_sym_instanceOf] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), + [STATE(2616)] = { + [sym_identifier] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_COLON] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), + [sym_optional_chain] = ACTIONS(2276), + [sym_static_chain] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_BSLASH] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT_EQ] = ACTIONS(2276), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2276), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), + [aux_sym_binary_expression_token1] = ACTIONS(2276), + [anon_sym_GT_EQ] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2274), + [aux_sym_binary_expression_token2] = ACTIONS(2274), + [aux_sym_binary_expression_token3] = ACTIONS(2274), + [aux_sym_binary_expression_token4] = ACTIONS(2276), + [aux_sym_binary_expression_token5] = ACTIONS(2276), + [aux_sym_binary_expression_token6] = ACTIONS(2276), + [anon_sym_QMARK_QMARK] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_IN] = ACTIONS(2274), + [anon_sym_InstanceOf] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_INSTANCEOF] = ACTIONS(2274), + [anon_sym_instanceOf] = ACTIONS(2274), + [sym__ternary_qmark] = ACTIONS(2276), + [sym__elvis_operator] = ACTIONS(2276), + [sym_logical_or] = ACTIONS(2276), + [sym__parameter_separator] = ACTIONS(2276), }, - [STATE(2537)] = { + [STATE(2617)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5543), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(5557), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -372414,315 +380222,1491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2538)] = { - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2336), - [sym_optional_chain] = ACTIONS(2338), - [sym_static_chain] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_BSLASH] = ACTIONS(2338), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2336), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_LT_GT] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2336), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [aux_sym_binary_expression_token1] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [aux_sym_binary_expression_token2] = ACTIONS(2336), - [aux_sym_binary_expression_token3] = ACTIONS(2336), - [aux_sym_binary_expression_token4] = ACTIONS(2338), - [aux_sym_binary_expression_token5] = ACTIONS(2338), - [aux_sym_binary_expression_token6] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_IN] = ACTIONS(2336), - [anon_sym_InstanceOf] = ACTIONS(2338), - [anon_sym_instanceof] = ACTIONS(2338), - [anon_sym_INSTANCEOF] = ACTIONS(2338), - [anon_sym_instanceOf] = ACTIONS(2338), - [anon_sym_Of] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_OF] = ACTIONS(2338), - [sym__automatic_semicolon] = ACTIONS(2338), - [sym__ternary_qmark] = ACTIONS(2338), - [sym__elvis_operator] = ACTIONS(2338), - [sym_logical_or] = ACTIONS(2338), + [STATE(2618)] = { + [sym_identifier] = ACTIONS(5228), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5230), }, - [STATE(2539)] = { - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), + [STATE(2619)] = { + [sym_identifier] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_COLON] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_INSTANCEOF] = ACTIONS(2228), + [anon_sym_instanceOf] = ACTIONS(2228), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), + [sym__parameter_separator] = ACTIONS(2230), + }, + [STATE(2620)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_OF] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(5595), + [sym__elvis_operator] = ACTIONS(5597), + [sym_logical_or] = ACTIONS(5565), + }, + [STATE(2621)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_OF] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(5595), + [sym__elvis_operator] = ACTIONS(5597), + [sym_logical_or] = ACTIONS(5565), + }, + [STATE(2622)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2478), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_OF] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(5595), + [sym__elvis_operator] = ACTIONS(5597), + [sym_logical_or] = ACTIONS(5565), + }, + [STATE(2623)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2624)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_INSTANCEOF] = ACTIONS(2286), - [anon_sym_instanceOf] = ACTIONS(2286), - [anon_sym_Of] = ACTIONS(2286), - [anon_sym_of] = ACTIONS(2286), - [anon_sym_OF] = ACTIONS(2286), - [sym__automatic_semicolon] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2625)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2626)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2627)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2628)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2629)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2630)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2631)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2632)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2633)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2540)] = { - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_RBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), + [STATE(2634)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2240), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_INSTANCEOF] = ACTIONS(2240), - [anon_sym_instanceOf] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2541)] = { - [anon_sym_DOT] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_COMMA] = ACTIONS(2536), - [anon_sym_RBRACE] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2534), - [sym_optional_chain] = ACTIONS(2536), - [sym_static_chain] = ACTIONS(2536), - [anon_sym_AMP_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2534), - [anon_sym_GT_GT_GT] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_BSLASH] = ACTIONS(2536), - [anon_sym_STAR_STAR] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_LT_EQ] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2536), - [anon_sym_LT_GT] = ACTIONS(2536), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2536), - [aux_sym_binary_expression_token1] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2534), - [aux_sym_binary_expression_token2] = ACTIONS(2534), - [aux_sym_binary_expression_token3] = ACTIONS(2534), - [aux_sym_binary_expression_token4] = ACTIONS(2536), - [aux_sym_binary_expression_token5] = ACTIONS(2536), - [aux_sym_binary_expression_token6] = ACTIONS(2536), - [anon_sym_QMARK_QMARK] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2534), - [anon_sym_in] = ACTIONS(2534), - [anon_sym_IN] = ACTIONS(2534), - [anon_sym_InstanceOf] = ACTIONS(2536), - [anon_sym_instanceof] = ACTIONS(2536), - [anon_sym_INSTANCEOF] = ACTIONS(2536), - [anon_sym_instanceOf] = ACTIONS(2536), - [anon_sym_Of] = ACTIONS(2536), - [anon_sym_of] = ACTIONS(2536), - [anon_sym_OF] = ACTIONS(2536), - [sym__automatic_semicolon] = ACTIONS(2536), - [sym__ternary_qmark] = ACTIONS(2536), - [sym__elvis_operator] = ACTIONS(2536), - [sym_logical_or] = ACTIONS(2536), + [STATE(2635)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(5565), }, - [STATE(2542)] = { + [STATE(2636)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2578), + [anon_sym_of] = ACTIONS(2578), + [anon_sym_OF] = ACTIONS(2578), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(5595), + [sym__elvis_operator] = ACTIONS(5597), + [sym_logical_or] = ACTIONS(5565), + }, + [STATE(2637)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2586), + [anon_sym_of] = ACTIONS(2586), + [anon_sym_OF] = ACTIONS(2586), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(5595), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(5565), + }, + [STATE(2638)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), @@ -372730,7 +381714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_EQ] = ACTIONS(5211), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), @@ -372785,7 +381769,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -372797,838 +381780,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2543)] = { - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_COLON] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1650), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1650), - [anon_sym_instanceof] = ACTIONS(1650), - [anon_sym_INSTANCEOF] = ACTIONS(1650), - [anon_sym_instanceOf] = ACTIONS(1650), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - }, - [STATE(2544)] = { - [anon_sym_DOT] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_COMMA] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2498), - [sym_optional_chain] = ACTIONS(2500), - [sym_static_chain] = ACTIONS(2500), - [anon_sym_AMP_AMP] = ACTIONS(2500), - [anon_sym_PIPE_PIPE] = ACTIONS(2500), - [anon_sym_GT_GT] = ACTIONS(2498), - [anon_sym_GT_GT_GT] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_BSLASH] = ACTIONS(2500), - [anon_sym_STAR_STAR] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_LT_EQ] = ACTIONS(2500), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2500), - [anon_sym_LT_GT] = ACTIONS(2500), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2500), - [aux_sym_binary_expression_token1] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2498), - [aux_sym_binary_expression_token2] = ACTIONS(2498), - [aux_sym_binary_expression_token3] = ACTIONS(2498), - [aux_sym_binary_expression_token4] = ACTIONS(2500), - [aux_sym_binary_expression_token5] = ACTIONS(2500), - [aux_sym_binary_expression_token6] = ACTIONS(2500), - [anon_sym_QMARK_QMARK] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_IN] = ACTIONS(2498), - [anon_sym_InstanceOf] = ACTIONS(2500), - [anon_sym_instanceof] = ACTIONS(2500), - [anon_sym_INSTANCEOF] = ACTIONS(2500), - [anon_sym_instanceOf] = ACTIONS(2500), - [anon_sym_Of] = ACTIONS(2500), - [anon_sym_of] = ACTIONS(2500), - [anon_sym_OF] = ACTIONS(2500), - [sym__automatic_semicolon] = ACTIONS(2500), - [sym__ternary_qmark] = ACTIONS(2500), - [sym__elvis_operator] = ACTIONS(2500), - [sym_logical_or] = ACTIONS(2500), - }, - [STATE(2545)] = { - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2347), - [anon_sym_instanceof] = ACTIONS(2347), - [anon_sym_INSTANCEOF] = ACTIONS(2347), - [anon_sym_instanceOf] = ACTIONS(2347), - [anon_sym_Of] = ACTIONS(2347), - [anon_sym_of] = ACTIONS(2347), - [anon_sym_OF] = ACTIONS(2347), - [sym__automatic_semicolon] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - }, - [STATE(2546)] = { - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_COMMA] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2514), - [sym_optional_chain] = ACTIONS(2516), - [sym_static_chain] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_GT_GT_GT] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_CARET] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2516), - [anon_sym_BSLASH] = ACTIONS(2516), - [anon_sym_STAR_STAR] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2516), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2516), - [anon_sym_LT_GT] = ACTIONS(2516), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2516), - [aux_sym_binary_expression_token1] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2516), - [anon_sym_GT] = ACTIONS(2514), - [aux_sym_binary_expression_token2] = ACTIONS(2514), - [aux_sym_binary_expression_token3] = ACTIONS(2514), - [aux_sym_binary_expression_token4] = ACTIONS(2516), - [aux_sym_binary_expression_token5] = ACTIONS(2516), - [aux_sym_binary_expression_token6] = ACTIONS(2516), - [anon_sym_QMARK_QMARK] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2514), - [anon_sym_in] = ACTIONS(2514), - [anon_sym_IN] = ACTIONS(2514), - [anon_sym_InstanceOf] = ACTIONS(2516), - [anon_sym_instanceof] = ACTIONS(2516), - [anon_sym_INSTANCEOF] = ACTIONS(2516), - [anon_sym_instanceOf] = ACTIONS(2516), - [anon_sym_Of] = ACTIONS(2516), - [anon_sym_of] = ACTIONS(2516), - [anon_sym_OF] = ACTIONS(2516), - [sym__automatic_semicolon] = ACTIONS(2516), - [sym__ternary_qmark] = ACTIONS(2516), - [sym__elvis_operator] = ACTIONS(2516), - [sym_logical_or] = ACTIONS(2516), - }, - [STATE(2547)] = { - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_COMMA] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2530), - [sym_optional_chain] = ACTIONS(2532), - [sym_static_chain] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_BSLASH] = ACTIONS(2532), - [anon_sym_STAR_STAR] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2532), - [anon_sym_LT_GT] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2532), - [aux_sym_binary_expression_token1] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2530), - [aux_sym_binary_expression_token2] = ACTIONS(2530), - [aux_sym_binary_expression_token3] = ACTIONS(2530), - [aux_sym_binary_expression_token4] = ACTIONS(2532), - [aux_sym_binary_expression_token5] = ACTIONS(2532), - [aux_sym_binary_expression_token6] = ACTIONS(2532), - [anon_sym_QMARK_QMARK] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2530), - [anon_sym_in] = ACTIONS(2530), - [anon_sym_IN] = ACTIONS(2530), - [anon_sym_InstanceOf] = ACTIONS(2532), - [anon_sym_instanceof] = ACTIONS(2532), - [anon_sym_INSTANCEOF] = ACTIONS(2532), - [anon_sym_instanceOf] = ACTIONS(2532), - [anon_sym_Of] = ACTIONS(2532), - [anon_sym_of] = ACTIONS(2532), - [anon_sym_OF] = ACTIONS(2532), - [sym__automatic_semicolon] = ACTIONS(2532), - [sym__ternary_qmark] = ACTIONS(2532), - [sym__elvis_operator] = ACTIONS(2532), - [sym_logical_or] = ACTIONS(2532), - }, - [STATE(2548)] = { - [anon_sym_DOT] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2558), - [sym_optional_chain] = ACTIONS(2560), - [sym_static_chain] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_GT_GT_GT] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2560), - [anon_sym_BSLASH] = ACTIONS(2560), - [anon_sym_STAR_STAR] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2560), - [anon_sym_LT_GT] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2560), - [aux_sym_binary_expression_token1] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2558), - [aux_sym_binary_expression_token2] = ACTIONS(2558), - [aux_sym_binary_expression_token3] = ACTIONS(2558), - [aux_sym_binary_expression_token4] = ACTIONS(2560), - [aux_sym_binary_expression_token5] = ACTIONS(2560), - [aux_sym_binary_expression_token6] = ACTIONS(2560), - [anon_sym_QMARK_QMARK] = ACTIONS(2560), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_IN] = ACTIONS(2558), - [anon_sym_InstanceOf] = ACTIONS(2560), - [anon_sym_instanceof] = ACTIONS(2560), - [anon_sym_INSTANCEOF] = ACTIONS(2560), - [anon_sym_instanceOf] = ACTIONS(2560), - [anon_sym_Of] = ACTIONS(2560), - [anon_sym_of] = ACTIONS(2560), - [anon_sym_OF] = ACTIONS(2560), - [sym__automatic_semicolon] = ACTIONS(2560), - [sym__ternary_qmark] = ACTIONS(2560), - [sym__elvis_operator] = ACTIONS(2560), - [sym_logical_or] = ACTIONS(2560), - }, - [STATE(2549)] = { - [anon_sym_DOT] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2442), - [sym_optional_chain] = ACTIONS(2444), - [sym_static_chain] = ACTIONS(2444), - [anon_sym_AMP_AMP] = ACTIONS(2444), - [anon_sym_PIPE_PIPE] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_STAR_STAR] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2444), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), - [anon_sym_LT_GT] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), - [aux_sym_binary_expression_token1] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2442), - [aux_sym_binary_expression_token2] = ACTIONS(2442), - [aux_sym_binary_expression_token3] = ACTIONS(2442), - [aux_sym_binary_expression_token4] = ACTIONS(2444), - [aux_sym_binary_expression_token5] = ACTIONS(2444), - [aux_sym_binary_expression_token6] = ACTIONS(2444), - [anon_sym_QMARK_QMARK] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_IN] = ACTIONS(2442), - [anon_sym_InstanceOf] = ACTIONS(2444), - [anon_sym_instanceof] = ACTIONS(2444), - [anon_sym_INSTANCEOF] = ACTIONS(2444), - [anon_sym_instanceOf] = ACTIONS(2444), - [anon_sym_Of] = ACTIONS(2444), - [anon_sym_of] = ACTIONS(2444), - [anon_sym_OF] = ACTIONS(2444), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), - [sym__elvis_operator] = ACTIONS(2444), - [sym_logical_or] = ACTIONS(2444), - }, - [STATE(2550)] = { - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2353), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2353), - [anon_sym_instanceof] = ACTIONS(2353), - [anon_sym_INSTANCEOF] = ACTIONS(2353), - [anon_sym_instanceOf] = ACTIONS(2353), - [anon_sym_Of] = ACTIONS(2353), - [anon_sym_of] = ACTIONS(2353), - [anon_sym_OF] = ACTIONS(2353), - [sym__automatic_semicolon] = ACTIONS(2353), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - }, - [STATE(2551)] = { - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_COMMA] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_RPAREN] = ACTIONS(2532), - [anon_sym_COLON] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_RBRACK] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2530), - [sym_optional_chain] = ACTIONS(2532), - [sym_static_chain] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_BSLASH] = ACTIONS(2532), - [anon_sym_STAR_STAR] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2532), - [anon_sym_LT_GT] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2532), - [aux_sym_binary_expression_token1] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2530), - [aux_sym_binary_expression_token2] = ACTIONS(2530), - [aux_sym_binary_expression_token3] = ACTIONS(2530), - [aux_sym_binary_expression_token4] = ACTIONS(2532), - [aux_sym_binary_expression_token5] = ACTIONS(2532), - [aux_sym_binary_expression_token6] = ACTIONS(2532), - [anon_sym_QMARK_QMARK] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2532), - [anon_sym_In] = ACTIONS(2530), - [anon_sym_in] = ACTIONS(2530), - [anon_sym_IN] = ACTIONS(2530), - [anon_sym_InstanceOf] = ACTIONS(2532), - [anon_sym_instanceof] = ACTIONS(2532), - [anon_sym_INSTANCEOF] = ACTIONS(2532), - [anon_sym_instanceOf] = ACTIONS(2532), - [sym__ternary_qmark] = ACTIONS(2532), - [sym__elvis_operator] = ACTIONS(2532), - [sym_logical_or] = ACTIONS(2532), - }, - [STATE(2552)] = { - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2347), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2347), - [anon_sym_instanceof] = ACTIONS(2347), - [anon_sym_INSTANCEOF] = ACTIONS(2347), - [anon_sym_instanceOf] = ACTIONS(2347), - [anon_sym_Of] = ACTIONS(2440), - [anon_sym_of] = ACTIONS(2440), - [anon_sym_OF] = ACTIONS(2440), - [sym__automatic_semicolon] = ACTIONS(2440), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - }, - [STATE(2553)] = { - [anon_sym_DOT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2254), - [sym_static_chain] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2254), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2254), - [anon_sym_instanceof] = ACTIONS(2254), - [anon_sym_INSTANCEOF] = ACTIONS(2254), - [anon_sym_instanceOf] = ACTIONS(2254), - [anon_sym_Of] = ACTIONS(2254), - [anon_sym_of] = ACTIONS(2254), - [anon_sym_OF] = ACTIONS(2254), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - }, - [STATE(2554)] = { + [STATE(2639)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5545), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -373682,554 +381840,771 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), + [anon_sym_In] = ACTIONS(5206), + [anon_sym_in] = ACTIONS(5206), + [anon_sym_IN] = ACTIONS(5206), [anon_sym_InstanceOf] = ACTIONS(509), [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), + [anon_sym_Of] = ACTIONS(5209), + [anon_sym_of] = ACTIONS(5209), + [anon_sym_OF] = ACTIONS(5209), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2555)] = { - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2353), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2353), - [anon_sym_instanceof] = ACTIONS(2353), - [anon_sym_INSTANCEOF] = ACTIONS(2353), - [anon_sym_instanceOf] = ACTIONS(2353), - [anon_sym_Of] = ACTIONS(2444), - [anon_sym_of] = ACTIONS(2444), - [anon_sym_OF] = ACTIONS(2444), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), + [STATE(2640)] = { + [sym_identifier] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_RPAREN] = ACTIONS(2238), + [anon_sym_COLON] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_INSTANCEOF] = ACTIONS(2236), + [anon_sym_instanceOf] = ACTIONS(2236), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), + [sym__parameter_separator] = ACTIONS(2238), }, - [STATE(2556)] = { - [anon_sym_DOT] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2462), - [sym_optional_chain] = ACTIONS(2464), - [sym_static_chain] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_GT_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_BSLASH] = ACTIONS(2464), - [anon_sym_STAR_STAR] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_LT_EQ] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_LT_GT] = ACTIONS(2464), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2464), - [aux_sym_binary_expression_token1] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2462), - [aux_sym_binary_expression_token2] = ACTIONS(2462), - [aux_sym_binary_expression_token3] = ACTIONS(2462), - [aux_sym_binary_expression_token4] = ACTIONS(2464), - [aux_sym_binary_expression_token5] = ACTIONS(2464), - [aux_sym_binary_expression_token6] = ACTIONS(2464), - [anon_sym_QMARK_QMARK] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [anon_sym_IN] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(2464), - [anon_sym_instanceof] = ACTIONS(2464), - [anon_sym_INSTANCEOF] = ACTIONS(2464), - [anon_sym_instanceOf] = ACTIONS(2464), - [anon_sym_Of] = ACTIONS(2464), - [anon_sym_of] = ACTIONS(2464), - [anon_sym_OF] = ACTIONS(2464), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(2464), - [sym__elvis_operator] = ACTIONS(2464), - [sym_logical_or] = ACTIONS(2464), + [STATE(2641)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [anon_sym_Of] = ACTIONS(1716), + [anon_sym_of] = ACTIONS(1716), + [anon_sym_OF] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2557)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_COLON] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_RBRACK] = ACTIONS(2436), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2436), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), + [STATE(2642)] = { + [sym_object_assignment_pattern] = STATE(5055), + [sym_array_pattern] = STATE(5272), + [sym__destructuring_pattern] = STATE(5272), + [sym_string] = STATE(5029), + [sym_number] = STATE(5029), + [sym_null] = STATE(5029), + [sym_rest_pattern] = STATE(5055), + [sym_cf_pair] = STATE(5055), + [sym_pair_pattern] = STATE(5055), + [sym__property_name] = STATE(5029), + [sym__hash_always_eval] = STATE(5029), + [sym_hash_expression] = STATE(5029), + [sym_computed_property_name] = STATE(5029), + [sym_identifier] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5605), + [anon_sym_RBRACE] = ACTIONS(5605), + [anon_sym_let] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5313), + [anon_sym_Query] = ACTIONS(5603), + [anon_sym_query] = ACTIONS(5603), + [anon_sym_QUERY] = ACTIONS(5603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(5603), + [anon_sym_set] = ACTIONS(5603), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(5607), + [anon_sym_export] = ACTIONS(5603), + [anon_sym_QueryExecute] = ACTIONS(5603), + [anon_sym_queryexecute] = ACTIONS(5603), + [anon_sym_QUERYEXECUTE] = ACTIONS(5603), + [anon_sym_queryExecute] = ACTIONS(5603), + [anon_sym_Abstract] = ACTIONS(5603), + [anon_sym_abstract] = ACTIONS(5603), + [anon_sym_ABSTRACT] = ACTIONS(5603), + [anon_sym_Component] = ACTIONS(5603), + [anon_sym_component] = ACTIONS(5603), + [anon_sym_COMPONENT] = ACTIONS(5603), + [anon_sym_Debugger] = ACTIONS(5603), + [anon_sym_debugger] = ACTIONS(5603), + [anon_sym_DEBUGGER] = ACTIONS(5603), + [anon_sym_Final] = ACTIONS(5603), + [anon_sym_final] = ACTIONS(5603), + [anon_sym_FINAL] = ACTIONS(5603), + [anon_sym_Include] = ACTIONS(5603), + [anon_sym_include] = ACTIONS(5603), + [anon_sym_INCLUDE] = ACTIONS(5603), + [anon_sym_New] = ACTIONS(5603), + [anon_sym_new] = ACTIONS(5603), + [anon_sym_NEW] = ACTIONS(5603), + [anon_sym_Package] = ACTIONS(5603), + [anon_sym_package] = ACTIONS(5603), + [anon_sym_PACKAGE] = ACTIONS(5603), + [anon_sym_Private] = ACTIONS(5603), + [anon_sym_private] = ACTIONS(5603), + [anon_sym_PRIVATE] = ACTIONS(5603), + [anon_sym_Public] = ACTIONS(5603), + [anon_sym_public] = ACTIONS(5603), + [anon_sym_PUBLIC] = ACTIONS(5603), + [anon_sym_Remote] = ACTIONS(5603), + [anon_sym_remote] = ACTIONS(5603), + [anon_sym_REMOTE] = ACTIONS(5603), + [anon_sym_Static] = ACTIONS(5603), + [anon_sym_static] = ACTIONS(5603), + [anon_sym_STATIC] = ACTIONS(5603), }, - [STATE(2558)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2233), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2233), - [anon_sym_instanceof] = ACTIONS(2233), - [anon_sym_INSTANCEOF] = ACTIONS(2233), - [anon_sym_instanceOf] = ACTIONS(2233), - [anon_sym_Of] = ACTIONS(1720), - [anon_sym_of] = ACTIONS(1720), - [anon_sym_OF] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), + [STATE(2643)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5609), + [anon_sym_SEMI] = ACTIONS(5612), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(5612), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2559)] = { - [anon_sym_DOT] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_COMMA] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2562), - [sym_optional_chain] = ACTIONS(2564), - [sym_static_chain] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_GT_GT_GT] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2564), - [anon_sym_BSLASH] = ACTIONS(2564), - [anon_sym_STAR_STAR] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2564), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2564), - [anon_sym_LT_GT] = ACTIONS(2564), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2564), - [aux_sym_binary_expression_token1] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2562), - [aux_sym_binary_expression_token2] = ACTIONS(2562), - [aux_sym_binary_expression_token3] = ACTIONS(2562), - [aux_sym_binary_expression_token4] = ACTIONS(2564), - [aux_sym_binary_expression_token5] = ACTIONS(2564), - [aux_sym_binary_expression_token6] = ACTIONS(2564), - [anon_sym_QMARK_QMARK] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2562), - [anon_sym_IN] = ACTIONS(2562), - [anon_sym_InstanceOf] = ACTIONS(2564), - [anon_sym_instanceof] = ACTIONS(2564), - [anon_sym_INSTANCEOF] = ACTIONS(2564), - [anon_sym_instanceOf] = ACTIONS(2564), - [anon_sym_Of] = ACTIONS(2564), - [anon_sym_of] = ACTIONS(2564), - [anon_sym_OF] = ACTIONS(2564), - [sym__automatic_semicolon] = ACTIONS(2564), - [sym__ternary_qmark] = ACTIONS(2564), - [sym__elvis_operator] = ACTIONS(2564), - [sym_logical_or] = ACTIONS(2564), + [STATE(2644)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2466), + [anon_sym_of] = ACTIONS(2466), + [anon_sym_OF] = ACTIONS(2466), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(5595), + [sym__elvis_operator] = ACTIONS(5597), + [sym_logical_or] = ACTIONS(5565), }, - [STATE(2560)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2267), - [anon_sym_instanceof] = ACTIONS(2267), - [anon_sym_INSTANCEOF] = ACTIONS(2267), - [anon_sym_instanceOf] = ACTIONS(2267), - [anon_sym_Of] = ACTIONS(1720), - [anon_sym_of] = ACTIONS(1720), - [anon_sym_OF] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), + [STATE(2645)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_OF] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(5595), + [sym__elvis_operator] = ACTIONS(5597), + [sym_logical_or] = ACTIONS(5565), }, - [STATE(2561)] = { - [anon_sym_DOT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_COMMA] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_RPAREN] = ACTIONS(2318), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_RBRACK] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2316), - [sym_optional_chain] = ACTIONS(2318), - [sym_static_chain] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_BSLASH] = ACTIONS(2318), - [anon_sym_STAR_STAR] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2316), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), - [anon_sym_LT_GT] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2316), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), - [aux_sym_binary_expression_token1] = ACTIONS(2318), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [aux_sym_binary_expression_token2] = ACTIONS(2316), - [aux_sym_binary_expression_token3] = ACTIONS(2316), - [aux_sym_binary_expression_token4] = ACTIONS(2318), - [aux_sym_binary_expression_token5] = ACTIONS(2318), - [aux_sym_binary_expression_token6] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), + [STATE(2646)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5563), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5565), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5567), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5563), + [anon_sym_PIPE_PIPE] = ACTIONS(5565), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(5585), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2342), + [anon_sym_OF] = ACTIONS(2342), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(5595), + [sym__elvis_operator] = ACTIONS(5597), + [sym_logical_or] = ACTIONS(5565), + }, + [STATE(2647)] = { + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2320), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5552), + [anon_sym_in] = ACTIONS(5552), + [anon_sym_IN] = ACTIONS(5552), + [anon_sym_InstanceOf] = ACTIONS(2320), + [anon_sym_instanceof] = ACTIONS(2320), + [anon_sym_INSTANCEOF] = ACTIONS(2320), + [anon_sym_instanceOf] = ACTIONS(2320), + [anon_sym_Of] = ACTIONS(5550), + [anon_sym_of] = ACTIONS(5550), + [anon_sym_OF] = ACTIONS(5550), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + }, + [STATE(2648)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_DASH_GT] = ACTIONS(2215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym_tag_linefeed] = ACTIONS(2213), + }, + [STATE(2649)] = { + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_RBRACE] = ACTIONS(5615), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_COLON] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym_RBRACK] = ACTIONS(5615), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2320), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_In] = ACTIONS(2316), - [anon_sym_in] = ACTIONS(2316), - [anon_sym_IN] = ACTIONS(2316), - [anon_sym_InstanceOf] = ACTIONS(2318), - [anon_sym_instanceof] = ACTIONS(2318), - [anon_sym_INSTANCEOF] = ACTIONS(2318), - [anon_sym_instanceOf] = ACTIONS(2318), - [sym__ternary_qmark] = ACTIONS(2318), - [sym__elvis_operator] = ACTIONS(2318), - [sym_logical_or] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2320), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2320), + [anon_sym_instanceof] = ACTIONS(2320), + [anon_sym_INSTANCEOF] = ACTIONS(2320), + [anon_sym_instanceOf] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), }, - [STATE(2562)] = { + [STATE(2650)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(5618), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -374289,941 +382664,1131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2563)] = { - [anon_sym_DOT] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_RPAREN] = ACTIONS(2444), - [anon_sym_COLON] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_RBRACK] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2442), - [sym_optional_chain] = ACTIONS(2444), - [sym_static_chain] = ACTIONS(2444), - [anon_sym_AMP_AMP] = ACTIONS(2444), - [anon_sym_PIPE_PIPE] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_BSLASH] = ACTIONS(2444), - [anon_sym_STAR_STAR] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2444), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), - [anon_sym_LT_GT] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), - [aux_sym_binary_expression_token1] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2442), - [aux_sym_binary_expression_token2] = ACTIONS(2442), - [aux_sym_binary_expression_token3] = ACTIONS(2442), - [aux_sym_binary_expression_token4] = ACTIONS(2444), - [aux_sym_binary_expression_token5] = ACTIONS(2444), - [aux_sym_binary_expression_token6] = ACTIONS(2444), - [anon_sym_QMARK_QMARK] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2444), - [anon_sym_In] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_IN] = ACTIONS(2442), - [anon_sym_InstanceOf] = ACTIONS(2444), - [anon_sym_instanceof] = ACTIONS(2444), - [anon_sym_INSTANCEOF] = ACTIONS(2444), - [anon_sym_instanceOf] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), - [sym__elvis_operator] = ACTIONS(2444), - [sym_logical_or] = ACTIONS(2444), + [STATE(2651)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5561), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5569), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5571), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5575), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5577), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5573), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5571), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5579), + [anon_sym_GT_GT_GT] = ACTIONS(5581), + [anon_sym_LT_LT] = ACTIONS(5581), + [anon_sym_AMP] = ACTIONS(5583), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5561), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_BSLASH] = ACTIONS(5569), + [anon_sym_STAR_STAR] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5571), + [anon_sym_LT_EQ] = ACTIONS(5573), + [anon_sym_EQ_EQ] = ACTIONS(5575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5577), + [anon_sym_LT_GT] = ACTIONS(5577), + [anon_sym_BANG_EQ] = ACTIONS(5575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5577), + [aux_sym_binary_expression_token1] = ACTIONS(5577), + [anon_sym_GT_EQ] = ACTIONS(5573), + [anon_sym_GT] = ACTIONS(5571), + [aux_sym_binary_expression_token2] = ACTIONS(5571), + [aux_sym_binary_expression_token3] = ACTIONS(5571), + [aux_sym_binary_expression_token4] = ACTIONS(5573), + [aux_sym_binary_expression_token5] = ACTIONS(5573), + [aux_sym_binary_expression_token6] = ACTIONS(5577), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5571), + [anon_sym_in] = ACTIONS(5571), + [anon_sym_IN] = ACTIONS(5571), + [anon_sym_InstanceOf] = ACTIONS(5573), + [anon_sym_instanceof] = ACTIONS(5573), + [anon_sym_INSTANCEOF] = ACTIONS(5573), + [anon_sym_instanceOf] = ACTIONS(5573), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2564)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(2652)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2565)] = { - [anon_sym_DOT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_RPAREN] = ACTIONS(2334), - [anon_sym_COLON] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), - [sym_optional_chain] = ACTIONS(2334), - [sym_static_chain] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_BSLASH] = ACTIONS(2334), - [anon_sym_STAR_STAR] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), - [anon_sym_LT_GT] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), - [aux_sym_binary_expression_token1] = ACTIONS(2334), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [aux_sym_binary_expression_token2] = ACTIONS(2332), - [aux_sym_binary_expression_token3] = ACTIONS(2332), - [aux_sym_binary_expression_token4] = ACTIONS(2334), - [aux_sym_binary_expression_token5] = ACTIONS(2334), - [aux_sym_binary_expression_token6] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), + [STATE(2653)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2654)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2334), - [anon_sym_In] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_IN] = ACTIONS(2332), - [anon_sym_InstanceOf] = ACTIONS(2334), - [anon_sym_instanceof] = ACTIONS(2334), - [anon_sym_INSTANCEOF] = ACTIONS(2334), - [anon_sym_instanceOf] = ACTIONS(2334), - [sym__ternary_qmark] = ACTIONS(2334), - [sym__elvis_operator] = ACTIONS(2334), - [sym_logical_or] = ACTIONS(2334), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2566)] = { - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_COLON] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_RBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2353), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2353), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2353), - [anon_sym_instanceof] = ACTIONS(2353), - [anon_sym_INSTANCEOF] = ACTIONS(2353), - [anon_sym_instanceOf] = ACTIONS(2353), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), + [STATE(2655)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2567)] = { - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(2488), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_RPAREN] = ACTIONS(2488), - [anon_sym_COLON] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_RBRACK] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2486), - [sym_optional_chain] = ACTIONS(2488), - [sym_static_chain] = ACTIONS(2488), - [anon_sym_AMP_AMP] = ACTIONS(2488), - [anon_sym_PIPE_PIPE] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2486), - [anon_sym_GT_GT_GT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_BSLASH] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2488), - [anon_sym_LT_GT] = ACTIONS(2488), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2488), - [aux_sym_binary_expression_token1] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2486), - [aux_sym_binary_expression_token2] = ACTIONS(2486), - [aux_sym_binary_expression_token3] = ACTIONS(2486), - [aux_sym_binary_expression_token4] = ACTIONS(2488), - [aux_sym_binary_expression_token5] = ACTIONS(2488), - [aux_sym_binary_expression_token6] = ACTIONS(2488), - [anon_sym_QMARK_QMARK] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2488), + [STATE(2656)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2488), - [anon_sym_In] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_IN] = ACTIONS(2486), - [anon_sym_InstanceOf] = ACTIONS(2488), - [anon_sym_instanceof] = ACTIONS(2488), - [anon_sym_INSTANCEOF] = ACTIONS(2488), - [anon_sym_instanceOf] = ACTIONS(2488), - [sym__ternary_qmark] = ACTIONS(2488), - [sym__elvis_operator] = ACTIONS(2488), - [sym_logical_or] = ACTIONS(2488), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2568)] = { - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_RPAREN] = ACTIONS(1085), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_RBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1085), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1085), - [anon_sym_instanceof] = ACTIONS(1085), - [anon_sym_INSTANCEOF] = ACTIONS(1085), - [anon_sym_instanceOf] = ACTIONS(1085), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), + [STATE(2657)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2569)] = { - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_RBRACK] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2015), - [sym_optional_chain] = ACTIONS(2023), - [sym_static_chain] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_GT_GT_GT] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_BSLASH] = ACTIONS(2023), - [anon_sym_STAR_STAR] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2023), - [anon_sym_LT_GT] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2023), - [aux_sym_binary_expression_token1] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2015), - [aux_sym_binary_expression_token2] = ACTIONS(2015), - [aux_sym_binary_expression_token3] = ACTIONS(2015), - [aux_sym_binary_expression_token4] = ACTIONS(2023), - [aux_sym_binary_expression_token5] = ACTIONS(2023), - [aux_sym_binary_expression_token6] = ACTIONS(2023), - [anon_sym_QMARK_QMARK] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2023), - [anon_sym_In] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_IN] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2023), - [anon_sym_instanceof] = ACTIONS(2023), - [anon_sym_INSTANCEOF] = ACTIONS(2023), - [anon_sym_instanceOf] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2023), - [sym__elvis_operator] = ACTIONS(2023), - [sym_logical_or] = ACTIONS(2023), + [STATE(2658)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2570)] = { - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_COMMA] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_COLON] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_RBRACK] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2490), - [sym_optional_chain] = ACTIONS(2492), - [sym_static_chain] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_GT_GT_GT] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_BSLASH] = ACTIONS(2492), - [anon_sym_STAR_STAR] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2492), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2492), - [anon_sym_LT_GT] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2492), - [aux_sym_binary_expression_token1] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2490), - [aux_sym_binary_expression_token2] = ACTIONS(2490), - [aux_sym_binary_expression_token3] = ACTIONS(2490), - [aux_sym_binary_expression_token4] = ACTIONS(2492), - [aux_sym_binary_expression_token5] = ACTIONS(2492), - [aux_sym_binary_expression_token6] = ACTIONS(2492), - [anon_sym_QMARK_QMARK] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), + [STATE(2659)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2660)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2661)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2492), - [anon_sym_In] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_IN] = ACTIONS(2490), - [anon_sym_InstanceOf] = ACTIONS(2492), - [anon_sym_instanceof] = ACTIONS(2492), - [anon_sym_INSTANCEOF] = ACTIONS(2492), - [anon_sym_instanceOf] = ACTIONS(2492), - [sym__ternary_qmark] = ACTIONS(2492), - [sym__elvis_operator] = ACTIONS(2492), - [sym_logical_or] = ACTIONS(2492), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2571)] = { - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_COMMA] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_COLON] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_RBRACK] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2494), - [sym_optional_chain] = ACTIONS(2496), - [sym_static_chain] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_GT_GT_GT] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_BSLASH] = ACTIONS(2496), - [anon_sym_STAR_STAR] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2496), - [anon_sym_LT_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2496), - [aux_sym_binary_expression_token1] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [aux_sym_binary_expression_token2] = ACTIONS(2494), - [aux_sym_binary_expression_token3] = ACTIONS(2494), - [aux_sym_binary_expression_token4] = ACTIONS(2496), - [aux_sym_binary_expression_token5] = ACTIONS(2496), - [aux_sym_binary_expression_token6] = ACTIONS(2496), - [anon_sym_QMARK_QMARK] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2496), - [anon_sym_In] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_IN] = ACTIONS(2494), - [anon_sym_InstanceOf] = ACTIONS(2496), - [anon_sym_instanceof] = ACTIONS(2496), - [anon_sym_INSTANCEOF] = ACTIONS(2496), - [anon_sym_instanceOf] = ACTIONS(2496), - [sym__ternary_qmark] = ACTIONS(2496), - [sym__elvis_operator] = ACTIONS(2496), - [sym_logical_or] = ACTIONS(2496), + [STATE(2662)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5657), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(5657), }, - [STATE(2572)] = { - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_RPAREN] = ACTIONS(2338), - [anon_sym_COLON] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_RBRACK] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2336), - [sym_optional_chain] = ACTIONS(2338), - [sym_static_chain] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_BSLASH] = ACTIONS(2338), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2336), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_LT_GT] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2336), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [aux_sym_binary_expression_token1] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [aux_sym_binary_expression_token2] = ACTIONS(2336), - [aux_sym_binary_expression_token3] = ACTIONS(2336), - [aux_sym_binary_expression_token4] = ACTIONS(2338), - [aux_sym_binary_expression_token5] = ACTIONS(2338), - [aux_sym_binary_expression_token6] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2338), - [anon_sym_In] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_IN] = ACTIONS(2336), - [anon_sym_InstanceOf] = ACTIONS(2338), - [anon_sym_instanceof] = ACTIONS(2338), - [anon_sym_INSTANCEOF] = ACTIONS(2338), - [anon_sym_instanceOf] = ACTIONS(2338), - [sym__ternary_qmark] = ACTIONS(2338), - [sym__elvis_operator] = ACTIONS(2338), - [sym_logical_or] = ACTIONS(2338), + [STATE(2663)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4650), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5664), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2573)] = { - [anon_sym_DOT] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2320), - [sym_optional_chain] = ACTIONS(2322), - [sym_static_chain] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_BSLASH] = ACTIONS(2322), - [anon_sym_STAR_STAR] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_LT_GT] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2322), - [aux_sym_binary_expression_token1] = ACTIONS(2322), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [aux_sym_binary_expression_token2] = ACTIONS(2320), - [aux_sym_binary_expression_token3] = ACTIONS(2320), - [aux_sym_binary_expression_token4] = ACTIONS(2322), - [aux_sym_binary_expression_token5] = ACTIONS(2322), - [aux_sym_binary_expression_token6] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2320), - [anon_sym_in] = ACTIONS(2320), - [anon_sym_IN] = ACTIONS(2320), - [anon_sym_InstanceOf] = ACTIONS(2322), - [anon_sym_instanceof] = ACTIONS(2322), - [anon_sym_INSTANCEOF] = ACTIONS(2322), - [anon_sym_instanceOf] = ACTIONS(2322), - [anon_sym_Of] = ACTIONS(2322), - [anon_sym_of] = ACTIONS(2322), - [anon_sym_OF] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(2322), - [sym__ternary_qmark] = ACTIONS(2322), - [sym__elvis_operator] = ACTIONS(2322), - [sym_logical_or] = ACTIONS(2322), + [STATE(2664)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5657), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2578), + [anon_sym_of] = ACTIONS(2578), + [anon_sym_OF] = ACTIONS(2578), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(5669), + [sym__elvis_operator] = ACTIONS(5671), + [sym_logical_or] = ACTIONS(5657), }, - [STATE(2574)] = { - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_COMMA] = ACTIONS(2568), - [anon_sym_RBRACE] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2566), - [sym_optional_chain] = ACTIONS(2568), - [sym_static_chain] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_GT_GT_GT] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_CARET] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2568), - [anon_sym_BSLASH] = ACTIONS(2568), - [anon_sym_STAR_STAR] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2568), - [anon_sym_LT_GT] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2568), - [aux_sym_binary_expression_token1] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(2566), - [aux_sym_binary_expression_token2] = ACTIONS(2566), - [aux_sym_binary_expression_token3] = ACTIONS(2566), - [aux_sym_binary_expression_token4] = ACTIONS(2568), - [aux_sym_binary_expression_token5] = ACTIONS(2568), - [aux_sym_binary_expression_token6] = ACTIONS(2568), - [anon_sym_QMARK_QMARK] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2566), - [anon_sym_in] = ACTIONS(2566), - [anon_sym_IN] = ACTIONS(2566), - [anon_sym_InstanceOf] = ACTIONS(2568), - [anon_sym_instanceof] = ACTIONS(2568), - [anon_sym_INSTANCEOF] = ACTIONS(2568), - [anon_sym_instanceOf] = ACTIONS(2568), - [anon_sym_Of] = ACTIONS(2568), - [anon_sym_of] = ACTIONS(2568), - [anon_sym_OF] = ACTIONS(2568), - [sym__automatic_semicolon] = ACTIONS(2568), - [sym__ternary_qmark] = ACTIONS(2568), - [sym__elvis_operator] = ACTIONS(2568), - [sym_logical_or] = ACTIONS(2568), + [STATE(2665)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5657), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2586), + [anon_sym_of] = ACTIONS(2586), + [anon_sym_OF] = ACTIONS(2586), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(5669), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(5657), }, - [STATE(2575)] = { + [STATE(2666)] = { + [sym_identifier] = ACTIONS(5213), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5215), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -375239,7 +383804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -375260,120 +383825,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5218), }, - [STATE(2576)] = { - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(1720), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2667)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [sym__automatic_semicolon] = ACTIONS(2213), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym_tag_linefeed] = ACTIONS(2213), }, - [STATE(2577)] = { + [STATE(2668)] = { + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2260), + [sym_static_chain] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym_tag_linefeed] = ACTIONS(2260), + }, + [STATE(2669)] = { + [sym_identifier] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_INSTANCEOF] = ACTIONS(2318), + [anon_sym_instanceOf] = ACTIONS(2318), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + [sym__parameter_separator] = ACTIONS(5550), + }, + [STATE(2670)] = { + [sym_identifier] = ACTIONS(2274), [anon_sym_DOT] = ACTIONS(2276), [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), [anon_sym_LPAREN] = ACTIONS(2276), [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2274), [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_RBRACK] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), [sym_optional_chain] = ACTIONS(2276), [sym_static_chain] = ACTIONS(2276), @@ -375389,7 +384095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2274), [anon_sym_SLASH] = ACTIONS(2274), [anon_sym_PERCENT] = ACTIONS(2276), - [anon_sym_BSLASH] = ACTIONS(2276), + [anon_sym_BSLASH] = ACTIONS(2274), [anon_sym_STAR_STAR] = ACTIONS(2276), [anon_sym_LT] = ACTIONS(2274), [anon_sym_LT_EQ] = ACTIONS(2276), @@ -375410,117 +384116,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2276), [anon_sym_DASH_DASH] = ACTIONS(2276), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2276), [anon_sym_In] = ACTIONS(2274), [anon_sym_in] = ACTIONS(2274), [anon_sym_IN] = ACTIONS(2274), - [anon_sym_InstanceOf] = ACTIONS(2276), - [anon_sym_instanceof] = ACTIONS(2276), - [anon_sym_INSTANCEOF] = ACTIONS(2276), - [anon_sym_instanceOf] = ACTIONS(2276), + [anon_sym_InstanceOf] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_INSTANCEOF] = ACTIONS(2274), + [anon_sym_instanceOf] = ACTIONS(2274), + [sym__automatic_semicolon] = ACTIONS(2276), [sym__ternary_qmark] = ACTIONS(2276), [sym__elvis_operator] = ACTIONS(2276), [sym_logical_or] = ACTIONS(2276), + [sym_tag_linefeed] = ACTIONS(2276), }, - [STATE(2578)] = { - [anon_sym_DOT] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_COMMA] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_COLON] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_RBRACK] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2498), - [sym_optional_chain] = ACTIONS(2500), - [sym_static_chain] = ACTIONS(2500), - [anon_sym_AMP_AMP] = ACTIONS(2500), - [anon_sym_PIPE_PIPE] = ACTIONS(2500), - [anon_sym_GT_GT] = ACTIONS(2498), - [anon_sym_GT_GT_GT] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_BSLASH] = ACTIONS(2500), - [anon_sym_STAR_STAR] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_LT_EQ] = ACTIONS(2500), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2500), - [anon_sym_LT_GT] = ACTIONS(2500), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2500), - [aux_sym_binary_expression_token1] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2498), - [aux_sym_binary_expression_token2] = ACTIONS(2498), - [aux_sym_binary_expression_token3] = ACTIONS(2498), - [aux_sym_binary_expression_token4] = ACTIONS(2500), - [aux_sym_binary_expression_token5] = ACTIONS(2500), - [aux_sym_binary_expression_token6] = ACTIONS(2500), - [anon_sym_QMARK_QMARK] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), + [STATE(2671)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2500), - [anon_sym_In] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_IN] = ACTIONS(2498), - [anon_sym_InstanceOf] = ACTIONS(2500), - [anon_sym_instanceof] = ACTIONS(2500), - [anon_sym_INSTANCEOF] = ACTIONS(2500), - [anon_sym_instanceOf] = ACTIONS(2500), - [sym__ternary_qmark] = ACTIONS(2500), - [sym__elvis_operator] = ACTIONS(2500), - [sym_logical_or] = ACTIONS(2500), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2579)] = { + [STATE(2672)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5239), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -375536,7 +384241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -375560,42 +384265,916 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(509), - [anon_sym_of] = ACTIONS(509), - [anon_sym_OF] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2580)] = { + [STATE(2673)] = { + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_COMMA] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1085), + [anon_sym_instanceof] = ACTIONS(1085), + [anon_sym_INSTANCEOF] = ACTIONS(1085), + [anon_sym_instanceOf] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(5675), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), + [sym__parameter_separator] = ACTIONS(1083), + }, + [STATE(2674)] = { + [sym_identifier] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_RPAREN] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_INSTANCEOF] = ACTIONS(2318), + [anon_sym_instanceOf] = ACTIONS(2318), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + [sym__parameter_separator] = ACTIONS(2320), + }, + [STATE(2675)] = { + [sym_identifier] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_INSTANCEOF] = ACTIONS(2228), + [anon_sym_instanceOf] = ACTIONS(2228), + [sym__automatic_semicolon] = ACTIONS(2230), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), + }, + [STATE(2676)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_BSLASH] = ACTIONS(2303), + [anon_sym_STAR_STAR] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2300), + [aux_sym_binary_expression_token2] = ACTIONS(2300), + [aux_sym_binary_expression_token3] = ACTIONS(2300), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_IN] = ACTIONS(2300), + [anon_sym_InstanceOf] = ACTIONS(2303), + [anon_sym_instanceof] = ACTIONS(2303), + [anon_sym_INSTANCEOF] = ACTIONS(2303), + [anon_sym_instanceOf] = ACTIONS(2303), + [sym__automatic_semicolon] = ACTIONS(2303), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), + }, + [STATE(2677)] = { + [sym_identifier] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_INSTANCEOF] = ACTIONS(2236), + [anon_sym_instanceOf] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2238), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), + }, + [STATE(2678)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2309), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2309), + [anon_sym_instanceof] = ACTIONS(2309), + [anon_sym_INSTANCEOF] = ACTIONS(2309), + [anon_sym_instanceOf] = ACTIONS(2309), + [sym__automatic_semicolon] = ACTIONS(2309), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), + }, + [STATE(2679)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2680)] = { + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym__parameter_separator] = ACTIONS(2246), + }, + [STATE(2681)] = { + [sym_identifier] = ACTIONS(2332), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), + [sym_optional_chain] = ACTIONS(2334), + [sym_static_chain] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2332), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_BSLASH] = ACTIONS(2332), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [aux_sym_binary_expression_token1] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2332), + [aux_sym_binary_expression_token2] = ACTIONS(2332), + [aux_sym_binary_expression_token3] = ACTIONS(2332), + [aux_sym_binary_expression_token4] = ACTIONS(2334), + [aux_sym_binary_expression_token5] = ACTIONS(2334), + [aux_sym_binary_expression_token6] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [sym_comment] = ACTIONS(129), + [sym_regex_flags] = ACTIONS(5701), + [anon_sym_In] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_IN] = ACTIONS(2332), + [anon_sym_InstanceOf] = ACTIONS(2332), + [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_INSTANCEOF] = ACTIONS(2332), + [anon_sym_instanceOf] = ACTIONS(2332), + [sym__ternary_qmark] = ACTIONS(2334), + [sym__elvis_operator] = ACTIONS(2334), + [sym_logical_or] = ACTIONS(2334), + [sym__parameter_separator] = ACTIONS(2334), + }, + [STATE(2682)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1947), + [sym_optional_chain] = ACTIONS(1955), + [sym_static_chain] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_BSLASH] = ACTIONS(1947), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_LT_GT] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [aux_sym_binary_expression_token1] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1947), + [aux_sym_binary_expression_token2] = ACTIONS(1947), + [aux_sym_binary_expression_token3] = ACTIONS(1947), + [aux_sym_binary_expression_token4] = ACTIONS(1955), + [aux_sym_binary_expression_token5] = ACTIONS(1955), + [aux_sym_binary_expression_token6] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_IN] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1947), + [anon_sym_instanceof] = ACTIONS(1947), + [anon_sym_INSTANCEOF] = ACTIONS(1947), + [anon_sym_instanceOf] = ACTIONS(1947), + [sym__automatic_semicolon] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1955), + [sym__elvis_operator] = ACTIONS(1955), + [sym_logical_or] = ACTIONS(1955), + [sym_tag_linefeed] = ACTIONS(1955), + }, + [STATE(2683)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym__parameter_separator] = ACTIONS(2234), + }, + [STATE(2684)] = { + [sym_identifier] = ACTIONS(2248), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_COLON] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2248), + [sym_optional_chain] = ACTIONS(2250), + [sym_static_chain] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2248), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2248), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_LT_GT] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [aux_sym_binary_expression_token1] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2248), + [aux_sym_binary_expression_token2] = ACTIONS(2248), + [aux_sym_binary_expression_token3] = ACTIONS(2248), + [aux_sym_binary_expression_token4] = ACTIONS(2250), + [aux_sym_binary_expression_token5] = ACTIONS(2250), + [aux_sym_binary_expression_token6] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [anon_sym_IN] = ACTIONS(2248), + [anon_sym_InstanceOf] = ACTIONS(2248), + [anon_sym_instanceof] = ACTIONS(2248), + [anon_sym_INSTANCEOF] = ACTIONS(2248), + [anon_sym_instanceOf] = ACTIONS(2248), + [sym__automatic_semicolon] = ACTIONS(2250), + [sym__ternary_qmark] = ACTIONS(2250), + [sym__elvis_operator] = ACTIONS(2250), + [sym_logical_or] = ACTIONS(2250), + [sym_tag_linefeed] = ACTIONS(2250), + }, + [STATE(2685)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_COLON] = ACTIONS(5703), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -375611,7 +385190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -375632,713 +385211,1212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5198), - [anon_sym_in] = ACTIONS(5198), - [anon_sym_IN] = ACTIONS(5198), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [anon_sym_Of] = ACTIONS(5201), - [anon_sym_of] = ACTIONS(5201), - [anon_sym_OF] = ACTIONS(5201), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2581)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2582)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2583)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2584)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + }, + [STATE(2686)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2687)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2688)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4686), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5707), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2689)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2690)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2691)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2692)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2693)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2694)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2695)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(2696)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2585)] = { + [STATE(2697)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(5710), }, - [STATE(2586)] = { + [STATE(2698)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2578), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(5716), + [sym__elvis_operator] = ACTIONS(5718), + [sym_logical_or] = ACTIONS(5710), }, - [STATE(2587)] = { + [STATE(2699)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(5573), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_RPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2586), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(5716), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(5710), }, - [STATE(2588)] = { + [STATE(2700)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2460), - [anon_sym_of] = ACTIONS(2460), - [anon_sym_OF] = ACTIONS(2460), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(5581), - [sym__elvis_operator] = ACTIONS(5583), - [sym_logical_or] = ACTIONS(5573), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_RPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2478), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(5716), + [sym__elvis_operator] = ACTIONS(5718), + [sym_logical_or] = ACTIONS(5710), }, - [STATE(2589)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2468), - [anon_sym_of] = ACTIONS(2468), - [anon_sym_OF] = ACTIONS(2468), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(5581), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(5573), + [STATE(2701)] = { + [sym_identifier] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_RPAREN] = ACTIONS(2316), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2314), + [sym_optional_chain] = ACTIONS(2316), + [sym_static_chain] = ACTIONS(2316), + [anon_sym_AMP_AMP] = ACTIONS(2316), + [anon_sym_PIPE_PIPE] = ACTIONS(2316), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2316), + [anon_sym_LT_LT] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2316), + [anon_sym_BSLASH] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2316), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2316), + [anon_sym_LT_GT] = ACTIONS(2316), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2316), + [aux_sym_binary_expression_token1] = ACTIONS(2316), + [anon_sym_GT_EQ] = ACTIONS(2316), + [anon_sym_GT] = ACTIONS(2314), + [aux_sym_binary_expression_token2] = ACTIONS(2314), + [aux_sym_binary_expression_token3] = ACTIONS(2314), + [aux_sym_binary_expression_token4] = ACTIONS(2316), + [aux_sym_binary_expression_token5] = ACTIONS(2316), + [aux_sym_binary_expression_token6] = ACTIONS(2316), + [anon_sym_QMARK_QMARK] = ACTIONS(2316), + [anon_sym_PLUS_PLUS] = ACTIONS(2316), + [anon_sym_DASH_DASH] = ACTIONS(2316), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_IN] = ACTIONS(2314), + [anon_sym_InstanceOf] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_INSTANCEOF] = ACTIONS(2314), + [anon_sym_instanceOf] = ACTIONS(2314), + [sym__ternary_qmark] = ACTIONS(2316), + [sym__elvis_operator] = ACTIONS(2316), + [sym_logical_or] = ACTIONS(2316), + [sym__parameter_separator] = ACTIONS(2316), }, - [STATE(2590)] = { + [STATE(2702)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5192), + [anon_sym_COLON] = ACTIONS(2312), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -376354,7 +386432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -376378,188 +386456,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2591)] = { - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2246), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), + [STATE(2703)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym__parameter_separator] = ACTIONS(2213), + }, + [STATE(2704)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4684), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2705)] = { + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2260), + [sym_static_chain] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym__parameter_separator] = ACTIONS(2260), + }, + [STATE(2706)] = { + [sym_identifier] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), + [sym_optional_chain] = ACTIONS(2272), + [sym_static_chain] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2272), + [anon_sym_LT_LT] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_PERCENT] = ACTIONS(2272), + [anon_sym_BSLASH] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), + [anon_sym_LT_GT] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), + [aux_sym_binary_expression_token1] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2270), + [aux_sym_binary_expression_token2] = ACTIONS(2270), + [aux_sym_binary_expression_token3] = ACTIONS(2270), + [aux_sym_binary_expression_token4] = ACTIONS(2272), + [aux_sym_binary_expression_token5] = ACTIONS(2272), + [aux_sym_binary_expression_token6] = ACTIONS(2272), + [anon_sym_QMARK_QMARK] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5538), - [anon_sym_in] = ACTIONS(5538), - [anon_sym_IN] = ACTIONS(5538), - [anon_sym_InstanceOf] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_INSTANCEOF] = ACTIONS(2246), - [anon_sym_instanceOf] = ACTIONS(2246), - [anon_sym_Of] = ACTIONS(5536), - [anon_sym_of] = ACTIONS(5536), - [anon_sym_OF] = ACTIONS(5536), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), + [anon_sym_In] = ACTIONS(2270), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_IN] = ACTIONS(2270), + [anon_sym_InstanceOf] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_INSTANCEOF] = ACTIONS(2270), + [anon_sym_instanceOf] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(2272), + [sym__ternary_qmark] = ACTIONS(2272), + [sym__elvis_operator] = ACTIONS(2272), + [sym_logical_or] = ACTIONS(2272), + [sym_tag_linefeed] = ACTIONS(2272), }, - [STATE(2592)] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_EQ_GT] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), - [sym__automatic_semicolon] = ACTIONS(2221), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym_tag_linefeed] = ACTIONS(2221), + [STATE(2707)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2593)] = { + [STATE(2708)] = { + [sym_identifier] = ACTIONS(2244), [anon_sym_DOT] = ACTIONS(2246), [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(5585), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2246), [anon_sym_COLON] = ACTIONS(2244), - [anon_sym_EQ] = ACTIONS(2248), [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_RBRACK] = ACTIONS(5585), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), [sym_optional_chain] = ACTIONS(2246), [sym_static_chain] = ACTIONS(2246), @@ -376575,7 +386869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2244), [anon_sym_SLASH] = ACTIONS(2244), [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), [anon_sym_STAR_STAR] = ACTIONS(2246), [anon_sym_LT] = ACTIONS(2244), [anon_sym_LT_EQ] = ACTIONS(2246), @@ -376596,711 +386890,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2246), [anon_sym_DASH_DASH] = ACTIONS(2246), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2246), [anon_sym_In] = ACTIONS(2244), [anon_sym_in] = ACTIONS(2244), [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_INSTANCEOF] = ACTIONS(2246), - [anon_sym_instanceOf] = ACTIONS(2246), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2246), [sym__ternary_qmark] = ACTIONS(2246), [sym__elvis_operator] = ACTIONS(2246), [sym_logical_or] = ACTIONS(2246), + [sym_tag_linefeed] = ACTIONS(2246), }, - [STATE(2594)] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_COLON] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_INSTANCEOF] = ACTIONS(2278), - [anon_sym_instanceOf] = ACTIONS(2278), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), - [sym__parameter_separator] = ACTIONS(2280), - }, - [STATE(2595)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2596)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2597)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5588), - [anon_sym_SEMI] = ACTIONS(5591), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5591), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2598)] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_COLON] = ACTIONS(2300), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_BSLASH] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2300), - [aux_sym_binary_expression_token2] = ACTIONS(2300), - [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_IN] = ACTIONS(2300), - [anon_sym_InstanceOf] = ACTIONS(2300), - [anon_sym_instanceof] = ACTIONS(2300), - [anon_sym_INSTANCEOF] = ACTIONS(2300), - [anon_sym_instanceOf] = ACTIONS(2300), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), - [sym__parameter_separator] = ACTIONS(2302), - }, - [STATE(2599)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2310), - [anon_sym_of] = ACTIONS(2310), - [anon_sym_OF] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2310), - [sym__ternary_qmark] = ACTIONS(5581), - [sym__elvis_operator] = ACTIONS(5583), - [sym_logical_or] = ACTIONS(5573), + [STATE(2709)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(5723), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2600)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2420), - [anon_sym_of] = ACTIONS(2420), - [anon_sym_OF] = ACTIONS(2420), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(5581), - [sym__elvis_operator] = ACTIONS(5583), - [sym_logical_or] = ACTIONS(5573), + [STATE(2710)] = { + [sym_identifier] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2294), + [sym_optional_chain] = ACTIONS(2296), + [sym_static_chain] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_LT_GT] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [aux_sym_binary_expression_token1] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2294), + [aux_sym_binary_expression_token2] = ACTIONS(2294), + [aux_sym_binary_expression_token3] = ACTIONS(2294), + [aux_sym_binary_expression_token4] = ACTIONS(2296), + [aux_sym_binary_expression_token5] = ACTIONS(2296), + [aux_sym_binary_expression_token6] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_IN] = ACTIONS(2294), + [anon_sym_InstanceOf] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_INSTANCEOF] = ACTIONS(2294), + [anon_sym_instanceOf] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2296), + [sym__ternary_qmark] = ACTIONS(2296), + [sym__elvis_operator] = ACTIONS(2296), + [sym_logical_or] = ACTIONS(2296), + [sym_tag_linefeed] = ACTIONS(2296), }, - [STATE(2601)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2464), - [anon_sym_of] = ACTIONS(2464), - [anon_sym_OF] = ACTIONS(2464), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(5581), - [sym__elvis_operator] = ACTIONS(5583), - [sym_logical_or] = ACTIONS(5573), + [STATE(2711)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym_tag_linefeed] = ACTIONS(2234), }, - [STATE(2602)] = { - [sym_object_assignment_pattern] = STATE(4848), - [sym_array_pattern] = STATE(5064), - [sym__destructuring_pattern] = STATE(5064), - [sym_string] = STATE(4828), - [sym_number] = STATE(4828), - [sym_null] = STATE(4828), - [sym_rest_pattern] = STATE(4848), - [sym_cf_pair] = STATE(4848), - [sym_pair_pattern] = STATE(4848), - [sym__property_name] = STATE(4828), - [sym__hash_always_eval] = STATE(4828), - [sym_hash_expression] = STATE(4828), - [sym_computed_property_name] = STATE(4828), - [sym_identifier] = ACTIONS(5596), - [anon_sym_COMMA] = ACTIONS(5598), - [anon_sym_RBRACE] = ACTIONS(5598), - [anon_sym_let] = ACTIONS(5596), - [anon_sym_LBRACK] = ACTIONS(5305), - [anon_sym_Query] = ACTIONS(5596), - [anon_sym_query] = ACTIONS(5596), - [anon_sym_QUERY] = ACTIONS(5596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(5596), - [anon_sym_set] = ACTIONS(5596), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(5600), - [anon_sym_export] = ACTIONS(5596), - [anon_sym_QueryExecute] = ACTIONS(5596), - [anon_sym_queryexecute] = ACTIONS(5596), - [anon_sym_QUERYEXECUTE] = ACTIONS(5596), - [anon_sym_queryExecute] = ACTIONS(5596), - [anon_sym_Abstract] = ACTIONS(5596), - [anon_sym_abstract] = ACTIONS(5596), - [anon_sym_ABSTRACT] = ACTIONS(5596), - [anon_sym_Component] = ACTIONS(5596), - [anon_sym_component] = ACTIONS(5596), - [anon_sym_COMPONENT] = ACTIONS(5596), - [anon_sym_Debugger] = ACTIONS(5596), - [anon_sym_debugger] = ACTIONS(5596), - [anon_sym_DEBUGGER] = ACTIONS(5596), - [anon_sym_Final] = ACTIONS(5596), - [anon_sym_final] = ACTIONS(5596), - [anon_sym_FINAL] = ACTIONS(5596), - [anon_sym_Include] = ACTIONS(5596), - [anon_sym_include] = ACTIONS(5596), - [anon_sym_INCLUDE] = ACTIONS(5596), - [anon_sym_New] = ACTIONS(5596), - [anon_sym_new] = ACTIONS(5596), - [anon_sym_NEW] = ACTIONS(5596), - [anon_sym_Package] = ACTIONS(5596), - [anon_sym_package] = ACTIONS(5596), - [anon_sym_PACKAGE] = ACTIONS(5596), - [anon_sym_Private] = ACTIONS(5596), - [anon_sym_private] = ACTIONS(5596), - [anon_sym_PRIVATE] = ACTIONS(5596), - [anon_sym_Public] = ACTIONS(5596), - [anon_sym_public] = ACTIONS(5596), - [anon_sym_PUBLIC] = ACTIONS(5596), - [anon_sym_Remote] = ACTIONS(5596), - [anon_sym_remote] = ACTIONS(5596), - [anon_sym_REMOTE] = ACTIONS(5596), - [anon_sym_Static] = ACTIONS(5596), - [anon_sym_static] = ACTIONS(5596), - [anon_sym_STATIC] = ACTIONS(5596), + [STATE(2712)] = { + [sym_identifier] = ACTIONS(2282), + [anon_sym_DOT] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2282), + [sym_optional_chain] = ACTIONS(2284), + [sym_static_chain] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_GT_GT_GT] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2282), + [anon_sym_STAR_STAR] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_LT_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2284), + [anon_sym_LT_GT] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2284), + [aux_sym_binary_expression_token1] = ACTIONS(2284), + [anon_sym_GT_EQ] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2282), + [aux_sym_binary_expression_token2] = ACTIONS(2282), + [aux_sym_binary_expression_token3] = ACTIONS(2282), + [aux_sym_binary_expression_token4] = ACTIONS(2284), + [aux_sym_binary_expression_token5] = ACTIONS(2284), + [aux_sym_binary_expression_token6] = ACTIONS(2284), + [anon_sym_QMARK_QMARK] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2282), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_IN] = ACTIONS(2282), + [anon_sym_InstanceOf] = ACTIONS(2282), + [anon_sym_instanceof] = ACTIONS(2282), + [anon_sym_INSTANCEOF] = ACTIONS(2282), + [anon_sym_instanceOf] = ACTIONS(2282), + [sym__ternary_qmark] = ACTIONS(2284), + [sym__elvis_operator] = ACTIONS(2284), + [sym_logical_or] = ACTIONS(2284), + [sym__parameter_separator] = ACTIONS(2284), }, - [STATE(2603)] = { + [STATE(2713)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -377316,7 +387234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -377340,541 +387258,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2604)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2605)] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_EQ_GT] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym__parameter_separator] = ACTIONS(2221), - }, - [STATE(2606)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2472), - [anon_sym_of] = ACTIONS(2472), - [anon_sym_OF] = ACTIONS(2472), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(5581), - [sym__elvis_operator] = ACTIONS(5583), - [sym_logical_or] = ACTIONS(5573), - }, - [STATE(2607)] = { - [sym_identifier] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_COLON] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2296), - [sym_optional_chain] = ACTIONS(2298), - [sym_static_chain] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_BSLASH] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), - [anon_sym_LT_GT] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), - [aux_sym_binary_expression_token1] = ACTIONS(2298), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [aux_sym_binary_expression_token2] = ACTIONS(2296), - [aux_sym_binary_expression_token3] = ACTIONS(2296), - [aux_sym_binary_expression_token4] = ACTIONS(2298), - [aux_sym_binary_expression_token5] = ACTIONS(2298), - [aux_sym_binary_expression_token6] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_IN] = ACTIONS(2296), - [anon_sym_InstanceOf] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_INSTANCEOF] = ACTIONS(2296), - [anon_sym_instanceOf] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2298), - [sym__elvis_operator] = ACTIONS(2298), - [sym_logical_or] = ACTIONS(2298), - [sym__parameter_separator] = ACTIONS(2298), - }, - [STATE(2608)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2476), - [anon_sym_of] = ACTIONS(2476), - [anon_sym_OF] = ACTIONS(2476), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(5581), - [sym__elvis_operator] = ACTIONS(5583), - [sym_logical_or] = ACTIONS(5573), + [STATE(2714)] = { + [sym_identifier] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_RPAREN] = ACTIONS(2226), + [anon_sym_COLON] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2224), + [sym_optional_chain] = ACTIONS(2226), + [sym_static_chain] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2226), + [anon_sym_PIPE_PIPE] = ACTIONS(2226), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2226), + [anon_sym_BSLASH] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2226), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2226), + [anon_sym_LT_GT] = ACTIONS(2226), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2226), + [aux_sym_binary_expression_token1] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2224), + [aux_sym_binary_expression_token2] = ACTIONS(2224), + [aux_sym_binary_expression_token3] = ACTIONS(2224), + [aux_sym_binary_expression_token4] = ACTIONS(2226), + [aux_sym_binary_expression_token5] = ACTIONS(2226), + [aux_sym_binary_expression_token6] = ACTIONS(2226), + [anon_sym_QMARK_QMARK] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_IN] = ACTIONS(2224), + [anon_sym_InstanceOf] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_INSTANCEOF] = ACTIONS(2224), + [anon_sym_instanceOf] = ACTIONS(2224), + [sym__ternary_qmark] = ACTIONS(2226), + [sym__elvis_operator] = ACTIONS(2226), + [sym_logical_or] = ACTIONS(2226), + [sym__parameter_separator] = ACTIONS(2226), }, - [STATE(2609)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5573), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(5573), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(5579), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2428), - [anon_sym_of] = ACTIONS(2428), - [anon_sym_OF] = ACTIONS(2428), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(5581), - [sym__elvis_operator] = ACTIONS(5583), - [sym_logical_or] = ACTIONS(5573), + [STATE(2715)] = { + [sym_identifier] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_INSTANCEOF] = ACTIONS(2318), + [anon_sym_instanceOf] = ACTIONS(2318), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + [sym__parameter_separator] = ACTIONS(5550), }, - [STATE(2610)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5571), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5575), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5571), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2716)] = { + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym__parameter_separator] = ACTIONS(2246), }, - [STATE(2611)] = { + [STATE(2717)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5602), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), @@ -377940,237 +387560,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2612)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2613)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5547), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5549), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5555), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5559), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5561), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5557), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5555), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5563), - [anon_sym_GT_GT_GT] = ACTIONS(5565), - [anon_sym_LT_LT] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_CARET] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5577), - [anon_sym_PLUS] = ACTIONS(5551), - [anon_sym_DASH] = ACTIONS(5551), - [anon_sym_SLASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5549), - [anon_sym_BSLASH] = ACTIONS(5549), - [anon_sym_STAR_STAR] = ACTIONS(5553), - [anon_sym_LT] = ACTIONS(5555), - [anon_sym_LT_EQ] = ACTIONS(5557), - [anon_sym_EQ_EQ] = ACTIONS(5559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5561), - [anon_sym_LT_GT] = ACTIONS(5561), - [anon_sym_BANG_EQ] = ACTIONS(5559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5561), - [aux_sym_binary_expression_token1] = ACTIONS(5561), - [anon_sym_GT_EQ] = ACTIONS(5557), - [anon_sym_GT] = ACTIONS(5555), - [aux_sym_binary_expression_token2] = ACTIONS(5555), - [aux_sym_binary_expression_token3] = ACTIONS(5555), - [aux_sym_binary_expression_token4] = ACTIONS(5557), - [aux_sym_binary_expression_token5] = ACTIONS(5557), - [aux_sym_binary_expression_token6] = ACTIONS(5561), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5555), - [anon_sym_in] = ACTIONS(5555), - [anon_sym_IN] = ACTIONS(5555), - [anon_sym_InstanceOf] = ACTIONS(5557), - [anon_sym_instanceof] = ACTIONS(5557), - [anon_sym_INSTANCEOF] = ACTIONS(5557), - [anon_sym_instanceOf] = ACTIONS(5557), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2718)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4745), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5725), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2614)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5604), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2719)] = { + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym_tag_linefeed] = ACTIONS(2246), }, - [STATE(2615)] = { - [sym_identifier] = ACTIONS(5228), + [STATE(2720)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym_tag_linefeed] = ACTIONS(2234), + }, + [STATE(2721)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5272), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5272), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(2312), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -378231,238 +387846,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5230), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2616)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), + [STATE(2722)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4762), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5728), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2723)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2617)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2724)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4745), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5731), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2618)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2725)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4659), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5734), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2619)] = { - [sym_identifier] = ACTIONS(5228), + [STATE(2726)] = { + [sym_identifier] = ACTIONS(5737), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(5739), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -378523,576 +388212,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(5739), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5230), - }, - [STATE(2620)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), }, - [STATE(2621)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2727)] = { + [sym_identifier] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_INSTANCEOF] = ACTIONS(2228), + [anon_sym_instanceOf] = ACTIONS(2228), + [sym__automatic_semicolon] = ACTIONS(2230), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), + [sym_tag_linefeed] = ACTIONS(2230), }, - [STATE(2622)] = { - [sym_identifier] = ACTIONS(2242), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2242), - [sym_optional_chain] = ACTIONS(2282), - [sym_static_chain] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2242), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_BSLASH] = ACTIONS(2242), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_LT_GT] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [aux_sym_binary_expression_token1] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2242), - [aux_sym_binary_expression_token2] = ACTIONS(2242), - [aux_sym_binary_expression_token3] = ACTIONS(2242), - [aux_sym_binary_expression_token4] = ACTIONS(2282), - [aux_sym_binary_expression_token5] = ACTIONS(2282), - [aux_sym_binary_expression_token6] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_IN] = ACTIONS(2242), - [anon_sym_InstanceOf] = ACTIONS(2242), - [anon_sym_instanceof] = ACTIONS(2242), - [anon_sym_INSTANCEOF] = ACTIONS(2242), - [anon_sym_instanceOf] = ACTIONS(2242), - [sym__ternary_qmark] = ACTIONS(2282), - [sym__elvis_operator] = ACTIONS(2282), - [sym_logical_or] = ACTIONS(2282), - [sym__parameter_separator] = ACTIONS(2282), + [STATE(2728)] = { + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_COMMA] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_COLON] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2252), + [sym_optional_chain] = ACTIONS(2254), + [sym_static_chain] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_SLASH] = ACTIONS(2252), + [anon_sym_PERCENT] = ACTIONS(2254), + [anon_sym_BSLASH] = ACTIONS(2252), + [anon_sym_STAR_STAR] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_LT_EQ] = ACTIONS(2254), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), + [anon_sym_LT_GT] = ACTIONS(2254), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), + [aux_sym_binary_expression_token1] = ACTIONS(2254), + [anon_sym_GT_EQ] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2252), + [aux_sym_binary_expression_token2] = ACTIONS(2252), + [aux_sym_binary_expression_token3] = ACTIONS(2252), + [aux_sym_binary_expression_token4] = ACTIONS(2254), + [aux_sym_binary_expression_token5] = ACTIONS(2254), + [aux_sym_binary_expression_token6] = ACTIONS(2254), + [anon_sym_QMARK_QMARK] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_IN] = ACTIONS(2252), + [anon_sym_InstanceOf] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_INSTANCEOF] = ACTIONS(2252), + [anon_sym_instanceOf] = ACTIONS(2252), + [sym__ternary_qmark] = ACTIONS(2254), + [sym__elvis_operator] = ACTIONS(2254), + [sym_logical_or] = ACTIONS(2254), + [sym__parameter_separator] = ACTIONS(2254), }, - [STATE(2623)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2729)] = { + [sym_identifier] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_INSTANCEOF] = ACTIONS(2236), + [anon_sym_instanceOf] = ACTIONS(2236), + [sym__automatic_semicolon] = ACTIONS(2238), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), + [sym_tag_linefeed] = ACTIONS(2238), }, - [STATE(2624)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2730)] = { + [sym_arguments] = STATE(2831), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(5748), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym__parameter_separator] = ACTIONS(2260), }, - [STATE(2625)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2731)] = { + [sym_identifier] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_INSTANCEOF] = ACTIONS(2318), + [anon_sym_instanceOf] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + [sym_tag_linefeed] = ACTIONS(2320), }, - [STATE(2626)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2732)] = { + [sym_arguments] = STATE(2831), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(5748), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2289), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + [sym__parameter_separator] = ACTIONS(2260), }, - [STATE(2627)] = { - [sym_identifier] = ACTIONS(2284), + [STATE(2733)] = { + [sym_identifier] = ACTIONS(2256), [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), [sym_optional_chain] = ACTIONS(2286), [sym_static_chain] = ACTIONS(2286), [anon_sym_AMP_AMP] = ACTIONS(2286), [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2289), [anon_sym_GT_GT_GT] = ACTIONS(2286), [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2289), [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2289), [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2289), [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2289), [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2289), [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), [aux_sym_binary_expression_token1] = ACTIONS(2286), [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), [aux_sym_binary_expression_token4] = ACTIONS(2286), [aux_sym_binary_expression_token5] = ACTIONS(2286), [aux_sym_binary_expression_token6] = ACTIONS(2286), @@ -379100,172 +388716,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(2286), [anon_sym_DASH_DASH] = ACTIONS(2286), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), [sym__ternary_qmark] = ACTIONS(2286), [sym__elvis_operator] = ACTIONS(2286), [sym_logical_or] = ACTIONS(2286), - [sym__parameter_separator] = ACTIONS(2286), + [sym__parameter_separator] = ACTIONS(2260), }, - [STATE(2628)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2734)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2629)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym__parameter_separator] = ACTIONS(2240), + [STATE(2735)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_RPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2410), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(5716), + [sym__elvis_operator] = ACTIONS(5718), + [sym_logical_or] = ACTIONS(5710), + }, + [STATE(2736)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4650), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5752), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2737)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4786), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5755), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2738)] = { + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym__parameter_separator] = ACTIONS(2246), }, - [STATE(2630)] = { - [sym_identifier] = ACTIONS(5209), + [STATE(2739)] = { + [sym_identifier] = ACTIONS(5213), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5218), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_RPAREN] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -379329,599 +389164,2279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5214), + [sym__parameter_separator] = ACTIONS(5218), }, - [STATE(2631)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2740)] = { + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_COLON] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2570), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2570), + [anon_sym_instanceof] = ACTIONS(2570), + [anon_sym_INSTANCEOF] = ACTIONS(2570), + [anon_sym_instanceOf] = ACTIONS(2570), + [sym__automatic_semicolon] = ACTIONS(2570), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), }, - [STATE(2632)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), + [STATE(2741)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym__parameter_separator] = ACTIONS(2234), + }, + [STATE(2742)] = { + [sym_identifier] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2240), + [sym_optional_chain] = ACTIONS(2242), + [sym_static_chain] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2242), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2242), + [aux_sym_binary_expression_token1] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2240), + [aux_sym_binary_expression_token2] = ACTIONS(2240), + [aux_sym_binary_expression_token3] = ACTIONS(2240), + [aux_sym_binary_expression_token4] = ACTIONS(2242), + [aux_sym_binary_expression_token5] = ACTIONS(2242), + [aux_sym_binary_expression_token6] = ACTIONS(2242), + [anon_sym_QMARK_QMARK] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_IN] = ACTIONS(2240), + [anon_sym_InstanceOf] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_INSTANCEOF] = ACTIONS(2240), + [anon_sym_instanceOf] = ACTIONS(2240), + [sym__ternary_qmark] = ACTIONS(2242), + [sym__elvis_operator] = ACTIONS(2242), + [sym_logical_or] = ACTIONS(2242), + [sym__parameter_separator] = ACTIONS(2242), + }, + [STATE(2743)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5641), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2633)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4758), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2744)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4684), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5763), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2634)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2745)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4780), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5766), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2635)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4654), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5649), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2746)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2636)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(5652), + [STATE(2747)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(5716), + [sym__elvis_operator] = ACTIONS(5718), + [sym_logical_or] = ACTIONS(5710), }, - [STATE(2637)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2460), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(5658), - [sym__elvis_operator] = ACTIONS(5660), - [sym_logical_or] = ACTIONS(5652), + [STATE(2748)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2418), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(5716), + [sym__elvis_operator] = ACTIONS(5718), + [sym_logical_or] = ACTIONS(5710), }, - [STATE(2638)] = { - [sym_identifier] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_RPAREN] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2288), - [sym_optional_chain] = ACTIONS(2290), - [sym_static_chain] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_BSLASH] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_LT_GT] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [aux_sym_binary_expression_token1] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [aux_sym_binary_expression_token2] = ACTIONS(2288), - [aux_sym_binary_expression_token3] = ACTIONS(2288), - [aux_sym_binary_expression_token4] = ACTIONS(2290), - [aux_sym_binary_expression_token5] = ACTIONS(2290), - [aux_sym_binary_expression_token6] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [sym_comment] = ACTIONS(129), - [sym_regex_flags] = ACTIONS(5662), - [anon_sym_In] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_IN] = ACTIONS(2288), - [anon_sym_InstanceOf] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_INSTANCEOF] = ACTIONS(2288), - [anon_sym_instanceOf] = ACTIONS(2288), - [sym__ternary_qmark] = ACTIONS(2290), - [sym__elvis_operator] = ACTIONS(2290), - [sym_logical_or] = ACTIONS(2290), - [sym__parameter_separator] = ACTIONS(2290), + [STATE(2749)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2639)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2750)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4659), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5769), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2751)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2752)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4786), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5774), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2753)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1947), + [sym_optional_chain] = ACTIONS(1955), + [sym_static_chain] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_BSLASH] = ACTIONS(1947), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_LT_GT] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [aux_sym_binary_expression_token1] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1947), + [aux_sym_binary_expression_token2] = ACTIONS(1947), + [aux_sym_binary_expression_token3] = ACTIONS(1947), + [aux_sym_binary_expression_token4] = ACTIONS(1955), + [aux_sym_binary_expression_token5] = ACTIONS(1955), + [aux_sym_binary_expression_token6] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_IN] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1947), + [anon_sym_instanceof] = ACTIONS(1947), + [anon_sym_INSTANCEOF] = ACTIONS(1947), + [anon_sym_instanceOf] = ACTIONS(1947), + [sym__ternary_qmark] = ACTIONS(1955), + [sym__elvis_operator] = ACTIONS(1955), + [sym_logical_or] = ACTIONS(1955), + [sym__parameter_separator] = ACTIONS(1955), + }, + [STATE(2754)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5777), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2755)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4650), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5779), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2756)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym__parameter_separator] = ACTIONS(2234), + }, + [STATE(2757)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_RPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(5716), + [sym__elvis_operator] = ACTIONS(5718), + [sym_logical_or] = ACTIONS(5710), + }, + [STATE(2758)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2759)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4780), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5784), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2760)] = { + [sym_identifier] = ACTIONS(2248), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_COLON] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2248), + [sym_optional_chain] = ACTIONS(2250), + [sym_static_chain] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2248), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2248), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_LT_GT] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [aux_sym_binary_expression_token1] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2248), + [aux_sym_binary_expression_token2] = ACTIONS(2248), + [aux_sym_binary_expression_token3] = ACTIONS(2248), + [aux_sym_binary_expression_token4] = ACTIONS(2250), + [aux_sym_binary_expression_token5] = ACTIONS(2250), + [aux_sym_binary_expression_token6] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [anon_sym_IN] = ACTIONS(2248), + [anon_sym_InstanceOf] = ACTIONS(2248), + [anon_sym_instanceof] = ACTIONS(2248), + [anon_sym_INSTANCEOF] = ACTIONS(2248), + [anon_sym_instanceOf] = ACTIONS(2248), + [sym__ternary_qmark] = ACTIONS(2250), + [sym__elvis_operator] = ACTIONS(2250), + [sym_logical_or] = ACTIONS(2250), + [sym__parameter_separator] = ACTIONS(2250), + }, + [STATE(2761)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2762)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4659), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5789), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2763)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2764)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4780), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2765)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2766)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5795), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2767)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2768)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5799), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2769)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4745), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2770)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2771)] = { + [sym_identifier] = ACTIONS(5228), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5276), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(5276), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -379982,37 +391497,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5230), }, - [STATE(2640)] = { - [sym_identifier] = ACTIONS(5664), + [STATE(2772)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(5804), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym__parameter_separator] = ACTIONS(1588), + }, + [STATE(2773)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(5666), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5244), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -380028,7 +391615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -380052,258 +391639,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(5666), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2641)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym_tag_linefeed] = ACTIONS(2286), - }, - [STATE(2642)] = { - [sym_arguments] = STATE(2622), - [sym_identifier] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_INSTANCEOF] = ACTIONS(2230), - [anon_sym_instanceOf] = ACTIONS(2230), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), - [sym__parameter_separator] = ACTIONS(2233), + [STATE(2774)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4686), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5806), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2643)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym_tag_linefeed] = ACTIONS(2240), + [STATE(2775)] = { + [sym_arguments] = STATE(2799), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), }, - [STATE(2644)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2776)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(5811), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(5814), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -380319,7 +391834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -380343,828 +391858,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - }, - [STATE(2645)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2646)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4623), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5671), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2647)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4692), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5674), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2648)] = { - [sym_identifier] = ACTIONS(2248), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(5585), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(5585), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_INSTANCEOF] = ACTIONS(2244), - [anon_sym_instanceOf] = ACTIONS(2244), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), - [sym__parameter_separator] = ACTIONS(5536), - }, - [STATE(2649)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_RPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2468), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(5658), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(5652), - }, - [STATE(2650)] = { - [sym_identifier] = ACTIONS(2244), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_INSTANCEOF] = ACTIONS(2244), - [anon_sym_instanceOf] = ACTIONS(2244), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), - [sym__parameter_separator] = ACTIONS(2246), - }, - [STATE(2651)] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_EQ_GT] = ACTIONS(2223), - [anon_sym_DASH_GT] = ACTIONS(2223), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym_tag_linefeed] = ACTIONS(2221), - }, - [STATE(2652)] = { - [sym_identifier] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_COLON] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2304), - [sym_optional_chain] = ACTIONS(2306), - [sym_static_chain] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_BSLASH] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2306), - [anon_sym_LT_GT] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2306), - [aux_sym_binary_expression_token1] = ACTIONS(2306), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [aux_sym_binary_expression_token2] = ACTIONS(2304), - [aux_sym_binary_expression_token3] = ACTIONS(2304), - [aux_sym_binary_expression_token4] = ACTIONS(2306), - [aux_sym_binary_expression_token5] = ACTIONS(2306), - [aux_sym_binary_expression_token6] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_IN] = ACTIONS(2304), - [anon_sym_InstanceOf] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_INSTANCEOF] = ACTIONS(2304), - [anon_sym_instanceOf] = ACTIONS(2304), - [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2306), - [sym__elvis_operator] = ACTIONS(2306), - [sym_logical_or] = ACTIONS(2306), - [sym_tag_linefeed] = ACTIONS(2306), - }, - [STATE(2653)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5683), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(5711), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5713), - [anon_sym_in] = ACTIONS(5713), - [anon_sym_IN] = ACTIONS(5713), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(5679), - [anon_sym_of] = ACTIONS(5679), - [anon_sym_OF] = ACTIONS(5679), - [sym__automatic_semicolon] = ACTIONS(5679), - [sym__ternary_qmark] = ACTIONS(5717), - [sym__elvis_operator] = ACTIONS(5719), - [sym_logical_or] = ACTIONS(5683), }, - [STATE(2654)] = { + [STATE(2777)] = { [anon_sym_DOT] = ACTIONS(5518), [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5683), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5705), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5710), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5712), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5679), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5681), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5685), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5687), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5683), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5681), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_PIPE_PIPE] = ACTIONS(5710), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_GT_GT_GT] = ACTIONS(5691), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5693), + [anon_sym_CARET] = ACTIONS(5695), + [anon_sym_PIPE] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(5711), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5721), - [anon_sym_in] = ACTIONS(5721), - [anon_sym_IN] = ACTIONS(5721), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(5679), - [anon_sym_of] = ACTIONS(5679), - [anon_sym_OF] = ACTIONS(5679), - [sym__automatic_semicolon] = ACTIONS(5679), - [sym__ternary_qmark] = ACTIONS(5717), - [sym__elvis_operator] = ACTIONS(5719), - [sym_logical_or] = ACTIONS(5683), - }, - [STATE(2655)] = { - [sym_arguments] = STATE(2622), - [sym_identifier] = ACTIONS(2264), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2264), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2264), - [anon_sym_instanceof] = ACTIONS(2264), - [anon_sym_INSTANCEOF] = ACTIONS(2264), - [anon_sym_instanceOf] = ACTIONS(2264), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), - [sym__parameter_separator] = ACTIONS(2267), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_BSLASH] = ACTIONS(5679), + [anon_sym_STAR_STAR] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_EQ] = ACTIONS(5683), + [anon_sym_EQ_EQ] = ACTIONS(5685), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5687), + [anon_sym_LT_GT] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5685), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5687), + [aux_sym_binary_expression_token1] = ACTIONS(5687), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [aux_sym_binary_expression_token2] = ACTIONS(5681), + [aux_sym_binary_expression_token3] = ACTIONS(5681), + [aux_sym_binary_expression_token4] = ACTIONS(5683), + [aux_sym_binary_expression_token5] = ACTIONS(5683), + [aux_sym_binary_expression_token6] = ACTIONS(5687), + [anon_sym_QMARK_QMARK] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5681), + [anon_sym_in] = ACTIONS(5681), + [anon_sym_IN] = ACTIONS(5681), + [anon_sym_InstanceOf] = ACTIONS(5683), + [anon_sym_instanceof] = ACTIONS(5683), + [anon_sym_INSTANCEOF] = ACTIONS(5683), + [anon_sym_instanceOf] = ACTIONS(5683), + [sym__ternary_qmark] = ACTIONS(5716), + [sym__elvis_operator] = ACTIONS(5718), + [sym_logical_or] = ACTIONS(5710), }, - [STATE(2656)] = { + [STATE(2778)] = { + [sym_arguments] = STATE(2799), [sym_identifier] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2303), [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), [aux_sym__operator_shaped_name_token1] = ACTIONS(2300), [aux_sym__operator_shaped_name_token2] = ACTIONS(2300), [aux_sym__operator_shaped_name_token3] = ACTIONS(2300), @@ -381182,40 +391965,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), + [anon_sym_CARET] = ACTIONS(2303), [anon_sym_PIPE] = ACTIONS(2300), [anon_sym_PLUS] = ACTIONS(2300), [anon_sym_DASH] = ACTIONS(2300), [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2303), [anon_sym_BSLASH] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2302), + [anon_sym_STAR_STAR] = ACTIONS(2303), [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2303), [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), [anon_sym_GT] = ACTIONS(2300), [aux_sym_binary_expression_token2] = ACTIONS(2300), [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), [sym_comment] = ACTIONS(129), [anon_sym_In] = ACTIONS(2300), [anon_sym_in] = ACTIONS(2300), @@ -381224,19 +392007,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(2300), [anon_sym_INSTANCEOF] = ACTIONS(2300), [anon_sym_instanceOf] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), + [sym__automatic_semicolon] = ACTIONS(2303), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), + [sym_tag_linefeed] = ACTIONS(2303), }, - [STATE(2657)] = { + [STATE(2779)] = { + [sym_arguments] = STATE(2831), [sym_identifier] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2303), [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), [aux_sym__operator_shaped_name_token1] = ACTIONS(2300), [aux_sym__operator_shaped_name_token2] = ACTIONS(2300), [aux_sym__operator_shaped_name_token3] = ACTIONS(2300), @@ -381254,40 +392039,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), + [anon_sym_CARET] = ACTIONS(2303), [anon_sym_PIPE] = ACTIONS(2300), [anon_sym_PLUS] = ACTIONS(2300), [anon_sym_DASH] = ACTIONS(2300), [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), + [anon_sym_PERCENT] = ACTIONS(2303), [anon_sym_BSLASH] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2302), + [anon_sym_STAR_STAR] = ACTIONS(2303), [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), + [anon_sym_LT_EQ] = ACTIONS(2303), [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), [anon_sym_GT] = ACTIONS(2300), [aux_sym_binary_expression_token2] = ACTIONS(2300), [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), [sym_comment] = ACTIONS(129), [anon_sym_In] = ACTIONS(2300), [anon_sym_in] = ACTIONS(2300), @@ -381296,2064 +392081,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(2300), [anon_sym_INSTANCEOF] = ACTIONS(2300), [anon_sym_instanceOf] = ACTIONS(2300), - [sym__automatic_semicolon] = ACTIONS(2302), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), - [sym_tag_linefeed] = ACTIONS(2302), - }, - [STATE(2658)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2659)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4584), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5725), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2660)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_RPAREN] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(5728), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym__parameter_separator] = ACTIONS(1684), - }, - [STATE(2661)] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_INSTANCEOF] = ACTIONS(2278), - [anon_sym_instanceOf] = ACTIONS(2278), - [sym__automatic_semicolon] = ACTIONS(2280), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), - [sym_tag_linefeed] = ACTIONS(2280), - }, - [STATE(2662)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym_tag_linefeed] = ACTIONS(2286), - }, - [STATE(2663)] = { - [sym_arguments] = STATE(2747), - [sym_identifier] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_INSTANCEOF] = ACTIONS(2230), - [anon_sym_instanceOf] = ACTIONS(2230), - [sym__automatic_semicolon] = ACTIONS(2233), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), - [sym_tag_linefeed] = ACTIONS(2233), - }, - [STATE(2664)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym__parameter_separator] = ACTIONS(2286), - }, - [STATE(2665)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5732), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2666)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4654), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5734), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2667)] = { - [sym_arguments] = STATE(2747), - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(5741), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - [sym_tag_linefeed] = ACTIONS(2254), - }, - [STATE(2668)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym_tag_linefeed] = ACTIONS(2240), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), + [sym__parameter_separator] = ACTIONS(2303), }, - [STATE(2669)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2670)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4758), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5747), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2780)] = { + [sym_arguments] = STATE(2831), + [sym_identifier] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2306), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2306), + [anon_sym_instanceof] = ACTIONS(2306), + [anon_sym_INSTANCEOF] = ACTIONS(2306), + [anon_sym_instanceOf] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), + [sym__parameter_separator] = ACTIONS(2309), }, - [STATE(2671)] = { - [sym_identifier] = ACTIONS(2244), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), + [STATE(2781)] = { + [sym_identifier] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_COMMA] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), + [sym_optional_chain] = ACTIONS(2272), + [sym_static_chain] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2272), + [anon_sym_LT_LT] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_PERCENT] = ACTIONS(2272), + [anon_sym_BSLASH] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), + [anon_sym_LT_GT] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), + [aux_sym_binary_expression_token1] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2270), + [aux_sym_binary_expression_token2] = ACTIONS(2270), + [aux_sym_binary_expression_token3] = ACTIONS(2270), + [aux_sym_binary_expression_token4] = ACTIONS(2272), + [aux_sym_binary_expression_token5] = ACTIONS(2272), + [aux_sym_binary_expression_token6] = ACTIONS(2272), + [anon_sym_QMARK_QMARK] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_INSTANCEOF] = ACTIONS(2244), - [anon_sym_instanceOf] = ACTIONS(2244), - [sym__automatic_semicolon] = ACTIONS(2246), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), - [sym_tag_linefeed] = ACTIONS(2246), - }, - [STATE(2672)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5750), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2673)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4692), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2674)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4644), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5755), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2675)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5758), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2676)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4584), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5760), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2677)] = { - [sym_arguments] = STATE(2747), - [sym_identifier] = ACTIONS(2264), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2264), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2264), - [anon_sym_instanceof] = ACTIONS(2264), - [anon_sym_INSTANCEOF] = ACTIONS(2264), - [anon_sym_instanceOf] = ACTIONS(2264), - [sym__automatic_semicolon] = ACTIONS(2267), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), - [sym_tag_linefeed] = ACTIONS(2267), - }, - [STATE(2678)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2679)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4692), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5763), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2680)] = { - [sym_arguments] = STATE(2747), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5741), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), - }, - [STATE(2681)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2682)] = { - [sym_identifier] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_COMMA] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(2306), - [anon_sym_COLON] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2304), - [sym_optional_chain] = ACTIONS(2306), - [sym_static_chain] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_BSLASH] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2306), - [anon_sym_LT_GT] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2306), - [aux_sym_binary_expression_token1] = ACTIONS(2306), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [aux_sym_binary_expression_token2] = ACTIONS(2304), - [aux_sym_binary_expression_token3] = ACTIONS(2304), - [aux_sym_binary_expression_token4] = ACTIONS(2306), - [aux_sym_binary_expression_token5] = ACTIONS(2306), - [aux_sym_binary_expression_token6] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_IN] = ACTIONS(2304), - [anon_sym_InstanceOf] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_INSTANCEOF] = ACTIONS(2304), - [anon_sym_instanceOf] = ACTIONS(2304), - [sym__ternary_qmark] = ACTIONS(2306), - [sym__elvis_operator] = ACTIONS(2306), - [sym_logical_or] = ACTIONS(2306), - [sym__parameter_separator] = ACTIONS(2306), + [anon_sym_In] = ACTIONS(2270), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_IN] = ACTIONS(2270), + [anon_sym_InstanceOf] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_INSTANCEOF] = ACTIONS(2270), + [anon_sym_instanceOf] = ACTIONS(2270), + [sym__ternary_qmark] = ACTIONS(2272), + [sym__elvis_operator] = ACTIONS(2272), + [sym_logical_or] = ACTIONS(2272), + [sym__parameter_separator] = ACTIONS(2272), }, - [STATE(2683)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2015), - [sym_optional_chain] = ACTIONS(2023), - [sym_static_chain] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_GT_GT_GT] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_STAR_STAR] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2023), - [anon_sym_LT_GT] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2023), - [aux_sym_binary_expression_token1] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2015), - [aux_sym_binary_expression_token2] = ACTIONS(2015), - [aux_sym_binary_expression_token3] = ACTIONS(2015), - [aux_sym_binary_expression_token4] = ACTIONS(2023), - [aux_sym_binary_expression_token5] = ACTIONS(2023), - [aux_sym_binary_expression_token6] = ACTIONS(2023), - [anon_sym_QMARK_QMARK] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_IN] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2015), - [anon_sym_instanceof] = ACTIONS(2015), - [anon_sym_INSTANCEOF] = ACTIONS(2015), - [anon_sym_instanceOf] = ACTIONS(2015), - [sym__ternary_qmark] = ACTIONS(2023), - [sym__elvis_operator] = ACTIONS(2023), - [sym_logical_or] = ACTIONS(2023), - [sym__parameter_separator] = ACTIONS(2023), + [STATE(2782)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5657), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5819), + [anon_sym_in] = ACTIONS(5819), + [anon_sym_IN] = ACTIONS(5819), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(5817), + [anon_sym_of] = ACTIONS(5817), + [anon_sym_OF] = ACTIONS(5817), + [sym__automatic_semicolon] = ACTIONS(5817), + [sym__ternary_qmark] = ACTIONS(5669), + [sym__elvis_operator] = ACTIONS(5671), + [sym_logical_or] = ACTIONS(5657), }, - [STATE(2684)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5766), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(2783)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5657), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5823), + [anon_sym_in] = ACTIONS(5823), + [anon_sym_IN] = ACTIONS(5823), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(5817), + [anon_sym_of] = ACTIONS(5817), + [anon_sym_OF] = ACTIONS(5817), + [sym__automatic_semicolon] = ACTIONS(5817), + [sym__ternary_qmark] = ACTIONS(5669), + [sym__elvis_operator] = ACTIONS(5671), + [sym_logical_or] = ACTIONS(5657), }, - [STATE(2685)] = { - [sym_arguments] = STATE(2622), - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(5772), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), + [STATE(2784)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(5811), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - [sym__parameter_separator] = ACTIONS(2254), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2686)] = { - [sym_identifier] = ACTIONS(5664), + [STATE(2785)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5827), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2786)] = { + [sym_identifier] = ACTIONS(5737), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5776), + [anon_sym_COMMA] = ACTIONS(5829), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5776), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(5829), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -383417,235 +392595,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5776), - }, - [STATE(2687)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5778), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2688)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(5658), - [sym__elvis_operator] = ACTIONS(5660), - [sym_logical_or] = ACTIONS(5652), + [sym__parameter_separator] = ACTIONS(5829), }, - [STATE(2689)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(2787)] = { + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), + [sym_optional_chain] = ACTIONS(2334), + [sym_static_chain] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2332), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_BSLASH] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [aux_sym_binary_expression_token1] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2332), + [aux_sym_binary_expression_token2] = ACTIONS(2332), + [aux_sym_binary_expression_token3] = ACTIONS(2332), + [aux_sym_binary_expression_token4] = ACTIONS(2334), + [aux_sym_binary_expression_token5] = ACTIONS(2334), + [aux_sym_binary_expression_token6] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [sym_comment] = ACTIONS(129), + [sym_regex_flags] = ACTIONS(5546), + [anon_sym_In] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_IN] = ACTIONS(2332), + [anon_sym_InstanceOf] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_INSTANCEOF] = ACTIONS(2334), + [anon_sym_instanceOf] = ACTIONS(2334), + [sym__automatic_semicolon] = ACTIONS(2334), + [sym__ternary_qmark] = ACTIONS(2334), + [sym__elvis_operator] = ACTIONS(2334), + [sym_logical_or] = ACTIONS(2334), }, - [STATE(2690)] = { + [STATE(2788)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_COLON] = ACTIONS(5831), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -383711,323 +392743,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2691)] = { - [sym_arguments] = STATE(2622), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5772), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym__parameter_separator] = ACTIONS(1720), + [STATE(2789)] = { + [sym_identifier] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_RPAREN] = ACTIONS(2296), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2294), + [sym_optional_chain] = ACTIONS(2296), + [sym_static_chain] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_LT_GT] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [aux_sym_binary_expression_token1] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2294), + [aux_sym_binary_expression_token2] = ACTIONS(2294), + [aux_sym_binary_expression_token3] = ACTIONS(2294), + [aux_sym_binary_expression_token4] = ACTIONS(2296), + [aux_sym_binary_expression_token5] = ACTIONS(2296), + [aux_sym_binary_expression_token6] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_IN] = ACTIONS(2294), + [anon_sym_InstanceOf] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_INSTANCEOF] = ACTIONS(2294), + [anon_sym_instanceOf] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2296), + [sym__elvis_operator] = ACTIONS(2296), + [sym_logical_or] = ACTIONS(2296), + [sym__parameter_separator] = ACTIONS(2296), }, - [STATE(2692)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(2790)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5657), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_OF] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(5669), + [sym__elvis_operator] = ACTIONS(5671), + [sym_logical_or] = ACTIONS(5657), }, - [STATE(2693)] = { - [sym_arguments] = STATE(2747), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), + [STATE(2791)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4686), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5833), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2694)] = { - [sym_identifier] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2288), - [sym_optional_chain] = ACTIONS(2290), - [sym_static_chain] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_BSLASH] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_LT_GT] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [aux_sym_binary_expression_token1] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [aux_sym_binary_expression_token2] = ACTIONS(2288), - [aux_sym_binary_expression_token3] = ACTIONS(2288), - [aux_sym_binary_expression_token4] = ACTIONS(2290), - [aux_sym_binary_expression_token5] = ACTIONS(2290), - [aux_sym_binary_expression_token6] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [sym_comment] = ACTIONS(129), - [sym_regex_flags] = ACTIONS(5780), - [anon_sym_In] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_IN] = ACTIONS(2288), - [anon_sym_InstanceOf] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_INSTANCEOF] = ACTIONS(2288), - [anon_sym_instanceOf] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym__ternary_qmark] = ACTIONS(2290), - [sym__elvis_operator] = ACTIONS(2290), - [sym_logical_or] = ACTIONS(2290), - [sym_tag_linefeed] = ACTIONS(2290), + [STATE(2792)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5657), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_OF] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(5669), + [sym__elvis_operator] = ACTIONS(5671), + [sym_logical_or] = ACTIONS(5657), }, - [STATE(2695)] = { + [STATE(2793)] = { + [sym_identifier] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2314), + [sym_optional_chain] = ACTIONS(2316), + [sym_static_chain] = ACTIONS(2316), + [anon_sym_AMP_AMP] = ACTIONS(2316), + [anon_sym_PIPE_PIPE] = ACTIONS(2316), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2316), + [anon_sym_LT_LT] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2316), + [anon_sym_BSLASH] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2316), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2316), + [anon_sym_LT_GT] = ACTIONS(2316), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2316), + [aux_sym_binary_expression_token1] = ACTIONS(2316), + [anon_sym_GT_EQ] = ACTIONS(2316), + [anon_sym_GT] = ACTIONS(2314), + [aux_sym_binary_expression_token2] = ACTIONS(2314), + [aux_sym_binary_expression_token3] = ACTIONS(2314), + [aux_sym_binary_expression_token4] = ACTIONS(2316), + [aux_sym_binary_expression_token5] = ACTIONS(2316), + [aux_sym_binary_expression_token6] = ACTIONS(2316), + [anon_sym_QMARK_QMARK] = ACTIONS(2316), + [anon_sym_PLUS_PLUS] = ACTIONS(2316), + [anon_sym_DASH_DASH] = ACTIONS(2316), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_IN] = ACTIONS(2314), + [anon_sym_InstanceOf] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_INSTANCEOF] = ACTIONS(2314), + [anon_sym_instanceOf] = ACTIONS(2314), + [sym__automatic_semicolon] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2316), + [sym__elvis_operator] = ACTIONS(2316), + [sym_logical_or] = ACTIONS(2316), + [sym_tag_linefeed] = ACTIONS(2316), + }, + [STATE(2794)] = { + [sym_arguments] = STATE(2799), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5840), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + }, + [STATE(2795)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -384043,7 +393221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -384067,25 +393245,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2696)] = { + [STATE(2796)] = { + [sym_arguments] = STATE(2799), + [sym_identifier] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2306), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2306), + [anon_sym_instanceof] = ACTIONS(2306), + [anon_sym_INSTANCEOF] = ACTIONS(2306), + [anon_sym_instanceOf] = ACTIONS(2306), + [sym__automatic_semicolon] = ACTIONS(2309), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), + [sym_tag_linefeed] = ACTIONS(2309), + }, + [STATE(2797)] = { + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_COLON] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), + [sym_optional_chain] = ACTIONS(2326), + [sym_static_chain] = ACTIONS(2326), + [anon_sym_AMP_AMP] = ACTIONS(2326), + [anon_sym_PIPE_PIPE] = ACTIONS(2326), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_GT_GT_GT] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_SLASH] = ACTIONS(2324), + [anon_sym_PERCENT] = ACTIONS(2326), + [anon_sym_BSLASH] = ACTIONS(2324), + [anon_sym_STAR_STAR] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_LT_EQ] = ACTIONS(2326), + [anon_sym_EQ_EQ] = ACTIONS(2324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), + [anon_sym_LT_GT] = ACTIONS(2326), + [anon_sym_BANG_EQ] = ACTIONS(2324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), + [aux_sym_binary_expression_token1] = ACTIONS(2326), + [anon_sym_GT_EQ] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2324), + [aux_sym_binary_expression_token2] = ACTIONS(2324), + [aux_sym_binary_expression_token3] = ACTIONS(2324), + [aux_sym_binary_expression_token4] = ACTIONS(2326), + [aux_sym_binary_expression_token5] = ACTIONS(2326), + [aux_sym_binary_expression_token6] = ACTIONS(2326), + [anon_sym_QMARK_QMARK] = ACTIONS(2326), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2324), + [anon_sym_IN] = ACTIONS(2324), + [anon_sym_InstanceOf] = ACTIONS(2324), + [anon_sym_instanceof] = ACTIONS(2324), + [anon_sym_INSTANCEOF] = ACTIONS(2324), + [anon_sym_instanceOf] = ACTIONS(2324), + [sym__automatic_semicolon] = ACTIONS(2326), + [sym__ternary_qmark] = ACTIONS(2326), + [sym__elvis_operator] = ACTIONS(2326), + [sym_logical_or] = ACTIONS(2326), + [sym_tag_linefeed] = ACTIONS(2326), + }, + [STATE(2798)] = { + [sym_arguments] = STATE(2831), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5748), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__parameter_separator] = ACTIONS(1716), + }, + [STATE(2799)] = { + [sym_identifier] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_COLON] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2328), + [sym_optional_chain] = ACTIONS(2330), + [sym_static_chain] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2330), + [anon_sym_LT_LT] = ACTIONS(2330), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2330), + [anon_sym_BSLASH] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2330), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2330), + [anon_sym_LT_GT] = ACTIONS(2330), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2330), + [aux_sym_binary_expression_token1] = ACTIONS(2330), + [anon_sym_GT_EQ] = ACTIONS(2330), + [anon_sym_GT] = ACTIONS(2328), + [aux_sym_binary_expression_token2] = ACTIONS(2328), + [aux_sym_binary_expression_token3] = ACTIONS(2328), + [aux_sym_binary_expression_token4] = ACTIONS(2330), + [aux_sym_binary_expression_token5] = ACTIONS(2330), + [aux_sym_binary_expression_token6] = ACTIONS(2330), + [anon_sym_QMARK_QMARK] = ACTIONS(2330), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_IN] = ACTIONS(2328), + [anon_sym_InstanceOf] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_INSTANCEOF] = ACTIONS(2328), + [anon_sym_instanceOf] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2330), + [sym__elvis_operator] = ACTIONS(2330), + [sym_logical_or] = ACTIONS(2330), + [sym_tag_linefeed] = ACTIONS(2330), + }, + [STATE(2800)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5224), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -384145,383 +393614,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2697)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5782), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2698)] = { - [sym_identifier] = ACTIONS(2248), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(5536), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(5536), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_INSTANCEOF] = ACTIONS(2244), - [anon_sym_instanceOf] = ACTIONS(2244), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), - [sym__parameter_separator] = ACTIONS(5536), - }, - [STATE(2699)] = { - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2288), - [sym_optional_chain] = ACTIONS(2290), - [sym_static_chain] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_BSLASH] = ACTIONS(2290), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_LT_GT] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [aux_sym_binary_expression_token1] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [aux_sym_binary_expression_token2] = ACTIONS(2288), - [aux_sym_binary_expression_token3] = ACTIONS(2288), - [aux_sym_binary_expression_token4] = ACTIONS(2290), - [aux_sym_binary_expression_token5] = ACTIONS(2290), - [aux_sym_binary_expression_token6] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [sym_comment] = ACTIONS(129), - [sym_regex_flags] = ACTIONS(5528), - [anon_sym_In] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_IN] = ACTIONS(2288), - [anon_sym_InstanceOf] = ACTIONS(2290), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_INSTANCEOF] = ACTIONS(2290), - [anon_sym_instanceOf] = ACTIONS(2290), - [sym__automatic_semicolon] = ACTIONS(2290), - [sym__ternary_qmark] = ACTIONS(2290), - [sym__elvis_operator] = ACTIONS(2290), - [sym_logical_or] = ACTIONS(2290), - }, - [STATE(2700)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4584), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5784), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2701)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4663), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5787), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2702)] = { + [STATE(2801)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(5246), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -384587,86 +393692,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2703)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5683), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(5711), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2476), - [anon_sym_of] = ACTIONS(2476), - [anon_sym_OF] = ACTIONS(2476), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(5717), - [sym__elvis_operator] = ACTIONS(5719), - [sym_logical_or] = ACTIONS(5683), + [STATE(2802)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5844), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2704)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2803)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4748), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5846), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2804)] = { + [sym_arguments] = STATE(2589), + [aux_sym_arguments_repeat1] = STATE(4762), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5661), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2805)] = { + [sym_identifier] = ACTIONS(2332), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), + [sym_optional_chain] = ACTIONS(2334), + [sym_static_chain] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2332), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_BSLASH] = ACTIONS(2332), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [aux_sym_binary_expression_token1] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2332), + [aux_sym_binary_expression_token2] = ACTIONS(2332), + [aux_sym_binary_expression_token3] = ACTIONS(2332), + [aux_sym_binary_expression_token4] = ACTIONS(2334), + [aux_sym_binary_expression_token5] = ACTIONS(2334), + [aux_sym_binary_expression_token6] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [sym_comment] = ACTIONS(129), + [sym_regex_flags] = ACTIONS(5852), + [anon_sym_In] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_IN] = ACTIONS(2332), + [anon_sym_InstanceOf] = ACTIONS(2332), + [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_INSTANCEOF] = ACTIONS(2332), + [anon_sym_instanceOf] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2334), + [sym__ternary_qmark] = ACTIONS(2334), + [sym__elvis_operator] = ACTIONS(2334), + [sym_logical_or] = ACTIONS(2334), + [sym_tag_linefeed] = ACTIONS(2334), + }, + [STATE(2806)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5657), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2478), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_OF] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(5669), + [sym__elvis_operator] = ACTIONS(5671), + [sym_logical_or] = ACTIONS(5657), + }, + [STATE(2807)] = { + [sym_identifier] = ACTIONS(5228), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5246), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(1878), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -384727,385 +394125,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), + [sym__parameter_separator] = ACTIONS(5230), }, - [STATE(2705)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5790), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(2808)] = { + [sym_identifier] = ACTIONS(2282), + [anon_sym_DOT] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2282), + [sym_optional_chain] = ACTIONS(2284), + [sym_static_chain] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_GT_GT_GT] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2282), + [anon_sym_STAR_STAR] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_LT_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2284), + [anon_sym_LT_GT] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2284), + [aux_sym_binary_expression_token1] = ACTIONS(2284), + [anon_sym_GT_EQ] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2282), + [aux_sym_binary_expression_token2] = ACTIONS(2282), + [aux_sym_binary_expression_token3] = ACTIONS(2282), + [aux_sym_binary_expression_token4] = ACTIONS(2284), + [aux_sym_binary_expression_token5] = ACTIONS(2284), + [aux_sym_binary_expression_token6] = ACTIONS(2284), + [anon_sym_QMARK_QMARK] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2282), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_IN] = ACTIONS(2282), + [anon_sym_InstanceOf] = ACTIONS(2282), + [anon_sym_instanceof] = ACTIONS(2282), + [anon_sym_INSTANCEOF] = ACTIONS(2282), + [anon_sym_instanceOf] = ACTIONS(2282), + [sym__automatic_semicolon] = ACTIONS(2284), + [sym__ternary_qmark] = ACTIONS(2284), + [sym__elvis_operator] = ACTIONS(2284), + [sym_logical_or] = ACTIONS(2284), + [sym_tag_linefeed] = ACTIONS(2284), }, - [STATE(2706)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(5792), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(5795), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(2809)] = { + [sym_identifier] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_COLON] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2224), + [sym_optional_chain] = ACTIONS(2226), + [sym_static_chain] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2226), + [anon_sym_PIPE_PIPE] = ACTIONS(2226), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2226), + [anon_sym_BSLASH] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2226), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2226), + [anon_sym_LT_GT] = ACTIONS(2226), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2226), + [aux_sym_binary_expression_token1] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2224), + [aux_sym_binary_expression_token2] = ACTIONS(2224), + [aux_sym_binary_expression_token3] = ACTIONS(2224), + [aux_sym_binary_expression_token4] = ACTIONS(2226), + [aux_sym_binary_expression_token5] = ACTIONS(2226), + [aux_sym_binary_expression_token6] = ACTIONS(2226), + [anon_sym_QMARK_QMARK] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_IN] = ACTIONS(2224), + [anon_sym_InstanceOf] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_INSTANCEOF] = ACTIONS(2224), + [anon_sym_instanceOf] = ACTIONS(2224), + [sym__automatic_semicolon] = ACTIONS(2226), + [sym__ternary_qmark] = ACTIONS(2226), + [sym__elvis_operator] = ACTIONS(2226), + [sym_logical_or] = ACTIONS(2226), + [sym_tag_linefeed] = ACTIONS(2226), }, - [STATE(2707)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym__parameter_separator] = ACTIONS(2240), + [STATE(2810)] = { + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [sym__automatic_semicolon] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym_tag_linefeed] = ACTIONS(2246), }, - [STATE(2708)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5683), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(5711), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2428), - [anon_sym_of] = ACTIONS(2428), - [anon_sym_OF] = ACTIONS(2428), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(5717), - [sym__elvis_operator] = ACTIONS(5719), - [sym_logical_or] = ACTIONS(5683), + [STATE(2811)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5631), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5659), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(5631), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2709)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(5792), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(2812)] = { + [sym_arguments] = STATE(2831), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__parameter_separator] = ACTIONS(1716), }, - [STATE(2710)] = { + [STATE(2813)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(5253), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -385171,87 +394568,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2711)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2814)] = { + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_COLON] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2252), + [sym_optional_chain] = ACTIONS(2254), + [sym_static_chain] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_SLASH] = ACTIONS(2252), + [anon_sym_PERCENT] = ACTIONS(2254), + [anon_sym_BSLASH] = ACTIONS(2252), + [anon_sym_STAR_STAR] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_LT_EQ] = ACTIONS(2254), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), + [anon_sym_LT_GT] = ACTIONS(2254), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), + [aux_sym_binary_expression_token1] = ACTIONS(2254), + [anon_sym_GT_EQ] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2252), + [aux_sym_binary_expression_token2] = ACTIONS(2252), + [aux_sym_binary_expression_token3] = ACTIONS(2252), + [aux_sym_binary_expression_token4] = ACTIONS(2254), + [aux_sym_binary_expression_token5] = ACTIONS(2254), + [aux_sym_binary_expression_token6] = ACTIONS(2254), + [anon_sym_QMARK_QMARK] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_IN] = ACTIONS(2252), + [anon_sym_InstanceOf] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_INSTANCEOF] = ACTIONS(2252), + [anon_sym_instanceOf] = ACTIONS(2252), + [sym__automatic_semicolon] = ACTIONS(2254), + [sym__ternary_qmark] = ACTIONS(2254), + [sym__elvis_operator] = ACTIONS(2254), + [sym_logical_or] = ACTIONS(2254), + [sym_tag_linefeed] = ACTIONS(2254), }, - [STATE(2712)] = { + [STATE(2815)] = { + [sym_arguments] = STATE(2799), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(5840), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym_tag_linefeed] = ACTIONS(2260), + }, + [STATE(2816)] = { + [sym_arguments] = STATE(2799), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(5840), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2289), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + [sym_tag_linefeed] = ACTIONS(2260), + }, + [STATE(2817)] = { + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(2286), + [sym_static_chain] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2289), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + [sym_tag_linefeed] = ACTIONS(2260), + }, + [STATE(2818)] = { + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_COLON] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), + [sym_optional_chain] = ACTIONS(2326), + [sym_static_chain] = ACTIONS(2326), + [anon_sym_AMP_AMP] = ACTIONS(2326), + [anon_sym_PIPE_PIPE] = ACTIONS(2326), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_GT_GT_GT] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_SLASH] = ACTIONS(2324), + [anon_sym_PERCENT] = ACTIONS(2326), + [anon_sym_BSLASH] = ACTIONS(2324), + [anon_sym_STAR_STAR] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_LT_EQ] = ACTIONS(2326), + [anon_sym_EQ_EQ] = ACTIONS(2324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), + [anon_sym_LT_GT] = ACTIONS(2326), + [anon_sym_BANG_EQ] = ACTIONS(2324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), + [aux_sym_binary_expression_token1] = ACTIONS(2326), + [anon_sym_GT_EQ] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2324), + [aux_sym_binary_expression_token2] = ACTIONS(2324), + [aux_sym_binary_expression_token3] = ACTIONS(2324), + [aux_sym_binary_expression_token4] = ACTIONS(2326), + [aux_sym_binary_expression_token5] = ACTIONS(2326), + [aux_sym_binary_expression_token6] = ACTIONS(2326), + [anon_sym_QMARK_QMARK] = ACTIONS(2326), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2324), + [anon_sym_IN] = ACTIONS(2324), + [anon_sym_InstanceOf] = ACTIONS(2324), + [anon_sym_instanceof] = ACTIONS(2324), + [anon_sym_INSTANCEOF] = ACTIONS(2324), + [anon_sym_instanceOf] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2326), + [sym__elvis_operator] = ACTIONS(2326), + [sym_logical_or] = ACTIONS(2326), + [sym__parameter_separator] = ACTIONS(2326), + }, + [STATE(2819)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5798), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5257), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -385312,676 +395000,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(509), - }, - [STATE(2713)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2233), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2233), - [anon_sym_instanceof] = ACTIONS(2233), - [anon_sym_INSTANCEOF] = ACTIONS(2233), - [anon_sym_instanceOf] = ACTIONS(2233), - [sym__automatic_semicolon] = ACTIONS(2233), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), - }, - [STATE(2714)] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_INSTANCEOF] = ACTIONS(2278), - [anon_sym_instanceOf] = ACTIONS(2278), - [sym__automatic_semicolon] = ACTIONS(2280), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), - }, - [STATE(2715)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4623), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5800), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2716)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2267), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2267), - [anon_sym_instanceof] = ACTIONS(2267), - [anon_sym_INSTANCEOF] = ACTIONS(2267), - [anon_sym_instanceOf] = ACTIONS(2267), - [sym__automatic_semicolon] = ACTIONS(2267), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), - }, - [STATE(2717)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5803), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2718)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4595), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5805), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2719)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2720)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4595), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5808), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2721)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2722)] = { - [sym_identifier] = ACTIONS(5209), + [STATE(2820)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5214), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(5854), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -386042,182 +395073,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5214), - }, - [STATE(2723)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2724)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2725)] = { - [sym_identifier] = ACTIONS(5228), + [STATE(2821)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5230), - [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(5856), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -386233,7 +395119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -386257,388 +395143,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(5230), - }, - [STATE(2726)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2727)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2728)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), }, - [STATE(2729)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4663), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5811), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2730)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2822)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__automatic_semicolon] = ACTIONS(2234), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym_tag_linefeed] = ACTIONS(2234), }, - [STATE(2731)] = { + [STATE(2823)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_COLON] = ACTIONS(5858), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -386704,1839 +395298,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2732)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2733)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2734)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2735)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5683), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2432), - [anon_sym_of] = ACTIONS(2432), - [anon_sym_OF] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(5683), - }, - [STATE(2736)] = { - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), - [sym_optional_chain] = ACTIONS(2272), - [sym_static_chain] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2272), - [anon_sym_PIPE_PIPE] = ACTIONS(2272), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2272), - [anon_sym_LT_LT] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2272), - [anon_sym_BSLASH] = ACTIONS(2270), - [anon_sym_STAR_STAR] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), - [aux_sym_binary_expression_token1] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2270), - [aux_sym_binary_expression_token2] = ACTIONS(2270), - [aux_sym_binary_expression_token3] = ACTIONS(2270), - [aux_sym_binary_expression_token4] = ACTIONS(2272), - [aux_sym_binary_expression_token5] = ACTIONS(2272), - [aux_sym_binary_expression_token6] = ACTIONS(2272), - [anon_sym_QMARK_QMARK] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2270), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_IN] = ACTIONS(2270), - [anon_sym_InstanceOf] = ACTIONS(2270), - [anon_sym_instanceof] = ACTIONS(2270), - [anon_sym_INSTANCEOF] = ACTIONS(2270), - [anon_sym_instanceOf] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(2272), - [sym__ternary_qmark] = ACTIONS(2272), - [sym__elvis_operator] = ACTIONS(2272), - [sym_logical_or] = ACTIONS(2272), - [sym_tag_linefeed] = ACTIONS(2272), - }, - [STATE(2737)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4758), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5814), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2738)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5683), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(5711), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2460), - [anon_sym_of] = ACTIONS(2460), - [anon_sym_OF] = ACTIONS(2460), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(5717), - [sym__elvis_operator] = ACTIONS(5719), - [sym_logical_or] = ACTIONS(5683), - }, - [STATE(2739)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4717), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5817), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2740)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5683), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(5711), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2468), - [anon_sym_of] = ACTIONS(2468), - [anon_sym_OF] = ACTIONS(2468), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(5717), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(5683), + [STATE(2824)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2741)] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), - [sym__automatic_semicolon] = ACTIONS(2221), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym_tag_linefeed] = ACTIONS(2221), + [STATE(2825)] = { + [sym_identifier] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2240), + [sym_optional_chain] = ACTIONS(2242), + [sym_static_chain] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2242), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2242), + [aux_sym_binary_expression_token1] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2240), + [aux_sym_binary_expression_token2] = ACTIONS(2240), + [aux_sym_binary_expression_token3] = ACTIONS(2240), + [aux_sym_binary_expression_token4] = ACTIONS(2242), + [aux_sym_binary_expression_token5] = ACTIONS(2242), + [aux_sym_binary_expression_token6] = ACTIONS(2242), + [anon_sym_QMARK_QMARK] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_IN] = ACTIONS(2240), + [anon_sym_InstanceOf] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_INSTANCEOF] = ACTIONS(2240), + [anon_sym_instanceOf] = ACTIONS(2240), + [sym__automatic_semicolon] = ACTIONS(2242), + [sym__ternary_qmark] = ACTIONS(2242), + [sym__elvis_operator] = ACTIONS(2242), + [sym_logical_or] = ACTIONS(2242), + [sym_tag_linefeed] = ACTIONS(2242), }, - [STATE(2742)] = { + [STATE(2826)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_RPAREN] = ACTIONS(2464), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(5658), - [sym__elvis_operator] = ACTIONS(5660), - [sym_logical_or] = ACTIONS(5652), - }, - [STATE(2743)] = { - [sym_identifier] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), - [sym_optional_chain] = ACTIONS(2276), - [sym_static_chain] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2276), - [anon_sym_BSLASH] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2276), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), - [anon_sym_LT_GT] = ACTIONS(2276), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), - [aux_sym_binary_expression_token1] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2274), - [aux_sym_binary_expression_token2] = ACTIONS(2274), - [aux_sym_binary_expression_token3] = ACTIONS(2274), - [aux_sym_binary_expression_token4] = ACTIONS(2276), - [aux_sym_binary_expression_token5] = ACTIONS(2276), - [aux_sym_binary_expression_token6] = ACTIONS(2276), - [anon_sym_QMARK_QMARK] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_IN] = ACTIONS(2274), - [anon_sym_InstanceOf] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_INSTANCEOF] = ACTIONS(2274), - [anon_sym_instanceOf] = ACTIONS(2274), - [sym__ternary_qmark] = ACTIONS(2276), - [sym__elvis_operator] = ACTIONS(2276), - [sym_logical_or] = ACTIONS(2276), - [sym__parameter_separator] = ACTIONS(2276), - }, - [STATE(2744)] = { - [sym_identifier] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_EQ] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2296), - [sym_optional_chain] = ACTIONS(2298), - [sym_static_chain] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_BSLASH] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), - [anon_sym_LT_GT] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), - [aux_sym_binary_expression_token1] = ACTIONS(2298), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [aux_sym_binary_expression_token2] = ACTIONS(2296), - [aux_sym_binary_expression_token3] = ACTIONS(2296), - [aux_sym_binary_expression_token4] = ACTIONS(2298), - [aux_sym_binary_expression_token5] = ACTIONS(2298), - [aux_sym_binary_expression_token6] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_IN] = ACTIONS(2296), - [anon_sym_InstanceOf] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_INSTANCEOF] = ACTIONS(2296), - [anon_sym_instanceOf] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym__ternary_qmark] = ACTIONS(2298), - [sym__elvis_operator] = ACTIONS(2298), - [sym_logical_or] = ACTIONS(2298), - [sym_tag_linefeed] = ACTIONS(2298), - }, - [STATE(2745)] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym__parameter_separator] = ACTIONS(2221), - }, - [STATE(2746)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_RPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(5658), - [sym__elvis_operator] = ACTIONS(5660), - [sym_logical_or] = ACTIONS(5652), - }, - [STATE(2747)] = { - [sym_identifier] = ACTIONS(2242), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2242), - [sym_optional_chain] = ACTIONS(2282), - [sym_static_chain] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2242), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_BSLASH] = ACTIONS(2242), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_LT_GT] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [aux_sym_binary_expression_token1] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2242), - [aux_sym_binary_expression_token2] = ACTIONS(2242), - [aux_sym_binary_expression_token3] = ACTIONS(2242), - [aux_sym_binary_expression_token4] = ACTIONS(2282), - [aux_sym_binary_expression_token5] = ACTIONS(2282), - [aux_sym_binary_expression_token6] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_IN] = ACTIONS(2242), - [anon_sym_InstanceOf] = ACTIONS(2242), - [anon_sym_instanceof] = ACTIONS(2242), - [anon_sym_INSTANCEOF] = ACTIONS(2242), - [anon_sym_instanceOf] = ACTIONS(2242), - [sym__automatic_semicolon] = ACTIONS(2282), - [sym__ternary_qmark] = ACTIONS(2282), - [sym__elvis_operator] = ACTIONS(2282), - [sym_logical_or] = ACTIONS(2282), - [sym_tag_linefeed] = ACTIONS(2282), - }, - [STATE(2748)] = { - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1083), - [anon_sym_instanceof] = ACTIONS(1083), - [anon_sym_INSTANCEOF] = ACTIONS(1083), - [anon_sym_instanceOf] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(5820), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), - [sym__parameter_separator] = ACTIONS(1081), - }, - [STATE(2749)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_RPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2472), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(5658), - [sym__elvis_operator] = ACTIONS(5660), - [sym_logical_or] = ACTIONS(5652), - }, - [STATE(2750)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4644), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5822), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2751)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2752)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_RPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2476), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(5658), - [sym__elvis_operator] = ACTIONS(5660), - [sym_logical_or] = ACTIONS(5652), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2753)] = { + [STATE(2827)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_RPAREN] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(5629), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2428), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5633), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5635), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5639), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5641), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5637), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5635), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(5652), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(5658), - [sym__elvis_operator] = ACTIONS(5660), - [sym_logical_or] = ACTIONS(5652), - }, - [STATE(2754)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4663), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5825), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2755)] = { - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), - [sym_optional_chain] = ACTIONS(2272), - [sym_static_chain] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2272), - [anon_sym_PIPE_PIPE] = ACTIONS(2272), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2272), - [anon_sym_LT_LT] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2272), - [anon_sym_BSLASH] = ACTIONS(2270), - [anon_sym_STAR_STAR] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), - [aux_sym_binary_expression_token1] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2270), - [aux_sym_binary_expression_token2] = ACTIONS(2270), - [aux_sym_binary_expression_token3] = ACTIONS(2270), - [aux_sym_binary_expression_token4] = ACTIONS(2272), - [aux_sym_binary_expression_token5] = ACTIONS(2272), - [aux_sym_binary_expression_token6] = ACTIONS(2272), - [anon_sym_QMARK_QMARK] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2270), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_IN] = ACTIONS(2270), - [anon_sym_InstanceOf] = ACTIONS(2270), - [anon_sym_instanceof] = ACTIONS(2270), - [anon_sym_INSTANCEOF] = ACTIONS(2270), - [anon_sym_instanceOf] = ACTIONS(2270), - [sym__ternary_qmark] = ACTIONS(2272), - [sym__elvis_operator] = ACTIONS(2272), - [sym_logical_or] = ACTIONS(2272), - [sym__parameter_separator] = ACTIONS(2272), - }, - [STATE(2756)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2015), - [sym_optional_chain] = ACTIONS(2023), - [sym_static_chain] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_GT_GT_GT] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_STAR_STAR] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2023), - [anon_sym_LT_GT] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2023), - [aux_sym_binary_expression_token1] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2015), - [aux_sym_binary_expression_token2] = ACTIONS(2015), - [aux_sym_binary_expression_token3] = ACTIONS(2015), - [aux_sym_binary_expression_token4] = ACTIONS(2023), - [aux_sym_binary_expression_token5] = ACTIONS(2023), - [aux_sym_binary_expression_token6] = ACTIONS(2023), - [anon_sym_QMARK_QMARK] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_IN] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2015), - [anon_sym_instanceof] = ACTIONS(2015), - [anon_sym_INSTANCEOF] = ACTIONS(2015), - [anon_sym_instanceOf] = ACTIONS(2015), - [sym__automatic_semicolon] = ACTIONS(2023), - [sym__ternary_qmark] = ACTIONS(2023), - [sym__elvis_operator] = ACTIONS(2023), - [sym_logical_or] = ACTIONS(2023), - [sym_tag_linefeed] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_GT_GT_GT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5629), + [anon_sym_PERCENT] = ACTIONS(5633), + [anon_sym_BSLASH] = ACTIONS(5633), + [anon_sym_STAR_STAR] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_EQ] = ACTIONS(5637), + [anon_sym_EQ_EQ] = ACTIONS(5639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5641), + [anon_sym_LT_GT] = ACTIONS(5641), + [anon_sym_BANG_EQ] = ACTIONS(5639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5641), + [aux_sym_binary_expression_token1] = ACTIONS(5641), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [aux_sym_binary_expression_token2] = ACTIONS(5635), + [aux_sym_binary_expression_token3] = ACTIONS(5635), + [aux_sym_binary_expression_token4] = ACTIONS(5637), + [aux_sym_binary_expression_token5] = ACTIONS(5637), + [aux_sym_binary_expression_token6] = ACTIONS(5641), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5635), + [anon_sym_in] = ACTIONS(5635), + [anon_sym_IN] = ACTIONS(5635), + [anon_sym_InstanceOf] = ACTIONS(5637), + [anon_sym_instanceof] = ACTIONS(5637), + [anon_sym_INSTANCEOF] = ACTIONS(5637), + [anon_sym_instanceOf] = ACTIONS(5637), + [anon_sym_Of] = ACTIONS(2484), + [anon_sym_of] = ACTIONS(2484), + [anon_sym_OF] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2757)] = { + [STATE(2828)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5862), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -388602,14 +395663,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2758)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2829)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__parameter_separator] = ACTIONS(1716), + }, + [STATE(2830)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + }, + [STATE(2831)] = { + [sym_identifier] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_COLON] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2330), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2328), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2328), + [sym_optional_chain] = ACTIONS(2330), + [sym_static_chain] = ACTIONS(2330), + [anon_sym_AMP_AMP] = ACTIONS(2330), + [anon_sym_PIPE_PIPE] = ACTIONS(2330), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2330), + [anon_sym_LT_LT] = ACTIONS(2330), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2330), + [anon_sym_BSLASH] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2330), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2330), + [anon_sym_LT_GT] = ACTIONS(2330), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2330), + [aux_sym_binary_expression_token1] = ACTIONS(2330), + [anon_sym_GT_EQ] = ACTIONS(2330), + [anon_sym_GT] = ACTIONS(2328), + [aux_sym_binary_expression_token2] = ACTIONS(2328), + [aux_sym_binary_expression_token3] = ACTIONS(2328), + [aux_sym_binary_expression_token4] = ACTIONS(2330), + [aux_sym_binary_expression_token5] = ACTIONS(2330), + [aux_sym_binary_expression_token6] = ACTIONS(2330), + [anon_sym_QMARK_QMARK] = ACTIONS(2330), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_IN] = ACTIONS(2328), + [anon_sym_InstanceOf] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_INSTANCEOF] = ACTIONS(2328), + [anon_sym_instanceOf] = ACTIONS(2328), + [sym__ternary_qmark] = ACTIONS(2330), + [sym__elvis_operator] = ACTIONS(2330), + [sym_logical_or] = ACTIONS(2330), + [sym__parameter_separator] = ACTIONS(2330), + }, + [STATE(2832)] = { + [sym_identifier] = ACTIONS(5264), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5828), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -388673,470 +395953,752 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2759)] = { - [sym_identifier] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), - [sym_optional_chain] = ACTIONS(2276), - [sym_static_chain] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2276), - [anon_sym_BSLASH] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2276), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), - [anon_sym_LT_GT] = ACTIONS(2276), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), - [aux_sym_binary_expression_token1] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2274), - [aux_sym_binary_expression_token2] = ACTIONS(2274), - [aux_sym_binary_expression_token3] = ACTIONS(2274), - [aux_sym_binary_expression_token4] = ACTIONS(2276), - [aux_sym_binary_expression_token5] = ACTIONS(2276), - [aux_sym_binary_expression_token6] = ACTIONS(2276), - [anon_sym_QMARK_QMARK] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_IN] = ACTIONS(2274), - [anon_sym_InstanceOf] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_INSTANCEOF] = ACTIONS(2274), - [anon_sym_instanceOf] = ACTIONS(2274), - [sym__automatic_semicolon] = ACTIONS(2276), - [sym__ternary_qmark] = ACTIONS(2276), - [sym__elvis_operator] = ACTIONS(2276), - [sym_logical_or] = ACTIONS(2276), - [sym_tag_linefeed] = ACTIONS(2276), + [STATE(2833)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(5868), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2760)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5639), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5654), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5617), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5619), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5623), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5625), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5621), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5619), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5639), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_GT_GT_GT] = ACTIONS(5629), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5631), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_PIPE] = ACTIONS(5635), - [anon_sym_PLUS] = ACTIONS(5637), - [anon_sym_DASH] = ACTIONS(5637), - [anon_sym_SLASH] = ACTIONS(5615), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_BSLASH] = ACTIONS(5617), - [anon_sym_STAR_STAR] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5625), - [anon_sym_LT_GT] = ACTIONS(5625), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5625), - [aux_sym_binary_expression_token1] = ACTIONS(5625), - [anon_sym_GT_EQ] = ACTIONS(5621), - [anon_sym_GT] = ACTIONS(5619), - [aux_sym_binary_expression_token2] = ACTIONS(5619), - [aux_sym_binary_expression_token3] = ACTIONS(5619), - [aux_sym_binary_expression_token4] = ACTIONS(5621), - [aux_sym_binary_expression_token5] = ACTIONS(5621), - [aux_sym_binary_expression_token6] = ACTIONS(5625), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5619), - [anon_sym_in] = ACTIONS(5619), - [anon_sym_IN] = ACTIONS(5619), - [anon_sym_InstanceOf] = ACTIONS(5621), - [anon_sym_instanceof] = ACTIONS(5621), - [anon_sym_INSTANCEOF] = ACTIONS(5621), - [anon_sym_instanceOf] = ACTIONS(5621), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2834)] = { + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(5908), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(5912), + [sym__elvis_operator] = ACTIONS(5914), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2470), }, - [STATE(2761)] = { - [sym_arguments] = STATE(2622), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym__parameter_separator] = ACTIONS(1720), + [STATE(2835)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(5916), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2762)] = { - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_COLON] = ACTIONS(5833), - [anon_sym_EQ] = ACTIONS(5833), - [anon_sym_LBRACK] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2540), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2540), - [anon_sym_instanceof] = ACTIONS(2540), - [anon_sym_INSTANCEOF] = ACTIONS(2540), - [anon_sym_instanceOf] = ACTIONS(2540), - [sym__automatic_semicolon] = ACTIONS(2540), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), + [STATE(2836)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(5918), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2763)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5205), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2837)] = { + [sym_identifier] = ACTIONS(2332), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), + [sym_optional_chain] = ACTIONS(2334), + [sym_static_chain] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2332), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_BSLASH] = ACTIONS(2332), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2332), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_LT_GT] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2332), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [aux_sym_binary_expression_token1] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2332), + [aux_sym_binary_expression_token2] = ACTIONS(2332), + [aux_sym_binary_expression_token3] = ACTIONS(2332), + [aux_sym_binary_expression_token4] = ACTIONS(2334), + [aux_sym_binary_expression_token5] = ACTIONS(2334), + [aux_sym_binary_expression_token6] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), + [sym_regex_flags] = ACTIONS(5920), + [anon_sym_In] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2332), + [anon_sym_IN] = ACTIONS(2332), + [anon_sym_InstanceOf] = ACTIONS(2332), + [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_INSTANCEOF] = ACTIONS(2332), + [anon_sym_instanceOf] = ACTIONS(2332), + [sym__ternary_qmark] = ACTIONS(2334), + [sym__elvis_operator] = ACTIONS(2334), + [sym_logical_or] = ACTIONS(2334), + [sym_tag_linefeed] = ACTIONS(2334), }, - [STATE(2764)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5835), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(2838)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(5922), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2839)] = { + [sym_identifier] = ACTIONS(2282), + [anon_sym_DOT] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2284), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2282), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2282), + [sym_optional_chain] = ACTIONS(2284), + [sym_static_chain] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_GT_GT_GT] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_SLASH] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2284), + [anon_sym_BSLASH] = ACTIONS(2282), + [anon_sym_STAR_STAR] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_LT_EQ] = ACTIONS(2284), + [anon_sym_EQ_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2284), + [anon_sym_LT_GT] = ACTIONS(2284), + [anon_sym_BANG_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2284), + [aux_sym_binary_expression_token1] = ACTIONS(2284), + [anon_sym_GT_EQ] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2282), + [aux_sym_binary_expression_token2] = ACTIONS(2282), + [aux_sym_binary_expression_token3] = ACTIONS(2282), + [aux_sym_binary_expression_token4] = ACTIONS(2284), + [aux_sym_binary_expression_token5] = ACTIONS(2284), + [aux_sym_binary_expression_token6] = ACTIONS(2284), + [anon_sym_QMARK_QMARK] = ACTIONS(2284), + [anon_sym_PLUS_PLUS] = ACTIONS(2284), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2282), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_IN] = ACTIONS(2282), + [anon_sym_InstanceOf] = ACTIONS(2282), + [anon_sym_instanceof] = ACTIONS(2282), + [anon_sym_INSTANCEOF] = ACTIONS(2282), + [anon_sym_instanceOf] = ACTIONS(2282), + [sym__ternary_qmark] = ACTIONS(2284), + [sym__elvis_operator] = ACTIONS(2284), + [sym_logical_or] = ACTIONS(2284), + [sym_tag_linefeed] = ACTIONS(2284), + }, + [STATE(2840)] = { + [sym_identifier] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_COLON] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2226), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2224), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2224), + [sym_optional_chain] = ACTIONS(2226), + [sym_static_chain] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2226), + [anon_sym_PIPE_PIPE] = ACTIONS(2226), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2226), + [anon_sym_LT_LT] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2226), + [anon_sym_BSLASH] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2226), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2226), + [anon_sym_LT_GT] = ACTIONS(2226), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2226), + [aux_sym_binary_expression_token1] = ACTIONS(2226), + [anon_sym_GT_EQ] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2224), + [aux_sym_binary_expression_token2] = ACTIONS(2224), + [aux_sym_binary_expression_token3] = ACTIONS(2224), + [aux_sym_binary_expression_token4] = ACTIONS(2226), + [aux_sym_binary_expression_token5] = ACTIONS(2226), + [aux_sym_binary_expression_token6] = ACTIONS(2226), + [anon_sym_QMARK_QMARK] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_IN] = ACTIONS(2224), + [anon_sym_InstanceOf] = ACTIONS(2224), + [anon_sym_instanceof] = ACTIONS(2224), + [anon_sym_INSTANCEOF] = ACTIONS(2224), + [anon_sym_instanceOf] = ACTIONS(2224), + [sym__ternary_qmark] = ACTIONS(2226), + [sym__elvis_operator] = ACTIONS(2226), + [sym_logical_or] = ACTIONS(2226), + [sym_tag_linefeed] = ACTIONS(2226), + }, + [STATE(2841)] = { + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(5908), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(5912), + [sym__elvis_operator] = ACTIONS(5914), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2342), + }, + [STATE(2842)] = { + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym_tag_linefeed] = ACTIONS(2246), }, - [STATE(2765)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2843)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5276), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(5276), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -389152,7 +396714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -389176,25 +396738,1751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__automatic_semicolon] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2766)] = { + [STATE(2844)] = { + [sym_identifier] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2392), + [sym_optional_chain] = ACTIONS(2394), + [sym_static_chain] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_BSLASH] = ACTIONS(2392), + [anon_sym_STAR_STAR] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2394), + [aux_sym_binary_expression_token1] = ACTIONS(2394), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [aux_sym_binary_expression_token2] = ACTIONS(2392), + [aux_sym_binary_expression_token3] = ACTIONS(2392), + [aux_sym_binary_expression_token4] = ACTIONS(2394), + [aux_sym_binary_expression_token5] = ACTIONS(2394), + [aux_sym_binary_expression_token6] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_IN] = ACTIONS(2392), + [anon_sym_InstanceOf] = ACTIONS(2392), + [anon_sym_instanceof] = ACTIONS(2392), + [anon_sym_INSTANCEOF] = ACTIONS(2392), + [anon_sym_instanceOf] = ACTIONS(2392), + [sym__automatic_semicolon] = ACTIONS(2394), + [sym__ternary_qmark] = ACTIONS(2394), + [sym__elvis_operator] = ACTIONS(2394), + [sym_logical_or] = ACTIONS(2394), + [sym_tag_linefeed] = ACTIONS(2394), + }, + [STATE(2845)] = { + [sym_identifier] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_COMMA] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2540), + [sym_optional_chain] = ACTIONS(2542), + [sym_static_chain] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_BSLASH] = ACTIONS(2540), + [anon_sym_STAR_STAR] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2540), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2542), + [anon_sym_LT_GT] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2540), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2542), + [aux_sym_binary_expression_token1] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [aux_sym_binary_expression_token2] = ACTIONS(2540), + [aux_sym_binary_expression_token3] = ACTIONS(2540), + [aux_sym_binary_expression_token4] = ACTIONS(2542), + [aux_sym_binary_expression_token5] = ACTIONS(2542), + [aux_sym_binary_expression_token6] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_IN] = ACTIONS(2540), + [anon_sym_InstanceOf] = ACTIONS(2540), + [anon_sym_instanceof] = ACTIONS(2540), + [anon_sym_INSTANCEOF] = ACTIONS(2540), + [anon_sym_instanceOf] = ACTIONS(2540), + [sym__ternary_qmark] = ACTIONS(2542), + [sym__elvis_operator] = ACTIONS(2542), + [sym_logical_or] = ACTIONS(2542), + [sym__parameter_separator] = ACTIONS(2542), + }, + [STATE(2846)] = { + [sym_identifier] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2472), + [sym_optional_chain] = ACTIONS(2474), + [sym_static_chain] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_BSLASH] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), + [anon_sym_LT_GT] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), + [aux_sym_binary_expression_token1] = ACTIONS(2474), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [aux_sym_binary_expression_token2] = ACTIONS(2472), + [aux_sym_binary_expression_token3] = ACTIONS(2472), + [aux_sym_binary_expression_token4] = ACTIONS(2474), + [aux_sym_binary_expression_token5] = ACTIONS(2474), + [aux_sym_binary_expression_token6] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_IN] = ACTIONS(2472), + [anon_sym_InstanceOf] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_INSTANCEOF] = ACTIONS(2472), + [anon_sym_instanceOf] = ACTIONS(2472), + [sym__automatic_semicolon] = ACTIONS(2474), + [sym__ternary_qmark] = ACTIONS(2474), + [sym__elvis_operator] = ACTIONS(2474), + [sym_logical_or] = ACTIONS(2474), + [sym_tag_linefeed] = ACTIONS(2474), + }, + [STATE(2847)] = { + [sym_identifier] = ACTIONS(2552), + [anon_sym_DOT] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_RPAREN] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2552), + [sym_optional_chain] = ACTIONS(2554), + [sym_static_chain] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_BSLASH] = ACTIONS(2552), + [anon_sym_STAR_STAR] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2554), + [anon_sym_LT_GT] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2554), + [aux_sym_binary_expression_token1] = ACTIONS(2554), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [aux_sym_binary_expression_token2] = ACTIONS(2552), + [aux_sym_binary_expression_token3] = ACTIONS(2552), + [aux_sym_binary_expression_token4] = ACTIONS(2554), + [aux_sym_binary_expression_token5] = ACTIONS(2554), + [aux_sym_binary_expression_token6] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_IN] = ACTIONS(2552), + [anon_sym_InstanceOf] = ACTIONS(2552), + [anon_sym_instanceof] = ACTIONS(2552), + [anon_sym_INSTANCEOF] = ACTIONS(2552), + [anon_sym_instanceOf] = ACTIONS(2552), + [sym__ternary_qmark] = ACTIONS(2554), + [sym__elvis_operator] = ACTIONS(2554), + [sym_logical_or] = ACTIONS(2554), + [sym__parameter_separator] = ACTIONS(2554), + }, + [STATE(2848)] = { + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2556), + [sym_optional_chain] = ACTIONS(2558), + [sym_static_chain] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_BSLASH] = ACTIONS(2556), + [anon_sym_STAR_STAR] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2558), + [anon_sym_LT_GT] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2558), + [aux_sym_binary_expression_token1] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [aux_sym_binary_expression_token2] = ACTIONS(2556), + [aux_sym_binary_expression_token3] = ACTIONS(2556), + [aux_sym_binary_expression_token4] = ACTIONS(2558), + [aux_sym_binary_expression_token5] = ACTIONS(2558), + [aux_sym_binary_expression_token6] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_IN] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2556), + [anon_sym_instanceof] = ACTIONS(2556), + [anon_sym_INSTANCEOF] = ACTIONS(2556), + [anon_sym_instanceOf] = ACTIONS(2556), + [sym__ternary_qmark] = ACTIONS(2558), + [sym__elvis_operator] = ACTIONS(2558), + [sym_logical_or] = ACTIONS(2558), + [sym__parameter_separator] = ACTIONS(2558), + }, + [STATE(2849)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2850)] = { + [sym_identifier] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2296), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2294), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2294), + [sym_optional_chain] = ACTIONS(2296), + [sym_static_chain] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(2294), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_LT_GT] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [aux_sym_binary_expression_token1] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2294), + [aux_sym_binary_expression_token2] = ACTIONS(2294), + [aux_sym_binary_expression_token3] = ACTIONS(2294), + [aux_sym_binary_expression_token4] = ACTIONS(2296), + [aux_sym_binary_expression_token5] = ACTIONS(2296), + [aux_sym_binary_expression_token6] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2294), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_IN] = ACTIONS(2294), + [anon_sym_InstanceOf] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_INSTANCEOF] = ACTIONS(2294), + [anon_sym_instanceOf] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2296), + [sym__elvis_operator] = ACTIONS(2296), + [sym_logical_or] = ACTIONS(2296), + [sym_tag_linefeed] = ACTIONS(2296), + }, + [STATE(2851)] = { + [sym_identifier] = ACTIONS(2500), + [anon_sym_DOT] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2500), + [sym_optional_chain] = ACTIONS(2502), + [sym_static_chain] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(2500), + [anon_sym_STAR_STAR] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2500), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), + [anon_sym_LT_GT] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2500), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), + [aux_sym_binary_expression_token1] = ACTIONS(2502), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [aux_sym_binary_expression_token2] = ACTIONS(2500), + [aux_sym_binary_expression_token3] = ACTIONS(2500), + [aux_sym_binary_expression_token4] = ACTIONS(2502), + [aux_sym_binary_expression_token5] = ACTIONS(2502), + [aux_sym_binary_expression_token6] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2500), + [anon_sym_in] = ACTIONS(2500), + [anon_sym_IN] = ACTIONS(2500), + [anon_sym_InstanceOf] = ACTIONS(2500), + [anon_sym_instanceof] = ACTIONS(2500), + [anon_sym_INSTANCEOF] = ACTIONS(2500), + [anon_sym_instanceOf] = ACTIONS(2500), + [sym__automatic_semicolon] = ACTIONS(2502), + [sym__ternary_qmark] = ACTIONS(2502), + [sym__elvis_operator] = ACTIONS(2502), + [sym_logical_or] = ACTIONS(2502), + [sym_tag_linefeed] = ACTIONS(2502), + }, + [STATE(2852)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2853)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(5925), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(5925), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2854)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2855)] = { + [sym_identifier] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2504), + [sym_optional_chain] = ACTIONS(2506), + [sym_static_chain] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_BSLASH] = ACTIONS(2504), + [anon_sym_STAR_STAR] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2504), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), + [anon_sym_LT_GT] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2504), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), + [aux_sym_binary_expression_token1] = ACTIONS(2506), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [aux_sym_binary_expression_token2] = ACTIONS(2504), + [aux_sym_binary_expression_token3] = ACTIONS(2504), + [aux_sym_binary_expression_token4] = ACTIONS(2506), + [aux_sym_binary_expression_token5] = ACTIONS(2506), + [aux_sym_binary_expression_token6] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2504), + [anon_sym_in] = ACTIONS(2504), + [anon_sym_IN] = ACTIONS(2504), + [anon_sym_InstanceOf] = ACTIONS(2504), + [anon_sym_instanceof] = ACTIONS(2504), + [anon_sym_INSTANCEOF] = ACTIONS(2504), + [anon_sym_instanceOf] = ACTIONS(2504), + [sym__automatic_semicolon] = ACTIONS(2506), + [sym__ternary_qmark] = ACTIONS(2506), + [sym__elvis_operator] = ACTIONS(2506), + [sym_logical_or] = ACTIONS(2506), + [sym_tag_linefeed] = ACTIONS(2506), + }, + [STATE(2856)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_RPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2410), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(2857)] = { + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(6008), + [sym__elvis_operator] = ACTIONS(6010), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2342), + }, + [STATE(2858)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6012), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2859)] = { + [sym_identifier] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym__parameter_separator] = ACTIONS(1686), + }, + [STATE(2860)] = { + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_COLON] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2254), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2252), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2252), + [sym_optional_chain] = ACTIONS(2254), + [sym_static_chain] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_GT_GT_GT] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_CARET] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PLUS] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_SLASH] = ACTIONS(2252), + [anon_sym_PERCENT] = ACTIONS(2254), + [anon_sym_BSLASH] = ACTIONS(2252), + [anon_sym_STAR_STAR] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_LT_EQ] = ACTIONS(2254), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), + [anon_sym_LT_GT] = ACTIONS(2254), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), + [aux_sym_binary_expression_token1] = ACTIONS(2254), + [anon_sym_GT_EQ] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2252), + [aux_sym_binary_expression_token2] = ACTIONS(2252), + [aux_sym_binary_expression_token3] = ACTIONS(2252), + [aux_sym_binary_expression_token4] = ACTIONS(2254), + [aux_sym_binary_expression_token5] = ACTIONS(2254), + [aux_sym_binary_expression_token6] = ACTIONS(2254), + [anon_sym_QMARK_QMARK] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2252), + [anon_sym_IN] = ACTIONS(2252), + [anon_sym_InstanceOf] = ACTIONS(2252), + [anon_sym_instanceof] = ACTIONS(2252), + [anon_sym_INSTANCEOF] = ACTIONS(2252), + [anon_sym_instanceOf] = ACTIONS(2252), + [sym__ternary_qmark] = ACTIONS(2254), + [sym__elvis_operator] = ACTIONS(2254), + [sym_logical_or] = ACTIONS(2254), + [sym_tag_linefeed] = ACTIONS(2254), + }, + [STATE(2861)] = { + [sym_arguments] = STATE(3085), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(6020), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym_tag_linefeed] = ACTIONS(2260), + }, + [STATE(2862)] = { + [sym_identifier] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2388), + [sym_optional_chain] = ACTIONS(2390), + [sym_static_chain] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_BSLASH] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_LT_GT] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [aux_sym_binary_expression_token1] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2388), + [aux_sym_binary_expression_token2] = ACTIONS(2388), + [aux_sym_binary_expression_token3] = ACTIONS(2388), + [aux_sym_binary_expression_token4] = ACTIONS(2390), + [aux_sym_binary_expression_token5] = ACTIONS(2390), + [aux_sym_binary_expression_token6] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_IN] = ACTIONS(2388), + [anon_sym_InstanceOf] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_INSTANCEOF] = ACTIONS(2388), + [anon_sym_instanceOf] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2390), + [sym__ternary_qmark] = ACTIONS(2390), + [sym__elvis_operator] = ACTIONS(2390), + [sym_logical_or] = ACTIONS(2390), + [sym_tag_linefeed] = ACTIONS(2390), + }, + [STATE(2863)] = { + [sym_arguments] = STATE(3085), + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(6020), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2289), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + [sym_tag_linefeed] = ACTIONS(2260), + }, + [STATE(2864)] = { + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2286), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2289), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2289), + [sym_optional_chain] = ACTIONS(2286), + [sym_static_chain] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2286), + [anon_sym_BSLASH] = ACTIONS(2289), + [anon_sym_STAR_STAR] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_LT_EQ] = ACTIONS(2286), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), + [anon_sym_LT_GT] = ACTIONS(2286), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), + [aux_sym_binary_expression_token1] = ACTIONS(2286), + [anon_sym_GT_EQ] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2289), + [aux_sym_binary_expression_token2] = ACTIONS(2289), + [aux_sym_binary_expression_token3] = ACTIONS(2289), + [aux_sym_binary_expression_token4] = ACTIONS(2286), + [aux_sym_binary_expression_token5] = ACTIONS(2286), + [aux_sym_binary_expression_token6] = ACTIONS(2286), + [anon_sym_QMARK_QMARK] = ACTIONS(2286), + [anon_sym_PLUS_PLUS] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2286), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_IN] = ACTIONS(2289), + [anon_sym_InstanceOf] = ACTIONS(2289), + [anon_sym_instanceof] = ACTIONS(2289), + [anon_sym_INSTANCEOF] = ACTIONS(2289), + [anon_sym_instanceOf] = ACTIONS(2289), + [sym__ternary_qmark] = ACTIONS(2286), + [sym__elvis_operator] = ACTIONS(2286), + [sym_logical_or] = ACTIONS(2286), + [sym_tag_linefeed] = ACTIONS(2260), + }, + [STATE(2865)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4812), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2866)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6024), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2867)] = { + [sym_arguments] = STATE(3085), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(6020), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + }, + [STATE(2868)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5839), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5279), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -389254,93 +398542,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2767)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), + [STATE(2869)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6026), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2870)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6028), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2871)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2418), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(2872)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2768)] = { + [STATE(2873)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(5559), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -389400,1190 +398902,1042 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2769)] = { - [sym_arguments] = STATE(2530), - [aux_sym_arguments_repeat1] = STATE(4595), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5843), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2770)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5677), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5681), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5683), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5685), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5687), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5689), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5693), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5695), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5691), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5689), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5681), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_GT_GT_GT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5701), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_PIPE] = ACTIONS(5705), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_SLASH] = ACTIONS(5677), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_BSLASH] = ACTIONS(5687), - [anon_sym_STAR_STAR] = ACTIONS(5709), - [anon_sym_LT] = ACTIONS(5689), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5695), - [anon_sym_LT_GT] = ACTIONS(5695), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5695), - [aux_sym_binary_expression_token1] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5691), - [anon_sym_GT] = ACTIONS(5689), - [aux_sym_binary_expression_token2] = ACTIONS(5689), - [aux_sym_binary_expression_token3] = ACTIONS(5689), - [aux_sym_binary_expression_token4] = ACTIONS(5691), - [aux_sym_binary_expression_token5] = ACTIONS(5691), - [aux_sym_binary_expression_token6] = ACTIONS(5695), - [anon_sym_QMARK_QMARK] = ACTIONS(5711), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5689), - [anon_sym_in] = ACTIONS(5689), - [anon_sym_IN] = ACTIONS(5689), - [anon_sym_InstanceOf] = ACTIONS(5691), - [anon_sym_instanceof] = ACTIONS(5691), - [anon_sym_INSTANCEOF] = ACTIONS(5691), - [anon_sym_instanceOf] = ACTIONS(5691), - [anon_sym_Of] = ACTIONS(2472), - [anon_sym_of] = ACTIONS(2472), - [anon_sym_OF] = ACTIONS(2472), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(5717), - [sym__elvis_operator] = ACTIONS(5719), - [sym_logical_or] = ACTIONS(5683), + [STATE(2874)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6030), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2771)] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(5888), - [sym__elvis_operator] = ACTIONS(5890), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2472), + [STATE(2875)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6032), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6032), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2772)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5892), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2876)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6035), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6035), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2773)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5895), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5895), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2877)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2774)] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_RPAREN] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2312), - [sym_optional_chain] = ACTIONS(2314), - [sym_static_chain] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_BSLASH] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_LT_GT] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [aux_sym_binary_expression_token1] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [aux_sym_binary_expression_token2] = ACTIONS(2312), - [aux_sym_binary_expression_token3] = ACTIONS(2312), - [aux_sym_binary_expression_token4] = ACTIONS(2314), - [aux_sym_binary_expression_token5] = ACTIONS(2314), - [aux_sym_binary_expression_token6] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2312), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_IN] = ACTIONS(2312), - [anon_sym_InstanceOf] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_INSTANCEOF] = ACTIONS(2312), - [anon_sym_instanceOf] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2314), - [sym__elvis_operator] = ACTIONS(2314), - [sym_logical_or] = ACTIONS(2314), - [sym__parameter_separator] = ACTIONS(2314), + [STATE(2878)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6040), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6040), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2775)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), + [STATE(2879)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5803), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2776)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2310), - [sym__ternary_qmark] = ACTIONS(5931), - [sym__elvis_operator] = ACTIONS(5933), - [sym_logical_or] = ACTIONS(5901), + [anon_sym_RBRACE] = ACTIONS(5777), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2777)] = { - [sym_identifier] = ACTIONS(2316), - [anon_sym_DOT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_COMMA] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_RPAREN] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2316), - [sym_optional_chain] = ACTIONS(2318), - [sym_static_chain] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_BSLASH] = ACTIONS(2316), - [anon_sym_STAR_STAR] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2316), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), - [anon_sym_LT_GT] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2316), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), - [aux_sym_binary_expression_token1] = ACTIONS(2318), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [aux_sym_binary_expression_token2] = ACTIONS(2316), - [aux_sym_binary_expression_token3] = ACTIONS(2316), - [aux_sym_binary_expression_token4] = ACTIONS(2318), - [aux_sym_binary_expression_token5] = ACTIONS(2318), - [aux_sym_binary_expression_token6] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2316), - [anon_sym_in] = ACTIONS(2316), - [anon_sym_IN] = ACTIONS(2316), - [anon_sym_InstanceOf] = ACTIONS(2316), - [anon_sym_instanceof] = ACTIONS(2316), - [anon_sym_INSTANCEOF] = ACTIONS(2316), - [anon_sym_instanceOf] = ACTIONS(2316), - [sym__ternary_qmark] = ACTIONS(2318), - [sym__elvis_operator] = ACTIONS(2318), - [sym_logical_or] = ACTIONS(2318), - [sym__parameter_separator] = ACTIONS(2318), + [STATE(2880)] = { + [sym_identifier] = ACTIONS(2536), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2536), + [sym_optional_chain] = ACTIONS(2538), + [sym_static_chain] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_BSLASH] = ACTIONS(2536), + [anon_sym_STAR_STAR] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2538), + [anon_sym_LT_GT] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2538), + [aux_sym_binary_expression_token1] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [aux_sym_binary_expression_token2] = ACTIONS(2536), + [aux_sym_binary_expression_token3] = ACTIONS(2536), + [aux_sym_binary_expression_token4] = ACTIONS(2538), + [aux_sym_binary_expression_token5] = ACTIONS(2538), + [aux_sym_binary_expression_token6] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_IN] = ACTIONS(2536), + [anon_sym_InstanceOf] = ACTIONS(2536), + [anon_sym_instanceof] = ACTIONS(2536), + [anon_sym_INSTANCEOF] = ACTIONS(2536), + [anon_sym_instanceOf] = ACTIONS(2536), + [sym__ternary_qmark] = ACTIONS(2538), + [sym__elvis_operator] = ACTIONS(2538), + [sym_logical_or] = ACTIONS(2538), + [sym__parameter_separator] = ACTIONS(2538), }, - [STATE(2778)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(5931), - [sym__elvis_operator] = ACTIONS(5933), - [sym_logical_or] = ACTIONS(5901), + [STATE(2881)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4809), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(5484), + [anon_sym_RBRACE] = ACTIONS(6043), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2779)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(5935), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2882)] = { + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2464), + [sym_optional_chain] = ACTIONS(2466), + [sym_static_chain] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_BSLASH] = ACTIONS(2464), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_LT_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [aux_sym_binary_expression_token1] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [aux_sym_binary_expression_token2] = ACTIONS(2464), + [aux_sym_binary_expression_token3] = ACTIONS(2464), + [aux_sym_binary_expression_token4] = ACTIONS(2466), + [aux_sym_binary_expression_token5] = ACTIONS(2466), + [aux_sym_binary_expression_token6] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2464), + [anon_sym_in] = ACTIONS(2464), + [anon_sym_IN] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(2464), + [anon_sym_instanceof] = ACTIONS(2464), + [anon_sym_INSTANCEOF] = ACTIONS(2464), + [anon_sym_instanceOf] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2466), + [sym__elvis_operator] = ACTIONS(2466), + [sym_logical_or] = ACTIONS(2466), + [sym__parameter_separator] = ACTIONS(2466), }, - [STATE(2780)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(5931), - [sym__elvis_operator] = ACTIONS(5933), - [sym_logical_or] = ACTIONS(5901), + [STATE(2883)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym_tag_linefeed] = ACTIONS(2234), }, - [STATE(2781)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(5937), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2884)] = { + [sym_identifier] = ACTIONS(2240), + [anon_sym_DOT] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2242), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2240), + [sym_optional_chain] = ACTIONS(2242), + [sym_static_chain] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_GT_GT_GT] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_SLASH] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(2242), + [anon_sym_BSLASH] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_LT_EQ] = ACTIONS(2242), + [anon_sym_EQ_EQ] = ACTIONS(2240), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2242), + [anon_sym_LT_GT] = ACTIONS(2242), + [anon_sym_BANG_EQ] = ACTIONS(2240), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2242), + [aux_sym_binary_expression_token1] = ACTIONS(2242), + [anon_sym_GT_EQ] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2240), + [aux_sym_binary_expression_token2] = ACTIONS(2240), + [aux_sym_binary_expression_token3] = ACTIONS(2240), + [aux_sym_binary_expression_token4] = ACTIONS(2242), + [aux_sym_binary_expression_token5] = ACTIONS(2242), + [aux_sym_binary_expression_token6] = ACTIONS(2242), + [anon_sym_QMARK_QMARK] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2240), + [anon_sym_IN] = ACTIONS(2240), + [anon_sym_InstanceOf] = ACTIONS(2240), + [anon_sym_instanceof] = ACTIONS(2240), + [anon_sym_INSTANCEOF] = ACTIONS(2240), + [anon_sym_instanceOf] = ACTIONS(2240), + [sym__ternary_qmark] = ACTIONS(2242), + [sym__elvis_operator] = ACTIONS(2242), + [sym_logical_or] = ACTIONS(2242), + [sym_tag_linefeed] = ACTIONS(2242), }, - [STATE(2782)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(5939), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2885)] = { + [sym_identifier] = ACTIONS(2560), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2560), + [sym_optional_chain] = ACTIONS(2562), + [sym_static_chain] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_BSLASH] = ACTIONS(2560), + [anon_sym_STAR_STAR] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2562), + [anon_sym_LT_GT] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2562), + [aux_sym_binary_expression_token1] = ACTIONS(2562), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [aux_sym_binary_expression_token2] = ACTIONS(2560), + [aux_sym_binary_expression_token3] = ACTIONS(2560), + [aux_sym_binary_expression_token4] = ACTIONS(2562), + [aux_sym_binary_expression_token5] = ACTIONS(2562), + [aux_sym_binary_expression_token6] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_IN] = ACTIONS(2560), + [anon_sym_InstanceOf] = ACTIONS(2560), + [anon_sym_instanceof] = ACTIONS(2560), + [anon_sym_INSTANCEOF] = ACTIONS(2560), + [anon_sym_instanceOf] = ACTIONS(2560), + [sym__ternary_qmark] = ACTIONS(2562), + [sym__elvis_operator] = ACTIONS(2562), + [sym_logical_or] = ACTIONS(2562), + [sym__parameter_separator] = ACTIONS(2562), }, - [STATE(2783)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5591), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2886)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2784)] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_RPAREN] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym__parameter_separator] = ACTIONS(1085), + [STATE(2887)] = { + [sym_identifier] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2420), + [sym_optional_chain] = ACTIONS(2422), + [sym_static_chain] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_BSLASH] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2422), + [anon_sym_LT_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2422), + [aux_sym_binary_expression_token1] = ACTIONS(2422), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [aux_sym_binary_expression_token2] = ACTIONS(2420), + [aux_sym_binary_expression_token3] = ACTIONS(2420), + [aux_sym_binary_expression_token4] = ACTIONS(2422), + [aux_sym_binary_expression_token5] = ACTIONS(2422), + [aux_sym_binary_expression_token6] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_IN] = ACTIONS(2420), + [anon_sym_InstanceOf] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_INSTANCEOF] = ACTIONS(2420), + [anon_sym_instanceOf] = ACTIONS(2420), + [sym__automatic_semicolon] = ACTIONS(2422), + [sym__ternary_qmark] = ACTIONS(2422), + [sym__elvis_operator] = ACTIONS(2422), + [sym_logical_or] = ACTIONS(2422), + [sym_tag_linefeed] = ACTIONS(2422), }, - [STATE(2785)] = { + [STATE(2888)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5594), + [anon_sym_COLON] = ACTIONS(2312), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -390599,7 +399953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -390623,111 +399977,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2786)] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_COLON] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2219), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2219), - [sym_optional_chain] = ACTIONS(2221), - [sym_static_chain] = ACTIONS(2221), - [anon_sym_AMP_AMP] = ACTIONS(2221), - [anon_sym_PIPE_PIPE] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2221), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_BSLASH] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_GT] = ACTIONS(2221), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [aux_sym_binary_expression_token1] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_GT] = ACTIONS(2219), - [aux_sym_binary_expression_token2] = ACTIONS(2219), - [aux_sym_binary_expression_token3] = ACTIONS(2219), - [aux_sym_binary_expression_token4] = ACTIONS(2221), - [aux_sym_binary_expression_token5] = ACTIONS(2221), - [aux_sym_binary_expression_token6] = ACTIONS(2221), - [anon_sym_QMARK_QMARK] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_IN] = ACTIONS(2219), - [anon_sym_InstanceOf] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2219), - [anon_sym_INSTANCEOF] = ACTIONS(2219), - [anon_sym_instanceOf] = ACTIONS(2219), - [sym__ternary_qmark] = ACTIONS(2221), - [sym__elvis_operator] = ACTIONS(2221), - [sym_logical_or] = ACTIONS(2221), - [sym_tag_linefeed] = ACTIONS(2221), + [STATE(2889)] = { + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1085), + [anon_sym_instanceof] = ACTIONS(1085), + [anon_sym_INSTANCEOF] = ACTIONS(1085), + [anon_sym_instanceOf] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(6045), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), + [sym_tag_linefeed] = ACTIONS(1083), }, - [STATE(2787)] = { + [STATE(2890)] = { + [sym_identifier] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_RPAREN] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2388), + [sym_optional_chain] = ACTIONS(2390), + [sym_static_chain] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_BSLASH] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_LT_GT] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [aux_sym_binary_expression_token1] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2388), + [aux_sym_binary_expression_token2] = ACTIONS(2388), + [aux_sym_binary_expression_token3] = ACTIONS(2388), + [aux_sym_binary_expression_token4] = ACTIONS(2390), + [aux_sym_binary_expression_token5] = ACTIONS(2390), + [aux_sym_binary_expression_token6] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_IN] = ACTIONS(2388), + [anon_sym_InstanceOf] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_INSTANCEOF] = ACTIONS(2388), + [anon_sym_instanceOf] = ACTIONS(2388), + [sym__ternary_qmark] = ACTIONS(2390), + [sym__elvis_operator] = ACTIONS(2390), + [sym_logical_or] = ACTIONS(2390), + [sym__parameter_separator] = ACTIONS(2390), + }, + [STATE(2891)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2892)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(5281), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5272), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -390743,7 +400241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -390767,740 +400265,1462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2788)] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_RPAREN] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2336), - [sym_optional_chain] = ACTIONS(2338), - [sym_static_chain] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_BSLASH] = ACTIONS(2336), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2336), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_LT_GT] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2336), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [aux_sym_binary_expression_token1] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [aux_sym_binary_expression_token2] = ACTIONS(2336), - [aux_sym_binary_expression_token3] = ACTIONS(2336), - [aux_sym_binary_expression_token4] = ACTIONS(2338), - [aux_sym_binary_expression_token5] = ACTIONS(2338), - [aux_sym_binary_expression_token6] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_IN] = ACTIONS(2336), - [anon_sym_InstanceOf] = ACTIONS(2336), - [anon_sym_instanceof] = ACTIONS(2336), - [anon_sym_INSTANCEOF] = ACTIONS(2336), - [anon_sym_instanceOf] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2338), - [sym__elvis_operator] = ACTIONS(2338), - [sym_logical_or] = ACTIONS(2338), - [sym__parameter_separator] = ACTIONS(2338), + [STATE(2893)] = { + [sym_identifier] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_INSTANCEOF] = ACTIONS(2228), + [anon_sym_instanceOf] = ACTIONS(2228), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), }, - [STATE(2789)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(5941), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_tag_linefeed] = ACTIONS(1684), + [STATE(2894)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2790)] = { - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1083), - [anon_sym_instanceof] = ACTIONS(1083), - [anon_sym_INSTANCEOF] = ACTIONS(1083), - [anon_sym_instanceOf] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(5943), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), - [sym_tag_linefeed] = ACTIONS(1081), + [STATE(2895)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym__parameter_separator] = ACTIONS(1588), }, - [STATE(2791)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5945), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5945), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2896)] = { + [sym_identifier] = ACTIONS(2440), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym__parameter_separator] = ACTIONS(2443), }, - [STATE(2792)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5948), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5948), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2897)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5795), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2793)] = { - [sym_identifier] = ACTIONS(2482), - [anon_sym_DOT] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2484), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), - [sym_optional_chain] = ACTIONS(2484), - [sym_static_chain] = ACTIONS(2484), - [anon_sym_AMP_AMP] = ACTIONS(2484), - [anon_sym_PIPE_PIPE] = ACTIONS(2484), - [anon_sym_GT_GT] = ACTIONS(2482), - [anon_sym_GT_GT_GT] = ACTIONS(2484), - [anon_sym_LT_LT] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_CARET] = ACTIONS(2484), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(2484), - [anon_sym_BSLASH] = ACTIONS(2482), - [anon_sym_STAR_STAR] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_LT_EQ] = ACTIONS(2484), - [anon_sym_EQ_EQ] = ACTIONS(2482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), - [anon_sym_LT_GT] = ACTIONS(2484), - [anon_sym_BANG_EQ] = ACTIONS(2482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), - [aux_sym_binary_expression_token1] = ACTIONS(2484), - [anon_sym_GT_EQ] = ACTIONS(2484), - [anon_sym_GT] = ACTIONS(2482), - [aux_sym_binary_expression_token2] = ACTIONS(2482), - [aux_sym_binary_expression_token3] = ACTIONS(2482), - [aux_sym_binary_expression_token4] = ACTIONS(2484), - [aux_sym_binary_expression_token5] = ACTIONS(2484), - [aux_sym_binary_expression_token6] = ACTIONS(2484), - [anon_sym_QMARK_QMARK] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_DASH_DASH] = ACTIONS(2484), + [STATE(2898)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2899)] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym__parameter_separator] = ACTIONS(2449), + }, + [STATE(2900)] = { + [sym_identifier] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym__parameter_separator] = ACTIONS(2530), + }, + [STATE(2901)] = { + [sym_identifier] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), + [sym_optional_chain] = ACTIONS(2276), + [sym_static_chain] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_BSLASH] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT_EQ] = ACTIONS(2276), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2276), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), + [aux_sym_binary_expression_token1] = ACTIONS(2276), + [anon_sym_GT_EQ] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2274), + [aux_sym_binary_expression_token2] = ACTIONS(2274), + [aux_sym_binary_expression_token3] = ACTIONS(2274), + [aux_sym_binary_expression_token4] = ACTIONS(2276), + [aux_sym_binary_expression_token5] = ACTIONS(2276), + [aux_sym_binary_expression_token6] = ACTIONS(2276), + [anon_sym_QMARK_QMARK] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2482), - [anon_sym_in] = ACTIONS(2482), - [anon_sym_IN] = ACTIONS(2482), - [anon_sym_InstanceOf] = ACTIONS(2482), - [anon_sym_instanceof] = ACTIONS(2482), - [anon_sym_INSTANCEOF] = ACTIONS(2482), - [anon_sym_instanceOf] = ACTIONS(2482), - [sym__automatic_semicolon] = ACTIONS(2484), - [sym__ternary_qmark] = ACTIONS(2484), - [sym__elvis_operator] = ACTIONS(2484), - [sym_logical_or] = ACTIONS(2484), - [sym_tag_linefeed] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_IN] = ACTIONS(2274), + [anon_sym_InstanceOf] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_INSTANCEOF] = ACTIONS(2274), + [anon_sym_instanceOf] = ACTIONS(2274), + [sym__ternary_qmark] = ACTIONS(2276), + [sym__elvis_operator] = ACTIONS(2276), + [sym_logical_or] = ACTIONS(2276), + [sym_tag_linefeed] = ACTIONS(2276), }, - [STATE(2794)] = { - [sym_identifier] = ACTIONS(2486), - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2486), - [sym_optional_chain] = ACTIONS(2488), - [sym_static_chain] = ACTIONS(2488), - [anon_sym_AMP_AMP] = ACTIONS(2488), - [anon_sym_PIPE_PIPE] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2486), - [anon_sym_GT_GT_GT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_BSLASH] = ACTIONS(2486), - [anon_sym_STAR_STAR] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2488), - [anon_sym_LT_GT] = ACTIONS(2488), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2488), - [aux_sym_binary_expression_token1] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2486), - [aux_sym_binary_expression_token2] = ACTIONS(2486), - [aux_sym_binary_expression_token3] = ACTIONS(2486), - [aux_sym_binary_expression_token4] = ACTIONS(2488), - [aux_sym_binary_expression_token5] = ACTIONS(2488), - [aux_sym_binary_expression_token6] = ACTIONS(2488), - [anon_sym_QMARK_QMARK] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2488), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_IN] = ACTIONS(2486), - [anon_sym_InstanceOf] = ACTIONS(2486), - [anon_sym_instanceof] = ACTIONS(2486), - [anon_sym_INSTANCEOF] = ACTIONS(2486), - [anon_sym_instanceOf] = ACTIONS(2486), - [sym__automatic_semicolon] = ACTIONS(2488), - [sym__ternary_qmark] = ACTIONS(2488), - [sym__elvis_operator] = ACTIONS(2488), - [sym_logical_or] = ACTIONS(2488), - [sym_tag_linefeed] = ACTIONS(2488), + [STATE(2902)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4606), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2795)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(2145), + [STATE(2903)] = { + [sym_identifier] = ACTIONS(2580), + [anon_sym_DOT] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_COMMA] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2580), + [sym_optional_chain] = ACTIONS(2582), + [sym_static_chain] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_BSLASH] = ACTIONS(2580), + [anon_sym_STAR_STAR] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2582), + [anon_sym_LT_GT] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2582), + [aux_sym_binary_expression_token1] = ACTIONS(2582), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [aux_sym_binary_expression_token2] = ACTIONS(2580), + [aux_sym_binary_expression_token3] = ACTIONS(2580), + [aux_sym_binary_expression_token4] = ACTIONS(2582), + [aux_sym_binary_expression_token5] = ACTIONS(2582), + [aux_sym_binary_expression_token6] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2580), + [anon_sym_IN] = ACTIONS(2580), + [anon_sym_InstanceOf] = ACTIONS(2580), + [anon_sym_instanceof] = ACTIONS(2580), + [anon_sym_INSTANCEOF] = ACTIONS(2580), + [anon_sym_instanceOf] = ACTIONS(2580), + [sym__ternary_qmark] = ACTIONS(2582), + [sym__elvis_operator] = ACTIONS(2582), + [sym_logical_or] = ACTIONS(2582), + [sym__parameter_separator] = ACTIONS(2582), + }, + [STATE(2904)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(6079), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(6081), + [sym__elvis_operator] = ACTIONS(6083), + [sym_logical_or] = ACTIONS(6051), + }, + [STATE(2905)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(5799), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2796)] = { - [sym_identifier] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_EQ] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2296), - [sym_optional_chain] = ACTIONS(2298), - [sym_static_chain] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_BSLASH] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), - [anon_sym_LT_GT] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), - [aux_sym_binary_expression_token1] = ACTIONS(2298), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [aux_sym_binary_expression_token2] = ACTIONS(2296), - [aux_sym_binary_expression_token3] = ACTIONS(2296), - [aux_sym_binary_expression_token4] = ACTIONS(2298), - [aux_sym_binary_expression_token5] = ACTIONS(2298), - [aux_sym_binary_expression_token6] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_IN] = ACTIONS(2296), - [anon_sym_InstanceOf] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_INSTANCEOF] = ACTIONS(2296), - [anon_sym_instanceOf] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2298), - [sym__elvis_operator] = ACTIONS(2298), - [sym_logical_or] = ACTIONS(2298), + [STATE(2906)] = { + [sym_identifier] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_COMMA] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_RPAREN] = ACTIONS(2238), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_INSTANCEOF] = ACTIONS(2236), + [anon_sym_instanceOf] = ACTIONS(2236), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), }, - [STATE(2797)] = { - [sym_identifier] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2288), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2288), - [sym_optional_chain] = ACTIONS(2290), - [sym_static_chain] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_BSLASH] = ACTIONS(2288), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_LT_GT] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [aux_sym_binary_expression_token1] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2288), - [aux_sym_binary_expression_token2] = ACTIONS(2288), - [aux_sym_binary_expression_token3] = ACTIONS(2288), - [aux_sym_binary_expression_token4] = ACTIONS(2290), - [aux_sym_binary_expression_token5] = ACTIONS(2290), - [aux_sym_binary_expression_token6] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_PLUS_PLUS] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [sym_comment] = ACTIONS(129), - [sym_regex_flags] = ACTIONS(5951), - [anon_sym_In] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_IN] = ACTIONS(2288), - [anon_sym_InstanceOf] = ACTIONS(2288), - [anon_sym_instanceof] = ACTIONS(2288), - [anon_sym_INSTANCEOF] = ACTIONS(2288), - [anon_sym_instanceOf] = ACTIONS(2288), - [sym__ternary_qmark] = ACTIONS(2290), - [sym__elvis_operator] = ACTIONS(2290), - [sym_logical_or] = ACTIONS(2290), - [sym_tag_linefeed] = ACTIONS(2290), + [STATE(2907)] = { + [sym_identifier] = ACTIONS(2508), + [anon_sym_DOT] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2508), + [sym_optional_chain] = ACTIONS(2510), + [sym_static_chain] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_BSLASH] = ACTIONS(2508), + [anon_sym_STAR_STAR] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), + [anon_sym_LT_GT] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), + [aux_sym_binary_expression_token1] = ACTIONS(2510), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [aux_sym_binary_expression_token2] = ACTIONS(2508), + [aux_sym_binary_expression_token3] = ACTIONS(2508), + [aux_sym_binary_expression_token4] = ACTIONS(2510), + [aux_sym_binary_expression_token5] = ACTIONS(2510), + [aux_sym_binary_expression_token6] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_IN] = ACTIONS(2508), + [anon_sym_InstanceOf] = ACTIONS(2508), + [anon_sym_instanceof] = ACTIONS(2508), + [anon_sym_INSTANCEOF] = ACTIONS(2508), + [anon_sym_instanceOf] = ACTIONS(2508), + [sym__automatic_semicolon] = ACTIONS(2510), + [sym__ternary_qmark] = ACTIONS(2510), + [sym__elvis_operator] = ACTIONS(2510), + [sym_logical_or] = ACTIONS(2510), + [sym_tag_linefeed] = ACTIONS(2510), }, - [STATE(2798)] = { + [STATE(2908)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4753), + [aux_sym_object_pattern_repeat1] = STATE(4610), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2909)] = { + [sym_identifier] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_COLON] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), + [sym_optional_chain] = ACTIONS(2246), + [sym_static_chain] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2244), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), + [anon_sym_LT_GT] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), + [aux_sym_binary_expression_token1] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2244), + [aux_sym_binary_expression_token2] = ACTIONS(2244), + [aux_sym_binary_expression_token3] = ACTIONS(2244), + [aux_sym_binary_expression_token4] = ACTIONS(2246), + [aux_sym_binary_expression_token5] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(2246), + [anon_sym_QMARK_QMARK] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_IN] = ACTIONS(2244), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), + [sym__ternary_qmark] = ACTIONS(2246), + [sym__elvis_operator] = ACTIONS(2246), + [sym_logical_or] = ACTIONS(2246), + [sym_tag_linefeed] = ACTIONS(2246), + }, + [STATE(2910)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(6079), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(6081), + [sym__elvis_operator] = ACTIONS(6083), + [sym_logical_or] = ACTIONS(6051), + }, + [STATE(2911)] = { + [sym_identifier] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1598), + [anon_sym_instanceof] = ACTIONS(1598), + [anon_sym_INSTANCEOF] = ACTIONS(1598), + [anon_sym_instanceOf] = ACTIONS(1598), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), + [sym__parameter_separator] = ACTIONS(1596), + }, + [STATE(2912)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6085), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6085), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2913)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(6088), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -391533,7 +401753,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), + }, + [STATE(2914)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6090), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2915)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -391557,5801 +401921,1984 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - }, - [STATE(2799)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_RPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2472), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(2800)] = { - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), - }, - [STATE(2801)] = { - [sym_identifier] = ACTIONS(2498), - [anon_sym_DOT] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2498), - [sym_optional_chain] = ACTIONS(2500), - [sym_static_chain] = ACTIONS(2500), - [anon_sym_AMP_AMP] = ACTIONS(2500), - [anon_sym_PIPE_PIPE] = ACTIONS(2500), - [anon_sym_GT_GT] = ACTIONS(2498), - [anon_sym_GT_GT_GT] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_BSLASH] = ACTIONS(2498), - [anon_sym_STAR_STAR] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_LT_EQ] = ACTIONS(2500), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2500), - [anon_sym_LT_GT] = ACTIONS(2500), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2500), - [aux_sym_binary_expression_token1] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2498), - [aux_sym_binary_expression_token2] = ACTIONS(2498), - [aux_sym_binary_expression_token3] = ACTIONS(2498), - [aux_sym_binary_expression_token4] = ACTIONS(2500), - [aux_sym_binary_expression_token5] = ACTIONS(2500), - [aux_sym_binary_expression_token6] = ACTIONS(2500), - [anon_sym_QMARK_QMARK] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_IN] = ACTIONS(2498), - [anon_sym_InstanceOf] = ACTIONS(2498), - [anon_sym_instanceof] = ACTIONS(2498), - [anon_sym_INSTANCEOF] = ACTIONS(2498), - [anon_sym_instanceOf] = ACTIONS(2498), - [sym__automatic_semicolon] = ACTIONS(2500), - [sym__ternary_qmark] = ACTIONS(2500), - [sym__elvis_operator] = ACTIONS(2500), - [sym_logical_or] = ACTIONS(2500), - [sym_tag_linefeed] = ACTIONS(2500), - }, - [STATE(2802)] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2502), - [sym_optional_chain] = ACTIONS(2504), - [sym_static_chain] = ACTIONS(2504), - [anon_sym_AMP_AMP] = ACTIONS(2504), - [anon_sym_PIPE_PIPE] = ACTIONS(2504), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_GT_GT_GT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_BSLASH] = ACTIONS(2502), - [anon_sym_STAR_STAR] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_LT_EQ] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2504), - [anon_sym_LT_GT] = ACTIONS(2504), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2504), - [aux_sym_binary_expression_token1] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2504), - [anon_sym_GT] = ACTIONS(2502), - [aux_sym_binary_expression_token2] = ACTIONS(2502), - [aux_sym_binary_expression_token3] = ACTIONS(2502), - [aux_sym_binary_expression_token4] = ACTIONS(2504), - [aux_sym_binary_expression_token5] = ACTIONS(2504), - [aux_sym_binary_expression_token6] = ACTIONS(2504), - [anon_sym_QMARK_QMARK] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_IN] = ACTIONS(2502), - [anon_sym_InstanceOf] = ACTIONS(2502), - [anon_sym_instanceof] = ACTIONS(2502), - [anon_sym_INSTANCEOF] = ACTIONS(2502), - [anon_sym_instanceOf] = ACTIONS(2502), - [sym__automatic_semicolon] = ACTIONS(2504), - [sym__ternary_qmark] = ACTIONS(2504), - [sym__elvis_operator] = ACTIONS(2504), - [sym_logical_or] = ACTIONS(2504), - [sym_tag_linefeed] = ACTIONS(2504), }, - [STATE(2803)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5991), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2804)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5993), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2916)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym_tag_linefeed] = ACTIONS(2234), }, - [STATE(2805)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(5996), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(5996), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2917)] = { + [sym_identifier] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2568), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2568), + [anon_sym_instanceof] = ACTIONS(2568), + [anon_sym_INSTANCEOF] = ACTIONS(2568), + [anon_sym_instanceOf] = ACTIONS(2568), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), + [sym__parameter_separator] = ACTIONS(2570), }, - [STATE(2806)] = { + [STATE(2918)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_RPAREN] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2476), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(2807)] = { - [sym_identifier] = ACTIONS(2506), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2506), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_GT_GT_GT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2506), - [anon_sym_STAR_STAR] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2508), - [anon_sym_LT_GT] = ACTIONS(2508), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2508), - [aux_sym_binary_expression_token1] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2506), - [aux_sym_binary_expression_token2] = ACTIONS(2506), - [aux_sym_binary_expression_token3] = ACTIONS(2506), - [aux_sym_binary_expression_token4] = ACTIONS(2508), - [aux_sym_binary_expression_token5] = ACTIONS(2508), - [aux_sym_binary_expression_token6] = ACTIONS(2508), - [anon_sym_QMARK_QMARK] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_IN] = ACTIONS(2506), - [anon_sym_InstanceOf] = ACTIONS(2506), - [anon_sym_instanceof] = ACTIONS(2506), - [anon_sym_INSTANCEOF] = ACTIONS(2506), - [anon_sym_instanceOf] = ACTIONS(2506), - [sym__automatic_semicolon] = ACTIONS(2508), - [sym__ternary_qmark] = ACTIONS(2508), - [sym__elvis_operator] = ACTIONS(2508), - [sym_logical_or] = ACTIONS(2508), - [sym_tag_linefeed] = ACTIONS(2508), - }, - [STATE(2808)] = { - [sym_identifier] = ACTIONS(2510), - [anon_sym_DOT] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2510), - [sym_optional_chain] = ACTIONS(2512), - [sym_static_chain] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_PIPE_PIPE] = ACTIONS(2512), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_GT_GT_GT] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_CARET] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2512), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_STAR_STAR] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2512), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2512), - [anon_sym_LT_GT] = ACTIONS(2512), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2512), - [aux_sym_binary_expression_token1] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2512), - [anon_sym_GT] = ACTIONS(2510), - [aux_sym_binary_expression_token2] = ACTIONS(2510), - [aux_sym_binary_expression_token3] = ACTIONS(2510), - [aux_sym_binary_expression_token4] = ACTIONS(2512), - [aux_sym_binary_expression_token5] = ACTIONS(2512), - [aux_sym_binary_expression_token6] = ACTIONS(2512), - [anon_sym_QMARK_QMARK] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_IN] = ACTIONS(2510), - [anon_sym_InstanceOf] = ACTIONS(2510), - [anon_sym_instanceof] = ACTIONS(2510), - [anon_sym_INSTANCEOF] = ACTIONS(2510), - [anon_sym_instanceOf] = ACTIONS(2510), - [sym__automatic_semicolon] = ACTIONS(2512), - [sym__ternary_qmark] = ACTIONS(2512), - [sym__elvis_operator] = ACTIONS(2512), - [sym_logical_or] = ACTIONS(2512), - [sym_tag_linefeed] = ACTIONS(2512), - }, - [STATE(2809)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5790), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2810)] = { - [sym_identifier] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2514), - [sym_optional_chain] = ACTIONS(2516), - [sym_static_chain] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_GT_GT_GT] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_CARET] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2516), - [anon_sym_BSLASH] = ACTIONS(2514), - [anon_sym_STAR_STAR] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2516), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2516), - [anon_sym_LT_GT] = ACTIONS(2516), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2516), - [aux_sym_binary_expression_token1] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2516), - [anon_sym_GT] = ACTIONS(2514), - [aux_sym_binary_expression_token2] = ACTIONS(2514), - [aux_sym_binary_expression_token3] = ACTIONS(2514), - [aux_sym_binary_expression_token4] = ACTIONS(2516), - [aux_sym_binary_expression_token5] = ACTIONS(2516), - [aux_sym_binary_expression_token6] = ACTIONS(2516), - [anon_sym_QMARK_QMARK] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2514), - [anon_sym_in] = ACTIONS(2514), - [anon_sym_IN] = ACTIONS(2514), - [anon_sym_InstanceOf] = ACTIONS(2514), - [anon_sym_instanceof] = ACTIONS(2514), - [anon_sym_INSTANCEOF] = ACTIONS(2514), - [anon_sym_instanceOf] = ACTIONS(2514), - [sym__automatic_semicolon] = ACTIONS(2516), - [sym__ternary_qmark] = ACTIONS(2516), - [sym__elvis_operator] = ACTIONS(2516), - [sym_logical_or] = ACTIONS(2516), - [sym_tag_linefeed] = ACTIONS(2516), - }, - [STATE(2811)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(5931), - [sym__elvis_operator] = ACTIONS(5933), - [sym_logical_or] = ACTIONS(5901), - }, - [STATE(2812)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(5931), - [sym__elvis_operator] = ACTIONS(5933), - [sym_logical_or] = ACTIONS(5901), - }, - [STATE(2813)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(5931), - [sym__elvis_operator] = ACTIONS(5933), - [sym_logical_or] = ACTIONS(5901), - }, - [STATE(2814)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(6079), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(6081), + [sym__elvis_operator] = ACTIONS(6083), + [sym_logical_or] = ACTIONS(6051), }, - [STATE(2815)] = { + [STATE(2919)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_RPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2478), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(2816)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(5999), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2920)] = { + [sym_identifier] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_COMMA] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2420), + [sym_optional_chain] = ACTIONS(2422), + [sym_static_chain] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_BSLASH] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2422), + [anon_sym_LT_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2422), + [aux_sym_binary_expression_token1] = ACTIONS(2422), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [aux_sym_binary_expression_token2] = ACTIONS(2420), + [aux_sym_binary_expression_token3] = ACTIONS(2420), + [aux_sym_binary_expression_token4] = ACTIONS(2422), + [aux_sym_binary_expression_token5] = ACTIONS(2422), + [aux_sym_binary_expression_token6] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_IN] = ACTIONS(2420), + [anon_sym_InstanceOf] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_INSTANCEOF] = ACTIONS(2420), + [anon_sym_instanceOf] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2422), + [sym__elvis_operator] = ACTIONS(2422), + [sym_logical_or] = ACTIONS(2422), + [sym__parameter_separator] = ACTIONS(2422), }, - [STATE(2817)] = { + [STATE(2921)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2818)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2922)] = { + [sym_arguments] = STATE(2589), + [sym_identifier] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2819)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2923)] = { + [sym_arguments] = STATE(2589), + [sym_identifier] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2306), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2306), + [anon_sym_instanceof] = ACTIONS(2306), + [anon_sym_INSTANCEOF] = ACTIONS(2306), + [anon_sym_instanceOf] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), }, - [STATE(2820)] = { + [STATE(2924)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2821)] = { + [STATE(2925)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6092), + [anon_sym_RBRACE] = ACTIONS(6092), + [anon_sym_SEMI] = ACTIONS(6092), + [anon_sym_RPAREN] = ACTIONS(6092), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6092), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(2822)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(2926)] = { + [sym_identifier] = ACTIONS(2544), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_COMMA] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2544), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_BSLASH] = ACTIONS(2544), + [anon_sym_STAR_STAR] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2544), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2546), + [anon_sym_LT_GT] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2544), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2546), + [aux_sym_binary_expression_token1] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [aux_sym_binary_expression_token2] = ACTIONS(2544), + [aux_sym_binary_expression_token3] = ACTIONS(2544), + [aux_sym_binary_expression_token4] = ACTIONS(2546), + [aux_sym_binary_expression_token5] = ACTIONS(2546), + [aux_sym_binary_expression_token6] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_IN] = ACTIONS(2544), + [anon_sym_InstanceOf] = ACTIONS(2544), + [anon_sym_instanceof] = ACTIONS(2544), + [anon_sym_INSTANCEOF] = ACTIONS(2544), + [anon_sym_instanceOf] = ACTIONS(2544), + [sym__ternary_qmark] = ACTIONS(2546), + [sym__elvis_operator] = ACTIONS(2546), + [sym_logical_or] = ACTIONS(2546), + [sym__parameter_separator] = ACTIONS(2546), }, - [STATE(2823)] = { + [STATE(2927)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2824)] = { + [STATE(2928)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2825)] = { + [STATE(2929)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2826)] = { + [STATE(2930)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2827)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(5901), + [STATE(2931)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(6094), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6094), + [anon_sym_COLON] = ACTIONS(5559), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2828)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(5931), - [sym__elvis_operator] = ACTIONS(5933), - [sym_logical_or] = ACTIONS(5901), + [STATE(2932)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6097), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2829)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6001), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2933)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6099), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2830)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6003), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2934)] = { + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2556), + [sym_optional_chain] = ACTIONS(2558), + [sym_static_chain] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_BSLASH] = ACTIONS(2556), + [anon_sym_STAR_STAR] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2558), + [anon_sym_LT_GT] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2558), + [aux_sym_binary_expression_token1] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [aux_sym_binary_expression_token2] = ACTIONS(2556), + [aux_sym_binary_expression_token3] = ACTIONS(2556), + [aux_sym_binary_expression_token4] = ACTIONS(2558), + [aux_sym_binary_expression_token5] = ACTIONS(2558), + [aux_sym_binary_expression_token6] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_IN] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2556), + [anon_sym_instanceof] = ACTIONS(2556), + [anon_sym_INSTANCEOF] = ACTIONS(2556), + [anon_sym_instanceOf] = ACTIONS(2556), + [sym__automatic_semicolon] = ACTIONS(2558), + [sym__ternary_qmark] = ACTIONS(2558), + [sym__elvis_operator] = ACTIONS(2558), + [sym_logical_or] = ACTIONS(2558), + [sym_tag_linefeed] = ACTIONS(2558), }, - [STATE(2831)] = { + [STATE(2935)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5899), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5901), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5903), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5905), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5907), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5911), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5913), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5909), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5907), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5899), - [anon_sym_PIPE_PIPE] = ACTIONS(5901), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_GT_GT_GT] = ACTIONS(5917), - [anon_sym_LT_LT] = ACTIONS(5917), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_SLASH] = ACTIONS(5897), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_BSLASH] = ACTIONS(5905), - [anon_sym_STAR_STAR] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5907), - [anon_sym_LT_EQ] = ACTIONS(5909), - [anon_sym_EQ_EQ] = ACTIONS(5911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5913), - [anon_sym_LT_GT] = ACTIONS(5913), - [anon_sym_BANG_EQ] = ACTIONS(5911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5913), - [aux_sym_binary_expression_token1] = ACTIONS(5913), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5907), - [aux_sym_binary_expression_token2] = ACTIONS(5907), - [aux_sym_binary_expression_token3] = ACTIONS(5907), - [aux_sym_binary_expression_token4] = ACTIONS(5909), - [aux_sym_binary_expression_token5] = ACTIONS(5909), - [aux_sym_binary_expression_token6] = ACTIONS(5913), - [anon_sym_QMARK_QMARK] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5907), - [anon_sym_in] = ACTIONS(5907), - [anon_sym_IN] = ACTIONS(5907), - [anon_sym_InstanceOf] = ACTIONS(5909), - [anon_sym_instanceof] = ACTIONS(5909), - [anon_sym_INSTANCEOF] = ACTIONS(5909), - [anon_sym_instanceOf] = ACTIONS(5909), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(5931), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(5901), - }, - [STATE(2832)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_RPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2428), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(2833)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2834)] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_DOT] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2518), - [sym_optional_chain] = ACTIONS(2520), - [sym_static_chain] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_GT_GT_GT] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_BSLASH] = ACTIONS(2518), - [anon_sym_STAR_STAR] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2520), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2520), - [anon_sym_LT_GT] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2520), - [aux_sym_binary_expression_token1] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [aux_sym_binary_expression_token2] = ACTIONS(2518), - [aux_sym_binary_expression_token3] = ACTIONS(2518), - [aux_sym_binary_expression_token4] = ACTIONS(2520), - [aux_sym_binary_expression_token5] = ACTIONS(2520), - [aux_sym_binary_expression_token6] = ACTIONS(2520), - [anon_sym_QMARK_QMARK] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2518), - [anon_sym_in] = ACTIONS(2518), - [anon_sym_IN] = ACTIONS(2518), - [anon_sym_InstanceOf] = ACTIONS(2518), - [anon_sym_instanceof] = ACTIONS(2518), - [anon_sym_INSTANCEOF] = ACTIONS(2518), - [anon_sym_instanceOf] = ACTIONS(2518), - [sym__automatic_semicolon] = ACTIONS(2520), - [sym__ternary_qmark] = ACTIONS(2520), - [sym__elvis_operator] = ACTIONS(2520), - [sym_logical_or] = ACTIONS(2520), - [sym_tag_linefeed] = ACTIONS(2520), - }, - [STATE(2835)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2836)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_RBRACE] = ACTIONS(6005), - [anon_sym_SEMI] = ACTIONS(6005), - [anon_sym_RPAREN] = ACTIONS(6005), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6005), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(2837)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2838)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2839)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2840)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2841)] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2522), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2524), - [anon_sym_BSLASH] = ACTIONS(2522), - [anon_sym_STAR_STAR] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2524), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2524), - [anon_sym_LT_GT] = ACTIONS(2524), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2524), - [aux_sym_binary_expression_token1] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2522), - [aux_sym_binary_expression_token2] = ACTIONS(2522), - [aux_sym_binary_expression_token3] = ACTIONS(2522), - [aux_sym_binary_expression_token4] = ACTIONS(2524), - [aux_sym_binary_expression_token5] = ACTIONS(2524), - [aux_sym_binary_expression_token6] = ACTIONS(2524), - [anon_sym_QMARK_QMARK] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_IN] = ACTIONS(2522), - [anon_sym_InstanceOf] = ACTIONS(2522), - [anon_sym_instanceof] = ACTIONS(2522), - [anon_sym_INSTANCEOF] = ACTIONS(2522), - [anon_sym_instanceOf] = ACTIONS(2522), - [sym__automatic_semicolon] = ACTIONS(2524), - [sym__ternary_qmark] = ACTIONS(2524), - [sym__elvis_operator] = ACTIONS(2524), - [sym_logical_or] = ACTIONS(2524), - [sym_tag_linefeed] = ACTIONS(2524), - }, - [STATE(2842)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2843)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2844)] = { - [sym_identifier] = ACTIONS(2526), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2526), - [sym_optional_chain] = ACTIONS(2528), - [sym_static_chain] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_GT_GT_GT] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_BSLASH] = ACTIONS(2526), - [anon_sym_STAR_STAR] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2528), - [anon_sym_LT_GT] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2528), - [aux_sym_binary_expression_token1] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [aux_sym_binary_expression_token2] = ACTIONS(2526), - [aux_sym_binary_expression_token3] = ACTIONS(2526), - [aux_sym_binary_expression_token4] = ACTIONS(2528), - [aux_sym_binary_expression_token5] = ACTIONS(2528), - [aux_sym_binary_expression_token6] = ACTIONS(2528), - [anon_sym_QMARK_QMARK] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2526), - [anon_sym_in] = ACTIONS(2526), - [anon_sym_IN] = ACTIONS(2526), - [anon_sym_InstanceOf] = ACTIONS(2526), - [anon_sym_instanceof] = ACTIONS(2526), - [anon_sym_INSTANCEOF] = ACTIONS(2526), - [anon_sym_instanceOf] = ACTIONS(2526), - [sym__automatic_semicolon] = ACTIONS(2528), - [sym__ternary_qmark] = ACTIONS(2528), - [sym__elvis_operator] = ACTIONS(2528), - [sym_logical_or] = ACTIONS(2528), - [sym_tag_linefeed] = ACTIONS(2528), - }, - [STATE(2845)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2846)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2847)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2848)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(2849)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(2850)] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym__parameter_separator] = ACTIONS(2347), - }, - [STATE(2851)] = { - [sym_identifier] = ACTIONS(2530), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2530), - [sym_optional_chain] = ACTIONS(2532), - [sym_static_chain] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_BSLASH] = ACTIONS(2530), - [anon_sym_STAR_STAR] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2532), - [anon_sym_LT_GT] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2532), - [aux_sym_binary_expression_token1] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2530), - [aux_sym_binary_expression_token2] = ACTIONS(2530), - [aux_sym_binary_expression_token3] = ACTIONS(2530), - [aux_sym_binary_expression_token4] = ACTIONS(2532), - [aux_sym_binary_expression_token5] = ACTIONS(2532), - [aux_sym_binary_expression_token6] = ACTIONS(2532), - [anon_sym_QMARK_QMARK] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2530), - [anon_sym_in] = ACTIONS(2530), - [anon_sym_IN] = ACTIONS(2530), - [anon_sym_InstanceOf] = ACTIONS(2530), - [anon_sym_instanceof] = ACTIONS(2530), - [anon_sym_INSTANCEOF] = ACTIONS(2530), - [anon_sym_instanceOf] = ACTIONS(2530), - [sym__automatic_semicolon] = ACTIONS(2532), - [sym__ternary_qmark] = ACTIONS(2532), - [sym__elvis_operator] = ACTIONS(2532), - [sym_logical_or] = ACTIONS(2532), - [sym_tag_linefeed] = ACTIONS(2532), - }, - [STATE(2852)] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym__parameter_separator] = ACTIONS(2353), - }, - [STATE(2853)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2460), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(2854)] = { - [sym_arguments] = STATE(2999), - [sym_identifier] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(2233), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2230), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2230), - [sym_optional_chain] = ACTIONS(2233), - [sym_static_chain] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_BSLASH] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_GT] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [aux_sym_binary_expression_token1] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2230), - [aux_sym_binary_expression_token2] = ACTIONS(2230), - [aux_sym_binary_expression_token3] = ACTIONS(2230), - [aux_sym_binary_expression_token4] = ACTIONS(2233), - [aux_sym_binary_expression_token5] = ACTIONS(2233), - [aux_sym_binary_expression_token6] = ACTIONS(2233), - [anon_sym_QMARK_QMARK] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_IN] = ACTIONS(2230), - [anon_sym_InstanceOf] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_INSTANCEOF] = ACTIONS(2230), - [anon_sym_instanceOf] = ACTIONS(2230), - [sym__ternary_qmark] = ACTIONS(2233), - [sym__elvis_operator] = ACTIONS(2233), - [sym_logical_or] = ACTIONS(2233), - [sym_tag_linefeed] = ACTIONS(2233), - }, - [STATE(2855)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2308), - [sym_optional_chain] = ACTIONS(2310), - [sym_static_chain] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_BSLASH] = ACTIONS(2308), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_LT_GT] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [aux_sym_binary_expression_token1] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [aux_sym_binary_expression_token2] = ACTIONS(2308), - [aux_sym_binary_expression_token3] = ACTIONS(2308), - [aux_sym_binary_expression_token4] = ACTIONS(2310), - [aux_sym_binary_expression_token5] = ACTIONS(2310), - [aux_sym_binary_expression_token6] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2308), - [anon_sym_IN] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(2308), - [anon_sym_instanceof] = ACTIONS(2308), - [anon_sym_INSTANCEOF] = ACTIONS(2308), - [anon_sym_instanceOf] = ACTIONS(2308), - [sym__automatic_semicolon] = ACTIONS(2310), - [sym__ternary_qmark] = ACTIONS(2310), - [sym__elvis_operator] = ACTIONS(2310), - [sym_logical_or] = ACTIONS(2310), - [sym_tag_linefeed] = ACTIONS(2310), - }, - [STATE(2856)] = { - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_RPAREN] = ACTIONS(2540), - [anon_sym_COLON] = ACTIONS(5833), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_RBRACK] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2540), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2540), - [anon_sym_instanceof] = ACTIONS(2540), - [anon_sym_INSTANCEOF] = ACTIONS(2540), - [anon_sym_instanceOf] = ACTIONS(2540), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), - }, - [STATE(2857)] = { - [sym_identifier] = ACTIONS(2534), - [anon_sym_DOT] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2534), - [sym_optional_chain] = ACTIONS(2536), - [sym_static_chain] = ACTIONS(2536), - [anon_sym_AMP_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2534), - [anon_sym_GT_GT_GT] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_BSLASH] = ACTIONS(2534), - [anon_sym_STAR_STAR] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_LT_EQ] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2536), - [anon_sym_LT_GT] = ACTIONS(2536), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2536), - [aux_sym_binary_expression_token1] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2534), - [aux_sym_binary_expression_token2] = ACTIONS(2534), - [aux_sym_binary_expression_token3] = ACTIONS(2534), - [aux_sym_binary_expression_token4] = ACTIONS(2536), - [aux_sym_binary_expression_token5] = ACTIONS(2536), - [aux_sym_binary_expression_token6] = ACTIONS(2536), - [anon_sym_QMARK_QMARK] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2534), - [anon_sym_in] = ACTIONS(2534), - [anon_sym_IN] = ACTIONS(2534), - [anon_sym_InstanceOf] = ACTIONS(2534), - [anon_sym_instanceof] = ACTIONS(2534), - [anon_sym_INSTANCEOF] = ACTIONS(2534), - [anon_sym_instanceOf] = ACTIONS(2534), - [sym__automatic_semicolon] = ACTIONS(2536), - [sym__ternary_qmark] = ACTIONS(2536), - [sym__elvis_operator] = ACTIONS(2536), - [sym_logical_or] = ACTIONS(2536), - [sym_tag_linefeed] = ACTIONS(2536), - }, - [STATE(2858)] = { - [sym_identifier] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2538), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2538), - [anon_sym_instanceof] = ACTIONS(2538), - [anon_sym_INSTANCEOF] = ACTIONS(2538), - [anon_sym_instanceOf] = ACTIONS(2538), - [sym__automatic_semicolon] = ACTIONS(2540), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), - [sym_tag_linefeed] = ACTIONS(2540), - }, - [STATE(2859)] = { - [sym_arguments] = STATE(2999), - [sym_identifier] = ACTIONS(2264), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2264), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2264), - [anon_sym_instanceof] = ACTIONS(2264), - [anon_sym_INSTANCEOF] = ACTIONS(2264), - [anon_sym_instanceOf] = ACTIONS(2264), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), - [sym_tag_linefeed] = ACTIONS(2267), - }, - [STATE(2860)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2418), - [sym_optional_chain] = ACTIONS(2420), - [sym_static_chain] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2420), - [anon_sym_BSLASH] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), - [anon_sym_LT_GT] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), - [aux_sym_binary_expression_token1] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_GT] = ACTIONS(2418), - [aux_sym_binary_expression_token2] = ACTIONS(2418), - [aux_sym_binary_expression_token3] = ACTIONS(2418), - [aux_sym_binary_expression_token4] = ACTIONS(2420), - [aux_sym_binary_expression_token5] = ACTIONS(2420), - [aux_sym_binary_expression_token6] = ACTIONS(2420), - [anon_sym_QMARK_QMARK] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_IN] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_INSTANCEOF] = ACTIONS(2418), - [anon_sym_instanceOf] = ACTIONS(2418), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(2420), - [sym__elvis_operator] = ACTIONS(2420), - [sym_logical_or] = ACTIONS(2420), - [sym_tag_linefeed] = ACTIONS(2420), - }, - [STATE(2861)] = { - [sym_identifier] = ACTIONS(2542), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2542), - [sym_optional_chain] = ACTIONS(2544), - [sym_static_chain] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2544), - [anon_sym_BSLASH] = ACTIONS(2542), - [anon_sym_STAR_STAR] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2544), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2544), - [anon_sym_LT_GT] = ACTIONS(2544), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2544), - [aux_sym_binary_expression_token1] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2544), - [anon_sym_GT] = ACTIONS(2542), - [aux_sym_binary_expression_token2] = ACTIONS(2542), - [aux_sym_binary_expression_token3] = ACTIONS(2542), - [aux_sym_binary_expression_token4] = ACTIONS(2544), - [aux_sym_binary_expression_token5] = ACTIONS(2544), - [aux_sym_binary_expression_token6] = ACTIONS(2544), - [anon_sym_QMARK_QMARK] = ACTIONS(2544), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_IN] = ACTIONS(2542), - [anon_sym_InstanceOf] = ACTIONS(2542), - [anon_sym_instanceof] = ACTIONS(2542), - [anon_sym_INSTANCEOF] = ACTIONS(2542), - [anon_sym_instanceOf] = ACTIONS(2542), - [sym__automatic_semicolon] = ACTIONS(2544), - [sym__ternary_qmark] = ACTIONS(2544), - [sym__elvis_operator] = ACTIONS(2544), - [sym_logical_or] = ACTIONS(2544), - [sym_tag_linefeed] = ACTIONS(2544), - }, - [STATE(2862)] = { - [sym_identifier] = ACTIONS(2546), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2546), - [sym_optional_chain] = ACTIONS(2548), - [sym_static_chain] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_GT_GT] = ACTIONS(2546), - [anon_sym_GT_GT_GT] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_BSLASH] = ACTIONS(2546), - [anon_sym_STAR_STAR] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_LT_EQ] = ACTIONS(2548), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2548), - [anon_sym_LT_GT] = ACTIONS(2548), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2548), - [aux_sym_binary_expression_token1] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(2546), - [aux_sym_binary_expression_token2] = ACTIONS(2546), - [aux_sym_binary_expression_token3] = ACTIONS(2546), - [aux_sym_binary_expression_token4] = ACTIONS(2548), - [aux_sym_binary_expression_token5] = ACTIONS(2548), - [aux_sym_binary_expression_token6] = ACTIONS(2548), - [anon_sym_QMARK_QMARK] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2546), - [anon_sym_in] = ACTIONS(2546), - [anon_sym_IN] = ACTIONS(2546), - [anon_sym_InstanceOf] = ACTIONS(2546), - [anon_sym_instanceof] = ACTIONS(2546), - [anon_sym_INSTANCEOF] = ACTIONS(2546), - [anon_sym_instanceOf] = ACTIONS(2546), - [sym__automatic_semicolon] = ACTIONS(2548), - [sym__ternary_qmark] = ACTIONS(2548), - [sym__elvis_operator] = ACTIONS(2548), - [sym_logical_or] = ACTIONS(2548), - [sym_tag_linefeed] = ACTIONS(2548), - }, - [STATE(2863)] = { - [sym_identifier] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2550), - [sym_optional_chain] = ACTIONS(2552), - [sym_static_chain] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2550), - [anon_sym_GT_GT_GT] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_CARET] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_STAR_STAR] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_LT_EQ] = ACTIONS(2552), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2552), - [anon_sym_LT_GT] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2552), - [aux_sym_binary_expression_token1] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2550), - [aux_sym_binary_expression_token2] = ACTIONS(2550), - [aux_sym_binary_expression_token3] = ACTIONS(2550), - [aux_sym_binary_expression_token4] = ACTIONS(2552), - [aux_sym_binary_expression_token5] = ACTIONS(2552), - [aux_sym_binary_expression_token6] = ACTIONS(2552), - [anon_sym_QMARK_QMARK] = ACTIONS(2552), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_IN] = ACTIONS(2550), - [anon_sym_InstanceOf] = ACTIONS(2550), - [anon_sym_instanceof] = ACTIONS(2550), - [anon_sym_INSTANCEOF] = ACTIONS(2550), - [anon_sym_instanceOf] = ACTIONS(2550), - [sym__automatic_semicolon] = ACTIONS(2552), - [sym__ternary_qmark] = ACTIONS(2552), - [sym__elvis_operator] = ACTIONS(2552), - [sym_logical_or] = ACTIONS(2552), - [sym_tag_linefeed] = ACTIONS(2552), - }, - [STATE(2864)] = { - [sym_identifier] = ACTIONS(2554), - [anon_sym_DOT] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2554), - [sym_optional_chain] = ACTIONS(2556), - [sym_static_chain] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2554), - [anon_sym_GT_GT_GT] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2556), - [anon_sym_BSLASH] = ACTIONS(2554), - [anon_sym_STAR_STAR] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2556), - [anon_sym_LT_GT] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2556), - [aux_sym_binary_expression_token1] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2554), - [aux_sym_binary_expression_token2] = ACTIONS(2554), - [aux_sym_binary_expression_token3] = ACTIONS(2554), - [aux_sym_binary_expression_token4] = ACTIONS(2556), - [aux_sym_binary_expression_token5] = ACTIONS(2556), - [aux_sym_binary_expression_token6] = ACTIONS(2556), - [anon_sym_QMARK_QMARK] = ACTIONS(2556), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [anon_sym_IN] = ACTIONS(2554), - [anon_sym_InstanceOf] = ACTIONS(2554), - [anon_sym_instanceof] = ACTIONS(2554), - [anon_sym_INSTANCEOF] = ACTIONS(2554), - [anon_sym_instanceOf] = ACTIONS(2554), - [sym__automatic_semicolon] = ACTIONS(2556), - [sym__ternary_qmark] = ACTIONS(2556), - [sym__elvis_operator] = ACTIONS(2556), - [sym_logical_or] = ACTIONS(2556), - [sym_tag_linefeed] = ACTIONS(2556), - }, - [STATE(2865)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [sym__automatic_semicolon] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym_tag_linefeed] = ACTIONS(2286), - }, - [STATE(2866)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(6009), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2867)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(6012), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(6012), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2868)] = { - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2254), - [sym_static_chain] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - [sym_tag_linefeed] = ACTIONS(2254), - }, - [STATE(2869)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2870)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2462), - [sym_optional_chain] = ACTIONS(2464), - [sym_static_chain] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_GT_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_BSLASH] = ACTIONS(2462), - [anon_sym_STAR_STAR] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_LT_EQ] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_LT_GT] = ACTIONS(2464), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2464), - [aux_sym_binary_expression_token1] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2462), - [aux_sym_binary_expression_token2] = ACTIONS(2462), - [aux_sym_binary_expression_token3] = ACTIONS(2462), - [aux_sym_binary_expression_token4] = ACTIONS(2464), - [aux_sym_binary_expression_token5] = ACTIONS(2464), - [aux_sym_binary_expression_token6] = ACTIONS(2464), - [anon_sym_QMARK_QMARK] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [anon_sym_IN] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(2462), - [anon_sym_instanceof] = ACTIONS(2462), - [anon_sym_INSTANCEOF] = ACTIONS(2462), - [anon_sym_instanceOf] = ACTIONS(2462), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(2464), - [sym__elvis_operator] = ACTIONS(2464), - [sym_logical_or] = ACTIONS(2464), - [sym_tag_linefeed] = ACTIONS(2464), - }, - [STATE(2871)] = { - [sym_identifier] = ACTIONS(2566), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2566), - [sym_optional_chain] = ACTIONS(2568), - [sym_static_chain] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_GT_GT_GT] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_CARET] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2568), - [anon_sym_BSLASH] = ACTIONS(2566), - [anon_sym_STAR_STAR] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2568), - [anon_sym_LT_GT] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2568), - [aux_sym_binary_expression_token1] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(2566), - [aux_sym_binary_expression_token2] = ACTIONS(2566), - [aux_sym_binary_expression_token3] = ACTIONS(2566), - [aux_sym_binary_expression_token4] = ACTIONS(2568), - [aux_sym_binary_expression_token5] = ACTIONS(2568), - [aux_sym_binary_expression_token6] = ACTIONS(2568), - [anon_sym_QMARK_QMARK] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2566), - [anon_sym_in] = ACTIONS(2566), - [anon_sym_IN] = ACTIONS(2566), - [anon_sym_InstanceOf] = ACTIONS(2566), - [anon_sym_instanceof] = ACTIONS(2566), - [anon_sym_INSTANCEOF] = ACTIONS(2566), - [anon_sym_instanceOf] = ACTIONS(2566), - [sym__automatic_semicolon] = ACTIONS(2568), - [sym__ternary_qmark] = ACTIONS(2568), - [sym__elvis_operator] = ACTIONS(2568), - [sym_logical_or] = ACTIONS(2568), - [sym_tag_linefeed] = ACTIONS(2568), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2872)] = { - [sym_identifier] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2570), - [sym_optional_chain] = ACTIONS(2572), - [sym_static_chain] = ACTIONS(2572), - [anon_sym_AMP_AMP] = ACTIONS(2572), - [anon_sym_PIPE_PIPE] = ACTIONS(2572), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_GT_GT_GT] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2572), - [anon_sym_BSLASH] = ACTIONS(2570), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2572), - [anon_sym_LT_GT] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2572), - [aux_sym_binary_expression_token1] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2570), - [aux_sym_binary_expression_token2] = ACTIONS(2570), - [aux_sym_binary_expression_token3] = ACTIONS(2570), - [aux_sym_binary_expression_token4] = ACTIONS(2572), - [aux_sym_binary_expression_token5] = ACTIONS(2572), - [aux_sym_binary_expression_token6] = ACTIONS(2572), - [anon_sym_QMARK_QMARK] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [anon_sym_IN] = ACTIONS(2570), - [anon_sym_InstanceOf] = ACTIONS(2570), - [anon_sym_instanceof] = ACTIONS(2570), - [anon_sym_INSTANCEOF] = ACTIONS(2570), - [anon_sym_instanceOf] = ACTIONS(2570), - [sym__automatic_semicolon] = ACTIONS(2572), - [sym__ternary_qmark] = ACTIONS(2572), - [sym__elvis_operator] = ACTIONS(2572), - [sym_logical_or] = ACTIONS(2572), - [sym_tag_linefeed] = ACTIONS(2572), + [STATE(2936)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2873)] = { - [sym_identifier] = ACTIONS(2578), - [anon_sym_DOT] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_LBRACK] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2578), - [sym_optional_chain] = ACTIONS(2580), - [sym_static_chain] = ACTIONS(2580), - [anon_sym_AMP_AMP] = ACTIONS(2580), - [anon_sym_PIPE_PIPE] = ACTIONS(2580), - [anon_sym_GT_GT] = ACTIONS(2578), - [anon_sym_GT_GT_GT] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_CARET] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2580), - [anon_sym_BSLASH] = ACTIONS(2578), - [anon_sym_STAR_STAR] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_LT_EQ] = ACTIONS(2580), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2580), - [anon_sym_LT_GT] = ACTIONS(2580), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2580), - [aux_sym_binary_expression_token1] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2580), - [anon_sym_GT] = ACTIONS(2578), - [aux_sym_binary_expression_token2] = ACTIONS(2578), - [aux_sym_binary_expression_token3] = ACTIONS(2578), - [aux_sym_binary_expression_token4] = ACTIONS(2580), - [aux_sym_binary_expression_token5] = ACTIONS(2580), - [aux_sym_binary_expression_token6] = ACTIONS(2580), - [anon_sym_QMARK_QMARK] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2578), - [anon_sym_in] = ACTIONS(2578), - [anon_sym_IN] = ACTIONS(2578), - [anon_sym_InstanceOf] = ACTIONS(2578), - [anon_sym_instanceof] = ACTIONS(2578), - [anon_sym_INSTANCEOF] = ACTIONS(2578), - [anon_sym_instanceOf] = ACTIONS(2578), - [sym__automatic_semicolon] = ACTIONS(2580), - [sym__ternary_qmark] = ACTIONS(2580), - [sym__elvis_operator] = ACTIONS(2580), - [sym_logical_or] = ACTIONS(2580), - [sym_tag_linefeed] = ACTIONS(2580), + [STATE(2937)] = { + [sym_identifier] = ACTIONS(2452), + [anon_sym_DOT] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_COMMA] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2452), + [sym_optional_chain] = ACTIONS(2454), + [sym_static_chain] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_BSLASH] = ACTIONS(2452), + [anon_sym_STAR_STAR] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2454), + [anon_sym_LT_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2454), + [aux_sym_binary_expression_token1] = ACTIONS(2454), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [aux_sym_binary_expression_token2] = ACTIONS(2452), + [aux_sym_binary_expression_token3] = ACTIONS(2452), + [aux_sym_binary_expression_token4] = ACTIONS(2454), + [aux_sym_binary_expression_token5] = ACTIONS(2454), + [aux_sym_binary_expression_token6] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(2452), + [anon_sym_IN] = ACTIONS(2452), + [anon_sym_InstanceOf] = ACTIONS(2452), + [anon_sym_instanceof] = ACTIONS(2452), + [anon_sym_INSTANCEOF] = ACTIONS(2452), + [anon_sym_instanceOf] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2454), + [sym__elvis_operator] = ACTIONS(2454), + [sym_logical_or] = ACTIONS(2454), + [sym__parameter_separator] = ACTIONS(2454), }, - [STATE(2874)] = { - [sym_identifier] = ACTIONS(2478), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2478), - [sym_optional_chain] = ACTIONS(2480), - [sym_static_chain] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_BSLASH] = ACTIONS(2478), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_LT_GT] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [aux_sym_binary_expression_token1] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2478), - [aux_sym_binary_expression_token2] = ACTIONS(2478), - [aux_sym_binary_expression_token3] = ACTIONS(2478), - [aux_sym_binary_expression_token4] = ACTIONS(2480), - [aux_sym_binary_expression_token5] = ACTIONS(2480), - [aux_sym_binary_expression_token6] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_IN] = ACTIONS(2478), - [anon_sym_InstanceOf] = ACTIONS(2478), - [anon_sym_instanceof] = ACTIONS(2478), - [anon_sym_INSTANCEOF] = ACTIONS(2478), - [anon_sym_instanceOf] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2480), - [sym__ternary_qmark] = ACTIONS(2480), - [sym__elvis_operator] = ACTIONS(2480), - [sym_logical_or] = ACTIONS(2480), - [sym_tag_linefeed] = ACTIONS(2480), + [STATE(2938)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2875)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5782), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(2939)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2876)] = { - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2023), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2015), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2015), - [sym_optional_chain] = ACTIONS(2023), - [sym_static_chain] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_GT_GT_GT] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_BSLASH] = ACTIONS(2015), - [anon_sym_STAR_STAR] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2023), - [anon_sym_LT_GT] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2023), - [aux_sym_binary_expression_token1] = ACTIONS(2023), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2015), - [aux_sym_binary_expression_token2] = ACTIONS(2015), - [aux_sym_binary_expression_token3] = ACTIONS(2015), - [aux_sym_binary_expression_token4] = ACTIONS(2023), - [aux_sym_binary_expression_token5] = ACTIONS(2023), - [aux_sym_binary_expression_token6] = ACTIONS(2023), - [anon_sym_QMARK_QMARK] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(2023), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_IN] = ACTIONS(2015), - [anon_sym_InstanceOf] = ACTIONS(2015), - [anon_sym_instanceof] = ACTIONS(2015), - [anon_sym_INSTANCEOF] = ACTIONS(2015), - [anon_sym_instanceOf] = ACTIONS(2015), - [sym__ternary_qmark] = ACTIONS(2023), - [sym__elvis_operator] = ACTIONS(2023), - [sym_logical_or] = ACTIONS(2023), - [sym_tag_linefeed] = ACTIONS(2023), + [STATE(2940)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2877)] = { - [sym_identifier] = ACTIONS(2340), - [anon_sym_DOT] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2340), - [sym_optional_chain] = ACTIONS(2342), - [sym_static_chain] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_BSLASH] = ACTIONS(2340), - [anon_sym_STAR_STAR] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_GT] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [aux_sym_binary_expression_token1] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [aux_sym_binary_expression_token2] = ACTIONS(2340), - [aux_sym_binary_expression_token3] = ACTIONS(2340), - [aux_sym_binary_expression_token4] = ACTIONS(2342), - [aux_sym_binary_expression_token5] = ACTIONS(2342), - [aux_sym_binary_expression_token6] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), + [STATE(2941)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_IN] = ACTIONS(2340), - [anon_sym_InstanceOf] = ACTIONS(2340), - [anon_sym_instanceof] = ACTIONS(2340), - [anon_sym_INSTANCEOF] = ACTIONS(2340), - [anon_sym_instanceOf] = ACTIONS(2340), - [sym__automatic_semicolon] = ACTIONS(2342), - [sym__ternary_qmark] = ACTIONS(2342), - [sym__elvis_operator] = ACTIONS(2342), - [sym_logical_or] = ACTIONS(2342), - [sym_tag_linefeed] = ACTIONS(2342), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(2878)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym_tag_linefeed] = ACTIONS(2240), + [STATE(2942)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(2879)] = { - [sym_identifier] = ACTIONS(5261), + [STATE(2943)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(5200), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(5215), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -397367,7 +403914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -397391,1750 +403938,1750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(2880)] = { - [sym_identifier] = ACTIONS(2422), - [anon_sym_DOT] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2422), - [sym_optional_chain] = ACTIONS(2424), - [sym_static_chain] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2422), - [anon_sym_GT_GT_GT] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_CARET] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2424), - [anon_sym_BSLASH] = ACTIONS(2422), - [anon_sym_STAR_STAR] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), - [anon_sym_LT_GT] = ACTIONS(2424), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), - [aux_sym_binary_expression_token1] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2422), - [aux_sym_binary_expression_token2] = ACTIONS(2422), - [aux_sym_binary_expression_token3] = ACTIONS(2422), - [aux_sym_binary_expression_token4] = ACTIONS(2424), - [aux_sym_binary_expression_token5] = ACTIONS(2424), - [aux_sym_binary_expression_token6] = ACTIONS(2424), - [anon_sym_QMARK_QMARK] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_IN] = ACTIONS(2422), - [anon_sym_InstanceOf] = ACTIONS(2422), - [anon_sym_instanceof] = ACTIONS(2422), - [anon_sym_INSTANCEOF] = ACTIONS(2422), - [anon_sym_instanceOf] = ACTIONS(2422), - [sym__automatic_semicolon] = ACTIONS(2424), - [sym__ternary_qmark] = ACTIONS(2424), - [sym__elvis_operator] = ACTIONS(2424), - [sym_logical_or] = ACTIONS(2424), - [sym_tag_linefeed] = ACTIONS(2424), + [STATE(2944)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2578), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(2881)] = { - [sym_identifier] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [sym__automatic_semicolon] = ACTIONS(1650), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym_tag_linefeed] = ACTIONS(1650), + [STATE(2945)] = { + [sym_identifier] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_INSTANCEOF] = ACTIONS(2318), + [anon_sym_instanceOf] = ACTIONS(2318), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + [sym_tag_linefeed] = ACTIONS(2320), }, - [STATE(2882)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6018), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2946)] = { + [sym_identifier] = ACTIONS(2460), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2460), + [sym_optional_chain] = ACTIONS(2462), + [sym_static_chain] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_BSLASH] = ACTIONS(2460), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_LT_GT] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [aux_sym_binary_expression_token1] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [aux_sym_binary_expression_token2] = ACTIONS(2460), + [aux_sym_binary_expression_token3] = ACTIONS(2460), + [aux_sym_binary_expression_token4] = ACTIONS(2462), + [aux_sym_binary_expression_token5] = ACTIONS(2462), + [aux_sym_binary_expression_token6] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2460), + [anon_sym_in] = ACTIONS(2460), + [anon_sym_IN] = ACTIONS(2460), + [anon_sym_InstanceOf] = ACTIONS(2460), + [anon_sym_instanceof] = ACTIONS(2460), + [anon_sym_INSTANCEOF] = ACTIONS(2460), + [anon_sym_instanceOf] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2462), + [sym__elvis_operator] = ACTIONS(2462), + [sym_logical_or] = ACTIONS(2462), + [sym__parameter_separator] = ACTIONS(2462), }, - [STATE(2883)] = { - [sym_identifier] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2276), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), - [sym_optional_chain] = ACTIONS(2276), - [sym_static_chain] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2276), - [anon_sym_BSLASH] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2276), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), - [anon_sym_LT_GT] = ACTIONS(2276), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), - [aux_sym_binary_expression_token1] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2274), - [aux_sym_binary_expression_token2] = ACTIONS(2274), - [aux_sym_binary_expression_token3] = ACTIONS(2274), - [aux_sym_binary_expression_token4] = ACTIONS(2276), - [aux_sym_binary_expression_token5] = ACTIONS(2276), - [aux_sym_binary_expression_token6] = ACTIONS(2276), - [anon_sym_QMARK_QMARK] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_IN] = ACTIONS(2274), - [anon_sym_InstanceOf] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_INSTANCEOF] = ACTIONS(2274), - [anon_sym_instanceOf] = ACTIONS(2274), - [sym__ternary_qmark] = ACTIONS(2276), - [sym__elvis_operator] = ACTIONS(2276), - [sym_logical_or] = ACTIONS(2276), - [sym_tag_linefeed] = ACTIONS(2276), + [STATE(2947)] = { + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_COLON] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_RBRACK] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2570), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2570), + [anon_sym_instanceof] = ACTIONS(2570), + [anon_sym_INSTANCEOF] = ACTIONS(2570), + [anon_sym_instanceOf] = ACTIONS(2570), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), }, - [STATE(2884)] = { - [sym_identifier] = ACTIONS(2558), - [anon_sym_DOT] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2558), - [sym_optional_chain] = ACTIONS(2560), - [sym_static_chain] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_GT_GT_GT] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2560), - [anon_sym_BSLASH] = ACTIONS(2558), - [anon_sym_STAR_STAR] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2560), - [anon_sym_LT_GT] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2560), - [aux_sym_binary_expression_token1] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2558), - [aux_sym_binary_expression_token2] = ACTIONS(2558), - [aux_sym_binary_expression_token3] = ACTIONS(2558), - [aux_sym_binary_expression_token4] = ACTIONS(2560), - [aux_sym_binary_expression_token5] = ACTIONS(2560), - [aux_sym_binary_expression_token6] = ACTIONS(2560), - [anon_sym_QMARK_QMARK] = ACTIONS(2560), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_IN] = ACTIONS(2558), - [anon_sym_InstanceOf] = ACTIONS(2558), - [anon_sym_instanceof] = ACTIONS(2558), - [anon_sym_INSTANCEOF] = ACTIONS(2558), - [anon_sym_instanceOf] = ACTIONS(2558), - [sym__automatic_semicolon] = ACTIONS(2560), - [sym__ternary_qmark] = ACTIONS(2560), - [sym__elvis_operator] = ACTIONS(2560), - [sym_logical_or] = ACTIONS(2560), - [sym_tag_linefeed] = ACTIONS(2560), + [STATE(2948)] = { + [sym_identifier] = ACTIONS(2452), + [anon_sym_DOT] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2452), + [sym_optional_chain] = ACTIONS(2454), + [sym_static_chain] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_BSLASH] = ACTIONS(2452), + [anon_sym_STAR_STAR] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2454), + [anon_sym_LT_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2454), + [aux_sym_binary_expression_token1] = ACTIONS(2454), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [aux_sym_binary_expression_token2] = ACTIONS(2452), + [aux_sym_binary_expression_token3] = ACTIONS(2452), + [aux_sym_binary_expression_token4] = ACTIONS(2454), + [aux_sym_binary_expression_token5] = ACTIONS(2454), + [aux_sym_binary_expression_token6] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(2452), + [anon_sym_IN] = ACTIONS(2452), + [anon_sym_InstanceOf] = ACTIONS(2452), + [anon_sym_instanceof] = ACTIONS(2452), + [anon_sym_INSTANCEOF] = ACTIONS(2452), + [anon_sym_instanceOf] = ACTIONS(2452), + [sym__automatic_semicolon] = ACTIONS(2454), + [sym__ternary_qmark] = ACTIONS(2454), + [sym__elvis_operator] = ACTIONS(2454), + [sym_logical_or] = ACTIONS(2454), + [sym_tag_linefeed] = ACTIONS(2454), }, - [STATE(2885)] = { - [sym_identifier] = ACTIONS(2320), - [anon_sym_DOT] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2320), - [sym_optional_chain] = ACTIONS(2322), - [sym_static_chain] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_BSLASH] = ACTIONS(2320), - [anon_sym_STAR_STAR] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_LT_GT] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2322), - [aux_sym_binary_expression_token1] = ACTIONS(2322), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [aux_sym_binary_expression_token2] = ACTIONS(2320), - [aux_sym_binary_expression_token3] = ACTIONS(2320), - [aux_sym_binary_expression_token4] = ACTIONS(2322), - [aux_sym_binary_expression_token5] = ACTIONS(2322), - [aux_sym_binary_expression_token6] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2320), - [anon_sym_in] = ACTIONS(2320), - [anon_sym_IN] = ACTIONS(2320), - [anon_sym_InstanceOf] = ACTIONS(2320), - [anon_sym_instanceof] = ACTIONS(2320), - [anon_sym_INSTANCEOF] = ACTIONS(2320), - [anon_sym_instanceOf] = ACTIONS(2320), - [sym__automatic_semicolon] = ACTIONS(2322), - [sym__ternary_qmark] = ACTIONS(2322), - [sym__elvis_operator] = ACTIONS(2322), - [sym_logical_or] = ACTIONS(2322), - [sym_tag_linefeed] = ACTIONS(2322), + [STATE(2949)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6101), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), }, - [STATE(2886)] = { - [sym_identifier] = ACTIONS(2324), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), - [sym_optional_chain] = ACTIONS(2326), - [sym_static_chain] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_GT_GT_GT] = ACTIONS(2326), - [anon_sym_LT_LT] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_SLASH] = ACTIONS(2324), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_BSLASH] = ACTIONS(2324), - [anon_sym_STAR_STAR] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2326), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), - [anon_sym_LT_GT] = ACTIONS(2326), - [anon_sym_BANG_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), - [aux_sym_binary_expression_token1] = ACTIONS(2326), - [anon_sym_GT_EQ] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2324), - [aux_sym_binary_expression_token2] = ACTIONS(2324), - [aux_sym_binary_expression_token3] = ACTIONS(2324), - [aux_sym_binary_expression_token4] = ACTIONS(2326), - [aux_sym_binary_expression_token5] = ACTIONS(2326), - [aux_sym_binary_expression_token6] = ACTIONS(2326), - [anon_sym_QMARK_QMARK] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2324), - [anon_sym_in] = ACTIONS(2324), - [anon_sym_IN] = ACTIONS(2324), - [anon_sym_InstanceOf] = ACTIONS(2324), - [anon_sym_instanceof] = ACTIONS(2324), - [anon_sym_INSTANCEOF] = ACTIONS(2324), - [anon_sym_instanceOf] = ACTIONS(2324), - [sym__automatic_semicolon] = ACTIONS(2326), - [sym__ternary_qmark] = ACTIONS(2326), - [sym__elvis_operator] = ACTIONS(2326), - [sym_logical_or] = ACTIONS(2326), - [sym_tag_linefeed] = ACTIONS(2326), + [STATE(2950)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6103), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2887)] = { - [sym_identifier] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_LBRACK] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2328), - [sym_optional_chain] = ACTIONS(2330), - [sym_static_chain] = ACTIONS(2330), - [anon_sym_AMP_AMP] = ACTIONS(2330), - [anon_sym_PIPE_PIPE] = ACTIONS(2330), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2330), - [anon_sym_LT_LT] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2330), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2330), - [anon_sym_BSLASH] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2330), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2330), - [anon_sym_LT_GT] = ACTIONS(2330), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2330), - [aux_sym_binary_expression_token1] = ACTIONS(2330), - [anon_sym_GT_EQ] = ACTIONS(2330), - [anon_sym_GT] = ACTIONS(2328), - [aux_sym_binary_expression_token2] = ACTIONS(2328), - [aux_sym_binary_expression_token3] = ACTIONS(2328), - [aux_sym_binary_expression_token4] = ACTIONS(2330), - [aux_sym_binary_expression_token5] = ACTIONS(2330), - [aux_sym_binary_expression_token6] = ACTIONS(2330), - [anon_sym_QMARK_QMARK] = ACTIONS(2330), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_IN] = ACTIONS(2328), - [anon_sym_InstanceOf] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_INSTANCEOF] = ACTIONS(2328), - [anon_sym_instanceOf] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2330), - [sym__elvis_operator] = ACTIONS(2330), - [sym_logical_or] = ACTIONS(2330), - [sym_tag_linefeed] = ACTIONS(2330), + [STATE(2951)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6105), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6105), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2888)] = { - [sym_identifier] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2490), - [sym_optional_chain] = ACTIONS(2492), - [sym_static_chain] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_GT_GT_GT] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_BSLASH] = ACTIONS(2490), - [anon_sym_STAR_STAR] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2492), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2492), - [anon_sym_LT_GT] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2492), - [aux_sym_binary_expression_token1] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2490), - [aux_sym_binary_expression_token2] = ACTIONS(2490), - [aux_sym_binary_expression_token3] = ACTIONS(2490), - [aux_sym_binary_expression_token4] = ACTIONS(2492), - [aux_sym_binary_expression_token5] = ACTIONS(2492), - [aux_sym_binary_expression_token6] = ACTIONS(2492), - [anon_sym_QMARK_QMARK] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_IN] = ACTIONS(2490), - [anon_sym_InstanceOf] = ACTIONS(2490), - [anon_sym_instanceof] = ACTIONS(2490), - [anon_sym_INSTANCEOF] = ACTIONS(2490), - [anon_sym_instanceOf] = ACTIONS(2490), - [sym__automatic_semicolon] = ACTIONS(2492), - [sym__ternary_qmark] = ACTIONS(2492), - [sym__elvis_operator] = ACTIONS(2492), - [sym_logical_or] = ACTIONS(2492), - [sym_tag_linefeed] = ACTIONS(2492), + [STATE(2952)] = { + [sym_identifier] = ACTIONS(2508), + [anon_sym_DOT] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_COMMA] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_RPAREN] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2508), + [sym_optional_chain] = ACTIONS(2510), + [sym_static_chain] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_BSLASH] = ACTIONS(2508), + [anon_sym_STAR_STAR] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), + [anon_sym_LT_GT] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), + [aux_sym_binary_expression_token1] = ACTIONS(2510), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [aux_sym_binary_expression_token2] = ACTIONS(2508), + [aux_sym_binary_expression_token3] = ACTIONS(2508), + [aux_sym_binary_expression_token4] = ACTIONS(2510), + [aux_sym_binary_expression_token5] = ACTIONS(2510), + [aux_sym_binary_expression_token6] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_IN] = ACTIONS(2508), + [anon_sym_InstanceOf] = ACTIONS(2508), + [anon_sym_instanceof] = ACTIONS(2508), + [anon_sym_INSTANCEOF] = ACTIONS(2508), + [anon_sym_instanceOf] = ACTIONS(2508), + [sym__ternary_qmark] = ACTIONS(2510), + [sym__elvis_operator] = ACTIONS(2510), + [sym_logical_or] = ACTIONS(2510), + [sym__parameter_separator] = ACTIONS(2510), }, - [STATE(2889)] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2494), - [sym_optional_chain] = ACTIONS(2496), - [sym_static_chain] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_GT_GT_GT] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_BSLASH] = ACTIONS(2494), - [anon_sym_STAR_STAR] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2496), - [anon_sym_LT_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2496), - [aux_sym_binary_expression_token1] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [aux_sym_binary_expression_token2] = ACTIONS(2494), - [aux_sym_binary_expression_token3] = ACTIONS(2494), - [aux_sym_binary_expression_token4] = ACTIONS(2496), - [aux_sym_binary_expression_token5] = ACTIONS(2496), - [aux_sym_binary_expression_token6] = ACTIONS(2496), - [anon_sym_QMARK_QMARK] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_IN] = ACTIONS(2494), - [anon_sym_InstanceOf] = ACTIONS(2494), - [anon_sym_instanceof] = ACTIONS(2494), - [anon_sym_INSTANCEOF] = ACTIONS(2494), - [anon_sym_instanceOf] = ACTIONS(2494), - [sym__automatic_semicolon] = ACTIONS(2496), - [sym__ternary_qmark] = ACTIONS(2496), - [sym__elvis_operator] = ACTIONS(2496), - [sym_logical_or] = ACTIONS(2496), - [sym_tag_linefeed] = ACTIONS(2496), + [STATE(2953)] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym__parameter_separator] = ACTIONS(2566), }, - [STATE(2890)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6020), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2954)] = { + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym__parameter_separator] = ACTIONS(2558), }, - [STATE(2891)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6022), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2955)] = { + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(5908), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(5912), + [sym__elvis_operator] = ACTIONS(5914), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2466), }, - [STATE(2892)] = { - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(5536), - [anon_sym_RBRACE] = ACTIONS(5536), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_RBRACK] = ACTIONS(5585), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2246), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_INSTANCEOF] = ACTIONS(2246), - [anon_sym_instanceOf] = ACTIONS(2246), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), + [STATE(2956)] = { + [sym_identifier] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_RPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(6008), + [sym__elvis_operator] = ACTIONS(6010), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2478), }, - [STATE(2893)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_RPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2468), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(5957), + [STATE(2957)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2894)] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_BSLASH] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2300), - [aux_sym_binary_expression_token2] = ACTIONS(2300), - [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), + [STATE(2958)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_IN] = ACTIONS(2300), - [anon_sym_InstanceOf] = ACTIONS(2300), - [anon_sym_instanceof] = ACTIONS(2300), - [anon_sym_INSTANCEOF] = ACTIONS(2300), - [anon_sym_instanceOf] = ACTIONS(2300), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), - [sym_tag_linefeed] = ACTIONS(2302), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2895)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(6024), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(6024), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2959)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2896)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4617), - [aux_sym_object_pattern_repeat1] = STATE(4618), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(2960)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2897)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6027), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2961)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2898)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2442), - [sym_optional_chain] = ACTIONS(2444), - [sym_static_chain] = ACTIONS(2444), - [anon_sym_AMP_AMP] = ACTIONS(2444), - [anon_sym_PIPE_PIPE] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_BSLASH] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2444), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), - [anon_sym_LT_GT] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), - [aux_sym_binary_expression_token1] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2442), - [aux_sym_binary_expression_token2] = ACTIONS(2442), - [aux_sym_binary_expression_token3] = ACTIONS(2442), - [aux_sym_binary_expression_token4] = ACTIONS(2444), - [aux_sym_binary_expression_token5] = ACTIONS(2444), - [aux_sym_binary_expression_token6] = ACTIONS(2444), - [anon_sym_QMARK_QMARK] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_IN] = ACTIONS(2442), - [anon_sym_InstanceOf] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_INSTANCEOF] = ACTIONS(2442), - [anon_sym_instanceOf] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), - [sym__elvis_operator] = ACTIONS(2444), - [sym_logical_or] = ACTIONS(2444), - [sym_tag_linefeed] = ACTIONS(2444), + [STATE(2962)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2899)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2310), - [sym__ternary_qmark] = ACTIONS(5888), - [sym__elvis_operator] = ACTIONS(5890), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2310), + [STATE(2963)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2900)] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_INSTANCEOF] = ACTIONS(2278), - [anon_sym_instanceOf] = ACTIONS(2278), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), - [sym_tag_linefeed] = ACTIONS(2280), + [STATE(2964)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2901)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6029), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2965)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2902)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6031), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2966)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2903)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(5888), - [sym__elvis_operator] = ACTIONS(5890), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2420), + [STATE(2967)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2904)] = { + [STATE(2968)] = { [sym_identifier] = ACTIONS(2482), - [anon_sym_DOT] = ACTIONS(2484), + [anon_sym_DOT] = ACTIONS(5742), [anon_sym_STAR] = ACTIONS(2482), [anon_sym_COMMA] = ACTIONS(2484), [anon_sym_LPAREN] = ACTIONS(2484), [anon_sym_RPAREN] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), @@ -399152,8 +405699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), - [sym_optional_chain] = ACTIONS(2484), - [sym_static_chain] = ACTIONS(2484), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), [anon_sym_AMP_AMP] = ACTIONS(2484), [anon_sym_PIPE_PIPE] = ACTIONS(2484), [anon_sym_GT_GT] = ACTIONS(2482), @@ -399167,7 +405714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(2482), [anon_sym_PERCENT] = ACTIONS(2484), [anon_sym_BSLASH] = ACTIONS(2482), - [anon_sym_STAR_STAR] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(5998), [anon_sym_LT] = ACTIONS(2482), [anon_sym_LT_EQ] = ACTIONS(2484), [anon_sym_EQ_EQ] = ACTIONS(2482), @@ -399184,8 +405731,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(2484), [aux_sym_binary_expression_token6] = ACTIONS(2484), [anon_sym_QMARK_QMARK] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), [sym_comment] = ACTIONS(129), [anon_sym_In] = ACTIONS(2482), [anon_sym_in] = ACTIONS(2482), @@ -399199,301 +405746,1310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(2484), [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2905)] = { - [sym_identifier] = ACTIONS(2486), - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_COMMA] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_RPAREN] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2486), - [sym_optional_chain] = ACTIONS(2488), - [sym_static_chain] = ACTIONS(2488), - [anon_sym_AMP_AMP] = ACTIONS(2488), - [anon_sym_PIPE_PIPE] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2486), - [anon_sym_GT_GT_GT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_BSLASH] = ACTIONS(2486), - [anon_sym_STAR_STAR] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2488), - [anon_sym_LT_GT] = ACTIONS(2488), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2488), - [aux_sym_binary_expression_token1] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2486), - [aux_sym_binary_expression_token2] = ACTIONS(2486), - [aux_sym_binary_expression_token3] = ACTIONS(2486), - [aux_sym_binary_expression_token4] = ACTIONS(2488), - [aux_sym_binary_expression_token5] = ACTIONS(2488), - [aux_sym_binary_expression_token6] = ACTIONS(2488), - [anon_sym_QMARK_QMARK] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2488), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_IN] = ACTIONS(2486), - [anon_sym_InstanceOf] = ACTIONS(2486), - [anon_sym_instanceof] = ACTIONS(2486), - [anon_sym_INSTANCEOF] = ACTIONS(2486), - [anon_sym_instanceOf] = ACTIONS(2486), - [sym__ternary_qmark] = ACTIONS(2488), - [sym__elvis_operator] = ACTIONS(2488), - [sym_logical_or] = ACTIONS(2488), - [sym__parameter_separator] = ACTIONS(2488), + [STATE(2969)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(2906)] = { - [sym_identifier] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_COMMA] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2490), - [sym_optional_chain] = ACTIONS(2492), - [sym_static_chain] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_GT_GT_GT] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_BSLASH] = ACTIONS(2490), - [anon_sym_STAR_STAR] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2492), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2492), - [anon_sym_LT_GT] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2492), - [aux_sym_binary_expression_token1] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2490), - [aux_sym_binary_expression_token2] = ACTIONS(2490), - [aux_sym_binary_expression_token3] = ACTIONS(2490), - [aux_sym_binary_expression_token4] = ACTIONS(2492), - [aux_sym_binary_expression_token5] = ACTIONS(2492), - [aux_sym_binary_expression_token6] = ACTIONS(2492), - [anon_sym_QMARK_QMARK] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_IN] = ACTIONS(2490), - [anon_sym_InstanceOf] = ACTIONS(2490), - [anon_sym_instanceof] = ACTIONS(2490), - [anon_sym_INSTANCEOF] = ACTIONS(2490), - [anon_sym_instanceOf] = ACTIONS(2490), - [sym__ternary_qmark] = ACTIONS(2492), - [sym__elvis_operator] = ACTIONS(2492), - [sym_logical_or] = ACTIONS(2492), - [sym__parameter_separator] = ACTIONS(2492), + [STATE(2970)] = { + [sym_identifier] = ACTIONS(2576), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(6008), + [sym__elvis_operator] = ACTIONS(6010), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2578), }, - [STATE(2907)] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_COMMA] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2494), - [sym_optional_chain] = ACTIONS(2496), - [sym_static_chain] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_GT_GT_GT] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_BSLASH] = ACTIONS(2494), - [anon_sym_STAR_STAR] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2496), - [anon_sym_LT_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2496), - [aux_sym_binary_expression_token1] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [aux_sym_binary_expression_token2] = ACTIONS(2494), - [aux_sym_binary_expression_token3] = ACTIONS(2494), - [aux_sym_binary_expression_token4] = ACTIONS(2496), - [aux_sym_binary_expression_token5] = ACTIONS(2496), - [aux_sym_binary_expression_token6] = ACTIONS(2496), - [anon_sym_QMARK_QMARK] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_IN] = ACTIONS(2494), - [anon_sym_InstanceOf] = ACTIONS(2494), - [anon_sym_instanceof] = ACTIONS(2494), - [anon_sym_INSTANCEOF] = ACTIONS(2494), - [anon_sym_instanceOf] = ACTIONS(2494), - [sym__ternary_qmark] = ACTIONS(2496), - [sym__elvis_operator] = ACTIONS(2496), - [sym_logical_or] = ACTIONS(2496), - [sym__parameter_separator] = ACTIONS(2496), + [STATE(2971)] = { + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_RPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(6008), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2586), }, - [STATE(2908)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), + [STATE(2972)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4654), + [aux_sym_object_pattern_repeat1] = STATE(4600), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5827), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(2973)] = { + [sym_identifier] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2504), + [sym_optional_chain] = ACTIONS(2506), + [sym_static_chain] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_BSLASH] = ACTIONS(2504), + [anon_sym_STAR_STAR] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2504), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), + [anon_sym_LT_GT] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2504), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), + [aux_sym_binary_expression_token1] = ACTIONS(2506), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [aux_sym_binary_expression_token2] = ACTIONS(2504), + [aux_sym_binary_expression_token3] = ACTIONS(2504), + [aux_sym_binary_expression_token4] = ACTIONS(2506), + [aux_sym_binary_expression_token5] = ACTIONS(2506), + [aux_sym_binary_expression_token6] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2504), + [anon_sym_in] = ACTIONS(2504), + [anon_sym_IN] = ACTIONS(2504), + [anon_sym_InstanceOf] = ACTIONS(2504), + [anon_sym_instanceof] = ACTIONS(2504), + [anon_sym_INSTANCEOF] = ACTIONS(2504), + [anon_sym_instanceOf] = ACTIONS(2504), + [sym__ternary_qmark] = ACTIONS(2506), + [sym__elvis_operator] = ACTIONS(2506), + [sym_logical_or] = ACTIONS(2506), + [sym__parameter_separator] = ACTIONS(2506), + }, + [STATE(2974)] = { + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym_RBRACK] = ACTIONS(5615), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2320), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2320), + [anon_sym_instanceof] = ACTIONS(2320), + [anon_sym_INSTANCEOF] = ACTIONS(2320), + [anon_sym_instanceOf] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + }, + [STATE(2975)] = { + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_COLON] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2326), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2324), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), + [sym_optional_chain] = ACTIONS(2326), + [sym_static_chain] = ACTIONS(2326), + [anon_sym_AMP_AMP] = ACTIONS(2326), + [anon_sym_PIPE_PIPE] = ACTIONS(2326), + [anon_sym_GT_GT] = ACTIONS(2324), + [anon_sym_GT_GT_GT] = ACTIONS(2326), + [anon_sym_LT_LT] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_CARET] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_PLUS] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_SLASH] = ACTIONS(2324), + [anon_sym_PERCENT] = ACTIONS(2326), + [anon_sym_BSLASH] = ACTIONS(2324), + [anon_sym_STAR_STAR] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_LT_EQ] = ACTIONS(2326), + [anon_sym_EQ_EQ] = ACTIONS(2324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), + [anon_sym_LT_GT] = ACTIONS(2326), + [anon_sym_BANG_EQ] = ACTIONS(2324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), + [aux_sym_binary_expression_token1] = ACTIONS(2326), + [anon_sym_GT_EQ] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2324), + [aux_sym_binary_expression_token2] = ACTIONS(2324), + [aux_sym_binary_expression_token3] = ACTIONS(2324), + [aux_sym_binary_expression_token4] = ACTIONS(2326), + [aux_sym_binary_expression_token5] = ACTIONS(2326), + [aux_sym_binary_expression_token6] = ACTIONS(2326), + [anon_sym_QMARK_QMARK] = ACTIONS(2326), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym_tag_linefeed] = ACTIONS(2286), + [anon_sym_In] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2324), + [anon_sym_IN] = ACTIONS(2324), + [anon_sym_InstanceOf] = ACTIONS(2324), + [anon_sym_instanceof] = ACTIONS(2324), + [anon_sym_INSTANCEOF] = ACTIONS(2324), + [anon_sym_instanceOf] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2326), + [sym__elvis_operator] = ACTIONS(2326), + [sym_logical_or] = ACTIONS(2326), + [sym_tag_linefeed] = ACTIONS(2326), }, - [STATE(2909)] = { - [sym_identifier] = ACTIONS(507), + [STATE(2976)] = { + [sym_identifier] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2211), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2211), + [sym_optional_chain] = ACTIONS(2213), + [sym_static_chain] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_BSLASH] = ACTIONS(2211), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_LT_GT] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [aux_sym_binary_expression_token1] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2211), + [aux_sym_binary_expression_token2] = ACTIONS(2211), + [aux_sym_binary_expression_token3] = ACTIONS(2211), + [aux_sym_binary_expression_token4] = ACTIONS(2213), + [aux_sym_binary_expression_token5] = ACTIONS(2213), + [aux_sym_binary_expression_token6] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2211), + [anon_sym_IN] = ACTIONS(2211), + [anon_sym_InstanceOf] = ACTIONS(2211), + [anon_sym_instanceof] = ACTIONS(2211), + [anon_sym_INSTANCEOF] = ACTIONS(2211), + [anon_sym_instanceOf] = ACTIONS(2211), + [sym__ternary_qmark] = ACTIONS(2213), + [sym__elvis_operator] = ACTIONS(2213), + [sym_logical_or] = ACTIONS(2213), + [sym_tag_linefeed] = ACTIONS(2213), + }, + [STATE(2977)] = { + [sym_identifier] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2230), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2228), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2228), + [sym_optional_chain] = ACTIONS(2230), + [sym_static_chain] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_SLASH] = ACTIONS(2228), + [anon_sym_PERCENT] = ACTIONS(2230), + [anon_sym_BSLASH] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_LT_EQ] = ACTIONS(2230), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), + [anon_sym_LT_GT] = ACTIONS(2230), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), + [aux_sym_binary_expression_token1] = ACTIONS(2230), + [anon_sym_GT_EQ] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2228), + [aux_sym_binary_expression_token2] = ACTIONS(2228), + [aux_sym_binary_expression_token3] = ACTIONS(2228), + [aux_sym_binary_expression_token4] = ACTIONS(2230), + [aux_sym_binary_expression_token5] = ACTIONS(2230), + [aux_sym_binary_expression_token6] = ACTIONS(2230), + [anon_sym_QMARK_QMARK] = ACTIONS(2230), + [anon_sym_PLUS_PLUS] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_IN] = ACTIONS(2228), + [anon_sym_InstanceOf] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_INSTANCEOF] = ACTIONS(2228), + [anon_sym_instanceOf] = ACTIONS(2228), + [sym__ternary_qmark] = ACTIONS(2230), + [sym__elvis_operator] = ACTIONS(2230), + [sym_logical_or] = ACTIONS(2230), + [sym_tag_linefeed] = ACTIONS(2230), + }, + [STATE(2978)] = { + [sym_identifier] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_RPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(6008), + [sym__elvis_operator] = ACTIONS(6010), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2410), + }, + [STATE(2979)] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(6008), + [sym__elvis_operator] = ACTIONS(6010), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2418), + }, + [STATE(2980)] = { + [sym_identifier] = ACTIONS(2256), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2260), + [sym_static_chain] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2256), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2256), + [anon_sym_instanceof] = ACTIONS(2256), + [anon_sym_INSTANCEOF] = ACTIONS(2256), + [anon_sym_instanceOf] = ACTIONS(2256), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + [sym_tag_linefeed] = ACTIONS(2260), + }, + [STATE(2981)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(6107), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(2982)] = { + [sym_identifier] = ACTIONS(2460), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2460), + [sym_optional_chain] = ACTIONS(2462), + [sym_static_chain] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_BSLASH] = ACTIONS(2460), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_LT_GT] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [aux_sym_binary_expression_token1] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [aux_sym_binary_expression_token2] = ACTIONS(2460), + [aux_sym_binary_expression_token3] = ACTIONS(2460), + [aux_sym_binary_expression_token4] = ACTIONS(2462), + [aux_sym_binary_expression_token5] = ACTIONS(2462), + [aux_sym_binary_expression_token6] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2460), + [anon_sym_in] = ACTIONS(2460), + [anon_sym_IN] = ACTIONS(2460), + [anon_sym_InstanceOf] = ACTIONS(2460), + [anon_sym_instanceof] = ACTIONS(2460), + [anon_sym_INSTANCEOF] = ACTIONS(2460), + [anon_sym_instanceOf] = ACTIONS(2460), + [sym__automatic_semicolon] = ACTIONS(2462), + [sym__ternary_qmark] = ACTIONS(2462), + [sym__elvis_operator] = ACTIONS(2462), + [sym_logical_or] = ACTIONS(2462), + [sym_tag_linefeed] = ACTIONS(2462), + }, + [STATE(2983)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6109), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__parameter_separator] = ACTIONS(1716), + }, + [STATE(2984)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(6111), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_tag_linefeed] = ACTIONS(1588), + }, + [STATE(2985)] = { + [sym_identifier] = ACTIONS(1085), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1083), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1085), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1085), + [sym_optional_chain] = ACTIONS(1083), + [sym_static_chain] = ACTIONS(1083), + [anon_sym_AMP_AMP] = ACTIONS(1083), + [anon_sym_PIPE_PIPE] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_GT_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1083), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_STAR_STAR] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LT_EQ] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1083), + [anon_sym_LT_GT] = ACTIONS(1083), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1083), + [aux_sym_binary_expression_token1] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1083), + [anon_sym_GT] = ACTIONS(1085), + [aux_sym_binary_expression_token2] = ACTIONS(1085), + [aux_sym_binary_expression_token3] = ACTIONS(1085), + [aux_sym_binary_expression_token4] = ACTIONS(1083), + [aux_sym_binary_expression_token5] = ACTIONS(1083), + [aux_sym_binary_expression_token6] = ACTIONS(1083), + [anon_sym_QMARK_QMARK] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1085), + [anon_sym_in] = ACTIONS(1085), + [anon_sym_IN] = ACTIONS(1085), + [anon_sym_InstanceOf] = ACTIONS(1085), + [anon_sym_instanceof] = ACTIONS(1085), + [anon_sym_INSTANCEOF] = ACTIONS(1085), + [anon_sym_instanceOf] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(6113), + [sym__ternary_qmark] = ACTIONS(1083), + [sym__elvis_operator] = ACTIONS(1083), + [sym_logical_or] = ACTIONS(1083), + [sym_tag_linefeed] = ACTIONS(1083), + }, + [STATE(2986)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6115), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6115), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(2987)] = { + [sym_identifier] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5266), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -399557,2607 +407113,1454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym__parameter_separator] = ACTIONS(509), - }, - [STATE(2910)] = { - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym__parameter_separator] = ACTIONS(1720), - }, - [STATE(2911)] = { - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2272), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2270), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), - [sym_optional_chain] = ACTIONS(2272), - [sym_static_chain] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2272), - [anon_sym_PIPE_PIPE] = ACTIONS(2272), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_GT_GT_GT] = ACTIONS(2272), - [anon_sym_LT_LT] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_CARET] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_PLUS] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2272), - [anon_sym_BSLASH] = ACTIONS(2270), - [anon_sym_STAR_STAR] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_LT_EQ] = ACTIONS(2272), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), - [anon_sym_LT_GT] = ACTIONS(2272), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), - [aux_sym_binary_expression_token1] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2272), - [anon_sym_GT] = ACTIONS(2270), - [aux_sym_binary_expression_token2] = ACTIONS(2270), - [aux_sym_binary_expression_token3] = ACTIONS(2270), - [aux_sym_binary_expression_token4] = ACTIONS(2272), - [aux_sym_binary_expression_token5] = ACTIONS(2272), - [aux_sym_binary_expression_token6] = ACTIONS(2272), - [anon_sym_QMARK_QMARK] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2270), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_IN] = ACTIONS(2270), - [anon_sym_InstanceOf] = ACTIONS(2270), - [anon_sym_instanceof] = ACTIONS(2270), - [anon_sym_INSTANCEOF] = ACTIONS(2270), - [anon_sym_instanceOf] = ACTIONS(2270), - [sym__ternary_qmark] = ACTIONS(2272), - [sym__elvis_operator] = ACTIONS(2272), - [sym_logical_or] = ACTIONS(2272), - [sym_tag_linefeed] = ACTIONS(2272), - }, - [STATE(2912)] = { - [sym_identifier] = ACTIONS(2498), - [anon_sym_DOT] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_COMMA] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2498), - [sym_optional_chain] = ACTIONS(2500), - [sym_static_chain] = ACTIONS(2500), - [anon_sym_AMP_AMP] = ACTIONS(2500), - [anon_sym_PIPE_PIPE] = ACTIONS(2500), - [anon_sym_GT_GT] = ACTIONS(2498), - [anon_sym_GT_GT_GT] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_BSLASH] = ACTIONS(2498), - [anon_sym_STAR_STAR] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_LT_EQ] = ACTIONS(2500), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2500), - [anon_sym_LT_GT] = ACTIONS(2500), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2500), - [aux_sym_binary_expression_token1] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2498), - [aux_sym_binary_expression_token2] = ACTIONS(2498), - [aux_sym_binary_expression_token3] = ACTIONS(2498), - [aux_sym_binary_expression_token4] = ACTIONS(2500), - [aux_sym_binary_expression_token5] = ACTIONS(2500), - [aux_sym_binary_expression_token6] = ACTIONS(2500), - [anon_sym_QMARK_QMARK] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_IN] = ACTIONS(2498), - [anon_sym_InstanceOf] = ACTIONS(2498), - [anon_sym_instanceof] = ACTIONS(2498), - [anon_sym_INSTANCEOF] = ACTIONS(2498), - [anon_sym_instanceOf] = ACTIONS(2498), - [sym__ternary_qmark] = ACTIONS(2500), - [sym__elvis_operator] = ACTIONS(2500), - [sym_logical_or] = ACTIONS(2500), - [sym__parameter_separator] = ACTIONS(2500), - }, - [STATE(2913)] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_RPAREN] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2502), - [sym_optional_chain] = ACTIONS(2504), - [sym_static_chain] = ACTIONS(2504), - [anon_sym_AMP_AMP] = ACTIONS(2504), - [anon_sym_PIPE_PIPE] = ACTIONS(2504), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_GT_GT_GT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_BSLASH] = ACTIONS(2502), - [anon_sym_STAR_STAR] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_LT_EQ] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2504), - [anon_sym_LT_GT] = ACTIONS(2504), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2504), - [aux_sym_binary_expression_token1] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2504), - [anon_sym_GT] = ACTIONS(2502), - [aux_sym_binary_expression_token2] = ACTIONS(2502), - [aux_sym_binary_expression_token3] = ACTIONS(2502), - [aux_sym_binary_expression_token4] = ACTIONS(2504), - [aux_sym_binary_expression_token5] = ACTIONS(2504), - [aux_sym_binary_expression_token6] = ACTIONS(2504), - [anon_sym_QMARK_QMARK] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_IN] = ACTIONS(2502), - [anon_sym_InstanceOf] = ACTIONS(2502), - [anon_sym_instanceof] = ACTIONS(2502), - [anon_sym_INSTANCEOF] = ACTIONS(2502), - [anon_sym_instanceOf] = ACTIONS(2502), - [sym__ternary_qmark] = ACTIONS(2504), - [sym__elvis_operator] = ACTIONS(2504), - [sym_logical_or] = ACTIONS(2504), - [sym__parameter_separator] = ACTIONS(2504), - }, - [STATE(2914)] = { - [sym_arguments] = STATE(2999), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(6037), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), - }, - [STATE(2915)] = { - [sym_identifier] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_COLON] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2304), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2304), - [sym_optional_chain] = ACTIONS(2306), - [sym_static_chain] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_BSLASH] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2306), - [anon_sym_LT_GT] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2306), - [aux_sym_binary_expression_token1] = ACTIONS(2306), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [aux_sym_binary_expression_token2] = ACTIONS(2304), - [aux_sym_binary_expression_token3] = ACTIONS(2304), - [aux_sym_binary_expression_token4] = ACTIONS(2306), - [aux_sym_binary_expression_token5] = ACTIONS(2306), - [aux_sym_binary_expression_token6] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2304), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_IN] = ACTIONS(2304), - [anon_sym_InstanceOf] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_INSTANCEOF] = ACTIONS(2304), - [anon_sym_instanceOf] = ACTIONS(2304), - [sym__ternary_qmark] = ACTIONS(2306), - [sym__elvis_operator] = ACTIONS(2306), - [sym_logical_or] = ACTIONS(2306), - [sym_tag_linefeed] = ACTIONS(2306), }, - [STATE(2916)] = { - [sym_identifier] = ACTIONS(2506), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_COMMA] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_RPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2506), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_GT_GT_GT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2506), - [anon_sym_STAR_STAR] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2508), - [anon_sym_LT_GT] = ACTIONS(2508), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2508), - [aux_sym_binary_expression_token1] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2506), - [aux_sym_binary_expression_token2] = ACTIONS(2506), - [aux_sym_binary_expression_token3] = ACTIONS(2506), - [aux_sym_binary_expression_token4] = ACTIONS(2508), - [aux_sym_binary_expression_token5] = ACTIONS(2508), - [aux_sym_binary_expression_token6] = ACTIONS(2508), - [anon_sym_QMARK_QMARK] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_IN] = ACTIONS(2506), - [anon_sym_InstanceOf] = ACTIONS(2506), - [anon_sym_instanceof] = ACTIONS(2506), - [anon_sym_INSTANCEOF] = ACTIONS(2506), - [anon_sym_instanceOf] = ACTIONS(2506), - [sym__ternary_qmark] = ACTIONS(2508), - [sym__elvis_operator] = ACTIONS(2508), - [sym_logical_or] = ACTIONS(2508), - [sym__parameter_separator] = ACTIONS(2508), + [STATE(2988)] = { + [sym_identifier] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(5908), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(5912), + [sym__elvis_operator] = ACTIONS(5914), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2410), }, - [STATE(2917)] = { - [sym_identifier] = ACTIONS(2510), - [anon_sym_DOT] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_COMMA] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_RPAREN] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2510), - [sym_optional_chain] = ACTIONS(2512), - [sym_static_chain] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_PIPE_PIPE] = ACTIONS(2512), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_GT_GT_GT] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_CARET] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2512), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_STAR_STAR] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2512), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2512), - [anon_sym_LT_GT] = ACTIONS(2512), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2512), - [aux_sym_binary_expression_token1] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2512), - [anon_sym_GT] = ACTIONS(2510), - [aux_sym_binary_expression_token2] = ACTIONS(2510), - [aux_sym_binary_expression_token3] = ACTIONS(2510), - [aux_sym_binary_expression_token4] = ACTIONS(2512), - [aux_sym_binary_expression_token5] = ACTIONS(2512), - [aux_sym_binary_expression_token6] = ACTIONS(2512), - [anon_sym_QMARK_QMARK] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_IN] = ACTIONS(2510), - [anon_sym_InstanceOf] = ACTIONS(2510), - [anon_sym_instanceof] = ACTIONS(2510), - [anon_sym_INSTANCEOF] = ACTIONS(2510), - [anon_sym_instanceOf] = ACTIONS(2510), - [sym__ternary_qmark] = ACTIONS(2512), - [sym__elvis_operator] = ACTIONS(2512), - [sym_logical_or] = ACTIONS(2512), - [sym__parameter_separator] = ACTIONS(2512), + [STATE(2989)] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(5908), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(5912), + [sym__elvis_operator] = ACTIONS(5914), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2418), }, - [STATE(2918)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4628), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(2990)] = { + [sym_identifier] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(5908), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(5912), + [sym__elvis_operator] = ACTIONS(5914), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2478), }, - [STATE(2919)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6043), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2991)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2920)] = { - [sym_arguments] = STATE(2999), - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(6037), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), + [STATE(2992)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - [sym_tag_linefeed] = ACTIONS(2254), - }, - [STATE(2921)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6045), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2922)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6047), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2923)] = { - [sym_identifier] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_COMMA] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2514), - [sym_optional_chain] = ACTIONS(2516), - [sym_static_chain] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_GT_GT_GT] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_CARET] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2516), - [anon_sym_BSLASH] = ACTIONS(2514), - [anon_sym_STAR_STAR] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2516), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2516), - [anon_sym_LT_GT] = ACTIONS(2516), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2516), - [aux_sym_binary_expression_token1] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2516), - [anon_sym_GT] = ACTIONS(2514), - [aux_sym_binary_expression_token2] = ACTIONS(2514), - [aux_sym_binary_expression_token3] = ACTIONS(2514), - [aux_sym_binary_expression_token4] = ACTIONS(2516), - [aux_sym_binary_expression_token5] = ACTIONS(2516), - [aux_sym_binary_expression_token6] = ACTIONS(2516), - [anon_sym_QMARK_QMARK] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2514), - [anon_sym_in] = ACTIONS(2514), - [anon_sym_IN] = ACTIONS(2514), - [anon_sym_InstanceOf] = ACTIONS(2514), - [anon_sym_instanceof] = ACTIONS(2514), - [anon_sym_INSTANCEOF] = ACTIONS(2514), - [anon_sym_instanceOf] = ACTIONS(2514), - [sym__ternary_qmark] = ACTIONS(2516), - [sym__elvis_operator] = ACTIONS(2516), - [sym_logical_or] = ACTIONS(2516), - [sym__parameter_separator] = ACTIONS(2516), - }, - [STATE(2924)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(5888), - [sym__elvis_operator] = ACTIONS(5890), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2464), - }, - [STATE(2925)] = { - [sym_identifier] = ACTIONS(2562), - [anon_sym_DOT] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2562), - [sym_optional_chain] = ACTIONS(2564), - [sym_static_chain] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_GT_GT_GT] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2564), - [anon_sym_BSLASH] = ACTIONS(2562), - [anon_sym_STAR_STAR] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2564), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2564), - [anon_sym_LT_GT] = ACTIONS(2564), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2564), - [aux_sym_binary_expression_token1] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2562), - [aux_sym_binary_expression_token2] = ACTIONS(2562), - [aux_sym_binary_expression_token3] = ACTIONS(2562), - [aux_sym_binary_expression_token4] = ACTIONS(2564), - [aux_sym_binary_expression_token5] = ACTIONS(2564), - [aux_sym_binary_expression_token6] = ACTIONS(2564), - [anon_sym_QMARK_QMARK] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2562), - [anon_sym_IN] = ACTIONS(2562), - [anon_sym_InstanceOf] = ACTIONS(2562), - [anon_sym_instanceof] = ACTIONS(2562), - [anon_sym_INSTANCEOF] = ACTIONS(2562), - [anon_sym_instanceOf] = ACTIONS(2562), - [sym__automatic_semicolon] = ACTIONS(2564), - [sym__ternary_qmark] = ACTIONS(2564), - [sym__elvis_operator] = ACTIONS(2564), - [sym_logical_or] = ACTIONS(2564), - [sym_tag_linefeed] = ACTIONS(2564), - }, - [STATE(2926)] = { - [sym_identifier] = ACTIONS(2574), - [anon_sym_DOT] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2574), - [sym_optional_chain] = ACTIONS(2576), - [sym_static_chain] = ACTIONS(2576), - [anon_sym_AMP_AMP] = ACTIONS(2576), - [anon_sym_PIPE_PIPE] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2574), - [anon_sym_GT_GT_GT] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_CARET] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2576), - [anon_sym_BSLASH] = ACTIONS(2574), - [anon_sym_STAR_STAR] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2576), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2576), - [anon_sym_LT_GT] = ACTIONS(2576), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2576), - [aux_sym_binary_expression_token1] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2576), - [anon_sym_GT] = ACTIONS(2574), - [aux_sym_binary_expression_token2] = ACTIONS(2574), - [aux_sym_binary_expression_token3] = ACTIONS(2574), - [aux_sym_binary_expression_token4] = ACTIONS(2576), - [aux_sym_binary_expression_token5] = ACTIONS(2576), - [aux_sym_binary_expression_token6] = ACTIONS(2576), - [anon_sym_QMARK_QMARK] = ACTIONS(2576), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [anon_sym_IN] = ACTIONS(2574), - [anon_sym_InstanceOf] = ACTIONS(2574), - [anon_sym_instanceof] = ACTIONS(2574), - [anon_sym_INSTANCEOF] = ACTIONS(2574), - [anon_sym_instanceOf] = ACTIONS(2574), - [sym__automatic_semicolon] = ACTIONS(2576), - [sym__ternary_qmark] = ACTIONS(2576), - [sym__elvis_operator] = ACTIONS(2576), - [sym_logical_or] = ACTIONS(2576), - [sym_tag_linefeed] = ACTIONS(2576), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2927)] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_DOT] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_RPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2518), - [sym_optional_chain] = ACTIONS(2520), - [sym_static_chain] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_GT_GT_GT] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_BSLASH] = ACTIONS(2518), - [anon_sym_STAR_STAR] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2520), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2520), - [anon_sym_LT_GT] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2520), - [aux_sym_binary_expression_token1] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [aux_sym_binary_expression_token2] = ACTIONS(2518), - [aux_sym_binary_expression_token3] = ACTIONS(2518), - [aux_sym_binary_expression_token4] = ACTIONS(2520), - [aux_sym_binary_expression_token5] = ACTIONS(2520), - [aux_sym_binary_expression_token6] = ACTIONS(2520), - [anon_sym_QMARK_QMARK] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2518), - [anon_sym_in] = ACTIONS(2518), - [anon_sym_IN] = ACTIONS(2518), - [anon_sym_InstanceOf] = ACTIONS(2518), - [anon_sym_instanceof] = ACTIONS(2518), - [anon_sym_INSTANCEOF] = ACTIONS(2518), - [anon_sym_instanceOf] = ACTIONS(2518), - [sym__ternary_qmark] = ACTIONS(2520), - [sym__elvis_operator] = ACTIONS(2520), - [sym_logical_or] = ACTIONS(2520), - [sym__parameter_separator] = ACTIONS(2520), + [STATE(2993)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2928)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym_tag_linefeed] = ACTIONS(2240), + [STATE(2994)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2929)] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_COMMA] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2522), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2524), - [anon_sym_BSLASH] = ACTIONS(2522), - [anon_sym_STAR_STAR] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2524), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2524), - [anon_sym_LT_GT] = ACTIONS(2524), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2524), - [aux_sym_binary_expression_token1] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2522), - [aux_sym_binary_expression_token2] = ACTIONS(2522), - [aux_sym_binary_expression_token3] = ACTIONS(2522), - [aux_sym_binary_expression_token4] = ACTIONS(2524), - [aux_sym_binary_expression_token5] = ACTIONS(2524), - [aux_sym_binary_expression_token6] = ACTIONS(2524), - [anon_sym_QMARK_QMARK] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_IN] = ACTIONS(2522), - [anon_sym_InstanceOf] = ACTIONS(2522), - [anon_sym_instanceof] = ACTIONS(2522), - [anon_sym_INSTANCEOF] = ACTIONS(2522), - [anon_sym_instanceOf] = ACTIONS(2522), - [sym__ternary_qmark] = ACTIONS(2524), - [sym__elvis_operator] = ACTIONS(2524), - [sym_logical_or] = ACTIONS(2524), - [sym__parameter_separator] = ACTIONS(2524), + [STATE(2995)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2930)] = { - [sym_identifier] = ACTIONS(2526), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_COMMA] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2526), - [sym_optional_chain] = ACTIONS(2528), - [sym_static_chain] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_GT_GT_GT] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_BSLASH] = ACTIONS(2526), - [anon_sym_STAR_STAR] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2528), - [anon_sym_LT_GT] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2528), - [aux_sym_binary_expression_token1] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [aux_sym_binary_expression_token2] = ACTIONS(2526), - [aux_sym_binary_expression_token3] = ACTIONS(2526), - [aux_sym_binary_expression_token4] = ACTIONS(2528), - [aux_sym_binary_expression_token5] = ACTIONS(2528), - [aux_sym_binary_expression_token6] = ACTIONS(2528), - [anon_sym_QMARK_QMARK] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2526), - [anon_sym_in] = ACTIONS(2526), - [anon_sym_IN] = ACTIONS(2526), - [anon_sym_InstanceOf] = ACTIONS(2526), - [anon_sym_instanceof] = ACTIONS(2526), - [anon_sym_INSTANCEOF] = ACTIONS(2526), - [anon_sym_instanceOf] = ACTIONS(2526), - [sym__ternary_qmark] = ACTIONS(2528), - [sym__elvis_operator] = ACTIONS(2528), - [sym_logical_or] = ACTIONS(2528), - [sym__parameter_separator] = ACTIONS(2528), + [STATE(2996)] = { + [sym_identifier] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_RPAREN] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2412), + [sym_optional_chain] = ACTIONS(2414), + [sym_static_chain] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_BSLASH] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_LT_GT] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [aux_sym_binary_expression_token1] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [aux_sym_binary_expression_token2] = ACTIONS(2412), + [aux_sym_binary_expression_token3] = ACTIONS(2412), + [aux_sym_binary_expression_token4] = ACTIONS(2414), + [aux_sym_binary_expression_token5] = ACTIONS(2414), + [aux_sym_binary_expression_token6] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_IN] = ACTIONS(2412), + [anon_sym_InstanceOf] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_INSTANCEOF] = ACTIONS(2412), + [anon_sym_instanceOf] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2414), + [sym__elvis_operator] = ACTIONS(2414), + [sym_logical_or] = ACTIONS(2414), + [sym__parameter_separator] = ACTIONS(2414), }, - [STATE(2931)] = { - [sym_identifier] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), - [sym_optional_chain] = ACTIONS(2334), - [sym_static_chain] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_BSLASH] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), - [anon_sym_LT_GT] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), - [aux_sym_binary_expression_token1] = ACTIONS(2334), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [aux_sym_binary_expression_token2] = ACTIONS(2332), - [aux_sym_binary_expression_token3] = ACTIONS(2332), - [aux_sym_binary_expression_token4] = ACTIONS(2334), - [aux_sym_binary_expression_token5] = ACTIONS(2334), - [aux_sym_binary_expression_token6] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), + [STATE(2997)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_IN] = ACTIONS(2332), - [anon_sym_InstanceOf] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_INSTANCEOF] = ACTIONS(2332), - [anon_sym_instanceOf] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2334), - [sym__ternary_qmark] = ACTIONS(2334), - [sym__elvis_operator] = ACTIONS(2334), - [sym_logical_or] = ACTIONS(2334), - [sym_tag_linefeed] = ACTIONS(2334), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2932)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(6051), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(2998)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2933)] = { - [sym_identifier] = ACTIONS(2530), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_COMMA] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_RPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2530), - [sym_optional_chain] = ACTIONS(2532), - [sym_static_chain] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_BSLASH] = ACTIONS(2530), - [anon_sym_STAR_STAR] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2532), - [anon_sym_LT_GT] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2532), - [aux_sym_binary_expression_token1] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2530), - [aux_sym_binary_expression_token2] = ACTIONS(2530), - [aux_sym_binary_expression_token3] = ACTIONS(2530), - [aux_sym_binary_expression_token4] = ACTIONS(2532), - [aux_sym_binary_expression_token5] = ACTIONS(2532), - [aux_sym_binary_expression_token6] = ACTIONS(2532), - [anon_sym_QMARK_QMARK] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2530), - [anon_sym_in] = ACTIONS(2530), - [anon_sym_IN] = ACTIONS(2530), - [anon_sym_InstanceOf] = ACTIONS(2530), - [anon_sym_instanceof] = ACTIONS(2530), - [anon_sym_INSTANCEOF] = ACTIONS(2530), - [anon_sym_instanceOf] = ACTIONS(2530), - [sym__ternary_qmark] = ACTIONS(2532), - [sym__elvis_operator] = ACTIONS(2532), - [sym_logical_or] = ACTIONS(2532), - [sym__parameter_separator] = ACTIONS(2532), + [STATE(2999)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2934)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_RPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2442), - [sym_optional_chain] = ACTIONS(2444), - [sym_static_chain] = ACTIONS(2444), - [anon_sym_AMP_AMP] = ACTIONS(2444), - [anon_sym_PIPE_PIPE] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_BSLASH] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2444), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), - [anon_sym_LT_GT] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), - [aux_sym_binary_expression_token1] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2442), - [aux_sym_binary_expression_token2] = ACTIONS(2442), - [aux_sym_binary_expression_token3] = ACTIONS(2442), - [aux_sym_binary_expression_token4] = ACTIONS(2444), - [aux_sym_binary_expression_token5] = ACTIONS(2444), - [aux_sym_binary_expression_token6] = ACTIONS(2444), - [anon_sym_QMARK_QMARK] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_IN] = ACTIONS(2442), - [anon_sym_InstanceOf] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_INSTANCEOF] = ACTIONS(2442), - [anon_sym_instanceOf] = ACTIONS(2442), - [sym__ternary_qmark] = ACTIONS(2444), - [sym__elvis_operator] = ACTIONS(2444), - [sym_logical_or] = ACTIONS(2444), - [sym__parameter_separator] = ACTIONS(2444), + [STATE(3000)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2935)] = { - [sym_identifier] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(6054), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(3001)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - }, - [STATE(2936)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6056), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2937)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6058), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(2938)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6060), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2939)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_RPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2308), - [sym_optional_chain] = ACTIONS(2310), - [sym_static_chain] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_BSLASH] = ACTIONS(2308), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_LT_GT] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [aux_sym_binary_expression_token1] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [aux_sym_binary_expression_token2] = ACTIONS(2308), - [aux_sym_binary_expression_token3] = ACTIONS(2308), - [aux_sym_binary_expression_token4] = ACTIONS(2310), - [aux_sym_binary_expression_token5] = ACTIONS(2310), - [aux_sym_binary_expression_token6] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2308), - [anon_sym_IN] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(2308), - [anon_sym_instanceof] = ACTIONS(2308), - [anon_sym_INSTANCEOF] = ACTIONS(2308), - [anon_sym_instanceOf] = ACTIONS(2308), - [sym__ternary_qmark] = ACTIONS(2310), - [sym__elvis_operator] = ACTIONS(2310), - [sym_logical_or] = ACTIONS(2310), - [sym__parameter_separator] = ACTIONS(2310), + [STATE(3002)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2940)] = { - [sym_identifier] = ACTIONS(2534), - [anon_sym_DOT] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_COMMA] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_RPAREN] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2534), - [sym_optional_chain] = ACTIONS(2536), - [sym_static_chain] = ACTIONS(2536), - [anon_sym_AMP_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2534), - [anon_sym_GT_GT_GT] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_BSLASH] = ACTIONS(2534), - [anon_sym_STAR_STAR] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_LT_EQ] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2536), - [anon_sym_LT_GT] = ACTIONS(2536), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2536), - [aux_sym_binary_expression_token1] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2534), - [aux_sym_binary_expression_token2] = ACTIONS(2534), - [aux_sym_binary_expression_token3] = ACTIONS(2534), - [aux_sym_binary_expression_token4] = ACTIONS(2536), - [aux_sym_binary_expression_token5] = ACTIONS(2536), - [aux_sym_binary_expression_token6] = ACTIONS(2536), - [anon_sym_QMARK_QMARK] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2534), - [anon_sym_in] = ACTIONS(2534), - [anon_sym_IN] = ACTIONS(2534), - [anon_sym_InstanceOf] = ACTIONS(2534), - [anon_sym_instanceof] = ACTIONS(2534), - [anon_sym_INSTANCEOF] = ACTIONS(2534), - [anon_sym_instanceOf] = ACTIONS(2534), - [sym__ternary_qmark] = ACTIONS(2536), - [sym__elvis_operator] = ACTIONS(2536), - [sym_logical_or] = ACTIONS(2536), - [sym__parameter_separator] = ACTIONS(2536), + [STATE(3003)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(2941)] = { - [sym_identifier] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_RPAREN] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2538), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2538), - [anon_sym_instanceof] = ACTIONS(2538), - [anon_sym_INSTANCEOF] = ACTIONS(2538), - [anon_sym_instanceOf] = ACTIONS(2538), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), - [sym__parameter_separator] = ACTIONS(2540), + [STATE(3004)] = { + [sym_identifier] = ACTIONS(2576), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(5908), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(5912), + [sym__elvis_operator] = ACTIONS(5914), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2578), }, - [STATE(2942)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(6062), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(3005)] = { + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5872), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5874), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5876), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5880), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5884), + [anon_sym_PIPE_PIPE] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(5892), + [anon_sym_CARET] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5896), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(5880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_GT] = ACTIONS(5906), + [anon_sym_BANG_EQ] = ACTIONS(5880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [aux_sym_binary_expression_token1] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(5906), + [anon_sym_QMARK_QMARK] = ACTIONS(5908), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(5912), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(5886), + [sym_tag_linefeed] = ACTIONS(2586), }, - [STATE(2943)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2418), - [sym_optional_chain] = ACTIONS(2420), - [sym_static_chain] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2420), - [anon_sym_BSLASH] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), - [anon_sym_LT_GT] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), - [aux_sym_binary_expression_token1] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_GT] = ACTIONS(2418), - [aux_sym_binary_expression_token2] = ACTIONS(2418), - [aux_sym_binary_expression_token3] = ACTIONS(2418), - [aux_sym_binary_expression_token4] = ACTIONS(2420), - [aux_sym_binary_expression_token5] = ACTIONS(2420), - [aux_sym_binary_expression_token6] = ACTIONS(2420), - [anon_sym_QMARK_QMARK] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_IN] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_INSTANCEOF] = ACTIONS(2418), - [anon_sym_instanceOf] = ACTIONS(2418), - [sym__ternary_qmark] = ACTIONS(2420), - [sym__elvis_operator] = ACTIONS(2420), - [sym_logical_or] = ACTIONS(2420), - [sym__parameter_separator] = ACTIONS(2420), + [STATE(3006)] = { + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2320), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2320), + [anon_sym_instanceof] = ACTIONS(2320), + [anon_sym_INSTANCEOF] = ACTIONS(2320), + [anon_sym_instanceOf] = ACTIONS(2320), + [sym__automatic_semicolon] = ACTIONS(5550), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), }, - [STATE(2944)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), + [STATE(3007)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4759), + [aux_sym_object_pattern_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(2141), [anon_sym_COMMA] = ACTIONS(117), [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2945)] = { - [sym_identifier] = ACTIONS(2542), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_COMMA] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2542), - [sym_optional_chain] = ACTIONS(2544), - [sym_static_chain] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2544), - [anon_sym_BSLASH] = ACTIONS(2542), - [anon_sym_STAR_STAR] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2544), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2544), - [anon_sym_LT_GT] = ACTIONS(2544), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2544), - [aux_sym_binary_expression_token1] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2544), - [anon_sym_GT] = ACTIONS(2542), - [aux_sym_binary_expression_token2] = ACTIONS(2542), - [aux_sym_binary_expression_token3] = ACTIONS(2542), - [aux_sym_binary_expression_token4] = ACTIONS(2544), - [aux_sym_binary_expression_token5] = ACTIONS(2544), - [aux_sym_binary_expression_token6] = ACTIONS(2544), - [anon_sym_QMARK_QMARK] = ACTIONS(2544), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_IN] = ACTIONS(2542), - [anon_sym_InstanceOf] = ACTIONS(2542), - [anon_sym_instanceof] = ACTIONS(2542), - [anon_sym_INSTANCEOF] = ACTIONS(2542), - [anon_sym_instanceOf] = ACTIONS(2542), - [sym__ternary_qmark] = ACTIONS(2544), - [sym__elvis_operator] = ACTIONS(2544), - [sym_logical_or] = ACTIONS(2544), - [sym__parameter_separator] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2946)] = { + [STATE(3008)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -402223,589 +408626,660 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(509), [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2947)] = { - [sym_identifier] = ACTIONS(2546), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2546), - [sym_optional_chain] = ACTIONS(2548), - [sym_static_chain] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_GT_GT] = ACTIONS(2546), - [anon_sym_GT_GT_GT] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_BSLASH] = ACTIONS(2546), - [anon_sym_STAR_STAR] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_LT_EQ] = ACTIONS(2548), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2548), - [anon_sym_LT_GT] = ACTIONS(2548), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2548), - [aux_sym_binary_expression_token1] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(2546), - [aux_sym_binary_expression_token2] = ACTIONS(2546), - [aux_sym_binary_expression_token3] = ACTIONS(2546), - [aux_sym_binary_expression_token4] = ACTIONS(2548), - [aux_sym_binary_expression_token5] = ACTIONS(2548), - [aux_sym_binary_expression_token6] = ACTIONS(2548), - [anon_sym_QMARK_QMARK] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2546), - [anon_sym_in] = ACTIONS(2546), - [anon_sym_IN] = ACTIONS(2546), - [anon_sym_InstanceOf] = ACTIONS(2546), - [anon_sym_instanceof] = ACTIONS(2546), - [anon_sym_INSTANCEOF] = ACTIONS(2546), - [anon_sym_instanceOf] = ACTIONS(2546), - [sym__ternary_qmark] = ACTIONS(2548), - [sym__elvis_operator] = ACTIONS(2548), - [sym_logical_or] = ACTIONS(2548), - [sym__parameter_separator] = ACTIONS(2548), + [STATE(3009)] = { + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_RPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2468), + [sym_optional_chain] = ACTIONS(2470), + [sym_static_chain] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_BSLASH] = ACTIONS(2468), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_LT_GT] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [aux_sym_binary_expression_token1] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [aux_sym_binary_expression_token2] = ACTIONS(2468), + [aux_sym_binary_expression_token3] = ACTIONS(2468), + [aux_sym_binary_expression_token4] = ACTIONS(2470), + [aux_sym_binary_expression_token5] = ACTIONS(2470), + [aux_sym_binary_expression_token6] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2468), + [anon_sym_IN] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(2468), + [anon_sym_instanceof] = ACTIONS(2468), + [anon_sym_INSTANCEOF] = ACTIONS(2468), + [anon_sym_instanceOf] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2470), + [sym__elvis_operator] = ACTIONS(2470), + [sym_logical_or] = ACTIONS(2470), + [sym__parameter_separator] = ACTIONS(2470), }, - [STATE(2948)] = { - [sym_identifier] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_COMMA] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2550), - [sym_optional_chain] = ACTIONS(2552), - [sym_static_chain] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2550), - [anon_sym_GT_GT_GT] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_CARET] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_STAR_STAR] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_LT_EQ] = ACTIONS(2552), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2552), - [anon_sym_LT_GT] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2552), - [aux_sym_binary_expression_token1] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2550), - [aux_sym_binary_expression_token2] = ACTIONS(2550), - [aux_sym_binary_expression_token3] = ACTIONS(2550), - [aux_sym_binary_expression_token4] = ACTIONS(2552), - [aux_sym_binary_expression_token5] = ACTIONS(2552), - [aux_sym_binary_expression_token6] = ACTIONS(2552), - [anon_sym_QMARK_QMARK] = ACTIONS(2552), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_IN] = ACTIONS(2550), - [anon_sym_InstanceOf] = ACTIONS(2550), - [anon_sym_instanceof] = ACTIONS(2550), - [anon_sym_INSTANCEOF] = ACTIONS(2550), - [anon_sym_instanceOf] = ACTIONS(2550), - [sym__ternary_qmark] = ACTIONS(2552), - [sym__elvis_operator] = ACTIONS(2552), - [sym_logical_or] = ACTIONS(2552), - [sym__parameter_separator] = ACTIONS(2552), + [STATE(3010)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_RPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2586), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(2949)] = { - [sym_identifier] = ACTIONS(2554), - [anon_sym_DOT] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_COMMA] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_RPAREN] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2554), - [sym_optional_chain] = ACTIONS(2556), - [sym_static_chain] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2554), - [anon_sym_GT_GT_GT] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2556), - [anon_sym_BSLASH] = ACTIONS(2554), - [anon_sym_STAR_STAR] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2556), - [anon_sym_LT_GT] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2556), - [aux_sym_binary_expression_token1] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2554), - [aux_sym_binary_expression_token2] = ACTIONS(2554), - [aux_sym_binary_expression_token3] = ACTIONS(2554), - [aux_sym_binary_expression_token4] = ACTIONS(2556), - [aux_sym_binary_expression_token5] = ACTIONS(2556), - [aux_sym_binary_expression_token6] = ACTIONS(2556), - [anon_sym_QMARK_QMARK] = ACTIONS(2556), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [anon_sym_IN] = ACTIONS(2554), - [anon_sym_InstanceOf] = ACTIONS(2554), - [anon_sym_instanceof] = ACTIONS(2554), - [anon_sym_INSTANCEOF] = ACTIONS(2554), - [anon_sym_instanceOf] = ACTIONS(2554), - [sym__ternary_qmark] = ACTIONS(2556), - [sym__elvis_operator] = ACTIONS(2556), - [sym_logical_or] = ACTIONS(2556), - [sym__parameter_separator] = ACTIONS(2556), + [STATE(3011)] = { + [sym_arguments] = STATE(3085), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), }, - [STATE(2950)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(6064), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_tag_linefeed] = ACTIONS(1684), + [STATE(3012)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6118), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6118), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2951)] = { - [sym_identifier] = ACTIONS(2316), - [anon_sym_DOT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2316), - [sym_optional_chain] = ACTIONS(2318), - [sym_static_chain] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_BSLASH] = ACTIONS(2316), - [anon_sym_STAR_STAR] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2316), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), - [anon_sym_LT_GT] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2316), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), - [aux_sym_binary_expression_token1] = ACTIONS(2318), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [aux_sym_binary_expression_token2] = ACTIONS(2316), - [aux_sym_binary_expression_token3] = ACTIONS(2316), - [aux_sym_binary_expression_token4] = ACTIONS(2318), - [aux_sym_binary_expression_token5] = ACTIONS(2318), - [aux_sym_binary_expression_token6] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2316), - [anon_sym_in] = ACTIONS(2316), - [anon_sym_IN] = ACTIONS(2316), - [anon_sym_InstanceOf] = ACTIONS(2316), - [anon_sym_instanceof] = ACTIONS(2316), - [anon_sym_INSTANCEOF] = ACTIONS(2316), - [anon_sym_instanceOf] = ACTIONS(2316), - [sym__automatic_semicolon] = ACTIONS(2318), - [sym__ternary_qmark] = ACTIONS(2318), - [sym__elvis_operator] = ACTIONS(2318), - [sym_logical_or] = ACTIONS(2318), - [sym_tag_linefeed] = ACTIONS(2318), + [STATE(3013)] = { + [sym_identifier] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2488), + [sym_optional_chain] = ACTIONS(2490), + [sym_static_chain] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_BSLASH] = ACTIONS(2488), + [anon_sym_STAR_STAR] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2490), + [anon_sym_LT_GT] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2490), + [aux_sym_binary_expression_token1] = ACTIONS(2490), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [aux_sym_binary_expression_token2] = ACTIONS(2488), + [aux_sym_binary_expression_token3] = ACTIONS(2488), + [aux_sym_binary_expression_token4] = ACTIONS(2490), + [aux_sym_binary_expression_token5] = ACTIONS(2490), + [aux_sym_binary_expression_token6] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2488), + [anon_sym_in] = ACTIONS(2488), + [anon_sym_IN] = ACTIONS(2488), + [anon_sym_InstanceOf] = ACTIONS(2488), + [anon_sym_instanceof] = ACTIONS(2488), + [anon_sym_INSTANCEOF] = ACTIONS(2488), + [anon_sym_instanceOf] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(2490), + [sym__ternary_qmark] = ACTIONS(2490), + [sym__elvis_operator] = ACTIONS(2490), + [sym_logical_or] = ACTIONS(2490), + [sym_tag_linefeed] = ACTIONS(2490), }, - [STATE(2952)] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2336), - [sym_optional_chain] = ACTIONS(2338), - [sym_static_chain] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_BSLASH] = ACTIONS(2336), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2336), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_LT_GT] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2336), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [aux_sym_binary_expression_token1] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [aux_sym_binary_expression_token2] = ACTIONS(2336), - [aux_sym_binary_expression_token3] = ACTIONS(2336), - [aux_sym_binary_expression_token4] = ACTIONS(2338), - [aux_sym_binary_expression_token5] = ACTIONS(2338), - [aux_sym_binary_expression_token6] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_IN] = ACTIONS(2336), - [anon_sym_InstanceOf] = ACTIONS(2336), - [anon_sym_instanceof] = ACTIONS(2336), - [anon_sym_INSTANCEOF] = ACTIONS(2336), - [anon_sym_instanceOf] = ACTIONS(2336), - [sym__automatic_semicolon] = ACTIONS(2338), - [sym__ternary_qmark] = ACTIONS(2338), - [sym__elvis_operator] = ACTIONS(2338), - [sym_logical_or] = ACTIONS(2338), - [sym_tag_linefeed] = ACTIONS(2338), + [STATE(3014)] = { + [sym_identifier] = ACTIONS(2492), + [anon_sym_DOT] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2492), + [sym_optional_chain] = ACTIONS(2494), + [sym_static_chain] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_BSLASH] = ACTIONS(2492), + [anon_sym_STAR_STAR] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2494), + [anon_sym_LT_GT] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2494), + [aux_sym_binary_expression_token1] = ACTIONS(2494), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [aux_sym_binary_expression_token2] = ACTIONS(2492), + [aux_sym_binary_expression_token3] = ACTIONS(2492), + [aux_sym_binary_expression_token4] = ACTIONS(2494), + [aux_sym_binary_expression_token5] = ACTIONS(2494), + [aux_sym_binary_expression_token6] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2492), + [anon_sym_in] = ACTIONS(2492), + [anon_sym_IN] = ACTIONS(2492), + [anon_sym_InstanceOf] = ACTIONS(2492), + [anon_sym_instanceof] = ACTIONS(2492), + [anon_sym_INSTANCEOF] = ACTIONS(2492), + [anon_sym_instanceOf] = ACTIONS(2492), + [sym__automatic_semicolon] = ACTIONS(2494), + [sym__ternary_qmark] = ACTIONS(2494), + [sym__elvis_operator] = ACTIONS(2494), + [sym_logical_or] = ACTIONS(2494), + [sym_tag_linefeed] = ACTIONS(2494), }, - [STATE(2953)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), + [STATE(3015)] = { + [sym_identifier] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_EQ] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2276), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2274), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2274), + [sym_optional_chain] = ACTIONS(2276), + [sym_static_chain] = ACTIONS(2276), + [anon_sym_AMP_AMP] = ACTIONS(2276), + [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2276), + [anon_sym_LT_LT] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_BSLASH] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT_EQ] = ACTIONS(2276), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2276), + [anon_sym_LT_GT] = ACTIONS(2276), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2276), + [aux_sym_binary_expression_token1] = ACTIONS(2276), + [anon_sym_GT_EQ] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2274), + [aux_sym_binary_expression_token2] = ACTIONS(2274), + [aux_sym_binary_expression_token3] = ACTIONS(2274), + [aux_sym_binary_expression_token4] = ACTIONS(2276), + [aux_sym_binary_expression_token5] = ACTIONS(2276), + [aux_sym_binary_expression_token6] = ACTIONS(2276), + [anon_sym_QMARK_QMARK] = ACTIONS(2276), + [anon_sym_PLUS_PLUS] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2276), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym__parameter_separator] = ACTIONS(2286), + [anon_sym_In] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_IN] = ACTIONS(2274), + [anon_sym_InstanceOf] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_INSTANCEOF] = ACTIONS(2274), + [anon_sym_instanceOf] = ACTIONS(2274), + [sym__ternary_qmark] = ACTIONS(2276), + [sym__elvis_operator] = ACTIONS(2276), + [sym_logical_or] = ACTIONS(2276), }, - [STATE(2954)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4575), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(3016)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(5612), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2955)] = { + [STATE(3017)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6121), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3018)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -402866,90 +409340,595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(507), [anon_sym_INSTANCEOF] = ACTIONS(507), [anon_sym_instanceOf] = ACTIONS(507), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(2956)] = { - [sym_identifier] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1083), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1083), - [sym_optional_chain] = ACTIONS(1081), - [sym_static_chain] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_GT_GT] = ACTIONS(1083), - [anon_sym_GT_GT_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1083), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_STAR_STAR] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_EQ_EQ] = ACTIONS(1083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1081), - [anon_sym_LT_GT] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1081), - [aux_sym_binary_expression_token1] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1083), - [aux_sym_binary_expression_token2] = ACTIONS(1083), - [aux_sym_binary_expression_token3] = ACTIONS(1083), - [aux_sym_binary_expression_token4] = ACTIONS(1081), - [aux_sym_binary_expression_token5] = ACTIONS(1081), - [aux_sym_binary_expression_token6] = ACTIONS(1081), - [anon_sym_QMARK_QMARK] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1083), - [anon_sym_in] = ACTIONS(1083), - [anon_sym_IN] = ACTIONS(1083), - [anon_sym_InstanceOf] = ACTIONS(1083), - [anon_sym_instanceof] = ACTIONS(1083), - [anon_sym_INSTANCEOF] = ACTIONS(1083), - [anon_sym_instanceOf] = ACTIONS(1083), - [sym__automatic_semicolon] = ACTIONS(6066), - [sym__ternary_qmark] = ACTIONS(1081), - [sym__elvis_operator] = ACTIONS(1081), - [sym_logical_or] = ACTIONS(1081), - [sym_tag_linefeed] = ACTIONS(1081), + [STATE(3019)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), }, - [STATE(2957)] = { + [STATE(3020)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_RPAREN] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2572), + [sym_optional_chain] = ACTIONS(2574), + [sym_static_chain] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_BSLASH] = ACTIONS(2572), + [anon_sym_STAR_STAR] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2574), + [anon_sym_LT_GT] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2574), + [aux_sym_binary_expression_token1] = ACTIONS(2574), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [aux_sym_binary_expression_token2] = ACTIONS(2572), + [aux_sym_binary_expression_token3] = ACTIONS(2572), + [aux_sym_binary_expression_token4] = ACTIONS(2574), + [aux_sym_binary_expression_token5] = ACTIONS(2574), + [aux_sym_binary_expression_token6] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_IN] = ACTIONS(2572), + [anon_sym_InstanceOf] = ACTIONS(2572), + [anon_sym_instanceof] = ACTIONS(2572), + [anon_sym_INSTANCEOF] = ACTIONS(2572), + [anon_sym_instanceOf] = ACTIONS(2572), + [sym__ternary_qmark] = ACTIONS(2574), + [sym__elvis_operator] = ACTIONS(2574), + [sym_logical_or] = ACTIONS(2574), + [sym__parameter_separator] = ACTIONS(2574), + }, + [STATE(3021)] = { + [sym_identifier] = ACTIONS(2512), + [anon_sym_DOT] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2512), + [sym_optional_chain] = ACTIONS(2514), + [sym_static_chain] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_BSLASH] = ACTIONS(2512), + [anon_sym_STAR_STAR] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2512), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2514), + [anon_sym_LT_GT] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2512), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2514), + [aux_sym_binary_expression_token1] = ACTIONS(2514), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [aux_sym_binary_expression_token2] = ACTIONS(2512), + [aux_sym_binary_expression_token3] = ACTIONS(2512), + [aux_sym_binary_expression_token4] = ACTIONS(2514), + [aux_sym_binary_expression_token5] = ACTIONS(2514), + [aux_sym_binary_expression_token6] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_IN] = ACTIONS(2512), + [anon_sym_InstanceOf] = ACTIONS(2512), + [anon_sym_instanceof] = ACTIONS(2512), + [anon_sym_INSTANCEOF] = ACTIONS(2512), + [anon_sym_instanceOf] = ACTIONS(2512), + [sym__automatic_semicolon] = ACTIONS(2514), + [sym__ternary_qmark] = ACTIONS(2514), + [sym__elvis_operator] = ACTIONS(2514), + [sym_logical_or] = ACTIONS(2514), + [sym_tag_linefeed] = ACTIONS(2514), + }, + [STATE(3022)] = { + [sym_identifier] = ACTIONS(2516), + [anon_sym_DOT] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2516), + [sym_optional_chain] = ACTIONS(2518), + [sym_static_chain] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_BSLASH] = ACTIONS(2516), + [anon_sym_STAR_STAR] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2518), + [anon_sym_LT_GT] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2518), + [aux_sym_binary_expression_token1] = ACTIONS(2518), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [aux_sym_binary_expression_token2] = ACTIONS(2516), + [aux_sym_binary_expression_token3] = ACTIONS(2516), + [aux_sym_binary_expression_token4] = ACTIONS(2518), + [aux_sym_binary_expression_token5] = ACTIONS(2518), + [aux_sym_binary_expression_token6] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_IN] = ACTIONS(2516), + [anon_sym_InstanceOf] = ACTIONS(2516), + [anon_sym_instanceof] = ACTIONS(2516), + [anon_sym_INSTANCEOF] = ACTIONS(2516), + [anon_sym_instanceOf] = ACTIONS(2516), + [sym__automatic_semicolon] = ACTIONS(2518), + [sym__ternary_qmark] = ACTIONS(2518), + [sym__elvis_operator] = ACTIONS(2518), + [sym_logical_or] = ACTIONS(2518), + [sym_tag_linefeed] = ACTIONS(2518), + }, + [STATE(3023)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6123), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3024)] = { + [sym_identifier] = ACTIONS(2520), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2520), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_BSLASH] = ACTIONS(2520), + [anon_sym_STAR_STAR] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2520), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2522), + [anon_sym_LT_GT] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2520), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2522), + [aux_sym_binary_expression_token1] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [aux_sym_binary_expression_token2] = ACTIONS(2520), + [aux_sym_binary_expression_token3] = ACTIONS(2520), + [aux_sym_binary_expression_token4] = ACTIONS(2522), + [aux_sym_binary_expression_token5] = ACTIONS(2522), + [aux_sym_binary_expression_token6] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_IN] = ACTIONS(2520), + [anon_sym_InstanceOf] = ACTIONS(2520), + [anon_sym_instanceof] = ACTIONS(2520), + [anon_sym_INSTANCEOF] = ACTIONS(2520), + [anon_sym_instanceOf] = ACTIONS(2520), + [sym__automatic_semicolon] = ACTIONS(2522), + [sym__ternary_qmark] = ACTIONS(2522), + [sym__elvis_operator] = ACTIONS(2522), + [sym_logical_or] = ACTIONS(2522), + [sym_tag_linefeed] = ACTIONS(2522), + }, + [STATE(3025)] = { + [sym_identifier] = ACTIONS(2524), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2524), + [sym_optional_chain] = ACTIONS(2526), + [sym_static_chain] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_BSLASH] = ACTIONS(2524), + [anon_sym_STAR_STAR] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2526), + [anon_sym_LT_GT] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2526), + [aux_sym_binary_expression_token1] = ACTIONS(2526), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [aux_sym_binary_expression_token2] = ACTIONS(2524), + [aux_sym_binary_expression_token3] = ACTIONS(2524), + [aux_sym_binary_expression_token4] = ACTIONS(2526), + [aux_sym_binary_expression_token5] = ACTIONS(2526), + [aux_sym_binary_expression_token6] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_IN] = ACTIONS(2524), + [anon_sym_InstanceOf] = ACTIONS(2524), + [anon_sym_instanceof] = ACTIONS(2524), + [anon_sym_INSTANCEOF] = ACTIONS(2524), + [anon_sym_instanceOf] = ACTIONS(2524), + [sym__automatic_semicolon] = ACTIONS(2526), + [sym__ternary_qmark] = ACTIONS(2526), + [sym__elvis_operator] = ACTIONS(2526), + [sym_logical_or] = ACTIONS(2526), + [sym_tag_linefeed] = ACTIONS(2526), + }, + [STATE(3026)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6125), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3027)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5270), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), @@ -402999,1397 +409978,605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token3] = ACTIONS(507), [aux_sym_binary_expression_token4] = ACTIONS(509), [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(2958)] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_DOT] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2302), - [anon_sym_EQ] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), - [sym_optional_chain] = ACTIONS(2302), - [sym_static_chain] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_BSLASH] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2300), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_LT_GT] = ACTIONS(2302), - [anon_sym_BANG_EQ] = ACTIONS(2300), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2302), - [aux_sym_binary_expression_token1] = ACTIONS(2302), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2300), - [aux_sym_binary_expression_token2] = ACTIONS(2300), - [aux_sym_binary_expression_token3] = ACTIONS(2300), - [aux_sym_binary_expression_token4] = ACTIONS(2302), - [aux_sym_binary_expression_token5] = ACTIONS(2302), - [aux_sym_binary_expression_token6] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_IN] = ACTIONS(2300), - [anon_sym_InstanceOf] = ACTIONS(2300), - [anon_sym_instanceof] = ACTIONS(2300), - [anon_sym_INSTANCEOF] = ACTIONS(2300), - [anon_sym_instanceOf] = ACTIONS(2300), - [sym__ternary_qmark] = ACTIONS(2302), - [sym__elvis_operator] = ACTIONS(2302), - [sym_logical_or] = ACTIONS(2302), - }, - [STATE(2959)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_RPAREN] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym__parameter_separator] = ACTIONS(1684), - }, - [STATE(2960)] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym__parameter_separator] = ACTIONS(2347), - }, - [STATE(2961)] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym__parameter_separator] = ACTIONS(2353), - }, - [STATE(2962)] = { - [sym_identifier] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym__parameter_separator] = ACTIONS(2436), - }, - [STATE(2963)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5732), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2964)] = { - [sym_identifier] = ACTIONS(2278), - [anon_sym_DOT] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_COMMA] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2278), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2278), - [sym_optional_chain] = ACTIONS(2280), - [sym_static_chain] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_GT_GT_GT] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_CARET] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_BSLASH] = ACTIONS(2278), - [anon_sym_STAR_STAR] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_LT_EQ] = ACTIONS(2280), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2280), - [anon_sym_LT_GT] = ACTIONS(2280), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2280), - [aux_sym_binary_expression_token1] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), - [aux_sym_binary_expression_token2] = ACTIONS(2278), - [aux_sym_binary_expression_token3] = ACTIONS(2278), - [aux_sym_binary_expression_token4] = ACTIONS(2280), - [aux_sym_binary_expression_token5] = ACTIONS(2280), - [aux_sym_binary_expression_token6] = ACTIONS(2280), - [anon_sym_QMARK_QMARK] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2278), - [anon_sym_in] = ACTIONS(2278), - [anon_sym_IN] = ACTIONS(2278), - [anon_sym_InstanceOf] = ACTIONS(2278), - [anon_sym_instanceof] = ACTIONS(2278), - [anon_sym_INSTANCEOF] = ACTIONS(2278), - [anon_sym_instanceOf] = ACTIONS(2278), - [sym__ternary_qmark] = ACTIONS(2280), - [sym__elvis_operator] = ACTIONS(2280), - [sym_logical_or] = ACTIONS(2280), - }, - [STATE(2965)] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2312), - [sym_optional_chain] = ACTIONS(2314), - [sym_static_chain] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_BSLASH] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_LT_GT] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [aux_sym_binary_expression_token1] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [aux_sym_binary_expression_token2] = ACTIONS(2312), - [aux_sym_binary_expression_token3] = ACTIONS(2312), - [aux_sym_binary_expression_token4] = ACTIONS(2314), - [aux_sym_binary_expression_token5] = ACTIONS(2314), - [aux_sym_binary_expression_token6] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2312), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_IN] = ACTIONS(2312), - [anon_sym_InstanceOf] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_INSTANCEOF] = ACTIONS(2312), - [anon_sym_instanceOf] = ACTIONS(2312), - [sym__automatic_semicolon] = ACTIONS(2314), - [sym__ternary_qmark] = ACTIONS(2314), - [sym__elvis_operator] = ACTIONS(2314), - [sym_logical_or] = ACTIONS(2314), - [sym_tag_linefeed] = ACTIONS(2314), - }, - [STATE(2966)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4627), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2967)] = { - [sym_identifier] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_COMMA] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_INSTANCEOF] = ACTIONS(1672), - [anon_sym_instanceOf] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - [sym__parameter_separator] = ACTIONS(1670), - }, - [STATE(2968)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5750), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2969)] = { - [sym_identifier] = ACTIONS(2244), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2244), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2244), - [anon_sym_instanceof] = ACTIONS(2244), - [anon_sym_INSTANCEOF] = ACTIONS(2244), - [anon_sym_instanceOf] = ACTIONS(2244), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), - [sym_tag_linefeed] = ACTIONS(2246), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, - [STATE(2970)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5758), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(3028)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6127), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6127), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2971)] = { - [sym_identifier] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_COMMA] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_RPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym__parameter_separator] = ACTIONS(2440), + [STATE(3029)] = { + [sym_identifier] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_COMMA] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_RPAREN] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2488), + [sym_optional_chain] = ACTIONS(2490), + [sym_static_chain] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_BSLASH] = ACTIONS(2488), + [anon_sym_STAR_STAR] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2490), + [anon_sym_LT_GT] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2490), + [aux_sym_binary_expression_token1] = ACTIONS(2490), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [aux_sym_binary_expression_token2] = ACTIONS(2488), + [aux_sym_binary_expression_token3] = ACTIONS(2488), + [aux_sym_binary_expression_token4] = ACTIONS(2490), + [aux_sym_binary_expression_token5] = ACTIONS(2490), + [aux_sym_binary_expression_token6] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2488), + [anon_sym_in] = ACTIONS(2488), + [anon_sym_IN] = ACTIONS(2488), + [anon_sym_InstanceOf] = ACTIONS(2488), + [anon_sym_instanceof] = ACTIONS(2488), + [anon_sym_INSTANCEOF] = ACTIONS(2488), + [anon_sym_instanceOf] = ACTIONS(2488), + [sym__ternary_qmark] = ACTIONS(2490), + [sym__elvis_operator] = ACTIONS(2490), + [sym_logical_or] = ACTIONS(2490), + [sym__parameter_separator] = ACTIONS(2490), }, - [STATE(2972)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_RPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym__parameter_separator] = ACTIONS(2444), + [STATE(3030)] = { + [sym_identifier] = ACTIONS(2492), + [anon_sym_DOT] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_COMMA] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_RPAREN] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2492), + [sym_optional_chain] = ACTIONS(2494), + [sym_static_chain] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_BSLASH] = ACTIONS(2492), + [anon_sym_STAR_STAR] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2494), + [anon_sym_LT_GT] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2494), + [aux_sym_binary_expression_token1] = ACTIONS(2494), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [aux_sym_binary_expression_token2] = ACTIONS(2492), + [aux_sym_binary_expression_token3] = ACTIONS(2492), + [aux_sym_binary_expression_token4] = ACTIONS(2494), + [aux_sym_binary_expression_token5] = ACTIONS(2494), + [aux_sym_binary_expression_token6] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2492), + [anon_sym_in] = ACTIONS(2492), + [anon_sym_IN] = ACTIONS(2492), + [anon_sym_InstanceOf] = ACTIONS(2492), + [anon_sym_instanceof] = ACTIONS(2492), + [anon_sym_INSTANCEOF] = ACTIONS(2492), + [anon_sym_instanceOf] = ACTIONS(2492), + [sym__ternary_qmark] = ACTIONS(2494), + [sym__elvis_operator] = ACTIONS(2494), + [sym_logical_or] = ACTIONS(2494), + [sym__parameter_separator] = ACTIONS(2494), }, - [STATE(2973)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4610), - [aux_sym_object_pattern_repeat1] = STATE(4612), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(3031)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6129), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2974)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(3032)] = { + [sym_identifier] = ACTIONS(2496), + [anon_sym_DOT] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_RPAREN] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2496), + [sym_optional_chain] = ACTIONS(2498), + [sym_static_chain] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_BSLASH] = ACTIONS(2496), + [anon_sym_STAR_STAR] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), + [anon_sym_LT_GT] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), + [aux_sym_binary_expression_token1] = ACTIONS(2498), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [aux_sym_binary_expression_token2] = ACTIONS(2496), + [aux_sym_binary_expression_token3] = ACTIONS(2496), + [aux_sym_binary_expression_token4] = ACTIONS(2498), + [aux_sym_binary_expression_token5] = ACTIONS(2498), + [aux_sym_binary_expression_token6] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2496), + [anon_sym_in] = ACTIONS(2496), + [anon_sym_IN] = ACTIONS(2496), + [anon_sym_InstanceOf] = ACTIONS(2496), + [anon_sym_instanceof] = ACTIONS(2496), + [anon_sym_INSTANCEOF] = ACTIONS(2496), + [anon_sym_instanceOf] = ACTIONS(2496), + [sym__ternary_qmark] = ACTIONS(2498), + [sym__elvis_operator] = ACTIONS(2498), + [sym_logical_or] = ACTIONS(2498), + [sym__parameter_separator] = ACTIONS(2498), }, - [STATE(2975)] = { - [sym_identifier] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_EQ] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2296), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2296), - [sym_optional_chain] = ACTIONS(2298), - [sym_static_chain] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_BSLASH] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), - [anon_sym_LT_GT] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), - [aux_sym_binary_expression_token1] = ACTIONS(2298), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [aux_sym_binary_expression_token2] = ACTIONS(2296), - [aux_sym_binary_expression_token3] = ACTIONS(2296), - [aux_sym_binary_expression_token4] = ACTIONS(2298), - [aux_sym_binary_expression_token5] = ACTIONS(2298), - [aux_sym_binary_expression_token6] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_IN] = ACTIONS(2296), - [anon_sym_InstanceOf] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_INSTANCEOF] = ACTIONS(2296), - [anon_sym_instanceOf] = ACTIONS(2296), - [sym__ternary_qmark] = ACTIONS(2298), - [sym__elvis_operator] = ACTIONS(2298), - [sym_logical_or] = ACTIONS(2298), - [sym_tag_linefeed] = ACTIONS(2298), + [STATE(3033)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(6132), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(6132), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(2976)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4558), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), + [STATE(3034)] = { + [sym_identifier] = ACTIONS(2500), + [anon_sym_DOT] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_COMMA] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_RPAREN] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2500), + [sym_optional_chain] = ACTIONS(2502), + [sym_static_chain] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(2500), + [anon_sym_STAR_STAR] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2500), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), + [anon_sym_LT_GT] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2500), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), + [aux_sym_binary_expression_token1] = ACTIONS(2502), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [aux_sym_binary_expression_token2] = ACTIONS(2500), + [aux_sym_binary_expression_token3] = ACTIONS(2500), + [aux_sym_binary_expression_token4] = ACTIONS(2502), + [aux_sym_binary_expression_token5] = ACTIONS(2502), + [aux_sym_binary_expression_token6] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2500), + [anon_sym_in] = ACTIONS(2500), + [anon_sym_IN] = ACTIONS(2500), + [anon_sym_InstanceOf] = ACTIONS(2500), + [anon_sym_instanceof] = ACTIONS(2500), + [anon_sym_INSTANCEOF] = ACTIONS(2500), + [anon_sym_instanceOf] = ACTIONS(2500), + [sym__ternary_qmark] = ACTIONS(2502), + [sym__elvis_operator] = ACTIONS(2502), + [sym_logical_or] = ACTIONS(2502), + [sym__parameter_separator] = ACTIONS(2502), + }, + [STATE(3035)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5766), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2977)] = { + [STATE(3036)] = { [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(6068), + [anon_sym_RPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -404453,1744 +410640,1025 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), - }, - [STATE(2978)] = { - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2254), - [sym_static_chain] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - [sym__parameter_separator] = ACTIONS(2254), - }, - [STATE(2979)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5778), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2980)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_RPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2462), - [sym_optional_chain] = ACTIONS(2464), - [sym_static_chain] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_GT_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_BSLASH] = ACTIONS(2462), - [anon_sym_STAR_STAR] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_LT_EQ] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_LT_GT] = ACTIONS(2464), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2464), - [aux_sym_binary_expression_token1] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2462), - [aux_sym_binary_expression_token2] = ACTIONS(2462), - [aux_sym_binary_expression_token3] = ACTIONS(2462), - [aux_sym_binary_expression_token4] = ACTIONS(2464), - [aux_sym_binary_expression_token5] = ACTIONS(2464), - [aux_sym_binary_expression_token6] = ACTIONS(2464), - [anon_sym_QMARK_QMARK] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [anon_sym_IN] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(2462), - [anon_sym_instanceof] = ACTIONS(2462), - [anon_sym_INSTANCEOF] = ACTIONS(2462), - [anon_sym_instanceOf] = ACTIONS(2462), - [sym__ternary_qmark] = ACTIONS(2464), - [sym__elvis_operator] = ACTIONS(2464), - [sym_logical_or] = ACTIONS(2464), - [sym__parameter_separator] = ACTIONS(2464), + [sym__parameter_separator] = ACTIONS(509), }, - [STATE(2981)] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__automatic_semicolon] = ACTIONS(1085), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_tag_linefeed] = ACTIONS(1085), + [STATE(3037)] = { + [sym_identifier] = ACTIONS(2536), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2536), + [sym_optional_chain] = ACTIONS(2538), + [sym_static_chain] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_BSLASH] = ACTIONS(2536), + [anon_sym_STAR_STAR] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2538), + [anon_sym_LT_GT] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2538), + [aux_sym_binary_expression_token1] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [aux_sym_binary_expression_token2] = ACTIONS(2536), + [aux_sym_binary_expression_token3] = ACTIONS(2536), + [aux_sym_binary_expression_token4] = ACTIONS(2538), + [aux_sym_binary_expression_token5] = ACTIONS(2538), + [aux_sym_binary_expression_token6] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_IN] = ACTIONS(2536), + [anon_sym_InstanceOf] = ACTIONS(2536), + [anon_sym_instanceof] = ACTIONS(2536), + [anon_sym_INSTANCEOF] = ACTIONS(2536), + [anon_sym_instanceOf] = ACTIONS(2536), + [sym__automatic_semicolon] = ACTIONS(2538), + [sym__ternary_qmark] = ACTIONS(2538), + [sym__elvis_operator] = ACTIONS(2538), + [sym_logical_or] = ACTIONS(2538), + [sym_tag_linefeed] = ACTIONS(2538), }, - [STATE(2982)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4640), - [aux_sym_object_pattern_repeat1] = STATE(4560), - [sym_identifier] = ACTIONS(2145), + [STATE(3038)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4822), + [aux_sym_object_pattern_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(2141), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(2983)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym_tag_linefeed] = ACTIONS(2286), - }, - [STATE(2984)] = { - [sym_identifier] = ACTIONS(2562), - [anon_sym_DOT] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_COMMA] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2562), - [sym_optional_chain] = ACTIONS(2564), - [sym_static_chain] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_GT_GT_GT] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2564), - [anon_sym_BSLASH] = ACTIONS(2562), - [anon_sym_STAR_STAR] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2564), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2564), - [anon_sym_LT_GT] = ACTIONS(2564), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2564), - [aux_sym_binary_expression_token1] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2562), - [aux_sym_binary_expression_token2] = ACTIONS(2562), - [aux_sym_binary_expression_token3] = ACTIONS(2562), - [aux_sym_binary_expression_token4] = ACTIONS(2564), - [aux_sym_binary_expression_token5] = ACTIONS(2564), - [aux_sym_binary_expression_token6] = ACTIONS(2564), - [anon_sym_QMARK_QMARK] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2562), - [anon_sym_IN] = ACTIONS(2562), - [anon_sym_InstanceOf] = ACTIONS(2562), - [anon_sym_instanceof] = ACTIONS(2562), - [anon_sym_INSTANCEOF] = ACTIONS(2562), - [anon_sym_instanceOf] = ACTIONS(2562), - [sym__ternary_qmark] = ACTIONS(2564), - [sym__elvis_operator] = ACTIONS(2564), - [sym_logical_or] = ACTIONS(2564), - [sym__parameter_separator] = ACTIONS(2564), - }, - [STATE(2985)] = { - [sym_identifier] = ACTIONS(2566), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_COMMA] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_RPAREN] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2566), - [sym_optional_chain] = ACTIONS(2568), - [sym_static_chain] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_GT_GT_GT] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_CARET] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2568), - [anon_sym_BSLASH] = ACTIONS(2566), - [anon_sym_STAR_STAR] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2568), - [anon_sym_LT_GT] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2568), - [aux_sym_binary_expression_token1] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(2566), - [aux_sym_binary_expression_token2] = ACTIONS(2566), - [aux_sym_binary_expression_token3] = ACTIONS(2566), - [aux_sym_binary_expression_token4] = ACTIONS(2568), - [aux_sym_binary_expression_token5] = ACTIONS(2568), - [aux_sym_binary_expression_token6] = ACTIONS(2568), - [anon_sym_QMARK_QMARK] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2566), - [anon_sym_in] = ACTIONS(2566), - [anon_sym_IN] = ACTIONS(2566), - [anon_sym_InstanceOf] = ACTIONS(2566), - [anon_sym_instanceof] = ACTIONS(2566), - [anon_sym_INSTANCEOF] = ACTIONS(2566), - [anon_sym_instanceOf] = ACTIONS(2566), - [sym__ternary_qmark] = ACTIONS(2568), - [sym__elvis_operator] = ACTIONS(2568), - [sym_logical_or] = ACTIONS(2568), - [sym__parameter_separator] = ACTIONS(2568), - }, - [STATE(2986)] = { - [sym_identifier] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_COMMA] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_RPAREN] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2570), - [sym_optional_chain] = ACTIONS(2572), - [sym_static_chain] = ACTIONS(2572), - [anon_sym_AMP_AMP] = ACTIONS(2572), - [anon_sym_PIPE_PIPE] = ACTIONS(2572), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_GT_GT_GT] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2572), - [anon_sym_BSLASH] = ACTIONS(2570), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2572), - [anon_sym_LT_GT] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2572), - [aux_sym_binary_expression_token1] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2570), - [aux_sym_binary_expression_token2] = ACTIONS(2570), - [aux_sym_binary_expression_token3] = ACTIONS(2570), - [aux_sym_binary_expression_token4] = ACTIONS(2572), - [aux_sym_binary_expression_token5] = ACTIONS(2572), - [aux_sym_binary_expression_token6] = ACTIONS(2572), - [anon_sym_QMARK_QMARK] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [anon_sym_IN] = ACTIONS(2570), - [anon_sym_InstanceOf] = ACTIONS(2570), - [anon_sym_instanceof] = ACTIONS(2570), - [anon_sym_INSTANCEOF] = ACTIONS(2570), - [anon_sym_instanceOf] = ACTIONS(2570), - [sym__ternary_qmark] = ACTIONS(2572), - [sym__elvis_operator] = ACTIONS(2572), - [sym_logical_or] = ACTIONS(2572), - [sym__parameter_separator] = ACTIONS(2572), - }, - [STATE(2987)] = { - [sym_identifier] = ACTIONS(2574), - [anon_sym_DOT] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_COMMA] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_RPAREN] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2574), - [sym_optional_chain] = ACTIONS(2576), - [sym_static_chain] = ACTIONS(2576), - [anon_sym_AMP_AMP] = ACTIONS(2576), - [anon_sym_PIPE_PIPE] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2574), - [anon_sym_GT_GT_GT] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_CARET] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2576), - [anon_sym_BSLASH] = ACTIONS(2574), - [anon_sym_STAR_STAR] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2576), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2576), - [anon_sym_LT_GT] = ACTIONS(2576), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2576), - [aux_sym_binary_expression_token1] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2576), - [anon_sym_GT] = ACTIONS(2574), - [aux_sym_binary_expression_token2] = ACTIONS(2574), - [aux_sym_binary_expression_token3] = ACTIONS(2574), - [aux_sym_binary_expression_token4] = ACTIONS(2576), - [aux_sym_binary_expression_token5] = ACTIONS(2576), - [aux_sym_binary_expression_token6] = ACTIONS(2576), - [anon_sym_QMARK_QMARK] = ACTIONS(2576), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [anon_sym_IN] = ACTIONS(2574), - [anon_sym_InstanceOf] = ACTIONS(2574), - [anon_sym_instanceof] = ACTIONS(2574), - [anon_sym_INSTANCEOF] = ACTIONS(2574), - [anon_sym_instanceOf] = ACTIONS(2574), - [sym__ternary_qmark] = ACTIONS(2576), - [sym__elvis_operator] = ACTIONS(2576), - [sym_logical_or] = ACTIONS(2576), - [sym__parameter_separator] = ACTIONS(2576), - }, - [STATE(2988)] = { - [sym_identifier] = ACTIONS(2578), - [anon_sym_DOT] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_COMMA] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_RPAREN] = ACTIONS(2580), - [anon_sym_LBRACK] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2578), - [sym_optional_chain] = ACTIONS(2580), - [sym_static_chain] = ACTIONS(2580), - [anon_sym_AMP_AMP] = ACTIONS(2580), - [anon_sym_PIPE_PIPE] = ACTIONS(2580), - [anon_sym_GT_GT] = ACTIONS(2578), - [anon_sym_GT_GT_GT] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_CARET] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2580), - [anon_sym_BSLASH] = ACTIONS(2578), - [anon_sym_STAR_STAR] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_LT_EQ] = ACTIONS(2580), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2580), - [anon_sym_LT_GT] = ACTIONS(2580), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2580), - [aux_sym_binary_expression_token1] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2580), - [anon_sym_GT] = ACTIONS(2578), - [aux_sym_binary_expression_token2] = ACTIONS(2578), - [aux_sym_binary_expression_token3] = ACTIONS(2578), - [aux_sym_binary_expression_token4] = ACTIONS(2580), - [aux_sym_binary_expression_token5] = ACTIONS(2580), - [aux_sym_binary_expression_token6] = ACTIONS(2580), - [anon_sym_QMARK_QMARK] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2578), - [anon_sym_in] = ACTIONS(2578), - [anon_sym_IN] = ACTIONS(2578), - [anon_sym_InstanceOf] = ACTIONS(2578), - [anon_sym_instanceof] = ACTIONS(2578), - [anon_sym_INSTANCEOF] = ACTIONS(2578), - [anon_sym_instanceOf] = ACTIONS(2578), - [sym__ternary_qmark] = ACTIONS(2580), - [sym__elvis_operator] = ACTIONS(2580), - [sym_logical_or] = ACTIONS(2580), - [sym__parameter_separator] = ACTIONS(2580), - }, - [STATE(2989)] = { - [sym_identifier] = ACTIONS(2478), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_RPAREN] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2478), - [sym_optional_chain] = ACTIONS(2480), - [sym_static_chain] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_BSLASH] = ACTIONS(2478), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_LT_GT] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [aux_sym_binary_expression_token1] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2478), - [aux_sym_binary_expression_token2] = ACTIONS(2478), - [aux_sym_binary_expression_token3] = ACTIONS(2478), - [aux_sym_binary_expression_token4] = ACTIONS(2480), - [aux_sym_binary_expression_token5] = ACTIONS(2480), - [aux_sym_binary_expression_token6] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_IN] = ACTIONS(2478), - [anon_sym_InstanceOf] = ACTIONS(2478), - [anon_sym_instanceof] = ACTIONS(2478), - [anon_sym_INSTANCEOF] = ACTIONS(2478), - [anon_sym_instanceOf] = ACTIONS(2478), - [sym__ternary_qmark] = ACTIONS(2480), - [sym__elvis_operator] = ACTIONS(2480), - [sym_logical_or] = ACTIONS(2480), - [sym__parameter_separator] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(2990)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym_tag_linefeed] = ACTIONS(2240), + [STATE(3039)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym__parameter_separator] = ACTIONS(1716), }, - [STATE(2991)] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__automatic_semicolon] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym_tag_linefeed] = ACTIONS(2347), + [STATE(3040)] = { + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__automatic_semicolon] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_tag_linefeed] = ACTIONS(1087), }, - [STATE(2992)] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), + [STATE(3041)] = { + [sym_identifier] = ACTIONS(2270), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2272), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2270), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2270), + [sym_optional_chain] = ACTIONS(2272), + [sym_static_chain] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_GT_GT] = ACTIONS(2270), + [anon_sym_GT_GT_GT] = ACTIONS(2272), + [anon_sym_LT_LT] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_SLASH] = ACTIONS(2270), + [anon_sym_PERCENT] = ACTIONS(2272), + [anon_sym_BSLASH] = ACTIONS(2270), + [anon_sym_STAR_STAR] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_EQ_EQ] = ACTIONS(2270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2272), + [anon_sym_LT_GT] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2272), + [aux_sym_binary_expression_token1] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2270), + [aux_sym_binary_expression_token2] = ACTIONS(2270), + [aux_sym_binary_expression_token3] = ACTIONS(2270), + [aux_sym_binary_expression_token4] = ACTIONS(2272), + [aux_sym_binary_expression_token5] = ACTIONS(2272), + [aux_sym_binary_expression_token6] = ACTIONS(2272), + [anon_sym_QMARK_QMARK] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2353), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym_tag_linefeed] = ACTIONS(2353), + [anon_sym_In] = ACTIONS(2270), + [anon_sym_in] = ACTIONS(2270), + [anon_sym_IN] = ACTIONS(2270), + [anon_sym_InstanceOf] = ACTIONS(2270), + [anon_sym_instanceof] = ACTIONS(2270), + [anon_sym_INSTANCEOF] = ACTIONS(2270), + [anon_sym_instanceOf] = ACTIONS(2270), + [sym__ternary_qmark] = ACTIONS(2272), + [sym__elvis_operator] = ACTIONS(2272), + [sym_logical_or] = ACTIONS(2272), + [sym_tag_linefeed] = ACTIONS(2272), }, - [STATE(2993)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6070), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3042)] = { + [sym_identifier] = ACTIONS(2544), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2544), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_BSLASH] = ACTIONS(2544), + [anon_sym_STAR_STAR] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2544), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2546), + [anon_sym_LT_GT] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2544), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2546), + [aux_sym_binary_expression_token1] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [aux_sym_binary_expression_token2] = ACTIONS(2544), + [aux_sym_binary_expression_token3] = ACTIONS(2544), + [aux_sym_binary_expression_token4] = ACTIONS(2546), + [aux_sym_binary_expression_token5] = ACTIONS(2546), + [aux_sym_binary_expression_token6] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_IN] = ACTIONS(2544), + [anon_sym_InstanceOf] = ACTIONS(2544), + [anon_sym_instanceof] = ACTIONS(2544), + [anon_sym_INSTANCEOF] = ACTIONS(2544), + [anon_sym_instanceOf] = ACTIONS(2544), + [sym__automatic_semicolon] = ACTIONS(2546), + [sym__ternary_qmark] = ACTIONS(2546), + [sym__elvis_operator] = ACTIONS(2546), + [sym_logical_or] = ACTIONS(2546), + [sym_tag_linefeed] = ACTIONS(2546), }, - [STATE(2994)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(6072), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3043)] = { + [sym_identifier] = ACTIONS(2512), + [anon_sym_DOT] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_RPAREN] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2512), + [sym_optional_chain] = ACTIONS(2514), + [sym_static_chain] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_BSLASH] = ACTIONS(2512), + [anon_sym_STAR_STAR] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2512), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2514), + [anon_sym_LT_GT] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2512), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2514), + [aux_sym_binary_expression_token1] = ACTIONS(2514), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [aux_sym_binary_expression_token2] = ACTIONS(2512), + [aux_sym_binary_expression_token3] = ACTIONS(2512), + [aux_sym_binary_expression_token4] = ACTIONS(2514), + [aux_sym_binary_expression_token5] = ACTIONS(2514), + [aux_sym_binary_expression_token6] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_IN] = ACTIONS(2512), + [anon_sym_InstanceOf] = ACTIONS(2512), + [anon_sym_instanceof] = ACTIONS(2512), + [anon_sym_INSTANCEOF] = ACTIONS(2512), + [anon_sym_instanceOf] = ACTIONS(2512), + [sym__ternary_qmark] = ACTIONS(2514), + [sym__elvis_operator] = ACTIONS(2514), + [sym_logical_or] = ACTIONS(2514), + [sym__parameter_separator] = ACTIONS(2514), }, - [STATE(2995)] = { - [sym_identifier] = ACTIONS(2340), - [anon_sym_DOT] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_RPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2340), - [sym_optional_chain] = ACTIONS(2342), - [sym_static_chain] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_BSLASH] = ACTIONS(2340), - [anon_sym_STAR_STAR] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_GT] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [aux_sym_binary_expression_token1] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [aux_sym_binary_expression_token2] = ACTIONS(2340), - [aux_sym_binary_expression_token3] = ACTIONS(2340), - [aux_sym_binary_expression_token4] = ACTIONS(2342), - [aux_sym_binary_expression_token5] = ACTIONS(2342), - [aux_sym_binary_expression_token6] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_IN] = ACTIONS(2340), - [anon_sym_InstanceOf] = ACTIONS(2340), - [anon_sym_instanceof] = ACTIONS(2340), - [anon_sym_INSTANCEOF] = ACTIONS(2340), - [anon_sym_instanceOf] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2342), - [sym__elvis_operator] = ACTIONS(2342), - [sym_logical_or] = ACTIONS(2342), - [sym__parameter_separator] = ACTIONS(2342), + [STATE(3044)] = { + [sym_identifier] = ACTIONS(2548), + [anon_sym_DOT] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2548), + [sym_optional_chain] = ACTIONS(2550), + [sym_static_chain] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(2548), + [anon_sym_STAR_STAR] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2550), + [anon_sym_LT_GT] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2550), + [aux_sym_binary_expression_token1] = ACTIONS(2550), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [aux_sym_binary_expression_token2] = ACTIONS(2548), + [aux_sym_binary_expression_token3] = ACTIONS(2548), + [aux_sym_binary_expression_token4] = ACTIONS(2550), + [aux_sym_binary_expression_token5] = ACTIONS(2550), + [aux_sym_binary_expression_token6] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_IN] = ACTIONS(2548), + [anon_sym_InstanceOf] = ACTIONS(2548), + [anon_sym_instanceof] = ACTIONS(2548), + [anon_sym_INSTANCEOF] = ACTIONS(2548), + [anon_sym_instanceOf] = ACTIONS(2548), + [sym__automatic_semicolon] = ACTIONS(2550), + [sym__ternary_qmark] = ACTIONS(2550), + [sym__elvis_operator] = ACTIONS(2550), + [sym_logical_or] = ACTIONS(2550), + [sym_tag_linefeed] = ACTIONS(2550), }, - [STATE(2996)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym__parameter_separator] = ACTIONS(2240), + [STATE(3045)] = { + [sym_identifier] = ACTIONS(2516), + [anon_sym_DOT] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_COMMA] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2516), + [sym_optional_chain] = ACTIONS(2518), + [sym_static_chain] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_BSLASH] = ACTIONS(2516), + [anon_sym_STAR_STAR] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2518), + [anon_sym_LT_GT] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2518), + [aux_sym_binary_expression_token1] = ACTIONS(2518), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [aux_sym_binary_expression_token2] = ACTIONS(2516), + [aux_sym_binary_expression_token3] = ACTIONS(2516), + [aux_sym_binary_expression_token4] = ACTIONS(2518), + [aux_sym_binary_expression_token5] = ACTIONS(2518), + [aux_sym_binary_expression_token6] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_IN] = ACTIONS(2516), + [anon_sym_InstanceOf] = ACTIONS(2516), + [anon_sym_instanceof] = ACTIONS(2516), + [anon_sym_INSTANCEOF] = ACTIONS(2516), + [anon_sym_instanceOf] = ACTIONS(2516), + [sym__ternary_qmark] = ACTIONS(2518), + [sym__elvis_operator] = ACTIONS(2518), + [sym_logical_or] = ACTIONS(2518), + [sym__parameter_separator] = ACTIONS(2518), }, - [STATE(2997)] = { - [sym_identifier] = ACTIONS(2422), - [anon_sym_DOT] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_COMMA] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_RPAREN] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2422), - [sym_optional_chain] = ACTIONS(2424), - [sym_static_chain] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2422), - [anon_sym_GT_GT_GT] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_CARET] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2424), - [anon_sym_BSLASH] = ACTIONS(2422), - [anon_sym_STAR_STAR] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), - [anon_sym_LT_GT] = ACTIONS(2424), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), - [aux_sym_binary_expression_token1] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2422), - [aux_sym_binary_expression_token2] = ACTIONS(2422), - [aux_sym_binary_expression_token3] = ACTIONS(2422), - [aux_sym_binary_expression_token4] = ACTIONS(2424), - [aux_sym_binary_expression_token5] = ACTIONS(2424), - [aux_sym_binary_expression_token6] = ACTIONS(2424), - [anon_sym_QMARK_QMARK] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_IN] = ACTIONS(2422), - [anon_sym_InstanceOf] = ACTIONS(2422), - [anon_sym_instanceof] = ACTIONS(2422), - [anon_sym_INSTANCEOF] = ACTIONS(2422), - [anon_sym_instanceOf] = ACTIONS(2422), - [sym__ternary_qmark] = ACTIONS(2424), - [sym__elvis_operator] = ACTIONS(2424), - [sym_logical_or] = ACTIONS(2424), - [sym__parameter_separator] = ACTIONS(2424), + [STATE(3046)] = { + [sym_identifier] = ACTIONS(2440), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym__parameter_separator] = ACTIONS(2443), }, - [STATE(2998)] = { - [sym_identifier] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym__parameter_separator] = ACTIONS(1650), + [STATE(3047)] = { + [sym_identifier] = ACTIONS(2552), + [anon_sym_DOT] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2552), + [sym_optional_chain] = ACTIONS(2554), + [sym_static_chain] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_BSLASH] = ACTIONS(2552), + [anon_sym_STAR_STAR] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2554), + [anon_sym_LT_GT] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2554), + [aux_sym_binary_expression_token1] = ACTIONS(2554), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [aux_sym_binary_expression_token2] = ACTIONS(2552), + [aux_sym_binary_expression_token3] = ACTIONS(2552), + [aux_sym_binary_expression_token4] = ACTIONS(2554), + [aux_sym_binary_expression_token5] = ACTIONS(2554), + [aux_sym_binary_expression_token6] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_IN] = ACTIONS(2552), + [anon_sym_InstanceOf] = ACTIONS(2552), + [anon_sym_instanceof] = ACTIONS(2552), + [anon_sym_INSTANCEOF] = ACTIONS(2552), + [anon_sym_instanceOf] = ACTIONS(2552), + [sym__automatic_semicolon] = ACTIONS(2554), + [sym__ternary_qmark] = ACTIONS(2554), + [sym__elvis_operator] = ACTIONS(2554), + [sym_logical_or] = ACTIONS(2554), + [sym_tag_linefeed] = ACTIONS(2554), }, - [STATE(2999)] = { - [sym_identifier] = ACTIONS(2242), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2282), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2242), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2242), - [sym_optional_chain] = ACTIONS(2282), - [sym_static_chain] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2242), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_BSLASH] = ACTIONS(2242), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_LT_GT] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [aux_sym_binary_expression_token1] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2242), - [aux_sym_binary_expression_token2] = ACTIONS(2242), - [aux_sym_binary_expression_token3] = ACTIONS(2242), - [aux_sym_binary_expression_token4] = ACTIONS(2282), - [aux_sym_binary_expression_token5] = ACTIONS(2282), - [aux_sym_binary_expression_token6] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_IN] = ACTIONS(2242), - [anon_sym_InstanceOf] = ACTIONS(2242), - [anon_sym_instanceof] = ACTIONS(2242), - [anon_sym_INSTANCEOF] = ACTIONS(2242), - [anon_sym_instanceOf] = ACTIONS(2242), - [sym__ternary_qmark] = ACTIONS(2282), - [sym__elvis_operator] = ACTIONS(2282), - [sym_logical_or] = ACTIONS(2282), - [sym_tag_linefeed] = ACTIONS(2282), + [STATE(3048)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4688), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5844), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(3000)] = { - [sym_identifier] = ACTIONS(2558), - [anon_sym_DOT] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2558), - [sym_optional_chain] = ACTIONS(2560), - [sym_static_chain] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_GT_GT_GT] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2560), - [anon_sym_BSLASH] = ACTIONS(2558), - [anon_sym_STAR_STAR] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2560), - [anon_sym_LT_GT] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2560), - [aux_sym_binary_expression_token1] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2558), - [aux_sym_binary_expression_token2] = ACTIONS(2558), - [aux_sym_binary_expression_token3] = ACTIONS(2558), - [aux_sym_binary_expression_token4] = ACTIONS(2560), - [aux_sym_binary_expression_token5] = ACTIONS(2560), - [aux_sym_binary_expression_token6] = ACTIONS(2560), - [anon_sym_QMARK_QMARK] = ACTIONS(2560), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_IN] = ACTIONS(2558), - [anon_sym_InstanceOf] = ACTIONS(2558), - [anon_sym_instanceof] = ACTIONS(2558), - [anon_sym_INSTANCEOF] = ACTIONS(2558), - [anon_sym_instanceOf] = ACTIONS(2558), - [sym__ternary_qmark] = ACTIONS(2560), - [sym__elvis_operator] = ACTIONS(2560), - [sym_logical_or] = ACTIONS(2560), - [sym__parameter_separator] = ACTIONS(2560), + [STATE(3049)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6135), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3001)] = { - [sym_identifier] = ACTIONS(2320), - [anon_sym_DOT] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_RPAREN] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2320), - [sym_optional_chain] = ACTIONS(2322), - [sym_static_chain] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_BSLASH] = ACTIONS(2320), - [anon_sym_STAR_STAR] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_LT_GT] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2322), - [aux_sym_binary_expression_token1] = ACTIONS(2322), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [aux_sym_binary_expression_token2] = ACTIONS(2320), - [aux_sym_binary_expression_token3] = ACTIONS(2320), - [aux_sym_binary_expression_token4] = ACTIONS(2322), - [aux_sym_binary_expression_token5] = ACTIONS(2322), - [aux_sym_binary_expression_token6] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2320), - [anon_sym_in] = ACTIONS(2320), - [anon_sym_IN] = ACTIONS(2320), - [anon_sym_InstanceOf] = ACTIONS(2320), - [anon_sym_instanceof] = ACTIONS(2320), - [anon_sym_INSTANCEOF] = ACTIONS(2320), - [anon_sym_instanceOf] = ACTIONS(2320), - [sym__ternary_qmark] = ACTIONS(2322), - [sym__elvis_operator] = ACTIONS(2322), - [sym_logical_or] = ACTIONS(2322), - [sym__parameter_separator] = ACTIONS(2322), + [STATE(3050)] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_COMMA] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym__parameter_separator] = ACTIONS(2449), }, - [STATE(3002)] = { + [STATE(3051)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5218), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -406243,1537 +411711,2400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(3052)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(6079), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(6081), + [sym__elvis_operator] = ACTIONS(6083), + [sym_logical_or] = ACTIONS(6051), + }, + [STATE(3053)] = { + [sym_identifier] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [sym__automatic_semicolon] = ACTIONS(1686), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym_tag_linefeed] = ACTIONS(1686), + }, + [STATE(3054)] = { + [sym_identifier] = ACTIONS(2440), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym_tag_linefeed] = ACTIONS(2443), + }, + [STATE(3055)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(6079), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(6081), + [sym__elvis_operator] = ACTIONS(6083), + [sym_logical_or] = ACTIONS(6051), + }, + [STATE(3056)] = { + [sym_arguments] = STATE(3085), + [sym_identifier] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(2303), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2300), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2300), + [sym_optional_chain] = ACTIONS(2303), + [sym_static_chain] = ACTIONS(2303), + [anon_sym_AMP_AMP] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2303), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2303), + [anon_sym_LT_LT] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_BSLASH] = ACTIONS(2300), + [anon_sym_STAR_STAR] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_GT] = ACTIONS(2303), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [aux_sym_binary_expression_token1] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2300), + [aux_sym_binary_expression_token2] = ACTIONS(2300), + [aux_sym_binary_expression_token3] = ACTIONS(2300), + [aux_sym_binary_expression_token4] = ACTIONS(2303), + [aux_sym_binary_expression_token5] = ACTIONS(2303), + [aux_sym_binary_expression_token6] = ACTIONS(2303), + [anon_sym_QMARK_QMARK] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_IN] = ACTIONS(2300), + [anon_sym_InstanceOf] = ACTIONS(2300), + [anon_sym_instanceof] = ACTIONS(2300), + [anon_sym_INSTANCEOF] = ACTIONS(2300), + [anon_sym_instanceOf] = ACTIONS(2300), + [sym__ternary_qmark] = ACTIONS(2303), + [sym__elvis_operator] = ACTIONS(2303), + [sym_logical_or] = ACTIONS(2303), + [sym_tag_linefeed] = ACTIONS(2303), + }, + [STATE(3057)] = { + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2464), + [sym_optional_chain] = ACTIONS(2466), + [sym_static_chain] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_BSLASH] = ACTIONS(2464), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_LT_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [aux_sym_binary_expression_token1] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [aux_sym_binary_expression_token2] = ACTIONS(2464), + [aux_sym_binary_expression_token3] = ACTIONS(2464), + [aux_sym_binary_expression_token4] = ACTIONS(2466), + [aux_sym_binary_expression_token5] = ACTIONS(2466), + [aux_sym_binary_expression_token6] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2464), + [anon_sym_in] = ACTIONS(2464), + [anon_sym_IN] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(2464), + [anon_sym_instanceof] = ACTIONS(2464), + [anon_sym_INSTANCEOF] = ACTIONS(2464), + [anon_sym_instanceOf] = ACTIONS(2464), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(2466), + [sym__elvis_operator] = ACTIONS(2466), + [sym_logical_or] = ACTIONS(2466), + [sym_tag_linefeed] = ACTIONS(2466), + }, + [STATE(3058)] = { + [sym_identifier] = ACTIONS(2560), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2560), + [sym_optional_chain] = ACTIONS(2562), + [sym_static_chain] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_BSLASH] = ACTIONS(2560), + [anon_sym_STAR_STAR] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2562), + [anon_sym_LT_GT] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2562), + [aux_sym_binary_expression_token1] = ACTIONS(2562), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [aux_sym_binary_expression_token2] = ACTIONS(2560), + [aux_sym_binary_expression_token3] = ACTIONS(2560), + [aux_sym_binary_expression_token4] = ACTIONS(2562), + [aux_sym_binary_expression_token5] = ACTIONS(2562), + [aux_sym_binary_expression_token6] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_IN] = ACTIONS(2560), + [anon_sym_InstanceOf] = ACTIONS(2560), + [anon_sym_instanceof] = ACTIONS(2560), + [anon_sym_INSTANCEOF] = ACTIONS(2560), + [anon_sym_instanceOf] = ACTIONS(2560), + [sym__automatic_semicolon] = ACTIONS(2562), + [sym__ternary_qmark] = ACTIONS(2562), + [sym__elvis_operator] = ACTIONS(2562), + [sym_logical_or] = ACTIONS(2562), + [sym_tag_linefeed] = ACTIONS(2562), + }, + [STATE(3059)] = { + [sym_identifier] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2568), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2568), + [anon_sym_instanceof] = ACTIONS(2568), + [anon_sym_INSTANCEOF] = ACTIONS(2568), + [anon_sym_instanceOf] = ACTIONS(2568), + [sym__automatic_semicolon] = ACTIONS(2570), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), + [sym_tag_linefeed] = ACTIONS(2570), + }, + [STATE(3060)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(6079), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(6081), + [sym__elvis_operator] = ACTIONS(6083), + [sym_logical_or] = ACTIONS(6051), + }, + [STATE(3061)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3062)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3063)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6137), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3064)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3065)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3066)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3003)] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_RPAREN] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym__parameter_separator] = ACTIONS(1085), + [STATE(3067)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3004)] = { - [sym_identifier] = ACTIONS(2324), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2324), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), - [sym_optional_chain] = ACTIONS(2326), - [sym_static_chain] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_GT_GT_GT] = ACTIONS(2326), - [anon_sym_LT_LT] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_SLASH] = ACTIONS(2324), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_BSLASH] = ACTIONS(2324), - [anon_sym_STAR_STAR] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2326), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), - [anon_sym_LT_GT] = ACTIONS(2326), - [anon_sym_BANG_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), - [aux_sym_binary_expression_token1] = ACTIONS(2326), - [anon_sym_GT_EQ] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2324), - [aux_sym_binary_expression_token2] = ACTIONS(2324), - [aux_sym_binary_expression_token3] = ACTIONS(2324), - [aux_sym_binary_expression_token4] = ACTIONS(2326), - [aux_sym_binary_expression_token5] = ACTIONS(2326), - [aux_sym_binary_expression_token6] = ACTIONS(2326), - [anon_sym_QMARK_QMARK] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_DASH_DASH] = ACTIONS(2326), + [STATE(3068)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2324), - [anon_sym_in] = ACTIONS(2324), - [anon_sym_IN] = ACTIONS(2324), - [anon_sym_InstanceOf] = ACTIONS(2324), - [anon_sym_instanceof] = ACTIONS(2324), - [anon_sym_INSTANCEOF] = ACTIONS(2324), - [anon_sym_instanceOf] = ACTIONS(2324), - [sym__ternary_qmark] = ACTIONS(2326), - [sym__elvis_operator] = ACTIONS(2326), - [sym_logical_or] = ACTIONS(2326), - [sym__parameter_separator] = ACTIONS(2326), - }, - [STATE(3005)] = { - [sym_arguments] = STATE(2530), - [sym_identifier] = ACTIONS(5261), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3006)] = { - [sym_arguments] = STATE(2530), - [sym_identifier] = ACTIONS(5261), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2264), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2264), - [sym_optional_chain] = ACTIONS(2267), - [sym_static_chain] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_BSLASH] = ACTIONS(2264), - [anon_sym_STAR_STAR] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ] = ACTIONS(2264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), - [anon_sym_LT_GT] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), - [aux_sym_binary_expression_token1] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2264), - [aux_sym_binary_expression_token2] = ACTIONS(2264), - [aux_sym_binary_expression_token3] = ACTIONS(2264), - [aux_sym_binary_expression_token4] = ACTIONS(2267), - [aux_sym_binary_expression_token5] = ACTIONS(2267), - [aux_sym_binary_expression_token6] = ACTIONS(2267), - [anon_sym_QMARK_QMARK] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2264), - [anon_sym_in] = ACTIONS(2264), - [anon_sym_IN] = ACTIONS(2264), - [anon_sym_InstanceOf] = ACTIONS(2264), - [anon_sym_instanceof] = ACTIONS(2264), - [anon_sym_INSTANCEOF] = ACTIONS(2264), - [anon_sym_instanceOf] = ACTIONS(2264), - [sym__ternary_qmark] = ACTIONS(2267), - [sym__elvis_operator] = ACTIONS(2267), - [sym_logical_or] = ACTIONS(2267), - }, - [STATE(3007)] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_RPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(6110), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(6112), - [sym__elvis_operator] = ACTIONS(6114), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2428), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3008)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3069)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3009)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3070)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3010)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3071)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3011)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3072)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3012)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3073)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3013)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3074)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6051), }, - [STATE(3014)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3075)] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__automatic_semicolon] = ACTIONS(2449), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym_tag_linefeed] = ACTIONS(2449), }, - [STATE(3015)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3076)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(6079), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(6081), + [sym__elvis_operator] = ACTIONS(6083), + [sym_logical_or] = ACTIONS(6051), }, - [STATE(3016)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3077)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6139), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3017)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3078)] = { + [sym_identifier] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2238), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2236), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2236), + [sym_optional_chain] = ACTIONS(2238), + [sym_static_chain] = ACTIONS(2238), + [anon_sym_AMP_AMP] = ACTIONS(2238), + [anon_sym_PIPE_PIPE] = ACTIONS(2238), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2238), + [anon_sym_LT_LT] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_SLASH] = ACTIONS(2236), + [anon_sym_PERCENT] = ACTIONS(2238), + [anon_sym_BSLASH] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_LT_EQ] = ACTIONS(2238), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2238), + [anon_sym_LT_GT] = ACTIONS(2238), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2238), + [aux_sym_binary_expression_token1] = ACTIONS(2238), + [anon_sym_GT_EQ] = ACTIONS(2238), + [anon_sym_GT] = ACTIONS(2236), + [aux_sym_binary_expression_token2] = ACTIONS(2236), + [aux_sym_binary_expression_token3] = ACTIONS(2236), + [aux_sym_binary_expression_token4] = ACTIONS(2238), + [aux_sym_binary_expression_token5] = ACTIONS(2238), + [aux_sym_binary_expression_token6] = ACTIONS(2238), + [anon_sym_QMARK_QMARK] = ACTIONS(2238), + [anon_sym_PLUS_PLUS] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2236), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_IN] = ACTIONS(2236), + [anon_sym_InstanceOf] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_INSTANCEOF] = ACTIONS(2236), + [anon_sym_instanceOf] = ACTIONS(2236), + [sym__ternary_qmark] = ACTIONS(2238), + [sym__elvis_operator] = ACTIONS(2238), + [sym_logical_or] = ACTIONS(2238), + [sym_tag_linefeed] = ACTIONS(2238), }, - [STATE(3018)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3079)] = { + [sym_arguments] = STATE(3085), + [sym_identifier] = ACTIONS(2306), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(2309), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2306), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2306), + [sym_optional_chain] = ACTIONS(2309), + [sym_static_chain] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_PIPE_PIPE] = ACTIONS(2309), + [anon_sym_GT_GT] = ACTIONS(2306), + [anon_sym_GT_GT_GT] = ACTIONS(2309), + [anon_sym_LT_LT] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_SLASH] = ACTIONS(2306), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_BSLASH] = ACTIONS(2306), + [anon_sym_STAR_STAR] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2309), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), + [anon_sym_LT_GT] = ACTIONS(2309), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), + [aux_sym_binary_expression_token1] = ACTIONS(2309), + [anon_sym_GT_EQ] = ACTIONS(2309), + [anon_sym_GT] = ACTIONS(2306), + [aux_sym_binary_expression_token2] = ACTIONS(2306), + [aux_sym_binary_expression_token3] = ACTIONS(2306), + [aux_sym_binary_expression_token4] = ACTIONS(2309), + [aux_sym_binary_expression_token5] = ACTIONS(2309), + [aux_sym_binary_expression_token6] = ACTIONS(2309), + [anon_sym_QMARK_QMARK] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2306), + [anon_sym_in] = ACTIONS(2306), + [anon_sym_IN] = ACTIONS(2306), + [anon_sym_InstanceOf] = ACTIONS(2306), + [anon_sym_instanceof] = ACTIONS(2306), + [anon_sym_INSTANCEOF] = ACTIONS(2306), + [anon_sym_instanceOf] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2309), + [sym__elvis_operator] = ACTIONS(2309), + [sym_logical_or] = ACTIONS(2309), + [sym_tag_linefeed] = ACTIONS(2309), }, - [STATE(3019)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3080)] = { + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2468), + [sym_optional_chain] = ACTIONS(2470), + [sym_static_chain] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_BSLASH] = ACTIONS(2468), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_LT_GT] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [aux_sym_binary_expression_token1] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [aux_sym_binary_expression_token2] = ACTIONS(2468), + [aux_sym_binary_expression_token3] = ACTIONS(2468), + [aux_sym_binary_expression_token4] = ACTIONS(2470), + [aux_sym_binary_expression_token5] = ACTIONS(2470), + [aux_sym_binary_expression_token6] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2468), + [anon_sym_IN] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(2468), + [anon_sym_instanceof] = ACTIONS(2468), + [anon_sym_INSTANCEOF] = ACTIONS(2468), + [anon_sym_instanceOf] = ACTIONS(2468), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(2470), + [sym__elvis_operator] = ACTIONS(2470), + [sym_logical_or] = ACTIONS(2470), + [sym_tag_linefeed] = ACTIONS(2470), }, - [STATE(3020)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2432), + [STATE(3081)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2572), + [sym_optional_chain] = ACTIONS(2574), + [sym_static_chain] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_BSLASH] = ACTIONS(2572), + [anon_sym_STAR_STAR] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2574), + [anon_sym_LT_GT] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2574), + [aux_sym_binary_expression_token1] = ACTIONS(2574), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [aux_sym_binary_expression_token2] = ACTIONS(2572), + [aux_sym_binary_expression_token3] = ACTIONS(2572), + [aux_sym_binary_expression_token4] = ACTIONS(2574), + [aux_sym_binary_expression_token5] = ACTIONS(2574), + [aux_sym_binary_expression_token6] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_IN] = ACTIONS(2572), + [anon_sym_InstanceOf] = ACTIONS(2572), + [anon_sym_instanceof] = ACTIONS(2572), + [anon_sym_INSTANCEOF] = ACTIONS(2572), + [anon_sym_instanceOf] = ACTIONS(2572), + [sym__automatic_semicolon] = ACTIONS(2574), + [sym__ternary_qmark] = ACTIONS(2574), + [sym__elvis_operator] = ACTIONS(2574), + [sym_logical_or] = ACTIONS(2574), + [sym_tag_linefeed] = ACTIONS(2574), }, - [STATE(3021)] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(6110), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(6112), - [sym__elvis_operator] = ACTIONS(6114), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2460), + [STATE(3082)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(6141), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_tag_linefeed] = ACTIONS(1588), }, - [STATE(3022)] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_RPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(6110), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(6112), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2468), + [STATE(3083)] = { + [sym_identifier] = ACTIONS(2580), + [anon_sym_DOT] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2580), + [sym_optional_chain] = ACTIONS(2582), + [sym_static_chain] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_BSLASH] = ACTIONS(2580), + [anon_sym_STAR_STAR] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2582), + [anon_sym_LT_GT] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2582), + [aux_sym_binary_expression_token1] = ACTIONS(2582), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [aux_sym_binary_expression_token2] = ACTIONS(2580), + [aux_sym_binary_expression_token3] = ACTIONS(2580), + [aux_sym_binary_expression_token4] = ACTIONS(2582), + [aux_sym_binary_expression_token5] = ACTIONS(2582), + [aux_sym_binary_expression_token6] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2580), + [anon_sym_IN] = ACTIONS(2580), + [anon_sym_InstanceOf] = ACTIONS(2580), + [anon_sym_instanceof] = ACTIONS(2580), + [anon_sym_INSTANCEOF] = ACTIONS(2580), + [anon_sym_instanceOf] = ACTIONS(2580), + [sym__automatic_semicolon] = ACTIONS(2582), + [sym__ternary_qmark] = ACTIONS(2582), + [sym__elvis_operator] = ACTIONS(2582), + [sym_logical_or] = ACTIONS(2582), + [sym_tag_linefeed] = ACTIONS(2582), }, - [STATE(3023)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5272), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(3084)] = { + [sym_identifier] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2316), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2314), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2314), + [sym_optional_chain] = ACTIONS(2316), + [sym_static_chain] = ACTIONS(2316), + [anon_sym_AMP_AMP] = ACTIONS(2316), + [anon_sym_PIPE_PIPE] = ACTIONS(2316), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2316), + [anon_sym_LT_LT] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2316), + [anon_sym_BSLASH] = ACTIONS(2314), + [anon_sym_STAR_STAR] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2316), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2316), + [anon_sym_LT_GT] = ACTIONS(2316), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2316), + [aux_sym_binary_expression_token1] = ACTIONS(2316), + [anon_sym_GT_EQ] = ACTIONS(2316), + [anon_sym_GT] = ACTIONS(2314), + [aux_sym_binary_expression_token2] = ACTIONS(2314), + [aux_sym_binary_expression_token3] = ACTIONS(2314), + [aux_sym_binary_expression_token4] = ACTIONS(2316), + [aux_sym_binary_expression_token5] = ACTIONS(2316), + [aux_sym_binary_expression_token6] = ACTIONS(2316), + [anon_sym_QMARK_QMARK] = ACTIONS(2316), + [anon_sym_PLUS_PLUS] = ACTIONS(2316), + [anon_sym_DASH_DASH] = ACTIONS(2316), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_IN] = ACTIONS(2314), + [anon_sym_InstanceOf] = ACTIONS(2314), + [anon_sym_instanceof] = ACTIONS(2314), + [anon_sym_INSTANCEOF] = ACTIONS(2314), + [anon_sym_instanceOf] = ACTIONS(2314), + [sym__ternary_qmark] = ACTIONS(2316), + [sym__elvis_operator] = ACTIONS(2316), + [sym_logical_or] = ACTIONS(2316), + [sym_tag_linefeed] = ACTIONS(2316), }, - [STATE(3024)] = { + [STATE(3085)] = { [sym_identifier] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(2330), [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2330), + [anon_sym_LBRACE] = ACTIONS(2330), [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_COLON] = ACTIONS(2328), [anon_sym_LBRACK] = ACTIONS(2330), [aux_sym__operator_shaped_name_token1] = ACTIONS(2328), [aux_sym__operator_shaped_name_token2] = ACTIONS(2328), @@ -407837,1976 +414168,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2330), [sym__elvis_operator] = ACTIONS(2330), [sym_logical_or] = ACTIONS(2330), - [sym__parameter_separator] = ACTIONS(2330), - }, - [STATE(3025)] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_RPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(6110), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(6112), - [sym__elvis_operator] = ACTIONS(6114), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2472), - }, - [STATE(3026)] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_RPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(6110), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(6112), - [sym__elvis_operator] = ACTIONS(6114), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2476), - }, - [STATE(3027)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5211), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(3028)] = { - [sym_identifier] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_RPAREN] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), - [sym_optional_chain] = ACTIONS(2334), - [sym_static_chain] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_BSLASH] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), - [anon_sym_LT_GT] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), - [aux_sym_binary_expression_token1] = ACTIONS(2334), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [aux_sym_binary_expression_token2] = ACTIONS(2332), - [aux_sym_binary_expression_token3] = ACTIONS(2332), - [aux_sym_binary_expression_token4] = ACTIONS(2334), - [aux_sym_binary_expression_token5] = ACTIONS(2334), - [aux_sym_binary_expression_token6] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_IN] = ACTIONS(2332), - [anon_sym_InstanceOf] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_INSTANCEOF] = ACTIONS(2332), - [anon_sym_instanceOf] = ACTIONS(2332), - [sym__ternary_qmark] = ACTIONS(2334), - [sym__elvis_operator] = ACTIONS(2334), - [sym_logical_or] = ACTIONS(2334), - [sym__parameter_separator] = ACTIONS(2334), - }, - [STATE(3029)] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(5888), - [sym__elvis_operator] = ACTIONS(5890), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2476), - }, - [STATE(3030)] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(5888), - [sym__elvis_operator] = ACTIONS(5890), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2428), - }, - [STATE(3031)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3032)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3033)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3034)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3035)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3036)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3037)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3038)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3039)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3040)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3041)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3042)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3043)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3044)] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(5888), - [sym__elvis_operator] = ACTIONS(5890), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2460), - }, - [STATE(3045)] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5848), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5850), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5852), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5846), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5856), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5854), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5854), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_GT_GT_GT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5866), - [anon_sym_AMP] = ACTIONS(5868), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5876), - [anon_sym_BSLASH] = ACTIONS(5846), - [anon_sym_STAR_STAR] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5882), - [anon_sym_LT_GT] = ACTIONS(5882), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5882), - [aux_sym_binary_expression_token1] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5854), - [aux_sym_binary_expression_token2] = ACTIONS(5854), - [aux_sym_binary_expression_token3] = ACTIONS(5854), - [aux_sym_binary_expression_token4] = ACTIONS(5880), - [aux_sym_binary_expression_token5] = ACTIONS(5880), - [aux_sym_binary_expression_token6] = ACTIONS(5882), - [anon_sym_QMARK_QMARK] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5854), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_IN] = ACTIONS(5854), - [anon_sym_InstanceOf] = ACTIONS(5854), - [anon_sym_instanceof] = ACTIONS(5854), - [anon_sym_INSTANCEOF] = ACTIONS(5854), - [anon_sym_instanceOf] = ACTIONS(5854), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(5888), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(5862), - [sym_tag_linefeed] = ACTIONS(2468), - }, - [STATE(3046)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [sym__automatic_semicolon] = ACTIONS(1684), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_tag_linefeed] = ACTIONS(1684), - }, - [STATE(3047)] = { - [sym_identifier] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_INSTANCEOF] = ACTIONS(1672), - [anon_sym_instanceOf] = ACTIONS(1672), - [sym__automatic_semicolon] = ACTIONS(1670), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - [sym_tag_linefeed] = ACTIONS(1670), - }, - [STATE(3048)] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__automatic_semicolon] = ACTIONS(2347), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym_tag_linefeed] = ACTIONS(2347), - }, - [STATE(3049)] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2353), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym_tag_linefeed] = ACTIONS(2353), + [sym_tag_linefeed] = ACTIONS(2330), }, - [STATE(3050)] = { - [sym_identifier] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__automatic_semicolon] = ACTIONS(2436), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_tag_linefeed] = ACTIONS(2436), + [STATE(3086)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6143), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3051)] = { - [sym_identifier] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__automatic_semicolon] = ACTIONS(2440), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym_tag_linefeed] = ACTIONS(2440), + [STATE(3087)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6145), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3052)] = { + [STATE(3088)] = { + [sym_identifier] = ACTIONS(2244), [anon_sym_DOT] = ACTIONS(2246), [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(5536), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(5536), - [anon_sym_EQ] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_COLON] = ACTIONS(2244), [anon_sym_LBRACK] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2244), [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2244), [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2244), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2244), [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), [sym_optional_chain] = ACTIONS(2246), [sym_static_chain] = ACTIONS(2246), @@ -409822,7 +414353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2244), [anon_sym_SLASH] = ACTIONS(2244), [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2246), + [anon_sym_BSLASH] = ACTIONS(2244), [anon_sym_STAR_STAR] = ACTIONS(2246), [anon_sym_LT] = ACTIONS(2244), [anon_sym_LT_EQ] = ACTIONS(2246), @@ -409846,384 +414377,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(2244), [anon_sym_in] = ACTIONS(2244), [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_INSTANCEOF] = ACTIONS(2246), - [anon_sym_instanceOf] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(5536), + [anon_sym_InstanceOf] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_INSTANCEOF] = ACTIONS(2244), + [anon_sym_instanceOf] = ACTIONS(2244), [sym__ternary_qmark] = ACTIONS(2246), [sym__elvis_operator] = ACTIONS(2246), [sym_logical_or] = ACTIONS(2246), + [sym_tag_linefeed] = ACTIONS(2246), }, - [STATE(3053)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym_tag_linefeed] = ACTIONS(2444), - }, - [STATE(3054)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_RBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3055)] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__automatic_semicolon] = ACTIONS(1085), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_tag_linefeed] = ACTIONS(1085), - }, - [STATE(3056)] = { - [sym_arguments] = STATE(2999), - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), + [STATE(3089)] = { + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym__parameter_separator] = ACTIONS(1087), }, - [STATE(3057)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4574), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(5476), - [anon_sym_RBRACE] = ACTIONS(6116), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(3090)] = { + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_RPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(6008), + [sym__elvis_operator] = ACTIONS(6010), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2466), }, - [STATE(3058)] = { + [STATE(3091)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5276), + [anon_sym_RBRACE] = ACTIONS(5276), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5276), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -410287,30 +414602,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3059)] = { - [sym_identifier] = ACTIONS(507), + [STATE(3092)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6049), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6051), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6053), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6055), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6057), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6061), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6063), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6059), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6057), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_GT_GT_GT] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_CARET] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_SLASH] = ACTIONS(6047), + [anon_sym_PERCENT] = ACTIONS(6055), + [anon_sym_BSLASH] = ACTIONS(6055), + [anon_sym_STAR_STAR] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6057), + [anon_sym_LT_EQ] = ACTIONS(6059), + [anon_sym_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6063), + [anon_sym_LT_GT] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6063), + [aux_sym_binary_expression_token1] = ACTIONS(6063), + [anon_sym_GT_EQ] = ACTIONS(6059), + [anon_sym_GT] = ACTIONS(6057), + [aux_sym_binary_expression_token2] = ACTIONS(6057), + [aux_sym_binary_expression_token3] = ACTIONS(6057), + [aux_sym_binary_expression_token4] = ACTIONS(6059), + [aux_sym_binary_expression_token5] = ACTIONS(6059), + [aux_sym_binary_expression_token6] = ACTIONS(6063), + [anon_sym_QMARK_QMARK] = ACTIONS(6079), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6057), + [anon_sym_in] = ACTIONS(6057), + [anon_sym_IN] = ACTIONS(6057), + [anon_sym_InstanceOf] = ACTIONS(6059), + [anon_sym_instanceof] = ACTIONS(6059), + [anon_sym_INSTANCEOF] = ACTIONS(6059), + [anon_sym_instanceOf] = ACTIONS(6059), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(6081), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6051), + }, + [STATE(3093)] = { + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_RPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5968), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5970), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5972), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5966), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5976), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5974), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5974), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_GT_GT_GT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5988), + [anon_sym_CARET] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5994), + [anon_sym_DASH] = ACTIONS(5994), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_BSLASH] = ACTIONS(5966), + [anon_sym_STAR_STAR] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6002), + [anon_sym_LT_GT] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6002), + [aux_sym_binary_expression_token1] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5974), + [aux_sym_binary_expression_token2] = ACTIONS(5974), + [aux_sym_binary_expression_token3] = ACTIONS(5974), + [aux_sym_binary_expression_token4] = ACTIONS(6000), + [aux_sym_binary_expression_token5] = ACTIONS(6000), + [aux_sym_binary_expression_token6] = ACTIONS(6002), + [anon_sym_QMARK_QMARK] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5974), + [anon_sym_in] = ACTIONS(5974), + [anon_sym_IN] = ACTIONS(5974), + [anon_sym_InstanceOf] = ACTIONS(5974), + [anon_sym_instanceof] = ACTIONS(5974), + [anon_sym_INSTANCEOF] = ACTIONS(5974), + [anon_sym_instanceOf] = ACTIONS(5974), + [sym__ternary_qmark] = ACTIONS(6008), + [sym__elvis_operator] = ACTIONS(6010), + [sym_logical_or] = ACTIONS(5982), + [sym__parameter_separator] = ACTIONS(2470), + }, + [STATE(3094)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(6147), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -410326,7 +414785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -410350,24 +414809,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(3060)] = { + [STATE(3095)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6149), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3096)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5214), - [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5274), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5214), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -410427,394 +414957,755 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3061)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(6118), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(6118), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3097)] = { + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2338), + [sym_optional_chain] = ACTIONS(2342), + [sym_static_chain] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2338), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_BSLASH] = ACTIONS(2338), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_LT_GT] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [aux_sym_binary_expression_token1] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2338), + [aux_sym_binary_expression_token2] = ACTIONS(2338), + [aux_sym_binary_expression_token3] = ACTIONS(2338), + [aux_sym_binary_expression_token4] = ACTIONS(2342), + [aux_sym_binary_expression_token5] = ACTIONS(2342), + [aux_sym_binary_expression_token6] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_IN] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(2338), + [anon_sym_instanceof] = ACTIONS(2338), + [anon_sym_INSTANCEOF] = ACTIONS(2338), + [anon_sym_instanceOf] = ACTIONS(2338), + [sym__ternary_qmark] = ACTIONS(2342), + [sym__elvis_operator] = ACTIONS(2342), + [sym_logical_or] = ACTIONS(2342), + [sym__parameter_separator] = ACTIONS(2342), + }, + [STATE(3098)] = { + [sym_identifier] = ACTIONS(2520), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_COMMA] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_RPAREN] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2520), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_BSLASH] = ACTIONS(2520), + [anon_sym_STAR_STAR] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2520), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2522), + [anon_sym_LT_GT] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2520), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2522), + [aux_sym_binary_expression_token1] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [aux_sym_binary_expression_token2] = ACTIONS(2520), + [aux_sym_binary_expression_token3] = ACTIONS(2520), + [aux_sym_binary_expression_token4] = ACTIONS(2522), + [aux_sym_binary_expression_token5] = ACTIONS(2522), + [aux_sym_binary_expression_token6] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_IN] = ACTIONS(2520), + [anon_sym_InstanceOf] = ACTIONS(2520), + [anon_sym_instanceof] = ACTIONS(2520), + [anon_sym_INSTANCEOF] = ACTIONS(2520), + [anon_sym_instanceOf] = ACTIONS(2520), + [sym__ternary_qmark] = ACTIONS(2522), + [sym__elvis_operator] = ACTIONS(2522), + [sym_logical_or] = ACTIONS(2522), + [sym__parameter_separator] = ACTIONS(2522), + }, + [STATE(3099)] = { + [sym_identifier] = ACTIONS(2248), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_COLON] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2250), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2248), + [sym_optional_chain] = ACTIONS(2250), + [sym_static_chain] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2248), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_SLASH] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_BSLASH] = ACTIONS(2248), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2248), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_LT_GT] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2248), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [aux_sym_binary_expression_token1] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2248), + [aux_sym_binary_expression_token2] = ACTIONS(2248), + [aux_sym_binary_expression_token3] = ACTIONS(2248), + [aux_sym_binary_expression_token4] = ACTIONS(2250), + [aux_sym_binary_expression_token5] = ACTIONS(2250), + [aux_sym_binary_expression_token6] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2248), + [anon_sym_in] = ACTIONS(2248), + [anon_sym_IN] = ACTIONS(2248), + [anon_sym_InstanceOf] = ACTIONS(2248), + [anon_sym_instanceof] = ACTIONS(2248), + [anon_sym_INSTANCEOF] = ACTIONS(2248), + [anon_sym_instanceOf] = ACTIONS(2248), + [sym__ternary_qmark] = ACTIONS(2250), + [sym__elvis_operator] = ACTIONS(2250), + [sym_logical_or] = ACTIONS(2250), + [sym_tag_linefeed] = ACTIONS(2250), + }, + [STATE(3100)] = { + [sym_identifier] = ACTIONS(2524), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2524), + [sym_optional_chain] = ACTIONS(2526), + [sym_static_chain] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_BSLASH] = ACTIONS(2524), + [anon_sym_STAR_STAR] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2526), + [anon_sym_LT_GT] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2526), + [aux_sym_binary_expression_token1] = ACTIONS(2526), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [aux_sym_binary_expression_token2] = ACTIONS(2524), + [aux_sym_binary_expression_token3] = ACTIONS(2524), + [aux_sym_binary_expression_token4] = ACTIONS(2526), + [aux_sym_binary_expression_token5] = ACTIONS(2526), + [aux_sym_binary_expression_token6] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_IN] = ACTIONS(2524), + [anon_sym_InstanceOf] = ACTIONS(2524), + [anon_sym_instanceof] = ACTIONS(2524), + [anon_sym_INSTANCEOF] = ACTIONS(2524), + [anon_sym_instanceOf] = ACTIONS(2524), + [sym__ternary_qmark] = ACTIONS(2526), + [sym__elvis_operator] = ACTIONS(2526), + [sym_logical_or] = ACTIONS(2526), + [sym__parameter_separator] = ACTIONS(2526), + }, + [STATE(3101)] = { + [sym_identifier] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_RPAREN] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2392), + [sym_optional_chain] = ACTIONS(2394), + [sym_static_chain] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_BSLASH] = ACTIONS(2392), + [anon_sym_STAR_STAR] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2394), + [aux_sym_binary_expression_token1] = ACTIONS(2394), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [aux_sym_binary_expression_token2] = ACTIONS(2392), + [aux_sym_binary_expression_token3] = ACTIONS(2392), + [aux_sym_binary_expression_token4] = ACTIONS(2394), + [aux_sym_binary_expression_token5] = ACTIONS(2394), + [aux_sym_binary_expression_token6] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_IN] = ACTIONS(2392), + [anon_sym_InstanceOf] = ACTIONS(2392), + [anon_sym_instanceof] = ACTIONS(2392), + [anon_sym_INSTANCEOF] = ACTIONS(2392), + [anon_sym_instanceOf] = ACTIONS(2392), + [sym__ternary_qmark] = ACTIONS(2394), + [sym__elvis_operator] = ACTIONS(2394), + [sym_logical_or] = ACTIONS(2394), + [sym__parameter_separator] = ACTIONS(2394), }, - [STATE(3062)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_RPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(6110), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(6112), - [sym__elvis_operator] = ACTIONS(6114), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2310), + [STATE(3102)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [sym__automatic_semicolon] = ACTIONS(1588), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_tag_linefeed] = ACTIONS(1588), }, - [STATE(3063)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(6110), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(6112), - [sym__elvis_operator] = ACTIONS(6114), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2420), + [STATE(3103)] = { + [sym_identifier] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_COMMA] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_RPAREN] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2436), + [sym_optional_chain] = ACTIONS(2438), + [sym_static_chain] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_BSLASH] = ACTIONS(2436), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2436), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_LT_GT] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2436), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [aux_sym_binary_expression_token1] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [aux_sym_binary_expression_token2] = ACTIONS(2436), + [aux_sym_binary_expression_token3] = ACTIONS(2436), + [aux_sym_binary_expression_token4] = ACTIONS(2438), + [aux_sym_binary_expression_token5] = ACTIONS(2438), + [aux_sym_binary_expression_token6] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_IN] = ACTIONS(2436), + [anon_sym_InstanceOf] = ACTIONS(2436), + [anon_sym_instanceof] = ACTIONS(2436), + [anon_sym_INSTANCEOF] = ACTIONS(2436), + [anon_sym_instanceOf] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(2438), + [sym__elvis_operator] = ACTIONS(2438), + [sym_logical_or] = ACTIONS(2438), + [sym__parameter_separator] = ACTIONS(2438), }, - [STATE(3064)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_RPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6076), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6078), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6080), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6074), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6084), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6082), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6082), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6088), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_GT_GT_GT] = ACTIONS(6092), - [anon_sym_LT_LT] = ACTIONS(6092), - [anon_sym_AMP] = ACTIONS(6094), - [anon_sym_CARET] = ACTIONS(6096), - [anon_sym_PIPE] = ACTIONS(6098), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_BSLASH] = ACTIONS(6074), - [anon_sym_STAR_STAR] = ACTIONS(6104), - [anon_sym_LT] = ACTIONS(6082), - [anon_sym_LT_EQ] = ACTIONS(6106), - [anon_sym_EQ_EQ] = ACTIONS(6084), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6108), - [anon_sym_LT_GT] = ACTIONS(6108), - [anon_sym_BANG_EQ] = ACTIONS(6084), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6108), - [aux_sym_binary_expression_token1] = ACTIONS(6108), - [anon_sym_GT_EQ] = ACTIONS(6106), - [anon_sym_GT] = ACTIONS(6082), - [aux_sym_binary_expression_token2] = ACTIONS(6082), - [aux_sym_binary_expression_token3] = ACTIONS(6082), - [aux_sym_binary_expression_token4] = ACTIONS(6106), - [aux_sym_binary_expression_token5] = ACTIONS(6106), - [aux_sym_binary_expression_token6] = ACTIONS(6108), - [anon_sym_QMARK_QMARK] = ACTIONS(6110), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6082), - [anon_sym_in] = ACTIONS(6082), - [anon_sym_IN] = ACTIONS(6082), - [anon_sym_InstanceOf] = ACTIONS(6082), - [anon_sym_instanceof] = ACTIONS(6082), - [anon_sym_INSTANCEOF] = ACTIONS(6082), - [anon_sym_instanceOf] = ACTIONS(6082), - [sym__ternary_qmark] = ACTIONS(6112), - [sym__elvis_operator] = ACTIONS(6114), - [sym_logical_or] = ACTIONS(6088), - [sym__parameter_separator] = ACTIONS(2464), + [STATE(3104)] = { + [sym_identifier] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2456), + [sym_optional_chain] = ACTIONS(2458), + [sym_static_chain] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_BSLASH] = ACTIONS(2456), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2456), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_LT_GT] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2456), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [aux_sym_binary_expression_token1] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [aux_sym_binary_expression_token2] = ACTIONS(2456), + [aux_sym_binary_expression_token3] = ACTIONS(2456), + [aux_sym_binary_expression_token4] = ACTIONS(2458), + [aux_sym_binary_expression_token5] = ACTIONS(2458), + [aux_sym_binary_expression_token6] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2456), + [anon_sym_IN] = ACTIONS(2456), + [anon_sym_InstanceOf] = ACTIONS(2456), + [anon_sym_instanceof] = ACTIONS(2456), + [anon_sym_INSTANCEOF] = ACTIONS(2456), + [anon_sym_instanceOf] = ACTIONS(2456), + [sym__ternary_qmark] = ACTIONS(2458), + [sym__elvis_operator] = ACTIONS(2458), + [sym_logical_or] = ACTIONS(2458), + [sym__parameter_separator] = ACTIONS(2458), }, - [STATE(3065)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4722), - [aux_sym_object_pattern_repeat1] = STATE(4725), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(3105)] = { + [sym_identifier] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1598), + [anon_sym_instanceof] = ACTIONS(1598), + [anon_sym_INSTANCEOF] = ACTIONS(1598), + [anon_sym_instanceOf] = ACTIONS(1598), + [sym__automatic_semicolon] = ACTIONS(1596), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), + [sym_tag_linefeed] = ACTIONS(1596), }, - [STATE(3066)] = { + [STATE(3106)] = { + [sym_identifier] = ACTIONS(2440), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym_tag_linefeed] = ACTIONS(2443), + }, + [STATE(3107)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(6121), + [anon_sym_EQ] = ACTIONS(5283), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -410830,7 +415721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -410854,95 +415745,1462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(3067)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5268), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(3108)] = { + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2338), + [sym_optional_chain] = ACTIONS(2342), + [sym_static_chain] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2338), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_BSLASH] = ACTIONS(2338), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_LT_GT] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [aux_sym_binary_expression_token1] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2338), + [aux_sym_binary_expression_token2] = ACTIONS(2338), + [aux_sym_binary_expression_token3] = ACTIONS(2338), + [aux_sym_binary_expression_token4] = ACTIONS(2342), + [aux_sym_binary_expression_token5] = ACTIONS(2342), + [aux_sym_binary_expression_token6] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_In] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_IN] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(2338), + [anon_sym_instanceof] = ACTIONS(2338), + [anon_sym_INSTANCEOF] = ACTIONS(2338), + [anon_sym_instanceOf] = ACTIONS(2338), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(2342), + [sym__elvis_operator] = ACTIONS(2342), + [sym_logical_or] = ACTIONS(2342), + [sym_tag_linefeed] = ACTIONS(2342), }, - [STATE(3068)] = { - [sym_identifier] = ACTIONS(5261), + [STATE(3109)] = { + [sym_identifier] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2436), + [sym_optional_chain] = ACTIONS(2438), + [sym_static_chain] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_BSLASH] = ACTIONS(2436), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2436), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_LT_GT] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2436), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [aux_sym_binary_expression_token1] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [aux_sym_binary_expression_token2] = ACTIONS(2436), + [aux_sym_binary_expression_token3] = ACTIONS(2436), + [aux_sym_binary_expression_token4] = ACTIONS(2438), + [aux_sym_binary_expression_token5] = ACTIONS(2438), + [aux_sym_binary_expression_token6] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_IN] = ACTIONS(2436), + [anon_sym_InstanceOf] = ACTIONS(2436), + [anon_sym_instanceof] = ACTIONS(2436), + [anon_sym_INSTANCEOF] = ACTIONS(2436), + [anon_sym_instanceOf] = ACTIONS(2436), + [sym__automatic_semicolon] = ACTIONS(2438), + [sym__ternary_qmark] = ACTIONS(2438), + [sym__elvis_operator] = ACTIONS(2438), + [sym_logical_or] = ACTIONS(2438), + [sym_tag_linefeed] = ACTIONS(2438), + }, + [STATE(3110)] = { + [sym_identifier] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2456), + [sym_optional_chain] = ACTIONS(2458), + [sym_static_chain] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_BSLASH] = ACTIONS(2456), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2456), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_LT_GT] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2456), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [aux_sym_binary_expression_token1] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [aux_sym_binary_expression_token2] = ACTIONS(2456), + [aux_sym_binary_expression_token3] = ACTIONS(2456), + [aux_sym_binary_expression_token4] = ACTIONS(2458), + [aux_sym_binary_expression_token5] = ACTIONS(2458), + [aux_sym_binary_expression_token6] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2456), + [anon_sym_IN] = ACTIONS(2456), + [anon_sym_InstanceOf] = ACTIONS(2456), + [anon_sym_instanceof] = ACTIONS(2456), + [anon_sym_INSTANCEOF] = ACTIONS(2456), + [anon_sym_instanceOf] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2458), + [sym__ternary_qmark] = ACTIONS(2458), + [sym__elvis_operator] = ACTIONS(2458), + [sym_logical_or] = ACTIONS(2458), + [sym_tag_linefeed] = ACTIONS(2458), + }, + [STATE(3111)] = { + [sym_identifier] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2532), + [sym_optional_chain] = ACTIONS(2534), + [sym_static_chain] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_BSLASH] = ACTIONS(2532), + [anon_sym_STAR_STAR] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2534), + [anon_sym_LT_GT] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2534), + [aux_sym_binary_expression_token1] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [aux_sym_binary_expression_token2] = ACTIONS(2532), + [aux_sym_binary_expression_token3] = ACTIONS(2532), + [aux_sym_binary_expression_token4] = ACTIONS(2534), + [aux_sym_binary_expression_token5] = ACTIONS(2534), + [aux_sym_binary_expression_token6] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_IN] = ACTIONS(2532), + [anon_sym_InstanceOf] = ACTIONS(2532), + [anon_sym_instanceof] = ACTIONS(2532), + [anon_sym_INSTANCEOF] = ACTIONS(2532), + [anon_sym_instanceOf] = ACTIONS(2532), + [sym__automatic_semicolon] = ACTIONS(2534), + [sym__ternary_qmark] = ACTIONS(2534), + [sym__elvis_operator] = ACTIONS(2534), + [sym_logical_or] = ACTIONS(2534), + [sym_tag_linefeed] = ACTIONS(2534), + }, + [STATE(3112)] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__automatic_semicolon] = ACTIONS(2449), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym_tag_linefeed] = ACTIONS(2449), + }, + [STATE(3113)] = { + [sym_identifier] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__automatic_semicolon] = ACTIONS(2530), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_tag_linefeed] = ACTIONS(2530), + }, + [STATE(3114)] = { + [sym_identifier] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2412), + [sym_optional_chain] = ACTIONS(2414), + [sym_static_chain] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_BSLASH] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_LT_GT] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [aux_sym_binary_expression_token1] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [aux_sym_binary_expression_token2] = ACTIONS(2412), + [aux_sym_binary_expression_token3] = ACTIONS(2412), + [aux_sym_binary_expression_token4] = ACTIONS(2414), + [aux_sym_binary_expression_token5] = ACTIONS(2414), + [aux_sym_binary_expression_token6] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_IN] = ACTIONS(2412), + [anon_sym_InstanceOf] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_INSTANCEOF] = ACTIONS(2412), + [anon_sym_instanceOf] = ACTIONS(2412), + [sym__automatic_semicolon] = ACTIONS(2414), + [sym__ternary_qmark] = ACTIONS(2414), + [sym__elvis_operator] = ACTIONS(2414), + [sym_logical_or] = ACTIONS(2414), + [sym_tag_linefeed] = ACTIONS(2414), + }, + [STATE(3115)] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1955), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1947), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1947), + [sym_optional_chain] = ACTIONS(1955), + [sym_static_chain] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_BSLASH] = ACTIONS(1947), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_LT_GT] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [aux_sym_binary_expression_token1] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1947), + [aux_sym_binary_expression_token2] = ACTIONS(1947), + [aux_sym_binary_expression_token3] = ACTIONS(1947), + [aux_sym_binary_expression_token4] = ACTIONS(1955), + [aux_sym_binary_expression_token5] = ACTIONS(1955), + [aux_sym_binary_expression_token6] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1955), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1947), + [anon_sym_IN] = ACTIONS(1947), + [anon_sym_InstanceOf] = ACTIONS(1947), + [anon_sym_instanceof] = ACTIONS(1947), + [anon_sym_INSTANCEOF] = ACTIONS(1947), + [anon_sym_instanceOf] = ACTIONS(1947), + [sym__ternary_qmark] = ACTIONS(1955), + [sym__elvis_operator] = ACTIONS(1955), + [sym_logical_or] = ACTIONS(1955), + [sym_tag_linefeed] = ACTIONS(1955), + }, + [STATE(3116)] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2566), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym_tag_linefeed] = ACTIONS(2566), + }, + [STATE(3117)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3118)] = { + [sym_identifier] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2540), + [sym_optional_chain] = ACTIONS(2542), + [sym_static_chain] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_BSLASH] = ACTIONS(2540), + [anon_sym_STAR_STAR] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2540), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2542), + [anon_sym_LT_GT] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2540), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2542), + [aux_sym_binary_expression_token1] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [aux_sym_binary_expression_token2] = ACTIONS(2540), + [aux_sym_binary_expression_token3] = ACTIONS(2540), + [aux_sym_binary_expression_token4] = ACTIONS(2542), + [aux_sym_binary_expression_token5] = ACTIONS(2542), + [aux_sym_binary_expression_token6] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_IN] = ACTIONS(2540), + [anon_sym_InstanceOf] = ACTIONS(2540), + [anon_sym_instanceof] = ACTIONS(2540), + [anon_sym_INSTANCEOF] = ACTIONS(2540), + [anon_sym_instanceOf] = ACTIONS(2540), + [sym__automatic_semicolon] = ACTIONS(2542), + [sym__ternary_qmark] = ACTIONS(2542), + [sym__elvis_operator] = ACTIONS(2542), + [sym_logical_or] = ACTIONS(2542), + [sym_tag_linefeed] = ACTIONS(2542), + }, + [STATE(3119)] = { + [sym_identifier] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2234), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2232), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2232), + [sym_optional_chain] = ACTIONS(2234), + [sym_static_chain] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2234), + [anon_sym_PIPE_PIPE] = ACTIONS(2234), + [anon_sym_GT_GT] = ACTIONS(2232), + [anon_sym_GT_GT_GT] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2234), + [anon_sym_BSLASH] = ACTIONS(2232), + [anon_sym_STAR_STAR] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_LT_EQ] = ACTIONS(2234), + [anon_sym_EQ_EQ] = ACTIONS(2232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2234), + [anon_sym_LT_GT] = ACTIONS(2234), + [anon_sym_BANG_EQ] = ACTIONS(2232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2234), + [aux_sym_binary_expression_token1] = ACTIONS(2234), + [anon_sym_GT_EQ] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2232), + [aux_sym_binary_expression_token2] = ACTIONS(2232), + [aux_sym_binary_expression_token3] = ACTIONS(2232), + [aux_sym_binary_expression_token4] = ACTIONS(2234), + [aux_sym_binary_expression_token5] = ACTIONS(2234), + [aux_sym_binary_expression_token6] = ACTIONS(2234), + [anon_sym_QMARK_QMARK] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2232), + [anon_sym_in] = ACTIONS(2232), + [anon_sym_IN] = ACTIONS(2232), + [anon_sym_InstanceOf] = ACTIONS(2232), + [anon_sym_instanceof] = ACTIONS(2232), + [anon_sym_INSTANCEOF] = ACTIONS(2232), + [anon_sym_instanceOf] = ACTIONS(2232), + [sym__ternary_qmark] = ACTIONS(2234), + [sym__elvis_operator] = ACTIONS(2234), + [sym_logical_or] = ACTIONS(2234), + [sym_tag_linefeed] = ACTIONS(2234), + }, + [STATE(3120)] = { + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__automatic_semicolon] = ACTIONS(2558), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym_tag_linefeed] = ACTIONS(2558), + }, + [STATE(3121)] = { + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__automatic_semicolon] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_tag_linefeed] = ACTIONS(1087), + }, + [STATE(3122)] = { + [sym_identifier] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_RPAREN] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2472), + [sym_optional_chain] = ACTIONS(2474), + [sym_static_chain] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_BSLASH] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), + [anon_sym_LT_GT] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), + [aux_sym_binary_expression_token1] = ACTIONS(2474), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [aux_sym_binary_expression_token2] = ACTIONS(2472), + [aux_sym_binary_expression_token3] = ACTIONS(2472), + [aux_sym_binary_expression_token4] = ACTIONS(2474), + [aux_sym_binary_expression_token5] = ACTIONS(2474), + [aux_sym_binary_expression_token6] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_IN] = ACTIONS(2472), + [anon_sym_InstanceOf] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_INSTANCEOF] = ACTIONS(2472), + [anon_sym_instanceOf] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2474), + [sym__elvis_operator] = ACTIONS(2474), + [sym_logical_or] = ACTIONS(2474), + [sym__parameter_separator] = ACTIONS(2474), + }, + [STATE(3123)] = { + [sym_identifier] = ACTIONS(2548), + [anon_sym_DOT] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_RPAREN] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2548), + [sym_optional_chain] = ACTIONS(2550), + [sym_static_chain] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(2548), + [anon_sym_STAR_STAR] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2550), + [anon_sym_LT_GT] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2550), + [aux_sym_binary_expression_token1] = ACTIONS(2550), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [aux_sym_binary_expression_token2] = ACTIONS(2548), + [aux_sym_binary_expression_token3] = ACTIONS(2548), + [aux_sym_binary_expression_token4] = ACTIONS(2550), + [aux_sym_binary_expression_token5] = ACTIONS(2550), + [aux_sym_binary_expression_token6] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_IN] = ACTIONS(2548), + [anon_sym_InstanceOf] = ACTIONS(2548), + [anon_sym_instanceof] = ACTIONS(2548), + [anon_sym_INSTANCEOF] = ACTIONS(2548), + [anon_sym_instanceOf] = ACTIONS(2548), + [sym__ternary_qmark] = ACTIONS(2550), + [sym__elvis_operator] = ACTIONS(2550), + [sym_logical_or] = ACTIONS(2550), + [sym__parameter_separator] = ACTIONS(2550), + }, + [STATE(3124)] = { + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym__parameter_separator] = ACTIONS(1087), + }, + [STATE(3125)] = { + [sym_identifier] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2532), + [sym_optional_chain] = ACTIONS(2534), + [sym_static_chain] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_BSLASH] = ACTIONS(2532), + [anon_sym_STAR_STAR] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2534), + [anon_sym_LT_GT] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2534), + [aux_sym_binary_expression_token1] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [aux_sym_binary_expression_token2] = ACTIONS(2532), + [aux_sym_binary_expression_token3] = ACTIONS(2532), + [aux_sym_binary_expression_token4] = ACTIONS(2534), + [aux_sym_binary_expression_token5] = ACTIONS(2534), + [aux_sym_binary_expression_token6] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_IN] = ACTIONS(2532), + [anon_sym_InstanceOf] = ACTIONS(2532), + [anon_sym_instanceof] = ACTIONS(2532), + [anon_sym_INSTANCEOF] = ACTIONS(2532), + [anon_sym_instanceOf] = ACTIONS(2532), + [sym__ternary_qmark] = ACTIONS(2534), + [sym__elvis_operator] = ACTIONS(2534), + [sym_logical_or] = ACTIONS(2534), + [sym__parameter_separator] = ACTIONS(2534), + }, + [STATE(3126)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4620), + [aux_sym_object_pattern_repeat1] = STATE(4630), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(3127)] = { + [sym_identifier] = ACTIONS(2496), + [anon_sym_DOT] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2496), + [sym_optional_chain] = ACTIONS(2498), + [sym_static_chain] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_BSLASH] = ACTIONS(2496), + [anon_sym_STAR_STAR] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), + [anon_sym_LT_GT] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), + [aux_sym_binary_expression_token1] = ACTIONS(2498), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [aux_sym_binary_expression_token2] = ACTIONS(2496), + [aux_sym_binary_expression_token3] = ACTIONS(2496), + [aux_sym_binary_expression_token4] = ACTIONS(2498), + [aux_sym_binary_expression_token5] = ACTIONS(2498), + [aux_sym_binary_expression_token6] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2496), + [anon_sym_in] = ACTIONS(2496), + [anon_sym_IN] = ACTIONS(2496), + [anon_sym_InstanceOf] = ACTIONS(2496), + [anon_sym_instanceof] = ACTIONS(2496), + [anon_sym_INSTANCEOF] = ACTIONS(2496), + [anon_sym_instanceOf] = ACTIONS(2496), + [sym__automatic_semicolon] = ACTIONS(2498), + [sym__ternary_qmark] = ACTIONS(2498), + [sym__elvis_operator] = ACTIONS(2498), + [sym_logical_or] = ACTIONS(2498), + [sym_tag_linefeed] = ACTIONS(2498), + }, + [STATE(3128)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5196), + [anon_sym_COLON] = ACTIONS(6153), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -411006,14 +417264,2148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(3069)] = { - [sym_identifier] = ACTIONS(507), + [STATE(3129)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + }, + [STATE(3130)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(6157), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3131)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(5870), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5870), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5878), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5878), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(5888), + [anon_sym_GT_GT_GT] = ACTIONS(5890), + [anon_sym_LT_LT] = ACTIONS(5890), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [anon_sym_SLASH] = ACTIONS(5870), + [anon_sym_PERCENT] = ACTIONS(5900), + [anon_sym_BSLASH] = ACTIONS(5870), + [anon_sym_STAR_STAR] = ACTIONS(5902), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_EQ] = ACTIONS(5904), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(5904), + [anon_sym_GT] = ACTIONS(5878), + [aux_sym_binary_expression_token2] = ACTIONS(5878), + [aux_sym_binary_expression_token3] = ACTIONS(5878), + [aux_sym_binary_expression_token4] = ACTIONS(5904), + [aux_sym_binary_expression_token5] = ACTIONS(5904), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5878), + [anon_sym_in] = ACTIONS(5878), + [anon_sym_IN] = ACTIONS(5878), + [anon_sym_InstanceOf] = ACTIONS(5878), + [anon_sym_instanceof] = ACTIONS(5878), + [anon_sym_INSTANCEOF] = ACTIONS(5878), + [anon_sym_instanceOf] = ACTIONS(5878), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3132)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3133)] = { + [sym_identifier] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2420), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2420), + [sym_optional_chain] = ACTIONS(2422), + [sym_static_chain] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_PIPE_PIPE] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2422), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2422), + [anon_sym_BSLASH] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2422), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2422), + [anon_sym_LT_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2422), + [aux_sym_binary_expression_token1] = ACTIONS(2422), + [anon_sym_GT_EQ] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2420), + [aux_sym_binary_expression_token2] = ACTIONS(2420), + [aux_sym_binary_expression_token3] = ACTIONS(2420), + [aux_sym_binary_expression_token4] = ACTIONS(2422), + [aux_sym_binary_expression_token5] = ACTIONS(2422), + [aux_sym_binary_expression_token6] = ACTIONS(2422), + [anon_sym_QMARK_QMARK] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_IN] = ACTIONS(2420), + [anon_sym_InstanceOf] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_INSTANCEOF] = ACTIONS(2420), + [anon_sym_instanceOf] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2422), + [sym__elvis_operator] = ACTIONS(2422), + [sym_logical_or] = ACTIONS(2422), + [sym_tag_linefeed] = ACTIONS(2422), + }, + [STATE(3134)] = { + [sym_identifier] = ACTIONS(2452), + [anon_sym_DOT] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2452), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2452), + [sym_optional_chain] = ACTIONS(2454), + [sym_static_chain] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_GT_GT_GT] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_CARET] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(2454), + [anon_sym_BSLASH] = ACTIONS(2452), + [anon_sym_STAR_STAR] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2452), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2454), + [anon_sym_LT_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2452), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2454), + [aux_sym_binary_expression_token1] = ACTIONS(2454), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2452), + [aux_sym_binary_expression_token2] = ACTIONS(2452), + [aux_sym_binary_expression_token3] = ACTIONS(2452), + [aux_sym_binary_expression_token4] = ACTIONS(2454), + [aux_sym_binary_expression_token5] = ACTIONS(2454), + [aux_sym_binary_expression_token6] = ACTIONS(2454), + [anon_sym_QMARK_QMARK] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(2452), + [anon_sym_IN] = ACTIONS(2452), + [anon_sym_InstanceOf] = ACTIONS(2452), + [anon_sym_instanceof] = ACTIONS(2452), + [anon_sym_INSTANCEOF] = ACTIONS(2452), + [anon_sym_instanceOf] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2454), + [sym__elvis_operator] = ACTIONS(2454), + [sym_logical_or] = ACTIONS(2454), + [sym_tag_linefeed] = ACTIONS(2454), + }, + [STATE(3135)] = { + [sym_identifier] = ACTIONS(2460), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2460), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2460), + [sym_optional_chain] = ACTIONS(2462), + [sym_static_chain] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_BSLASH] = ACTIONS(2460), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_LT_GT] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [aux_sym_binary_expression_token1] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2460), + [aux_sym_binary_expression_token2] = ACTIONS(2460), + [aux_sym_binary_expression_token3] = ACTIONS(2460), + [aux_sym_binary_expression_token4] = ACTIONS(2462), + [aux_sym_binary_expression_token5] = ACTIONS(2462), + [aux_sym_binary_expression_token6] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2460), + [anon_sym_in] = ACTIONS(2460), + [anon_sym_IN] = ACTIONS(2460), + [anon_sym_InstanceOf] = ACTIONS(2460), + [anon_sym_instanceof] = ACTIONS(2460), + [anon_sym_INSTANCEOF] = ACTIONS(2460), + [anon_sym_instanceOf] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2462), + [sym__elvis_operator] = ACTIONS(2462), + [sym_logical_or] = ACTIONS(2462), + [sym_tag_linefeed] = ACTIONS(2462), + }, + [STATE(3136)] = { + [sym_identifier] = ACTIONS(2440), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym_tag_linefeed] = ACTIONS(2443), + }, + [STATE(3137)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4780), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6164), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3138)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6166), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3139)] = { + [sym_identifier] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2504), + [sym_optional_chain] = ACTIONS(2506), + [sym_static_chain] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_BSLASH] = ACTIONS(2504), + [anon_sym_STAR_STAR] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2504), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), + [anon_sym_LT_GT] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2504), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), + [aux_sym_binary_expression_token1] = ACTIONS(2506), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [aux_sym_binary_expression_token2] = ACTIONS(2504), + [aux_sym_binary_expression_token3] = ACTIONS(2504), + [aux_sym_binary_expression_token4] = ACTIONS(2506), + [aux_sym_binary_expression_token5] = ACTIONS(2506), + [aux_sym_binary_expression_token6] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2504), + [anon_sym_in] = ACTIONS(2504), + [anon_sym_IN] = ACTIONS(2504), + [anon_sym_InstanceOf] = ACTIONS(2504), + [anon_sym_instanceof] = ACTIONS(2504), + [anon_sym_INSTANCEOF] = ACTIONS(2504), + [anon_sym_instanceOf] = ACTIONS(2504), + [sym__ternary_qmark] = ACTIONS(2506), + [sym__elvis_operator] = ACTIONS(2506), + [sym_logical_or] = ACTIONS(2506), + [sym_tag_linefeed] = ACTIONS(2506), + }, + [STATE(3140)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6169), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3141)] = { + [sym_identifier] = ACTIONS(6171), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(6175), + [anon_sym_RPAREN] = ACTIONS(6175), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6179), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6181), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE_PIPE] = ACTIONS(6189), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(6211), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(6213), + [sym__elvis_operator] = ACTIONS(6215), + [sym_logical_or] = ACTIONS(6189), + [sym__parameter_separator] = ACTIONS(6175), + }, + [STATE(3142)] = { + [sym_identifier] = ACTIONS(2520), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2520), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2520), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2522), + [anon_sym_PIPE_PIPE] = ACTIONS(2522), + [anon_sym_GT_GT] = ACTIONS(2520), + [anon_sym_GT_GT_GT] = ACTIONS(2522), + [anon_sym_LT_LT] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_CARET] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_PERCENT] = ACTIONS(2522), + [anon_sym_BSLASH] = ACTIONS(2520), + [anon_sym_STAR_STAR] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_LT_EQ] = ACTIONS(2522), + [anon_sym_EQ_EQ] = ACTIONS(2520), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2522), + [anon_sym_LT_GT] = ACTIONS(2522), + [anon_sym_BANG_EQ] = ACTIONS(2520), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2522), + [aux_sym_binary_expression_token1] = ACTIONS(2522), + [anon_sym_GT_EQ] = ACTIONS(2522), + [anon_sym_GT] = ACTIONS(2520), + [aux_sym_binary_expression_token2] = ACTIONS(2520), + [aux_sym_binary_expression_token3] = ACTIONS(2520), + [aux_sym_binary_expression_token4] = ACTIONS(2522), + [aux_sym_binary_expression_token5] = ACTIONS(2522), + [aux_sym_binary_expression_token6] = ACTIONS(2522), + [anon_sym_QMARK_QMARK] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_IN] = ACTIONS(2520), + [anon_sym_InstanceOf] = ACTIONS(2520), + [anon_sym_instanceof] = ACTIONS(2520), + [anon_sym_INSTANCEOF] = ACTIONS(2520), + [anon_sym_instanceOf] = ACTIONS(2520), + [sym__ternary_qmark] = ACTIONS(2522), + [sym__elvis_operator] = ACTIONS(2522), + [sym_logical_or] = ACTIONS(2522), + [sym_tag_linefeed] = ACTIONS(2522), + }, + [STATE(3143)] = { + [sym_identifier] = ACTIONS(2496), + [anon_sym_DOT] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_RPAREN] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2496), + [sym_optional_chain] = ACTIONS(2498), + [sym_static_chain] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_BSLASH] = ACTIONS(2496), + [anon_sym_STAR_STAR] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), + [anon_sym_LT_GT] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), + [aux_sym_binary_expression_token1] = ACTIONS(2498), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [aux_sym_binary_expression_token2] = ACTIONS(2496), + [aux_sym_binary_expression_token3] = ACTIONS(2496), + [aux_sym_binary_expression_token4] = ACTIONS(2498), + [aux_sym_binary_expression_token5] = ACTIONS(2498), + [aux_sym_binary_expression_token6] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2496), + [anon_sym_in] = ACTIONS(2496), + [anon_sym_IN] = ACTIONS(2496), + [anon_sym_InstanceOf] = ACTIONS(2496), + [anon_sym_instanceof] = ACTIONS(2496), + [anon_sym_INSTANCEOF] = ACTIONS(2496), + [anon_sym_instanceOf] = ACTIONS(2496), + [sym__ternary_qmark] = ACTIONS(2498), + [sym__elvis_operator] = ACTIONS(2498), + [sym_logical_or] = ACTIONS(2498), + }, + [STATE(3144)] = { + [sym_identifier] = ACTIONS(2500), + [anon_sym_DOT] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_COMMA] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_RPAREN] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2500), + [sym_optional_chain] = ACTIONS(2502), + [sym_static_chain] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(2500), + [anon_sym_STAR_STAR] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2500), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), + [anon_sym_LT_GT] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2500), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), + [aux_sym_binary_expression_token1] = ACTIONS(2502), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [aux_sym_binary_expression_token2] = ACTIONS(2500), + [aux_sym_binary_expression_token3] = ACTIONS(2500), + [aux_sym_binary_expression_token4] = ACTIONS(2502), + [aux_sym_binary_expression_token5] = ACTIONS(2502), + [aux_sym_binary_expression_token6] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2500), + [anon_sym_in] = ACTIONS(2500), + [anon_sym_IN] = ACTIONS(2500), + [anon_sym_InstanceOf] = ACTIONS(2500), + [anon_sym_instanceof] = ACTIONS(2500), + [anon_sym_INSTANCEOF] = ACTIONS(2500), + [anon_sym_instanceOf] = ACTIONS(2500), + [sym__ternary_qmark] = ACTIONS(2502), + [sym__elvis_operator] = ACTIONS(2502), + [sym_logical_or] = ACTIONS(2502), + }, + [STATE(3145)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6219), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3146)] = { + [sym_identifier] = ACTIONS(2524), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2524), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2524), + [sym_optional_chain] = ACTIONS(2526), + [sym_static_chain] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_GT_GT] = ACTIONS(2524), + [anon_sym_GT_GT_GT] = ACTIONS(2526), + [anon_sym_LT_LT] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_PERCENT] = ACTIONS(2526), + [anon_sym_BSLASH] = ACTIONS(2524), + [anon_sym_STAR_STAR] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_EQ_EQ] = ACTIONS(2524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2526), + [anon_sym_LT_GT] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2526), + [aux_sym_binary_expression_token1] = ACTIONS(2526), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_GT] = ACTIONS(2524), + [aux_sym_binary_expression_token2] = ACTIONS(2524), + [aux_sym_binary_expression_token3] = ACTIONS(2524), + [aux_sym_binary_expression_token4] = ACTIONS(2526), + [aux_sym_binary_expression_token5] = ACTIONS(2526), + [aux_sym_binary_expression_token6] = ACTIONS(2526), + [anon_sym_QMARK_QMARK] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_IN] = ACTIONS(2524), + [anon_sym_InstanceOf] = ACTIONS(2524), + [anon_sym_instanceof] = ACTIONS(2524), + [anon_sym_INSTANCEOF] = ACTIONS(2524), + [anon_sym_instanceOf] = ACTIONS(2524), + [sym__ternary_qmark] = ACTIONS(2526), + [sym__elvis_operator] = ACTIONS(2526), + [sym_logical_or] = ACTIONS(2526), + [sym_tag_linefeed] = ACTIONS(2526), + }, + [STATE(3147)] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym_tag_linefeed] = ACTIONS(2449), + }, + [STATE(3148)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(6256), + [sym__elvis_operator] = ACTIONS(6258), + [sym_logical_or] = ACTIONS(6226), + }, + [STATE(3149)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3150)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4745), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6263), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3151)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(6256), + [sym__elvis_operator] = ACTIONS(6258), + [sym_logical_or] = ACTIONS(6226), + }, + [STATE(3152)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4762), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6265), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3153)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(6267), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3154)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4514), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6274), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6274), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), + }, + [STATE(3155)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4745), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3156)] = { + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6314), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), + }, + [STATE(3157)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3158)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6319), + [anon_sym_RBRACE] = ACTIONS(6319), + [anon_sym_RPAREN] = ACTIONS(6319), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6319), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3159)] = { + [sym_identifier] = ACTIONS(5264), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_RPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(507), [aux_sym__operator_shaped_name_token2] = ACTIONS(507), @@ -411067,1875 +419459,4426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(3160)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(6256), + [sym__elvis_operator] = ACTIONS(6258), + [sym_logical_or] = ACTIONS(6226), + }, + [STATE(3161)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3162)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3163)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6090), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), + }, + [STATE(3164)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3165)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3166)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), + }, + [STATE(3167)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3168)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3169)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3170)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3171)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3172)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3173)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3174)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3070)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_SEMI] = ACTIONS(6123), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(6123), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3175)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6226), }, - [STATE(3071)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), + [STATE(3176)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6121), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), + }, + [STATE(3177)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(6256), + [sym__elvis_operator] = ACTIONS(6258), + [sym_logical_or] = ACTIONS(6226), + }, + [STATE(3178)] = { + [sym_identifier] = ACTIONS(2508), + [anon_sym_DOT] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_COMMA] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_RPAREN] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2508), + [sym_optional_chain] = ACTIONS(2510), + [sym_static_chain] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_BSLASH] = ACTIONS(2508), + [anon_sym_STAR_STAR] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), + [anon_sym_LT_GT] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), + [aux_sym_binary_expression_token1] = ACTIONS(2510), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [aux_sym_binary_expression_token2] = ACTIONS(2508), + [aux_sym_binary_expression_token3] = ACTIONS(2508), + [aux_sym_binary_expression_token4] = ACTIONS(2510), + [aux_sym_binary_expression_token5] = ACTIONS(2510), + [aux_sym_binary_expression_token6] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_IN] = ACTIONS(2508), + [anon_sym_InstanceOf] = ACTIONS(2508), + [anon_sym_instanceof] = ACTIONS(2508), + [anon_sym_INSTANCEOF] = ACTIONS(2508), + [anon_sym_instanceOf] = ACTIONS(2508), + [sym__ternary_qmark] = ACTIONS(2510), + [sym__elvis_operator] = ACTIONS(2510), + [sym_logical_or] = ACTIONS(2510), + }, + [STATE(3179)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), + }, + [STATE(3180)] = { + [sym_identifier] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1590), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1590), + [sym_optional_chain] = ACTIONS(1588), + [sym_static_chain] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1588), + [anon_sym_PIPE_PIPE] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1590), + [anon_sym_GT_GT_GT] = ACTIONS(1588), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_STAR_STAR] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1588), + [anon_sym_LT_GT] = ACTIONS(1588), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1588), + [aux_sym_binary_expression_token1] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1590), + [aux_sym_binary_expression_token2] = ACTIONS(1590), + [aux_sym_binary_expression_token3] = ACTIONS(1590), + [aux_sym_binary_expression_token4] = ACTIONS(1588), + [aux_sym_binary_expression_token5] = ACTIONS(1588), + [aux_sym_binary_expression_token6] = ACTIONS(1588), + [anon_sym_QMARK_QMARK] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [anon_sym_IN] = ACTIONS(1590), + [anon_sym_InstanceOf] = ACTIONS(1590), + [anon_sym_instanceof] = ACTIONS(1590), + [anon_sym_INSTANCEOF] = ACTIONS(1590), + [anon_sym_instanceOf] = ACTIONS(1590), + [sym__ternary_qmark] = ACTIONS(1588), + [sym__elvis_operator] = ACTIONS(1588), + [sym_logical_or] = ACTIONS(1588), + [sym_tag_linefeed] = ACTIONS(1588), + }, + [STATE(3181)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6123), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), + }, + [STATE(3182)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), + }, + [STATE(3183)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), [anon_sym_RBRACK] = ACTIONS(6125), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3072)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4730), - [aux_sym_object_pattern_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(5641), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [STATE(3184)] = { + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_RPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6179), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6181), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE_PIPE] = ACTIONS(6189), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(6211), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(6213), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6189), + [sym__parameter_separator] = ACTIONS(2586), }, - [STATE(3073)] = { - [sym_identifier] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(2572), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2570), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2570), - [sym_optional_chain] = ACTIONS(2572), - [sym_static_chain] = ACTIONS(2572), - [anon_sym_AMP_AMP] = ACTIONS(2572), - [anon_sym_PIPE_PIPE] = ACTIONS(2572), - [anon_sym_GT_GT] = ACTIONS(2570), - [anon_sym_GT_GT_GT] = ACTIONS(2572), - [anon_sym_LT_LT] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_CARET] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_PERCENT] = ACTIONS(2572), - [anon_sym_BSLASH] = ACTIONS(2570), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2570), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2572), - [anon_sym_LT_GT] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2570), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2572), - [aux_sym_binary_expression_token1] = ACTIONS(2572), - [anon_sym_GT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2570), - [aux_sym_binary_expression_token2] = ACTIONS(2570), - [aux_sym_binary_expression_token3] = ACTIONS(2570), - [aux_sym_binary_expression_token4] = ACTIONS(2572), - [aux_sym_binary_expression_token5] = ACTIONS(2572), - [aux_sym_binary_expression_token6] = ACTIONS(2572), - [anon_sym_QMARK_QMARK] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [anon_sym_IN] = ACTIONS(2570), - [anon_sym_InstanceOf] = ACTIONS(2570), - [anon_sym_instanceof] = ACTIONS(2570), - [anon_sym_INSTANCEOF] = ACTIONS(2570), - [anon_sym_instanceOf] = ACTIONS(2570), - [sym__ternary_qmark] = ACTIONS(2572), - [sym__elvis_operator] = ACTIONS(2572), - [sym_logical_or] = ACTIONS(2572), - [sym_tag_linefeed] = ACTIONS(2572), + [STATE(3185)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(3074)] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2284), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2284), - [anon_sym_instanceof] = ACTIONS(2284), - [anon_sym_INSTANCEOF] = ACTIONS(2284), - [anon_sym_instanceOf] = ACTIONS(2284), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), - [sym_tag_linefeed] = ACTIONS(2286), + [STATE(3186)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6363), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3075)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), + [STATE(3187)] = { + [sym_identifier] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1598), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1598), + [sym_optional_chain] = ACTIONS(1596), + [sym_static_chain] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1596), + [anon_sym_PIPE_PIPE] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1598), + [anon_sym_GT_GT_GT] = ACTIONS(1596), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1596), + [anon_sym_LT_GT] = ACTIONS(1596), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1596), + [aux_sym_binary_expression_token1] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1598), + [aux_sym_binary_expression_token2] = ACTIONS(1598), + [aux_sym_binary_expression_token3] = ACTIONS(1598), + [aux_sym_binary_expression_token4] = ACTIONS(1596), + [aux_sym_binary_expression_token5] = ACTIONS(1596), + [aux_sym_binary_expression_token6] = ACTIONS(1596), + [anon_sym_QMARK_QMARK] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_IN] = ACTIONS(1598), + [anon_sym_InstanceOf] = ACTIONS(1598), + [anon_sym_instanceof] = ACTIONS(1598), + [anon_sym_INSTANCEOF] = ACTIONS(1598), + [anon_sym_instanceOf] = ACTIONS(1598), + [sym__ternary_qmark] = ACTIONS(1596), + [sym__elvis_operator] = ACTIONS(1596), + [sym_logical_or] = ACTIONS(1596), + [sym_tag_linefeed] = ACTIONS(1596), + }, + [STATE(3188)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(6398), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(6400), + [sym__elvis_operator] = ACTIONS(6402), + [sym_logical_or] = ACTIONS(6370), + }, + [STATE(3189)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6131), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6131), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6097), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3076)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3190)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6099), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3077)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6172), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3191)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6404), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3078)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3192)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6407), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3079)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3193)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6410), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3080)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3194)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6020), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(6398), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(6400), + [sym__elvis_operator] = ACTIONS(6402), + [sym_logical_or] = ACTIONS(6370), }, - [STATE(3081)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3195)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6022), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(6398), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(6400), + [sym__elvis_operator] = ACTIONS(6402), + [sym_logical_or] = ACTIONS(6370), }, - [STATE(3082)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3196)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(6398), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(6400), + [sym__elvis_operator] = ACTIONS(6402), + [sym_logical_or] = ACTIONS(6370), }, - [STATE(3083)] = { - [sym_identifier] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_RPAREN] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), - [sym_optional_chain] = ACTIONS(2334), - [sym_static_chain] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_BSLASH] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), - [anon_sym_LT_GT] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), - [aux_sym_binary_expression_token1] = ACTIONS(2334), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [aux_sym_binary_expression_token2] = ACTIONS(2332), - [aux_sym_binary_expression_token3] = ACTIONS(2332), - [aux_sym_binary_expression_token4] = ACTIONS(2334), - [aux_sym_binary_expression_token5] = ACTIONS(2334), - [aux_sym_binary_expression_token6] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), + [STATE(3197)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3198)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_IN] = ACTIONS(2332), - [anon_sym_InstanceOf] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_INSTANCEOF] = ACTIONS(2332), - [anon_sym_instanceOf] = ACTIONS(2332), - [sym__ternary_qmark] = ACTIONS(2334), - [sym__elvis_operator] = ACTIONS(2334), - [sym_logical_or] = ACTIONS(2334), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3084)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6226), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3199)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3085)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4595), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3200)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3086)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3201)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3087)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6236), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3202)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3088)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6239), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6239), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [STATE(3203)] = { + [sym_identifier] = ACTIONS(2528), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_tag_linefeed] = ACTIONS(2530), }, - [STATE(3089)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3204)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(6256), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6226), }, - [STATE(3090)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3205)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3091)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(6281), - [sym__elvis_operator] = ACTIONS(6283), - [sym_logical_or] = ACTIONS(6251), + [STATE(3206)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3092)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6285), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3207)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3093)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4663), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6288), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3208)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3094)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6290), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3209)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3095)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3210)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3096)] = { + [STATE(3211)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6370), + }, + [STATE(3212)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(6398), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(6400), + [sym__elvis_operator] = ACTIONS(6402), + [sym_logical_or] = ACTIONS(6370), + }, + [STATE(3213)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6413), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3214)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), + }, + [STATE(3215)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6416), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3216)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(6398), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(6400), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6370), + }, + [STATE(3217)] = { + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_RBRACK] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2256), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2260), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2256), + [sym_optional_chain] = ACTIONS(2260), + [sym_static_chain] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2256), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_PLUS] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_SLASH] = ACTIONS(2256), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_BSLASH] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_LT_GT] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [aux_sym_binary_expression_token1] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2256), + [aux_sym_binary_expression_token2] = ACTIONS(2256), + [aux_sym_binary_expression_token3] = ACTIONS(2256), + [aux_sym_binary_expression_token4] = ACTIONS(2260), + [aux_sym_binary_expression_token5] = ACTIONS(2260), + [aux_sym_binary_expression_token6] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_IN] = ACTIONS(2256), + [anon_sym_InstanceOf] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_INSTANCEOF] = ACTIONS(2260), + [anon_sym_instanceOf] = ACTIONS(2260), + [sym__ternary_qmark] = ACTIONS(2260), + [sym__elvis_operator] = ACTIONS(2260), + [sym_logical_or] = ACTIONS(2260), + }, + [STATE(3218)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6419), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3219)] = { + [anon_sym_DOT] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym_RBRACK] = ACTIONS(5550), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2318), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2318), + [sym_optional_chain] = ACTIONS(2320), + [sym_static_chain] = ACTIONS(2320), + [anon_sym_AMP_AMP] = ACTIONS(2320), + [anon_sym_PIPE_PIPE] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2320), + [anon_sym_LT_LT] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2320), + [anon_sym_BSLASH] = ACTIONS(2320), + [anon_sym_STAR_STAR] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2320), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2320), + [anon_sym_LT_GT] = ACTIONS(2320), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2320), + [aux_sym_binary_expression_token1] = ACTIONS(2320), + [anon_sym_GT_EQ] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2318), + [aux_sym_binary_expression_token2] = ACTIONS(2318), + [aux_sym_binary_expression_token3] = ACTIONS(2318), + [aux_sym_binary_expression_token4] = ACTIONS(2320), + [aux_sym_binary_expression_token5] = ACTIONS(2320), + [aux_sym_binary_expression_token6] = ACTIONS(2320), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_IN] = ACTIONS(2318), + [anon_sym_InstanceOf] = ACTIONS(2320), + [anon_sym_instanceof] = ACTIONS(2320), + [anon_sym_INSTANCEOF] = ACTIONS(2320), + [anon_sym_instanceOf] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2320), + [sym__elvis_operator] = ACTIONS(2320), + [sym_logical_or] = ACTIONS(2320), + }, + [STATE(3220)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6422), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3221)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6425), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3222)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5230), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -412995,1508 +423938,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(1602), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3097)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6027), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3098)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6296), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3099)] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2494), - [sym_optional_chain] = ACTIONS(2496), - [sym_static_chain] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_GT_GT_GT] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_BSLASH] = ACTIONS(2494), - [anon_sym_STAR_STAR] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2496), - [anon_sym_LT_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2496), - [aux_sym_binary_expression_token1] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [aux_sym_binary_expression_token2] = ACTIONS(2494), - [aux_sym_binary_expression_token3] = ACTIONS(2494), - [aux_sym_binary_expression_token4] = ACTIONS(2496), - [aux_sym_binary_expression_token5] = ACTIONS(2496), - [aux_sym_binary_expression_token6] = ACTIONS(2496), - [anon_sym_QMARK_QMARK] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_IN] = ACTIONS(2494), - [anon_sym_InstanceOf] = ACTIONS(2494), - [anon_sym_instanceof] = ACTIONS(2494), - [anon_sym_INSTANCEOF] = ACTIONS(2494), - [anon_sym_instanceOf] = ACTIONS(2494), - [sym__ternary_qmark] = ACTIONS(2496), - [sym__elvis_operator] = ACTIONS(2496), - [sym_logical_or] = ACTIONS(2496), - [sym_tag_linefeed] = ACTIONS(2496), - }, - [STATE(3100)] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_tag_linefeed] = ACTIONS(1085), - }, - [STATE(3101)] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6303), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6305), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(6335), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(6337), - [sym__elvis_operator] = ACTIONS(6339), - [sym_logical_or] = ACTIONS(6313), - [sym_tag_linefeed] = ACTIONS(2472), - }, - [STATE(3102)] = { - [sym_identifier] = ACTIONS(2534), - [anon_sym_DOT] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2536), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2534), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2534), - [sym_optional_chain] = ACTIONS(2536), - [sym_static_chain] = ACTIONS(2536), - [anon_sym_AMP_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2534), - [anon_sym_GT_GT_GT] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_BSLASH] = ACTIONS(2534), - [anon_sym_STAR_STAR] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_LT_EQ] = ACTIONS(2536), - [anon_sym_EQ_EQ] = ACTIONS(2534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2536), - [anon_sym_LT_GT] = ACTIONS(2536), - [anon_sym_BANG_EQ] = ACTIONS(2534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2536), - [aux_sym_binary_expression_token1] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2536), - [anon_sym_GT] = ACTIONS(2534), - [aux_sym_binary_expression_token2] = ACTIONS(2534), - [aux_sym_binary_expression_token3] = ACTIONS(2534), - [aux_sym_binary_expression_token4] = ACTIONS(2536), - [aux_sym_binary_expression_token5] = ACTIONS(2536), - [aux_sym_binary_expression_token6] = ACTIONS(2536), - [anon_sym_QMARK_QMARK] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2534), - [anon_sym_in] = ACTIONS(2534), - [anon_sym_IN] = ACTIONS(2534), - [anon_sym_InstanceOf] = ACTIONS(2534), - [anon_sym_instanceof] = ACTIONS(2534), - [anon_sym_INSTANCEOF] = ACTIONS(2534), - [anon_sym_instanceOf] = ACTIONS(2534), - [sym__ternary_qmark] = ACTIONS(2536), - [sym__elvis_operator] = ACTIONS(2536), - [sym_logical_or] = ACTIONS(2536), - [sym_tag_linefeed] = ACTIONS(2536), - }, - [STATE(3103)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3104)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(6344), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3105)] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6303), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6305), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(6335), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(6337), - [sym__elvis_operator] = ACTIONS(6339), - [sym_logical_or] = ACTIONS(6313), - [sym_tag_linefeed] = ACTIONS(2476), - }, - [STATE(3106)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6029), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3107)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6031), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3108)] = { - [sym_identifier] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2540), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2538), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2538), - [sym_optional_chain] = ACTIONS(2540), - [sym_static_chain] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_BSLASH] = ACTIONS(2538), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2540), - [anon_sym_LT_GT] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2540), - [aux_sym_binary_expression_token1] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2538), - [aux_sym_binary_expression_token2] = ACTIONS(2538), - [aux_sym_binary_expression_token3] = ACTIONS(2538), - [aux_sym_binary_expression_token4] = ACTIONS(2540), - [aux_sym_binary_expression_token5] = ACTIONS(2540), - [aux_sym_binary_expression_token6] = ACTIONS(2540), - [anon_sym_QMARK_QMARK] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_IN] = ACTIONS(2538), - [anon_sym_InstanceOf] = ACTIONS(2538), - [anon_sym_instanceof] = ACTIONS(2538), - [anon_sym_INSTANCEOF] = ACTIONS(2538), - [anon_sym_instanceOf] = ACTIONS(2538), - [sym__ternary_qmark] = ACTIONS(2540), - [sym__elvis_operator] = ACTIONS(2540), - [sym_logical_or] = ACTIONS(2540), - [sym_tag_linefeed] = ACTIONS(2540), + [STATE(3223)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6428), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3109)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4644), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3224)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6431), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3110)] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2312), - [sym_optional_chain] = ACTIONS(2314), - [sym_static_chain] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_BSLASH] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_LT_GT] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [aux_sym_binary_expression_token1] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [aux_sym_binary_expression_token2] = ACTIONS(2312), - [aux_sym_binary_expression_token3] = ACTIONS(2312), - [aux_sym_binary_expression_token4] = ACTIONS(2314), - [aux_sym_binary_expression_token5] = ACTIONS(2314), - [aux_sym_binary_expression_token6] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2312), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_IN] = ACTIONS(2312), - [anon_sym_InstanceOf] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_INSTANCEOF] = ACTIONS(2312), - [anon_sym_instanceOf] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2314), - [sym__elvis_operator] = ACTIONS(2314), - [sym_logical_or] = ACTIONS(2314), - [sym_tag_linefeed] = ACTIONS(2314), + [STATE(3225)] = { + [sym_identifier] = ACTIONS(2536), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2538), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2536), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2536), + [sym_optional_chain] = ACTIONS(2538), + [sym_static_chain] = ACTIONS(2538), + [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_PIPE_PIPE] = ACTIONS(2538), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_GT_GT_GT] = ACTIONS(2538), + [anon_sym_LT_LT] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PERCENT] = ACTIONS(2538), + [anon_sym_BSLASH] = ACTIONS(2536), + [anon_sym_STAR_STAR] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2538), + [anon_sym_EQ_EQ] = ACTIONS(2536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2538), + [anon_sym_LT_GT] = ACTIONS(2538), + [anon_sym_BANG_EQ] = ACTIONS(2536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2538), + [aux_sym_binary_expression_token1] = ACTIONS(2538), + [anon_sym_GT_EQ] = ACTIONS(2538), + [anon_sym_GT] = ACTIONS(2536), + [aux_sym_binary_expression_token2] = ACTIONS(2536), + [aux_sym_binary_expression_token3] = ACTIONS(2536), + [aux_sym_binary_expression_token4] = ACTIONS(2538), + [aux_sym_binary_expression_token5] = ACTIONS(2538), + [aux_sym_binary_expression_token6] = ACTIONS(2538), + [anon_sym_QMARK_QMARK] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2536), + [anon_sym_in] = ACTIONS(2536), + [anon_sym_IN] = ACTIONS(2536), + [anon_sym_InstanceOf] = ACTIONS(2536), + [anon_sym_instanceof] = ACTIONS(2536), + [anon_sym_INSTANCEOF] = ACTIONS(2536), + [anon_sym_instanceOf] = ACTIONS(2536), + [sym__ternary_qmark] = ACTIONS(2538), + [sym__elvis_operator] = ACTIONS(2538), + [sym_logical_or] = ACTIONS(2538), + [sym_tag_linefeed] = ACTIONS(2538), }, - [STATE(3111)] = { - [sym_identifier] = ACTIONS(2530), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2532), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2530), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2530), - [sym_optional_chain] = ACTIONS(2532), - [sym_static_chain] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_BSLASH] = ACTIONS(2530), - [anon_sym_STAR_STAR] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2532), - [anon_sym_LT_GT] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2532), - [aux_sym_binary_expression_token1] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2530), - [aux_sym_binary_expression_token2] = ACTIONS(2530), - [aux_sym_binary_expression_token3] = ACTIONS(2530), - [aux_sym_binary_expression_token4] = ACTIONS(2532), - [aux_sym_binary_expression_token5] = ACTIONS(2532), - [aux_sym_binary_expression_token6] = ACTIONS(2532), - [anon_sym_QMARK_QMARK] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2530), - [anon_sym_in] = ACTIONS(2530), - [anon_sym_IN] = ACTIONS(2530), - [anon_sym_InstanceOf] = ACTIONS(2530), - [anon_sym_instanceof] = ACTIONS(2530), - [anon_sym_INSTANCEOF] = ACTIONS(2530), - [anon_sym_instanceOf] = ACTIONS(2530), - [sym__ternary_qmark] = ACTIONS(2532), - [sym__elvis_operator] = ACTIONS(2532), - [sym_logical_or] = ACTIONS(2532), - [sym_tag_linefeed] = ACTIONS(2532), + [STATE(3226)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_COLON] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2410), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(6466), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(6468), + [sym__elvis_operator] = ACTIONS(6470), + [sym_logical_or] = ACTIONS(6438), }, - [STATE(3112)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3227)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6472), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3113)] = { + [STATE(3228)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(6281), - [sym__elvis_operator] = ACTIONS(6283), - [sym_logical_or] = ACTIONS(6251), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_COLON] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2418), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(6466), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(6468), + [sym__elvis_operator] = ACTIONS(6470), + [sym_logical_or] = ACTIONS(6438), }, - [STATE(3114)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6352), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3229)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6475), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3115)] = { - [sym_identifier] = ACTIONS(2316), - [anon_sym_DOT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2316), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2316), - [sym_optional_chain] = ACTIONS(2318), - [sym_static_chain] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_BSLASH] = ACTIONS(2316), - [anon_sym_STAR_STAR] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2316), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), - [anon_sym_LT_GT] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2316), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), - [aux_sym_binary_expression_token1] = ACTIONS(2318), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [aux_sym_binary_expression_token2] = ACTIONS(2316), - [aux_sym_binary_expression_token3] = ACTIONS(2316), - [aux_sym_binary_expression_token4] = ACTIONS(2318), - [aux_sym_binary_expression_token5] = ACTIONS(2318), - [aux_sym_binary_expression_token6] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2316), - [anon_sym_in] = ACTIONS(2316), - [anon_sym_IN] = ACTIONS(2316), - [anon_sym_InstanceOf] = ACTIONS(2316), - [anon_sym_instanceof] = ACTIONS(2316), - [anon_sym_INSTANCEOF] = ACTIONS(2316), - [anon_sym_instanceOf] = ACTIONS(2316), - [sym__ternary_qmark] = ACTIONS(2318), - [sym__elvis_operator] = ACTIONS(2318), - [sym_logical_or] = ACTIONS(2318), - [sym_tag_linefeed] = ACTIONS(2318), + [STATE(3230)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_COLON] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2478), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(6466), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(6468), + [sym__elvis_operator] = ACTIONS(6470), + [sym_logical_or] = ACTIONS(6438), }, - [STATE(3116)] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6303), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6305), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(6335), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(6337), - [sym__elvis_operator] = ACTIONS(6339), - [sym_logical_or] = ACTIONS(6313), - [sym_tag_linefeed] = ACTIONS(2428), + [STATE(3231)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6478), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3117)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6305), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [STATE(3232)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3118)] = { + [STATE(3233)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_COLON] = ACTIONS(6481), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -414556,6637 +424720,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(1678), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3119)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3120)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3121)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(5991), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(5991), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3122)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(5935), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3123)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3124)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3125)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3126)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6355), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6355), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3127)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3128)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3129)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6357), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3130)] = { - [sym_identifier] = ACTIONS(2506), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2506), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2506), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2508), - [anon_sym_PIPE_PIPE] = ACTIONS(2508), - [anon_sym_GT_GT] = ACTIONS(2506), - [anon_sym_GT_GT_GT] = ACTIONS(2508), - [anon_sym_LT_LT] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_CARET] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_PERCENT] = ACTIONS(2508), - [anon_sym_BSLASH] = ACTIONS(2506), - [anon_sym_STAR_STAR] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_LT_EQ] = ACTIONS(2508), - [anon_sym_EQ_EQ] = ACTIONS(2506), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2508), - [anon_sym_LT_GT] = ACTIONS(2508), - [anon_sym_BANG_EQ] = ACTIONS(2506), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2508), - [aux_sym_binary_expression_token1] = ACTIONS(2508), - [anon_sym_GT_EQ] = ACTIONS(2508), - [anon_sym_GT] = ACTIONS(2506), - [aux_sym_binary_expression_token2] = ACTIONS(2506), - [aux_sym_binary_expression_token3] = ACTIONS(2506), - [aux_sym_binary_expression_token4] = ACTIONS(2508), - [aux_sym_binary_expression_token5] = ACTIONS(2508), - [aux_sym_binary_expression_token6] = ACTIONS(2508), - [anon_sym_QMARK_QMARK] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_IN] = ACTIONS(2506), - [anon_sym_InstanceOf] = ACTIONS(2506), - [anon_sym_instanceof] = ACTIONS(2506), - [anon_sym_INSTANCEOF] = ACTIONS(2506), - [anon_sym_instanceOf] = ACTIONS(2506), - [sym__ternary_qmark] = ACTIONS(2508), - [sym__elvis_operator] = ACTIONS(2508), - [sym_logical_or] = ACTIONS(2508), - [sym_tag_linefeed] = ACTIONS(2508), - }, - [STATE(3131)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3132)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3133)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3134)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3135)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3136)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6364), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6364), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3137)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3138)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3139)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6366), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3140)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3141)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4595), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3142)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6303), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6305), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6313), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3143)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6043), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3144)] = { - [sym_identifier] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2490), - [sym_optional_chain] = ACTIONS(2492), - [sym_static_chain] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_GT_GT_GT] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_BSLASH] = ACTIONS(2490), - [anon_sym_STAR_STAR] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2492), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2492), - [anon_sym_LT_GT] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2492), - [aux_sym_binary_expression_token1] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2490), - [aux_sym_binary_expression_token2] = ACTIONS(2490), - [aux_sym_binary_expression_token3] = ACTIONS(2490), - [aux_sym_binary_expression_token4] = ACTIONS(2492), - [aux_sym_binary_expression_token5] = ACTIONS(2492), - [aux_sym_binary_expression_token6] = ACTIONS(2492), - [anon_sym_QMARK_QMARK] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_IN] = ACTIONS(2490), - [anon_sym_InstanceOf] = ACTIONS(2490), - [anon_sym_instanceof] = ACTIONS(2490), - [anon_sym_INSTANCEOF] = ACTIONS(2490), - [anon_sym_instanceOf] = ACTIONS(2490), - [sym__ternary_qmark] = ACTIONS(2492), - [sym__elvis_operator] = ACTIONS(2492), - [sym_logical_or] = ACTIONS(2492), - [sym_tag_linefeed] = ACTIONS(2492), - }, - [STATE(3145)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6371), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6371), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3146)] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6303), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6305), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(6335), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(6337), - [sym__elvis_operator] = ACTIONS(6339), - [sym_logical_or] = ACTIONS(6313), - [sym_tag_linefeed] = ACTIONS(2460), - }, - [STATE(3147)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6045), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3148)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6047), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), + [STATE(3234)] = { + [sym_identifier] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6179), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6181), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), [anon_sym_AMP_AMP] = ACTIONS(6187), [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(6211), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(6213), + [sym__elvis_operator] = ACTIONS(6215), [sym_logical_or] = ACTIONS(6189), + [sym__parameter_separator] = ACTIONS(2410), }, - [STATE(3149)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3150)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3151)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3152)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6376), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3153)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3154)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_COLON] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2472), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(6414), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(6416), - [sym__elvis_operator] = ACTIONS(6418), - [sym_logical_or] = ACTIONS(6386), - }, - [STATE(3155)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_COLON] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2476), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(6414), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(6416), - [sym__elvis_operator] = ACTIONS(6418), - [sym_logical_or] = ACTIONS(6386), - }, - [STATE(3156)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_COLON] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2428), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(6414), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(6416), - [sym__elvis_operator] = ACTIONS(6418), - [sym_logical_or] = ACTIONS(6386), - }, - [STATE(3157)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3158)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3159)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3160)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3161)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3162)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3163)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3164)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3165)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3166)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3167)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3168)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3169)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6386), - }, - [STATE(3170)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_COLON] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2460), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(6414), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(6416), - [sym__elvis_operator] = ACTIONS(6418), - [sym_logical_or] = ACTIONS(6386), - }, - [STATE(3171)] = { - [sym_identifier] = ACTIONS(2250), - [anon_sym_DOT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2250), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2250), - [sym_optional_chain] = ACTIONS(2254), - [sym_static_chain] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2250), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_BSLASH] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2254), - [anon_sym_LT_GT] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2254), - [aux_sym_binary_expression_token1] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2250), - [aux_sym_binary_expression_token2] = ACTIONS(2250), - [aux_sym_binary_expression_token3] = ACTIONS(2250), - [aux_sym_binary_expression_token4] = ACTIONS(2254), - [aux_sym_binary_expression_token5] = ACTIONS(2254), - [aux_sym_binary_expression_token6] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [anon_sym_IN] = ACTIONS(2250), - [anon_sym_InstanceOf] = ACTIONS(2250), - [anon_sym_instanceof] = ACTIONS(2250), - [anon_sym_INSTANCEOF] = ACTIONS(2250), - [anon_sym_instanceOf] = ACTIONS(2250), - [sym__ternary_qmark] = ACTIONS(2254), - [sym__elvis_operator] = ACTIONS(2254), - [sym_logical_or] = ACTIONS(2254), - [sym_tag_linefeed] = ACTIONS(2254), - }, - [STATE(3172)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_COLON] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2468), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(6414), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(6416), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6386), - }, - [STATE(3173)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3174)] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2336), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2336), - [sym_optional_chain] = ACTIONS(2338), - [sym_static_chain] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_BSLASH] = ACTIONS(2336), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2336), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_LT_GT] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2336), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [aux_sym_binary_expression_token1] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [aux_sym_binary_expression_token2] = ACTIONS(2336), - [aux_sym_binary_expression_token3] = ACTIONS(2336), - [aux_sym_binary_expression_token4] = ACTIONS(2338), - [aux_sym_binary_expression_token5] = ACTIONS(2338), - [aux_sym_binary_expression_token6] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_IN] = ACTIONS(2336), - [anon_sym_InstanceOf] = ACTIONS(2336), - [anon_sym_instanceof] = ACTIONS(2336), - [anon_sym_INSTANCEOF] = ACTIONS(2336), - [anon_sym_instanceOf] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2338), - [sym__elvis_operator] = ACTIONS(2338), - [sym_logical_or] = ACTIONS(2338), - [sym_tag_linefeed] = ACTIONS(2338), - }, - [STATE(3175)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3176)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3177)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6420), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3178)] = { - [sym_identifier] = ACTIONS(6423), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6431), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6433), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(6441), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(6463), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(6465), - [sym__elvis_operator] = ACTIONS(6467), - [sym_logical_or] = ACTIONS(6441), - [sym__parameter_separator] = ACTIONS(6427), - }, - [STATE(3179)] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6303), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6305), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(6335), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(6337), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6313), - [sym_tag_linefeed] = ACTIONS(2468), - }, - [STATE(3180)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3181)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3182)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2462), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2462), - [sym_optional_chain] = ACTIONS(2464), - [sym_static_chain] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2462), - [anon_sym_GT_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2462), - [anon_sym_PERCENT] = ACTIONS(2464), - [anon_sym_BSLASH] = ACTIONS(2462), - [anon_sym_STAR_STAR] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_LT_EQ] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_LT_GT] = ACTIONS(2464), - [anon_sym_BANG_EQ] = ACTIONS(2462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2464), - [aux_sym_binary_expression_token1] = ACTIONS(2464), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_GT] = ACTIONS(2462), - [aux_sym_binary_expression_token2] = ACTIONS(2462), - [aux_sym_binary_expression_token3] = ACTIONS(2462), - [aux_sym_binary_expression_token4] = ACTIONS(2464), - [aux_sym_binary_expression_token5] = ACTIONS(2464), - [aux_sym_binary_expression_token6] = ACTIONS(2464), - [anon_sym_QMARK_QMARK] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [anon_sym_IN] = ACTIONS(2462), - [anon_sym_InstanceOf] = ACTIONS(2462), - [anon_sym_instanceof] = ACTIONS(2462), - [anon_sym_INSTANCEOF] = ACTIONS(2462), - [anon_sym_instanceOf] = ACTIONS(2462), - [sym__ternary_qmark] = ACTIONS(2464), - [sym__elvis_operator] = ACTIONS(2464), - [sym_logical_or] = ACTIONS(2464), - [sym_tag_linefeed] = ACTIONS(2464), - }, - [STATE(3183)] = { - [sym_identifier] = ACTIONS(2562), - [anon_sym_DOT] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2564), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2562), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2562), - [sym_optional_chain] = ACTIONS(2564), - [sym_static_chain] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_PIPE_PIPE] = ACTIONS(2564), - [anon_sym_GT_GT] = ACTIONS(2562), - [anon_sym_GT_GT_GT] = ACTIONS(2564), - [anon_sym_LT_LT] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_CARET] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2564), - [anon_sym_BSLASH] = ACTIONS(2562), - [anon_sym_STAR_STAR] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_LT_EQ] = ACTIONS(2564), - [anon_sym_EQ_EQ] = ACTIONS(2562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2564), - [anon_sym_LT_GT] = ACTIONS(2564), - [anon_sym_BANG_EQ] = ACTIONS(2562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2564), - [aux_sym_binary_expression_token1] = ACTIONS(2564), - [anon_sym_GT_EQ] = ACTIONS(2564), - [anon_sym_GT] = ACTIONS(2562), - [aux_sym_binary_expression_token2] = ACTIONS(2562), - [aux_sym_binary_expression_token3] = ACTIONS(2562), - [aux_sym_binary_expression_token4] = ACTIONS(2564), - [aux_sym_binary_expression_token5] = ACTIONS(2564), - [aux_sym_binary_expression_token6] = ACTIONS(2564), - [anon_sym_QMARK_QMARK] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2562), - [anon_sym_IN] = ACTIONS(2562), - [anon_sym_InstanceOf] = ACTIONS(2562), - [anon_sym_instanceof] = ACTIONS(2562), - [anon_sym_INSTANCEOF] = ACTIONS(2562), - [anon_sym_instanceOf] = ACTIONS(2562), - [sym__ternary_qmark] = ACTIONS(2564), - [sym__elvis_operator] = ACTIONS(2564), - [sym_logical_or] = ACTIONS(2564), - [sym_tag_linefeed] = ACTIONS(2564), - }, - [STATE(3184)] = { - [sym_identifier] = ACTIONS(2566), - [anon_sym_DOT] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(2568), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2566), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2566), - [sym_optional_chain] = ACTIONS(2568), - [sym_static_chain] = ACTIONS(2568), - [anon_sym_AMP_AMP] = ACTIONS(2568), - [anon_sym_PIPE_PIPE] = ACTIONS(2568), - [anon_sym_GT_GT] = ACTIONS(2566), - [anon_sym_GT_GT_GT] = ACTIONS(2568), - [anon_sym_LT_LT] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_CARET] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_PERCENT] = ACTIONS(2568), - [anon_sym_BSLASH] = ACTIONS(2566), - [anon_sym_STAR_STAR] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_LT_EQ] = ACTIONS(2568), - [anon_sym_EQ_EQ] = ACTIONS(2566), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2568), - [anon_sym_LT_GT] = ACTIONS(2568), - [anon_sym_BANG_EQ] = ACTIONS(2566), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2568), - [aux_sym_binary_expression_token1] = ACTIONS(2568), - [anon_sym_GT_EQ] = ACTIONS(2568), - [anon_sym_GT] = ACTIONS(2566), - [aux_sym_binary_expression_token2] = ACTIONS(2566), - [aux_sym_binary_expression_token3] = ACTIONS(2566), - [aux_sym_binary_expression_token4] = ACTIONS(2568), - [aux_sym_binary_expression_token5] = ACTIONS(2568), - [aux_sym_binary_expression_token6] = ACTIONS(2568), - [anon_sym_QMARK_QMARK] = ACTIONS(2568), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2566), - [anon_sym_in] = ACTIONS(2566), - [anon_sym_IN] = ACTIONS(2566), - [anon_sym_InstanceOf] = ACTIONS(2566), - [anon_sym_instanceof] = ACTIONS(2566), - [anon_sym_INSTANCEOF] = ACTIONS(2566), - [anon_sym_instanceOf] = ACTIONS(2566), - [sym__ternary_qmark] = ACTIONS(2568), - [sym__elvis_operator] = ACTIONS(2568), - [sym_logical_or] = ACTIONS(2568), - [sym_tag_linefeed] = ACTIONS(2568), - }, - [STATE(3185)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4717), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6472), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3186)] = { - [sym_identifier] = ACTIONS(2574), - [anon_sym_DOT] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2576), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2574), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2574), - [sym_optional_chain] = ACTIONS(2576), - [sym_static_chain] = ACTIONS(2576), - [anon_sym_AMP_AMP] = ACTIONS(2576), - [anon_sym_PIPE_PIPE] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2574), - [anon_sym_GT_GT_GT] = ACTIONS(2576), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_CARET] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2576), - [anon_sym_BSLASH] = ACTIONS(2574), - [anon_sym_STAR_STAR] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2576), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2576), - [anon_sym_LT_GT] = ACTIONS(2576), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2576), - [aux_sym_binary_expression_token1] = ACTIONS(2576), - [anon_sym_GT_EQ] = ACTIONS(2576), - [anon_sym_GT] = ACTIONS(2574), - [aux_sym_binary_expression_token2] = ACTIONS(2574), - [aux_sym_binary_expression_token3] = ACTIONS(2574), - [aux_sym_binary_expression_token4] = ACTIONS(2576), - [aux_sym_binary_expression_token5] = ACTIONS(2576), - [aux_sym_binary_expression_token6] = ACTIONS(2576), - [anon_sym_QMARK_QMARK] = ACTIONS(2576), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [anon_sym_IN] = ACTIONS(2574), - [anon_sym_InstanceOf] = ACTIONS(2574), - [anon_sym_instanceof] = ACTIONS(2574), - [anon_sym_INSTANCEOF] = ACTIONS(2574), - [anon_sym_instanceOf] = ACTIONS(2574), - [sym__ternary_qmark] = ACTIONS(2576), - [sym__elvis_operator] = ACTIONS(2576), - [sym_logical_or] = ACTIONS(2576), - [sym_tag_linefeed] = ACTIONS(2576), - }, - [STATE(3187)] = { + [STATE(3235)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3188)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6474), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3189)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4758), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3190)] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym_tag_linefeed] = ACTIONS(2347), - }, - [STATE(3191)] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym_tag_linefeed] = ACTIONS(2353), - }, - [STATE(3192)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6056), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3193)] = { - [sym_identifier] = ACTIONS(2578), - [anon_sym_DOT] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_LBRACK] = ACTIONS(2580), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2578), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2578), - [sym_optional_chain] = ACTIONS(2580), - [sym_static_chain] = ACTIONS(2580), - [anon_sym_AMP_AMP] = ACTIONS(2580), - [anon_sym_PIPE_PIPE] = ACTIONS(2580), - [anon_sym_GT_GT] = ACTIONS(2578), - [anon_sym_GT_GT_GT] = ACTIONS(2580), - [anon_sym_LT_LT] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_CARET] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_PERCENT] = ACTIONS(2580), - [anon_sym_BSLASH] = ACTIONS(2578), - [anon_sym_STAR_STAR] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_LT_EQ] = ACTIONS(2580), - [anon_sym_EQ_EQ] = ACTIONS(2578), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2580), - [anon_sym_LT_GT] = ACTIONS(2580), - [anon_sym_BANG_EQ] = ACTIONS(2578), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2580), - [aux_sym_binary_expression_token1] = ACTIONS(2580), - [anon_sym_GT_EQ] = ACTIONS(2580), - [anon_sym_GT] = ACTIONS(2578), - [aux_sym_binary_expression_token2] = ACTIONS(2578), - [aux_sym_binary_expression_token3] = ACTIONS(2578), - [aux_sym_binary_expression_token4] = ACTIONS(2580), - [aux_sym_binary_expression_token5] = ACTIONS(2580), - [aux_sym_binary_expression_token6] = ACTIONS(2580), - [anon_sym_QMARK_QMARK] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2578), - [anon_sym_in] = ACTIONS(2578), - [anon_sym_IN] = ACTIONS(2578), - [anon_sym_InstanceOf] = ACTIONS(2578), - [anon_sym_instanceof] = ACTIONS(2578), - [anon_sym_INSTANCEOF] = ACTIONS(2578), - [anon_sym_instanceOf] = ACTIONS(2578), - [sym__ternary_qmark] = ACTIONS(2580), - [sym__elvis_operator] = ACTIONS(2580), - [sym_logical_or] = ACTIONS(2580), - [sym_tag_linefeed] = ACTIONS(2580), - }, - [STATE(3194)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6058), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3195)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3196)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6060), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3197)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3198)] = { + [STATE(3236)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6251), - }, - [STATE(3199)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(5999), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3200)] = { - [sym_identifier] = ACTIONS(2478), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2478), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2478), - [sym_optional_chain] = ACTIONS(2480), - [sym_static_chain] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2478), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_BSLASH] = ACTIONS(2478), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_LT_GT] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [aux_sym_binary_expression_token1] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2478), - [aux_sym_binary_expression_token2] = ACTIONS(2478), - [aux_sym_binary_expression_token3] = ACTIONS(2478), - [aux_sym_binary_expression_token4] = ACTIONS(2480), - [aux_sym_binary_expression_token5] = ACTIONS(2480), - [aux_sym_binary_expression_token6] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_IN] = ACTIONS(2478), - [anon_sym_InstanceOf] = ACTIONS(2478), - [anon_sym_instanceof] = ACTIONS(2478), - [anon_sym_INSTANCEOF] = ACTIONS(2478), - [anon_sym_instanceOf] = ACTIONS(2478), - [sym__ternary_qmark] = ACTIONS(2480), - [sym__elvis_operator] = ACTIONS(2480), - [sym_logical_or] = ACTIONS(2480), - [sym_tag_linefeed] = ACTIONS(2480), - }, - [STATE(3201)] = { - [sym_identifier] = ACTIONS(2510), - [anon_sym_DOT] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2510), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2510), - [sym_optional_chain] = ACTIONS(2512), - [sym_static_chain] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_PIPE_PIPE] = ACTIONS(2512), - [anon_sym_GT_GT] = ACTIONS(2510), - [anon_sym_GT_GT_GT] = ACTIONS(2512), - [anon_sym_LT_LT] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_CARET] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_PERCENT] = ACTIONS(2512), - [anon_sym_BSLASH] = ACTIONS(2510), - [anon_sym_STAR_STAR] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_LT_EQ] = ACTIONS(2512), - [anon_sym_EQ_EQ] = ACTIONS(2510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2512), - [anon_sym_LT_GT] = ACTIONS(2512), - [anon_sym_BANG_EQ] = ACTIONS(2510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2512), - [aux_sym_binary_expression_token1] = ACTIONS(2512), - [anon_sym_GT_EQ] = ACTIONS(2512), - [anon_sym_GT] = ACTIONS(2510), - [aux_sym_binary_expression_token2] = ACTIONS(2510), - [aux_sym_binary_expression_token3] = ACTIONS(2510), - [aux_sym_binary_expression_token4] = ACTIONS(2512), - [aux_sym_binary_expression_token5] = ACTIONS(2512), - [aux_sym_binary_expression_token6] = ACTIONS(2512), - [anon_sym_QMARK_QMARK] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_IN] = ACTIONS(2510), - [anon_sym_InstanceOf] = ACTIONS(2510), - [anon_sym_instanceof] = ACTIONS(2510), - [anon_sym_INSTANCEOF] = ACTIONS(2510), - [anon_sym_instanceOf] = ACTIONS(2510), - [sym__ternary_qmark] = ACTIONS(2512), - [sym__elvis_operator] = ACTIONS(2512), - [sym_logical_or] = ACTIONS(2512), - [sym_tag_linefeed] = ACTIONS(2512), - }, - [STATE(3202)] = { - [sym_identifier] = ACTIONS(2340), - [anon_sym_DOT] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2340), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2340), - [sym_optional_chain] = ACTIONS(2342), - [sym_static_chain] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_BSLASH] = ACTIONS(2340), - [anon_sym_STAR_STAR] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2340), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_GT] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2340), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [aux_sym_binary_expression_token1] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [aux_sym_binary_expression_token2] = ACTIONS(2340), - [aux_sym_binary_expression_token3] = ACTIONS(2340), - [aux_sym_binary_expression_token4] = ACTIONS(2342), - [aux_sym_binary_expression_token5] = ACTIONS(2342), - [aux_sym_binary_expression_token6] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_IN] = ACTIONS(2340), - [anon_sym_InstanceOf] = ACTIONS(2340), - [anon_sym_instanceof] = ACTIONS(2340), - [anon_sym_INSTANCEOF] = ACTIONS(2340), - [anon_sym_instanceOf] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2342), - [sym__elvis_operator] = ACTIONS(2342), - [sym_logical_or] = ACTIONS(2342), - [sym_tag_linefeed] = ACTIONS(2342), - }, - [STATE(3203)] = { - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_RBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_INSTANCEOF] = ACTIONS(2240), - [anon_sym_instanceOf] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - }, - [STATE(3204)] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_COMMA] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_RPAREN] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2312), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2312), - [sym_optional_chain] = ACTIONS(2314), - [sym_static_chain] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_BSLASH] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2314), - [anon_sym_LT_GT] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2314), - [aux_sym_binary_expression_token1] = ACTIONS(2314), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [aux_sym_binary_expression_token2] = ACTIONS(2312), - [aux_sym_binary_expression_token3] = ACTIONS(2312), - [aux_sym_binary_expression_token4] = ACTIONS(2314), - [aux_sym_binary_expression_token5] = ACTIONS(2314), - [aux_sym_binary_expression_token6] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2312), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_IN] = ACTIONS(2312), - [anon_sym_InstanceOf] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_INSTANCEOF] = ACTIONS(2312), - [anon_sym_instanceOf] = ACTIONS(2312), - [sym__ternary_qmark] = ACTIONS(2314), - [sym__elvis_operator] = ACTIONS(2314), - [sym_logical_or] = ACTIONS(2314), - }, - [STATE(3205)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6103), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3206)] = { - [sym_identifier] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2238), - [anon_sym_instanceof] = ACTIONS(2238), - [anon_sym_INSTANCEOF] = ACTIONS(2238), - [anon_sym_instanceOf] = ACTIONS(2238), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), - [sym_tag_linefeed] = ACTIONS(2240), + [STATE(3237)] = { + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(6524), + [sym__elvis_operator] = ACTIONS(6526), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2466), }, - [STATE(3207)] = { - [sym_identifier] = ACTIONS(2422), - [anon_sym_DOT] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2422), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2422), - [sym_optional_chain] = ACTIONS(2424), - [sym_static_chain] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2422), - [anon_sym_GT_GT_GT] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_CARET] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_PERCENT] = ACTIONS(2424), - [anon_sym_BSLASH] = ACTIONS(2422), - [anon_sym_STAR_STAR] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_EQ_EQ] = ACTIONS(2422), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), - [anon_sym_LT_GT] = ACTIONS(2424), - [anon_sym_BANG_EQ] = ACTIONS(2422), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), - [aux_sym_binary_expression_token1] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2422), - [aux_sym_binary_expression_token2] = ACTIONS(2422), - [aux_sym_binary_expression_token3] = ACTIONS(2422), - [aux_sym_binary_expression_token4] = ACTIONS(2424), - [aux_sym_binary_expression_token5] = ACTIONS(2424), - [aux_sym_binary_expression_token6] = ACTIONS(2424), - [anon_sym_QMARK_QMARK] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_IN] = ACTIONS(2422), - [anon_sym_InstanceOf] = ACTIONS(2422), - [anon_sym_instanceof] = ACTIONS(2422), - [anon_sym_INSTANCEOF] = ACTIONS(2422), - [anon_sym_instanceOf] = ACTIONS(2422), - [sym__ternary_qmark] = ACTIONS(2424), - [sym__elvis_operator] = ACTIONS(2424), - [sym_logical_or] = ACTIONS(2424), - [sym_tag_linefeed] = ACTIONS(2424), + [STATE(3238)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6528), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3208)] = { + [STATE(3239)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(6281), - [sym__elvis_operator] = ACTIONS(6283), - [sym_logical_or] = ACTIONS(6251), - }, - [STATE(3209)] = { - [sym_identifier] = ACTIONS(2514), - [anon_sym_DOT] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2516), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2514), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2514), - [sym_optional_chain] = ACTIONS(2516), - [sym_static_chain] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_PIPE_PIPE] = ACTIONS(2516), - [anon_sym_GT_GT] = ACTIONS(2514), - [anon_sym_GT_GT_GT] = ACTIONS(2516), - [anon_sym_LT_LT] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_CARET] = ACTIONS(2516), - [anon_sym_PIPE] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_PERCENT] = ACTIONS(2516), - [anon_sym_BSLASH] = ACTIONS(2514), - [anon_sym_STAR_STAR] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_LT_EQ] = ACTIONS(2516), - [anon_sym_EQ_EQ] = ACTIONS(2514), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2516), - [anon_sym_LT_GT] = ACTIONS(2516), - [anon_sym_BANG_EQ] = ACTIONS(2514), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2516), - [aux_sym_binary_expression_token1] = ACTIONS(2516), - [anon_sym_GT_EQ] = ACTIONS(2516), - [anon_sym_GT] = ACTIONS(2514), - [aux_sym_binary_expression_token2] = ACTIONS(2514), - [aux_sym_binary_expression_token3] = ACTIONS(2514), - [aux_sym_binary_expression_token4] = ACTIONS(2516), - [aux_sym_binary_expression_token5] = ACTIONS(2516), - [aux_sym_binary_expression_token6] = ACTIONS(2516), - [anon_sym_QMARK_QMARK] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2514), - [anon_sym_in] = ACTIONS(2514), - [anon_sym_IN] = ACTIONS(2514), - [anon_sym_InstanceOf] = ACTIONS(2514), - [anon_sym_instanceof] = ACTIONS(2514), - [anon_sym_INSTANCEOF] = ACTIONS(2514), - [anon_sym_instanceOf] = ACTIONS(2514), - [sym__ternary_qmark] = ACTIONS(2516), - [sym__elvis_operator] = ACTIONS(2516), - [sym_logical_or] = ACTIONS(2516), - [sym_tag_linefeed] = ACTIONS(2516), - }, - [STATE(3210)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4623), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6482), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3211)] = { - [sym_identifier] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1652), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1652), - [sym_optional_chain] = ACTIONS(1650), - [sym_static_chain] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_BSLASH] = ACTIONS(1652), - [anon_sym_STAR_STAR] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1650), - [anon_sym_LT_GT] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1650), - [aux_sym_binary_expression_token1] = ACTIONS(1650), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1652), - [aux_sym_binary_expression_token2] = ACTIONS(1652), - [aux_sym_binary_expression_token3] = ACTIONS(1652), - [aux_sym_binary_expression_token4] = ACTIONS(1650), - [aux_sym_binary_expression_token5] = ACTIONS(1650), - [aux_sym_binary_expression_token6] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1652), - [anon_sym_in] = ACTIONS(1652), - [anon_sym_IN] = ACTIONS(1652), - [anon_sym_InstanceOf] = ACTIONS(1652), - [anon_sym_instanceof] = ACTIONS(1652), - [anon_sym_INSTANCEOF] = ACTIONS(1652), - [anon_sym_instanceOf] = ACTIONS(1652), - [sym__ternary_qmark] = ACTIONS(1650), - [sym__elvis_operator] = ACTIONS(1650), - [sym_logical_or] = ACTIONS(1650), - [sym_tag_linefeed] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3212)] = { - [sym_identifier] = ACTIONS(507), + [STATE(3240)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(1878), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -421202,7 +425189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -421226,2862 +425213,3145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), - [sym_tag_linefeed] = ACTIONS(509), }, - [STATE(3213)] = { - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(5536), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_RBRACK] = ACTIONS(5536), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2244), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2246), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2244), - [sym_optional_chain] = ACTIONS(2246), - [sym_static_chain] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_BSLASH] = ACTIONS(2246), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_LT_GT] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [aux_sym_binary_expression_token1] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [aux_sym_binary_expression_token2] = ACTIONS(2244), - [aux_sym_binary_expression_token3] = ACTIONS(2244), - [aux_sym_binary_expression_token4] = ACTIONS(2246), - [aux_sym_binary_expression_token5] = ACTIONS(2246), - [aux_sym_binary_expression_token6] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), + [STATE(3241)] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6179), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6181), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE_PIPE] = ACTIONS(6189), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(6211), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(6213), + [sym__elvis_operator] = ACTIONS(6215), + [sym_logical_or] = ACTIONS(6189), + [sym__parameter_separator] = ACTIONS(2418), + }, + [STATE(3242)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3243)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6531), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3244)] = { + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(6524), + [sym__elvis_operator] = ACTIONS(6526), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2470), + }, + [STATE(3245)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2244), - [anon_sym_IN] = ACTIONS(2244), - [anon_sym_InstanceOf] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_INSTANCEOF] = ACTIONS(2246), - [anon_sym_instanceOf] = ACTIONS(2246), - [sym__ternary_qmark] = ACTIONS(2246), - [sym__elvis_operator] = ACTIONS(2246), - [sym_logical_or] = ACTIONS(2246), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3214)] = { - [sym_identifier] = ACTIONS(2558), - [anon_sym_DOT] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2560), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2558), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2558), - [sym_optional_chain] = ACTIONS(2560), - [sym_static_chain] = ACTIONS(2560), - [anon_sym_AMP_AMP] = ACTIONS(2560), - [anon_sym_PIPE_PIPE] = ACTIONS(2560), - [anon_sym_GT_GT] = ACTIONS(2558), - [anon_sym_GT_GT_GT] = ACTIONS(2560), - [anon_sym_LT_LT] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_PERCENT] = ACTIONS(2560), - [anon_sym_BSLASH] = ACTIONS(2558), - [anon_sym_STAR_STAR] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_LT_EQ] = ACTIONS(2560), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2560), - [anon_sym_LT_GT] = ACTIONS(2560), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2560), - [aux_sym_binary_expression_token1] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2560), - [anon_sym_GT] = ACTIONS(2558), - [aux_sym_binary_expression_token2] = ACTIONS(2558), - [aux_sym_binary_expression_token3] = ACTIONS(2558), - [aux_sym_binary_expression_token4] = ACTIONS(2560), - [aux_sym_binary_expression_token5] = ACTIONS(2560), - [aux_sym_binary_expression_token6] = ACTIONS(2560), - [anon_sym_QMARK_QMARK] = ACTIONS(2560), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_IN] = ACTIONS(2558), - [anon_sym_InstanceOf] = ACTIONS(2558), - [anon_sym_instanceof] = ACTIONS(2558), - [anon_sym_INSTANCEOF] = ACTIONS(2558), - [anon_sym_instanceOf] = ACTIONS(2558), - [sym__ternary_qmark] = ACTIONS(2560), - [sym__elvis_operator] = ACTIONS(2560), - [sym_logical_or] = ACTIONS(2560), - [sym_tag_linefeed] = ACTIONS(2560), + [STATE(3246)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3247)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3215)] = { - [sym_identifier] = ACTIONS(1722), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1722), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1722), - [anon_sym_instanceof] = ACTIONS(1722), - [anon_sym_INSTANCEOF] = ACTIONS(1722), - [anon_sym_instanceOf] = ACTIONS(1722), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - [sym_tag_linefeed] = ACTIONS(1720), + [STATE(3248)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3216)] = { + [STATE(3249)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(6516), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2464), - [sym__ternary_qmark] = ACTIONS(6518), - [sym__elvis_operator] = ACTIONS(6520), - [sym_logical_or] = ACTIONS(6488), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3217)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2442), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2442), - [sym_optional_chain] = ACTIONS(2444), - [sym_static_chain] = ACTIONS(2444), - [anon_sym_AMP_AMP] = ACTIONS(2444), - [anon_sym_PIPE_PIPE] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2444), - [anon_sym_LT_LT] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_BSLASH] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2444), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), - [anon_sym_LT_GT] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), - [aux_sym_binary_expression_token1] = ACTIONS(2444), - [anon_sym_GT_EQ] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2442), - [aux_sym_binary_expression_token2] = ACTIONS(2442), - [aux_sym_binary_expression_token3] = ACTIONS(2442), - [aux_sym_binary_expression_token4] = ACTIONS(2444), - [aux_sym_binary_expression_token5] = ACTIONS(2444), - [aux_sym_binary_expression_token6] = ACTIONS(2444), - [anon_sym_QMARK_QMARK] = ACTIONS(2444), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_IN] = ACTIONS(2442), - [anon_sym_InstanceOf] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_INSTANCEOF] = ACTIONS(2442), - [anon_sym_instanceOf] = ACTIONS(2442), - [sym__ternary_qmark] = ACTIONS(2444), - [sym__elvis_operator] = ACTIONS(2444), - [sym_logical_or] = ACTIONS(2444), - [sym_tag_linefeed] = ACTIONS(2444), + [STATE(3250)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3218)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), + [STATE(3251)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6522), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6522), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3219)] = { + [STATE(3252)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(6524), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(6281), - [sym__elvis_operator] = ACTIONS(6283), - [sym_logical_or] = ACTIONS(6251), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3220)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(5937), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [STATE(3253)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6438), }, - [STATE(3221)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3254)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_COLON] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2578), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(6466), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(6468), + [sym__elvis_operator] = ACTIONS(6470), + [sym_logical_or] = ACTIONS(6438), }, - [STATE(3222)] = { - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_COLON] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_RBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), + [STATE(3255)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_INSTANCEOF] = ACTIONS(2286), - [anon_sym_instanceOf] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(3223)] = { - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_COLON] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_RBRACK] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2238), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2240), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2238), - [sym_optional_chain] = ACTIONS(2240), - [sym_static_chain] = ACTIONS(2240), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2238), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_BSLASH] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_LT_GT] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [aux_sym_binary_expression_token1] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_GT] = ACTIONS(2238), - [aux_sym_binary_expression_token2] = ACTIONS(2238), - [aux_sym_binary_expression_token3] = ACTIONS(2238), - [aux_sym_binary_expression_token4] = ACTIONS(2240), - [aux_sym_binary_expression_token5] = ACTIONS(2240), - [aux_sym_binary_expression_token6] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2240), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [anon_sym_IN] = ACTIONS(2238), - [anon_sym_InstanceOf] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_INSTANCEOF] = ACTIONS(2240), - [anon_sym_instanceOf] = ACTIONS(2240), - [sym__ternary_qmark] = ACTIONS(2240), - [sym__elvis_operator] = ACTIONS(2240), - [sym_logical_or] = ACTIONS(2240), + [STATE(3256)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2586), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(6466), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(6468), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6438), }, - [STATE(3224)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6532), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3257)] = { + [sym_identifier] = ACTIONS(2440), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym_tag_linefeed] = ACTIONS(2443), }, - [STATE(3225)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3258)] = { + [sym_identifier] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym_tag_linefeed] = ACTIONS(2449), + }, + [STATE(3259)] = { + [sym_identifier] = ACTIONS(2508), + [anon_sym_DOT] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2510), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2508), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2508), + [sym_optional_chain] = ACTIONS(2510), + [sym_static_chain] = ACTIONS(2510), + [anon_sym_AMP_AMP] = ACTIONS(2510), + [anon_sym_PIPE_PIPE] = ACTIONS(2510), + [anon_sym_GT_GT] = ACTIONS(2508), + [anon_sym_GT_GT_GT] = ACTIONS(2510), + [anon_sym_LT_LT] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_PERCENT] = ACTIONS(2510), + [anon_sym_BSLASH] = ACTIONS(2508), + [anon_sym_STAR_STAR] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_LT_EQ] = ACTIONS(2510), + [anon_sym_EQ_EQ] = ACTIONS(2508), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2510), + [anon_sym_LT_GT] = ACTIONS(2510), + [anon_sym_BANG_EQ] = ACTIONS(2508), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2510), + [aux_sym_binary_expression_token1] = ACTIONS(2510), + [anon_sym_GT_EQ] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(2508), + [aux_sym_binary_expression_token2] = ACTIONS(2508), + [aux_sym_binary_expression_token3] = ACTIONS(2508), + [aux_sym_binary_expression_token4] = ACTIONS(2510), + [aux_sym_binary_expression_token5] = ACTIONS(2510), + [aux_sym_binary_expression_token6] = ACTIONS(2510), + [anon_sym_QMARK_QMARK] = ACTIONS(2510), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(2508), + [anon_sym_IN] = ACTIONS(2508), + [anon_sym_InstanceOf] = ACTIONS(2508), + [anon_sym_instanceof] = ACTIONS(2508), + [anon_sym_INSTANCEOF] = ACTIONS(2508), + [anon_sym_instanceOf] = ACTIONS(2508), + [sym__ternary_qmark] = ACTIONS(2510), + [sym__elvis_operator] = ACTIONS(2510), + [sym_logical_or] = ACTIONS(2510), + [sym_tag_linefeed] = ACTIONS(2510), + }, + [STATE(3260)] = { + [sym_identifier] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2488), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2488), + [sym_optional_chain] = ACTIONS(2490), + [sym_static_chain] = ACTIONS(2490), + [anon_sym_AMP_AMP] = ACTIONS(2490), + [anon_sym_PIPE_PIPE] = ACTIONS(2490), + [anon_sym_GT_GT] = ACTIONS(2488), + [anon_sym_GT_GT_GT] = ACTIONS(2490), + [anon_sym_LT_LT] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_CARET] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_PERCENT] = ACTIONS(2490), + [anon_sym_BSLASH] = ACTIONS(2488), + [anon_sym_STAR_STAR] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_LT_EQ] = ACTIONS(2490), + [anon_sym_EQ_EQ] = ACTIONS(2488), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2490), + [anon_sym_LT_GT] = ACTIONS(2490), + [anon_sym_BANG_EQ] = ACTIONS(2488), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2490), + [aux_sym_binary_expression_token1] = ACTIONS(2490), + [anon_sym_GT_EQ] = ACTIONS(2490), + [anon_sym_GT] = ACTIONS(2488), + [aux_sym_binary_expression_token2] = ACTIONS(2488), + [aux_sym_binary_expression_token3] = ACTIONS(2488), + [aux_sym_binary_expression_token4] = ACTIONS(2490), + [aux_sym_binary_expression_token5] = ACTIONS(2490), + [aux_sym_binary_expression_token6] = ACTIONS(2490), + [anon_sym_QMARK_QMARK] = ACTIONS(2490), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2488), + [anon_sym_in] = ACTIONS(2488), + [anon_sym_IN] = ACTIONS(2488), + [anon_sym_InstanceOf] = ACTIONS(2488), + [anon_sym_instanceof] = ACTIONS(2488), + [anon_sym_INSTANCEOF] = ACTIONS(2488), + [anon_sym_instanceOf] = ACTIONS(2488), + [sym__ternary_qmark] = ACTIONS(2490), + [sym__elvis_operator] = ACTIONS(2490), + [sym_logical_or] = ACTIONS(2490), + [sym_tag_linefeed] = ACTIONS(2490), + }, + [STATE(3261)] = { + [sym_identifier] = ACTIONS(2492), + [anon_sym_DOT] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2494), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2492), + [sym_optional_chain] = ACTIONS(2494), + [sym_static_chain] = ACTIONS(2494), + [anon_sym_AMP_AMP] = ACTIONS(2494), + [anon_sym_PIPE_PIPE] = ACTIONS(2494), + [anon_sym_GT_GT] = ACTIONS(2492), + [anon_sym_GT_GT_GT] = ACTIONS(2494), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_CARET] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_PERCENT] = ACTIONS(2494), + [anon_sym_BSLASH] = ACTIONS(2492), + [anon_sym_STAR_STAR] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_LT_EQ] = ACTIONS(2494), + [anon_sym_EQ_EQ] = ACTIONS(2492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2494), + [anon_sym_LT_GT] = ACTIONS(2494), + [anon_sym_BANG_EQ] = ACTIONS(2492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2494), + [aux_sym_binary_expression_token1] = ACTIONS(2494), + [anon_sym_GT_EQ] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(2492), + [aux_sym_binary_expression_token2] = ACTIONS(2492), + [aux_sym_binary_expression_token3] = ACTIONS(2492), + [aux_sym_binary_expression_token4] = ACTIONS(2494), + [aux_sym_binary_expression_token5] = ACTIONS(2494), + [aux_sym_binary_expression_token6] = ACTIONS(2494), + [anon_sym_QMARK_QMARK] = ACTIONS(2494), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2492), + [anon_sym_in] = ACTIONS(2492), + [anon_sym_IN] = ACTIONS(2492), + [anon_sym_InstanceOf] = ACTIONS(2492), + [anon_sym_instanceof] = ACTIONS(2492), + [anon_sym_INSTANCEOF] = ACTIONS(2492), + [anon_sym_instanceOf] = ACTIONS(2492), + [sym__ternary_qmark] = ACTIONS(2494), + [sym__elvis_operator] = ACTIONS(2494), + [sym_logical_or] = ACTIONS(2494), + [sym_tag_linefeed] = ACTIONS(2494), + }, + [STATE(3262)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(5939), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(6398), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(6400), + [sym__elvis_operator] = ACTIONS(6402), + [sym_logical_or] = ACTIONS(6370), }, - [STATE(3226)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4584), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6535), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3263)] = { + [sym_identifier] = ACTIONS(2544), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2544), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2544), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2544), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_BSLASH] = ACTIONS(2544), + [anon_sym_STAR_STAR] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(2544), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2546), + [anon_sym_LT_GT] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2544), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2546), + [aux_sym_binary_expression_token1] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_GT] = ACTIONS(2544), + [aux_sym_binary_expression_token2] = ACTIONS(2544), + [aux_sym_binary_expression_token3] = ACTIONS(2544), + [aux_sym_binary_expression_token4] = ACTIONS(2546), + [aux_sym_binary_expression_token5] = ACTIONS(2546), + [aux_sym_binary_expression_token6] = ACTIONS(2546), + [anon_sym_QMARK_QMARK] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2544), + [anon_sym_in] = ACTIONS(2544), + [anon_sym_IN] = ACTIONS(2544), + [anon_sym_InstanceOf] = ACTIONS(2544), + [anon_sym_instanceof] = ACTIONS(2544), + [anon_sym_INSTANCEOF] = ACTIONS(2544), + [anon_sym_instanceOf] = ACTIONS(2544), + [sym__ternary_qmark] = ACTIONS(2546), + [sym__elvis_operator] = ACTIONS(2546), + [sym_logical_or] = ACTIONS(2546), + [sym_tag_linefeed] = ACTIONS(2546), }, - [STATE(3227)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6537), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3264)] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2443), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2440), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2440), + [sym_optional_chain] = ACTIONS(2443), + [sym_static_chain] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(2440), + [anon_sym_GT_GT_GT] = ACTIONS(2443), + [anon_sym_LT_LT] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_CARET] = ACTIONS(2443), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_BSLASH] = ACTIONS(2440), + [anon_sym_STAR_STAR] = ACTIONS(2443), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2440), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), + [anon_sym_LT_GT] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2440), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), + [aux_sym_binary_expression_token1] = ACTIONS(2443), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2440), + [aux_sym_binary_expression_token2] = ACTIONS(2440), + [aux_sym_binary_expression_token3] = ACTIONS(2440), + [aux_sym_binary_expression_token4] = ACTIONS(2443), + [aux_sym_binary_expression_token5] = ACTIONS(2443), + [aux_sym_binary_expression_token6] = ACTIONS(2443), + [anon_sym_QMARK_QMARK] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2443), + [anon_sym_DASH_DASH] = ACTIONS(2443), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2440), + [anon_sym_IN] = ACTIONS(2440), + [anon_sym_InstanceOf] = ACTIONS(2440), + [anon_sym_instanceof] = ACTIONS(2440), + [anon_sym_INSTANCEOF] = ACTIONS(2440), + [anon_sym_instanceOf] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2443), + [sym__elvis_operator] = ACTIONS(2443), + [sym_logical_or] = ACTIONS(2443), + [sym_tag_linefeed] = ACTIONS(2566), }, - [STATE(3228)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6540), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3265)] = { + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2449), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2446), + [sym_optional_chain] = ACTIONS(2449), + [sym_static_chain] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_GT_GT_GT] = ACTIONS(2449), + [anon_sym_LT_LT] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PLUS] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_SLASH] = ACTIONS(2446), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_STAR_STAR] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2449), + [anon_sym_LT_GT] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2449), + [aux_sym_binary_expression_token1] = ACTIONS(2449), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2446), + [aux_sym_binary_expression_token2] = ACTIONS(2446), + [aux_sym_binary_expression_token3] = ACTIONS(2446), + [aux_sym_binary_expression_token4] = ACTIONS(2449), + [aux_sym_binary_expression_token5] = ACTIONS(2449), + [aux_sym_binary_expression_token6] = ACTIONS(2449), + [anon_sym_QMARK_QMARK] = ACTIONS(2449), + [anon_sym_PLUS_PLUS] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2449), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2446), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_IN] = ACTIONS(2446), + [anon_sym_InstanceOf] = ACTIONS(2446), + [anon_sym_instanceof] = ACTIONS(2446), + [anon_sym_INSTANCEOF] = ACTIONS(2446), + [anon_sym_instanceOf] = ACTIONS(2446), + [sym__ternary_qmark] = ACTIONS(2449), + [sym__elvis_operator] = ACTIONS(2449), + [sym_logical_or] = ACTIONS(2449), + [sym_tag_linefeed] = ACTIONS(2558), }, - [STATE(3229)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6543), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3266)] = { + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_tag_linefeed] = ACTIONS(1087), }, - [STATE(3230)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6001), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [STATE(3267)] = { + [sym_identifier] = ACTIONS(2496), + [anon_sym_DOT] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2496), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2496), + [sym_optional_chain] = ACTIONS(2498), + [sym_static_chain] = ACTIONS(2498), + [anon_sym_AMP_AMP] = ACTIONS(2498), + [anon_sym_PIPE_PIPE] = ACTIONS(2498), + [anon_sym_GT_GT] = ACTIONS(2496), + [anon_sym_GT_GT_GT] = ACTIONS(2498), + [anon_sym_LT_LT] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_CARET] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_PERCENT] = ACTIONS(2498), + [anon_sym_BSLASH] = ACTIONS(2496), + [anon_sym_STAR_STAR] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_LT_EQ] = ACTIONS(2498), + [anon_sym_EQ_EQ] = ACTIONS(2496), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2498), + [anon_sym_LT_GT] = ACTIONS(2498), + [anon_sym_BANG_EQ] = ACTIONS(2496), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2498), + [aux_sym_binary_expression_token1] = ACTIONS(2498), + [anon_sym_GT_EQ] = ACTIONS(2498), + [anon_sym_GT] = ACTIONS(2496), + [aux_sym_binary_expression_token2] = ACTIONS(2496), + [aux_sym_binary_expression_token3] = ACTIONS(2496), + [aux_sym_binary_expression_token4] = ACTIONS(2498), + [aux_sym_binary_expression_token5] = ACTIONS(2498), + [aux_sym_binary_expression_token6] = ACTIONS(2498), + [anon_sym_QMARK_QMARK] = ACTIONS(2498), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2496), + [anon_sym_in] = ACTIONS(2496), + [anon_sym_IN] = ACTIONS(2496), + [anon_sym_InstanceOf] = ACTIONS(2496), + [anon_sym_instanceof] = ACTIONS(2496), + [anon_sym_INSTANCEOF] = ACTIONS(2496), + [anon_sym_instanceOf] = ACTIONS(2496), + [sym__ternary_qmark] = ACTIONS(2498), + [sym__elvis_operator] = ACTIONS(2498), + [sym_logical_or] = ACTIONS(2498), + [sym_tag_linefeed] = ACTIONS(2498), }, - [STATE(3231)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3268)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4514), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6534), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6003), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3232)] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_RPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6431), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6433), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(6441), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(6463), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(6465), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6441), - [sym__parameter_separator] = ACTIONS(2468), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6534), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3233)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4654), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6546), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3269)] = { + [sym_identifier] = ACTIONS(2548), + [anon_sym_DOT] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2548), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2548), + [sym_optional_chain] = ACTIONS(2550), + [sym_static_chain] = ACTIONS(2550), + [anon_sym_AMP_AMP] = ACTIONS(2550), + [anon_sym_PIPE_PIPE] = ACTIONS(2550), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2550), + [anon_sym_LT_LT] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2550), + [anon_sym_BSLASH] = ACTIONS(2548), + [anon_sym_STAR_STAR] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2550), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2550), + [anon_sym_LT_GT] = ACTIONS(2550), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2550), + [aux_sym_binary_expression_token1] = ACTIONS(2550), + [anon_sym_GT_EQ] = ACTIONS(2550), + [anon_sym_GT] = ACTIONS(2548), + [aux_sym_binary_expression_token2] = ACTIONS(2548), + [aux_sym_binary_expression_token3] = ACTIONS(2548), + [aux_sym_binary_expression_token4] = ACTIONS(2550), + [aux_sym_binary_expression_token5] = ACTIONS(2550), + [aux_sym_binary_expression_token6] = ACTIONS(2550), + [anon_sym_QMARK_QMARK] = ACTIONS(2550), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_IN] = ACTIONS(2548), + [anon_sym_InstanceOf] = ACTIONS(2548), + [anon_sym_instanceof] = ACTIONS(2548), + [anon_sym_INSTANCEOF] = ACTIONS(2548), + [anon_sym_instanceOf] = ACTIONS(2548), + [sym__ternary_qmark] = ACTIONS(2550), + [sym__elvis_operator] = ACTIONS(2550), + [sym_logical_or] = ACTIONS(2550), + [sym_tag_linefeed] = ACTIONS(2550), }, - [STATE(3234)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6548), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3270)] = { + [sym_identifier] = ACTIONS(2500), + [anon_sym_DOT] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2500), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2500), + [sym_optional_chain] = ACTIONS(2502), + [sym_static_chain] = ACTIONS(2502), + [anon_sym_AMP_AMP] = ACTIONS(2502), + [anon_sym_PIPE_PIPE] = ACTIONS(2502), + [anon_sym_GT_GT] = ACTIONS(2500), + [anon_sym_GT_GT_GT] = ACTIONS(2502), + [anon_sym_LT_LT] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_PERCENT] = ACTIONS(2502), + [anon_sym_BSLASH] = ACTIONS(2500), + [anon_sym_STAR_STAR] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_LT_EQ] = ACTIONS(2502), + [anon_sym_EQ_EQ] = ACTIONS(2500), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2502), + [anon_sym_LT_GT] = ACTIONS(2502), + [anon_sym_BANG_EQ] = ACTIONS(2500), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2502), + [aux_sym_binary_expression_token1] = ACTIONS(2502), + [anon_sym_GT_EQ] = ACTIONS(2502), + [anon_sym_GT] = ACTIONS(2500), + [aux_sym_binary_expression_token2] = ACTIONS(2500), + [aux_sym_binary_expression_token3] = ACTIONS(2500), + [aux_sym_binary_expression_token4] = ACTIONS(2502), + [aux_sym_binary_expression_token5] = ACTIONS(2502), + [aux_sym_binary_expression_token6] = ACTIONS(2502), + [anon_sym_QMARK_QMARK] = ACTIONS(2502), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2500), + [anon_sym_in] = ACTIONS(2500), + [anon_sym_IN] = ACTIONS(2500), + [anon_sym_InstanceOf] = ACTIONS(2500), + [anon_sym_instanceof] = ACTIONS(2500), + [anon_sym_INSTANCEOF] = ACTIONS(2500), + [anon_sym_instanceOf] = ACTIONS(2500), + [sym__ternary_qmark] = ACTIONS(2502), + [sym__elvis_operator] = ACTIONS(2502), + [sym_logical_or] = ACTIONS(2502), + [sym_tag_linefeed] = ACTIONS(2502), }, - [STATE(3235)] = { - [sym_identifier] = ACTIONS(2320), - [anon_sym_DOT] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2320), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2320), - [sym_optional_chain] = ACTIONS(2322), - [sym_static_chain] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2320), - [anon_sym_GT_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_PERCENT] = ACTIONS(2322), - [anon_sym_BSLASH] = ACTIONS(2320), - [anon_sym_STAR_STAR] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_LT_EQ] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_LT_GT] = ACTIONS(2322), - [anon_sym_BANG_EQ] = ACTIONS(2320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2322), - [aux_sym_binary_expression_token1] = ACTIONS(2322), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2320), - [aux_sym_binary_expression_token2] = ACTIONS(2320), - [aux_sym_binary_expression_token3] = ACTIONS(2320), - [aux_sym_binary_expression_token4] = ACTIONS(2322), - [aux_sym_binary_expression_token5] = ACTIONS(2322), - [aux_sym_binary_expression_token6] = ACTIONS(2322), - [anon_sym_QMARK_QMARK] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2320), - [anon_sym_in] = ACTIONS(2320), - [anon_sym_IN] = ACTIONS(2320), - [anon_sym_InstanceOf] = ACTIONS(2320), - [anon_sym_instanceof] = ACTIONS(2320), - [anon_sym_INSTANCEOF] = ACTIONS(2320), - [anon_sym_instanceOf] = ACTIONS(2320), - [sym__ternary_qmark] = ACTIONS(2322), - [sym__elvis_operator] = ACTIONS(2322), - [sym_logical_or] = ACTIONS(2322), - [sym_tag_linefeed] = ACTIONS(2322), + [STATE(3271)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(6536), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3236)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6551), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3272)] = { + [sym_identifier] = ACTIONS(2552), + [anon_sym_DOT] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2552), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2552), + [sym_optional_chain] = ACTIONS(2554), + [sym_static_chain] = ACTIONS(2554), + [anon_sym_AMP_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2554), + [anon_sym_GT_GT] = ACTIONS(2552), + [anon_sym_GT_GT_GT] = ACTIONS(2554), + [anon_sym_LT_LT] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_PERCENT] = ACTIONS(2554), + [anon_sym_BSLASH] = ACTIONS(2552), + [anon_sym_STAR_STAR] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_LT_EQ] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2554), + [anon_sym_LT_GT] = ACTIONS(2554), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2554), + [aux_sym_binary_expression_token1] = ACTIONS(2554), + [anon_sym_GT_EQ] = ACTIONS(2554), + [anon_sym_GT] = ACTIONS(2552), + [aux_sym_binary_expression_token2] = ACTIONS(2552), + [aux_sym_binary_expression_token3] = ACTIONS(2552), + [aux_sym_binary_expression_token4] = ACTIONS(2554), + [aux_sym_binary_expression_token5] = ACTIONS(2554), + [aux_sym_binary_expression_token6] = ACTIONS(2554), + [anon_sym_QMARK_QMARK] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2552), + [anon_sym_in] = ACTIONS(2552), + [anon_sym_IN] = ACTIONS(2552), + [anon_sym_InstanceOf] = ACTIONS(2552), + [anon_sym_instanceof] = ACTIONS(2552), + [anon_sym_INSTANCEOF] = ACTIONS(2552), + [anon_sym_instanceOf] = ACTIONS(2552), + [sym__ternary_qmark] = ACTIONS(2554), + [sym__elvis_operator] = ACTIONS(2554), + [sym_logical_or] = ACTIONS(2554), + [sym_tag_linefeed] = ACTIONS(2554), }, - [STATE(3237)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4758), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6554), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3273)] = { + [sym_identifier] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(6524), + [sym__elvis_operator] = ACTIONS(6526), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2478), }, - [STATE(3238)] = { - [sym_identifier] = ACTIONS(2324), - [anon_sym_DOT] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2324), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2324), - [sym_optional_chain] = ACTIONS(2326), - [sym_static_chain] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_GT_GT_GT] = ACTIONS(2326), - [anon_sym_LT_LT] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_SLASH] = ACTIONS(2324), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_BSLASH] = ACTIONS(2324), - [anon_sym_STAR_STAR] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2326), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2326), - [anon_sym_LT_GT] = ACTIONS(2326), - [anon_sym_BANG_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2326), - [aux_sym_binary_expression_token1] = ACTIONS(2326), - [anon_sym_GT_EQ] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2324), - [aux_sym_binary_expression_token2] = ACTIONS(2324), - [aux_sym_binary_expression_token3] = ACTIONS(2324), - [aux_sym_binary_expression_token4] = ACTIONS(2326), - [aux_sym_binary_expression_token5] = ACTIONS(2326), - [aux_sym_binary_expression_token6] = ACTIONS(2326), - [anon_sym_QMARK_QMARK] = ACTIONS(2326), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2324), - [anon_sym_in] = ACTIONS(2324), - [anon_sym_IN] = ACTIONS(2324), - [anon_sym_InstanceOf] = ACTIONS(2324), - [anon_sym_instanceof] = ACTIONS(2324), - [anon_sym_INSTANCEOF] = ACTIONS(2324), - [anon_sym_instanceOf] = ACTIONS(2324), - [sym__ternary_qmark] = ACTIONS(2326), - [sym__elvis_operator] = ACTIONS(2326), - [sym_logical_or] = ACTIONS(2326), - [sym_tag_linefeed] = ACTIONS(2326), + [STATE(3274)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3239)] = { - [sym_identifier] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_LBRACK] = ACTIONS(2330), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2328), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2328), - [sym_optional_chain] = ACTIONS(2330), - [sym_static_chain] = ACTIONS(2330), - [anon_sym_AMP_AMP] = ACTIONS(2330), - [anon_sym_PIPE_PIPE] = ACTIONS(2330), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2330), - [anon_sym_LT_LT] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2330), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2330), - [anon_sym_BSLASH] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2330), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2330), - [anon_sym_LT_GT] = ACTIONS(2330), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2330), - [aux_sym_binary_expression_token1] = ACTIONS(2330), - [anon_sym_GT_EQ] = ACTIONS(2330), - [anon_sym_GT] = ACTIONS(2328), - [aux_sym_binary_expression_token2] = ACTIONS(2328), - [aux_sym_binary_expression_token3] = ACTIONS(2328), - [aux_sym_binary_expression_token4] = ACTIONS(2330), - [aux_sym_binary_expression_token5] = ACTIONS(2330), - [aux_sym_binary_expression_token6] = ACTIONS(2330), - [anon_sym_QMARK_QMARK] = ACTIONS(2330), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_DASH_DASH] = ACTIONS(2330), + [STATE(3275)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_IN] = ACTIONS(2328), - [anon_sym_InstanceOf] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_INSTANCEOF] = ACTIONS(2328), - [anon_sym_instanceOf] = ACTIONS(2328), - [sym__ternary_qmark] = ACTIONS(2330), - [sym__elvis_operator] = ACTIONS(2330), - [sym_logical_or] = ACTIONS(2330), - [sym_tag_linefeed] = ACTIONS(2330), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3240)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6556), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3276)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3241)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6559), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3277)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3242)] = { - [sym_identifier] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2332), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2332), - [sym_optional_chain] = ACTIONS(2334), - [sym_static_chain] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_BSLASH] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), - [anon_sym_LT_GT] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), - [aux_sym_binary_expression_token1] = ACTIONS(2334), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [aux_sym_binary_expression_token2] = ACTIONS(2332), - [aux_sym_binary_expression_token3] = ACTIONS(2332), - [aux_sym_binary_expression_token4] = ACTIONS(2334), - [aux_sym_binary_expression_token5] = ACTIONS(2334), - [aux_sym_binary_expression_token6] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), + [STATE(3278)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_IN] = ACTIONS(2332), - [anon_sym_InstanceOf] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_INSTANCEOF] = ACTIONS(2332), - [anon_sym_instanceOf] = ACTIONS(2332), - [sym__ternary_qmark] = ACTIONS(2334), - [sym__elvis_operator] = ACTIONS(2334), - [sym_logical_or] = ACTIONS(2334), - [sym_tag_linefeed] = ACTIONS(2334), - }, - [STATE(3243)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4692), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6562), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3244)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4584), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6564), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3245)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6566), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3246)] = { - [sym_identifier] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_COMMA] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_RPAREN] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2490), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2490), - [sym_optional_chain] = ACTIONS(2492), - [sym_static_chain] = ACTIONS(2492), - [anon_sym_AMP_AMP] = ACTIONS(2492), - [anon_sym_PIPE_PIPE] = ACTIONS(2492), - [anon_sym_GT_GT] = ACTIONS(2490), - [anon_sym_GT_GT_GT] = ACTIONS(2492), - [anon_sym_LT_LT] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_PERCENT] = ACTIONS(2492), - [anon_sym_BSLASH] = ACTIONS(2490), - [anon_sym_STAR_STAR] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_LT_EQ] = ACTIONS(2492), - [anon_sym_EQ_EQ] = ACTIONS(2490), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2492), - [anon_sym_LT_GT] = ACTIONS(2492), - [anon_sym_BANG_EQ] = ACTIONS(2490), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2492), - [aux_sym_binary_expression_token1] = ACTIONS(2492), - [anon_sym_GT_EQ] = ACTIONS(2492), - [anon_sym_GT] = ACTIONS(2490), - [aux_sym_binary_expression_token2] = ACTIONS(2490), - [aux_sym_binary_expression_token3] = ACTIONS(2490), - [aux_sym_binary_expression_token4] = ACTIONS(2492), - [aux_sym_binary_expression_token5] = ACTIONS(2492), - [aux_sym_binary_expression_token6] = ACTIONS(2492), - [anon_sym_QMARK_QMARK] = ACTIONS(2492), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_IN] = ACTIONS(2490), - [anon_sym_InstanceOf] = ACTIONS(2490), - [anon_sym_instanceof] = ACTIONS(2490), - [anon_sym_INSTANCEOF] = ACTIONS(2490), - [anon_sym_instanceOf] = ACTIONS(2490), - [sym__ternary_qmark] = ACTIONS(2492), - [sym__elvis_operator] = ACTIONS(2492), - [sym_logical_or] = ACTIONS(2492), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3247)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4692), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6569), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3279)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3248)] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_DOT] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_COMMA] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2496), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2494), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2494), - [sym_optional_chain] = ACTIONS(2496), - [sym_static_chain] = ACTIONS(2496), - [anon_sym_AMP_AMP] = ACTIONS(2496), - [anon_sym_PIPE_PIPE] = ACTIONS(2496), - [anon_sym_GT_GT] = ACTIONS(2494), - [anon_sym_GT_GT_GT] = ACTIONS(2496), - [anon_sym_LT_LT] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_CARET] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_PERCENT] = ACTIONS(2496), - [anon_sym_BSLASH] = ACTIONS(2494), - [anon_sym_STAR_STAR] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_LT_EQ] = ACTIONS(2496), - [anon_sym_EQ_EQ] = ACTIONS(2494), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2496), - [anon_sym_LT_GT] = ACTIONS(2496), - [anon_sym_BANG_EQ] = ACTIONS(2494), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2496), - [aux_sym_binary_expression_token1] = ACTIONS(2496), - [anon_sym_GT_EQ] = ACTIONS(2496), - [anon_sym_GT] = ACTIONS(2494), - [aux_sym_binary_expression_token2] = ACTIONS(2494), - [aux_sym_binary_expression_token3] = ACTIONS(2494), - [aux_sym_binary_expression_token4] = ACTIONS(2496), - [aux_sym_binary_expression_token5] = ACTIONS(2496), - [aux_sym_binary_expression_token6] = ACTIONS(2496), - [anon_sym_QMARK_QMARK] = ACTIONS(2496), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_IN] = ACTIONS(2494), - [anon_sym_InstanceOf] = ACTIONS(2494), - [anon_sym_instanceof] = ACTIONS(2494), - [anon_sym_INSTANCEOF] = ACTIONS(2494), - [anon_sym_instanceOf] = ACTIONS(2494), - [sym__ternary_qmark] = ACTIONS(2496), - [sym__elvis_operator] = ACTIONS(2496), - [sym_logical_or] = ACTIONS(2496), + [STATE(3280)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3249)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6571), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3281)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3250)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(6281), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6251), + [STATE(3282)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3251)] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1686), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1686), - [sym_optional_chain] = ACTIONS(1684), - [sym_static_chain] = ACTIONS(1684), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_GT_GT] = ACTIONS(1686), - [anon_sym_GT_GT_GT] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1684), - [anon_sym_BSLASH] = ACTIONS(1686), - [anon_sym_STAR_STAR] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_LT_EQ] = ACTIONS(1684), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), - [anon_sym_LT_GT] = ACTIONS(1684), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), - [aux_sym_binary_expression_token1] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1684), - [anon_sym_GT] = ACTIONS(1686), - [aux_sym_binary_expression_token2] = ACTIONS(1686), - [aux_sym_binary_expression_token3] = ACTIONS(1686), - [aux_sym_binary_expression_token4] = ACTIONS(1684), - [aux_sym_binary_expression_token5] = ACTIONS(1684), - [aux_sym_binary_expression_token6] = ACTIONS(1684), - [anon_sym_QMARK_QMARK] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1686), - [anon_sym_in] = ACTIONS(1686), - [anon_sym_IN] = ACTIONS(1686), - [anon_sym_InstanceOf] = ACTIONS(1686), - [anon_sym_instanceof] = ACTIONS(1686), - [anon_sym_INSTANCEOF] = ACTIONS(1686), - [anon_sym_instanceOf] = ACTIONS(1686), - [sym__ternary_qmark] = ACTIONS(1684), - [sym__elvis_operator] = ACTIONS(1684), - [sym_logical_or] = ACTIONS(1684), - [sym_tag_linefeed] = ACTIONS(1684), + [STATE(3283)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3252)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(6614), - [sym__elvis_operator] = ACTIONS(6616), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2420), + [STATE(3284)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), + [anon_sym_STAR_STAR] = ACTIONS(6514), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3253)] = { + [STATE(3285)] = { [sym_identifier] = ACTIONS(2482), - [anon_sym_DOT] = ACTIONS(2484), + [anon_sym_DOT] = ACTIONS(6014), [anon_sym_STAR] = ACTIONS(2482), [anon_sym_LBRACE] = ACTIONS(2484), [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), @@ -424099,8 +428369,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), - [sym_optional_chain] = ACTIONS(2484), - [sym_static_chain] = ACTIONS(2484), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), [anon_sym_AMP_AMP] = ACTIONS(2484), [anon_sym_PIPE_PIPE] = ACTIONS(2484), [anon_sym_GT_GT] = ACTIONS(2482), @@ -424114,7 +428384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(2482), [anon_sym_PERCENT] = ACTIONS(2484), [anon_sym_BSLASH] = ACTIONS(2482), - [anon_sym_STAR_STAR] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6514), [anon_sym_LT] = ACTIONS(2482), [anon_sym_LT_EQ] = ACTIONS(2484), [anon_sym_EQ_EQ] = ACTIONS(2482), @@ -424131,8 +428401,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token5] = ACTIONS(2484), [aux_sym_binary_expression_token6] = ACTIONS(2484), [anon_sym_QMARK_QMARK] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_DASH_DASH] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), [sym_comment] = ACTIONS(129), [anon_sym_In] = ACTIONS(2482), [anon_sym_in] = ACTIONS(2482), @@ -424146,2870 +428416,1947 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_logical_or] = ACTIONS(2484), [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3254)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3255)] = { - [sym_identifier] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1670), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1672), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1672), - [sym_optional_chain] = ACTIONS(1670), - [sym_static_chain] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_BSLASH] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1670), - [anon_sym_LT_GT] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1670), - [aux_sym_binary_expression_token1] = ACTIONS(1670), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1672), - [aux_sym_binary_expression_token2] = ACTIONS(1672), - [aux_sym_binary_expression_token3] = ACTIONS(1672), - [aux_sym_binary_expression_token4] = ACTIONS(1670), - [aux_sym_binary_expression_token5] = ACTIONS(1670), - [aux_sym_binary_expression_token6] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1672), - [anon_sym_in] = ACTIONS(1672), - [anon_sym_IN] = ACTIONS(1672), - [anon_sym_InstanceOf] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1672), - [anon_sym_INSTANCEOF] = ACTIONS(1672), - [anon_sym_instanceOf] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1670), - [sym__elvis_operator] = ACTIONS(1670), - [sym_logical_or] = ACTIONS(1670), - [sym_tag_linefeed] = ACTIONS(1670), - }, - [STATE(3256)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6621), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3257)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6624), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3258)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(6627), - [anon_sym_RBRACE] = ACTIONS(6627), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(3259)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6070), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3260)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3261)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6633), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3262)] = { - [anon_sym_DOT] = ACTIONS(5518), + [STATE(3286)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(5520), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(6516), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2310), - [sym__ternary_qmark] = ACTIONS(6518), - [sym__elvis_operator] = ACTIONS(6520), - [sym_logical_or] = ACTIONS(6488), - }, - [STATE(3263)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6636), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3264)] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2418), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2418), - [sym_optional_chain] = ACTIONS(2420), - [sym_static_chain] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2420), - [anon_sym_LT_LT] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2420), - [anon_sym_BSLASH] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), - [anon_sym_LT_GT] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), - [aux_sym_binary_expression_token1] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_GT] = ACTIONS(2418), - [aux_sym_binary_expression_token2] = ACTIONS(2418), - [aux_sym_binary_expression_token3] = ACTIONS(2418), - [aux_sym_binary_expression_token4] = ACTIONS(2420), - [aux_sym_binary_expression_token5] = ACTIONS(2420), - [aux_sym_binary_expression_token6] = ACTIONS(2420), - [anon_sym_QMARK_QMARK] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_IN] = ACTIONS(2418), - [anon_sym_InstanceOf] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_INSTANCEOF] = ACTIONS(2418), - [anon_sym_instanceOf] = ACTIONS(2418), - [sym__ternary_qmark] = ACTIONS(2420), - [sym__elvis_operator] = ACTIONS(2420), - [sym_logical_or] = ACTIONS(2420), - [sym_tag_linefeed] = ACTIONS(2420), - }, - [STATE(3265)] = { - [sym_identifier] = ACTIONS(2486), - [anon_sym_DOT] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2488), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2486), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2486), - [sym_optional_chain] = ACTIONS(2488), - [sym_static_chain] = ACTIONS(2488), - [anon_sym_AMP_AMP] = ACTIONS(2488), - [anon_sym_PIPE_PIPE] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2486), - [anon_sym_GT_GT_GT] = ACTIONS(2488), - [anon_sym_LT_LT] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2486), - [anon_sym_CARET] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2486), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_PERCENT] = ACTIONS(2488), - [anon_sym_BSLASH] = ACTIONS(2486), - [anon_sym_STAR_STAR] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_LT_EQ] = ACTIONS(2488), - [anon_sym_EQ_EQ] = ACTIONS(2486), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2488), - [anon_sym_LT_GT] = ACTIONS(2488), - [anon_sym_BANG_EQ] = ACTIONS(2486), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2488), - [aux_sym_binary_expression_token1] = ACTIONS(2488), - [anon_sym_GT_EQ] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2486), - [aux_sym_binary_expression_token2] = ACTIONS(2486), - [aux_sym_binary_expression_token3] = ACTIONS(2486), - [aux_sym_binary_expression_token4] = ACTIONS(2488), - [aux_sym_binary_expression_token5] = ACTIONS(2488), - [aux_sym_binary_expression_token6] = ACTIONS(2488), - [anon_sym_QMARK_QMARK] = ACTIONS(2488), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2488), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_IN] = ACTIONS(2486), - [anon_sym_InstanceOf] = ACTIONS(2486), - [anon_sym_instanceof] = ACTIONS(2486), - [anon_sym_INSTANCEOF] = ACTIONS(2486), - [anon_sym_instanceOf] = ACTIONS(2486), - [sym__ternary_qmark] = ACTIONS(2488), - [sym__elvis_operator] = ACTIONS(2488), - [sym_logical_or] = ACTIONS(2488), - [sym_tag_linefeed] = ACTIONS(2488), - }, - [STATE(3266)] = { - [sym_identifier] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_tag_linefeed] = ACTIONS(2436), - }, - [STATE(3267)] = { - [sym_identifier] = ACTIONS(6639), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SEMI] = ACTIONS(6641), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6301), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6303), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6305), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6299), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6309), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6307), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6307), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(6311), - [anon_sym_PIPE_PIPE] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6315), - [anon_sym_GT_GT_GT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6325), - [anon_sym_DASH] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_BSLASH] = ACTIONS(6299), - [anon_sym_STAR_STAR] = ACTIONS(6329), - [anon_sym_LT] = ACTIONS(6307), - [anon_sym_LT_EQ] = ACTIONS(6331), - [anon_sym_EQ_EQ] = ACTIONS(6309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6333), - [anon_sym_LT_GT] = ACTIONS(6333), - [anon_sym_BANG_EQ] = ACTIONS(6309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6333), - [aux_sym_binary_expression_token1] = ACTIONS(6333), - [anon_sym_GT_EQ] = ACTIONS(6331), - [anon_sym_GT] = ACTIONS(6307), - [aux_sym_binary_expression_token2] = ACTIONS(6307), - [aux_sym_binary_expression_token3] = ACTIONS(6307), - [aux_sym_binary_expression_token4] = ACTIONS(6331), - [aux_sym_binary_expression_token5] = ACTIONS(6331), - [aux_sym_binary_expression_token6] = ACTIONS(6333), - [anon_sym_QMARK_QMARK] = ACTIONS(6335), - [anon_sym_PLUS_PLUS] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5886), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6307), - [anon_sym_in] = ACTIONS(6307), - [anon_sym_IN] = ACTIONS(6307), - [anon_sym_InstanceOf] = ACTIONS(6307), - [anon_sym_instanceof] = ACTIONS(6307), - [anon_sym_INSTANCEOF] = ACTIONS(6307), - [anon_sym_instanceOf] = ACTIONS(6307), - [sym__automatic_semicolon] = ACTIONS(6641), - [sym__ternary_qmark] = ACTIONS(6337), - [sym__elvis_operator] = ACTIONS(6339), - [sym_logical_or] = ACTIONS(6313), - [sym_tag_linefeed] = ACTIONS(6641), - }, - [STATE(3268)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6072), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3269)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6643), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3270)] = { - [anon_sym_DOT] = ACTIONS(5518), + [STATE(3287)] = { + [sym_identifier] = ACTIONS(2576), + [anon_sym_DOT] = ACTIONS(6014), [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5520), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(6018), [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(6516), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(6518), - [sym__elvis_operator] = ACTIONS(6520), - [sym_logical_or] = ACTIONS(6488), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(6524), + [sym__elvis_operator] = ACTIONS(6526), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2578), }, - [STATE(3271)] = { - [anon_sym_DOT] = ACTIONS(5518), + [STATE(3288)] = { + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(6014), [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5520), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(6018), [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(6516), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(6518), - [sym__elvis_operator] = ACTIONS(6520), - [sym_logical_or] = ACTIONS(6488), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(6524), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2586), }, - [STATE(3272)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6646), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3289)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6539), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3273)] = { - [anon_sym_DOT] = ACTIONS(5518), + [STATE(3290)] = { + [sym_identifier] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(6014), [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5520), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(6018), [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(6516), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(6518), - [sym__elvis_operator] = ACTIONS(6520), - [sym_logical_or] = ACTIONS(6488), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(6524), + [sym__elvis_operator] = ACTIONS(6526), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2410), }, - [STATE(3274)] = { - [anon_sym_DOT] = ACTIONS(5518), + [STATE(3291)] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(6014), [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(6018), [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(6524), + [sym__elvis_operator] = ACTIONS(6526), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2418), }, - [STATE(3275)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3292)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6542), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3276)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3293)] = { + [sym_identifier] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6549), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6551), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(6581), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(6583), + [sym__elvis_operator] = ACTIONS(6585), + [sym_logical_or] = ACTIONS(6559), + [sym_tag_linefeed] = ACTIONS(2478), }, - [STATE(3277)] = { - [anon_sym_DOT] = ACTIONS(5518), + [STATE(3294)] = { + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(6014), [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(6018), [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6494), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6492), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6492), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6496), + [anon_sym_PIPE_PIPE] = ACTIONS(6498), + [anon_sym_GT_GT] = ACTIONS(6500), + [anon_sym_GT_GT_GT] = ACTIONS(6502), + [anon_sym_LT_LT] = ACTIONS(6502), + [anon_sym_AMP] = ACTIONS(6504), + [anon_sym_CARET] = ACTIONS(6506), + [anon_sym_PIPE] = ACTIONS(6508), + [anon_sym_PLUS] = ACTIONS(6510), + [anon_sym_DASH] = ACTIONS(6510), [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), + [anon_sym_PERCENT] = ACTIONS(6512), + [anon_sym_BSLASH] = ACTIONS(6484), [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(6492), + [anon_sym_LT_EQ] = ACTIONS(6516), + [anon_sym_EQ_EQ] = ACTIONS(6494), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6518), + [anon_sym_LT_GT] = ACTIONS(6518), + [anon_sym_BANG_EQ] = ACTIONS(6494), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6518), + [aux_sym_binary_expression_token1] = ACTIONS(6518), + [anon_sym_GT_EQ] = ACTIONS(6516), + [anon_sym_GT] = ACTIONS(6492), + [aux_sym_binary_expression_token2] = ACTIONS(6492), + [aux_sym_binary_expression_token3] = ACTIONS(6492), + [aux_sym_binary_expression_token4] = ACTIONS(6516), + [aux_sym_binary_expression_token5] = ACTIONS(6516), + [aux_sym_binary_expression_token6] = ACTIONS(6518), + [anon_sym_QMARK_QMARK] = ACTIONS(6520), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6492), + [anon_sym_in] = ACTIONS(6492), + [anon_sym_IN] = ACTIONS(6492), + [anon_sym_InstanceOf] = ACTIONS(6492), + [anon_sym_instanceof] = ACTIONS(6492), + [anon_sym_INSTANCEOF] = ACTIONS(6492), + [anon_sym_instanceOf] = ACTIONS(6492), + [sym__ternary_qmark] = ACTIONS(6524), + [sym__elvis_operator] = ACTIONS(6526), + [sym_logical_or] = ACTIONS(6498), + [sym_tag_linefeed] = ACTIONS(2342), }, - [STATE(3278)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3295)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [aux_sym_object_repeat1] = STATE(4809), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(5484), + [anon_sym_RBRACE] = ACTIONS(6043), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, - [STATE(3279)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3296)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6587), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3280)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3297)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4686), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6590), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3281)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3298)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3282)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3299)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6595), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3283)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3300)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6551), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3284)] = { + [STATE(3301)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6135), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3285)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3302)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6179), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6181), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE_PIPE] = ACTIONS(6189), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6189), + [sym__parameter_separator] = ACTIONS(2484), }, - [STATE(3286)] = { + [STATE(3303)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6488), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6139), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3287)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(6516), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(6518), - [sym__elvis_operator] = ACTIONS(6520), - [sym_logical_or] = ACTIONS(6488), + [STATE(3304)] = { + [sym_identifier] = ACTIONS(2556), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2556), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2556), + [sym_optional_chain] = ACTIONS(2558), + [sym_static_chain] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2556), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_BSLASH] = ACTIONS(2556), + [anon_sym_STAR_STAR] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2558), + [anon_sym_LT_GT] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2558), + [aux_sym_binary_expression_token1] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2556), + [aux_sym_binary_expression_token2] = ACTIONS(2556), + [aux_sym_binary_expression_token3] = ACTIONS(2556), + [aux_sym_binary_expression_token4] = ACTIONS(2558), + [aux_sym_binary_expression_token5] = ACTIONS(2558), + [aux_sym_binary_expression_token6] = ACTIONS(2558), + [anon_sym_QMARK_QMARK] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2556), + [anon_sym_IN] = ACTIONS(2556), + [anon_sym_InstanceOf] = ACTIONS(2556), + [anon_sym_instanceof] = ACTIONS(2556), + [anon_sym_INSTANCEOF] = ACTIONS(2556), + [anon_sym_instanceOf] = ACTIONS(2556), + [sym__ternary_qmark] = ACTIONS(2558), + [sym__elvis_operator] = ACTIONS(2558), + [sym_logical_or] = ACTIONS(2558), + [sym_tag_linefeed] = ACTIONS(2558), }, - [STATE(3288)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6649), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3305)] = { + [sym_identifier] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(1087), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1090), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1090), + [sym_optional_chain] = ACTIONS(1087), + [sym_static_chain] = ACTIONS(1087), + [anon_sym_AMP_AMP] = ACTIONS(1087), + [anon_sym_PIPE_PIPE] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_GT_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1090), + [anon_sym_STAR_STAR] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1090), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1087), + [anon_sym_LT_GT] = ACTIONS(1087), + [anon_sym_BANG_EQ] = ACTIONS(1090), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1087), + [aux_sym_binary_expression_token1] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1090), + [aux_sym_binary_expression_token2] = ACTIONS(1090), + [aux_sym_binary_expression_token3] = ACTIONS(1090), + [aux_sym_binary_expression_token4] = ACTIONS(1087), + [aux_sym_binary_expression_token5] = ACTIONS(1087), + [aux_sym_binary_expression_token6] = ACTIONS(1087), + [anon_sym_QMARK_QMARK] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_IN] = ACTIONS(1090), + [anon_sym_InstanceOf] = ACTIONS(1090), + [anon_sym_instanceof] = ACTIONS(1090), + [anon_sym_INSTANCEOF] = ACTIONS(1090), + [anon_sym_instanceOf] = ACTIONS(1090), + [sym__ternary_qmark] = ACTIONS(1087), + [sym__elvis_operator] = ACTIONS(1087), + [sym_logical_or] = ACTIONS(1087), + [sym_tag_linefeed] = ACTIONS(1087), }, - [STATE(3289)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6652), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3306)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3290)] = { + [STATE(3307)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(6516), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(6518), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6488), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6157), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3291)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6484), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6486), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6488), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6490), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6492), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6494), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6500), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6496), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6494), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6486), - [anon_sym_PIPE_PIPE] = ACTIONS(6488), - [anon_sym_GT_GT] = ACTIONS(6502), - [anon_sym_GT_GT_GT] = ACTIONS(6504), - [anon_sym_LT_LT] = ACTIONS(6504), - [anon_sym_AMP] = ACTIONS(6506), - [anon_sym_CARET] = ACTIONS(6508), - [anon_sym_PIPE] = ACTIONS(6510), - [anon_sym_PLUS] = ACTIONS(6512), - [anon_sym_DASH] = ACTIONS(6512), - [anon_sym_SLASH] = ACTIONS(6484), - [anon_sym_PERCENT] = ACTIONS(6492), - [anon_sym_BSLASH] = ACTIONS(6492), - [anon_sym_STAR_STAR] = ACTIONS(6514), - [anon_sym_LT] = ACTIONS(6494), - [anon_sym_LT_EQ] = ACTIONS(6496), - [anon_sym_EQ_EQ] = ACTIONS(6498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6500), - [anon_sym_LT_GT] = ACTIONS(6500), - [anon_sym_BANG_EQ] = ACTIONS(6498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6500), - [aux_sym_binary_expression_token1] = ACTIONS(6500), - [anon_sym_GT_EQ] = ACTIONS(6496), - [anon_sym_GT] = ACTIONS(6494), - [aux_sym_binary_expression_token2] = ACTIONS(6494), - [aux_sym_binary_expression_token3] = ACTIONS(6494), - [aux_sym_binary_expression_token4] = ACTIONS(6496), - [aux_sym_binary_expression_token5] = ACTIONS(6496), - [aux_sym_binary_expression_token6] = ACTIONS(6500), - [anon_sym_QMARK_QMARK] = ACTIONS(6516), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6494), - [anon_sym_in] = ACTIONS(6494), - [anon_sym_IN] = ACTIONS(6494), - [anon_sym_InstanceOf] = ACTIONS(6496), - [anon_sym_instanceof] = ACTIONS(6496), - [anon_sym_INSTANCEOF] = ACTIONS(6496), - [anon_sym_instanceOf] = ACTIONS(6496), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(6518), - [sym__elvis_operator] = ACTIONS(6520), - [sym_logical_or] = ACTIONS(6488), + [STATE(3308)] = { + [sym_identifier] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6549), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6551), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(6581), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(6583), + [sym__elvis_operator] = ACTIONS(6585), + [sym_logical_or] = ACTIONS(6559), + [sym_tag_linefeed] = ACTIONS(2410), }, - [STATE(3292)] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_DOT] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2518), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2518), - [sym_optional_chain] = ACTIONS(2520), - [sym_static_chain] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_GT_GT] = ACTIONS(2518), - [anon_sym_GT_GT_GT] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_BSLASH] = ACTIONS(2518), - [anon_sym_STAR_STAR] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2520), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2520), - [anon_sym_LT_GT] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2520), - [aux_sym_binary_expression_token1] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [aux_sym_binary_expression_token2] = ACTIONS(2518), - [aux_sym_binary_expression_token3] = ACTIONS(2518), - [aux_sym_binary_expression_token4] = ACTIONS(2520), - [aux_sym_binary_expression_token5] = ACTIONS(2520), - [aux_sym_binary_expression_token6] = ACTIONS(2520), - [anon_sym_QMARK_QMARK] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2518), - [anon_sym_in] = ACTIONS(2518), - [anon_sym_IN] = ACTIONS(2518), - [anon_sym_InstanceOf] = ACTIONS(2518), - [anon_sym_instanceof] = ACTIONS(2518), - [anon_sym_INSTANCEOF] = ACTIONS(2518), - [anon_sym_instanceOf] = ACTIONS(2518), - [sym__ternary_qmark] = ACTIONS(2520), - [sym__elvis_operator] = ACTIONS(2520), - [sym_logical_or] = ACTIONS(2520), - [sym_tag_linefeed] = ACTIONS(2520), + [STATE(3309)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4650), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3293)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(3310)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(1668), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3294)] = { + [STATE(3311)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(5868), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), + }, + [STATE(3312)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3313)] = { + [sym_identifier] = ACTIONS(5264), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COMMA] = ACTIONS(5266), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(6655), + [anon_sym_RPAREN] = ACTIONS(5266), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -427025,7 +430372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -427049,93 +430396,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3295)] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym_tag_linefeed] = ACTIONS(2347), + [STATE(3314)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6603), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3296)] = { + [STATE(3315)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(5230), - [anon_sym_RBRACE] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5276), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -427199,3349 +430546,2071 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3297)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6658), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3298)] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym_tag_linefeed] = ACTIONS(2353), - }, - [STATE(3299)] = { - [sym_identifier] = ACTIONS(5261), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(3300)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6661), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3301)] = { - [sym_identifier] = ACTIONS(2542), - [anon_sym_DOT] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(2544), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2542), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2542), - [sym_optional_chain] = ACTIONS(2544), - [sym_static_chain] = ACTIONS(2544), - [anon_sym_AMP_AMP] = ACTIONS(2544), - [anon_sym_PIPE_PIPE] = ACTIONS(2544), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2544), - [anon_sym_LT_LT] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2544), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2544), - [anon_sym_BSLASH] = ACTIONS(2542), - [anon_sym_STAR_STAR] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2544), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2544), - [anon_sym_LT_GT] = ACTIONS(2544), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2544), - [aux_sym_binary_expression_token1] = ACTIONS(2544), - [anon_sym_GT_EQ] = ACTIONS(2544), - [anon_sym_GT] = ACTIONS(2542), - [aux_sym_binary_expression_token2] = ACTIONS(2542), - [aux_sym_binary_expression_token3] = ACTIONS(2542), - [aux_sym_binary_expression_token4] = ACTIONS(2544), - [aux_sym_binary_expression_token5] = ACTIONS(2544), - [aux_sym_binary_expression_token6] = ACTIONS(2544), - [anon_sym_QMARK_QMARK] = ACTIONS(2544), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_IN] = ACTIONS(2542), - [anon_sym_InstanceOf] = ACTIONS(2542), - [anon_sym_instanceof] = ACTIONS(2542), - [anon_sym_INSTANCEOF] = ACTIONS(2542), - [anon_sym_instanceOf] = ACTIONS(2542), - [sym__ternary_qmark] = ACTIONS(2544), - [sym__elvis_operator] = ACTIONS(2544), - [sym_logical_or] = ACTIONS(2544), - [sym_tag_linefeed] = ACTIONS(2544), - }, - [STATE(3302)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(6664), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(6281), - [sym__elvis_operator] = ACTIONS(6283), - [sym_logical_or] = ACTIONS(6251), - }, - [STATE(3303)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6667), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3304)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6670), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3305)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6673), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6673), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3306)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(6675), - [anon_sym_RBRACE] = ACTIONS(6678), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(6281), - [sym__elvis_operator] = ACTIONS(6283), - [sym_logical_or] = ACTIONS(6251), - }, - [STATE(3307)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6680), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3308)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6683), - [anon_sym_RBRACE] = ACTIONS(6683), - [anon_sym_RPAREN] = ACTIONS(6683), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6683), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3309)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3310)] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(6614), - [sym__elvis_operator] = ACTIONS(6616), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2428), - }, - [STATE(3311)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3312)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3313)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3314)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3315)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, [STATE(3316)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6606), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3317)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3318)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6609), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3319)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2464), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2464), + [sym_optional_chain] = ACTIONS(2466), + [sym_static_chain] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_SLASH] = ACTIONS(2464), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_BSLASH] = ACTIONS(2464), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2464), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_LT_GT] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2464), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [aux_sym_binary_expression_token1] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2464), + [aux_sym_binary_expression_token2] = ACTIONS(2464), + [aux_sym_binary_expression_token3] = ACTIONS(2464), + [aux_sym_binary_expression_token4] = ACTIONS(2466), + [aux_sym_binary_expression_token5] = ACTIONS(2466), + [aux_sym_binary_expression_token6] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2464), + [anon_sym_in] = ACTIONS(2464), + [anon_sym_IN] = ACTIONS(2464), + [anon_sym_InstanceOf] = ACTIONS(2464), + [anon_sym_instanceof] = ACTIONS(2464), + [anon_sym_INSTANCEOF] = ACTIONS(2464), + [anon_sym_instanceOf] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2466), + [sym__elvis_operator] = ACTIONS(2466), + [sym_logical_or] = ACTIONS(2466), + [sym_tag_linefeed] = ACTIONS(2466), }, [STATE(3320)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3321)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(5916), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3322)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3323)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3324)] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(6614), - [sym__elvis_operator] = ACTIONS(6616), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2460), + [aux_sym_sequence_expression_repeat1] = STATE(4514), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6618), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3325)] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(6614), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2468), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(5918), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3326)] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(6614), - [sym__elvis_operator] = ACTIONS(6616), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2472), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3327)] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(6614), - [sym__elvis_operator] = ACTIONS(6616), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2506), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2504), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2504), + [sym_optional_chain] = ACTIONS(2506), + [sym_static_chain] = ACTIONS(2506), + [anon_sym_AMP_AMP] = ACTIONS(2506), + [anon_sym_PIPE_PIPE] = ACTIONS(2506), + [anon_sym_GT_GT] = ACTIONS(2504), + [anon_sym_GT_GT_GT] = ACTIONS(2506), + [anon_sym_LT_LT] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_CARET] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2506), + [anon_sym_BSLASH] = ACTIONS(2504), + [anon_sym_STAR_STAR] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_LT_EQ] = ACTIONS(2506), + [anon_sym_EQ_EQ] = ACTIONS(2504), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2506), + [anon_sym_LT_GT] = ACTIONS(2506), + [anon_sym_BANG_EQ] = ACTIONS(2504), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2506), + [aux_sym_binary_expression_token1] = ACTIONS(2506), + [anon_sym_GT_EQ] = ACTIONS(2506), + [anon_sym_GT] = ACTIONS(2504), + [aux_sym_binary_expression_token2] = ACTIONS(2504), + [aux_sym_binary_expression_token3] = ACTIONS(2504), + [aux_sym_binary_expression_token4] = ACTIONS(2506), + [aux_sym_binary_expression_token5] = ACTIONS(2506), + [aux_sym_binary_expression_token6] = ACTIONS(2506), + [anon_sym_QMARK_QMARK] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2504), + [anon_sym_in] = ACTIONS(2504), + [anon_sym_IN] = ACTIONS(2504), + [anon_sym_InstanceOf] = ACTIONS(2504), + [anon_sym_instanceof] = ACTIONS(2504), + [anon_sym_INSTANCEOF] = ACTIONS(2504), + [anon_sym_instanceOf] = ACTIONS(2504), + [sym__ternary_qmark] = ACTIONS(2506), + [sym__elvis_operator] = ACTIONS(2506), + [sym_logical_or] = ACTIONS(2506), }, [STATE(3328)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_identifier] = ACTIONS(2560), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2560), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2560), + [sym_optional_chain] = ACTIONS(2562), + [sym_static_chain] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2560), + [anon_sym_GT_GT_GT] = ACTIONS(2562), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_BSLASH] = ACTIONS(2560), + [anon_sym_STAR_STAR] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_LT_EQ] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2562), + [anon_sym_LT_GT] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2562), + [aux_sym_binary_expression_token1] = ACTIONS(2562), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2560), + [aux_sym_binary_expression_token2] = ACTIONS(2560), + [aux_sym_binary_expression_token3] = ACTIONS(2560), + [aux_sym_binary_expression_token4] = ACTIONS(2562), + [aux_sym_binary_expression_token5] = ACTIONS(2562), + [aux_sym_binary_expression_token6] = ACTIONS(2562), + [anon_sym_QMARK_QMARK] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [anon_sym_IN] = ACTIONS(2560), + [anon_sym_InstanceOf] = ACTIONS(2560), + [anon_sym_instanceof] = ACTIONS(2560), + [anon_sym_INSTANCEOF] = ACTIONS(2560), + [anon_sym_instanceOf] = ACTIONS(2560), + [sym__ternary_qmark] = ACTIONS(2562), + [sym__elvis_operator] = ACTIONS(2562), + [sym_logical_or] = ACTIONS(2562), + [sym_tag_linefeed] = ACTIONS(2562), }, [STATE(3329)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6691), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6620), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3330)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6694), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_identifier] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2568), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2568), + [sym_optional_chain] = ACTIONS(2570), + [sym_static_chain] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2568), + [anon_sym_GT_GT_GT] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_BSLASH] = ACTIONS(2568), + [anon_sym_STAR_STAR] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2570), + [anon_sym_LT_GT] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2570), + [aux_sym_binary_expression_token1] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2568), + [aux_sym_binary_expression_token2] = ACTIONS(2568), + [aux_sym_binary_expression_token3] = ACTIONS(2568), + [aux_sym_binary_expression_token4] = ACTIONS(2570), + [aux_sym_binary_expression_token5] = ACTIONS(2570), + [aux_sym_binary_expression_token6] = ACTIONS(2570), + [anon_sym_QMARK_QMARK] = ACTIONS(2570), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_IN] = ACTIONS(2568), + [anon_sym_InstanceOf] = ACTIONS(2568), + [anon_sym_instanceof] = ACTIONS(2568), + [anon_sym_INSTANCEOF] = ACTIONS(2568), + [anon_sym_instanceOf] = ACTIONS(2568), + [sym__ternary_qmark] = ACTIONS(2570), + [sym__elvis_operator] = ACTIONS(2570), + [sym_logical_or] = ACTIONS(2570), + [sym_tag_linefeed] = ACTIONS(2570), }, [STATE(3331)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6697), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6623), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3332)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6700), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6700), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [sym_identifier] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(6628), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6549), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6551), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(6581), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(6628), + [sym__ternary_qmark] = ACTIONS(6583), + [sym__elvis_operator] = ACTIONS(6585), + [sym_logical_or] = ACTIONS(6559), + [sym_tag_linefeed] = ACTIONS(6628), }, [STATE(3333)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(5606), - [anon_sym_COMMA] = ACTIONS(6702), - [anon_sym_RBRACE] = ACTIONS(6702), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3334)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6704), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6633), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3335)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6707), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_identifier] = ACTIONS(2468), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2468), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2468), + [sym_optional_chain] = ACTIONS(2470), + [sym_static_chain] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2468), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_SLASH] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_BSLASH] = ACTIONS(2468), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_LT_GT] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [aux_sym_binary_expression_token1] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2468), + [aux_sym_binary_expression_token2] = ACTIONS(2468), + [aux_sym_binary_expression_token3] = ACTIONS(2468), + [aux_sym_binary_expression_token4] = ACTIONS(2470), + [aux_sym_binary_expression_token5] = ACTIONS(2470), + [aux_sym_binary_expression_token6] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2468), + [anon_sym_IN] = ACTIONS(2468), + [anon_sym_InstanceOf] = ACTIONS(2468), + [anon_sym_instanceof] = ACTIONS(2468), + [anon_sym_INSTANCEOF] = ACTIONS(2468), + [anon_sym_instanceOf] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2470), + [sym__elvis_operator] = ACTIONS(2470), + [sym_logical_or] = ACTIONS(2470), + [sym_tag_linefeed] = ACTIONS(2470), }, [STATE(3336)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6710), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [aux_sym_sequence_expression_repeat1] = STATE(4514), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6636), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6636), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3337)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6713), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6638), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3338)] = { - [sym_identifier] = ACTIONS(2546), - [anon_sym_DOT] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2548), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2546), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2546), - [sym_optional_chain] = ACTIONS(2548), - [sym_static_chain] = ACTIONS(2548), - [anon_sym_AMP_AMP] = ACTIONS(2548), - [anon_sym_PIPE_PIPE] = ACTIONS(2548), - [anon_sym_GT_GT] = ACTIONS(2546), - [anon_sym_GT_GT_GT] = ACTIONS(2548), - [anon_sym_LT_LT] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_BSLASH] = ACTIONS(2546), - [anon_sym_STAR_STAR] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_LT_EQ] = ACTIONS(2548), - [anon_sym_EQ_EQ] = ACTIONS(2546), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2548), - [anon_sym_LT_GT] = ACTIONS(2548), - [anon_sym_BANG_EQ] = ACTIONS(2546), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2548), - [aux_sym_binary_expression_token1] = ACTIONS(2548), - [anon_sym_GT_EQ] = ACTIONS(2548), - [anon_sym_GT] = ACTIONS(2546), - [aux_sym_binary_expression_token2] = ACTIONS(2546), - [aux_sym_binary_expression_token3] = ACTIONS(2546), - [aux_sym_binary_expression_token4] = ACTIONS(2548), - [aux_sym_binary_expression_token5] = ACTIONS(2548), - [aux_sym_binary_expression_token6] = ACTIONS(2548), - [anon_sym_QMARK_QMARK] = ACTIONS(2548), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2546), - [anon_sym_in] = ACTIONS(2546), - [anon_sym_IN] = ACTIONS(2546), - [anon_sym_InstanceOf] = ACTIONS(2546), - [anon_sym_instanceof] = ACTIONS(2546), - [anon_sym_INSTANCEOF] = ACTIONS(2546), - [anon_sym_instanceOf] = ACTIONS(2546), - [sym__ternary_qmark] = ACTIONS(2548), - [sym__elvis_operator] = ACTIONS(2548), - [sym_logical_or] = ACTIONS(2548), - [sym_tag_linefeed] = ACTIONS(2548), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6641), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3339)] = { - [sym_identifier] = ACTIONS(2550), - [anon_sym_DOT] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2550), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2550), - [sym_optional_chain] = ACTIONS(2552), - [sym_static_chain] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [anon_sym_GT_GT] = ACTIONS(2550), - [anon_sym_GT_GT_GT] = ACTIONS(2552), - [anon_sym_LT_LT] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_CARET] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_PERCENT] = ACTIONS(2552), - [anon_sym_BSLASH] = ACTIONS(2550), - [anon_sym_STAR_STAR] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_LT_EQ] = ACTIONS(2552), - [anon_sym_EQ_EQ] = ACTIONS(2550), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2552), - [anon_sym_LT_GT] = ACTIONS(2552), - [anon_sym_BANG_EQ] = ACTIONS(2550), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2552), - [aux_sym_binary_expression_token1] = ACTIONS(2552), - [anon_sym_GT_EQ] = ACTIONS(2552), - [anon_sym_GT] = ACTIONS(2550), - [aux_sym_binary_expression_token2] = ACTIONS(2550), - [aux_sym_binary_expression_token3] = ACTIONS(2550), - [aux_sym_binary_expression_token4] = ACTIONS(2552), - [aux_sym_binary_expression_token5] = ACTIONS(2552), - [aux_sym_binary_expression_token6] = ACTIONS(2552), - [anon_sym_QMARK_QMARK] = ACTIONS(2552), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2550), - [anon_sym_in] = ACTIONS(2550), - [anon_sym_IN] = ACTIONS(2550), - [anon_sym_InstanceOf] = ACTIONS(2550), - [anon_sym_instanceof] = ACTIONS(2550), - [anon_sym_INSTANCEOF] = ACTIONS(2550), - [anon_sym_instanceOf] = ACTIONS(2550), - [sym__ternary_qmark] = ACTIONS(2552), - [sym__elvis_operator] = ACTIONS(2552), - [sym_logical_or] = ACTIONS(2552), - [sym_tag_linefeed] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2572), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2572), + [sym_optional_chain] = ACTIONS(2574), + [sym_static_chain] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(2574), + [anon_sym_PIPE_PIPE] = ACTIONS(2574), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_GT_GT_GT] = ACTIONS(2574), + [anon_sym_LT_LT] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2574), + [anon_sym_BSLASH] = ACTIONS(2572), + [anon_sym_STAR_STAR] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2574), + [anon_sym_EQ_EQ] = ACTIONS(2572), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2574), + [anon_sym_LT_GT] = ACTIONS(2574), + [anon_sym_BANG_EQ] = ACTIONS(2572), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2574), + [aux_sym_binary_expression_token1] = ACTIONS(2574), + [anon_sym_GT_EQ] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(2572), + [aux_sym_binary_expression_token2] = ACTIONS(2572), + [aux_sym_binary_expression_token3] = ACTIONS(2572), + [aux_sym_binary_expression_token4] = ACTIONS(2574), + [aux_sym_binary_expression_token5] = ACTIONS(2574), + [aux_sym_binary_expression_token6] = ACTIONS(2574), + [anon_sym_QMARK_QMARK] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2572), + [anon_sym_in] = ACTIONS(2572), + [anon_sym_IN] = ACTIONS(2572), + [anon_sym_InstanceOf] = ACTIONS(2572), + [anon_sym_instanceof] = ACTIONS(2572), + [anon_sym_INSTANCEOF] = ACTIONS(2572), + [anon_sym_instanceOf] = ACTIONS(2572), + [sym__ternary_qmark] = ACTIONS(2574), + [sym__elvis_operator] = ACTIONS(2574), + [sym_logical_or] = ACTIONS(2574), + [sym_tag_linefeed] = ACTIONS(2574), }, [STATE(3340)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3341)] = { - [sym_identifier] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2347), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2344), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2344), - [sym_optional_chain] = ACTIONS(2347), - [sym_static_chain] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(2347), - [anon_sym_PIPE_PIPE] = ACTIONS(2347), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2347), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), - [anon_sym_LT_GT] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), - [aux_sym_binary_expression_token1] = ACTIONS(2347), - [anon_sym_GT_EQ] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2344), - [aux_sym_binary_expression_token2] = ACTIONS(2344), - [aux_sym_binary_expression_token3] = ACTIONS(2344), - [aux_sym_binary_expression_token4] = ACTIONS(2347), - [aux_sym_binary_expression_token5] = ACTIONS(2347), - [aux_sym_binary_expression_token6] = ACTIONS(2347), - [anon_sym_QMARK_QMARK] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_IN] = ACTIONS(2344), - [anon_sym_InstanceOf] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_INSTANCEOF] = ACTIONS(2344), - [anon_sym_instanceOf] = ACTIONS(2344), - [sym__ternary_qmark] = ACTIONS(2347), - [sym__elvis_operator] = ACTIONS(2347), - [sym_logical_or] = ACTIONS(2347), - [sym_tag_linefeed] = ACTIONS(2440), - }, - [STATE(3342)] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2353), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2350), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2350), - [sym_optional_chain] = ACTIONS(2353), - [sym_static_chain] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_PIPE_PIPE] = ACTIONS(2353), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2353), - [anon_sym_LT_LT] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2353), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2353), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2353), - [anon_sym_LT_GT] = ACTIONS(2353), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2353), - [aux_sym_binary_expression_token1] = ACTIONS(2353), - [anon_sym_GT_EQ] = ACTIONS(2353), - [anon_sym_GT] = ACTIONS(2350), - [aux_sym_binary_expression_token2] = ACTIONS(2350), - [aux_sym_binary_expression_token3] = ACTIONS(2350), - [aux_sym_binary_expression_token4] = ACTIONS(2353), - [aux_sym_binary_expression_token5] = ACTIONS(2353), - [aux_sym_binary_expression_token6] = ACTIONS(2353), - [anon_sym_QMARK_QMARK] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_IN] = ACTIONS(2350), - [anon_sym_InstanceOf] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_INSTANCEOF] = ACTIONS(2350), - [anon_sym_instanceOf] = ACTIONS(2350), - [sym__ternary_qmark] = ACTIONS(2353), - [sym__elvis_operator] = ACTIONS(2353), - [sym_logical_or] = ACTIONS(2353), - [sym_tag_linefeed] = ACTIONS(2444), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6644), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3341)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6647), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3342)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(6650), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(6256), + [sym__elvis_operator] = ACTIONS(6258), + [sym_logical_or] = ACTIONS(6226), }, [STATE(3343)] = { - [sym_identifier] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1085), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1088), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1088), - [sym_optional_chain] = ACTIONS(1085), - [sym_static_chain] = ACTIONS(1085), - [anon_sym_AMP_AMP] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_STAR_STAR] = ACTIONS(1085), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1085), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1085), - [anon_sym_LT_GT] = ACTIONS(1085), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1085), - [aux_sym_binary_expression_token1] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1088), - [aux_sym_binary_expression_token2] = ACTIONS(1088), - [aux_sym_binary_expression_token3] = ACTIONS(1088), - [aux_sym_binary_expression_token4] = ACTIONS(1085), - [aux_sym_binary_expression_token5] = ACTIONS(1085), - [aux_sym_binary_expression_token6] = ACTIONS(1085), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1088), - [anon_sym_in] = ACTIONS(1088), - [anon_sym_IN] = ACTIONS(1088), - [anon_sym_InstanceOf] = ACTIONS(1088), - [anon_sym_instanceof] = ACTIONS(1088), - [anon_sym_INSTANCEOF] = ACTIONS(1088), - [anon_sym_instanceOf] = ACTIONS(1088), - [sym__ternary_qmark] = ACTIONS(1085), - [sym__elvis_operator] = ACTIONS(1085), - [sym_logical_or] = ACTIONS(1085), - [sym_tag_linefeed] = ACTIONS(1085), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6655), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3344)] = { + [sym_identifier] = ACTIONS(2580), + [anon_sym_DOT] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2582), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2580), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2580), + [sym_optional_chain] = ACTIONS(2582), + [sym_static_chain] = ACTIONS(2582), + [anon_sym_AMP_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2582), + [anon_sym_GT_GT] = ACTIONS(2580), + [anon_sym_GT_GT_GT] = ACTIONS(2582), + [anon_sym_LT_LT] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_BSLASH] = ACTIONS(2580), + [anon_sym_STAR_STAR] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2582), + [anon_sym_LT_GT] = ACTIONS(2582), + [anon_sym_BANG_EQ] = ACTIONS(2580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2582), + [aux_sym_binary_expression_token1] = ACTIONS(2582), + [anon_sym_GT_EQ] = ACTIONS(2582), + [anon_sym_GT] = ACTIONS(2580), + [aux_sym_binary_expression_token2] = ACTIONS(2580), + [aux_sym_binary_expression_token3] = ACTIONS(2580), + [aux_sym_binary_expression_token4] = ACTIONS(2582), + [aux_sym_binary_expression_token5] = ACTIONS(2582), + [aux_sym_binary_expression_token6] = ACTIONS(2582), + [anon_sym_QMARK_QMARK] = ACTIONS(2582), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2580), + [anon_sym_in] = ACTIONS(2580), + [anon_sym_IN] = ACTIONS(2580), + [anon_sym_InstanceOf] = ACTIONS(2580), + [anon_sym_instanceof] = ACTIONS(2580), + [anon_sym_INSTANCEOF] = ACTIONS(2580), + [anon_sym_instanceOf] = ACTIONS(2580), + [sym__ternary_qmark] = ACTIONS(2582), + [sym__elvis_operator] = ACTIONS(2582), + [sym_logical_or] = ACTIONS(2582), + [sym_tag_linefeed] = ACTIONS(2582), + }, + [STATE(3345)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -430602,1668 +432671,1596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(1696), + [sym__automatic_semicolon] = ACTIONS(1610), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3345)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6719), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, [STATE(3346)] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(6614), - [sym__elvis_operator] = ACTIONS(6616), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2464), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6658), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3347)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6661), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3348)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6725), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [aux_sym_sequence_expression_repeat1] = STATE(4514), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6127), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6127), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3349)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5230), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(5272), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6664), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3350)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3351)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4514), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6728), - [anon_sym_RBRACE] = ACTIONS(6728), - [anon_sym_RPAREN] = ACTIONS(6728), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6667), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6728), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3351)] = { - [sym_identifier] = ACTIONS(2554), - [anon_sym_DOT] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2556), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2554), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2554), - [sym_optional_chain] = ACTIONS(2556), - [sym_static_chain] = ACTIONS(2556), - [anon_sym_AMP_AMP] = ACTIONS(2556), - [anon_sym_PIPE_PIPE] = ACTIONS(2556), - [anon_sym_GT_GT] = ACTIONS(2554), - [anon_sym_GT_GT_GT] = ACTIONS(2556), - [anon_sym_LT_LT] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_PERCENT] = ACTIONS(2556), - [anon_sym_BSLASH] = ACTIONS(2554), - [anon_sym_STAR_STAR] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_LT_EQ] = ACTIONS(2556), - [anon_sym_EQ_EQ] = ACTIONS(2554), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2556), - [anon_sym_LT_GT] = ACTIONS(2556), - [anon_sym_BANG_EQ] = ACTIONS(2554), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2556), - [aux_sym_binary_expression_token1] = ACTIONS(2556), - [anon_sym_GT_EQ] = ACTIONS(2556), - [anon_sym_GT] = ACTIONS(2554), - [aux_sym_binary_expression_token2] = ACTIONS(2554), - [aux_sym_binary_expression_token3] = ACTIONS(2554), - [aux_sym_binary_expression_token4] = ACTIONS(2556), - [aux_sym_binary_expression_token5] = ACTIONS(2556), - [aux_sym_binary_expression_token6] = ACTIONS(2556), - [anon_sym_QMARK_QMARK] = ACTIONS(2556), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2554), - [anon_sym_in] = ACTIONS(2554), - [anon_sym_IN] = ACTIONS(2554), - [anon_sym_InstanceOf] = ACTIONS(2554), - [anon_sym_instanceof] = ACTIONS(2554), - [anon_sym_INSTANCEOF] = ACTIONS(2554), - [anon_sym_instanceOf] = ACTIONS(2554), - [sym__ternary_qmark] = ACTIONS(2556), - [sym__elvis_operator] = ACTIONS(2556), - [sym_logical_or] = ACTIONS(2556), - [sym_tag_linefeed] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6667), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3352)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6730), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3353)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [aux_sym_object_repeat1] = STATE(4574), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(5476), - [anon_sym_RBRACE] = ACTIONS(6116), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [aux_sym_sequence_expression_repeat1] = STATE(4514), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6669), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6669), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3354)] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2522), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2522), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_PIPE_PIPE] = ACTIONS(2524), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2524), - [anon_sym_LT_LT] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2524), - [anon_sym_BSLASH] = ACTIONS(2522), - [anon_sym_STAR_STAR] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2524), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2524), - [anon_sym_LT_GT] = ACTIONS(2524), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2524), - [aux_sym_binary_expression_token1] = ACTIONS(2524), - [anon_sym_GT_EQ] = ACTIONS(2524), - [anon_sym_GT] = ACTIONS(2522), - [aux_sym_binary_expression_token2] = ACTIONS(2522), - [aux_sym_binary_expression_token3] = ACTIONS(2522), - [aux_sym_binary_expression_token4] = ACTIONS(2524), - [aux_sym_binary_expression_token5] = ACTIONS(2524), - [aux_sym_binary_expression_token6] = ACTIONS(2524), - [anon_sym_QMARK_QMARK] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_IN] = ACTIONS(2522), - [anon_sym_InstanceOf] = ACTIONS(2522), - [anon_sym_instanceof] = ACTIONS(2522), - [anon_sym_INSTANCEOF] = ACTIONS(2522), - [anon_sym_instanceOf] = ACTIONS(2522), - [sym__ternary_qmark] = ACTIONS(2524), - [sym__elvis_operator] = ACTIONS(2524), - [sym_logical_or] = ACTIONS(2524), - [sym_tag_linefeed] = ACTIONS(2524), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6671), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3355)] = { - [anon_sym_DOT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_RBRACK] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2284), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2286), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2284), - [sym_optional_chain] = ACTIONS(2286), - [sym_static_chain] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_BSLASH] = ACTIONS(2286), - [anon_sym_STAR_STAR] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2284), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2286), - [anon_sym_LT_GT] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2284), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2286), - [aux_sym_binary_expression_token1] = ACTIONS(2286), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [aux_sym_binary_expression_token2] = ACTIONS(2284), - [aux_sym_binary_expression_token3] = ACTIONS(2284), - [aux_sym_binary_expression_token4] = ACTIONS(2286), - [aux_sym_binary_expression_token5] = ACTIONS(2286), - [aux_sym_binary_expression_token6] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2284), - [anon_sym_in] = ACTIONS(2284), - [anon_sym_IN] = ACTIONS(2284), - [anon_sym_InstanceOf] = ACTIONS(2286), - [anon_sym_instanceof] = ACTIONS(2286), - [anon_sym_INSTANCEOF] = ACTIONS(2286), - [anon_sym_instanceOf] = ACTIONS(2286), - [sym__ternary_qmark] = ACTIONS(2286), - [sym__elvis_operator] = ACTIONS(2286), - [sym_logical_or] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3356)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_COLON] = ACTIONS(6733), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6674), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3357)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6736), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6677), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3358)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [aux_sym_arguments_repeat1] = STATE(4663), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6739), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3359)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6741), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(6680), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(6256), + [sym__elvis_operator] = ACTIONS(6258), + [sym_logical_or] = ACTIONS(6226), }, [STATE(3360)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6744), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6744), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3361)] = { - [sym_identifier] = ACTIONS(2526), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2526), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2526), - [sym_optional_chain] = ACTIONS(2528), - [sym_static_chain] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_GT_GT] = ACTIONS(2526), - [anon_sym_GT_GT_GT] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_PERCENT] = ACTIONS(2528), - [anon_sym_BSLASH] = ACTIONS(2526), - [anon_sym_STAR_STAR] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_EQ_EQ] = ACTIONS(2526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2528), - [anon_sym_LT_GT] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2528), - [aux_sym_binary_expression_token1] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_GT] = ACTIONS(2526), - [aux_sym_binary_expression_token2] = ACTIONS(2526), - [aux_sym_binary_expression_token3] = ACTIONS(2526), - [aux_sym_binary_expression_token4] = ACTIONS(2528), - [aux_sym_binary_expression_token5] = ACTIONS(2528), - [aux_sym_binary_expression_token6] = ACTIONS(2528), - [anon_sym_QMARK_QMARK] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2526), - [anon_sym_in] = ACTIONS(2526), - [anon_sym_IN] = ACTIONS(2526), - [anon_sym_InstanceOf] = ACTIONS(2526), - [anon_sym_instanceof] = ACTIONS(2526), - [anon_sym_INSTANCEOF] = ACTIONS(2526), - [anon_sym_instanceOf] = ACTIONS(2526), - [sym__ternary_qmark] = ACTIONS(2528), - [sym__elvis_operator] = ACTIONS(2528), - [sym_logical_or] = ACTIONS(2528), - [sym_tag_linefeed] = ACTIONS(2528), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6030), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3362)] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6431), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6433), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(6441), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(6463), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(6465), - [sym__elvis_operator] = ACTIONS(6467), - [sym_logical_or] = ACTIONS(6441), - [sym__parameter_separator] = ACTIONS(2472), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3363)] = { - [sym_identifier] = ACTIONS(2498), - [anon_sym_DOT] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2500), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2498), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2498), - [sym_optional_chain] = ACTIONS(2500), - [sym_static_chain] = ACTIONS(2500), - [anon_sym_AMP_AMP] = ACTIONS(2500), - [anon_sym_PIPE_PIPE] = ACTIONS(2500), - [anon_sym_GT_GT] = ACTIONS(2498), - [anon_sym_GT_GT_GT] = ACTIONS(2500), - [anon_sym_LT_LT] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_PERCENT] = ACTIONS(2500), - [anon_sym_BSLASH] = ACTIONS(2498), - [anon_sym_STAR_STAR] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_LT_EQ] = ACTIONS(2500), - [anon_sym_EQ_EQ] = ACTIONS(2498), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2500), - [anon_sym_LT_GT] = ACTIONS(2500), - [anon_sym_BANG_EQ] = ACTIONS(2498), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2500), - [aux_sym_binary_expression_token1] = ACTIONS(2500), - [anon_sym_GT_EQ] = ACTIONS(2500), - [anon_sym_GT] = ACTIONS(2498), - [aux_sym_binary_expression_token2] = ACTIONS(2498), - [aux_sym_binary_expression_token3] = ACTIONS(2498), - [aux_sym_binary_expression_token4] = ACTIONS(2500), - [aux_sym_binary_expression_token5] = ACTIONS(2500), - [aux_sym_binary_expression_token6] = ACTIONS(2500), - [anon_sym_QMARK_QMARK] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_IN] = ACTIONS(2498), - [anon_sym_InstanceOf] = ACTIONS(2498), - [anon_sym_instanceof] = ACTIONS(2498), - [anon_sym_INSTANCEOF] = ACTIONS(2498), - [anon_sym_instanceOf] = ACTIONS(2498), - [sym__ternary_qmark] = ACTIONS(2500), - [sym__elvis_operator] = ACTIONS(2500), - [sym_logical_or] = ACTIONS(2500), - [sym_tag_linefeed] = ACTIONS(2500), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6038), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3364)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6746), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4684), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6683), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3365)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2308), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2308), - [sym_optional_chain] = ACTIONS(2310), - [sym_static_chain] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_BSLASH] = ACTIONS(2308), - [anon_sym_STAR_STAR] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), - [anon_sym_LT_GT] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), - [aux_sym_binary_expression_token1] = ACTIONS(2310), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [aux_sym_binary_expression_token2] = ACTIONS(2308), - [aux_sym_binary_expression_token3] = ACTIONS(2308), - [aux_sym_binary_expression_token4] = ACTIONS(2310), - [aux_sym_binary_expression_token5] = ACTIONS(2310), - [aux_sym_binary_expression_token6] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2308), - [anon_sym_in] = ACTIONS(2308), - [anon_sym_IN] = ACTIONS(2308), - [anon_sym_InstanceOf] = ACTIONS(2308), - [anon_sym_instanceof] = ACTIONS(2308), - [anon_sym_INSTANCEOF] = ACTIONS(2308), - [anon_sym_instanceOf] = ACTIONS(2308), - [sym__ternary_qmark] = ACTIONS(2310), - [sym__elvis_operator] = ACTIONS(2310), - [sym_logical_or] = ACTIONS(2310), - [sym_tag_linefeed] = ACTIONS(2310), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6549), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6551), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6559), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3366)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6749), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3367)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6752), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6688), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3368)] = { + [sym_identifier] = ACTIONS(507), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(6755), [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -432279,7 +434276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -432303,375 +434300,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), + [sym_tag_linefeed] = ACTIONS(509), }, [STATE(3369)] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6576), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6578), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6580), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6574), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6584), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6582), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6582), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6586), - [anon_sym_PIPE_PIPE] = ACTIONS(6588), - [anon_sym_GT_GT] = ACTIONS(6590), - [anon_sym_GT_GT_GT] = ACTIONS(6592), - [anon_sym_LT_LT] = ACTIONS(6592), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6598), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_BSLASH] = ACTIONS(6574), - [anon_sym_STAR_STAR] = ACTIONS(6604), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_EQ] = ACTIONS(6606), - [anon_sym_EQ_EQ] = ACTIONS(6584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6608), - [anon_sym_LT_GT] = ACTIONS(6608), - [anon_sym_BANG_EQ] = ACTIONS(6584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6608), - [aux_sym_binary_expression_token1] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6606), - [anon_sym_GT] = ACTIONS(6582), - [aux_sym_binary_expression_token2] = ACTIONS(6582), - [aux_sym_binary_expression_token3] = ACTIONS(6582), - [aux_sym_binary_expression_token4] = ACTIONS(6606), - [aux_sym_binary_expression_token5] = ACTIONS(6606), - [aux_sym_binary_expression_token6] = ACTIONS(6608), - [anon_sym_QMARK_QMARK] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6582), - [anon_sym_in] = ACTIONS(6582), - [anon_sym_IN] = ACTIONS(6582), - [anon_sym_InstanceOf] = ACTIONS(6582), - [anon_sym_instanceof] = ACTIONS(6582), - [anon_sym_INSTANCEOF] = ACTIONS(6582), - [anon_sym_instanceOf] = ACTIONS(6582), - [sym__ternary_qmark] = ACTIONS(6614), - [sym__elvis_operator] = ACTIONS(6616), - [sym_logical_or] = ACTIONS(6588), - [sym_tag_linefeed] = ACTIONS(2310), + [sym_identifier] = ACTIONS(2576), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6549), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6551), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(6581), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(6583), + [sym__elvis_operator] = ACTIONS(6585), + [sym_logical_or] = ACTIONS(6559), + [sym_tag_linefeed] = ACTIONS(2578), }, [STATE(3370)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(6758), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(6760), - [sym_static_chain] = ACTIONS(6762), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6691), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3371)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_COLON] = ACTIONS(2308), + [anon_sym_STAR] = ACTIONS(6222), + [anon_sym_COMMA] = ACTIONS(6694), + [anon_sym_RBRACE] = ACTIONS(6697), + [anon_sym_SEMI] = ACTIONS(2418), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2310), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6224), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6226), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6228), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6230), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6232), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6236), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6238), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6234), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6232), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(6414), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(6416), - [sym__elvis_operator] = ACTIONS(6418), - [sym_logical_or] = ACTIONS(6386), + [anon_sym_AMP_AMP] = ACTIONS(6224), + [anon_sym_PIPE_PIPE] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6240), + [anon_sym_GT_GT_GT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6244), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_PIPE] = ACTIONS(6248), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6222), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_BSLASH] = ACTIONS(6230), + [anon_sym_STAR_STAR] = ACTIONS(6252), + [anon_sym_LT] = ACTIONS(6232), + [anon_sym_LT_EQ] = ACTIONS(6234), + [anon_sym_EQ_EQ] = ACTIONS(6236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6238), + [anon_sym_LT_GT] = ACTIONS(6238), + [anon_sym_BANG_EQ] = ACTIONS(6236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6238), + [aux_sym_binary_expression_token1] = ACTIONS(6238), + [anon_sym_GT_EQ] = ACTIONS(6234), + [anon_sym_GT] = ACTIONS(6232), + [aux_sym_binary_expression_token2] = ACTIONS(6232), + [aux_sym_binary_expression_token3] = ACTIONS(6232), + [aux_sym_binary_expression_token4] = ACTIONS(6234), + [aux_sym_binary_expression_token5] = ACTIONS(6234), + [aux_sym_binary_expression_token6] = ACTIONS(6238), + [anon_sym_QMARK_QMARK] = ACTIONS(6254), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6232), + [anon_sym_in] = ACTIONS(6232), + [anon_sym_IN] = ACTIONS(6232), + [anon_sym_InstanceOf] = ACTIONS(6234), + [anon_sym_instanceof] = ACTIONS(6234), + [anon_sym_INSTANCEOF] = ACTIONS(6234), + [anon_sym_instanceOf] = ACTIONS(6234), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(6256), + [sym__elvis_operator] = ACTIONS(6258), + [sym_logical_or] = ACTIONS(6226), }, [STATE(3372)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2420), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(6414), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(6416), - [sym__elvis_operator] = ACTIONS(6418), - [sym_logical_or] = ACTIONS(6386), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6699), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3373)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6382), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_COLON] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2464), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6384), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6386), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6388), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6390), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6392), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6396), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6398), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6394), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6392), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6384), - [anon_sym_PIPE_PIPE] = ACTIONS(6386), - [anon_sym_GT_GT] = ACTIONS(6400), - [anon_sym_GT_GT_GT] = ACTIONS(6402), - [anon_sym_LT_LT] = ACTIONS(6402), - [anon_sym_AMP] = ACTIONS(6404), - [anon_sym_CARET] = ACTIONS(6406), - [anon_sym_PIPE] = ACTIONS(6408), - [anon_sym_PLUS] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [anon_sym_SLASH] = ACTIONS(6382), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_BSLASH] = ACTIONS(6390), - [anon_sym_STAR_STAR] = ACTIONS(6412), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_EQ] = ACTIONS(6394), - [anon_sym_EQ_EQ] = ACTIONS(6396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6398), - [anon_sym_LT_GT] = ACTIONS(6398), - [anon_sym_BANG_EQ] = ACTIONS(6396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6398), - [aux_sym_binary_expression_token1] = ACTIONS(6398), - [anon_sym_GT_EQ] = ACTIONS(6394), - [anon_sym_GT] = ACTIONS(6392), - [aux_sym_binary_expression_token2] = ACTIONS(6392), - [aux_sym_binary_expression_token3] = ACTIONS(6392), - [aux_sym_binary_expression_token4] = ACTIONS(6394), - [aux_sym_binary_expression_token5] = ACTIONS(6394), - [aux_sym_binary_expression_token6] = ACTIONS(6398), - [anon_sym_QMARK_QMARK] = ACTIONS(6414), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6392), - [anon_sym_in] = ACTIONS(6392), - [anon_sym_IN] = ACTIONS(6392), - [anon_sym_InstanceOf] = ACTIONS(6394), - [anon_sym_instanceof] = ACTIONS(6394), - [anon_sym_INSTANCEOF] = ACTIONS(6394), - [anon_sym_instanceOf] = ACTIONS(6394), - [sym__ternary_qmark] = ACTIONS(6416), - [sym__elvis_operator] = ACTIONS(6418), - [sym_logical_or] = ACTIONS(6386), - }, - [STATE(3374)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(6764), + [anon_sym_COLON] = ACTIONS(6702), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_RBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), @@ -432737,1237 +434664,1095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, + [STATE(3374)] = { + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(6705), + [anon_sym_RBRACE] = ACTIONS(6705), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, [STATE(3375)] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6431), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6433), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(6441), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(6463), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(6465), - [sym__elvis_operator] = ACTIONS(6467), - [sym_logical_or] = ACTIONS(6441), - [sym__parameter_separator] = ACTIONS(2428), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6707), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3376)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6433), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4748), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6710), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3377)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [sym_identifier] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1718), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_INSTANCEOF] = ACTIONS(1718), + [anon_sym_instanceOf] = ACTIONS(1718), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + [sym_tag_linefeed] = ACTIONS(1716), }, [STATE(3378)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6712), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3379)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6715), + [anon_sym_RBRACE] = ACTIONS(6715), + [anon_sym_RPAREN] = ACTIONS(6715), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6715), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3380)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4514), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6717), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6717), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3381)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(6719), + [anon_sym_RBRACE] = ACTIONS(6719), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2154), + [anon_sym_set] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, [STATE(3382)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6767), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6012), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3383)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6137), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3384)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, [STATE(3385)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(6724), + [sym_static_chain] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3386)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_COLON] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2466), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(6466), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(6468), + [sym__elvis_operator] = ACTIONS(6470), + [sym_logical_or] = ACTIONS(6438), }, [STATE(3387)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2470), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(6466), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(6468), + [sym__elvis_operator] = ACTIONS(6470), + [sym_logical_or] = ACTIONS(6438), }, [STATE(3388)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym__parameter_separator] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6434), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6438), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6440), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6442), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6444), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6448), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6450), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6446), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6444), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6436), + [anon_sym_PIPE_PIPE] = ACTIONS(6438), + [anon_sym_GT_GT] = ACTIONS(6452), + [anon_sym_GT_GT_GT] = ACTIONS(6454), + [anon_sym_LT_LT] = ACTIONS(6454), + [anon_sym_AMP] = ACTIONS(6456), + [anon_sym_CARET] = ACTIONS(6458), + [anon_sym_PIPE] = ACTIONS(6460), + [anon_sym_PLUS] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [anon_sym_SLASH] = ACTIONS(6434), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_BSLASH] = ACTIONS(6442), + [anon_sym_STAR_STAR] = ACTIONS(6464), + [anon_sym_LT] = ACTIONS(6444), + [anon_sym_LT_EQ] = ACTIONS(6446), + [anon_sym_EQ_EQ] = ACTIONS(6448), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6450), + [anon_sym_LT_GT] = ACTIONS(6450), + [anon_sym_BANG_EQ] = ACTIONS(6448), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6450), + [aux_sym_binary_expression_token1] = ACTIONS(6450), + [anon_sym_GT_EQ] = ACTIONS(6446), + [anon_sym_GT] = ACTIONS(6444), + [aux_sym_binary_expression_token2] = ACTIONS(6444), + [aux_sym_binary_expression_token3] = ACTIONS(6444), + [aux_sym_binary_expression_token4] = ACTIONS(6446), + [aux_sym_binary_expression_token5] = ACTIONS(6446), + [aux_sym_binary_expression_token6] = ACTIONS(6450), + [anon_sym_QMARK_QMARK] = ACTIONS(6466), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6444), + [anon_sym_in] = ACTIONS(6444), + [anon_sym_IN] = ACTIONS(6444), + [anon_sym_InstanceOf] = ACTIONS(6446), + [anon_sym_instanceof] = ACTIONS(6446), + [anon_sym_INSTANCEOF] = ACTIONS(6446), + [anon_sym_instanceOf] = ACTIONS(6446), + [sym__ternary_qmark] = ACTIONS(6468), + [sym__elvis_operator] = ACTIONS(6470), + [sym_logical_or] = ACTIONS(6438), }, [STATE(3389)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6431), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6433), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(6441), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6441), - [sym__parameter_separator] = ACTIONS(2432), - }, - [STATE(3390)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6770), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3391)] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6431), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6433), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(6441), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(6463), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(6465), - [sym__elvis_operator] = ACTIONS(6467), - [sym_logical_or] = ACTIONS(6441), - [sym__parameter_separator] = ACTIONS(2460), - }, - [STATE(3392)] = { - [sym_identifier] = ACTIONS(5261), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(5263), + [anon_sym_COLON] = ACTIONS(6728), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -433983,7 +435768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -434007,375 +435792,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3393)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6249), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6251), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6253), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6255), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6257), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6261), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6263), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6259), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6257), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6265), - [anon_sym_GT_GT_GT] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_BSLASH] = ACTIONS(6255), - [anon_sym_STAR_STAR] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6263), - [anon_sym_LT_GT] = ACTIONS(6263), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6263), - [aux_sym_binary_expression_token1] = ACTIONS(6263), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_GT] = ACTIONS(6257), - [aux_sym_binary_expression_token2] = ACTIONS(6257), - [aux_sym_binary_expression_token3] = ACTIONS(6257), - [aux_sym_binary_expression_token4] = ACTIONS(6259), - [aux_sym_binary_expression_token5] = ACTIONS(6259), - [aux_sym_binary_expression_token6] = ACTIONS(6263), - [anon_sym_QMARK_QMARK] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6257), - [anon_sym_in] = ACTIONS(6257), - [anon_sym_IN] = ACTIONS(6257), - [anon_sym_InstanceOf] = ACTIONS(6259), - [anon_sym_instanceof] = ACTIONS(6259), - [anon_sym_INSTANCEOF] = ACTIONS(6259), - [anon_sym_instanceOf] = ACTIONS(6259), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(6281), - [sym__elvis_operator] = ACTIONS(6283), - [sym_logical_or] = ACTIONS(6251), + [STATE(3390)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6731), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3394)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6773), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3391)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4686), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6734), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3395)] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(6425), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_RPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6429), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6431), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6433), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6425), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6437), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6435), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6435), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(6439), - [anon_sym_PIPE_PIPE] = ACTIONS(6441), - [anon_sym_GT_GT] = ACTIONS(6443), - [anon_sym_GT_GT_GT] = ACTIONS(6445), - [anon_sym_LT_LT] = ACTIONS(6445), - [anon_sym_AMP] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6453), - [anon_sym_DASH] = ACTIONS(6453), - [anon_sym_SLASH] = ACTIONS(6425), - [anon_sym_PERCENT] = ACTIONS(6455), - [anon_sym_BSLASH] = ACTIONS(6425), - [anon_sym_STAR_STAR] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6435), - [anon_sym_LT_EQ] = ACTIONS(6459), - [anon_sym_EQ_EQ] = ACTIONS(6437), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6461), - [anon_sym_LT_GT] = ACTIONS(6461), - [anon_sym_BANG_EQ] = ACTIONS(6437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6461), - [aux_sym_binary_expression_token1] = ACTIONS(6461), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6435), - [aux_sym_binary_expression_token2] = ACTIONS(6435), - [aux_sym_binary_expression_token3] = ACTIONS(6435), - [aux_sym_binary_expression_token4] = ACTIONS(6459), - [aux_sym_binary_expression_token5] = ACTIONS(6459), - [aux_sym_binary_expression_token6] = ACTIONS(6461), - [anon_sym_QMARK_QMARK] = ACTIONS(6463), - [anon_sym_PLUS_PLUS] = ACTIONS(6049), - [anon_sym_DASH_DASH] = ACTIONS(6049), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6435), - [anon_sym_in] = ACTIONS(6435), - [anon_sym_IN] = ACTIONS(6435), - [anon_sym_InstanceOf] = ACTIONS(6435), - [anon_sym_instanceof] = ACTIONS(6435), - [anon_sym_INSTANCEOF] = ACTIONS(6435), - [anon_sym_instanceOf] = ACTIONS(6435), - [sym__ternary_qmark] = ACTIONS(6465), - [sym__elvis_operator] = ACTIONS(6467), - [sym_logical_or] = ACTIONS(6441), - [sym__parameter_separator] = ACTIONS(2476), + [STATE(3392)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3396)] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2504), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2502), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2502), - [sym_optional_chain] = ACTIONS(2504), - [sym_static_chain] = ACTIONS(2504), - [anon_sym_AMP_AMP] = ACTIONS(2504), - [anon_sym_PIPE_PIPE] = ACTIONS(2504), - [anon_sym_GT_GT] = ACTIONS(2502), - [anon_sym_GT_GT_GT] = ACTIONS(2504), - [anon_sym_LT_LT] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_CARET] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_PERCENT] = ACTIONS(2504), - [anon_sym_BSLASH] = ACTIONS(2502), - [anon_sym_STAR_STAR] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_LT_EQ] = ACTIONS(2504), - [anon_sym_EQ_EQ] = ACTIONS(2502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2504), - [anon_sym_LT_GT] = ACTIONS(2504), - [anon_sym_BANG_EQ] = ACTIONS(2502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2504), - [aux_sym_binary_expression_token1] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2504), - [anon_sym_GT] = ACTIONS(2502), - [aux_sym_binary_expression_token2] = ACTIONS(2502), - [aux_sym_binary_expression_token3] = ACTIONS(2502), - [aux_sym_binary_expression_token4] = ACTIONS(2504), - [aux_sym_binary_expression_token5] = ACTIONS(2504), - [aux_sym_binary_expression_token6] = ACTIONS(2504), - [anon_sym_QMARK_QMARK] = ACTIONS(2504), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_IN] = ACTIONS(2502), - [anon_sym_InstanceOf] = ACTIONS(2502), - [anon_sym_instanceof] = ACTIONS(2502), - [anon_sym_INSTANCEOF] = ACTIONS(2502), - [anon_sym_instanceOf] = ACTIONS(2502), - [sym__ternary_qmark] = ACTIONS(2504), - [sym__elvis_operator] = ACTIONS(2504), - [sym_logical_or] = ACTIONS(2504), - [sym_tag_linefeed] = ACTIONS(2504), + [STATE(3393)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(6739), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3397)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6776), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3394)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6026), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3398)] = { + [STATE(3395)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -434436,1078 +436221,3356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), - [sym__automatic_semicolon] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(1606), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, + [STATE(3396)] = { + [sym_identifier] = ACTIONS(2512), + [anon_sym_DOT] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2514), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2512), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2512), + [sym_optional_chain] = ACTIONS(2514), + [sym_static_chain] = ACTIONS(2514), + [anon_sym_AMP_AMP] = ACTIONS(2514), + [anon_sym_PIPE_PIPE] = ACTIONS(2514), + [anon_sym_GT_GT] = ACTIONS(2512), + [anon_sym_GT_GT_GT] = ACTIONS(2514), + [anon_sym_LT_LT] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_CARET] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_PERCENT] = ACTIONS(2514), + [anon_sym_BSLASH] = ACTIONS(2512), + [anon_sym_STAR_STAR] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_LT_EQ] = ACTIONS(2514), + [anon_sym_EQ_EQ] = ACTIONS(2512), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2514), + [anon_sym_LT_GT] = ACTIONS(2514), + [anon_sym_BANG_EQ] = ACTIONS(2512), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2514), + [aux_sym_binary_expression_token1] = ACTIONS(2514), + [anon_sym_GT_EQ] = ACTIONS(2514), + [anon_sym_GT] = ACTIONS(2512), + [aux_sym_binary_expression_token2] = ACTIONS(2512), + [aux_sym_binary_expression_token3] = ACTIONS(2512), + [aux_sym_binary_expression_token4] = ACTIONS(2514), + [aux_sym_binary_expression_token5] = ACTIONS(2514), + [aux_sym_binary_expression_token6] = ACTIONS(2514), + [anon_sym_QMARK_QMARK] = ACTIONS(2514), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2512), + [anon_sym_in] = ACTIONS(2512), + [anon_sym_IN] = ACTIONS(2512), + [anon_sym_InstanceOf] = ACTIONS(2512), + [anon_sym_instanceof] = ACTIONS(2512), + [anon_sym_INSTANCEOF] = ACTIONS(2512), + [anon_sym_instanceOf] = ACTIONS(2512), + [sym__ternary_qmark] = ACTIONS(2514), + [sym__elvis_operator] = ACTIONS(2514), + [sym_logical_or] = ACTIONS(2514), + [sym_tag_linefeed] = ACTIONS(2514), + }, + [STATE(3397)] = { + [sym_identifier] = ACTIONS(2516), + [anon_sym_DOT] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2518), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2516), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2516), + [sym_optional_chain] = ACTIONS(2518), + [sym_static_chain] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2516), + [anon_sym_GT_GT_GT] = ACTIONS(2518), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_BSLASH] = ACTIONS(2516), + [anon_sym_STAR_STAR] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2518), + [anon_sym_LT_GT] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2518), + [aux_sym_binary_expression_token1] = ACTIONS(2518), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2516), + [aux_sym_binary_expression_token2] = ACTIONS(2516), + [aux_sym_binary_expression_token3] = ACTIONS(2516), + [aux_sym_binary_expression_token4] = ACTIONS(2518), + [aux_sym_binary_expression_token5] = ACTIONS(2518), + [aux_sym_binary_expression_token6] = ACTIONS(2518), + [anon_sym_QMARK_QMARK] = ACTIONS(2518), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_IN] = ACTIONS(2516), + [anon_sym_InstanceOf] = ACTIONS(2516), + [anon_sym_instanceof] = ACTIONS(2516), + [anon_sym_INSTANCEOF] = ACTIONS(2516), + [anon_sym_instanceOf] = ACTIONS(2516), + [sym__ternary_qmark] = ACTIONS(2518), + [sym__elvis_operator] = ACTIONS(2518), + [sym_logical_or] = ACTIONS(2518), + [sym_tag_linefeed] = ACTIONS(2518), + }, + [STATE(3398)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4659), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6741), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, [STATE(3399)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(5895), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(5895), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [sym_identifier] = ACTIONS(2338), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2338), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2338), + [sym_optional_chain] = ACTIONS(2342), + [sym_static_chain] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2338), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_SLASH] = ACTIONS(2338), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_BSLASH] = ACTIONS(2338), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_LT_GT] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [aux_sym_binary_expression_token1] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2338), + [aux_sym_binary_expression_token2] = ACTIONS(2338), + [aux_sym_binary_expression_token3] = ACTIONS(2338), + [aux_sym_binary_expression_token4] = ACTIONS(2342), + [aux_sym_binary_expression_token5] = ACTIONS(2342), + [aux_sym_binary_expression_token6] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2338), + [anon_sym_in] = ACTIONS(2338), + [anon_sym_IN] = ACTIONS(2338), + [anon_sym_InstanceOf] = ACTIONS(2338), + [anon_sym_instanceof] = ACTIONS(2338), + [anon_sym_INSTANCEOF] = ACTIONS(2338), + [anon_sym_instanceOf] = ACTIONS(2338), + [sym__ternary_qmark] = ACTIONS(2342), + [sym__elvis_operator] = ACTIONS(2342), + [sym_logical_or] = ACTIONS(2342), + [sym_tag_linefeed] = ACTIONS(2342), }, [STATE(3400)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6779), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6743), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3401)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6125), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6746), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3402)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6123), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6123), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [sym_identifier] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2394), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2392), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2392), + [sym_optional_chain] = ACTIONS(2394), + [sym_static_chain] = ACTIONS(2394), + [anon_sym_AMP_AMP] = ACTIONS(2394), + [anon_sym_PIPE_PIPE] = ACTIONS(2394), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2394), + [anon_sym_LT_LT] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2394), + [anon_sym_BSLASH] = ACTIONS(2392), + [anon_sym_STAR_STAR] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2394), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2394), + [anon_sym_LT_GT] = ACTIONS(2394), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2394), + [aux_sym_binary_expression_token1] = ACTIONS(2394), + [anon_sym_GT_EQ] = ACTIONS(2394), + [anon_sym_GT] = ACTIONS(2392), + [aux_sym_binary_expression_token2] = ACTIONS(2392), + [aux_sym_binary_expression_token3] = ACTIONS(2392), + [aux_sym_binary_expression_token4] = ACTIONS(2394), + [aux_sym_binary_expression_token5] = ACTIONS(2394), + [aux_sym_binary_expression_token6] = ACTIONS(2394), + [anon_sym_QMARK_QMARK] = ACTIONS(2394), + [anon_sym_PLUS_PLUS] = ACTIONS(2394), + [anon_sym_DASH_DASH] = ACTIONS(2394), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_IN] = ACTIONS(2392), + [anon_sym_InstanceOf] = ACTIONS(2392), + [anon_sym_instanceof] = ACTIONS(2392), + [anon_sym_INSTANCEOF] = ACTIONS(2392), + [anon_sym_instanceOf] = ACTIONS(2392), + [sym__ternary_qmark] = ACTIONS(2394), + [sym__elvis_operator] = ACTIONS(2394), + [sym_logical_or] = ACTIONS(2394), + [sym_tag_linefeed] = ACTIONS(2394), }, [STATE(3403)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6018), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [sym_identifier] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2436), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2436), + [sym_optional_chain] = ACTIONS(2438), + [sym_static_chain] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2436), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_SLASH] = ACTIONS(2436), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_BSLASH] = ACTIONS(2436), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2436), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_LT_GT] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2436), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [aux_sym_binary_expression_token1] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2436), + [aux_sym_binary_expression_token2] = ACTIONS(2436), + [aux_sym_binary_expression_token3] = ACTIONS(2436), + [aux_sym_binary_expression_token4] = ACTIONS(2438), + [aux_sym_binary_expression_token5] = ACTIONS(2438), + [aux_sym_binary_expression_token6] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_IN] = ACTIONS(2436), + [anon_sym_InstanceOf] = ACTIONS(2436), + [anon_sym_instanceof] = ACTIONS(2436), + [anon_sym_INSTANCEOF] = ACTIONS(2436), + [anon_sym_instanceOf] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(2438), + [sym__elvis_operator] = ACTIONS(2438), + [sym_logical_or] = ACTIONS(2438), + [sym_tag_linefeed] = ACTIONS(2438), }, [STATE(3404)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6782), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_identifier] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2456), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2456), + [sym_optional_chain] = ACTIONS(2458), + [sym_static_chain] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_BSLASH] = ACTIONS(2456), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2456), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_LT_GT] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2456), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [aux_sym_binary_expression_token1] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2456), + [aux_sym_binary_expression_token2] = ACTIONS(2456), + [aux_sym_binary_expression_token3] = ACTIONS(2456), + [aux_sym_binary_expression_token4] = ACTIONS(2458), + [aux_sym_binary_expression_token5] = ACTIONS(2458), + [aux_sym_binary_expression_token6] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2456), + [anon_sym_IN] = ACTIONS(2456), + [anon_sym_InstanceOf] = ACTIONS(2456), + [anon_sym_instanceof] = ACTIONS(2456), + [anon_sym_INSTANCEOF] = ACTIONS(2456), + [anon_sym_instanceOf] = ACTIONS(2456), + [sym__ternary_qmark] = ACTIONS(2458), + [sym__elvis_operator] = ACTIONS(2458), + [sym_logical_or] = ACTIONS(2458), + [sym_tag_linefeed] = ACTIONS(2458), }, [STATE(3405)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_SEMI] = ACTIONS(6785), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [sym_identifier] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2472), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2472), + [sym_optional_chain] = ACTIONS(2474), + [sym_static_chain] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2474), + [anon_sym_PIPE_PIPE] = ACTIONS(2474), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2474), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2474), + [anon_sym_BSLASH] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2474), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), + [anon_sym_LT_GT] = ACTIONS(2474), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), + [aux_sym_binary_expression_token1] = ACTIONS(2474), + [anon_sym_GT_EQ] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2472), + [aux_sym_binary_expression_token2] = ACTIONS(2472), + [aux_sym_binary_expression_token3] = ACTIONS(2472), + [aux_sym_binary_expression_token4] = ACTIONS(2474), + [aux_sym_binary_expression_token5] = ACTIONS(2474), + [aux_sym_binary_expression_token6] = ACTIONS(2474), + [anon_sym_QMARK_QMARK] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_IN] = ACTIONS(2472), + [anon_sym_InstanceOf] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_INSTANCEOF] = ACTIONS(2472), + [anon_sym_instanceOf] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2474), + [sym__elvis_operator] = ACTIONS(2474), + [sym_logical_or] = ACTIONS(2474), + [sym_tag_linefeed] = ACTIONS(2474), }, [STATE(3406)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6788), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6143), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3407)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4450), - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_SEMI] = ACTIONS(6791), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6791), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6749), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3408)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(6793), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6145), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3409)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(6796), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [aux_sym_sequence_expression_repeat1] = STATE(4514), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6028), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3410)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3411)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6755), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3412)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6758), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3413)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6761), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3414)] = { + [sym_identifier] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2534), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2532), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2532), + [sym_optional_chain] = ACTIONS(2534), + [sym_static_chain] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_GT_GT] = ACTIONS(2532), + [anon_sym_GT_GT_GT] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_PERCENT] = ACTIONS(2534), + [anon_sym_BSLASH] = ACTIONS(2532), + [anon_sym_STAR_STAR] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_EQ_EQ] = ACTIONS(2532), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2534), + [anon_sym_LT_GT] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2532), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2534), + [aux_sym_binary_expression_token1] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_GT] = ACTIONS(2532), + [aux_sym_binary_expression_token2] = ACTIONS(2532), + [aux_sym_binary_expression_token3] = ACTIONS(2532), + [aux_sym_binary_expression_token4] = ACTIONS(2534), + [aux_sym_binary_expression_token5] = ACTIONS(2534), + [aux_sym_binary_expression_token6] = ACTIONS(2534), + [anon_sym_QMARK_QMARK] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_IN] = ACTIONS(2532), + [anon_sym_InstanceOf] = ACTIONS(2532), + [anon_sym_instanceof] = ACTIONS(2532), + [anon_sym_INSTANCEOF] = ACTIONS(2532), + [anon_sym_instanceOf] = ACTIONS(2532), + [sym__ternary_qmark] = ACTIONS(2534), + [sym__elvis_operator] = ACTIONS(2534), + [sym_logical_or] = ACTIONS(2534), + [sym_tag_linefeed] = ACTIONS(2534), + }, + [STATE(3415)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3416)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6767), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3417)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6770), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3418)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4786), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6773), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3419)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6775), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3420)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4514), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6778), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6778), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3411)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3421)] = { + [sym_identifier] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2412), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2412), + [sym_optional_chain] = ACTIONS(2414), + [sym_static_chain] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_BSLASH] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_LT_GT] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [aux_sym_binary_expression_token1] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2412), + [aux_sym_binary_expression_token2] = ACTIONS(2412), + [aux_sym_binary_expression_token3] = ACTIONS(2412), + [aux_sym_binary_expression_token4] = ACTIONS(2414), + [aux_sym_binary_expression_token5] = ACTIONS(2414), + [aux_sym_binary_expression_token6] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_IN] = ACTIONS(2412), + [anon_sym_InstanceOf] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_INSTANCEOF] = ACTIONS(2412), + [anon_sym_instanceOf] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2414), + [sym__elvis_operator] = ACTIONS(2414), + [sym_logical_or] = ACTIONS(2414), + [sym_tag_linefeed] = ACTIONS(2414), + }, + [STATE(3422)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6780), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3423)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4514), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6783), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6783), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3412)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3424)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6785), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3425)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3426)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6791), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3427)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4514), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6802), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6794), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6794), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3413)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(5679), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [STATE(3428)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3414)] = { + [STATE(3429)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4514), + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6799), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6799), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), + }, + [STATE(3430)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3431)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6804), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3432)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6807), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3433)] = { + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6549), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6551), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(6581), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(6583), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6559), + [sym_tag_linefeed] = ACTIONS(2586), + }, + [STATE(3434)] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6547), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6549), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6551), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6545), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6555), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6553), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6553), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(6557), + [anon_sym_PIPE_PIPE] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6561), + [anon_sym_GT_GT_GT] = ACTIONS(6563), + [anon_sym_LT_LT] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6569), + [anon_sym_PLUS] = ACTIONS(6571), + [anon_sym_DASH] = ACTIONS(6571), + [anon_sym_SLASH] = ACTIONS(6545), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_BSLASH] = ACTIONS(6545), + [anon_sym_STAR_STAR] = ACTIONS(6575), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6577), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6579), + [anon_sym_LT_GT] = ACTIONS(6579), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6579), + [aux_sym_binary_expression_token1] = ACTIONS(6579), + [anon_sym_GT_EQ] = ACTIONS(6577), + [anon_sym_GT] = ACTIONS(6553), + [aux_sym_binary_expression_token2] = ACTIONS(6553), + [aux_sym_binary_expression_token3] = ACTIONS(6553), + [aux_sym_binary_expression_token4] = ACTIONS(6577), + [aux_sym_binary_expression_token5] = ACTIONS(6577), + [aux_sym_binary_expression_token6] = ACTIONS(6579), + [anon_sym_QMARK_QMARK] = ACTIONS(6581), + [anon_sym_PLUS_PLUS] = ACTIONS(5910), + [anon_sym_DASH_DASH] = ACTIONS(5910), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6553), + [anon_sym_in] = ACTIONS(6553), + [anon_sym_IN] = ACTIONS(6553), + [anon_sym_InstanceOf] = ACTIONS(6553), + [anon_sym_instanceof] = ACTIONS(6553), + [anon_sym_INSTANCEOF] = ACTIONS(6553), + [anon_sym_instanceOf] = ACTIONS(6553), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(6583), + [sym__elvis_operator] = ACTIONS(6585), + [sym_logical_or] = ACTIONS(6559), + [sym_tag_linefeed] = ACTIONS(2418), + }, + [STATE(3435)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), + }, + [STATE(3436)] = { + [sym_identifier] = ACTIONS(2576), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6179), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6181), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE_PIPE] = ACTIONS(6189), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(6211), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(6213), + [sym__elvis_operator] = ACTIONS(6215), + [sym_logical_or] = ACTIONS(6189), + [sym__parameter_separator] = ACTIONS(2578), + }, + [STATE(3437)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6810), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3438)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4650), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3439)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3440)] = { + [sym_identifier] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2542), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2540), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2540), + [sym_optional_chain] = ACTIONS(2542), + [sym_static_chain] = ACTIONS(2542), + [anon_sym_AMP_AMP] = ACTIONS(2542), + [anon_sym_PIPE_PIPE] = ACTIONS(2542), + [anon_sym_GT_GT] = ACTIONS(2540), + [anon_sym_GT_GT_GT] = ACTIONS(2542), + [anon_sym_LT_LT] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_PERCENT] = ACTIONS(2542), + [anon_sym_BSLASH] = ACTIONS(2540), + [anon_sym_STAR_STAR] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2540), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2542), + [anon_sym_LT_GT] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2540), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2542), + [aux_sym_binary_expression_token1] = ACTIONS(2542), + [anon_sym_GT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2540), + [aux_sym_binary_expression_token2] = ACTIONS(2540), + [aux_sym_binary_expression_token3] = ACTIONS(2540), + [aux_sym_binary_expression_token4] = ACTIONS(2542), + [aux_sym_binary_expression_token5] = ACTIONS(2542), + [aux_sym_binary_expression_token6] = ACTIONS(2542), + [anon_sym_QMARK_QMARK] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2540), + [anon_sym_in] = ACTIONS(2540), + [anon_sym_IN] = ACTIONS(2540), + [anon_sym_InstanceOf] = ACTIONS(2540), + [anon_sym_instanceof] = ACTIONS(2540), + [anon_sym_INSTANCEOF] = ACTIONS(2540), + [anon_sym_instanceOf] = ACTIONS(2540), + [sym__ternary_qmark] = ACTIONS(2542), + [sym__elvis_operator] = ACTIONS(2542), + [sym_logical_or] = ACTIONS(2542), + [sym_tag_linefeed] = ACTIONS(2542), + }, + [STATE(3441)] = { + [sym_identifier] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_RPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6179), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6181), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE_PIPE] = ACTIONS(6189), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(6211), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(6213), + [sym__elvis_operator] = ACTIONS(6215), + [sym_logical_or] = ACTIONS(6189), + [sym__parameter_separator] = ACTIONS(2478), + }, + [STATE(3442)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6177), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6181), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), + }, + [STATE(3443)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(5230), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(1878), [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(5230), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), [aux_sym__operator_shaped_name_token3] = ACTIONS(509), @@ -435560,7 +439623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), @@ -435572,1762 +439634,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3415)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6804), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3416)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(5679), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3417)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3418)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3419)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6808), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3420)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3421)] = { - [aux_sym_arguments_repeat1] = STATE(4663), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(6836), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3422)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3423)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(6627), - [anon_sym_RBRACE] = ACTIONS(6627), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, - [STATE(3424)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6842), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3425)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6844), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3426)] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6846), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6848), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(6852), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(6854), - [sym__elvis_operator] = ACTIONS(6856), - [sym_logical_or] = ACTIONS(6850), - [sym_tag_linefeed] = ACTIONS(2428), - }, - [STATE(3427)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6858), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3428)] = { - [aux_sym_array_repeat1] = STATE(4602), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6862), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3429)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6864), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3430)] = { - [aux_sym_arguments_repeat1] = STATE(4758), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(6866), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3431)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3432)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3433)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6868), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3434)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6870), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3435)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3436)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6872), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3437)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6874), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3438)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(6876), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3439)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6878), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3440)] = { + [STATE(3444)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -437388,1783 +439700,2149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(509), [anon_sym_INSTANCEOF] = ACTIONS(509), [anon_sym_instanceOf] = ACTIONS(509), + [sym__automatic_semicolon] = ACTIONS(1676), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3441)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6880), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3442)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6882), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3443)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3444)] = { - [sym_string] = STATE(4968), - [sym_number] = STATE(4968), - [sym_null] = STATE(4968), - [sym__property_name] = STATE(4968), - [sym__hash_always_eval] = STATE(4968), - [sym_hash_expression] = STATE(4968), - [sym_computed_property_name] = STATE(4968), - [sym_identifier] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(6702), - [anon_sym_RBRACE] = ACTIONS(6702), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5608), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), - }, [STATE(3445)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6886), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, [STATE(3446)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6888), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6818), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3447)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6890), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3448)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [aux_sym_sequence_expression_repeat1] = STATE(4514), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6892), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6105), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6105), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3449)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4780), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6824), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3450)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6894), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6024), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3451)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6896), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_SEMI] = ACTIONS(6826), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3452)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6898), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1688), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1688), + [sym_optional_chain] = ACTIONS(1686), + [sym_static_chain] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1688), + [anon_sym_GT_GT_GT] = ACTIONS(1686), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1686), + [anon_sym_LT_GT] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1686), + [aux_sym_binary_expression_token1] = ACTIONS(1686), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1688), + [aux_sym_binary_expression_token2] = ACTIONS(1688), + [aux_sym_binary_expression_token3] = ACTIONS(1688), + [aux_sym_binary_expression_token4] = ACTIONS(1686), + [aux_sym_binary_expression_token5] = ACTIONS(1686), + [aux_sym_binary_expression_token6] = ACTIONS(1686), + [anon_sym_QMARK_QMARK] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_IN] = ACTIONS(1688), + [anon_sym_InstanceOf] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1688), + [anon_sym_INSTANCEOF] = ACTIONS(1688), + [anon_sym_instanceOf] = ACTIONS(1688), + [sym__ternary_qmark] = ACTIONS(1686), + [sym__elvis_operator] = ACTIONS(1686), + [sym_logical_or] = ACTIONS(1686), + [sym_tag_linefeed] = ACTIONS(1686), }, [STATE(3453)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6900), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3454)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6902), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, [STATE(3455)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6904), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(6173), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6173), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6185), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6183), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6183), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6191), + [anon_sym_GT_GT_GT] = ACTIONS(6193), + [anon_sym_LT_LT] = ACTIONS(6193), + [anon_sym_AMP] = ACTIONS(6195), + [anon_sym_CARET] = ACTIONS(6197), + [anon_sym_PIPE] = ACTIONS(6199), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6173), + [anon_sym_PERCENT] = ACTIONS(6203), + [anon_sym_BSLASH] = ACTIONS(6173), + [anon_sym_STAR_STAR] = ACTIONS(6205), + [anon_sym_LT] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6207), + [anon_sym_EQ_EQ] = ACTIONS(6185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6209), + [anon_sym_LT_GT] = ACTIONS(6209), + [anon_sym_BANG_EQ] = ACTIONS(6185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6209), + [aux_sym_binary_expression_token1] = ACTIONS(6209), + [anon_sym_GT_EQ] = ACTIONS(6207), + [anon_sym_GT] = ACTIONS(6183), + [aux_sym_binary_expression_token2] = ACTIONS(6183), + [aux_sym_binary_expression_token3] = ACTIONS(6183), + [aux_sym_binary_expression_token4] = ACTIONS(6207), + [aux_sym_binary_expression_token5] = ACTIONS(6207), + [aux_sym_binary_expression_token6] = ACTIONS(6209), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6183), + [anon_sym_in] = ACTIONS(6183), + [anon_sym_IN] = ACTIONS(6183), + [anon_sym_InstanceOf] = ACTIONS(6183), + [anon_sym_instanceof] = ACTIONS(6183), + [anon_sym_INSTANCEOF] = ACTIONS(6183), + [anon_sym_instanceOf] = ACTIONS(6183), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym__parameter_separator] = ACTIONS(2484), }, [STATE(3456)] = { - [aux_sym_array_repeat1] = STATE(4632), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6906), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2388), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2388), + [sym_optional_chain] = ACTIONS(2390), + [sym_static_chain] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_BSLASH] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_LT_GT] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [aux_sym_binary_expression_token1] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2388), + [aux_sym_binary_expression_token2] = ACTIONS(2388), + [aux_sym_binary_expression_token3] = ACTIONS(2388), + [aux_sym_binary_expression_token4] = ACTIONS(2390), + [aux_sym_binary_expression_token5] = ACTIONS(2390), + [aux_sym_binary_expression_token6] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_IN] = ACTIONS(2388), + [anon_sym_InstanceOf] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_INSTANCEOF] = ACTIONS(2388), + [anon_sym_instanceOf] = ACTIONS(2388), + [sym__ternary_qmark] = ACTIONS(2390), + [sym__elvis_operator] = ACTIONS(2390), + [sym_logical_or] = ACTIONS(2390), + [sym_tag_linefeed] = ACTIONS(2390), }, [STATE(3457)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6908), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [aux_sym_arguments_repeat1] = STATE(4659), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6162), + [anon_sym_RPAREN] = ACTIONS(6832), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3458)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6910), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(6834), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3459)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6912), + [anon_sym_STAR] = ACTIONS(6366), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6368), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6370), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6372), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6374), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6376), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6380), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6382), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6378), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6376), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6368), + [anon_sym_PIPE_PIPE] = ACTIONS(6370), + [anon_sym_GT_GT] = ACTIONS(6384), + [anon_sym_GT_GT_GT] = ACTIONS(6386), + [anon_sym_LT_LT] = ACTIONS(6386), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6392), + [anon_sym_PLUS] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [anon_sym_SLASH] = ACTIONS(6366), + [anon_sym_PERCENT] = ACTIONS(6374), + [anon_sym_BSLASH] = ACTIONS(6374), + [anon_sym_STAR_STAR] = ACTIONS(6396), + [anon_sym_LT] = ACTIONS(6376), + [anon_sym_LT_EQ] = ACTIONS(6378), + [anon_sym_EQ_EQ] = ACTIONS(6380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6382), + [anon_sym_LT_GT] = ACTIONS(6382), + [anon_sym_BANG_EQ] = ACTIONS(6380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6382), + [aux_sym_binary_expression_token1] = ACTIONS(6382), + [anon_sym_GT_EQ] = ACTIONS(6378), + [anon_sym_GT] = ACTIONS(6376), + [aux_sym_binary_expression_token2] = ACTIONS(6376), + [aux_sym_binary_expression_token3] = ACTIONS(6376), + [aux_sym_binary_expression_token4] = ACTIONS(6378), + [aux_sym_binary_expression_token5] = ACTIONS(6378), + [aux_sym_binary_expression_token6] = ACTIONS(6382), + [anon_sym_QMARK_QMARK] = ACTIONS(6398), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6376), + [anon_sym_in] = ACTIONS(6376), + [anon_sym_IN] = ACTIONS(6376), + [anon_sym_InstanceOf] = ACTIONS(6378), + [anon_sym_instanceof] = ACTIONS(6378), + [anon_sym_INSTANCEOF] = ACTIONS(6378), + [anon_sym_instanceOf] = ACTIONS(6378), + [sym__automatic_semicolon] = ACTIONS(2466), + [sym__ternary_qmark] = ACTIONS(6400), + [sym__elvis_operator] = ACTIONS(6402), + [sym_logical_or] = ACTIONS(6370), }, [STATE(3460)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6914), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3461)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6916), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6175), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6175), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3462)] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6846), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6848), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(6852), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(6854), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6850), - [sym_tag_linefeed] = ACTIONS(2468), + [sym_arguments] = STATE(2842), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3463)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(6918), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3464)] = { - [aux_sym_arguments_repeat1] = STATE(4692), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6842), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3465)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6844), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3466)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(6920), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3465)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3467)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6922), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3466)] = { + [STATE(3468)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3469)] = { + [aux_sym_array_repeat1] = STATE(4823), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6850), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3470)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6852), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3471)] = { + [aux_sym_array_repeat1] = STATE(4696), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6854), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3472)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6856), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3473)] = { + [aux_sym_arguments_repeat1] = STATE(4684), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(6858), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3474)] = { + [sym_arguments] = STATE(2716), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3475)] = { + [sym_identifier] = ACTIONS(5264), [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(5297), + [anon_sym_EQ] = ACTIONS(1901), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(507), + [aux_sym__operator_shaped_name_token2] = ACTIONS(507), + [aux_sym__operator_shaped_name_token3] = ACTIONS(507), + [aux_sym__operator_shaped_name_token4] = ACTIONS(507), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token6] = ACTIONS(507), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token9] = ACTIONS(507), + [aux_sym__operator_shaped_name_token10] = ACTIONS(507), + [aux_sym__operator_shaped_name_token11] = ACTIONS(507), + [aux_sym__operator_shaped_name_token12] = ACTIONS(507), + [aux_sym__operator_shaped_name_token13] = ACTIONS(507), + [aux_sym__operator_shaped_name_token14] = ACTIONS(507), + [aux_sym__operator_shaped_name_token15] = ACTIONS(507), + [aux_sym__operator_shaped_name_token16] = ACTIONS(507), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -439180,7 +441858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(507), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -439204,5777 +441882,7106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_In] = ACTIONS(507), [anon_sym_in] = ACTIONS(507), [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), + [anon_sym_InstanceOf] = ACTIONS(507), + [anon_sym_instanceof] = ACTIONS(507), + [anon_sym_INSTANCEOF] = ACTIONS(507), + [anon_sym_instanceOf] = ACTIONS(507), [sym__ternary_qmark] = ACTIONS(509), [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3467)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2460), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3468)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6848), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3469)] = { + [STATE(3476)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3470)] = { - [sym_string] = STATE(4975), - [sym_number] = STATE(4975), - [sym_null] = STATE(4975), - [sym_decorator] = STATE(3847), - [sym__property_name] = STATE(4975), - [sym__hash_always_eval] = STATE(4975), - [sym_hash_expression] = STATE(4975), - [sym_computed_property_name] = STATE(4975), - [aux_sym_method_definition_repeat1] = STATE(3843), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(6924), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(131), - [aux_sym_method_definition_token1] = ACTIONS(6926), - [anon_sym_get] = ACTIONS(6928), - [anon_sym_set] = ACTIONS(6930), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(6932), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(6934), - [anon_sym_static] = ACTIONS(6936), - [anon_sym_STATIC] = ACTIONS(6938), - }, - [STATE(3471)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6940), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6860), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3472)] = { + [STATE(3477)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(5679), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(5679), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3473)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6942), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3474)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3475)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6944), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6862), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3476)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3478)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6946), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3477)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3478)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3479)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6948), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_arguments] = STATE(677), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3480)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_COLON] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2472), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3481)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_COLON] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2476), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6866), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3482)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_COLON] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2428), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [sym_string] = STATE(4833), + [sym_number] = STATE(4833), + [sym_null] = STATE(4833), + [sym_decorator] = STATE(3899), + [sym__property_name] = STATE(4833), + [sym__hash_always_eval] = STATE(4833), + [sym_hash_expression] = STATE(4833), + [sym_computed_property_name] = STATE(4833), + [aux_sym_method_definition_repeat1] = STATE(3895), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(6868), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(131), + [aux_sym_method_definition_token1] = ACTIONS(6870), + [anon_sym_get] = ACTIONS(6872), + [anon_sym_set] = ACTIONS(6874), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(6876), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(6878), + [anon_sym_static] = ACTIONS(6880), + [anon_sym_STATIC] = ACTIONS(6882), }, [STATE(3483)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3484)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(6886), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3485)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3486)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [sym_arguments] = STATE(2481), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3487)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [sym_arguments] = STATE(2497), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3488)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [aux_sym_arguments_repeat1] = STATE(4650), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(6888), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3489)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4683), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6890), + [anon_sym_COLON] = ACTIONS(6892), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, [STATE(3490)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6894), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3491)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6896), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3492)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(6898), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3493)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2576), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6904), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6906), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(6914), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(6936), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(6938), + [sym__elvis_operator] = ACTIONS(6940), + [sym_logical_or] = ACTIONS(6914), + [sym_tag_linefeed] = ACTIONS(2578), }, [STATE(3494)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3495)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6189), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3496)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_COLON] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2460), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3497)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_COLON] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(2468), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6189), + [aux_sym_arguments_repeat1] = STATE(4780), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(6942), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3498)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6950), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6944), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3499)] = { - [aux_sym_arguments_repeat1] = STATE(4584), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(6952), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6946), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3500)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6954), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, [STATE(3501)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4716), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6956), - [anon_sym_COLON] = ACTIONS(6958), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3502)] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6846), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6848), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(6852), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(6854), - [sym__elvis_operator] = ACTIONS(6856), - [sym_logical_or] = ACTIONS(6850), - [sym_tag_linefeed] = ACTIONS(2460), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6948), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3503)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6950), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3504)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2468), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3505)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6960), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_array_repeat1] = STATE(4621), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6954), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3506)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6962), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6956), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3507)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6964), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(6958), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3508)] = { - [aux_sym_array_repeat1] = STATE(4566), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6966), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(6628), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6904), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6906), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(6914), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(6936), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(6938), + [sym__elvis_operator] = ACTIONS(6940), + [sym_logical_or] = ACTIONS(6914), + [sym_tag_linefeed] = ACTIONS(6628), }, [STATE(3509)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6968), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(6705), + [anon_sym_RBRACE] = ACTIONS(6705), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, [STATE(3510)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6960), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3511)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3512)] = { - [aux_sym_arguments_repeat1] = STATE(4644), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(6972), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_SEMI] = ACTIONS(5817), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(5817), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3513)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6962), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3514)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(6974), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6904), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6906), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(6914), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(6936), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(6938), + [sym__elvis_operator] = ACTIONS(6940), + [sym_logical_or] = ACTIONS(6914), + [sym_tag_linefeed] = ACTIONS(2478), }, [STATE(3515)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6976), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6964), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3516)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(6978), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6904), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6906), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(6914), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(6936), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(6938), + [sym__elvis_operator] = ACTIONS(6940), + [sym_logical_or] = ACTIONS(6914), + [sym_tag_linefeed] = ACTIONS(2410), }, [STATE(3517)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6980), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_string] = STATE(5111), + [sym_number] = STATE(5111), + [sym_null] = STATE(5111), + [sym__property_name] = STATE(5111), + [sym__hash_always_eval] = STATE(5111), + [sym_hash_expression] = STATE(5111), + [sym_computed_property_name] = STATE(5111), + [sym_identifier] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(6719), + [anon_sym_RBRACE] = ACTIONS(6719), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5626), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), }, [STATE(3518)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6982), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6906), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, [STATE(3519)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6984), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3520)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6986), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6968), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3521)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6988), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_arguments_repeat1] = STATE(4745), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(6970), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3522)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6990), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_arguments] = STATE(2741), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3523)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6992), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [aux_sym_array_repeat1] = STATE(4696), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6972), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3524)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6994), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [sym_arguments] = STATE(2883), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3525)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6974), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3526)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [aux_sym_arguments_repeat1] = STATE(4686), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(6976), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3527)] = { + [aux_sym_array_repeat1] = STATE(4801), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(6978), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3528)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(6980), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3529)] = { + [sym_arguments] = STATE(2810), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3530)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6996), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3527)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3531)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6982), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3532)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6984), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3533)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6986), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3534)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6988), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3535)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(6998), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3528)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3536)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(3537)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6990), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3538)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3539)] = { + [sym_arguments] = STATE(2822), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3540)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(7000), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(6092), + [anon_sym_SEMI] = ACTIONS(6092), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(6092), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3529)] = { + [STATE(3541)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6992), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3530)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), + [STATE(3542)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(6994), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3543)] = { + [aux_sym_arguments_repeat1] = STATE(4786), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(6996), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3544)] = { + [aux_sym_arguments_repeat1] = STATE(4762), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(6998), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3545)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7000), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3546)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), [anon_sym_RPAREN] = ACTIONS(7002), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3531)] = { - [aux_sym_arguments_repeat1] = STATE(4623), + [STATE(3547)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(7004), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3532)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [STATE(3548)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7004), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3533)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), + [STATE(3549)] = { + [sym_identifier] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6904), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6906), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(6914), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(6936), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(6938), + [sym__elvis_operator] = ACTIONS(6940), + [sym_logical_or] = ACTIONS(6914), + [sym_tag_linefeed] = ACTIONS(2418), }, - [STATE(3534)] = { + [STATE(3550)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3535)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), [anon_sym_RPAREN] = ACTIONS(7006), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3536)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), + [STATE(3551)] = { + [aux_sym_arguments_repeat1] = STATE(4659), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(1744), [anon_sym_RPAREN] = ACTIONS(7008), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3537)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), + [STATE(3552)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), [anon_sym_RPAREN] = ACTIONS(7010), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3538)] = { - [aux_sym_array_repeat1] = STATE(4756), + [STATE(3553)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7012), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3554)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3555)] = { + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6904), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6906), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(6914), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(6936), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(6938), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6914), + [sym_tag_linefeed] = ACTIONS(2586), + }, + [STATE(3556)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_SEMI] = ACTIONS(5817), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7012), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(5817), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3539)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3557)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7014), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3540)] = { - [aux_sym_arguments_repeat1] = STATE(4654), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(1748), + [STATE(3558)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), [anon_sym_RPAREN] = ACTIONS(7016), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3541)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), + [STATE(3559)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), [anon_sym_RPAREN] = ACTIONS(7018), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3542)] = { - [aux_sym_array_repeat1] = STATE(4569), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7020), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3560)] = { + [sym_arguments] = STATE(683), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3543)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), + [STATE(3561)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7020), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3562)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3563)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3564)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3565)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3566)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), [anon_sym_RPAREN] = ACTIONS(7022), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3544)] = { - [aux_sym_array_repeat1] = STATE(4569), + [STATE(3567)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3568)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7024), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2578), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3545)] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6846), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6848), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(6852), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(6854), - [sym__elvis_operator] = ACTIONS(6856), - [sym_logical_or] = ACTIONS(6850), - [sym_tag_linefeed] = ACTIONS(2472), + [STATE(3569)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3546)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3570)] = { + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_EQ] = ACTIONS(5305), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(509), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(3571)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3547)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), + [STATE(3572)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), [anon_sym_RPAREN] = ACTIONS(7028), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3548)] = { - [aux_sym_arguments_repeat1] = STATE(4595), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(1748), + [STATE(3573)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), [anon_sym_RPAREN] = ACTIONS(7030), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3549)] = { - [sym_identifier] = ACTIONS(5261), + [STATE(3574)] = { + [sym_arguments] = STATE(476), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3575)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7032), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3576)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3577)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_COLON] = ACTIONS(7036), [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(507), - [aux_sym__operator_shaped_name_token2] = ACTIONS(507), - [aux_sym__operator_shaped_name_token3] = ACTIONS(507), - [aux_sym__operator_shaped_name_token4] = ACTIONS(507), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), [aux_sym__operator_shaped_name_token7] = ACTIONS(507), [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(507), - [aux_sym__operator_shaped_name_token10] = ACTIONS(507), - [aux_sym__operator_shaped_name_token11] = ACTIONS(507), - [aux_sym__operator_shaped_name_token12] = ACTIONS(507), - [aux_sym__operator_shaped_name_token13] = ACTIONS(507), - [aux_sym__operator_shaped_name_token14] = ACTIONS(507), - [aux_sym__operator_shaped_name_token15] = ACTIONS(507), - [aux_sym__operator_shaped_name_token16] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), [aux_sym__operator_shaped_name_token17] = ACTIONS(507), [sym_optional_chain] = ACTIONS(509), [sym_static_chain] = ACTIONS(509), @@ -444990,7 +448997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(507), [anon_sym_SLASH] = ACTIONS(507), [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(507), + [anon_sym_BSLASH] = ACTIONS(509), [anon_sym_STAR_STAR] = ACTIONS(509), [anon_sym_LT] = ACTIONS(507), [anon_sym_LT_EQ] = ACTIONS(509), @@ -445011,792 +449018,3103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(509), [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(507), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_INSTANCEOF] = ACTIONS(507), - [anon_sym_instanceOf] = ACTIONS(507), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(3550)] = { - [aux_sym_array_repeat1] = STATE(4736), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7032), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3551)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2428), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3552)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(7034), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3553)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3554)] = { - [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3555)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6846), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6848), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(6850), - [sym_tag_linefeed] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(509), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), + }, + [STATE(3578)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3579)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3580)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7040), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3581)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3582)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3583)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5512), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), + [sym_static_chain] = ACTIONS(5516), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(5817), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), + }, + [STATE(3584)] = { + [sym_arguments] = STATE(2559), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3585)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7044), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3586)] = { + [aux_sym_array_repeat1] = STATE(4602), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7046), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3587)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7048), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3588)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3589)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(7050), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3590)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3591)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7052), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3592)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7054), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3593)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7056), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3594)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3595)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3596)] = { + [sym_arguments] = STATE(2485), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3597)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7058), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3598)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7060), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3599)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7062), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3600)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3601)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_COLON] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2410), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), + }, + [STATE(3602)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_COLON] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2418), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), + }, + [STATE(3603)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_COLON] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2478), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), + }, + [STATE(3604)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7066), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3605)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3606)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3607)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3608)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3609)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3610)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3611)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7068), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3612)] = { + [sym_arguments] = STATE(444), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3613)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3614)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3615)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3616)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3617)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3618)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7070), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3619)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3556)] = { + [STATE(3620)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3557)] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2430), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2430), - [anon_sym_instanceof] = ACTIONS(2430), - [anon_sym_INSTANCEOF] = ACTIONS(2430), - [anon_sym_instanceOf] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - [sym_tag_linefeed] = ACTIONS(2432), - }, - [STATE(3558)] = { - [aux_sym_array_repeat1] = STATE(4756), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7036), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3559)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(6427), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(6427), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3560)] = { + [STATE(3621)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7072), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3561)] = { + [STATE(3622)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(7038), + [anon_sym_COLON] = ACTIONS(7074), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -445862,501 +452180,781 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3562)] = { + [STATE(3623)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(7076), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3624)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_SEMI] = ACTIONS(6005), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(6005), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7078), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3563)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7040), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3625)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_COLON] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2578), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3564)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3626)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6902), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6904), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6906), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6900), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6910), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6908), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6908), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6912), + [anon_sym_PIPE_PIPE] = ACTIONS(6914), + [anon_sym_GT_GT] = ACTIONS(6916), + [anon_sym_GT_GT_GT] = ACTIONS(6918), + [anon_sym_LT_LT] = ACTIONS(6918), + [anon_sym_AMP] = ACTIONS(6920), + [anon_sym_CARET] = ACTIONS(6922), + [anon_sym_PIPE] = ACTIONS(6924), + [anon_sym_PLUS] = ACTIONS(6926), + [anon_sym_DASH] = ACTIONS(6926), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6928), + [anon_sym_BSLASH] = ACTIONS(6900), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6908), + [anon_sym_LT_EQ] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6910), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT_GT] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6910), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6934), + [aux_sym_binary_expression_token1] = ACTIONS(6934), + [anon_sym_GT_EQ] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6908), + [aux_sym_binary_expression_token2] = ACTIONS(6908), + [aux_sym_binary_expression_token3] = ACTIONS(6908), + [aux_sym_binary_expression_token4] = ACTIONS(6932), + [aux_sym_binary_expression_token5] = ACTIONS(6932), + [aux_sym_binary_expression_token6] = ACTIONS(6934), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_IN] = ACTIONS(6908), + [anon_sym_InstanceOf] = ACTIONS(6908), + [anon_sym_instanceof] = ACTIONS(6908), + [anon_sym_INSTANCEOF] = ACTIONS(6908), + [anon_sym_instanceOf] = ACTIONS(6908), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(6914), + [sym_tag_linefeed] = ACTIONS(2484), + }, + [STATE(3627)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3565)] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6846), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6848), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(6852), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(6854), - [sym__elvis_operator] = ACTIONS(6856), - [sym_logical_or] = ACTIONS(6850), - [sym_tag_linefeed] = ACTIONS(2476), + [STATE(3628)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(2586), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3566)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7044), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3629)] = { + [aux_sym_array_repeat1] = STATE(4784), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7080), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3567)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(509), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(3630)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(7082), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3568)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), + [STATE(3631)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7084), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3632)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7046), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3569)] = { + [STATE(3633)] = { + [aux_sym_array_repeat1] = STATE(4680), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7086), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3634)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(7048), + [anon_sym_EQ] = ACTIONS(5297), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -446422,4298 +453020,3333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3570)] = { + [STATE(3635)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7088), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3571)] = { + [STATE(3636)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3572)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7050), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3573)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_SEMI] = ACTIONS(7052), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3637)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7092), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3574)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7054), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3638)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7094), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3575)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7056), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3639)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_SEMI] = ACTIONS(7096), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3576)] = { - [sym_identifier] = ACTIONS(6639), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6810), - [anon_sym_LBRACE] = ACTIONS(6641), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6838), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6846), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6848), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6810), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6814), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6812), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6812), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE_PIPE] = ACTIONS(6850), - [anon_sym_GT_GT] = ACTIONS(6816), - [anon_sym_GT_GT_GT] = ACTIONS(6818), - [anon_sym_LT_LT] = ACTIONS(6818), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6810), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_BSLASH] = ACTIONS(6810), - [anon_sym_STAR_STAR] = ACTIONS(6830), - [anon_sym_LT] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6832), - [anon_sym_EQ_EQ] = ACTIONS(6814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6834), - [anon_sym_LT_GT] = ACTIONS(6834), - [anon_sym_BANG_EQ] = ACTIONS(6814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6834), - [aux_sym_binary_expression_token1] = ACTIONS(6834), - [anon_sym_GT_EQ] = ACTIONS(6832), - [anon_sym_GT] = ACTIONS(6812), - [aux_sym_binary_expression_token2] = ACTIONS(6812), - [aux_sym_binary_expression_token3] = ACTIONS(6812), - [aux_sym_binary_expression_token4] = ACTIONS(6832), - [aux_sym_binary_expression_token5] = ACTIONS(6832), - [aux_sym_binary_expression_token6] = ACTIONS(6834), - [anon_sym_QMARK_QMARK] = ACTIONS(6852), - [anon_sym_PLUS_PLUS] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6612), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6812), - [anon_sym_in] = ACTIONS(6812), - [anon_sym_IN] = ACTIONS(6812), - [anon_sym_InstanceOf] = ACTIONS(6812), - [anon_sym_instanceof] = ACTIONS(6812), - [anon_sym_INSTANCEOF] = ACTIONS(6812), - [anon_sym_instanceOf] = ACTIONS(6812), - [sym__ternary_qmark] = ACTIONS(6854), - [sym__elvis_operator] = ACTIONS(6856), - [sym_logical_or] = ACTIONS(6850), - [sym_tag_linefeed] = ACTIONS(6641), + [STATE(3640)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7098), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3577)] = { - [aux_sym_array_repeat1] = STATE(4642), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6860), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7058), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3641)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RPAREN] = ACTIONS(7100), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3578)] = { - [aux_sym_sequence_expression_repeat1] = STATE(4162), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(7060), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3642)] = { + [aux_sym_array_repeat1] = STATE(4602), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7102), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3579)] = { - [sym_arguments] = STATE(3222), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3643)] = { + [aux_sym_sequence_expression_repeat1] = STATE(4202), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6323), + [anon_sym_RBRACE] = ACTIONS(7104), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3580)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(7066), + [STATE(3644)] = { + [sym_identifier] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(6522), + [anon_sym_DASH_DASH] = ACTIONS(6522), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_INSTANCEOF] = ACTIONS(2482), + [anon_sym_instanceOf] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + [sym_tag_linefeed] = ACTIONS(2484), }, - [STATE(3581)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), + [STATE(3645)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2460), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(7096), - [sym__elvis_operator] = ACTIONS(7098), - [sym_logical_or] = ACTIONS(7066), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3582)] = { - [sym_arguments] = STATE(2641), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3646)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7134), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3583)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6641), - [anon_sym_RPAREN] = ACTIONS(6641), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3647)] = { + [sym_arguments] = STATE(2478), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3584)] = { - [sym_arguments] = STATE(2643), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3648)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(7136), + [anon_sym_RPAREN] = ACTIONS(7136), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3585)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), + [STATE(3649)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(7096), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(7066), - }, - [STATE(3586)] = { - [sym_arguments] = STATE(2983), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(7144), + [sym__elvis_operator] = ACTIONS(7146), + [sym_logical_or] = ACTIONS(7138), }, - [STATE(3587)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(7100), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), + [STATE(3650)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(3588)] = { - [sym_arguments] = STATE(2990), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3589)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(7103), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7105), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3590)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_COLON] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(7139), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(7141), - [sym__elvis_operator] = ACTIONS(7143), - [sym_logical_or] = ACTIONS(7111), - }, - [STATE(3591)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_COLON] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(7139), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(7141), - [sym__elvis_operator] = ACTIONS(7143), - [sym_logical_or] = ACTIONS(7111), - }, - [STATE(3592)] = { - [sym_arguments] = STATE(2662), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3593)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_COLON] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(7139), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(7141), - [sym__elvis_operator] = ACTIONS(7143), - [sym_logical_or] = ACTIONS(7111), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(7144), + [sym__elvis_operator] = ACTIONS(7146), + [sym_logical_or] = ACTIONS(7138), }, - [STATE(3594)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3651)] = { + [sym_arguments] = STATE(472), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3595)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3652)] = { + [sym_arguments] = STATE(2452), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3596)] = { - [sym_arguments] = STATE(2668), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3653)] = { + [sym_arguments] = STATE(2454), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3597)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3654)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(7144), + [sym__elvis_operator] = ACTIONS(7146), + [sym_logical_or] = ACTIONS(7138), }, - [STATE(3598)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3655)] = { + [sym_arguments] = STATE(3085), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3599)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3656)] = { + [sym_arguments] = STATE(2738), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3600)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3657)] = { + [sym_arguments] = STATE(2756), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3601)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3658)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COLON] = ACTIONS(7148), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7150), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3602)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3659)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3603)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3660)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6697), + [anon_sym_RBRACE] = ACTIONS(6697), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3604)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3661)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_COLON] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(7184), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(7186), + [sym__elvis_operator] = ACTIONS(7188), + [sym_logical_or] = ACTIONS(7156), }, - [STATE(3605)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3662)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_COLON] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(7184), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(7186), + [sym__elvis_operator] = ACTIONS(7188), + [sym_logical_or] = ACTIONS(7156), }, - [STATE(3606)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3663)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_COLON] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(7184), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(7186), + [sym__elvis_operator] = ACTIONS(7188), + [sym_logical_or] = ACTIONS(7156), }, - [STATE(3607)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(7111), + [STATE(3664)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3608)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_COLON] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(7139), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(7141), - [sym__elvis_operator] = ACTIONS(7143), - [sym_logical_or] = ACTIONS(7111), + [STATE(3665)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3609)] = { - [sym_arguments] = STATE(2486), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3666)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3610)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_COLON] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(7139), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(7141), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(7111), + [STATE(3667)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3611)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), + [STATE(3668)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2464), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(7096), - [sym__elvis_operator] = ACTIONS(7098), - [sym_logical_or] = ACTIONS(7066), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3612)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2472), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(7096), - [sym__elvis_operator] = ACTIONS(7098), - [sym_logical_or] = ACTIONS(7066), + [STATE(3669)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3613)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), + [STATE(3670)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(7096), - [sym__elvis_operator] = ACTIONS(7098), - [sym_logical_or] = ACTIONS(7066), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3614)] = { - [sym_arguments] = STATE(2487), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3671)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3615)] = { + [STATE(3672)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SEMI] = ACTIONS(7145), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(7145), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3616)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(7147), - [anon_sym_RPAREN] = ACTIONS(7147), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3673)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3617)] = { - [sym_arguments] = STATE(456), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3674)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3618)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(7149), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7149), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3675)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3619)] = { + [STATE(3676)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SEMI] = ACTIONS(7151), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(7151), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), - }, - [STATE(3620)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3621)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6678), - [anon_sym_RBRACE] = ACTIONS(6678), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3622)] = { - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(6683), - [anon_sym_RPAREN] = ACTIONS(6683), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3623)] = { - [sym_arguments] = STATE(2450), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3624)] = { - [sym_arguments] = STATE(621), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3625)] = { - [sym_arguments] = STATE(542), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(7156), }, - [STATE(3626)] = { - [sym_arguments] = STATE(2664), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3677)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_COLON] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(7184), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(7186), + [sym__elvis_operator] = ACTIONS(7188), + [sym_logical_or] = ACTIONS(7156), }, - [STATE(3627)] = { - [sym_arguments] = STATE(714), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3678)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(7184), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(7186), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(7156), }, - [STATE(3628)] = { - [sym_arguments] = STATE(2707), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3679)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(7190), + [anon_sym_RPAREN] = ACTIONS(7190), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3629)] = { - [sym_arguments] = STATE(745), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3680)] = { + [sym_arguments] = STATE(672), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3630)] = { + [STATE(3681)] = { + [sym_arguments] = STATE(447), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SEMI] = ACTIONS(7153), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6133), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6135), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6137), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6139), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6141), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6145), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6147), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6143), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6141), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(6133), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_BSLASH] = ACTIONS(6139), - [anon_sym_STAR_STAR] = ACTIONS(6161), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6147), - [anon_sym_LT_GT] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6147), - [aux_sym_binary_expression_token1] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_GT] = ACTIONS(6141), - [aux_sym_binary_expression_token2] = ACTIONS(6141), - [aux_sym_binary_expression_token3] = ACTIONS(6141), - [aux_sym_binary_expression_token4] = ACTIONS(6143), - [aux_sym_binary_expression_token5] = ACTIONS(6143), - [aux_sym_binary_expression_token6] = ACTIONS(6147), - [anon_sym_QMARK_QMARK] = ACTIONS(6163), - [anon_sym_PLUS_PLUS] = ACTIONS(5534), - [anon_sym_DASH_DASH] = ACTIONS(5534), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_IN] = ACTIONS(6141), - [anon_sym_InstanceOf] = ACTIONS(6143), - [anon_sym_instanceof] = ACTIONS(6143), - [anon_sym_INSTANCEOF] = ACTIONS(6143), - [anon_sym_instanceOf] = ACTIONS(6143), - [sym__automatic_semicolon] = ACTIONS(7153), - [sym__ternary_qmark] = ACTIONS(6165), - [sym__elvis_operator] = ACTIONS(6167), - [sym_logical_or] = ACTIONS(6135), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3631)] = { - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(509), - [aux_sym__operator_shaped_name_token1] = ACTIONS(509), - [aux_sym__operator_shaped_name_token2] = ACTIONS(509), - [aux_sym__operator_shaped_name_token3] = ACTIONS(509), - [aux_sym__operator_shaped_name_token4] = ACTIONS(509), - [aux_sym__operator_shaped_name_token5] = ACTIONS(507), - [aux_sym__operator_shaped_name_token6] = ACTIONS(509), - [aux_sym__operator_shaped_name_token7] = ACTIONS(507), - [aux_sym__operator_shaped_name_token8] = ACTIONS(507), - [aux_sym__operator_shaped_name_token9] = ACTIONS(509), - [aux_sym__operator_shaped_name_token10] = ACTIONS(509), - [aux_sym__operator_shaped_name_token11] = ACTIONS(509), - [aux_sym__operator_shaped_name_token12] = ACTIONS(509), - [aux_sym__operator_shaped_name_token13] = ACTIONS(509), - [aux_sym__operator_shaped_name_token14] = ACTIONS(509), - [aux_sym__operator_shaped_name_token15] = ACTIONS(509), - [aux_sym__operator_shaped_name_token16] = ACTIONS(509), - [aux_sym__operator_shaped_name_token17] = ACTIONS(507), - [sym_optional_chain] = ACTIONS(509), - [sym_static_chain] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_BSLASH] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_LT_GT] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [aux_sym_binary_expression_token1] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(507), - [aux_sym_binary_expression_token2] = ACTIONS(507), - [aux_sym_binary_expression_token3] = ACTIONS(507), - [aux_sym_binary_expression_token4] = ACTIONS(509), - [aux_sym_binary_expression_token5] = ACTIONS(509), - [aux_sym_binary_expression_token6] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), + [STATE(3682)] = { + [sym_arguments] = STATE(449), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3632)] = { + [STATE(3683)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5307), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -450778,287 +456411,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3633)] = { - [sym_arguments] = STATE(2444), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3634)] = { - [sym_arguments] = STATE(2423), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3635)] = { - [sym_arguments] = STATE(480), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3636)] = { - [sym_arguments] = STATE(2539), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3637)] = { + [STATE(3684)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1439), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -451123,1874 +456480,1391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3638)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(7155), - [anon_sym_RBRACE] = ACTIONS(7155), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3639)] = { - [sym_arguments] = STATE(2466), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3640)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(7157), - [anon_sym_RPAREN] = ACTIONS(7157), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3641)] = { - [sym_arguments] = STATE(2622), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3642)] = { - [sym_arguments] = STATE(2747), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3643)] = { - [sym_arguments] = STATE(458), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3644)] = { - [sym_arguments] = STATE(2865), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3685)] = { + [sym_arguments] = STATE(2799), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3645)] = { - [sym_arguments] = STATE(445), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3686)] = { + [sym_arguments] = STATE(3088), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3646)] = { - [sym_arguments] = STATE(2878), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3687)] = { + [sym_arguments] = STATE(3119), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3647)] = { - [sym_arguments] = STATE(2629), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3688)] = { + [sym_arguments] = STATE(2458), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3648)] = { - [sym_arguments] = STATE(2530), + [STATE(3689)] = { + [sym_arguments] = STATE(2475), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(7160), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5506), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3649)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(7096), - [sym__elvis_operator] = ACTIONS(7098), - [sym_logical_or] = ACTIONS(7066), + [STATE(3690)] = { + [sym_arguments] = STATE(691), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3650)] = { - [sym_arguments] = STATE(2522), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3691)] = { + [sym_arguments] = STATE(693), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3651)] = { - [sym_arguments] = STATE(2953), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3692)] = { + [sym_arguments] = STATE(2557), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3652)] = { - [sym_arguments] = STATE(2999), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3693)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COLON] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7195), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3653)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2420), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(7096), - [sym__elvis_operator] = ACTIONS(7098), - [sym_logical_or] = ACTIONS(7066), + [STATE(3694)] = { + [sym_arguments] = STATE(2680), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3654)] = { - [sym_arguments] = STATE(2908), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3695)] = { + [sym_arguments] = STATE(2683), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3655)] = { - [sym_arguments] = STATE(3355), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3696)] = { + [sym_arguments] = STATE(2708), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3656)] = { - [sym_arguments] = STATE(3074), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3697)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(7197), + [anon_sym_RBRACE] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3657)] = { - [sym_arguments] = STATE(2928), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3698)] = { + [sym_arguments] = STATE(2909), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3658)] = { - [sym_arguments] = STATE(2440), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3699)] = { + [sym_arguments] = STATE(2916), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3659)] = { - [sym_arguments] = STATE(2518), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3700)] = { + [sym_arguments] = STATE(2719), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3660)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(7162), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7164), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), + [STATE(3701)] = { + [sym_arguments] = STATE(2720), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3661)] = { - [sym_arguments] = STATE(2530), + [STATE(3702)] = { + [sym_arguments] = STATE(2600), [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(7166), - [sym_static_chain] = ACTIONS(7168), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3662)] = { - [sym_arguments] = STATE(3203), + [STATE(3703)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SEMI] = ACTIONS(7199), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3663)] = { - [sym_arguments] = STATE(3206), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(7199), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3664)] = { - [sym_arguments] = STATE(2530), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(7170), - [sym_static_chain] = ACTIONS(7172), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3704)] = { + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6319), + [anon_sym_RPAREN] = ACTIONS(6319), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, - [STATE(3665)] = { + [STATE(3705)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(7174), + [anon_sym_EQ] = ACTIONS(2127), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -453055,1460 +457929,1805 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__elvis_operator] = ACTIONS(509), [sym_logical_or] = ACTIONS(509), }, - [STATE(3666)] = { + [STATE(3706)] = { + [sym_arguments] = STATE(2589), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_COLON] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(7139), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(7141), - [sym__elvis_operator] = ACTIONS(7143), - [sym_logical_or] = ACTIONS(7111), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(7201), + [sym_static_chain] = ACTIONS(7203), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3667)] = { - [anon_sym_DOT] = ACTIONS(6758), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_COMMA] = ACTIONS(2476), - [anon_sym_RPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(7176), - [sym_static_chain] = ACTIONS(6762), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [STATE(3707)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COLON] = ACTIONS(7205), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3668)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(7139), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(7141), - [sym__elvis_operator] = ACTIONS(7143), - [sym_logical_or] = ACTIONS(7111), + [STATE(3708)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(6321), + [anon_sym_COMMA] = ACTIONS(6092), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6327), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6329), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6331), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6333), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6335), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6339), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6341), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6337), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6335), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(6327), + [anon_sym_PIPE_PIPE] = ACTIONS(6329), + [anon_sym_GT_GT] = ACTIONS(6343), + [anon_sym_GT_GT_GT] = ACTIONS(6345), + [anon_sym_LT_LT] = ACTIONS(6345), + [anon_sym_AMP] = ACTIONS(6347), + [anon_sym_CARET] = ACTIONS(6349), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_PLUS] = ACTIONS(6353), + [anon_sym_DASH] = ACTIONS(6353), + [anon_sym_SLASH] = ACTIONS(6321), + [anon_sym_PERCENT] = ACTIONS(6333), + [anon_sym_BSLASH] = ACTIONS(6333), + [anon_sym_STAR_STAR] = ACTIONS(6355), + [anon_sym_LT] = ACTIONS(6335), + [anon_sym_LT_EQ] = ACTIONS(6337), + [anon_sym_EQ_EQ] = ACTIONS(6339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6341), + [anon_sym_LT_GT] = ACTIONS(6341), + [anon_sym_BANG_EQ] = ACTIONS(6339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6341), + [aux_sym_binary_expression_token1] = ACTIONS(6341), + [anon_sym_GT_EQ] = ACTIONS(6337), + [anon_sym_GT] = ACTIONS(6335), + [aux_sym_binary_expression_token2] = ACTIONS(6335), + [aux_sym_binary_expression_token3] = ACTIONS(6335), + [aux_sym_binary_expression_token4] = ACTIONS(6337), + [aux_sym_binary_expression_token5] = ACTIONS(6337), + [aux_sym_binary_expression_token6] = ACTIONS(6341), + [anon_sym_QMARK_QMARK] = ACTIONS(6357), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6335), + [anon_sym_in] = ACTIONS(6335), + [anon_sym_IN] = ACTIONS(6335), + [anon_sym_InstanceOf] = ACTIONS(6337), + [anon_sym_instanceof] = ACTIONS(6337), + [anon_sym_INSTANCEOF] = ACTIONS(6337), + [anon_sym_instanceOf] = ACTIONS(6337), + [sym__ternary_qmark] = ACTIONS(6359), + [sym__elvis_operator] = ACTIONS(6361), + [sym_logical_or] = ACTIONS(6329), }, - [STATE(3669)] = { + [STATE(3709)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_COLON] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SEMI] = ACTIONS(7209), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7109), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7111), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7113), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7115), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7117), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7121), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7123), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7119), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7117), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7111), - [anon_sym_GT_GT] = ACTIONS(7125), - [anon_sym_GT_GT_GT] = ACTIONS(7127), - [anon_sym_LT_LT] = ACTIONS(7127), - [anon_sym_AMP] = ACTIONS(7129), - [anon_sym_CARET] = ACTIONS(7131), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7135), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7115), - [anon_sym_BSLASH] = ACTIONS(7115), - [anon_sym_STAR_STAR] = ACTIONS(7137), - [anon_sym_LT] = ACTIONS(7117), - [anon_sym_LT_EQ] = ACTIONS(7119), - [anon_sym_EQ_EQ] = ACTIONS(7121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), - [anon_sym_LT_GT] = ACTIONS(7123), - [anon_sym_BANG_EQ] = ACTIONS(7121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), - [aux_sym_binary_expression_token1] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7119), - [anon_sym_GT] = ACTIONS(7117), - [aux_sym_binary_expression_token2] = ACTIONS(7117), - [aux_sym_binary_expression_token3] = ACTIONS(7117), - [aux_sym_binary_expression_token4] = ACTIONS(7119), - [aux_sym_binary_expression_token5] = ACTIONS(7119), - [aux_sym_binary_expression_token6] = ACTIONS(7123), - [anon_sym_QMARK_QMARK] = ACTIONS(7139), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7117), - [anon_sym_in] = ACTIONS(7117), - [anon_sym_IN] = ACTIONS(7117), - [anon_sym_InstanceOf] = ACTIONS(7119), - [anon_sym_instanceof] = ACTIONS(7119), - [anon_sym_INSTANCEOF] = ACTIONS(7119), - [anon_sym_instanceOf] = ACTIONS(7119), - [sym__ternary_qmark] = ACTIONS(7141), - [sym__elvis_operator] = ACTIONS(7143), - [sym_logical_or] = ACTIONS(7111), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(7209), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, - [STATE(3670)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7066), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2428), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(7096), - [sym__elvis_operator] = ACTIONS(7098), - [sym_logical_or] = ACTIONS(7066), + [STATE(3710)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(7144), + [sym__elvis_operator] = ACTIONS(7146), + [sym_logical_or] = ACTIONS(7138), }, - [STATE(3671)] = { - [sym_arguments] = STATE(636), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3711)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3672)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7068), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3712)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3673)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3713)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3674)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3714)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3675)] = { - [sym_arguments] = STATE(645), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3715)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3676)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7064), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3716)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3677)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3717)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3678)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3718)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3679)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3719)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3680)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3720)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3681)] = { - [sym_arguments] = STATE(2439), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [STATE(3721)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, - [STATE(3682)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3722)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(7138), }, - [STATE(3683)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7072), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7076), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7078), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7074), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7072), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7080), - [anon_sym_GT_GT_GT] = ACTIONS(7082), - [anon_sym_LT_LT] = ACTIONS(7082), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7078), - [anon_sym_LT_GT] = ACTIONS(7078), - [anon_sym_BANG_EQ] = ACTIONS(7076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7078), - [aux_sym_binary_expression_token1] = ACTIONS(7078), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_GT] = ACTIONS(7072), - [aux_sym_binary_expression_token2] = ACTIONS(7072), - [aux_sym_binary_expression_token3] = ACTIONS(7072), - [aux_sym_binary_expression_token4] = ACTIONS(7074), - [aux_sym_binary_expression_token5] = ACTIONS(7074), - [aux_sym_binary_expression_token6] = ACTIONS(7078), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_IN] = ACTIONS(7072), - [anon_sym_InstanceOf] = ACTIONS(7074), - [anon_sym_instanceof] = ACTIONS(7074), - [anon_sym_INSTANCEOF] = ACTIONS(7074), - [anon_sym_instanceOf] = ACTIONS(7074), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3723)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2578), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(7144), + [sym__elvis_operator] = ACTIONS(7146), + [sym_logical_or] = ACTIONS(7138), }, - [STATE(3684)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7070), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(7062), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_BSLASH] = ACTIONS(7070), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3724)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(7144), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(7138), }, - [STATE(3685)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [STATE(3725)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(7144), + [sym__elvis_operator] = ACTIONS(7146), + [sym_logical_or] = ACTIONS(7138), }, - [STATE(3686)] = { - [sym_arguments] = STATE(3223), + [STATE(3726)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7108), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7138), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7140), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7110), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7112), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7116), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7118), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7114), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7112), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_GT_GT_GT] = ACTIONS(7122), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7106), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_BSLASH] = ACTIONS(7110), + [anon_sym_STAR_STAR] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_EQ_EQ] = ACTIONS(7116), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7118), + [anon_sym_LT_GT] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7116), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7118), + [aux_sym_binary_expression_token1] = ACTIONS(7118), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [aux_sym_binary_expression_token2] = ACTIONS(7112), + [aux_sym_binary_expression_token3] = ACTIONS(7112), + [aux_sym_binary_expression_token4] = ACTIONS(7114), + [aux_sym_binary_expression_token5] = ACTIONS(7114), + [aux_sym_binary_expression_token6] = ACTIONS(7118), + [anon_sym_QMARK_QMARK] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2418), + [anon_sym_In] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_IN] = ACTIONS(7112), + [anon_sym_InstanceOf] = ACTIONS(7114), + [anon_sym_instanceof] = ACTIONS(7114), + [anon_sym_INSTANCEOF] = ACTIONS(7114), + [anon_sym_instanceOf] = ACTIONS(7114), + [sym__ternary_qmark] = ACTIONS(7144), + [sym__elvis_operator] = ACTIONS(7146), + [sym_logical_or] = ACTIONS(7138), + }, + [STATE(3727)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(6628), + [anon_sym_RPAREN] = ACTIONS(6628), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3728)] = { + [sym_arguments] = STATE(2589), [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(7211), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, - [STATE(3687)] = { + [STATE(3729)] = { + [sym_arguments] = STATE(2831), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3730)] = { + [sym_arguments] = STATE(2535), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3731)] = { + [sym_arguments] = STATE(2589), + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(7213), + [sym_static_chain] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3732)] = { [anon_sym_DOT] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7217), [anon_sym_LBRACK] = ACTIONS(509), [aux_sym__operator_shaped_name_token1] = ACTIONS(509), [aux_sym__operator_shaped_name_token2] = ACTIONS(509), @@ -454560,9036 +459779,9586 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_binary_expression_token6] = ACTIONS(509), [anon_sym_QMARK_QMARK] = ACTIONS(509), [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(509), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(507), - [anon_sym_in] = ACTIONS(507), - [anon_sym_IN] = ACTIONS(507), - [anon_sym_InstanceOf] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_INSTANCEOF] = ACTIONS(509), - [anon_sym_instanceOf] = ACTIONS(509), - [sym__ternary_qmark] = ACTIONS(509), - [sym__elvis_operator] = ACTIONS(509), - [sym_logical_or] = ACTIONS(509), - }, - [STATE(3688)] = { - [sym_arguments] = STATE(2540), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3689)] = { - [sym_arguments] = STATE(2996), - [anon_sym_DOT] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(1720), - [sym_static_chain] = ACTIONS(1720), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3690)] = { - [sym_arguments] = STATE(2627), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5669), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3691)] = { - [sym_arguments] = STATE(2465), - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token2] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token3] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token4] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token5] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token6] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token7] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token8] = ACTIONS(1722), - [aux_sym__operator_shaped_name_token9] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token10] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token11] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token12] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token13] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token14] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token15] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token16] = ACTIONS(1720), - [aux_sym__operator_shaped_name_token17] = ACTIONS(1722), - [sym_optional_chain] = ACTIONS(5514), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_BSLASH] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_LT_GT] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [aux_sym_binary_expression_token1] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [aux_sym_binary_expression_token2] = ACTIONS(1722), - [aux_sym_binary_expression_token3] = ACTIONS(1722), - [aux_sym_binary_expression_token4] = ACTIONS(1720), - [aux_sym_binary_expression_token5] = ACTIONS(1720), - [aux_sym_binary_expression_token6] = ACTIONS(1720), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_IN] = ACTIONS(1722), - [anon_sym_InstanceOf] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1720), - [anon_sym_INSTANCEOF] = ACTIONS(1720), - [anon_sym_instanceOf] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym__elvis_operator] = ACTIONS(1720), - [sym_logical_or] = ACTIONS(1720), - }, - [STATE(3692)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_COLON] = ACTIONS(7181), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(6187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(6189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(6191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(6193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(6195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(6199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(6201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(6197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(6195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6189), - [anon_sym_GT_GT] = ACTIONS(6203), - [anon_sym_GT_GT_GT] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6193), - [anon_sym_BSLASH] = ACTIONS(6193), - [anon_sym_STAR_STAR] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6197), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6201), - [anon_sym_LT_GT] = ACTIONS(6201), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6201), - [aux_sym_binary_expression_token1] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6195), - [aux_sym_binary_expression_token2] = ACTIONS(6195), - [aux_sym_binary_expression_token3] = ACTIONS(6195), - [aux_sym_binary_expression_token4] = ACTIONS(6197), - [aux_sym_binary_expression_token5] = ACTIONS(6197), - [aux_sym_binary_expression_token6] = ACTIONS(6201), - [anon_sym_QMARK_QMARK] = ACTIONS(6217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(6195), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_IN] = ACTIONS(6195), - [anon_sym_InstanceOf] = ACTIONS(6197), - [anon_sym_instanceof] = ACTIONS(6197), - [anon_sym_INSTANCEOF] = ACTIONS(6197), - [anon_sym_instanceOf] = ACTIONS(6197), - [sym__ternary_qmark] = ACTIONS(6219), - [sym__elvis_operator] = ACTIONS(6221), - [sym_logical_or] = ACTIONS(6189), - }, - [STATE(3693)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), - }, - [STATE(3694)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), - }, - [STATE(3695)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7225), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3696)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7227), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), - }, - [STATE(3697)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), - }, - [STATE(3698)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), - }, - [STATE(3699)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), - }, - [STATE(3700)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3701)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3702)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7229), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), - }, - [STATE(3703)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3704)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(7235), - }, - [STATE(3705)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3706)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3707)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3708)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7263), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3709)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3710)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3711)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3712)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3713)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3714)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7267), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), - }, - [STATE(3715)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(7307), - [sym__elvis_operator] = ACTIONS(7309), - [sym_logical_or] = ACTIONS(7277), - }, - [STATE(3716)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(7307), - [sym__elvis_operator] = ACTIONS(7309), - [sym_logical_or] = ACTIONS(7277), - }, - [STATE(3717)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7311), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), - }, - [STATE(3718)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(7307), - [sym__elvis_operator] = ACTIONS(7309), - [sym_logical_or] = ACTIONS(7277), - }, - [STATE(3719)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3720)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3721)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3722)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7313), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), - }, - [STATE(3723)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3724)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3725)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3726)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3727)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7315), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), - }, - [STATE(3728)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7317), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), - }, - [STATE(3729)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3730)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3731)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), - }, - [STATE(3732)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, [STATE(3733)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(7219), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3734)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_COLON] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(7184), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(7186), + [sym__elvis_operator] = ACTIONS(7188), + [sym_logical_or] = ACTIONS(7156), }, [STATE(3735)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(7307), - [sym__elvis_operator] = ACTIONS(7309), - [sym_logical_or] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(7221), + [sym_static_chain] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3736)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(7307), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(7184), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(7186), + [sym__elvis_operator] = ACTIONS(7188), + [sym_logical_or] = ACTIONS(7156), }, [STATE(3737)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7154), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7156), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7158), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7160), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7162), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7166), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7168), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7164), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7162), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7170), + [anon_sym_GT_GT_GT] = ACTIONS(7172), + [anon_sym_LT_LT] = ACTIONS(7172), + [anon_sym_AMP] = ACTIONS(7174), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_PIPE] = ACTIONS(7178), + [anon_sym_PLUS] = ACTIONS(7180), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_BSLASH] = ACTIONS(7160), + [anon_sym_STAR_STAR] = ACTIONS(7182), + [anon_sym_LT] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7164), + [anon_sym_EQ_EQ] = ACTIONS(7166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7168), + [anon_sym_LT_GT] = ACTIONS(7168), + [anon_sym_BANG_EQ] = ACTIONS(7166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7168), + [aux_sym_binary_expression_token1] = ACTIONS(7168), + [anon_sym_GT_EQ] = ACTIONS(7164), + [anon_sym_GT] = ACTIONS(7162), + [aux_sym_binary_expression_token2] = ACTIONS(7162), + [aux_sym_binary_expression_token3] = ACTIONS(7162), + [aux_sym_binary_expression_token4] = ACTIONS(7164), + [aux_sym_binary_expression_token5] = ACTIONS(7164), + [aux_sym_binary_expression_token6] = ACTIONS(7168), + [anon_sym_QMARK_QMARK] = ACTIONS(7184), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7162), + [anon_sym_in] = ACTIONS(7162), + [anon_sym_IN] = ACTIONS(7162), + [anon_sym_InstanceOf] = ACTIONS(7164), + [anon_sym_instanceof] = ACTIONS(7164), + [anon_sym_INSTANCEOF] = ACTIONS(7164), + [anon_sym_instanceOf] = ACTIONS(7164), + [sym__ternary_qmark] = ACTIONS(7186), + [sym__elvis_operator] = ACTIONS(7188), + [sym_logical_or] = ACTIONS(7156), }, [STATE(3738)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7319), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [sym_arguments] = STATE(2513), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5520), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3739)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SEMI] = ACTIONS(7223), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(6276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(6278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(6280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(6282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(6284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(6288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(6290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(6286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(6284), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(6276), + [anon_sym_PIPE_PIPE] = ACTIONS(6278), + [anon_sym_GT_GT] = ACTIONS(6292), + [anon_sym_GT_GT_GT] = ACTIONS(6294), + [anon_sym_LT_LT] = ACTIONS(6294), + [anon_sym_AMP] = ACTIONS(6296), + [anon_sym_CARET] = ACTIONS(6298), + [anon_sym_PIPE] = ACTIONS(6300), + [anon_sym_PLUS] = ACTIONS(6302), + [anon_sym_DASH] = ACTIONS(6302), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6282), + [anon_sym_STAR_STAR] = ACTIONS(6304), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_LT_EQ] = ACTIONS(6286), + [anon_sym_EQ_EQ] = ACTIONS(6288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6290), + [anon_sym_LT_GT] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6290), + [aux_sym_binary_expression_token1] = ACTIONS(6290), + [anon_sym_GT_EQ] = ACTIONS(6286), + [anon_sym_GT] = ACTIONS(6284), + [aux_sym_binary_expression_token2] = ACTIONS(6284), + [aux_sym_binary_expression_token3] = ACTIONS(6284), + [aux_sym_binary_expression_token4] = ACTIONS(6286), + [aux_sym_binary_expression_token5] = ACTIONS(6286), + [aux_sym_binary_expression_token6] = ACTIONS(6290), + [anon_sym_QMARK_QMARK] = ACTIONS(6306), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(6284), + [anon_sym_in] = ACTIONS(6284), + [anon_sym_IN] = ACTIONS(6284), + [anon_sym_InstanceOf] = ACTIONS(6286), + [anon_sym_instanceof] = ACTIONS(6286), + [anon_sym_INSTANCEOF] = ACTIONS(6286), + [anon_sym_instanceOf] = ACTIONS(6286), + [sym__automatic_semicolon] = ACTIONS(7223), + [sym__ternary_qmark] = ACTIONS(6308), + [sym__elvis_operator] = ACTIONS(6310), + [sym_logical_or] = ACTIONS(6278), }, [STATE(3740)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, [STATE(3741)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(7228), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3742)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_LBRACK] = ACTIONS(509), + [aux_sym__operator_shaped_name_token1] = ACTIONS(509), + [aux_sym__operator_shaped_name_token2] = ACTIONS(509), + [aux_sym__operator_shaped_name_token3] = ACTIONS(509), + [aux_sym__operator_shaped_name_token4] = ACTIONS(509), + [aux_sym__operator_shaped_name_token5] = ACTIONS(507), + [aux_sym__operator_shaped_name_token6] = ACTIONS(509), + [aux_sym__operator_shaped_name_token7] = ACTIONS(507), + [aux_sym__operator_shaped_name_token8] = ACTIONS(507), + [aux_sym__operator_shaped_name_token9] = ACTIONS(509), + [aux_sym__operator_shaped_name_token10] = ACTIONS(509), + [aux_sym__operator_shaped_name_token11] = ACTIONS(509), + [aux_sym__operator_shaped_name_token12] = ACTIONS(509), + [aux_sym__operator_shaped_name_token13] = ACTIONS(509), + [aux_sym__operator_shaped_name_token14] = ACTIONS(509), + [aux_sym__operator_shaped_name_token15] = ACTIONS(509), + [aux_sym__operator_shaped_name_token16] = ACTIONS(509), + [aux_sym__operator_shaped_name_token17] = ACTIONS(507), + [sym_optional_chain] = ACTIONS(509), + [sym_static_chain] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_GT_GT_GT] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_STAR_STAR] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(509), + [anon_sym_LT_GT] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(509), + [aux_sym_binary_expression_token1] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_GT] = ACTIONS(507), + [aux_sym_binary_expression_token2] = ACTIONS(507), + [aux_sym_binary_expression_token3] = ACTIONS(507), + [aux_sym_binary_expression_token4] = ACTIONS(509), + [aux_sym_binary_expression_token5] = ACTIONS(509), + [aux_sym_binary_expression_token6] = ACTIONS(509), + [anon_sym_QMARK_QMARK] = ACTIONS(509), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(507), + [anon_sym_in] = ACTIONS(507), + [anon_sym_IN] = ACTIONS(507), + [anon_sym_InstanceOf] = ACTIONS(509), + [anon_sym_instanceof] = ACTIONS(509), + [anon_sym_INSTANCEOF] = ACTIONS(509), + [anon_sym_instanceOf] = ACTIONS(509), + [sym__ternary_qmark] = ACTIONS(509), + [sym__elvis_operator] = ACTIONS(509), + [sym_logical_or] = ACTIONS(509), }, [STATE(3743)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(7189), + [sym_arguments] = STATE(2711), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(5524), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3744)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7321), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7236), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3745)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2418), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3746)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7323), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3747)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3748)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7325), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7342), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3749)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7327), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3750)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3751)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7329), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3752)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7331), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3753)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7333), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3754)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7346), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3755)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2460), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7348), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3756)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7335), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3757)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7337), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3758)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7339), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7350), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3759)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(5953), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_RBRACK] = ACTIONS(7341), - [aux_sym__operator_shaped_name_token1] = ACTIONS(5955), - [aux_sym__operator_shaped_name_token2] = ACTIONS(5957), - [aux_sym__operator_shaped_name_token3] = ACTIONS(5959), - [aux_sym__operator_shaped_name_token4] = ACTIONS(5961), - [aux_sym__operator_shaped_name_token5] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token6] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token7] = ACTIONS(5963), - [aux_sym__operator_shaped_name_token8] = ACTIONS(5967), - [aux_sym__operator_shaped_name_token9] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token10] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token11] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token12] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token13] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token14] = ACTIONS(5969), - [aux_sym__operator_shaped_name_token15] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token16] = ACTIONS(5965), - [aux_sym__operator_shaped_name_token17] = ACTIONS(5963), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(5955), - [anon_sym_PIPE_PIPE] = ACTIONS(5957), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_GT_GT_GT] = ACTIONS(5973), - [anon_sym_LT_LT] = ACTIONS(5973), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym_CARET] = ACTIONS(5977), - [anon_sym_PIPE] = ACTIONS(5979), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5953), - [anon_sym_PERCENT] = ACTIONS(5961), - [anon_sym_BSLASH] = ACTIONS(5961), - [anon_sym_STAR_STAR] = ACTIONS(5983), - [anon_sym_LT] = ACTIONS(5963), - [anon_sym_LT_EQ] = ACTIONS(5965), - [anon_sym_EQ_EQ] = ACTIONS(5967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5969), - [anon_sym_LT_GT] = ACTIONS(5969), - [anon_sym_BANG_EQ] = ACTIONS(5967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5969), - [aux_sym_binary_expression_token1] = ACTIONS(5969), - [anon_sym_GT_EQ] = ACTIONS(5965), - [anon_sym_GT] = ACTIONS(5963), - [aux_sym_binary_expression_token2] = ACTIONS(5963), - [aux_sym_binary_expression_token3] = ACTIONS(5963), - [aux_sym_binary_expression_token4] = ACTIONS(5965), - [aux_sym_binary_expression_token5] = ACTIONS(5965), - [aux_sym_binary_expression_token6] = ACTIONS(5969), - [anon_sym_QMARK_QMARK] = ACTIONS(5985), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(5963), - [anon_sym_in] = ACTIONS(5963), - [anon_sym_IN] = ACTIONS(5963), - [anon_sym_InstanceOf] = ACTIONS(5965), - [anon_sym_instanceof] = ACTIONS(5965), - [anon_sym_INSTANCEOF] = ACTIONS(5965), - [anon_sym_instanceOf] = ACTIONS(5965), - [sym__ternary_qmark] = ACTIONS(5987), - [sym__elvis_operator] = ACTIONS(5989), - [sym_logical_or] = ACTIONS(5957), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3760)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2472), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7352), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3761)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3762)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7345), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7354), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3763)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3764)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7349), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3765)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7351), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7356), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3766)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7358), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3767)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(7360), }, [STATE(3768)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(7307), - [sym__elvis_operator] = ACTIONS(7309), - [sym_logical_or] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(7362), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(7364), + [sym__elvis_operator] = ACTIONS(7366), + [sym_logical_or] = ACTIONS(7360), }, [STATE(3769)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3770)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7370), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3771)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(7307), - [sym__elvis_operator] = ACTIONS(7309), - [sym_logical_or] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(7362), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(7364), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(7360), }, [STATE(3772)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7355), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3773)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7357), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3774)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7359), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7374), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3775)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7361), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3776)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7363), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7378), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3777)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7365), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7380), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3778)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7275), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7277), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7279), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7281), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7283), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7287), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7289), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7285), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7283), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_GT_GT_GT] = ACTIONS(7293), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7273), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_BSLASH] = ACTIONS(7281), - [anon_sym_STAR_STAR] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7285), - [anon_sym_EQ_EQ] = ACTIONS(7287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7289), - [anon_sym_LT_GT] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7289), - [aux_sym_binary_expression_token1] = ACTIONS(7289), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [aux_sym_binary_expression_token2] = ACTIONS(7283), - [aux_sym_binary_expression_token3] = ACTIONS(7283), - [aux_sym_binary_expression_token4] = ACTIONS(7285), - [aux_sym_binary_expression_token5] = ACTIONS(7285), - [aux_sym_binary_expression_token6] = ACTIONS(7289), - [anon_sym_QMARK_QMARK] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7283), - [anon_sym_in] = ACTIONS(7283), - [anon_sym_IN] = ACTIONS(7283), - [anon_sym_InstanceOf] = ACTIONS(7285), - [anon_sym_instanceof] = ACTIONS(7285), - [anon_sym_INSTANCEOF] = ACTIONS(7285), - [anon_sym_instanceOf] = ACTIONS(7285), - [sym__ternary_qmark] = ACTIONS(7307), - [sym__elvis_operator] = ACTIONS(7309), - [sym_logical_or] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7382), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3779)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7367), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7384), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3780)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7369), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7386), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3781)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), }, [STATE(3782)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7388), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3783)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2428), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7390), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3784)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(7362), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(7364), + [sym__elvis_operator] = ACTIONS(7366), + [sym_logical_or] = ACTIONS(7360), }, [STATE(3785)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7233), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7235), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7237), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(7371), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(7269), - [sym__elvis_operator] = ACTIONS(7271), - [sym_logical_or] = ACTIONS(7235), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(7362), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(7364), + [sym__elvis_operator] = ACTIONS(7366), + [sym_logical_or] = ACTIONS(7360), }, [STATE(3786)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(7362), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(7364), + [sym__elvis_operator] = ACTIONS(7366), + [sym_logical_or] = ACTIONS(7360), }, [STATE(3787)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7239), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7241), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7245), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7247), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7243), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7241), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_GT_GT_GT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7257), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_BSLASH] = ACTIONS(7239), - [anon_sym_STAR_STAR] = ACTIONS(7261), - [anon_sym_LT] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7243), - [anon_sym_EQ_EQ] = ACTIONS(7245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7247), - [anon_sym_LT_GT] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7245), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7247), - [aux_sym_binary_expression_token1] = ACTIONS(7247), - [anon_sym_GT_EQ] = ACTIONS(7243), - [anon_sym_GT] = ACTIONS(7241), - [aux_sym_binary_expression_token2] = ACTIONS(7241), - [aux_sym_binary_expression_token3] = ACTIONS(7241), - [aux_sym_binary_expression_token4] = ACTIONS(7243), - [aux_sym_binary_expression_token5] = ACTIONS(7243), - [aux_sym_binary_expression_token6] = ACTIONS(7247), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_In] = ACTIONS(7241), - [anon_sym_in] = ACTIONS(7241), - [anon_sym_IN] = ACTIONS(7241), - [anon_sym_InstanceOf] = ACTIONS(7243), - [anon_sym_instanceof] = ACTIONS(7243), - [anon_sym_INSTANCEOF] = ACTIONS(7243), - [anon_sym_instanceOf] = ACTIONS(7243), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3788)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7373), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3789)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_COLON] = ACTIONS(7375), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7187), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7189), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7191), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7193), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7195), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7199), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7201), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7197), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7195), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_GT_GT] = ACTIONS(7203), - [anon_sym_GT_GT_GT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_PIPE] = ACTIONS(7211), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7183), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_BSLASH] = ACTIONS(7193), - [anon_sym_STAR_STAR] = ACTIONS(7215), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7197), - [anon_sym_EQ_EQ] = ACTIONS(7199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7201), - [anon_sym_LT_GT] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7201), - [aux_sym_binary_expression_token1] = ACTIONS(7201), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [aux_sym_binary_expression_token2] = ACTIONS(7195), - [aux_sym_binary_expression_token3] = ACTIONS(7195), - [aux_sym_binary_expression_token4] = ACTIONS(7197), - [aux_sym_binary_expression_token5] = ACTIONS(7197), - [aux_sym_binary_expression_token6] = ACTIONS(7201), - [anon_sym_QMARK_QMARK] = ACTIONS(7217), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7195), - [anon_sym_in] = ACTIONS(7195), - [anon_sym_IN] = ACTIONS(7195), - [anon_sym_InstanceOf] = ACTIONS(7197), - [anon_sym_instanceof] = ACTIONS(7197), - [anon_sym_INSTANCEOF] = ACTIONS(7197), - [anon_sym_instanceOf] = ACTIONS(7197), - [sym__ternary_qmark] = ACTIONS(7219), - [sym__elvis_operator] = ACTIONS(7221), - [sym_logical_or] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3790)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5520), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5532), - [sym_static_chain] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3791)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3792)] = { [anon_sym_DOT] = ACTIONS(5518), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(7415), - [sym_static_chain] = ACTIONS(7168), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3793)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3794)] = { - [anon_sym_DOT] = ACTIONS(5768), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5770), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(6041), - [sym_static_chain] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3795)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3796)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3797)] = { - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(7417), - [sym_static_chain] = ACTIONS(7172), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3798)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3799)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3800)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3801)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3802)] = { - [sym_string] = STATE(4989), - [sym_number] = STATE(4989), - [sym_null] = STATE(4989), - [sym__property_name] = STATE(4989), - [sym__hash_always_eval] = STATE(4989), - [sym_hash_expression] = STATE(4989), - [sym_computed_property_name] = STATE(4989), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(7419), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(7421), - [anon_sym_set] = ACTIONS(7423), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(7425), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3803)] = { - [anon_sym_DOT] = ACTIONS(6758), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(7176), - [sym_static_chain] = ACTIONS(6762), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3804)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3805)] = { - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(2256), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(2384), - [sym_static_chain] = ACTIONS(2260), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3806)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7392), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), }, [STATE(3807)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3808)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3809)] = { - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(6035), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(6359), - [sym_static_chain] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3810)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3811)] = { - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(2744), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(3102), - [sym_static_chain] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3812)] = { - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5739), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5858), - [sym_static_chain] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3813)] = { - [sym_string] = STATE(4998), - [sym_number] = STATE(4998), - [sym_null] = STATE(4998), - [sym__property_name] = STATE(4998), - [sym__hash_always_eval] = STATE(4998), - [sym_hash_expression] = STATE(4998), - [sym_computed_property_name] = STATE(4998), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(7427), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(7429), - [anon_sym_set] = ACTIONS(7431), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(7433), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7394), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), }, [STATE(3814)] = { - [sym_string] = STATE(4870), - [sym_number] = STATE(4870), - [sym_null] = STATE(4870), - [sym__property_name] = STATE(4870), - [sym__hash_always_eval] = STATE(4870), - [sym_hash_expression] = STATE(4870), - [sym_computed_property_name] = STATE(4870), - [sym_identifier] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(7435), - [anon_sym_LPAREN] = ACTIONS(5608), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_Query] = ACTIONS(2145), - [anon_sym_query] = ACTIONS(2145), - [anon_sym_QUERY] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [sym_comment] = ACTIONS(129), - [aux_sym_number_token1] = ACTIONS(2154), - [aux_sym_number_token2] = ACTIONS(5307), - [anon_sym_Null] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_NULL] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(7437), - [anon_sym_set] = ACTIONS(7439), - [anon_sym_POUND] = ACTIONS(2160), - [sym_hash_empty] = ACTIONS(7441), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_QueryExecute] = ACTIONS(2145), - [anon_sym_queryexecute] = ACTIONS(2145), - [anon_sym_QUERYEXECUTE] = ACTIONS(2145), - [anon_sym_queryExecute] = ACTIONS(2145), - [anon_sym_Abstract] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_ABSTRACT] = ACTIONS(2145), - [anon_sym_Component] = ACTIONS(2145), - [anon_sym_component] = ACTIONS(2145), - [anon_sym_COMPONENT] = ACTIONS(2145), - [anon_sym_Debugger] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_DEBUGGER] = ACTIONS(2145), - [anon_sym_Final] = ACTIONS(2145), - [anon_sym_final] = ACTIONS(2145), - [anon_sym_FINAL] = ACTIONS(2145), - [anon_sym_Include] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_INCLUDE] = ACTIONS(2145), - [anon_sym_New] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_NEW] = ACTIONS(2145), - [anon_sym_Package] = ACTIONS(2145), - [anon_sym_package] = ACTIONS(2145), - [anon_sym_PACKAGE] = ACTIONS(2145), - [anon_sym_Private] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_PRIVATE] = ACTIONS(2145), - [anon_sym_Public] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_PUBLIC] = ACTIONS(2145), - [anon_sym_Remote] = ACTIONS(2145), - [anon_sym_remote] = ACTIONS(2145), - [anon_sym_REMOTE] = ACTIONS(2145), - [anon_sym_Static] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_STATIC] = ACTIONS(2145), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3815)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3816)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3817)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token2] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token3] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token4] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token5] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token6] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token7] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token8] = ACTIONS(2430), - [aux_sym__operator_shaped_name_token9] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token10] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token11] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token12] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token13] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token14] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token15] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token16] = ACTIONS(2432), - [aux_sym__operator_shaped_name_token17] = ACTIONS(2430), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(2432), - [anon_sym_PIPE_PIPE] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2430), - [anon_sym_GT_GT_GT] = ACTIONS(2432), - [anon_sym_LT_LT] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_CARET] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2432), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_LT_EQ] = ACTIONS(2432), - [anon_sym_EQ_EQ] = ACTIONS(2430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), - [anon_sym_LT_GT] = ACTIONS(2432), - [anon_sym_BANG_EQ] = ACTIONS(2430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), - [aux_sym_binary_expression_token1] = ACTIONS(2432), - [anon_sym_GT_EQ] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2430), - [aux_sym_binary_expression_token2] = ACTIONS(2430), - [aux_sym_binary_expression_token3] = ACTIONS(2430), - [aux_sym_binary_expression_token4] = ACTIONS(2432), - [aux_sym_binary_expression_token5] = ACTIONS(2432), - [aux_sym_binary_expression_token6] = ACTIONS(2432), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(2430), - [anon_sym_in] = ACTIONS(2430), - [anon_sym_IN] = ACTIONS(2430), - [anon_sym_InstanceOf] = ACTIONS(2432), - [anon_sym_instanceof] = ACTIONS(2432), - [anon_sym_INSTANCEOF] = ACTIONS(2432), - [anon_sym_instanceOf] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3818)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(2432), - [sym__elvis_operator] = ACTIONS(2432), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), }, [STATE(3819)] = { - [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), - [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(7413), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(7278), }, [STATE(3820)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7396), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3821)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7398), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3822)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7400), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3823)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2578), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), + }, + [STATE(3824)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7402), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), + }, + [STATE(3825)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7404), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3826)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7406), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3827)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7408), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3828)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7410), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3829)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5928), + [anon_sym_LBRACK] = ACTIONS(5522), + [anon_sym_RBRACK] = ACTIONS(7412), + [aux_sym__operator_shaped_name_token1] = ACTIONS(5930), + [aux_sym__operator_shaped_name_token2] = ACTIONS(5932), + [aux_sym__operator_shaped_name_token3] = ACTIONS(5934), + [aux_sym__operator_shaped_name_token4] = ACTIONS(5936), + [aux_sym__operator_shaped_name_token5] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token6] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token7] = ACTIONS(5938), + [aux_sym__operator_shaped_name_token8] = ACTIONS(5942), + [aux_sym__operator_shaped_name_token9] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token10] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token11] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token12] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token13] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token14] = ACTIONS(5944), + [aux_sym__operator_shaped_name_token15] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token16] = ACTIONS(5940), + [aux_sym__operator_shaped_name_token17] = ACTIONS(5938), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5930), + [anon_sym_PIPE_PIPE] = ACTIONS(5932), + [anon_sym_GT_GT] = ACTIONS(5946), + [anon_sym_GT_GT_GT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(5954), + [anon_sym_PLUS] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5928), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_BSLASH] = ACTIONS(5936), + [anon_sym_STAR_STAR] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5938), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5944), + [anon_sym_LT_GT] = ACTIONS(5944), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5944), + [aux_sym_binary_expression_token1] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5940), + [anon_sym_GT] = ACTIONS(5938), + [aux_sym_binary_expression_token2] = ACTIONS(5938), + [aux_sym_binary_expression_token3] = ACTIONS(5938), + [aux_sym_binary_expression_token4] = ACTIONS(5940), + [aux_sym_binary_expression_token5] = ACTIONS(5940), + [aux_sym_binary_expression_token6] = ACTIONS(5944), + [anon_sym_QMARK_QMARK] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(5938), + [anon_sym_in] = ACTIONS(5938), + [anon_sym_IN] = ACTIONS(5938), + [anon_sym_InstanceOf] = ACTIONS(5940), + [anon_sym_instanceof] = ACTIONS(5940), + [anon_sym_INSTANCEOF] = ACTIONS(5940), + [anon_sym_instanceOf] = ACTIONS(5940), + [sym__ternary_qmark] = ACTIONS(5962), + [sym__elvis_operator] = ACTIONS(5964), + [sym_logical_or] = ACTIONS(5932), + }, + [STATE(3830)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7414), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), + }, + [STATE(3831)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(7362), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(7364), + [sym__elvis_operator] = ACTIONS(7366), + [sym_logical_or] = ACTIONS(7360), + }, + [STATE(3832)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7416), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3833)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7418), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3834)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(7362), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(7364), + [sym__elvis_operator] = ACTIONS(7366), + [sym_logical_or] = ACTIONS(7360), + }, + [STATE(3835)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7420), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3836)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7422), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3837)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_COLON] = ACTIONS(7424), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7238), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7240), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7242), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7244), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7246), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7250), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7252), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7248), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7246), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7238), + [anon_sym_PIPE_PIPE] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_GT_GT_GT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7258), + [anon_sym_CARET] = ACTIONS(7260), + [anon_sym_PIPE] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7234), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_BSLASH] = ACTIONS(7244), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7252), + [anon_sym_LT_GT] = ACTIONS(7252), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7252), + [aux_sym_binary_expression_token1] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [aux_sym_binary_expression_token2] = ACTIONS(7246), + [aux_sym_binary_expression_token3] = ACTIONS(7246), + [aux_sym_binary_expression_token4] = ACTIONS(7248), + [aux_sym_binary_expression_token5] = ACTIONS(7248), + [aux_sym_binary_expression_token6] = ACTIONS(7252), + [anon_sym_QMARK_QMARK] = ACTIONS(7268), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7246), + [anon_sym_in] = ACTIONS(7246), + [anon_sym_IN] = ACTIONS(7246), + [anon_sym_InstanceOf] = ACTIONS(7248), + [anon_sym_instanceof] = ACTIONS(7248), + [anon_sym_INSTANCEOF] = ACTIONS(7248), + [anon_sym_instanceOf] = ACTIONS(7248), + [sym__ternary_qmark] = ACTIONS(7270), + [sym__elvis_operator] = ACTIONS(7272), + [sym_logical_or] = ACTIONS(7240), + }, + [STATE(3838)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7314), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7360), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7316), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7318), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7320), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7324), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7326), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7322), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7320), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7314), + [anon_sym_PIPE_PIPE] = ACTIONS(7360), + [anon_sym_GT_GT] = ACTIONS(7328), + [anon_sym_GT_GT_GT] = ACTIONS(7330), + [anon_sym_LT_LT] = ACTIONS(7330), + [anon_sym_AMP] = ACTIONS(7332), + [anon_sym_CARET] = ACTIONS(7334), + [anon_sym_PIPE] = ACTIONS(7336), + [anon_sym_PLUS] = ACTIONS(7338), + [anon_sym_DASH] = ACTIONS(7338), + [anon_sym_SLASH] = ACTIONS(7312), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_BSLASH] = ACTIONS(7318), + [anon_sym_STAR_STAR] = ACTIONS(7340), + [anon_sym_LT] = ACTIONS(7320), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7326), + [anon_sym_LT_GT] = ACTIONS(7326), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7326), + [aux_sym_binary_expression_token1] = ACTIONS(7326), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_GT] = ACTIONS(7320), + [aux_sym_binary_expression_token2] = ACTIONS(7320), + [aux_sym_binary_expression_token3] = ACTIONS(7320), + [aux_sym_binary_expression_token4] = ACTIONS(7322), + [aux_sym_binary_expression_token5] = ACTIONS(7322), + [aux_sym_binary_expression_token6] = ACTIONS(7326), + [anon_sym_QMARK_QMARK] = ACTIONS(7362), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7320), + [anon_sym_in] = ACTIONS(7320), + [anon_sym_IN] = ACTIONS(7320), + [anon_sym_InstanceOf] = ACTIONS(7322), + [anon_sym_instanceof] = ACTIONS(7322), + [anon_sym_INSTANCEOF] = ACTIONS(7322), + [anon_sym_instanceOf] = ACTIONS(7322), + [sym__ternary_qmark] = ACTIONS(7364), + [sym__elvis_operator] = ACTIONS(7366), + [sym_logical_or] = ACTIONS(7360), + }, + [STATE(3839)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(7426), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), + }, + [STATE(3840)] = { + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_COLON] = ACTIONS(7428), + [anon_sym_LBRACK] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token1] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token2] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token3] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token4] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token5] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token6] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token7] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token8] = ACTIONS(1718), + [aux_sym__operator_shaped_name_token9] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token10] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token11] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token12] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token13] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token14] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token15] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token16] = ACTIONS(1716), + [aux_sym__operator_shaped_name_token17] = ACTIONS(1718), + [sym_optional_chain] = ACTIONS(1716), + [sym_static_chain] = ACTIONS(1716), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_GT] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [aux_sym_binary_expression_token1] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [aux_sym_binary_expression_token2] = ACTIONS(1718), + [aux_sym_binary_expression_token3] = ACTIONS(1718), + [aux_sym_binary_expression_token4] = ACTIONS(1716), + [aux_sym_binary_expression_token5] = ACTIONS(1716), + [aux_sym_binary_expression_token6] = ACTIONS(1716), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_IN] = ACTIONS(1718), + [anon_sym_InstanceOf] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1716), + [anon_sym_INSTANCEOF] = ACTIONS(1716), + [anon_sym_instanceOf] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), + [sym__elvis_operator] = ACTIONS(1716), + [sym_logical_or] = ACTIONS(1716), + }, + [STATE(3841)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7276), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7278), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7280), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7282), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7284), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7288), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7290), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7286), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7284), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7276), + [anon_sym_PIPE_PIPE] = ACTIONS(7278), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_GT_GT_GT] = ACTIONS(7294), + [anon_sym_LT_LT] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7274), + [anon_sym_PERCENT] = ACTIONS(7282), + [anon_sym_BSLASH] = ACTIONS(7282), + [anon_sym_STAR_STAR] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7284), + [anon_sym_LT_EQ] = ACTIONS(7286), + [anon_sym_EQ_EQ] = ACTIONS(7288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7290), + [anon_sym_LT_GT] = ACTIONS(7290), + [anon_sym_BANG_EQ] = ACTIONS(7288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7290), + [aux_sym_binary_expression_token1] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7286), + [anon_sym_GT] = ACTIONS(7284), + [aux_sym_binary_expression_token2] = ACTIONS(7284), + [aux_sym_binary_expression_token3] = ACTIONS(7284), + [aux_sym_binary_expression_token4] = ACTIONS(7286), + [aux_sym_binary_expression_token5] = ACTIONS(7286), + [aux_sym_binary_expression_token6] = ACTIONS(7290), + [anon_sym_QMARK_QMARK] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_In] = ACTIONS(7284), + [anon_sym_in] = ACTIONS(7284), + [anon_sym_IN] = ACTIONS(7284), + [anon_sym_InstanceOf] = ACTIONS(7286), + [anon_sym_instanceof] = ACTIONS(7286), + [anon_sym_INSTANCEOF] = ACTIONS(7286), + [anon_sym_instanceOf] = ACTIONS(7286), + [sym__ternary_qmark] = ACTIONS(7308), + [sym__elvis_operator] = ACTIONS(7310), + [sym_logical_or] = ACTIONS(7278), + }, + [STATE(3842)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3843)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3844)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3845)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3846)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3847)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3848)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3849)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3850)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3851)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3852)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token5] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token6] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token7] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token8] = ACTIONS(2482), + [aux_sym__operator_shaped_name_token9] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token10] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token11] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token12] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token13] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token14] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token15] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token16] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token17] = ACTIONS(2482), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2484), + [anon_sym_LT_LT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2484), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2484), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2484), + [anon_sym_LT_GT] = ACTIONS(2484), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2484), + [aux_sym_binary_expression_token1] = ACTIONS(2484), + [anon_sym_GT_EQ] = ACTIONS(2484), + [anon_sym_GT] = ACTIONS(2482), + [aux_sym_binary_expression_token2] = ACTIONS(2482), + [aux_sym_binary_expression_token3] = ACTIONS(2482), + [aux_sym_binary_expression_token4] = ACTIONS(2484), + [aux_sym_binary_expression_token5] = ACTIONS(2484), + [aux_sym_binary_expression_token6] = ACTIONS(2484), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_IN] = ACTIONS(2482), + [anon_sym_InstanceOf] = ACTIONS(2484), + [anon_sym_instanceof] = ACTIONS(2484), + [anon_sym_INSTANCEOF] = ACTIONS(2484), + [anon_sym_instanceOf] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3853)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3854)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3855)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(2586), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3856)] = { + [sym_string] = STATE(5107), + [sym_number] = STATE(5107), + [sym_null] = STATE(5107), + [sym__property_name] = STATE(5107), + [sym__hash_always_eval] = STATE(5107), + [sym_hash_expression] = STATE(5107), + [sym_computed_property_name] = STATE(5107), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(7469), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(7471), + [anon_sym_set] = ACTIONS(7473), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(7475), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(3857)] = { + [sym_string] = STATE(4867), + [sym_number] = STATE(4867), + [sym_null] = STATE(4867), + [sym__property_name] = STATE(4867), + [sym__hash_always_eval] = STATE(4867), + [sym_hash_expression] = STATE(4867), + [sym_computed_property_name] = STATE(4867), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(7477), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(7479), + [anon_sym_set] = ACTIONS(7481), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(7483), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(3858)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(2484), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3859)] = { + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5746), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5978), + [sym_static_chain] = ACTIONS(5750), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3860)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3861)] = { + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(7485), + [sym_static_chain] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3862)] = { + [anon_sym_DOT] = ACTIONS(6722), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(7221), + [sym_static_chain] = ACTIONS(6726), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3863)] = { + [anon_sym_DOT] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(2264), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(2354), + [sym_static_chain] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3864)] = { + [anon_sym_DOT] = ACTIONS(6014), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(6018), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(6217), + [sym_static_chain] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3865)] = { + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(2994), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(3110), + [sym_static_chain] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3866)] = { + [anon_sym_DOT] = ACTIONS(5836), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5838), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5882), + [sym_static_chain] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3867)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3868)] = { + [anon_sym_DOT] = ACTIONS(5510), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(7487), + [sym_static_chain] = ACTIONS(7203), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3869)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3870)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), + }, + [STATE(3871)] = { + [anon_sym_DOT] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(5522), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(2484), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5542), + [sym_static_chain] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(2484), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(2484), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(2484), + [sym__elvis_operator] = ACTIONS(2484), + [sym_logical_or] = ACTIONS(2484), + }, + [STATE(3872)] = { + [sym_string] = STATE(5054), + [sym_number] = STATE(5054), + [sym_null] = STATE(5054), + [sym__property_name] = STATE(5054), + [sym__hash_always_eval] = STATE(5054), + [sym_hash_expression] = STATE(5054), + [sym_computed_property_name] = STATE(5054), + [sym_identifier] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(7489), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_Query] = ACTIONS(2141), + [anon_sym_query] = ACTIONS(2141), + [anon_sym_QUERY] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(129), + [aux_sym_number_token1] = ACTIONS(2150), + [aux_sym_number_token2] = ACTIONS(5315), + [anon_sym_Null] = ACTIONS(2152), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_NULL] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(7491), + [anon_sym_set] = ACTIONS(7493), + [anon_sym_POUND] = ACTIONS(2156), + [sym_hash_empty] = ACTIONS(7495), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_QueryExecute] = ACTIONS(2141), + [anon_sym_queryexecute] = ACTIONS(2141), + [anon_sym_QUERYEXECUTE] = ACTIONS(2141), + [anon_sym_queryExecute] = ACTIONS(2141), + [anon_sym_Abstract] = ACTIONS(2141), + [anon_sym_abstract] = ACTIONS(2141), + [anon_sym_ABSTRACT] = ACTIONS(2141), + [anon_sym_Component] = ACTIONS(2141), + [anon_sym_component] = ACTIONS(2141), + [anon_sym_COMPONENT] = ACTIONS(2141), + [anon_sym_Debugger] = ACTIONS(2141), + [anon_sym_debugger] = ACTIONS(2141), + [anon_sym_DEBUGGER] = ACTIONS(2141), + [anon_sym_Final] = ACTIONS(2141), + [anon_sym_final] = ACTIONS(2141), + [anon_sym_FINAL] = ACTIONS(2141), + [anon_sym_Include] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_INCLUDE] = ACTIONS(2141), + [anon_sym_New] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_NEW] = ACTIONS(2141), + [anon_sym_Package] = ACTIONS(2141), + [anon_sym_package] = ACTIONS(2141), + [anon_sym_PACKAGE] = ACTIONS(2141), + [anon_sym_Private] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_PRIVATE] = ACTIONS(2141), + [anon_sym_Public] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_PUBLIC] = ACTIONS(2141), + [anon_sym_Remote] = ACTIONS(2141), + [anon_sym_remote] = ACTIONS(2141), + [anon_sym_REMOTE] = ACTIONS(2141), + [anon_sym_Static] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_STATIC] = ACTIONS(2141), + }, + [STATE(3873)] = { [anon_sym_DOT] = ACTIONS(5510), - [anon_sym_STAR] = ACTIONS(7377), + [anon_sym_STAR] = ACTIONS(7433), [anon_sym_LBRACK] = ACTIONS(5512), - [aux_sym__operator_shaped_name_token1] = ACTIONS(7379), - [aux_sym__operator_shaped_name_token2] = ACTIONS(7381), - [aux_sym__operator_shaped_name_token3] = ACTIONS(7383), - [aux_sym__operator_shaped_name_token4] = ACTIONS(7385), - [aux_sym__operator_shaped_name_token5] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token6] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token7] = ACTIONS(7387), - [aux_sym__operator_shaped_name_token8] = ACTIONS(7391), - [aux_sym__operator_shaped_name_token9] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token10] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token11] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token12] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token13] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token14] = ACTIONS(7393), - [aux_sym__operator_shaped_name_token15] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token16] = ACTIONS(7389), - [aux_sym__operator_shaped_name_token17] = ACTIONS(7387), - [sym_optional_chain] = ACTIONS(5526), + [aux_sym__operator_shaped_name_token1] = ACTIONS(7435), + [aux_sym__operator_shaped_name_token2] = ACTIONS(7459), + [aux_sym__operator_shaped_name_token3] = ACTIONS(7461), + [aux_sym__operator_shaped_name_token4] = ACTIONS(7437), + [aux_sym__operator_shaped_name_token5] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token6] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token7] = ACTIONS(7439), + [aux_sym__operator_shaped_name_token8] = ACTIONS(7443), + [aux_sym__operator_shaped_name_token9] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token10] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token11] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token12] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token13] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token14] = ACTIONS(7445), + [aux_sym__operator_shaped_name_token15] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token16] = ACTIONS(7441), + [aux_sym__operator_shaped_name_token17] = ACTIONS(7439), + [sym_optional_chain] = ACTIONS(5534), [sym_static_chain] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_GT_GT_GT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7399), - [anon_sym_CARET] = ACTIONS(7401), - [anon_sym_PIPE] = ACTIONS(7403), - [anon_sym_PLUS] = ACTIONS(7405), - [anon_sym_DASH] = ACTIONS(7405), - [anon_sym_SLASH] = ACTIONS(7377), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_BSLASH] = ACTIONS(7385), - [anon_sym_STAR_STAR] = ACTIONS(7407), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7393), - [anon_sym_LT_GT] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7393), - [aux_sym_binary_expression_token1] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [aux_sym_binary_expression_token2] = ACTIONS(7387), - [aux_sym_binary_expression_token3] = ACTIONS(7387), - [aux_sym_binary_expression_token4] = ACTIONS(7389), - [aux_sym_binary_expression_token5] = ACTIONS(7389), - [aux_sym_binary_expression_token6] = ACTIONS(7393), - [anon_sym_QMARK_QMARK] = ACTIONS(7409), - [anon_sym_PLUS_PLUS] = ACTIONS(5541), - [anon_sym_DASH_DASH] = ACTIONS(5541), - [sym_comment] = ACTIONS(129), - [anon_sym_In] = ACTIONS(7387), - [anon_sym_in] = ACTIONS(7387), - [anon_sym_IN] = ACTIONS(7387), - [anon_sym_InstanceOf] = ACTIONS(7389), - [anon_sym_instanceof] = ACTIONS(7389), - [anon_sym_INSTANCEOF] = ACTIONS(7389), - [anon_sym_instanceOf] = ACTIONS(7389), - [sym__ternary_qmark] = ACTIONS(7411), - [sym__elvis_operator] = ACTIONS(2468), - [sym_logical_or] = ACTIONS(7381), + [anon_sym_AMP_AMP] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_GT_GT_GT] = ACTIONS(7449), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_PIPE] = ACTIONS(7455), + [anon_sym_PLUS] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7433), + [anon_sym_PERCENT] = ACTIONS(7437), + [anon_sym_BSLASH] = ACTIONS(7437), + [anon_sym_STAR_STAR] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7439), + [anon_sym_LT_EQ] = ACTIONS(7441), + [anon_sym_EQ_EQ] = ACTIONS(7443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7445), + [anon_sym_LT_GT] = ACTIONS(7445), + [anon_sym_BANG_EQ] = ACTIONS(7443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7445), + [aux_sym_binary_expression_token1] = ACTIONS(7445), + [anon_sym_GT_EQ] = ACTIONS(7441), + [anon_sym_GT] = ACTIONS(7439), + [aux_sym_binary_expression_token2] = ACTIONS(7439), + [aux_sym_binary_expression_token3] = ACTIONS(7439), + [aux_sym_binary_expression_token4] = ACTIONS(7441), + [aux_sym_binary_expression_token5] = ACTIONS(7441), + [aux_sym_binary_expression_token6] = ACTIONS(7445), + [anon_sym_QMARK_QMARK] = ACTIONS(7463), + [anon_sym_PLUS_PLUS] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5544), + [sym_comment] = ACTIONS(129), + [anon_sym_In] = ACTIONS(7439), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_IN] = ACTIONS(7439), + [anon_sym_InstanceOf] = ACTIONS(7441), + [anon_sym_instanceof] = ACTIONS(7441), + [anon_sym_INSTANCEOF] = ACTIONS(7441), + [anon_sym_instanceOf] = ACTIONS(7441), + [sym__ternary_qmark] = ACTIONS(7465), + [sym__elvis_operator] = ACTIONS(7467), + [sym_logical_or] = ACTIONS(7459), }, }; @@ -463597,27 +469366,27 @@ static const uint16_t ts_small_parse_table[] = { [0] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7443), 1, + ACTIONS(7497), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4808), 7, + STATE(4897), 7, sym_string, sym_number, sym_null, @@ -463625,7 +469394,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -463671,109 +469440,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [89] = 14, + [89] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, - aux_sym_number_token1, - ACTIONS(2160), 1, - anon_sym_POUND, - ACTIONS(5307), 1, - aux_sym_number_token2, - ACTIONS(5480), 1, - anon_sym_LBRACK, - ACTIONS(7445), 1, - anon_sym_STAR, - ACTIONS(7447), 1, - anon_sym_get, - ACTIONS(7449), 1, - anon_sym_set, - ACTIONS(7451), 1, - sym_hash_empty, - ACTIONS(2156), 3, - anon_sym_Null, - anon_sym_null, - anon_sym_NULL, - STATE(5012), 7, - sym_string, - sym_number, - sym_null, - sym__property_name, - sym__hash_always_eval, - sym_hash_expression, - sym_computed_property_name, - ACTIONS(2145), 43, - anon_sym_let, - anon_sym_Query, - anon_sym_query, - anon_sym_QUERY, - sym_identifier, - anon_sym_export, - anon_sym_QueryExecute, - anon_sym_queryexecute, - anon_sym_QUERYEXECUTE, - anon_sym_queryExecute, - anon_sym_Abstract, - anon_sym_abstract, - anon_sym_ABSTRACT, - anon_sym_Component, - anon_sym_component, - anon_sym_COMPONENT, - anon_sym_Debugger, - anon_sym_debugger, - anon_sym_DEBUGGER, - anon_sym_Final, - anon_sym_final, - anon_sym_FINAL, - anon_sym_Include, - anon_sym_include, - anon_sym_INCLUDE, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - anon_sym_Package, - anon_sym_package, - anon_sym_PACKAGE, - anon_sym_Private, - anon_sym_private, - anon_sym_PRIVATE, - anon_sym_Public, - anon_sym_public, - anon_sym_PUBLIC, - anon_sym_Remote, - anon_sym_remote, - anon_sym_REMOTE, - anon_sym_Static, - anon_sym_static, - anon_sym_STATIC, - [182] = 12, - ACTIONS(129), 1, - sym_comment, ACTIONS(2150), 1, - anon_sym_DQUOTE, - ACTIONS(2152), 1, - anon_sym_SQUOTE, - ACTIONS(2154), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7453), 1, + ACTIONS(7499), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4815), 7, + STATE(4889), 7, sym_string, sym_number, sym_null, @@ -463781,7 +469471,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -463827,30 +469517,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [271] = 12, + [178] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7455), 1, + ACTIONS(7501), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4801), 7, + STATE(4907), 7, sym_string, sym_number, sym_null, @@ -463858,7 +469548,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -463904,30 +469594,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [360] = 12, + [267] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7457), 1, + ACTIONS(7503), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4819), 7, + STATE(4831), 7, sym_string, sym_number, sym_null, @@ -463935,7 +469625,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -463981,30 +469671,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [449] = 12, + [356] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7459), 1, + ACTIONS(7505), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(5022), 7, + STATE(4909), 7, sym_string, sym_number, sym_null, @@ -464012,7 +469702,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464058,30 +469748,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [538] = 12, + [445] = 14, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, - anon_sym_LPAREN, - ACTIONS(7461), 1, + ACTIONS(7507), 1, + anon_sym_STAR, + ACTIONS(7509), 1, + anon_sym_get, + ACTIONS(7511), 1, + anon_sym_set, + ACTIONS(7513), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4900), 7, + STATE(5085), 7, sym_string, sym_number, sym_null, @@ -464089,14 +469783,12 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 43, anon_sym_let, anon_sym_Query, anon_sym_query, anon_sym_QUERY, sym_identifier, - anon_sym_get, - anon_sym_set, anon_sym_export, anon_sym_QueryExecute, anon_sym_queryexecute, @@ -464135,33 +469827,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [627] = 13, + [538] = 13, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(2162), 1, + ACTIONS(2158), 1, sym_hash_empty, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5606), 1, + ACTIONS(5620), 1, anon_sym_STAR, - ACTIONS(2158), 2, + ACTIONS(2154), 2, anon_sym_get, anon_sym_set, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4968), 7, + STATE(5111), 7, sym_string, sym_number, sym_null, @@ -464169,7 +469861,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 43, + ACTIONS(2141), 43, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464213,30 +469905,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [718] = 12, + [629] = 12, ACTIONS(129), 1, sym_comment, + ACTIONS(2146), 1, + anon_sym_DQUOTE, + ACTIONS(2148), 1, + anon_sym_SQUOTE, ACTIONS(2150), 1, + aux_sym_number_token1, + ACTIONS(2156), 1, + anon_sym_POUND, + ACTIONS(5315), 1, + aux_sym_number_token2, + ACTIONS(5488), 1, + anon_sym_LBRACK, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(7515), 1, + sym_hash_empty, + ACTIONS(2152), 3, + anon_sym_Null, + anon_sym_null, + anon_sym_NULL, + STATE(4899), 7, + sym_string, + sym_number, + sym_null, + sym__property_name, + sym__hash_always_eval, + sym_hash_expression, + sym_computed_property_name, + ACTIONS(2141), 45, + anon_sym_let, + anon_sym_Query, + anon_sym_query, + anon_sym_QUERY, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_export, + anon_sym_QueryExecute, + anon_sym_queryexecute, + anon_sym_QUERYEXECUTE, + anon_sym_queryExecute, + anon_sym_Abstract, + anon_sym_abstract, + anon_sym_ABSTRACT, + anon_sym_Component, + anon_sym_component, + anon_sym_COMPONENT, + anon_sym_Debugger, + anon_sym_debugger, + anon_sym_DEBUGGER, + anon_sym_Final, + anon_sym_final, + anon_sym_FINAL, + anon_sym_Include, + anon_sym_include, + anon_sym_INCLUDE, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + anon_sym_Package, + anon_sym_package, + anon_sym_PACKAGE, + anon_sym_Private, + anon_sym_private, + anon_sym_PRIVATE, + anon_sym_Public, + anon_sym_public, + anon_sym_PUBLIC, + anon_sym_Remote, + anon_sym_remote, + anon_sym_REMOTE, + anon_sym_Static, + anon_sym_static, + anon_sym_STATIC, + [718] = 12, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7463), 1, + ACTIONS(7517), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(5026), 7, + STATE(5002), 7, sym_string, sym_number, sym_null, @@ -464244,7 +470013,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464293,27 +470062,27 @@ static const uint16_t ts_small_parse_table[] = { [807] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7465), 1, + ACTIONS(7519), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4803), 7, + STATE(5091), 7, sym_string, sym_number, sym_null, @@ -464321,7 +470090,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464370,27 +470139,27 @@ static const uint16_t ts_small_parse_table[] = { [896] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7467), 1, + ACTIONS(7521), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4826), 7, + STATE(4860), 7, sym_string, sym_number, sym_null, @@ -464398,7 +470167,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464447,27 +470216,27 @@ static const uint16_t ts_small_parse_table[] = { [985] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7469), 1, + ACTIONS(7523), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4806), 7, + STATE(4872), 7, sym_string, sym_number, sym_null, @@ -464475,7 +470244,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464524,27 +470293,27 @@ static const uint16_t ts_small_parse_table[] = { [1074] = 12, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(7471), 1, + ACTIONS(7525), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4908), 7, + STATE(4888), 7, sym_string, sym_number, sym_null, @@ -464552,7 +470321,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464601,25 +470370,25 @@ static const uint16_t ts_small_parse_table[] = { [1163] = 11, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(7473), 1, + ACTIONS(7527), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4899), 7, + STATE(4858), 7, sym_string, sym_number, sym_null, @@ -464627,7 +470396,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464676,25 +470445,25 @@ static const uint16_t ts_small_parse_table[] = { [1249] = 11, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(7475), 1, + ACTIONS(7517), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4992), 7, + STATE(5002), 7, sym_string, sym_number, sym_null, @@ -464702,7 +470471,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464751,25 +470520,25 @@ static const uint16_t ts_small_parse_table[] = { [1335] = 11, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(7477), 1, + ACTIONS(7529), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4813), 7, + STATE(4894), 7, sym_string, sym_number, sym_null, @@ -464777,7 +470546,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464826,25 +470595,25 @@ static const uint16_t ts_small_parse_table[] = { [1421] = 11, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(7479), 1, + ACTIONS(7531), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4805), 7, + STATE(4905), 7, sym_string, sym_number, sym_null, @@ -464852,7 +470621,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464901,25 +470670,25 @@ static const uint16_t ts_small_parse_table[] = { [1507] = 11, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(2162), 1, + ACTIONS(2158), 1, sym_hash_empty, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4968), 7, + STATE(5111), 7, sym_string, sym_number, sym_null, @@ -464927,7 +470696,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -464976,25 +470745,25 @@ static const uint16_t ts_small_parse_table[] = { [1593] = 11, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(7467), 1, + ACTIONS(7533), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4826), 7, + STATE(5077), 7, sym_string, sym_number, sym_null, @@ -465002,7 +470771,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465051,25 +470820,25 @@ static const uint16_t ts_small_parse_table[] = { [1679] = 11, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(2150), 1, aux_sym_number_token1, - ACTIONS(2160), 1, + ACTIONS(2156), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5315), 1, aux_sym_number_token2, - ACTIONS(5480), 1, + ACTIONS(5488), 1, anon_sym_LBRACK, - ACTIONS(7481), 1, + ACTIONS(7535), 1, sym_hash_empty, - ACTIONS(2156), 3, + ACTIONS(2152), 3, anon_sym_Null, anon_sym_null, anon_sym_NULL, - STATE(4985), 7, + STATE(4884), 7, sym_string, sym_number, sym_null, @@ -465077,7 +470846,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hash_always_eval, sym_hash_expression, sym_computed_property_name, - ACTIONS(2145), 45, + ACTIONS(2141), 45, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465126,13 +470895,13 @@ static const uint16_t ts_small_parse_table[] = { [1765] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(7487), 1, + ACTIONS(7541), 1, anon_sym_LPAREN, - ACTIONS(7489), 1, + ACTIONS(7543), 1, aux_sym_nested_identifier_token1, - STATE(3848), 1, + STATE(3902), 1, sym_arguments, - ACTIONS(7485), 7, + ACTIONS(7539), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -465140,7 +470909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(7483), 51, + ACTIONS(7537), 51, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465192,26 +470961,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [1840] = 3, + [1840] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(7493), 9, + ACTIONS(7549), 1, + anon_sym_AT, + STATE(3895), 1, + aux_sym_method_definition_repeat1, + STATE(3899), 1, + sym_decorator, + ACTIONS(7547), 7, anon_sym_STAR, - anon_sym_LPAREN, anon_sym_LBRACK, - aux_sym_nested_identifier_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_AT, + aux_sym_number_token2, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(7491), 51, + ACTIONS(7545), 50, anon_sym_let, anon_sym_Query, anon_sym_query, anon_sym_QUERY, aux_sym_number_token1, - aux_sym_number_token2, sym_identifier, anon_sym_Null, anon_sym_null, @@ -465257,29 +471029,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [1908] = 6, + [1914] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7499), 1, - anon_sym_AT, - STATE(3843), 1, - aux_sym_method_definition_repeat1, - STATE(3847), 1, - sym_decorator, - ACTIONS(7497), 7, + ACTIONS(7554), 9, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACK, + aux_sym_nested_identifier_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - aux_sym_number_token2, + anon_sym_AT, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(7495), 50, + ACTIONS(7552), 51, anon_sym_let, anon_sym_Query, anon_sym_query, anon_sym_QUERY, aux_sym_number_token1, + aux_sym_number_token2, sym_identifier, anon_sym_Null, anon_sym_null, @@ -465328,7 +471097,7 @@ static const uint16_t ts_small_parse_table[] = { [1982] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(2276), 9, + ACTIONS(1955), 9, anon_sym_STAR, anon_sym_LBRACE, anon_sym_LBRACK, @@ -465338,7 +471107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(2274), 50, + ACTIONS(1947), 50, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465392,7 +471161,7 @@ static const uint16_t ts_small_parse_table[] = { [2049] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(2023), 9, + ACTIONS(2250), 9, anon_sym_STAR, anon_sym_LBRACE, anon_sym_LBRACK, @@ -465402,7 +471171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(2015), 50, + ACTIONS(2248), 50, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465456,7 +471225,7 @@ static const uint16_t ts_small_parse_table[] = { [2116] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7485), 8, + ACTIONS(7558), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -465465,7 +471234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(7483), 50, + ACTIONS(7556), 50, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465519,7 +471288,7 @@ static const uint16_t ts_small_parse_table[] = { [2182] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7504), 8, + ACTIONS(7539), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -465528,7 +471297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(7502), 50, + ACTIONS(7537), 50, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465582,7 +471351,7 @@ static const uint16_t ts_small_parse_table[] = { [2248] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7508), 8, + ACTIONS(2213), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -465591,7 +471360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(7506), 50, + ACTIONS(2211), 50, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465645,7 +471414,7 @@ static const uint16_t ts_small_parse_table[] = { [2314] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(2221), 8, + ACTIONS(7562), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -465654,7 +471423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_method_definition_token1, sym_hash_empty, - ACTIONS(2219), 50, + ACTIONS(7560), 50, anon_sym_let, anon_sym_Query, anon_sym_query, @@ -465708,26 +471477,26 @@ static const uint16_t ts_small_parse_table[] = { [2380] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7510), 1, + ACTIONS(7564), 1, sym_identifier, - STATE(4534), 1, + STATE(4559), 1, sym_path, - STATE(3856), 2, + STATE(3906), 2, sym_access_type, aux_sym_function_declaration_repeat1, - ACTIONS(7512), 3, + ACTIONS(7566), 3, anon_sym_Query, anon_sym_query, anon_sym_QUERY, - ACTIONS(7516), 3, + ACTIONS(7570), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - ACTIONS(7518), 3, + ACTIONS(7572), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7514), 21, + ACTIONS(7568), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -465752,26 +471521,26 @@ static const uint16_t ts_small_parse_table[] = { [2432] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7520), 1, + ACTIONS(7574), 1, sym_identifier, - STATE(4510), 1, + STATE(4593), 1, sym_path, - STATE(3850), 2, + STATE(3905), 2, sym_access_type, aux_sym_function_declaration_repeat1, - ACTIONS(7516), 3, + ACTIONS(7570), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - ACTIONS(7522), 3, + ACTIONS(7576), 3, anon_sym_Query, anon_sym_query, anon_sym_QUERY, - ACTIONS(7524), 3, + ACTIONS(7578), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7514), 21, + ACTIONS(7568), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -465796,26 +471565,26 @@ static const uint16_t ts_small_parse_table[] = { [2484] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7526), 1, + ACTIONS(7580), 1, sym_identifier, - STATE(4542), 1, + STATE(4594), 1, sym_path, - STATE(3855), 2, + STATE(3909), 2, sym_access_type, aux_sym_function_declaration_repeat1, - ACTIONS(7516), 3, + ACTIONS(7570), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - ACTIONS(7528), 3, + ACTIONS(7582), 3, anon_sym_Query, anon_sym_query, anon_sym_QUERY, - ACTIONS(7530), 3, + ACTIONS(7584), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7514), 21, + ACTIONS(7568), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -465840,26 +471609,26 @@ static const uint16_t ts_small_parse_table[] = { [2536] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7532), 1, + ACTIONS(7586), 1, sym_identifier, - STATE(4539), 1, + STATE(4467), 1, sym_path, - STATE(3856), 2, + STATE(3909), 2, sym_access_type, aux_sym_function_declaration_repeat1, - ACTIONS(7516), 3, + ACTIONS(7570), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - ACTIONS(7534), 3, + ACTIONS(7588), 3, anon_sym_Query, anon_sym_query, anon_sym_QUERY, - ACTIONS(7536), 3, + ACTIONS(7590), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7514), 21, + ACTIONS(7568), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -465884,26 +471653,26 @@ static const uint16_t ts_small_parse_table[] = { [2588] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7592), 1, sym_identifier, - STATE(4537), 1, + STATE(4597), 1, sym_path, - STATE(3853), 2, + STATE(3908), 2, sym_access_type, aux_sym_function_declaration_repeat1, - ACTIONS(7516), 3, + ACTIONS(7570), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - ACTIONS(7540), 3, + ACTIONS(7594), 3, anon_sym_Query, anon_sym_query, anon_sym_QUERY, - ACTIONS(7542), 3, + ACTIONS(7596), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7514), 21, + ACTIONS(7568), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -465928,26 +471697,26 @@ static const uint16_t ts_small_parse_table[] = { [2640] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7544), 1, + ACTIONS(7598), 1, sym_identifier, - STATE(4545), 1, + STATE(4598), 1, sym_path, - STATE(3856), 2, + STATE(3909), 2, sym_access_type, aux_sym_function_declaration_repeat1, - ACTIONS(7516), 3, + ACTIONS(7570), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - ACTIONS(7546), 3, + ACTIONS(7600), 3, anon_sym_Query, anon_sym_query, anon_sym_QUERY, - ACTIONS(7548), 3, + ACTIONS(7602), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7514), 21, + ACTIONS(7568), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -465972,14 +471741,14 @@ static const uint16_t ts_small_parse_table[] = { [2692] = 5, ACTIONS(129), 1, sym_comment, - STATE(3856), 2, + STATE(3909), 2, sym_access_type, aux_sym_function_declaration_repeat1, - ACTIONS(7555), 3, + ACTIONS(7609), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - ACTIONS(7550), 7, + ACTIONS(7604), 7, anon_sym_Query, anon_sym_query, anon_sym_QUERY, @@ -465987,7 +471756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7552), 21, + ACTIONS(7606), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466012,7 +471781,7 @@ static const uint16_t ts_small_parse_table[] = { [2737] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7558), 31, + ACTIONS(7612), 31, anon_sym_Query, anon_sym_query, anon_sym_QUERY, @@ -466079,24 +471848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [2811] = 4, + [2811] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7560), 1, - anon_sym_DOT, - STATE(3860), 1, - aux_sym_path_repeat1, - ACTIONS(5057), 25, + ACTIONS(525), 1, sym_array_return_suffix, + STATE(3922), 2, + sym_access_type, + aux_sym_function_declaration_repeat2, + ACTIONS(7616), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, anon_sym_Final, anon_sym_final, anon_sym_FINAL, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, anon_sym_Package, anon_sym_package, anon_sym_PACKAGE, @@ -466112,14 +471882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [2848] = 4, + [2850] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7562), 1, + ACTIONS(7618), 1, anon_sym_DOT, - STATE(3860), 1, + STATE(3915), 1, aux_sym_path_repeat1, - ACTIONS(5041), 25, + ACTIONS(5058), 25, sym_array_return_suffix, anon_sym_Abstract, anon_sym_abstract, @@ -466145,19 +471915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [2885] = 5, + [2887] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(525), 1, + ACTIONS(588), 1, sym_array_return_suffix, - STATE(3865), 2, + STATE(3919), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7567), 3, + ACTIONS(7620), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466179,25 +471949,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Static, anon_sym_static, anon_sym_STATIC, - [2924] = 5, + [2926] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(580), 1, + ACTIONS(7622), 1, + anon_sym_DOT, + STATE(3915), 1, + aux_sym_path_repeat1, + ACTIONS(5068), 25, sym_array_return_suffix, - STATE(3874), 2, - sym_access_type, - aux_sym_function_declaration_repeat2, - ACTIONS(7569), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - ACTIONS(7565), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, anon_sym_Final, anon_sym_final, anon_sym_FINAL, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, anon_sym_Package, anon_sym_package, anon_sym_PACKAGE, @@ -466216,16 +471985,16 @@ static const uint16_t ts_small_parse_table[] = { [2963] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(580), 1, sym_array_return_suffix, - STATE(3869), 2, + STATE(3918), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7571), 3, + ACTIONS(7625), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466250,7 +472019,7 @@ static const uint16_t ts_small_parse_table[] = { [3002] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5041), 26, + ACTIONS(5068), 26, anon_sym_DOT, sym_array_return_suffix, anon_sym_Abstract, @@ -466280,14 +472049,14 @@ static const uint16_t ts_small_parse_table[] = { [3034] = 4, ACTIONS(129), 1, sym_comment, - STATE(3866), 2, + STATE(3921), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7573), 3, + ACTIONS(7627), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466312,14 +472081,14 @@ static const uint16_t ts_small_parse_table[] = { [3070] = 4, ACTIONS(129), 1, sym_comment, - STATE(3866), 2, + STATE(3921), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7578), 3, + ACTIONS(7629), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7575), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466344,14 +472113,14 @@ static const uint16_t ts_small_parse_table[] = { [3106] = 4, ACTIONS(129), 1, sym_comment, - STATE(3868), 2, + STATE(3921), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7573), 3, + ACTIONS(7631), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466376,14 +472145,14 @@ static const uint16_t ts_small_parse_table[] = { [3142] = 4, ACTIONS(129), 1, sym_comment, - STATE(3866), 2, + STATE(3921), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7580), 3, + ACTIONS(7636), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7633), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466408,14 +472177,14 @@ static const uint16_t ts_small_parse_table[] = { [3178] = 4, ACTIONS(129), 1, sym_comment, - STATE(3866), 2, + STATE(3921), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7582), 3, + ACTIONS(7638), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466440,14 +472209,14 @@ static const uint16_t ts_small_parse_table[] = { [3214] = 4, ACTIONS(129), 1, sym_comment, - STATE(3866), 2, + STATE(3926), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7584), 3, + ACTIONS(7638), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466472,14 +472241,14 @@ static const uint16_t ts_small_parse_table[] = { [3250] = 4, ACTIONS(129), 1, sym_comment, - STATE(3866), 2, + STATE(3925), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7586), 3, + ACTIONS(7629), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466504,14 +472273,14 @@ static const uint16_t ts_small_parse_table[] = { [3286] = 4, ACTIONS(129), 1, sym_comment, - STATE(3870), 2, + STATE(3921), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7582), 3, + ACTIONS(7640), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466536,14 +472305,14 @@ static const uint16_t ts_small_parse_table[] = { [3322] = 4, ACTIONS(129), 1, sym_comment, - STATE(3871), 2, + STATE(3921), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7588), 3, + ACTIONS(7642), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466568,14 +472337,14 @@ static const uint16_t ts_small_parse_table[] = { [3358] = 4, ACTIONS(129), 1, sym_comment, - STATE(3866), 2, + STATE(3920), 2, sym_access_type, aux_sym_function_declaration_repeat2, - ACTIONS(7588), 3, + ACTIONS(7627), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - ACTIONS(7565), 21, + ACTIONS(7614), 21, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466600,7 +472369,7 @@ static const uint16_t ts_small_parse_table[] = { [3394] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5069), 24, + ACTIONS(5077), 24, anon_sym_Abstract, anon_sym_abstract, anon_sym_ABSTRACT, @@ -466628,7 +472397,7 @@ static const uint16_t ts_small_parse_table[] = { [3424] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7590), 15, + ACTIONS(7644), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466647,7 +472416,7 @@ static const uint16_t ts_small_parse_table[] = { [3445] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7592), 15, + ACTIONS(7646), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466663,29 +472432,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3466] = 2, + [3466] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(7594), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [3487] = 2, + STATE(3959), 1, + aux_sym_try_statement_repeat1, + STATE(3966), 1, + sym_catch_clause, + STATE(4286), 1, + sym_finally_clause, + ACTIONS(7648), 3, + anon_sym_Catch, + anon_sym_catch, + anon_sym_CATCH, + ACTIONS(7650), 3, + anon_sym_Finally, + anon_sym_finally, + anon_sym_FINALLY, + ACTIONS(2170), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [3497] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7596), 15, + ACTIONS(7652), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466701,10 +472475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3508] = 2, + [3518] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7598), 15, + ACTIONS(7654), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466720,10 +472494,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3529] = 2, + [3539] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7600), 15, + ACTIONS(7656), 1, + sym__automatic_semicolon, + ACTIONS(1588), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_Catch, + anon_sym_catch, + anon_sym_CATCH, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_Finally, + anon_sym_finally, + anon_sym_FINALLY, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [3562] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7658), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466739,34 +472533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3550] = 7, - ACTIONS(129), 1, - sym_comment, - STATE(3887), 1, - aux_sym_try_statement_repeat1, - STATE(3911), 1, - sym_catch_clause, - STATE(4177), 1, - sym_finally_clause, - ACTIONS(7602), 3, - anon_sym_Catch, - anon_sym_catch, - anon_sym_CATCH, - ACTIONS(7604), 3, - anon_sym_Finally, - anon_sym_finally, - anon_sym_FINALLY, - ACTIONS(2174), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [3581] = 2, + [3583] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7606), 15, + ACTIONS(7660), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466782,10 +472552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3602] = 2, + [3604] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7608), 15, + ACTIONS(7662), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466801,10 +472571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3623] = 2, + [3625] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7610), 15, + ACTIONS(7664), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466820,10 +472590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3644] = 2, + [3646] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7612), 15, + ACTIONS(7666), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466839,34 +472609,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3665] = 7, + [3667] = 7, ACTIONS(129), 1, sym_comment, - STATE(3904), 1, + STATE(3931), 1, aux_sym_try_statement_repeat1, - STATE(3911), 1, + STATE(3966), 1, sym_catch_clause, - STATE(4222), 1, + STATE(4244), 1, sym_finally_clause, - ACTIONS(7602), 3, + ACTIONS(7648), 3, anon_sym_Catch, anon_sym_catch, anon_sym_CATCH, - ACTIONS(7604), 3, + ACTIONS(7650), 3, anon_sym_Finally, anon_sym_finally, anon_sym_FINALLY, - ACTIONS(2166), 6, + ACTIONS(2162), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [3696] = 2, + [3698] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7614), 15, + ACTIONS(7668), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466882,10 +472652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3717] = 2, + [3719] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7616), 15, + ACTIONS(7670), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466901,10 +472671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3738] = 2, + [3740] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7618), 15, + ACTIONS(7672), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466920,30 +472690,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3759] = 3, + [3761] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5459), 1, - sym__automatic_semicolon, - ACTIONS(1081), 14, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_Catch, - anon_sym_catch, - anon_sym_CATCH, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_Finally, - anon_sym_finally, - anon_sym_FINALLY, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, + ACTIONS(7674), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, [3782] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7620), 15, + ACTIONS(7676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466962,7 +472731,7 @@ static const uint16_t ts_small_parse_table[] = { [3803] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7622), 15, + ACTIONS(7678), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466981,7 +472750,7 @@ static const uint16_t ts_small_parse_table[] = { [3824] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7624), 15, + ACTIONS(7680), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -466997,10 +472766,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3845] = 2, + [3845] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7626), 15, + ACTIONS(5467), 1, + sym__automatic_semicolon, + ACTIONS(1083), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_Catch, + anon_sym_catch, + anon_sym_CATCH, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_Finally, + anon_sym_finally, + anon_sym_FINALLY, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [3868] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7682), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -467016,10 +472805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3866] = 2, + [3889] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7628), 15, + ACTIONS(7684), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -467035,10 +472824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3887] = 2, + [3910] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7630), 15, + ACTIONS(7686), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -467054,10 +472843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3908] = 2, + [3931] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7632), 15, + ACTIONS(7688), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -467073,10 +472862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3929] = 2, + [3952] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7634), 15, + ACTIONS(7690), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -467092,10 +472881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3950] = 2, + [3973] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7636), 15, + ACTIONS(7692), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -467111,10 +472900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3971] = 2, + [3994] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7638), 15, + ACTIONS(7694), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -467130,10 +472919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [3992] = 2, + [4015] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7640), 15, + ACTIONS(7696), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -467149,12 +472938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [4013] = 3, + [4036] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7642), 1, - sym__automatic_semicolon, - ACTIONS(1684), 14, + ACTIONS(1596), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_Catch, @@ -467169,31 +472956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_While, anon_sym_while, anon_sym_WHILE, - [4036] = 5, - ACTIONS(129), 1, - sym_comment, - STATE(3904), 1, - aux_sym_try_statement_repeat1, - STATE(3911), 1, - sym_catch_clause, - ACTIONS(7644), 3, - anon_sym_Catch, - anon_sym_catch, - anon_sym_CATCH, - ACTIONS(2178), 9, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_Finally, - anon_sym_finally, - anon_sym_FINALLY, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [4062] = 2, + [4056] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(1670), 14, + ACTIONS(1588), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_Catch, @@ -467208,15 +472974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_While, anon_sym_while, anon_sym_WHILE, - [4082] = 2, + [4076] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1684), 14, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(3959), 1, + aux_sym_try_statement_repeat1, + STATE(3966), 1, + sym_catch_clause, + ACTIONS(7698), 3, anon_sym_Catch, anon_sym_catch, anon_sym_CATCH, + ACTIONS(2174), 9, anon_sym_Else, anon_sym_else, anon_sym_ELSE, @@ -467229,7 +472998,7 @@ static const uint16_t ts_small_parse_table[] = { [4102] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2195), 12, + ACTIONS(2187), 12, anon_sym_Catch, anon_sym_catch, anon_sym_CATCH, @@ -467245,7 +473014,7 @@ static const uint16_t ts_small_parse_table[] = { [4120] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2187), 12, + ACTIONS(2199), 12, anon_sym_Catch, anon_sym_catch, anon_sym_CATCH, @@ -467261,7 +473030,7 @@ static const uint16_t ts_small_parse_table[] = { [4138] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2191), 12, + ACTIONS(2207), 12, anon_sym_Catch, anon_sym_catch, anon_sym_CATCH, @@ -467277,7 +473046,7 @@ static const uint16_t ts_small_parse_table[] = { [4156] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2207), 12, + ACTIONS(2217), 12, anon_sym_Catch, anon_sym_catch, anon_sym_CATCH, @@ -467293,7 +473062,7 @@ static const uint16_t ts_small_parse_table[] = { [4174] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2215), 12, + ACTIONS(2183), 12, anon_sym_Catch, anon_sym_catch, anon_sym_CATCH, @@ -467309,7 +473078,7 @@ static const uint16_t ts_small_parse_table[] = { [4192] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2199), 12, + ACTIONS(2191), 12, anon_sym_Catch, anon_sym_catch, anon_sym_CATCH, @@ -467341,7 +473110,7 @@ static const uint16_t ts_small_parse_table[] = { [4228] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7647), 11, + ACTIONS(7701), 11, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -467353,48 +473122,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Of, anon_sym_of, anon_sym_OF, - [4245] = 9, + [4245] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, - anon_sym_DQUOTE, - ACTIONS(2152), 1, - anon_sym_SQUOTE, - ACTIONS(7649), 1, - sym_identifier, - ACTIONS(7651), 1, - anon_sym_LBRACK, - STATE(3937), 1, - sym_nested_identifier, - STATE(4035), 1, - sym_string, - STATE(5304), 2, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(7653), 3, - anon_sym_Var, - anon_sym_var, - anon_sym_VAR, - [4276] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2278), 5, + ACTIONS(2228), 5, anon_sym_as, sym_identifier, anon_sym_Var, anon_sym_var, anon_sym_VAR, - ACTIONS(2280), 6, + ACTIONS(2230), 6, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACK, - [4295] = 2, + [4264] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7655), 11, + ACTIONS(7703), 11, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -467406,544 +473153,528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Of, anon_sym_of, anon_sym_OF, - [4312] = 9, + [4281] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2236), 5, + anon_sym_as, + sym_identifier, + anon_sym_Var, + anon_sym_var, + anon_sym_VAR, + ACTIONS(2238), 6, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + [4300] = 9, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(7651), 1, + ACTIONS(7705), 1, + sym_identifier, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + STATE(3984), 1, + sym_nested_identifier, + STATE(4086), 1, + sym_string, + STATE(5212), 2, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(7709), 3, + anon_sym_Var, + anon_sym_var, + anon_sym_VAR, + [4331] = 9, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_DQUOTE, + ACTIONS(2148), 1, + anon_sym_SQUOTE, + ACTIONS(7707), 1, + anon_sym_LBRACK, + ACTIONS(7711), 1, sym_identifier, - STATE(3929), 1, + STATE(3987), 1, sym_nested_identifier, - STATE(4011), 1, + STATE(4035), 1, sym_string, - STATE(5112), 2, + STATE(5229), 2, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(7659), 3, + ACTIONS(7713), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - [4343] = 5, + [4362] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7661), 1, + ACTIONS(7715), 1, anon_sym_EQ, - STATE(3953), 1, + STATE(4001), 1, sym__initializer, - ACTIONS(5120), 3, + ACTIONS(5126), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(5127), 6, + ACTIONS(5133), 6, anon_sym_In, anon_sym_in, anon_sym_IN, anon_sym_Of, anon_sym_of, anon_sym_OF, - [4366] = 9, + [4385] = 9, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2146), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(7651), 1, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(7663), 1, + ACTIONS(7717), 1, sym_identifier, - STATE(3944), 1, + STATE(3976), 1, sym_nested_identifier, - STATE(4044), 1, + STATE(4096), 1, sym_string, - STATE(5173), 2, + STATE(5328), 2, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(7665), 3, + ACTIONS(7719), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - [4397] = 3, + [4416] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(2300), 5, - anon_sym_as, + ACTIONS(7721), 1, + anon_sym_DOT, + ACTIONS(7723), 1, + anon_sym_COMMA, + ACTIONS(7725), 1, + anon_sym_from, + STATE(4148), 1, + aux_sym_import_path_repeat1, + STATE(4900), 1, + sym_import_attribute, + ACTIONS(7727), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [4444] = 8, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7707), 1, + anon_sym_LBRACK, + ACTIONS(7731), 1, sym_identifier, + ACTIONS(7733), 1, + anon_sym_RPAREN, + ACTIONS(7735), 1, + aux_sym_nested_identifier_token1, + STATE(4980), 1, + sym_nested_identifier, + STATE(5332), 2, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(7737), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - ACTIONS(2302), 6, + [4472] = 8, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7721), 1, + anon_sym_DOT, + ACTIONS(7723), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - [4416] = 5, + ACTIONS(7725), 1, + anon_sym_from, + STATE(4148), 1, + aux_sym_import_path_repeat1, + STATE(4870), 1, + sym_import_attribute, + ACTIONS(7739), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [4500] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7667), 1, - anon_sym_RBRACE, - ACTIONS(7669), 3, - anon_sym_Case, - anon_sym_case, - anon_sym_CASE, - ACTIONS(7671), 3, - anon_sym_Default, - anon_sym_default, - anon_sym_DEFAULT, - STATE(3926), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [4438] = 5, + ACTIONS(7721), 1, + anon_sym_DOT, + ACTIONS(7723), 1, + anon_sym_COMMA, + ACTIONS(7725), 1, + anon_sym_from, + STATE(4148), 1, + aux_sym_import_path_repeat1, + STATE(4902), 1, + sym_import_attribute, + ACTIONS(7741), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [4528] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7673), 1, - anon_sym_RBRACE, - ACTIONS(7669), 3, - anon_sym_Case, - anon_sym_case, - anon_sym_CASE, - ACTIONS(7671), 3, - anon_sym_Default, - anon_sym_default, - anon_sym_DEFAULT, - STATE(3941), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [4460] = 9, + ACTIONS(7707), 1, + anon_sym_LBRACK, + ACTIONS(7731), 1, + sym_identifier, + ACTIONS(7733), 1, + anon_sym_RPAREN, + ACTIONS(7743), 1, + aux_sym_nested_identifier_token1, + STATE(4980), 1, + sym_nested_identifier, + STATE(5332), 2, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(7737), 3, + anon_sym_Var, + anon_sym_var, + anon_sym_VAR, + [4556] = 9, ACTIONS(129), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(7745), 1, sym_identifier, - ACTIONS(7677), 1, + ACTIONS(7747), 1, anon_sym_STAR, - ACTIONS(7679), 1, + ACTIONS(7749), 1, anon_sym_LBRACE, - ACTIONS(7681), 1, + ACTIONS(7751), 1, anon_sym_DQUOTE, - ACTIONS(7683), 1, + ACTIONS(7753), 1, anon_sym_SQUOTE, - STATE(4817), 1, + STATE(5000), 1, sym_import_clause, - STATE(4141), 2, + STATE(4266), 2, sym_import_path, sym_string, - STATE(5217), 2, + STATE(5198), 2, sym_namespace_import, sym_named_imports, - [4490] = 5, + [4586] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7685), 1, + ACTIONS(7755), 1, anon_sym_RBRACE, - ACTIONS(7669), 3, + ACTIONS(7757), 3, anon_sym_Case, anon_sym_case, anon_sym_CASE, - ACTIONS(7671), 3, + ACTIONS(7760), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - STATE(3941), 3, + STATE(3981), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [4512] = 5, + [4608] = 9, ACTIONS(129), 1, sym_comment, - ACTIONS(7687), 1, - anon_sym_RBRACE, - ACTIONS(7669), 3, - anon_sym_Case, - anon_sym_case, - anon_sym_CASE, - ACTIONS(7671), 3, - anon_sym_Default, - anon_sym_default, - anon_sym_DEFAULT, - STATE(3941), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [4534] = 6, + ACTIONS(7763), 1, + sym_identifier, + ACTIONS(7766), 1, + anon_sym_DOT, + ACTIONS(7771), 1, + anon_sym_COLON, + ACTIONS(7773), 1, + anon_sym_EQ, + ACTIONS(7775), 1, + sym_tag_linefeed, + STATE(4791), 1, + aux_sym_path_repeat1, + ACTIONS(7768), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(4257), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [4638] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7689), 1, - sym_identifier, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(7693), 1, + ACTIONS(7703), 10, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_EQ, - STATE(1249), 1, - sym_formal_parameters, - ACTIONS(854), 6, anon_sym_In, anon_sym_in, anon_sym_IN, anon_sym_Of, anon_sym_of, anon_sym_OF, - [4558] = 8, + [4654] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(7695), 1, - sym_identifier, - ACTIONS(7697), 1, - anon_sym_RPAREN, - ACTIONS(7699), 1, + ACTIONS(7735), 1, aux_sym_nested_identifier_token1, - STATE(5029), 1, - sym_nested_identifier, - STATE(5151), 2, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(7701), 3, - anon_sym_Var, - anon_sym_var, - anon_sym_VAR, - [4586] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7651), 1, - anon_sym_LBRACK, - ACTIONS(7695), 1, + ACTIONS(7778), 1, sym_identifier, - ACTIONS(7697), 1, + ACTIONS(7780), 1, anon_sym_RPAREN, - ACTIONS(7703), 1, - aux_sym_nested_identifier_token1, - STATE(5029), 1, + STATE(5040), 1, sym_nested_identifier, - STATE(5151), 2, + STATE(5216), 2, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(7701), 3, + ACTIONS(7782), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - [4614] = 8, + [4682] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7705), 1, - anon_sym_DOT, - ACTIONS(7707), 1, - anon_sym_COMMA, - ACTIONS(7709), 1, - anon_sym_from, - STATE(4131), 1, - aux_sym_import_path_repeat1, - STATE(4976), 1, - sym_import_attribute, - ACTIONS(7711), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [4642] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7705), 1, - anon_sym_DOT, - ACTIONS(7707), 1, - anon_sym_COMMA, - ACTIONS(7709), 1, - anon_sym_from, - STATE(4131), 1, - aux_sym_import_path_repeat1, - STATE(5058), 1, - sym_import_attribute, - ACTIONS(7715), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [4670] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7717), 1, + ACTIONS(7784), 1, anon_sym_RBRACE, - ACTIONS(7669), 3, + ACTIONS(7786), 3, anon_sym_Case, anon_sym_case, anon_sym_CASE, - ACTIONS(7671), 3, + ACTIONS(7788), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - STATE(3923), 3, + STATE(3992), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [4692] = 8, + [4704] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(7699), 1, + ACTIONS(7743), 1, aux_sym_nested_identifier_token1, - ACTIONS(7719), 1, + ACTIONS(7790), 1, sym_identifier, - ACTIONS(7721), 1, + ACTIONS(7792), 1, anon_sym_RPAREN, - STATE(4851), 1, + STATE(4891), 1, sym_nested_identifier, - STATE(5249), 2, + STATE(5340), 2, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(7723), 3, + ACTIONS(7794), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - [4720] = 8, + [4732] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7705), 1, - anon_sym_DOT, ACTIONS(7707), 1, - anon_sym_COMMA, - ACTIONS(7709), 1, - anon_sym_from, - STATE(4131), 1, - aux_sym_import_path_repeat1, - STATE(5006), 1, - sym_import_attribute, - ACTIONS(7725), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [4748] = 9, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7727), 1, - sym_identifier, - ACTIONS(7730), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_COLON, - ACTIONS(7737), 1, - anon_sym_EQ, - ACTIONS(7739), 1, - sym_tag_linefeed, - STATE(4565), 1, - aux_sym_path_repeat1, - ACTIONS(7732), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(4231), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [4778] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7651), 1, anon_sym_LBRACK, - ACTIONS(7699), 1, + ACTIONS(7735), 1, aux_sym_nested_identifier_token1, - ACTIONS(7742), 1, + ACTIONS(7790), 1, sym_identifier, - ACTIONS(7744), 1, + ACTIONS(7792), 1, anon_sym_RPAREN, - STATE(4902), 1, + STATE(4891), 1, sym_nested_identifier, - STATE(5307), 2, + STATE(5340), 2, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(7746), 3, + ACTIONS(7794), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - [4806] = 8, + [4760] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(7703), 1, + ACTIONS(7743), 1, aux_sym_nested_identifier_token1, - ACTIONS(7742), 1, + ACTIONS(7778), 1, sym_identifier, - ACTIONS(7744), 1, + ACTIONS(7780), 1, anon_sym_RPAREN, - STATE(4902), 1, + STATE(5040), 1, sym_nested_identifier, - STATE(5307), 2, + STATE(5216), 2, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(7746), 3, + ACTIONS(7782), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - [4834] = 5, + [4788] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7796), 1, anon_sym_RBRACE, - ACTIONS(7669), 3, + ACTIONS(7786), 3, anon_sym_Case, anon_sym_case, anon_sym_CASE, - ACTIONS(7671), 3, + ACTIONS(7788), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - STATE(3925), 3, + STATE(3998), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [4856] = 9, + [4810] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7677), 1, - anon_sym_STAR, - ACTIONS(7679), 1, - anon_sym_LBRACE, - ACTIONS(7681), 1, - anon_sym_DQUOTE, - ACTIONS(7683), 1, - anon_sym_SQUOTE, - ACTIONS(7750), 1, - sym_identifier, - STATE(4816), 1, - sym_import_clause, - STATE(4175), 2, - sym_import_path, - sym_string, - STATE(5217), 2, - sym_namespace_import, - sym_named_imports, - [4886] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7655), 10, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_In, - anon_sym_in, - anon_sym_IN, - anon_sym_Of, - anon_sym_of, - anon_sym_OF, - [4902] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7752), 1, + ACTIONS(7798), 1, anon_sym_RBRACE, - ACTIONS(7754), 3, + ACTIONS(7786), 3, anon_sym_Case, anon_sym_case, anon_sym_CASE, - ACTIONS(7757), 3, + ACTIONS(7788), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - STATE(3941), 3, + STATE(3981), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [4924] = 8, + [4832] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7705), 1, + ACTIONS(7721), 1, anon_sym_DOT, - ACTIONS(7707), 1, + ACTIONS(7723), 1, anon_sym_COMMA, - ACTIONS(7709), 1, + ACTIONS(7725), 1, anon_sym_from, - STATE(4131), 1, + STATE(4148), 1, aux_sym_import_path_repeat1, - STATE(4807), 1, + STATE(5021), 1, sym_import_attribute, - ACTIONS(7760), 2, + ACTIONS(7800), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(7713), 3, + ACTIONS(7729), 3, anon_sym_With, anon_sym_with, anon_sym_WITH, - [4952] = 9, + [4860] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7802), 1, + anon_sym_RBRACE, + ACTIONS(7786), 3, + anon_sym_Case, + anon_sym_case, + anon_sym_CASE, + ACTIONS(7788), 3, + anon_sym_Default, + anon_sym_default, + anon_sym_DEFAULT, + STATE(3981), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [4882] = 9, ACTIONS(129), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(7747), 1, anon_sym_STAR, - ACTIONS(7679), 1, + ACTIONS(7749), 1, anon_sym_LBRACE, - ACTIONS(7681), 1, + ACTIONS(7751), 1, anon_sym_DQUOTE, - ACTIONS(7683), 1, + ACTIONS(7753), 1, anon_sym_SQUOTE, - ACTIONS(7762), 1, + ACTIONS(7804), 1, sym_identifier, - STATE(4927), 1, + STATE(4962), 1, sym_import_clause, - STATE(4138), 2, + STATE(4301), 2, sym_import_path, sym_string, - STATE(5217), 2, + STATE(5198), 2, sym_namespace_import, sym_named_imports, - [4982] = 8, + [4912] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, - anon_sym_LBRACK, - ACTIONS(7703), 1, - aux_sym_nested_identifier_token1, - ACTIONS(7719), 1, + ACTIONS(7806), 1, + anon_sym_RBRACE, + ACTIONS(7786), 3, + anon_sym_Case, + anon_sym_case, + anon_sym_CASE, + ACTIONS(7788), 3, + anon_sym_Default, + anon_sym_default, + anon_sym_DEFAULT, + STATE(3990), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [4934] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7808), 1, sym_identifier, - ACTIONS(7721), 1, - anon_sym_RPAREN, - STATE(4851), 1, - sym_nested_identifier, - STATE(5249), 2, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(7723), 3, - anon_sym_Var, - anon_sym_var, - anon_sym_VAR, - [5010] = 9, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(7812), 1, + anon_sym_EQ, + STATE(1263), 1, + sym_formal_parameters, + ACTIONS(866), 6, + anon_sym_In, + anon_sym_in, + anon_sym_IN, + anon_sym_Of, + anon_sym_of, + anon_sym_OF, + [4958] = 9, ACTIONS(129), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(7747), 1, anon_sym_STAR, - ACTIONS(7679), 1, + ACTIONS(7749), 1, anon_sym_LBRACE, - ACTIONS(7681), 1, + ACTIONS(7751), 1, anon_sym_DQUOTE, - ACTIONS(7683), 1, + ACTIONS(7753), 1, anon_sym_SQUOTE, - ACTIONS(7764), 1, + ACTIONS(7814), 1, sym_identifier, - STATE(4879), 1, + STATE(4988), 1, sym_import_clause, - STATE(4250), 2, + STATE(4357), 2, sym_import_path, sym_string, - STATE(5217), 2, + STATE(5198), 2, sym_namespace_import, sym_named_imports, - [5040] = 2, + [4988] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7647), 10, + ACTIONS(7701), 10, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -467954,439 +473685,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_Of, anon_sym_of, anon_sym_OF, + [5004] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7816), 1, + anon_sym_RBRACE, + ACTIONS(7786), 3, + anon_sym_Case, + anon_sym_case, + anon_sym_CASE, + ACTIONS(7788), 3, + anon_sym_Default, + anon_sym_default, + anon_sym_DEFAULT, + STATE(3981), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [5026] = 9, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7747), 1, + anon_sym_STAR, + ACTIONS(7749), 1, + anon_sym_LBRACE, + ACTIONS(7751), 1, + anon_sym_DQUOTE, + ACTIONS(7753), 1, + anon_sym_SQUOTE, + ACTIONS(7818), 1, + sym_identifier, + STATE(4865), 1, + sym_import_clause, + STATE(4370), 2, + sym_import_path, + sym_string, + STATE(5198), 2, + sym_namespace_import, + sym_named_imports, [5056] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(7822), 1, anon_sym_In, - ACTIONS(7770), 1, + ACTIONS(7824), 1, anon_sym_in, - ACTIONS(7772), 1, + ACTIONS(7826), 1, anon_sym_IN, - ACTIONS(7774), 1, + ACTIONS(7828), 1, anon_sym_Of, - ACTIONS(7776), 1, + ACTIONS(7830), 1, anon_sym_of, - ACTIONS(7778), 1, + ACTIONS(7832), 1, anon_sym_OF, - ACTIONS(7766), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [5083] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7780), 1, + ACTIONS(7836), 1, anon_sym_In, - ACTIONS(7782), 1, + ACTIONS(7838), 1, anon_sym_in, - ACTIONS(7784), 1, + ACTIONS(7840), 1, anon_sym_IN, - ACTIONS(7786), 1, + ACTIONS(7842), 1, anon_sym_Of, - ACTIONS(7788), 1, + ACTIONS(7844), 1, anon_sym_of, - ACTIONS(7790), 1, + ACTIONS(7846), 1, anon_sym_OF, - ACTIONS(7766), 3, + ACTIONS(7834), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [5110] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7792), 1, + ACTIONS(7848), 1, anon_sym_In, - ACTIONS(7794), 1, + ACTIONS(7850), 1, anon_sym_in, - ACTIONS(7796), 1, + ACTIONS(7852), 1, anon_sym_IN, - ACTIONS(7798), 1, + ACTIONS(7854), 1, anon_sym_Of, - ACTIONS(7800), 1, + ACTIONS(7856), 1, anon_sym_of, - ACTIONS(7802), 1, + ACTIONS(7858), 1, anon_sym_OF, - ACTIONS(7766), 3, + ACTIONS(7834), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [5137] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7806), 1, + ACTIONS(7860), 1, anon_sym_In, - ACTIONS(7808), 1, + ACTIONS(7862), 1, anon_sym_in, - ACTIONS(7810), 1, + ACTIONS(7864), 1, anon_sym_IN, - ACTIONS(7812), 1, + ACTIONS(7866), 1, anon_sym_Of, - ACTIONS(7814), 1, + ACTIONS(7868), 1, anon_sym_of, - ACTIONS(7816), 1, + ACTIONS(7870), 1, anon_sym_OF, - ACTIONS(7804), 3, + ACTIONS(7834), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [5164] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7818), 1, + ACTIONS(7872), 1, anon_sym_In, - ACTIONS(7820), 1, + ACTIONS(7874), 1, anon_sym_in, - ACTIONS(7822), 1, + ACTIONS(7876), 1, anon_sym_IN, - ACTIONS(7824), 1, + ACTIONS(7878), 1, anon_sym_Of, - ACTIONS(7826), 1, + ACTIONS(7880), 1, anon_sym_of, - ACTIONS(7828), 1, + ACTIONS(7882), 1, anon_sym_OF, - ACTIONS(7766), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [5191] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7830), 1, + ACTIONS(7884), 1, anon_sym_In, - ACTIONS(7832), 1, + ACTIONS(7886), 1, anon_sym_in, - ACTIONS(7834), 1, + ACTIONS(7888), 1, anon_sym_IN, - ACTIONS(7836), 1, + ACTIONS(7890), 1, anon_sym_Of, - ACTIONS(7838), 1, + ACTIONS(7892), 1, anon_sym_of, - ACTIONS(7840), 1, + ACTIONS(7894), 1, anon_sym_OF, - ACTIONS(7804), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [5218] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(7842), 1, + ACTIONS(7896), 1, anon_sym_In, - ACTIONS(7844), 1, + ACTIONS(7898), 1, anon_sym_in, - ACTIONS(7846), 1, + ACTIONS(7900), 1, anon_sym_IN, - ACTIONS(7848), 1, + ACTIONS(7902), 1, anon_sym_Of, - ACTIONS(7850), 1, + ACTIONS(7904), 1, anon_sym_of, - ACTIONS(7852), 1, + ACTIONS(7906), 1, anon_sym_OF, - ACTIONS(7804), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [5245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7854), 1, + ACTIONS(7908), 1, anon_sym_DQUOTE, - ACTIONS(7856), 1, + ACTIONS(7910), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7858), 2, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4004), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, [5267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_POUND, - ACTIONS(7862), 1, - anon_sym_DQUOTE, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7866), 2, - sym_unescaped_double_string_fragment, - sym_hash_empty, - STATE(4036), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat1, - [5289] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7862), 1, + ACTIONS(7916), 1, anon_sym_SQUOTE, - ACTIONS(7868), 1, + ACTIONS(7918), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7870), 2, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [5311] = 6, + [5289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7874), 1, + ACTIONS(7924), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(7926), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7928), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4012), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [5333] = 8, - ACTIONS(129), 1, + [5311] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2031), 1, - anon_sym_COMMA, - ACTIONS(2033), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - STATE(4469), 1, - aux_sym_formal_parameters_repeat1, - STATE(4097), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [5359] = 6, + ACTIONS(7922), 1, + anon_sym_POUND, + ACTIONS(7924), 1, + anon_sym_SQUOTE, + ACTIONS(7930), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7932), 2, + sym_unescaped_single_string_fragment, + sym_hash_empty, + STATE(4013), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat2, + [5333] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5520), 1, anon_sym_LPAREN, - ACTIONS(7882), 1, + ACTIONS(7936), 1, anon_sym_LBRACK, - ACTIONS(7884), 1, + ACTIONS(7938), 1, sym_private_property_identifier, - STATE(2471), 1, + STATE(2515), 1, sym_arguments, - ACTIONS(7880), 4, + ACTIONS(7934), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [5381] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, - anon_sym_POUND, - ACTIONS(7874), 1, - anon_sym_SQUOTE, - ACTIONS(7870), 2, - sym_unescaped_single_string_fragment, - sym_hash_empty, - STATE(3982), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat2, - [5403] = 6, + [5355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7910), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7886), 1, + ACTIONS(7940), 1, anon_sym_DQUOTE, - ACTIONS(7888), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7890), 2, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(3971), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [5425] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2037), 1, - anon_sym_COMMA, - ACTIONS(2039), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - STATE(4501), 1, - aux_sym_formal_parameters_repeat1, - STATE(4088), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [5451] = 6, + [5377] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7886), 1, + ACTIONS(7940), 1, anon_sym_SQUOTE, - ACTIONS(7892), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7894), 2, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3985), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [5473] = 8, + [5399] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2059), 1, + ACTIONS(2061), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(2063), 1, + anon_sym_COMMA, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(7878), 1, + ACTIONS(7944), 1, anon_sym_EQ, - ACTIONS(7896), 1, - anon_sym_COMMA, - STATE(4448), 1, + STATE(4515), 1, aux_sym_formal_parameters_repeat1, - STATE(4109), 2, + STATE(4108), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [5499] = 6, + [5425] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(6007), 1, + ACTIONS(2262), 1, anon_sym_LPAREN, - ACTIONS(7900), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, + ACTIONS(7938), 1, sym_private_property_identifier, - STATE(2915), 1, + ACTIONS(7946), 1, + anon_sym_LBRACK, + STATE(452), 1, sym_arguments, - ACTIONS(7898), 4, + ACTIONS(7934), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [5521] = 6, + [5447] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LPAREN, - ACTIONS(7882), 1, - anon_sym_LBRACK, - ACTIONS(7906), 1, - sym_private_property_identifier, - STATE(2471), 1, - sym_arguments, - ACTIONS(7904), 4, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2039), 1, + anon_sym_COMMA, + ACTIONS(2041), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [5543] = 6, + ACTIONS(7944), 1, + anon_sym_EQ, + STATE(4494), 1, + aux_sym_formal_parameters_repeat1, + STATE(4157), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [5473] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(5498), 1, - anon_sym_LPAREN, - ACTIONS(7910), 1, - anon_sym_LBRACK, - ACTIONS(7912), 1, - sym_private_property_identifier, - STATE(2448), 1, - sym_arguments, - ACTIONS(7908), 4, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2035), 1, + anon_sym_RPAREN, + ACTIONS(2037), 1, + anon_sym_COMMA, + ACTIONS(7942), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [5565] = 6, + ACTIONS(7944), 1, + anon_sym_EQ, + STATE(4565), 1, + aux_sym_formal_parameters_repeat1, + STATE(4110), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [5499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(7948), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(7950), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7952), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4028), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [5587] = 6, + [5521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7914), 1, + ACTIONS(7948), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(7954), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7956), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4029), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [5609] = 8, + [5543] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2055), 1, + ACTIONS(2077), 1, anon_sym_RPAREN, - ACTIONS(2057), 1, - anon_sym_COMMA, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(7878), 1, + ACTIONS(7944), 1, anon_sym_EQ, - STATE(4493), 1, + ACTIONS(7958), 1, + anon_sym_COMMA, + STATE(4562), 1, aux_sym_formal_parameters_repeat1, - STATE(4103), 2, + STATE(4173), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [5635] = 6, + [5569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_POUND, - ACTIONS(7864), 1, + ACTIONS(7910), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(7916), 1, + ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(7960), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [5657] = 2, + [5591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, + anon_sym_POUND, + ACTIONS(7960), 1, + anon_sym_SQUOTE, + ACTIONS(7920), 2, + sym_unescaped_single_string_fragment, + sym_hash_empty, + STATE(4033), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat2, + [5613] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(1684), 8, + ACTIONS(1596), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_Else, @@ -468395,1255 +474132,1255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_While, anon_sym_while, anon_sym_WHILE, - [5671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7872), 1, - anon_sym_POUND, - ACTIONS(7918), 1, - anon_sym_SQUOTE, - ACTIONS(7920), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7922), 2, - sym_unescaped_single_string_fragment, - sym_hash_empty, - STATE(4040), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat2, - [5693] = 6, + [5627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7924), 1, + ACTIONS(7962), 1, anon_sym_DQUOTE, - ACTIONS(7926), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(7928), 2, + ACTIONS(7966), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(3987), 3, + STATE(4007), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [5715] = 6, - ACTIONS(3), 1, + [5649] = 8, + ACTIONS(129), 1, sym_comment, - ACTIONS(7872), 1, - anon_sym_POUND, - ACTIONS(7924), 1, + ACTIONS(2146), 1, + anon_sym_DQUOTE, + ACTIONS(2148), 1, anon_sym_SQUOTE, - ACTIONS(7930), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7932), 2, - sym_unescaped_single_string_fragment, - sym_hash_empty, - STATE(3992), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat2, - [5737] = 8, + ACTIONS(7968), 1, + sym_identifier, + ACTIONS(7970), 1, + anon_sym_COMMA, + ACTIONS(7972), 1, + anon_sym_RBRACE, + STATE(4627), 1, + sym_import_specifier, + STATE(5191), 2, + sym__module_export_name, + sym_string, + [5675] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2067), 1, + ACTIONS(2023), 1, anon_sym_COMMA, - ACTIONS(2069), 1, + ACTIONS(2025), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(7878), 1, + ACTIONS(7944), 1, anon_sym_EQ, - STATE(4464), 1, + STATE(4454), 1, aux_sym_formal_parameters_repeat1, - STATE(4074), 2, + STATE(4153), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [5763] = 6, + [5701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7934), 1, + ACTIONS(7974), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(7976), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7978), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4008), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [5785] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2029), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - ACTIONS(7936), 1, - anon_sym_COMMA, - STATE(4473), 1, - aux_sym_formal_parameters_repeat1, - STATE(4127), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [5811] = 7, - ACTIONS(129), 1, - sym_comment, - ACTIONS(605), 1, - sym_array_return_suffix, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(7938), 1, - sym_identifier, - ACTIONS(7940), 1, - anon_sym_EQ, - STATE(1243), 1, - sym_formal_parameters, - ACTIONS(7942), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [5835] = 8, - ACTIONS(129), 1, + [5723] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2073), 1, - anon_sym_COMMA, - ACTIONS(2075), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - STATE(4517), 1, - aux_sym_formal_parameters_repeat1, - STATE(4078), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [5861] = 6, + ACTIONS(7910), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(7980), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 2, + sym_unescaped_double_string_fragment, + sym_hash_empty, + STATE(4030), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat1, + [5745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7944), 1, + ACTIONS(7980), 1, anon_sym_SQUOTE, - ACTIONS(7946), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7948), 2, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(4030), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [5883] = 6, + [5767] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(7982), 1, + anon_sym_DQUOTE, + ACTIONS(7984), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7990), 1, + anon_sym_POUND, + ACTIONS(7987), 2, + sym_unescaped_double_string_fragment, + sym_hash_empty, + STATE(4030), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat1, + [5789] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7922), 1, + anon_sym_POUND, + ACTIONS(7962), 1, anon_sym_SQUOTE, - ACTIONS(7952), 1, + ACTIONS(7993), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(7958), 1, - anon_sym_POUND, - ACTIONS(7955), 2, + ACTIONS(7995), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4056), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [5905] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2011), 1, - anon_sym_COMMA, - ACTIONS(2013), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - STATE(4540), 1, - aux_sym_formal_parameters_repeat1, - STATE(4100), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [5931] = 6, + [5811] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6016), 1, anon_sym_LPAREN, - ACTIONS(7963), 1, + ACTIONS(7999), 1, anon_sym_LBRACK, - ACTIONS(7965), 1, + ACTIONS(8001), 1, sym_private_property_identifier, - STATE(2682), 1, + STATE(2860), 1, sym_arguments, - ACTIONS(7961), 4, + ACTIONS(7997), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [5953] = 6, + [5833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, + ACTIONS(8003), 1, + anon_sym_SQUOTE, + ACTIONS(8005), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(8011), 1, anon_sym_POUND, - ACTIONS(7916), 1, - anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(8008), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [5975] = 6, - ACTIONS(3), 1, + [5855] = 7, + ACTIONS(129), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_POUND, - ACTIONS(7967), 1, - anon_sym_DQUOTE, - ACTIONS(7969), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7971), 2, - sym_unescaped_double_string_fragment, - sym_hash_empty, - STATE(4003), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat1, - [5997] = 6, + ACTIONS(605), 1, + sym_array_return_suffix, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8014), 1, + sym_identifier, + ACTIONS(8016), 1, + anon_sym_EQ, + STATE(1252), 1, + sym_formal_parameters, + ACTIONS(8018), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [5879] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7707), 1, + anon_sym_LBRACK, + ACTIONS(7790), 1, + sym_identifier, + STATE(4891), 1, + sym_nested_identifier, + STATE(5340), 2, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(7794), 3, + anon_sym_Var, + anon_sym_var, + anon_sym_VAR, + [5901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7973), 1, + ACTIONS(8020), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(8022), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(8024), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4049), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6019] = 8, + [5923] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2079), 1, - anon_sym_RPAREN, - ACTIONS(2081), 1, - anon_sym_COMMA, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - STATE(4496), 1, - aux_sym_formal_parameters_repeat1, - STATE(4082), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [6045] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1670), 8, + ACTIONS(8026), 2, sym__automatic_semicolon, anon_sym_SEMI, + ACTIONS(2692), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [6059] = 6, + [5939] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7975), 1, + ACTIONS(8028), 1, anon_sym_DQUOTE, - ACTIONS(7977), 1, + ACTIONS(8030), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(7979), 2, + ACTIONS(8032), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4017), 3, + STATE(4047), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6081] = 6, + [5961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7975), 1, + ACTIONS(8028), 1, anon_sym_SQUOTE, - ACTIONS(7981), 1, + ACTIONS(8034), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(7983), 2, + ACTIONS(8036), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(4026), 3, + STATE(4048), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6103] = 6, + [5983] = 8, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2065), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(8038), 1, + anon_sym_COMMA, + STATE(4528), 1, + aux_sym_formal_parameters_repeat1, + STATE(4126), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [6009] = 8, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2095), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(7944), 1, + anon_sym_EQ, + STATE(4496), 1, + aux_sym_formal_parameters_repeat1, + STATE(4116), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [6035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7973), 1, + ACTIONS(8020), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(8040), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(8042), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4052), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6125] = 6, + [6057] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(5506), 1, anon_sym_LPAREN, - ACTIONS(7987), 1, + ACTIONS(8046), 1, anon_sym_LBRACK, - ACTIONS(7989), 1, + ACTIONS(8048), 1, sym_private_property_identifier, - STATE(464), 1, + STATE(2459), 1, sym_arguments, - ACTIONS(7985), 4, + ACTIONS(8044), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [6147] = 6, + [6079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(7974), 1, anon_sym_DQUOTE, - ACTIONS(7993), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(7995), 2, + ACTIONS(8052), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(3997), 3, + STATE(4089), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6169] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7872), 1, - anon_sym_POUND, - ACTIONS(7997), 1, - anon_sym_SQUOTE, - ACTIONS(7999), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(8001), 2, - sym_unescaped_single_string_fragment, - sym_hash_empty, - STATE(4039), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat2, - [6191] = 7, + [6101] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(1077), 1, - sym_array_return_suffix, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(7940), 1, - anon_sym_EQ, - ACTIONS(8003), 1, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2111), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, sym_identifier, - STATE(1243), 1, - sym_formal_parameters, - ACTIONS(8005), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [6215] = 6, + ACTIONS(7944), 1, + anon_sym_EQ, + STATE(4536), 1, + aux_sym_formal_parameters_repeat1, + STATE(4125), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [6127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_POUND, - ACTIONS(7864), 1, + ACTIONS(7910), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8007), 1, + ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(8054), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6237] = 6, + [6149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7854), 1, - anon_sym_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7910), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8009), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(8011), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8056), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 2, + sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(3977), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, - aux_sym_string_repeat2, - [6259] = 6, + aux_sym_string_repeat1, + [6171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, + ACTIONS(7918), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(8056), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6281] = 6, + [6193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7910), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8013), 1, - anon_sym_SQUOTE, - ACTIONS(8015), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(8017), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8058), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 2, + sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4046), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, - aux_sym_string_repeat2, - [6303] = 6, + aux_sym_string_repeat1, + [6215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(8060), 1, anon_sym_SQUOTE, - ACTIONS(8019), 1, + ACTIONS(8062), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(8021), 2, + ACTIONS(8064), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3999), 3, + STATE(4104), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6325] = 6, + [6237] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(2720), 1, + ACTIONS(5520), 1, anon_sym_LPAREN, - ACTIONS(8025), 1, + ACTIONS(8046), 1, anon_sym_LBRACK, - ACTIONS(8027), 1, + ACTIONS(8048), 1, sym_private_property_identifier, - STATE(661), 1, + STATE(2515), 1, sym_arguments, - ACTIONS(8023), 4, + ACTIONS(8044), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [6347] = 6, + [6259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8029), 1, - anon_sym_DQUOTE, - ACTIONS(7866), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8058), 1, + anon_sym_SQUOTE, + ACTIONS(7920), 2, + sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, - aux_sym_string_repeat1, - [6369] = 6, + aux_sym_string_repeat2, + [6281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7934), 1, + ACTIONS(8060), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(8066), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(8068), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4105), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6391] = 7, - ACTIONS(129), 1, + [6303] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COLON, - ACTIONS(7737), 1, - anon_sym_EQ, - ACTIONS(7739), 1, - sym_tag_linefeed, - ACTIONS(8031), 1, - sym_identifier, - ACTIONS(8034), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(4305), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [6415] = 6, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, + anon_sym_POUND, + ACTIONS(8054), 1, + anon_sym_SQUOTE, + ACTIONS(7920), 2, + sym_unescaped_single_string_fragment, + sym_hash_empty, + STATE(4033), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat2, + [6325] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5520), 1, anon_sym_LPAREN, - ACTIONS(7882), 1, + ACTIONS(7936), 1, anon_sym_LBRACK, - ACTIONS(7912), 1, + ACTIONS(8072), 1, sym_private_property_identifier, - STATE(2471), 1, + STATE(2515), 1, sym_arguments, - ACTIONS(7908), 4, + ACTIONS(8070), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [6437] = 6, + [6347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7908), 1, + anon_sym_SQUOTE, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8037), 1, - anon_sym_DQUOTE, - ACTIONS(8039), 1, + ACTIONS(7920), 2, + sym_unescaped_single_string_fragment, + sym_hash_empty, + STATE(4033), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat2, + [6369] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7910), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8041), 2, + ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(8074), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(3968), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6459] = 6, + [6391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, + ACTIONS(7918), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8043), 1, + ACTIONS(8074), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7860), 1, - anon_sym_POUND, - ACTIONS(7918), 1, - anon_sym_DQUOTE, - ACTIONS(8045), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8047), 2, - sym_unescaped_double_string_fragment, - sym_hash_empty, - STATE(4038), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat1, - [6503] = 3, + [6413] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8049), 2, + ACTIONS(1588), 8, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2598), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [6519] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7651), 1, - anon_sym_LBRACK, - ACTIONS(7695), 1, - sym_identifier, - STATE(5029), 1, - sym_nested_identifier, - STATE(5151), 2, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(7701), 3, - anon_sym_Var, - anon_sym_var, - anon_sym_VAR, - [6541] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7872), 1, - anon_sym_POUND, - ACTIONS(8037), 1, - anon_sym_SQUOTE, - ACTIONS(8051), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(8053), 2, - sym_unescaped_single_string_fragment, - sym_hash_empty, - STATE(3969), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat2, - [6563] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, - anon_sym_POUND, - ACTIONS(8029), 1, - anon_sym_SQUOTE, - ACTIONS(7870), 2, - sym_unescaped_single_string_fragment, - sym_hash_empty, - STATE(3982), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat2, - [6585] = 6, + [6427] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5520), 1, anon_sym_LPAREN, - ACTIONS(7882), 1, + ACTIONS(7936), 1, anon_sym_LBRACK, - ACTIONS(7989), 1, + ACTIONS(8078), 1, sym_private_property_identifier, - STATE(2471), 1, + STATE(2515), 1, sym_arguments, - ACTIONS(7985), 4, + ACTIONS(8076), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [6607] = 6, + [6449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8055), 1, + ACTIONS(8080), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(8082), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(8084), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4057), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6629] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1959), 1, - anon_sym_COMMA, - ACTIONS(1961), 1, - anon_sym_RPAREN, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - STATE(4441), 1, - aux_sym_formal_parameters_repeat1, - STATE(4055), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [6655] = 6, + [6471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8057), 1, - anon_sym_DQUOTE, - ACTIONS(7866), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8080), 1, + anon_sym_SQUOTE, + ACTIONS(8086), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(8088), 2, + sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4058), 3, sym__hash_always_eval, sym_hash_expression, - aux_sym_string_repeat1, - [6677] = 6, + aux_sym_string_repeat2, + [6493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8059), 1, + ACTIONS(8090), 1, anon_sym_DQUOTE, - ACTIONS(8061), 1, + ACTIONS(8092), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8063), 2, + ACTIONS(8094), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4027), 3, + STATE(4046), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7872), 1, - anon_sym_POUND, - ACTIONS(8059), 1, - anon_sym_SQUOTE, - ACTIONS(8065), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(8067), 2, - sym_unescaped_single_string_fragment, - sym_hash_empty, - STATE(4029), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat2, - [6721] = 6, + [6515] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5520), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(8098), 1, anon_sym_LBRACK, - ACTIONS(7912), 1, + ACTIONS(8100), 1, sym_private_property_identifier, - STATE(2471), 1, + STATE(2515), 1, sym_arguments, - ACTIONS(7908), 4, + ACTIONS(8096), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [6743] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2009), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [6757] = 6, + [6537] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7944), 1, + ACTIONS(8102), 1, anon_sym_DQUOTE, - ACTIONS(8069), 1, + ACTIONS(8104), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8071), 2, + ACTIONS(8106), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4015), 3, + STATE(4068), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6779] = 6, + [6559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8073), 1, - anon_sym_DQUOTE, - ACTIONS(8075), 1, + ACTIONS(8102), 1, + anon_sym_SQUOTE, + ACTIONS(8108), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(8110), 2, + sym_unescaped_single_string_fragment, + sym_hash_empty, + STATE(4071), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat2, + [6581] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7910), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8077), 2, + ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(8112), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(3955), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6801] = 6, + [6603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7910), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8079), 1, + ACTIONS(8114), 1, anon_sym_DQUOTE, - ACTIONS(8081), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8083), 2, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4052), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6823] = 6, + [6625] = 8, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_COMMA, + ACTIONS(1971), 1, + anon_sym_RPAREN, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(7944), 1, + anon_sym_EQ, + STATE(4564), 1, + aux_sym_formal_parameters_repeat1, + STATE(4190), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [6651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8073), 1, + ACTIONS(8112), 1, anon_sym_SQUOTE, - ACTIONS(8085), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(8087), 2, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3956), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6845] = 6, + [6673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, + ACTIONS(7918), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8057), 1, + ACTIONS(8114), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6867] = 6, + [6695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8089), 1, + ACTIONS(8116), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(8118), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(8120), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4085), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [6889] = 7, + [6717] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(1057), 1, - sym_array_return_suffix, - ACTIONS(7691), 1, + ACTIONS(5744), 1, anon_sym_LPAREN, - ACTIONS(7940), 1, + ACTIONS(8098), 1, + anon_sym_LBRACK, + ACTIONS(8100), 1, + sym_private_property_identifier, + STATE(2728), 1, + sym_arguments, + ACTIONS(8096), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [6739] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2990), 1, + anon_sym_LPAREN, + ACTIONS(8124), 1, + anon_sym_LBRACK, + ACTIONS(8126), 1, + sym_private_property_identifier, + STATE(678), 1, + sym_arguments, + ACTIONS(8122), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [6761] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7771), 1, + anon_sym_COLON, + ACTIONS(7773), 1, anon_sym_EQ, - ACTIONS(8091), 1, + ACTIONS(7775), 1, + sym_tag_linefeed, + ACTIONS(8128), 1, sym_identifier, - STATE(1243), 1, - sym_formal_parameters, - ACTIONS(8093), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [6913] = 6, + ACTIONS(8131), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(4224), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [6785] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8089), 1, + ACTIONS(8090), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(8134), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(8136), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4054), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6935] = 6, + [6807] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5520), 1, + anon_sym_LPAREN, + ACTIONS(7936), 1, + anon_sym_LBRACK, + ACTIONS(8048), 1, + sym_private_property_identifier, + STATE(2515), 1, + sym_arguments, + ACTIONS(8044), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [6829] = 8, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2053), 1, + anon_sym_COMMA, + ACTIONS(2055), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(7944), 1, + anon_sym_EQ, + STATE(4492), 1, + aux_sym_formal_parameters_repeat1, + STATE(4112), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [6855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(8138), 1, + anon_sym_DQUOTE, + ACTIONS(8140), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(8142), 2, + sym_unescaped_double_string_fragment, + sym_hash_empty, + STATE(4087), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat1, + [6877] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8055), 1, + ACTIONS(8138), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(8144), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(8146), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4088), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6957] = 6, + [6899] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1959), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [6913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7967), 1, + ACTIONS(8116), 1, anon_sym_SQUOTE, - ACTIONS(8095), 1, + ACTIONS(8148), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(8097), 2, + ACTIONS(8150), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(4013), 3, + STATE(4090), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [6979] = 6, + [6935] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(5730), 1, + ACTIONS(1079), 1, + sym_array_return_suffix, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8101), 1, - anon_sym_LBRACK, - ACTIONS(8103), 1, - sym_private_property_identifier, - STATE(2652), 1, - sym_arguments, - ACTIONS(8099), 4, + ACTIONS(8016), 1, + anon_sym_EQ, + ACTIONS(8152), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [7001] = 6, + STATE(1252), 1, + sym_formal_parameters, + ACTIONS(8154), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [6959] = 8, ACTIONS(129), 1, sym_comment, - ACTIONS(5502), 1, - anon_sym_LPAREN, - ACTIONS(7963), 1, - anon_sym_LBRACK, - ACTIONS(7965), 1, - sym_private_property_identifier, - STATE(2471), 1, - sym_arguments, - ACTIONS(7961), 4, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(1993), 1, + anon_sym_RPAREN, + ACTIONS(2005), 1, + anon_sym_COMMA, + ACTIONS(7942), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [7023] = 6, + ACTIONS(7944), 1, + anon_sym_EQ, + STATE(4580), 1, + aux_sym_formal_parameters_repeat1, + STATE(4165), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [6985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7910), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(7997), 1, + ACTIONS(8156), 1, anon_sym_DQUOTE, - ACTIONS(8105), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8107), 2, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4037), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [7045] = 6, + [7007] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(7742), 1, + ACTIONS(7778), 1, sym_identifier, - STATE(4902), 1, + STATE(5040), 1, sym_nested_identifier, - STATE(5307), 2, + STATE(5216), 2, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(7746), 3, + ACTIONS(7782), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - [7067] = 6, + [7029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8109), 1, - anon_sym_DQUOTE, - ACTIONS(8111), 1, + ACTIONS(7910), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8117), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8114), 2, + ACTIONS(8158), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [7089] = 6, + [7051] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8120), 1, - anon_sym_DQUOTE, - ACTIONS(7866), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8158), 1, + anon_sym_SQUOTE, + ACTIONS(7920), 2, + sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, - aux_sym_string_repeat1, - [7111] = 6, + aux_sym_string_repeat2, + [7073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_POUND, - ACTIONS(7864), 1, + ACTIONS(7910), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8122), 1, + ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(7916), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [7133] = 6, + [7095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, + ACTIONS(7918), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8120), 1, + ACTIONS(8156), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [7155] = 6, - ACTIONS(3), 1, + [7117] = 8, + ACTIONS(129), 1, sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, - anon_sym_POUND, - ACTIONS(8122), 1, - anon_sym_SQUOTE, - ACTIONS(7870), 2, - sym_unescaped_single_string_fragment, - sym_hash_empty, - STATE(3982), 3, - sym__hash_always_eval, - sym_hash_expression, - aux_sym_string_repeat2, - [7177] = 6, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2009), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(7944), 1, + anon_sym_EQ, + ACTIONS(8160), 1, + anon_sym_COMMA, + STATE(4584), 1, + aux_sym_formal_parameters_repeat1, + STATE(4171), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [7143] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5809), 1, + anon_sym_LPAREN, + ACTIONS(8164), 1, + anon_sym_LBRACK, + ACTIONS(8166), 1, + sym_private_property_identifier, + STATE(2814), 1, + sym_arguments, + ACTIONS(8162), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [7165] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1073), 1, + sym_array_return_suffix, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8016), 1, + anon_sym_EQ, + ACTIONS(8168), 1, + sym_identifier, + STATE(1252), 1, + sym_formal_parameters, + ACTIONS(8170), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [7189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8124), 1, + ACTIONS(8172), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(8174), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8128), 2, + ACTIONS(8176), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(3957), 3, + STATE(4067), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [7199] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2049), 1, - anon_sym_COMMA, - ACTIONS(2051), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - STATE(4485), 1, - aux_sym_formal_parameters_repeat1, - STATE(4098), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [7225] = 6, + [7211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(7864), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(8130), 1, - anon_sym_DQUOTE, - ACTIONS(7866), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8172), 1, + anon_sym_SQUOTE, + ACTIONS(8178), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(8180), 2, + sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4070), 3, sym__hash_always_eval, sym_hash_expression, - aux_sym_string_repeat1, - [7247] = 6, + aux_sym_string_repeat2, + [7233] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(7719), 1, + ACTIONS(7731), 1, sym_identifier, - STATE(4851), 1, + STATE(4980), 1, sym_nested_identifier, - STATE(5249), 2, + STATE(5332), 2, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(7723), 3, + ACTIONS(7737), 3, anon_sym_Var, anon_sym_var, anon_sym_VAR, - [7269] = 6, + [7255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8079), 1, - anon_sym_SQUOTE, - ACTIONS(8132), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(8134), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8182), 1, + anon_sym_DQUOTE, + ACTIONS(8184), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(8186), 2, + sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4008), 3, + STATE(4102), 3, sym__hash_always_eval, sym_hash_expression, - aux_sym_string_repeat2, - [7291] = 6, + aux_sym_string_repeat1, + [7277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 1, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(7872), 1, + ACTIONS(7922), 1, anon_sym_POUND, - ACTIONS(8130), 1, + ACTIONS(8182), 1, anon_sym_SQUOTE, - ACTIONS(7870), 2, + ACTIONS(8188), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(8190), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3982), 3, + STATE(4103), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, - [7313] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2150), 1, - anon_sym_DQUOTE, - ACTIONS(2152), 1, - anon_sym_SQUOTE, - ACTIONS(8136), 1, - sym_identifier, - ACTIONS(8138), 1, - anon_sym_COMMA, - ACTIONS(8140), 1, - anon_sym_RBRACE, - STATE(4718), 1, - sym_import_specifier, - STATE(5068), 2, - sym__module_export_name, - sym_string, - [7339] = 8, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2083), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - ACTIONS(8142), 1, - anon_sym_COMMA, - STATE(4468), 1, - aux_sym_formal_parameters_repeat1, - STATE(4087), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [7365] = 6, + [7299] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8013), 1, + ACTIONS(8192), 1, anon_sym_DQUOTE, - ACTIONS(8144), 1, + ACTIONS(8194), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8146), 2, + ACTIONS(8196), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4043), 3, + STATE(4021), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, - [7387] = 3, + [7321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7922), 1, + anon_sym_POUND, + ACTIONS(8192), 1, + anon_sym_SQUOTE, + ACTIONS(8198), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(8200), 2, + sym_unescaped_single_string_fragment, + sym_hash_empty, + STATE(4022), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat2, + [7343] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8148), 1, + ACTIONS(8202), 1, sym__automatic_semicolon, - ACTIONS(1684), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_Else, anon_sym_else, @@ -469651,12362 +475388,12394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_While, anon_sym_while, anon_sym_WHILE, - [7403] = 6, + [7359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, + ACTIONS(7910), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7914), 1, anon_sym_POUND, - ACTIONS(8124), 1, + ACTIONS(8204), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 2, + sym_unescaped_double_string_fragment, + sym_hash_empty, + STATE(4030), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat1, + [7381] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(7922), 1, + anon_sym_POUND, + ACTIONS(8204), 1, anon_sym_SQUOTE, - ACTIONS(8150), 1, + ACTIONS(7920), 2, + sym_unescaped_single_string_fragment, + sym_hash_empty, + STATE(4033), 3, + sym__hash_always_eval, + sym_hash_expression, + aux_sym_string_repeat2, + [7403] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, anon_sym_SQUOTE_SQUOTE, - ACTIONS(8152), 2, + ACTIONS(7922), 1, + anon_sym_POUND, + ACTIONS(8206), 1, + anon_sym_SQUOTE, + ACTIONS(7920), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - STATE(3960), 3, + STATE(4033), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat2, [7425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_POUND, - ACTIONS(7864), 1, + ACTIONS(7910), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(8043), 1, + ACTIONS(7914), 1, + anon_sym_POUND, + ACTIONS(8206), 1, anon_sym_DQUOTE, - ACTIONS(7866), 2, + ACTIONS(7912), 2, sym_unescaped_double_string_fragment, sym_hash_empty, - STATE(4036), 3, + STATE(4030), 3, sym__hash_always_eval, sym_hash_expression, aux_sym_string_repeat1, [7447] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8154), 1, + ACTIONS(8208), 1, sym__automatic_semicolon, - ACTIONS(2660), 6, + ACTIONS(2628), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [7462] = 7, + [7462] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(5087), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - sym_identifier, - ACTIONS(8158), 1, - anon_sym_LPAREN, - STATE(585), 1, - sym_component_body, - STATE(4241), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [7485] = 7, + ACTIONS(8210), 1, + sym__automatic_semicolon, + ACTIONS(2608), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [7477] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2011), 1, - anon_sym_COMMA, - ACTIONS(2013), 1, + ACTIONS(2065), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4540), 1, - aux_sym_formal_parameters_repeat1, - STATE(4168), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [7508] = 7, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2037), 1, + ACTIONS(8038), 1, anon_sym_COMMA, - ACTIONS(2039), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - STATE(4501), 1, + STATE(4528), 1, aux_sym_formal_parameters_repeat1, - STATE(4088), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [7531] = 7, - ACTIONS(117), 1, - anon_sym_COMMA, + [7500] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(490), 1, - anon_sym_RBRACE, - ACTIONS(5610), 1, - anon_sym_EQ, - STATE(4627), 1, - aux_sym_object_repeat1, - STATE(4628), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [7554] = 7, + ACTIONS(8212), 1, + sym__automatic_semicolon, + ACTIONS(5133), 6, + anon_sym_In, + anon_sym_in, + anon_sym_IN, + anon_sym_Of, + anon_sym_of, + anon_sym_OF, + [7515] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2011), 1, - anon_sym_COMMA, - ACTIONS(2013), 1, + ACTIONS(2077), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4540), 1, + ACTIONS(7958), 1, + anon_sym_COMMA, + STATE(4562), 1, aux_sym_formal_parameters_repeat1, - STATE(4100), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [7577] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8162), 1, - anon_sym_EQ, - STATE(1249), 1, - sym_formal_parameters, - ACTIONS(1383), 3, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - [7598] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8166), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_nested_identifier_token1, - ACTIONS(8164), 4, - sym_identifier, - anon_sym_Var, - anon_sym_var, - anon_sym_VAR, - [7613] = 3, + [7538] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8168), 1, + ACTIONS(5550), 7, sym__automatic_semicolon, - ACTIONS(5127), 6, anon_sym_In, anon_sym_in, anon_sym_IN, anon_sym_Of, anon_sym_of, anon_sym_OF, - [7628] = 7, + [7551] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2061), 1, + anon_sym_RPAREN, + ACTIONS(2063), 1, + anon_sym_COMMA, + ACTIONS(7942), 1, + sym_identifier, + STATE(4515), 1, + aux_sym_formal_parameters_repeat1, + STATE(4235), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [7574] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(500), 1, + ACTIONS(410), 1, anon_sym_RBRACE, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - STATE(4617), 1, + STATE(4648), 1, aux_sym_object_repeat1, - STATE(4618), 1, + STATE(4688), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [7651] = 7, + [7597] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5051), 1, + anon_sym_EQ, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8214), 1, + sym_identifier, + STATE(1263), 1, + sym_formal_parameters, + ACTIONS(1204), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [7618] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2031), 1, + ACTIONS(2039), 1, anon_sym_COMMA, - ACTIONS(2033), 1, + ACTIONS(2041), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4469), 1, + STATE(4494), 1, aux_sym_formal_parameters_repeat1, - STATE(4097), 2, + STATE(4157), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [7674] = 7, + [7641] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2067), 1, + ACTIONS(2023), 1, anon_sym_COMMA, - ACTIONS(2069), 1, + ACTIONS(2025), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4464), 1, + STATE(4454), 1, aux_sym_formal_parameters_repeat1, - STATE(4074), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [7697] = 7, + [7664] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, ACTIONS(5087), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - sym_identifier, - ACTIONS(8170), 1, - anon_sym_LPAREN, - STATE(609), 1, - sym_component_body, - STATE(4157), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [7720] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8174), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_nested_identifier_token1, - ACTIONS(8172), 4, - sym_identifier, - anon_sym_Var, - anon_sym_var, - anon_sym_VAR, - [7735] = 7, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2150), 1, - anon_sym_DQUOTE, - ACTIONS(2152), 1, - anon_sym_SQUOTE, - ACTIONS(8136), 1, - sym_identifier, - ACTIONS(8176), 1, - anon_sym_RBRACE, - STATE(4835), 1, - sym_import_specifier, - STATE(5068), 2, - sym__module_export_name, - sym_string, - [7758] = 7, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5079), 1, sym_tag_linefeed, - ACTIONS(5092), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(8216), 1, sym_identifier, - ACTIONS(8178), 1, + ACTIONS(8218), 1, anon_sym_LPAREN, - STATE(4143), 1, + STATE(709), 1, sym_component_body, - STATE(4182), 2, + STATE(4299), 2, sym_component_attribute, aux_sym_component_repeat1, - [7781] = 7, + [7687] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - ACTIONS(5641), 1, + ACTIONS(5844), 1, anon_sym_RBRACE, - STATE(4730), 1, + STATE(4648), 1, aux_sym_object_repeat1, - STATE(4731), 1, + STATE(4688), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [7804] = 5, + [7710] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(7878), 1, + ACTIONS(7944), 1, anon_sym_EQ, - STATE(4218), 2, + STATE(4271), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - ACTIONS(2121), 3, + ACTIONS(8220), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [7823] = 4, + [7729] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(8180), 1, - anon_sym_DOT, - STATE(4071), 1, - aux_sym_import_path_repeat1, - ACTIONS(8183), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [7840] = 7, - ACTIONS(117), 1, + ACTIONS(1969), 1, + anon_sym_COMMA, + ACTIONS(1971), 1, + anon_sym_RPAREN, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(7942), 1, + sym_identifier, + STATE(4564), 1, + aux_sym_formal_parameters_repeat1, + STATE(4190), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [7752] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2065), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(8038), 1, anon_sym_COMMA, + STATE(4528), 1, + aux_sym_formal_parameters_repeat1, + STATE(4126), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [7775] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, - anon_sym_EQ, - ACTIONS(5790), 1, - anon_sym_RBRACE, - STATE(4722), 1, - aux_sym_object_repeat1, - STATE(4725), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(8216), 1, + sym_identifier, + ACTIONS(8222), 1, anon_sym_LPAREN, - anon_sym_COLON, - [7863] = 7, + STATE(889), 1, + sym_component_body, + STATE(4199), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [7798] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2073), 1, + ACTIONS(2023), 1, anon_sym_COMMA, - ACTIONS(2075), 1, + ACTIONS(2025), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4517), 1, + STATE(4454), 1, aux_sym_formal_parameters_repeat1, - STATE(4078), 2, + STATE(4153), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [7886] = 7, + [7821] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2073), 1, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(8216), 1, + sym_identifier, + ACTIONS(8224), 1, + anon_sym_LPAREN, + STATE(889), 1, + sym_component_body, + STATE(4199), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [7844] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1969), 1, anon_sym_COMMA, - ACTIONS(2075), 1, + ACTIONS(1971), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(7942), 1, + sym_identifier, + STATE(4564), 1, + aux_sym_formal_parameters_repeat1, + STATE(4235), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [7867] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2067), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, sym_identifier, - STATE(4517), 1, + ACTIONS(8227), 1, + anon_sym_COMMA, + STATE(4544), 1, aux_sym_formal_parameters_repeat1, - STATE(4168), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [7909] = 7, + [7890] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(7812), 1, + anon_sym_EQ, + ACTIONS(8214), 1, + sym_identifier, + STATE(1263), 1, + sym_formal_parameters, + ACTIONS(1211), 3, + sym__parameter_separator, + anon_sym_COMMA, + anon_sym_RPAREN, + [7911] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(492), 1, + ACTIONS(5622), 1, anon_sym_RBRACE, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - STATE(4722), 1, + STATE(4620), 1, aux_sym_object_repeat1, - STATE(4725), 1, + STATE(4630), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [7932] = 4, + [7934] = 3, ACTIONS(129), 1, sym_comment, - STATE(4210), 1, - sym_else_clause, - ACTIONS(2624), 3, + ACTIONS(8229), 1, + sym__automatic_semicolon, + ACTIONS(2634), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - ACTIONS(8185), 3, + [7949] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8231), 1, + sym__automatic_semicolon, + ACTIONS(2640), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, - [7949] = 7, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [7964] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(498), 1, + ACTIONS(492), 1, anon_sym_RBRACE, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - STATE(4558), 1, + STATE(4759), 1, aux_sym_object_repeat1, - STATE(4575), 1, + STATE(4774), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [7972] = 7, + [7987] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2079), 1, - anon_sym_RPAREN, - ACTIONS(2081), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(7876), 1, - sym_identifier, - STATE(4496), 1, - aux_sym_formal_parameters_repeat1, - STATE(4168), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [7995] = 7, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2079), 1, + ACTIONS(2095), 1, anon_sym_RPAREN, - ACTIONS(2081), 1, - anon_sym_COMMA, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, STATE(4496), 1, aux_sym_formal_parameters_repeat1, - STATE(4082), 2, + STATE(4116), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8018] = 7, + [8010] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - ACTIONS(5732), 1, + ACTIONS(5772), 1, anon_sym_RBRACE, - STATE(4610), 1, + STATE(4654), 1, aux_sym_object_repeat1, - STATE(4725), 1, + STATE(4688), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [8041] = 7, + [8033] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - ACTIONS(5745), 1, + ACTIONS(5795), 1, anon_sym_RBRACE, - STATE(4627), 1, - aux_sym_object_repeat1, - STATE(4725), 1, + STATE(4688), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + STATE(4822), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [8064] = 7, + [8056] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2083), 1, + ACTIONS(2053), 1, + anon_sym_COMMA, + ACTIONS(2055), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(8142), 1, - anon_sym_COMMA, - STATE(4468), 1, + STATE(4492), 1, aux_sym_formal_parameters_repeat1, - STATE(4168), 2, + STATE(4112), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8087] = 7, + [8079] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2083), 1, + ACTIONS(2077), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(8142), 1, + ACTIONS(7958), 1, anon_sym_COMMA, - STATE(4468), 1, + STATE(4562), 1, aux_sym_formal_parameters_repeat1, - STATE(4087), 2, + STATE(4173), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8110] = 7, - ACTIONS(117), 1, - anon_sym_COMMA, + [8102] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, + ACTIONS(5060), 1, anon_sym_EQ, - ACTIONS(5803), 1, - anon_sym_RBRACE, - STATE(4617), 1, - aux_sym_object_repeat1, - STATE(4725), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(7810), 1, anon_sym_LPAREN, - anon_sym_COLON, - [8133] = 7, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, + ACTIONS(8233), 1, + sym_identifier, + STATE(1263), 1, + sym_formal_parameters, + ACTIONS(1204), 3, sym__parameter_separator, - ACTIONS(2049), 1, anon_sym_COMMA, - ACTIONS(2051), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - STATE(4485), 1, - aux_sym_formal_parameters_repeat1, - STATE(4098), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [8156] = 7, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5610), 1, - anon_sym_EQ, - ACTIONS(5750), 1, - anon_sym_RBRACE, - STATE(4560), 1, - aux_sym_object_pattern_repeat1, - STATE(4640), 1, - aux_sym_object_repeat1, - ACTIONS(5608), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [8179] = 7, + [8123] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2085), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2111), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(8187), 1, - anon_sym_COMMA, - STATE(4525), 1, + STATE(4536), 1, aux_sym_formal_parameters_repeat1, - STATE(4168), 2, + STATE(4125), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8202] = 7, + [8146] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2049), 1, - anon_sym_COMMA, - ACTIONS(2051), 1, + ACTIONS(8238), 3, anon_sym_RPAREN, - ACTIONS(7876), 1, + anon_sym_LBRACK, + aux_sym_nested_identifier_token1, + ACTIONS(8236), 4, sym_identifier, - STATE(4485), 1, - aux_sym_formal_parameters_repeat1, - STATE(4168), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [8225] = 6, + anon_sym_Var, + anon_sym_var, + anon_sym_VAR, + [8161] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(5050), 1, - anon_sym_EQ, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(2146), 1, + anon_sym_DQUOTE, + ACTIONS(2148), 1, + anon_sym_SQUOTE, + ACTIONS(7968), 1, sym_identifier, - STATE(1249), 1, - sym_formal_parameters, - ACTIONS(1127), 3, - anon_sym_COMMA, + ACTIONS(8240), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - [8246] = 7, - ACTIONS(117), 1, - anon_sym_COMMA, + STATE(4933), 1, + sym_import_specifier, + STATE(5191), 2, + sym__module_export_name, + sym_string, + [8184] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, - anon_sym_EQ, - ACTIONS(5758), 1, - anon_sym_RBRACE, - STATE(4725), 1, - aux_sym_object_pattern_repeat1, - STATE(4730), 1, - aux_sym_object_repeat1, - ACTIONS(5608), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [8269] = 7, - ACTIONS(117), 1, - anon_sym_COMMA, + ACTIONS(8242), 1, + sym__automatic_semicolon, + ACTIONS(2664), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [8199] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(486), 1, - anon_sym_RBRACE, - ACTIONS(5610), 1, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(7944), 1, anon_sym_EQ, - STATE(4610), 1, - aux_sym_object_repeat1, - STATE(4612), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [8292] = 7, - ACTIONS(117), 1, + STATE(4223), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + ACTIONS(2117), 3, + sym__parameter_separator, anon_sym_COMMA, + anon_sym_RPAREN, + [8218] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(494), 1, - anon_sym_RBRACE, - ACTIONS(5610), 1, - anon_sym_EQ, - STATE(4730), 1, - aux_sym_object_repeat1, - STATE(4731), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [8315] = 7, + ACTIONS(8244), 1, + sym__automatic_semicolon, + ACTIONS(2622), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [8233] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, + ACTIONS(8246), 1, + sym__automatic_semicolon, + ACTIONS(2670), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [8248] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5087), 1, sym_tag_linefeed, - ACTIONS(8156), 1, + ACTIONS(5095), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, sym_identifier, - ACTIONS(8189), 1, + ACTIONS(8248), 1, anon_sym_LPAREN, - STATE(910), 1, + STATE(4227), 1, sym_component_body, - STATE(4163), 2, + STATE(4207), 2, sym_component_attribute, aux_sym_component_repeat1, - [8338] = 2, + [8271] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_DQUOTE, + ACTIONS(2148), 1, + anon_sym_SQUOTE, + ACTIONS(7968), 1, + sym_identifier, + ACTIONS(8250), 1, + anon_sym_RBRACE, + STATE(4933), 1, + sym_import_specifier, + STATE(5191), 2, + sym__module_export_name, + sym_string, + [8294] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5536), 7, + ACTIONS(8252), 1, sym__automatic_semicolon, - anon_sym_In, - anon_sym_in, - anon_sym_IN, - anon_sym_Of, - anon_sym_of, - anon_sym_OF, - [8351] = 7, - ACTIONS(117), 1, - anon_sym_COMMA, + ACTIONS(2678), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [8309] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, - anon_sym_EQ, - ACTIONS(5766), 1, - anon_sym_RBRACE, - STATE(4558), 1, - aux_sym_object_repeat1, - STATE(4725), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [8374] = 7, - ACTIONS(117), 1, - anon_sym_COMMA, + ACTIONS(7721), 1, + anon_sym_DOT, + STATE(4180), 1, + aux_sym_import_path_repeat1, + ACTIONS(8254), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [8326] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, - anon_sym_EQ, - ACTIONS(5778), 1, - anon_sym_RBRACE, - STATE(4640), 1, - aux_sym_object_repeat1, - STATE(4725), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [8397] = 7, + ACTIONS(8256), 1, + sym__automatic_semicolon, + ACTIONS(2684), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [8341] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1959), 1, - anon_sym_COMMA, - ACTIONS(1961), 1, - anon_sym_RPAREN, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(7876), 1, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5095), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, sym_identifier, - STATE(4441), 1, - aux_sym_formal_parameters_repeat1, - STATE(4168), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [8420] = 7, + ACTIONS(8258), 1, + anon_sym_LPAREN, + STATE(4363), 1, + sym_component_body, + STATE(4340), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [8364] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5555), 1, + sym__automatic_semicolon, + ACTIONS(1698), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [8379] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2055), 1, + ACTIONS(1993), 1, anon_sym_RPAREN, - ACTIONS(2057), 1, + ACTIONS(2005), 1, anon_sym_COMMA, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4493), 1, + STATE(4580), 1, aux_sym_formal_parameters_repeat1, - STATE(4168), 2, + STATE(4165), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8443] = 7, + [8402] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2055), 1, + ACTIONS(2035), 1, anon_sym_RPAREN, - ACTIONS(2057), 1, + ACTIONS(2037), 1, anon_sym_COMMA, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4493), 1, + STATE(4565), 1, aux_sym_formal_parameters_repeat1, - STATE(4103), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8466] = 7, + [8425] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2029), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(8260), 1, + anon_sym_EQ, + ACTIONS(5209), 6, + anon_sym_In, + anon_sym_in, + anon_sym_IN, + anon_sym_Of, + anon_sym_of, + anon_sym_OF, + [8440] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5060), 1, + anon_sym_EQ, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8214), 1, sym_identifier, - ACTIONS(7936), 1, + STATE(1263), 1, + sym_formal_parameters, + ACTIONS(1204), 3, anon_sym_COMMA, - STATE(4473), 1, - aux_sym_formal_parameters_repeat1, - STATE(4168), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [8489] = 7, + anon_sym_RBRACE, + anon_sym_RBRACK, + [8461] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8214), 1, + sym_identifier, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(1263), 1, + sym_formal_parameters, + ACTIONS(1211), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [8482] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2029), 1, + ACTIONS(2053), 1, + anon_sym_COMMA, + ACTIONS(2055), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(7936), 1, - anon_sym_COMMA, - STATE(4473), 1, + STATE(4492), 1, aux_sym_formal_parameters_repeat1, - STATE(4127), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8512] = 6, + [8505] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(7693), 1, - anon_sym_EQ, - ACTIONS(8160), 1, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, sym_identifier, - STATE(1249), 1, - sym_formal_parameters, - ACTIONS(1383), 3, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - [8533] = 7, + ACTIONS(8264), 1, + anon_sym_LPAREN, + STATE(721), 1, + sym_component_body, + STATE(4333), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [8528] = 4, + ACTIONS(129), 1, + sym_comment, + STATE(4279), 1, + sym_else_clause, + ACTIONS(2646), 3, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + ACTIONS(8266), 3, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + [8545] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2059), 1, + ACTIONS(2035), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7896), 1, + ACTIONS(2037), 1, anon_sym_COMMA, - STATE(4448), 1, + ACTIONS(7942), 1, + sym_identifier, + STATE(4565), 1, aux_sym_formal_parameters_repeat1, - STATE(4168), 2, + STATE(4110), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8556] = 5, + [8568] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8214), 1, sym_identifier, - ACTIONS(7878), 1, + ACTIONS(8262), 1, anon_sym_EQ, - STATE(4287), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - ACTIONS(2125), 3, + STATE(1263), 1, + sym_formal_parameters, + ACTIONS(1211), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [8575] = 7, + [8589] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2059), 1, + ACTIONS(8270), 3, anon_sym_RPAREN, - ACTIONS(7876), 1, + anon_sym_LBRACK, + aux_sym_nested_identifier_token1, + ACTIONS(8268), 4, sym_identifier, - ACTIONS(7896), 1, - anon_sym_COMMA, - STATE(4448), 1, - aux_sym_formal_parameters_repeat1, - STATE(4109), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [8598] = 7, + anon_sym_Var, + anon_sym_var, + anon_sym_VAR, + [8604] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, - anon_sym_EQ, - ACTIONS(5782), 1, + ACTIONS(498), 1, anon_sym_RBRACE, - STATE(4610), 1, - aux_sym_object_repeat1, - STATE(4612), 1, + ACTIONS(5626), 1, + anon_sym_EQ, + STATE(4607), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + STATE(4822), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [8621] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(7693), 1, - anon_sym_EQ, - ACTIONS(8160), 1, - sym_identifier, - STATE(1249), 1, - sym_formal_parameters, - ACTIONS(1383), 3, + [8627] = 7, + ACTIONS(117), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [8642] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(8156), 1, - sym_identifier, - ACTIONS(8191), 1, + ACTIONS(496), 1, + anon_sym_RBRACE, + ACTIONS(5626), 1, + anon_sym_EQ, + STATE(4610), 1, + aux_sym_object_pattern_repeat1, + STATE(4753), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 2, anon_sym_LPAREN, - STATE(827), 1, - sym_component_body, - STATE(4211), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [8665] = 7, + anon_sym_COLON, + [8650] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2061), 1, + ACTIONS(2009), 1, anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(8193), 1, + ACTIONS(8160), 1, anon_sym_COMMA, - STATE(4489), 1, + STATE(4584), 1, aux_sym_formal_parameters_repeat1, - STATE(4168), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [8688] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_EQ, - ACTIONS(5201), 6, - anon_sym_In, - anon_sym_in, - anon_sym_IN, - anon_sym_Of, - anon_sym_of, - anon_sym_OF, - [8703] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8197), 1, - sym__automatic_semicolon, - ACTIONS(2606), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8718] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5530), 1, - sym__automatic_semicolon, - ACTIONS(1700), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8733] = 7, + [8673] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(8156), 1, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2009), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(8199), 1, - anon_sym_LPAREN, - STATE(910), 1, - sym_component_body, - STATE(4163), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [8756] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8202), 1, - sym__automatic_semicolon, - ACTIONS(2612), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8771] = 3, + ACTIONS(8160), 1, + anon_sym_COMMA, + STATE(4584), 1, + aux_sym_formal_parameters_repeat1, + STATE(4171), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [8696] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8204), 1, + ACTIONS(8272), 1, sym__automatic_semicolon, - ACTIONS(2618), 6, + ACTIONS(2652), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [8786] = 7, + [8711] = 7, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, - anon_sym_DQUOTE, - ACTIONS(2152), 1, - anon_sym_SQUOTE, - ACTIONS(8136), 1, - sym_identifier, - ACTIONS(8206), 1, + ACTIONS(488), 1, anon_sym_RBRACE, - STATE(4835), 1, - sym_import_specifier, - STATE(5068), 2, - sym__module_export_name, - sym_string, - [8809] = 6, + ACTIONS(5626), 1, + anon_sym_EQ, + STATE(4648), 1, + aux_sym_object_repeat1, + STATE(4688), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5624), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [8734] = 7, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5626), 1, anon_sym_EQ, - ACTIONS(7691), 1, + ACTIONS(5777), 1, + anon_sym_RBRACE, + STATE(4688), 1, + aux_sym_object_pattern_repeat1, + STATE(4759), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 2, anon_sym_LPAREN, - ACTIONS(8208), 1, + anon_sym_COLON, + [8757] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7942), 1, sym_identifier, - STATE(1249), 1, - sym_formal_parameters, - ACTIONS(1127), 3, + ACTIONS(7944), 1, + anon_sym_EQ, + STATE(4313), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + ACTIONS(2123), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [8830] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8211), 1, - sym__automatic_semicolon, - ACTIONS(2630), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8845] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8213), 1, - sym__automatic_semicolon, - ACTIONS(2636), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8860] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8215), 1, - sym__automatic_semicolon, - ACTIONS(2684), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8875] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8217), 1, - sym__automatic_semicolon, - ACTIONS(2642), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8890] = 3, + [8776] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(8219), 1, - sym__automatic_semicolon, - ACTIONS(2648), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8905] = 3, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2011), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, + sym_identifier, + ACTIONS(8274), 1, + anon_sym_COMMA, + STATE(4595), 1, + aux_sym_formal_parameters_repeat1, + STATE(4235), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [8799] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8221), 1, + ACTIONS(8276), 1, sym__automatic_semicolon, - ACTIONS(2654), 6, + ACTIONS(2658), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [8920] = 5, + [8814] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2099), 1, + anon_sym_RPAREN, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(7878), 1, - anon_sym_EQ, - STATE(4160), 2, + ACTIONS(8278), 1, + anon_sym_COMMA, + STATE(4522), 1, + aux_sym_formal_parameters_repeat1, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - ACTIONS(8223), 3, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - [8939] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8225), 1, - sym__automatic_semicolon, - ACTIONS(2666), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [8954] = 7, + [8837] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(496), 1, + ACTIONS(494), 1, anon_sym_RBRACE, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - STATE(4617), 1, + STATE(4620), 1, aux_sym_object_repeat1, - STATE(4618), 1, + STATE(4630), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [8977] = 7, + [8860] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2043), 1, - anon_sym_RPAREN, - ACTIONS(7876), 1, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(8216), 1, sym_identifier, - ACTIONS(8227), 1, - anon_sym_COMMA, - STATE(4420), 1, - aux_sym_formal_parameters_repeat1, - STATE(4168), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [9000] = 5, + ACTIONS(8280), 1, + anon_sym_LPAREN, + STATE(874), 1, + sym_component_body, + STATE(4214), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [8883] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - ACTIONS(7878), 1, + ACTIONS(7944), 1, anon_sym_EQ, - STATE(4264), 2, + STATE(4208), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - ACTIONS(2119), 3, + ACTIONS(2115), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [9019] = 7, + [8902] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(500), 1, anon_sym_RBRACE, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - STATE(4722), 1, + STATE(4606), 1, aux_sym_object_repeat1, - STATE(4725), 1, + STATE(4812), 1, aux_sym_object_pattern_repeat1, - ACTIONS(5608), 2, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [9042] = 7, + [8925] = 7, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(1959), 1, + ACTIONS(490), 1, + anon_sym_RBRACE, + ACTIONS(5626), 1, + anon_sym_EQ, + STATE(4600), 1, + aux_sym_object_pattern_repeat1, + STATE(4654), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [8948] = 7, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1961), 1, - anon_sym_RPAREN, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(7876), 1, - sym_identifier, - STATE(4441), 1, - aux_sym_formal_parameters_repeat1, - STATE(4055), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [9065] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7705), 1, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(5787), 1, + anon_sym_RBRACE, + STATE(4620), 1, + aux_sym_object_repeat1, + STATE(4688), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5624), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [8971] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8282), 1, anon_sym_DOT, - STATE(4071), 1, + STATE(4180), 1, aux_sym_import_path_repeat1, - ACTIONS(8229), 5, + ACTIONS(8285), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_With, anon_sym_with, anon_sym_WITH, - [9082] = 6, + [8988] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5059), 1, - anon_sym_EQ, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(7812), 1, + anon_sym_EQ, + ACTIONS(8214), 1, sym_identifier, - STATE(1249), 1, + STATE(1263), 1, sym_formal_parameters, - ACTIONS(1127), 3, + ACTIONS(1211), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [9103] = 6, + [9009] = 7, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8162), 1, + ACTIONS(5626), 1, anon_sym_EQ, - STATE(1249), 1, - sym_formal_parameters, - ACTIONS(1383), 3, - anon_sym_COMMA, + ACTIONS(5827), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - [9124] = 3, + STATE(4600), 1, + aux_sym_object_pattern_repeat1, + STATE(4654), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [9032] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8231), 1, + ACTIONS(8287), 1, sym__automatic_semicolon, - ACTIONS(2672), 6, + ACTIONS(2614), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9139] = 7, + [9047] = 7, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(5092), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - sym_identifier, - ACTIONS(8233), 1, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(5797), 1, + anon_sym_RBRACE, + STATE(4606), 1, + aux_sym_object_repeat1, + STATE(4688), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5624), 2, anon_sym_LPAREN, - STATE(4300), 1, - sym_component_body, - STATE(4294), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [9162] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8235), 1, - sym__automatic_semicolon, - ACTIONS(2678), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [9177] = 7, + anon_sym_COLON, + [9070] = 7, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(410), 1, - anon_sym_RBRACE, - ACTIONS(5610), 1, + ACTIONS(5626), 1, anon_sym_EQ, - STATE(4560), 1, + ACTIONS(5782), 1, + anon_sym_RBRACE, + STATE(4610), 1, aux_sym_object_pattern_repeat1, - STATE(4640), 1, + STATE(4753), 1, aux_sym_object_repeat1, - ACTIONS(5608), 2, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - [9200] = 4, - ACTIONS(129), 1, - sym_comment, - STATE(5006), 1, - sym_import_attribute, - ACTIONS(7725), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [9216] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7882), 1, - anon_sym_LBRACK, - ACTIONS(7906), 1, - sym_private_property_identifier, - ACTIONS(7904), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [9232] = 4, + [9093] = 7, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8239), 1, - anon_sym_LBRACK, - ACTIONS(8241), 1, - sym_private_property_identifier, - ACTIONS(8237), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [9248] = 4, + ACTIONS(486), 1, + anon_sym_RBRACE, + ACTIONS(5626), 1, + anon_sym_EQ, + STATE(4607), 1, + aux_sym_object_pattern_repeat1, + STATE(4822), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [9116] = 3, ACTIONS(129), 1, sym_comment, - STATE(5058), 1, - sym_import_attribute, - ACTIONS(7715), 2, + ACTIONS(8289), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [9264] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2762), 6, + ACTIONS(2602), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9276] = 2, + [9131] = 7, ACTIONS(129), 1, sym_comment, - ACTIONS(2766), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [9288] = 2, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2061), 1, + anon_sym_RPAREN, + ACTIONS(2063), 1, + anon_sym_COMMA, + ACTIONS(7942), 1, + sym_identifier, + STATE(4515), 1, + aux_sym_formal_parameters_repeat1, + STATE(4108), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [9154] = 7, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(2770), 6, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(5799), 1, + anon_sym_RBRACE, + STATE(4688), 1, + aux_sym_object_pattern_repeat1, + STATE(4753), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [9177] = 7, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(1993), 1, + anon_sym_RPAREN, + ACTIONS(2005), 1, + anon_sym_COMMA, + ACTIONS(7942), 1, + sym_identifier, + STATE(4580), 1, + aux_sym_formal_parameters_repeat1, + STATE(4235), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [9200] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(3050), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9300] = 4, + [9212] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7882), 1, + ACTIONS(8293), 1, anon_sym_LBRACK, - ACTIONS(7884), 1, + ACTIONS(8295), 1, sym_private_property_identifier, - ACTIONS(7880), 4, + ACTIONS(8291), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [9316] = 4, + [9228] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7771), 1, + anon_sym_COLON, + ACTIONS(7773), 1, + anon_sym_EQ, + ACTIONS(8297), 4, + sym__automatic_semicolon, + sym_tag_linefeed, + anon_sym_SEMI, + sym_identifier, + [9244] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8239), 1, + ACTIONS(7999), 1, anon_sym_LBRACK, - ACTIONS(8245), 1, + ACTIONS(8001), 1, sym_private_property_identifier, - ACTIONS(8243), 4, + ACTIONS(7997), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [9332] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2318), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [9344] = 2, + [9260] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3048), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [9356] = 4, + ACTIONS(8301), 1, + anon_sym_LBRACK, + ACTIONS(8303), 1, + sym_private_property_identifier, + ACTIONS(8299), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [9276] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8101), 1, + ACTIONS(8046), 1, anon_sym_LBRACK, - ACTIONS(8103), 1, + ACTIONS(8048), 1, sym_private_property_identifier, - ACTIONS(8099), 4, + ACTIONS(8044), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [9372] = 4, + [9292] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8249), 1, + ACTIONS(8307), 1, anon_sym_LBRACK, - ACTIONS(8251), 1, + ACTIONS(8309), 1, sym_private_property_identifier, - ACTIONS(8247), 4, + ACTIONS(8305), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [9388] = 2, + [9308] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3052), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [9400] = 5, + ACTIONS(7942), 1, + sym_identifier, + STATE(4223), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + ACTIONS(2117), 3, + sym__parameter_separator, + anon_sym_COMMA, + anon_sym_RPAREN, + [9324] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(8253), 1, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(8216), 1, sym_identifier, - ACTIONS(8258), 1, + STATE(835), 1, + sym_component_body, + STATE(4395), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [9344] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8311), 1, + sym_identifier, + ACTIONS(8315), 1, sym_tag_linefeed, - ACTIONS(8256), 2, + ACTIONS(8313), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(4152), 2, + STATE(4230), 2, sym_component_attribute, aux_sym_component_repeat1, - [9418] = 2, + [9362] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(3056), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [9430] = 2, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5198), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, + sym_identifier, + STATE(2884), 1, + sym_component_body, + STATE(4395), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [9382] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2774), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [9442] = 2, + ACTIONS(6323), 1, + anon_sym_COMMA, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(8317), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + [9398] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8319), 1, + anon_sym_SEMI, + ACTIONS(8321), 1, + sym__automatic_semicolon, + STATE(4995), 1, + sym_import_attribute, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [9416] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3060), 6, + ACTIONS(3046), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9454] = 2, + [9428] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2778), 6, + ACTIONS(3046), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9466] = 6, + [9440] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5174), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(8216), 1, sym_identifier, - STATE(624), 1, + STATE(446), 1, sym_component_body, - STATE(4348), 2, + STATE(4395), 2, sym_component_attribute, aux_sym_component_repeat1, - [9486] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(3064), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [9498] = 5, + [9460] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(8261), 1, - anon_sym_SEMI, - ACTIONS(8263), 1, - sym__automatic_semicolon, - STATE(4945), 1, - sym_import_attribute, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [9516] = 4, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5095), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, + sym_identifier, + STATE(4272), 1, + sym_component_body, + STATE(4395), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [9480] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4168), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - ACTIONS(8265), 3, + ACTIONS(2123), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [9532] = 6, + [9496] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(2997), 1, - sym_component_body, - STATE(4348), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [9552] = 4, + STATE(4313), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + ACTIONS(2123), 3, + sym__parameter_separator, + anon_sym_COMMA, + anon_sym_RPAREN, + [9512] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(8267), 4, - anon_sym_RBRACE, + ACTIONS(8323), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - [9568] = 6, + ACTIONS(8325), 1, + sym__automatic_semicolon, + STATE(4973), 1, + sym_import_attribute, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [9530] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, + ACTIONS(5087), 1, sym_tag_linefeed, - ACTIONS(8156), 1, + ACTIONS(5163), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, sym_identifier, - STATE(822), 1, + STATE(2549), 1, sym_component_body, - STATE(4348), 2, + STATE(4395), 2, sym_component_attribute, aux_sym_component_repeat1, - [9588] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7963), 1, - anon_sym_LBRACK, - ACTIONS(7965), 1, - sym_private_property_identifier, - ACTIONS(7961), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [9604] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8271), 1, - anon_sym_LBRACK, - ACTIONS(8273), 1, - sym_private_property_identifier, - ACTIONS(8269), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [9620] = 4, + [9550] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_COLON, - ACTIONS(7737), 1, - anon_sym_EQ, - ACTIONS(8275), 4, - sym__automatic_semicolon, - sym_tag_linefeed, - anon_sym_SEMI, - sym_identifier, - [9636] = 2, + ACTIONS(2902), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [9562] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2782), 6, + ACTIONS(2906), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9648] = 4, + [9574] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(8216), 1, + sym_identifier, + STATE(889), 1, + sym_component_body, + STATE(4395), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [9594] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8327), 1, + sym_identifier, + ACTIONS(8330), 1, + anon_sym_COMMA, + ACTIONS(8333), 1, + anon_sym_RPAREN, + STATE(4215), 3, + sym__tag_call_argument, + sym_tag_call_attribute, + aux_sym_tag_call_arguments_repeat1, + [9612] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8277), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4168), 2, + STATE(4208), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - ACTIONS(8280), 3, + ACTIONS(2115), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [9664] = 2, + [9628] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3068), 6, + ACTIONS(2922), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9676] = 2, + [9640] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3068), 6, + ACTIONS(3054), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9688] = 2, + [9652] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2692), 6, + ACTIONS(3058), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9700] = 2, + [9664] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2790), 6, + ACTIONS(3058), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9712] = 2, + [9676] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(2794), 6, + ACTIONS(8335), 1, + sym_identifier, + ACTIONS(8337), 1, + anon_sym_COMMA, + ACTIONS(8339), 1, + anon_sym_RPAREN, + STATE(4226), 3, + sym__tag_call_argument, + sym_tag_call_attribute, + aux_sym_tag_call_arguments_repeat1, + [9694] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(3062), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9724] = 6, + [9706] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(5172), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(748), 1, - sym_component_body, - STATE(4348), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [9744] = 4, + STATE(4235), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + ACTIONS(2115), 3, + sym__parameter_separator, + anon_sym_COMMA, + anon_sym_RPAREN, + [9722] = 5, ACTIONS(129), 1, sym_comment, - STATE(4976), 1, - sym_import_attribute, - ACTIONS(7711), 2, + ACTIONS(8311), 1, + sym_identifier, + ACTIONS(8315), 1, + sym_tag_linefeed, + ACTIONS(8341), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [9760] = 2, + STATE(4230), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [9740] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2798), 6, + ACTIONS(3066), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9772] = 2, + [9752] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(2806), 6, + ACTIONS(8335), 1, + sym_identifier, + ACTIONS(8343), 1, + anon_sym_COMMA, + ACTIONS(8345), 1, + anon_sym_RPAREN, + STATE(4215), 3, + sym__tag_call_argument, + sym_tag_call_attribute, + aux_sym_tag_call_arguments_repeat1, + [9770] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(3070), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9784] = 2, + [9782] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2810), 6, + ACTIONS(3074), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9796] = 2, + [9794] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2814), 6, + ACTIONS(2272), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9808] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7910), 1, - anon_sym_LBRACK, - ACTIONS(7912), 1, - sym_private_property_identifier, - ACTIONS(7908), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [9824] = 4, + [9806] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8284), 1, - anon_sym_LBRACK, - ACTIONS(8286), 1, - sym_private_property_identifier, - ACTIONS(8282), 4, + ACTIONS(8347), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [9840] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5079), 1, + ACTIONS(8352), 1, sym_tag_linefeed, - ACTIONS(5092), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - sym_identifier, - STATE(4200), 1, - sym_component_body, - STATE(4348), 2, + ACTIONS(8350), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(4230), 2, sym_component_attribute, aux_sym_component_repeat1, - [9860] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7560), 1, - anon_sym_DOT, - ACTIONS(8288), 1, - sym_array_return_suffix, - STATE(3859), 1, - aux_sym_path_repeat1, - ACTIONS(7580), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [9878] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8290), 1, - anon_sym_COMMA, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(6005), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - [9894] = 2, + [9824] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2734), 6, + ACTIONS(3078), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9906] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8293), 1, - anon_sym_SEMI, - ACTIONS(8295), 1, - sym__automatic_semicolon, - STATE(4854), 1, - sym_import_attribute, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [9924] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - sym_identifier, - STATE(2488), 1, - sym_component_body, - STATE(4348), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [9944] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2150), 1, - anon_sym_DQUOTE, - ACTIONS(2152), 1, - anon_sym_SQUOTE, - ACTIONS(8136), 1, - sym_identifier, - STATE(4835), 1, - sym_import_specifier, - STATE(5068), 2, - sym__module_export_name, - sym_string, - [9964] = 2, + [9836] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3036), 6, + ACTIONS(2914), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9976] = 2, + [9848] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2786), 6, + ACTIONS(3082), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [9988] = 2, + [9860] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2818), 6, + ACTIONS(3086), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10000] = 2, + [9872] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8355), 1, + sym_identifier, + STATE(4235), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + ACTIONS(8358), 3, + sym__parameter_separator, + anon_sym_COMMA, + anon_sym_RPAREN, + [9888] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2848), 6, + ACTIONS(2698), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10012] = 2, + [9900] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3044), 6, + ACTIONS(2698), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10024] = 2, + [9912] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2716), 6, + ACTIONS(3090), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10036] = 4, + [9924] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(2230), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2228), 4, sym_identifier, - STATE(4218), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - ACTIONS(2121), 3, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - [10052] = 2, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [9938] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3078), 6, + ACTIONS(3094), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10064] = 2, + [9950] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2726), 6, + ACTIONS(3010), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10076] = 2, + [9962] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2726), 6, + ACTIONS(2898), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10088] = 2, + [9974] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(2738), 6, + ACTIONS(7618), 1, + anon_sym_DOT, + ACTIONS(8360), 1, + sym_array_return_suffix, + STATE(3913), 1, + aux_sym_path_repeat1, + ACTIONS(7638), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [9992] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2982), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10100] = 2, + [10004] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2822), 6, + ACTIONS(2926), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10112] = 2, + [10016] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2338), 6, + ACTIONS(2702), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10124] = 2, + [10028] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3016), 6, + ACTIONS(2706), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10136] = 2, + [10040] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2826), 6, + ACTIONS(2930), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10148] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8297), 1, - sym_identifier, - ACTIONS(8299), 1, - anon_sym_COMMA, - ACTIONS(8301), 1, - anon_sym_RPAREN, - STATE(4229), 3, - sym__tag_call_argument, - sym_tag_call_attribute, - aux_sym_tag_call_arguments_repeat1, - [10166] = 2, + [10052] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3020), 6, + ACTIONS(2934), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10178] = 2, + [10064] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3024), 6, + ACTIONS(2938), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10190] = 2, + [10076] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8335), 1, + sym_identifier, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8364), 1, + anon_sym_RPAREN, + STATE(4215), 3, + sym__tag_call_argument, + sym_tag_call_attribute, + aux_sym_tag_call_arguments_repeat1, + [10094] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7936), 1, + anon_sym_LBRACK, + ACTIONS(8072), 1, + sym_private_property_identifier, + ACTIONS(8070), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [10110] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8370), 1, + sym_private_property_identifier, + ACTIONS(8366), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [10126] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3032), 6, + ACTIONS(2910), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10202] = 2, + [10138] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3074), 6, + ACTIONS(2946), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10214] = 2, + [10150] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3074), 6, + ACTIONS(8372), 1, + anon_sym_COMMA, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(6092), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + [10166] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8311), 1, + sym_identifier, + ACTIONS(8315), 1, + sym_tag_linefeed, + ACTIONS(8375), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(4230), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [10184] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8311), 1, + sym_identifier, + ACTIONS(8315), 1, + sym_tag_linefeed, + ACTIONS(8377), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(4224), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [10202] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2950), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10226] = 2, + [10214] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(2830), 6, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5157), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, + sym_identifier, + STATE(684), 1, + sym_component_body, + STATE(4395), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [10234] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2950), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10238] = 6, + [10246] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(8156), 1, - sym_identifier, - STATE(910), 1, - sym_component_body, - STATE(4348), 2, - sym_component_attribute, - aux_sym_component_repeat1, + ACTIONS(8379), 6, + anon_sym_In, + anon_sym_in, + anon_sym_IN, + anon_sym_Of, + anon_sym_of, + anon_sym_OF, [10258] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7560), 1, + ACTIONS(8335), 1, + sym_identifier, + ACTIONS(8381), 1, + anon_sym_COMMA, + ACTIONS(8383), 1, + anon_sym_RPAREN, + STATE(4251), 3, + sym__tag_call_argument, + sym_tag_call_attribute, + aux_sym_tag_call_arguments_repeat1, + [10276] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7618), 1, anon_sym_DOT, - ACTIONS(8303), 1, + ACTIONS(8385), 1, sym_array_return_suffix, - STATE(3859), 1, + STATE(3913), 1, aux_sym_path_repeat1, - ACTIONS(7586), 3, + ACTIONS(7642), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [10276] = 2, + [10294] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2730), 6, + ACTIONS(2710), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10288] = 2, + [10306] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2730), 6, + STATE(4870), 1, + sym_import_attribute, + ACTIONS(7739), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [10322] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(3014), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10300] = 4, + [10334] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(2238), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2236), 4, sym_identifier, - STATE(4287), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - ACTIONS(2125), 3, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - [10316] = 2, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [10348] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2802), 6, + ACTIONS(2894), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10328] = 5, + [10360] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7560), 1, - anon_sym_DOT, - ACTIONS(8305), 1, - sym_array_return_suffix, - STATE(3859), 1, - aux_sym_path_repeat1, - ACTIONS(7573), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [10346] = 4, + ACTIONS(2918), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [10372] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4168), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - ACTIONS(2125), 3, + ACTIONS(8387), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [10362] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2802), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [10374] = 2, + [10388] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2834), 6, + ACTIONS(2714), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10386] = 2, + [10400] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2838), 6, + ACTIONS(2296), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10398] = 2, + [10412] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2844), 6, + ACTIONS(3018), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10410] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7882), 1, - anon_sym_LBRACK, - ACTIONS(7989), 1, - sym_private_property_identifier, - ACTIONS(7985), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [10426] = 4, + [10424] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8239), 1, + ACTIONS(8098), 1, anon_sym_LBRACK, - ACTIONS(8309), 1, + ACTIONS(8100), 1, sym_private_property_identifier, - ACTIONS(8307), 4, + ACTIONS(8096), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [10442] = 2, + [10440] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3082), 6, + ACTIONS(2942), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10454] = 2, + [10452] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3012), 6, + ACTIONS(2718), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10466] = 2, + [10464] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(2852), 6, + ACTIONS(2146), 1, + anon_sym_DQUOTE, + ACTIONS(2148), 1, + anon_sym_SQUOTE, + ACTIONS(7968), 1, + sym_identifier, + STATE(4933), 1, + sym_import_specifier, + STATE(5191), 2, + sym__module_export_name, + sym_string, + [10484] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2722), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10478] = 2, + [10496] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2856), 6, + ACTIONS(2954), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10490] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8297), 1, - sym_identifier, - ACTIONS(8311), 1, - anon_sym_COMMA, - ACTIONS(8313), 1, - anon_sym_RPAREN, - STATE(4295), 3, - sym__tag_call_argument, - sym_tag_call_attribute, - aux_sym_tag_call_arguments_repeat1, - [10508] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8297), 1, - sym_identifier, - ACTIONS(8315), 1, - anon_sym_COMMA, - ACTIONS(8317), 1, - anon_sym_RPAREN, - STATE(4295), 3, - sym__tag_call_argument, - sym_tag_call_attribute, - aux_sym_tag_call_arguments_repeat1, - [10526] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8319), 1, - sym_identifier, - ACTIONS(8323), 1, - sym_tag_linefeed, - ACTIONS(8321), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(4152), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [10544] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8319), 1, - sym_identifier, - ACTIONS(8323), 1, - sym_tag_linefeed, - ACTIONS(8325), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(4305), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [10562] = 2, + [10508] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2734), 6, + ACTIONS(2954), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10574] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(5186), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - sym_identifier, - STATE(486), 1, - sym_component_body, - STATE(4348), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [10594] = 2, + [10520] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2920), 6, + ACTIONS(2958), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10606] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8327), 6, - anon_sym_In, - anon_sym_in, - anon_sym_IN, - anon_sym_Of, - anon_sym_of, - anon_sym_OF, - [10618] = 2, + [10532] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2860), 6, + ACTIONS(2958), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10630] = 2, + [10544] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2864), 6, + ACTIONS(2726), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10642] = 2, + [10556] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3040), 6, + ACTIONS(2730), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10654] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8297), 1, - sym_identifier, - ACTIONS(8329), 1, - anon_sym_COMMA, - ACTIONS(8331), 1, - anon_sym_RPAREN, - STATE(4230), 3, - sym__tag_call_argument, - sym_tag_call_attribute, - aux_sym_tag_call_arguments_repeat1, - [10672] = 6, + [10568] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(5087), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - sym_identifier, - STATE(609), 1, - sym_component_body, - STATE(4348), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [10692] = 2, + ACTIONS(2734), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [10580] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2868), 6, + ACTIONS(2738), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10704] = 2, + [10592] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2872), 6, + ACTIONS(2742), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10716] = 2, + [10604] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2876), 6, + ACTIONS(2746), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10728] = 2, + [10616] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2936), 6, + ACTIONS(2750), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10740] = 2, + [10628] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2936), 6, + ACTIONS(2974), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10752] = 2, + [10640] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2880), 6, + ACTIONS(2754), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10764] = 2, + [10652] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2884), 6, + ACTIONS(2758), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10776] = 3, + [10664] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2302), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2300), 4, + ACTIONS(7936), 1, + anon_sym_LBRACK, + ACTIONS(7938), 1, + sym_private_property_identifier, + ACTIONS(7934), 4, sym_identifier, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [10790] = 4, - ACTIONS(129), 1, - sym_comment, - STATE(4807), 1, - sym_import_attribute, - ACTIONS(7760), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [10806] = 2, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [10680] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2888), 6, + ACTIONS(2762), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10818] = 2, + [10692] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2892), 6, + ACTIONS(2986), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10830] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5476), 1, - anon_sym_COMMA, - ACTIONS(6116), 1, - anon_sym_RBRACE, - STATE(4574), 1, - aux_sym_object_repeat1, - ACTIONS(5608), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [10848] = 2, + [10704] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2896), 6, + ACTIONS(2986), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10860] = 2, + [10716] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2900), 6, + ACTIONS(2766), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10872] = 2, + [10728] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, + sym_identifier, + STATE(721), 1, + sym_component_body, + STATE(4395), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [10748] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8389), 1, + anon_sym_SEMI, + ACTIONS(8391), 1, + sym__automatic_semicolon, + STATE(5027), 1, + sym_import_attribute, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [10766] = 4, + ACTIONS(129), 1, + sym_comment, + STATE(5021), 1, + sym_import_attribute, + ACTIONS(7800), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [10782] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8395), 1, + sym_private_property_identifier, + ACTIONS(8393), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [10798] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2904), 6, + ACTIONS(2770), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10884] = 2, + [10810] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8124), 1, + anon_sym_LBRACK, + ACTIONS(8126), 1, + sym_private_property_identifier, + ACTIONS(8122), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [10826] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8399), 1, + anon_sym_LBRACK, + ACTIONS(8401), 1, + sym_private_property_identifier, + ACTIONS(8397), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [10842] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2908), 6, + ACTIONS(2774), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10896] = 2, + [10854] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2912), 6, + ACTIONS(2778), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10908] = 2, + [10866] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2916), 6, + ACTIONS(2962), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10920] = 2, + [10878] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2750), 6, + ACTIONS(2782), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10932] = 2, + [10890] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3086), 6, + ACTIONS(2786), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10944] = 2, + [10902] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2754), 6, + ACTIONS(2790), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10956] = 2, + [10914] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2924), 6, + ACTIONS(2966), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [10968] = 4, + [10926] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4168), 2, + STATE(4235), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - ACTIONS(8223), 3, + ACTIONS(8220), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [10984] = 3, + [10942] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2280), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2278), 4, + ACTIONS(7936), 1, + anon_sym_LBRACK, + ACTIONS(8078), 1, + sym_private_property_identifier, + ACTIONS(8076), 4, sym_identifier, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [10998] = 2, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [10958] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2928), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [11010] = 2, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8405), 1, + sym_private_property_identifier, + ACTIONS(8403), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [10974] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2932), 6, + ACTIONS(2794), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11022] = 2, + [10986] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2940), 6, + ACTIONS(2798), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11034] = 2, + [10998] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2696), 6, + ACTIONS(2802), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11046] = 2, + [11010] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2944), 6, + ACTIONS(2970), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11058] = 2, + [11022] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2948), 6, + ACTIONS(2806), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11070] = 2, + [11034] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(2754), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [11082] = 4, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5165), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, + sym_identifier, + STATE(2825), 1, + sym_component_body, + STATE(4395), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [11054] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(7942), 1, sym_identifier, - STATE(4160), 2, + STATE(4271), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - ACTIONS(8223), 3, + ACTIONS(8220), 3, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - [11098] = 2, + [11070] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2952), 6, + ACTIONS(2810), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11110] = 2, + [11082] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2956), 6, + ACTIONS(2814), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11122] = 2, + [11094] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2960), 6, + ACTIONS(2818), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11134] = 2, + [11106] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5484), 1, + anon_sym_COMMA, + ACTIONS(6043), 1, + anon_sym_RBRACE, + STATE(4809), 1, + aux_sym_object_repeat1, + ACTIONS(5624), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [11124] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2964), 6, + ACTIONS(2822), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11146] = 2, + [11136] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2968), 6, + ACTIONS(2826), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11158] = 2, + [11148] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2972), 6, + ACTIONS(2830), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11170] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7900), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_private_property_identifier, - ACTIONS(7898), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [11186] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8335), 1, - anon_sym_LBRACK, - ACTIONS(8337), 1, - sym_private_property_identifier, - ACTIONS(8333), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [11202] = 2, + [11160] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2976), 6, + ACTIONS(2834), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11214] = 2, + [11172] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2980), 6, + ACTIONS(2838), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11226] = 2, + [11184] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2984), 6, + ACTIONS(2842), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11238] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8025), 1, - anon_sym_LBRACK, - ACTIONS(8027), 1, - sym_private_property_identifier, - ACTIONS(8023), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [11254] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8341), 1, - anon_sym_LBRACK, - ACTIONS(8343), 1, - sym_private_property_identifier, - ACTIONS(8339), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [11270] = 4, + [11196] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, + ACTIONS(5087), 1, + sym_tag_linefeed, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, sym_identifier, - STATE(4168), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - ACTIONS(2119), 3, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - [11286] = 4, + STATE(589), 1, + sym_component_body, + STATE(4395), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [11216] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7876), 1, - sym_identifier, - STATE(4264), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - ACTIONS(2119), 3, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - [11302] = 2, + ACTIONS(2846), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11228] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2988), 6, + ACTIONS(2850), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11314] = 2, + [11240] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(2758), 6, + ACTIONS(8407), 1, + anon_sym_SEMI, + ACTIONS(8409), 1, + sym__automatic_semicolon, + STATE(5064), 1, + sym_import_attribute, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [11258] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2854), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11326] = 6, + [11270] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, + ACTIONS(5087), 1, sym_tag_linefeed, - ACTIONS(5139), 1, + ACTIONS(5147), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(8216), 1, sym_identifier, - STATE(3207), 1, + STATE(2742), 1, sym_component_body, - STATE(4348), 2, + STATE(4395), 2, sym_component_attribute, aux_sym_component_repeat1, - [11346] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8183), 6, - sym__automatic_semicolon, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [11358] = 5, + [11290] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8345), 1, - anon_sym_SEMI, - ACTIONS(8347), 1, - sym__automatic_semicolon, - STATE(4881), 1, - sym_import_attribute, - ACTIONS(7713), 3, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [11376] = 6, + ACTIONS(2858), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11302] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, + ACTIONS(5087), 1, sym_tag_linefeed, - ACTIONS(5092), 1, + ACTIONS(5095), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(8216), 1, sym_identifier, - STATE(4143), 1, + STATE(4227), 1, sym_component_body, - STATE(4348), 2, + STATE(4395), 2, sym_component_attribute, aux_sym_component_repeat1, - [11396] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8349), 1, - sym_identifier, - ACTIONS(8352), 1, - anon_sym_COMMA, - ACTIONS(8355), 1, - anon_sym_RPAREN, - STATE(4295), 3, - sym__tag_call_argument, - sym_tag_call_attribute, - aux_sym_tag_call_arguments_repeat1, - [11414] = 4, + [11322] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7882), 1, - anon_sym_LBRACK, - ACTIONS(7912), 1, - sym_private_property_identifier, - ACTIONS(7908), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [11430] = 4, + ACTIONS(2862), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11334] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8239), 1, - anon_sym_LBRACK, - ACTIONS(8286), 1, - sym_private_property_identifier, - ACTIONS(8282), 4, - sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [11446] = 6, + ACTIONS(2866), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11346] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, + ACTIONS(5087), 1, sym_tag_linefeed, - ACTIONS(5178), 1, + ACTIONS(5188), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(8216), 1, sym_identifier, - STATE(2880), 1, + STATE(2483), 1, sym_component_body, - STATE(4348), 2, + STATE(4395), 2, sym_component_attribute, aux_sym_component_repeat1, - [11466] = 2, + [11366] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2978), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11378] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2870), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11390] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2978), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11402] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2700), 6, + ACTIONS(2874), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11478] = 2, + [11414] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2704), 6, + ACTIONS(2878), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11490] = 2, + [11426] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2708), 6, + ACTIONS(2882), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11502] = 2, + [11438] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2712), 6, + ACTIONS(2886), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11514] = 2, + [11450] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2992), 6, + ACTIONS(3022), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11526] = 2, + [11462] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2996), 6, + ACTIONS(2890), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11538] = 5, + [11474] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8164), 1, + anon_sym_LBRACK, + ACTIONS(8166), 1, + sym_private_property_identifier, + ACTIONS(8162), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [11490] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8413), 1, + anon_sym_LBRACK, + ACTIONS(8415), 1, + sym_private_property_identifier, + ACTIONS(8411), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [11506] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7936), 1, + anon_sym_LBRACK, + ACTIONS(8048), 1, + sym_private_property_identifier, + ACTIONS(8044), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [11522] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8319), 1, + ACTIONS(8309), 1, + sym_private_property_identifier, + ACTIONS(8368), 1, + anon_sym_LBRACK, + ACTIONS(8305), 4, sym_identifier, - ACTIONS(8323), 1, - sym_tag_linefeed, - ACTIONS(8357), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(4152), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [11556] = 2, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [11538] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2722), 6, - anon_sym_Else, - anon_sym_else, - anon_sym_ELSE, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [11568] = 4, + STATE(4900), 1, + sym_import_attribute, + ACTIONS(7727), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(7729), 3, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [11554] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7987), 1, - anon_sym_LBRACK, - ACTIONS(7989), 1, + ACTIONS(7938), 1, sym_private_property_identifier, - ACTIONS(7985), 4, + ACTIONS(7946), 1, + anon_sym_LBRACK, + ACTIONS(7934), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [11584] = 4, + [11570] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8309), 1, + ACTIONS(8395), 1, sym_private_property_identifier, - ACTIONS(8359), 1, + ACTIONS(8417), 1, anon_sym_LBRACK, - ACTIONS(8307), 4, + ACTIONS(8393), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [11600] = 2, + [11586] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8285), 6, + sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [11598] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3000), 6, + ACTIONS(3026), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11612] = 2, + [11610] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7618), 1, + anon_sym_DOT, + ACTIONS(8419), 1, + sym_array_return_suffix, + STATE(3913), 1, + aux_sym_path_repeat1, + ACTIONS(7629), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [11628] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3004), 6, + ACTIONS(3030), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11624] = 2, + [11640] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3008), 6, + ACTIONS(3034), 6, anon_sym_Else, anon_sym_else, anon_sym_ELSE, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [11636] = 5, + [11652] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7560), 1, + ACTIONS(7618), 1, anon_sym_DOT, - ACTIONS(8361), 1, + ACTIONS(8421), 1, sym_array_return_suffix, - STATE(3859), 1, + STATE(3913), 1, aux_sym_path_repeat1, - ACTIONS(7582), 3, + ACTIONS(7640), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [11654] = 5, + [11670] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(3038), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11682] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7560), 1, + ACTIONS(7618), 1, anon_sym_DOT, - ACTIONS(8363), 1, + ACTIONS(8423), 1, sym_array_return_suffix, - STATE(3859), 1, + STATE(3913), 1, aux_sym_path_repeat1, - ACTIONS(7584), 3, + ACTIONS(7627), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [11672] = 6, + [11700] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5079), 1, - sym_tag_linefeed, - ACTIONS(5184), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - sym_identifier, - STATE(2519), 1, - sym_component_body, - STATE(4348), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [11692] = 5, + ACTIONS(3042), 6, + anon_sym_Else, + anon_sym_else, + anon_sym_ELSE, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [11712] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7560), 1, + ACTIONS(7618), 1, anon_sym_DOT, - ACTIONS(8365), 1, + ACTIONS(8425), 1, sym_array_return_suffix, - STATE(3859), 1, + STATE(3913), 1, aux_sym_path_repeat1, - ACTIONS(7588), 3, + ACTIONS(7631), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [11710] = 5, + [11730] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8319), 1, - sym_identifier, - ACTIONS(8323), 1, - sym_tag_linefeed, - ACTIONS(8367), 2, + STATE(4902), 1, + sym_import_attribute, + ACTIONS(7741), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(4152), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [11728] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8369), 1, - anon_sym_SEMI, - ACTIONS(8371), 1, - sym__automatic_semicolon, - STATE(4785), 1, - sym_import_attribute, - ACTIONS(7713), 3, + ACTIONS(7729), 3, anon_sym_With, anon_sym_with, anon_sym_WITH, - [11746] = 3, + [11746] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_EQ, - ACTIONS(5214), 4, - sym__parameter_separator, + ACTIONS(8311), 1, + sym_identifier, + ACTIONS(8427), 1, + anon_sym_DQUOTE, + ACTIONS(8429), 1, + anon_sym_SQUOTE, + STATE(4581), 2, + sym_component_attribute, + sym_string, + [11763] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(6323), 1, + anon_sym_COMMA, + ACTIONS(8431), 1, + anon_sym_RPAREN, + ACTIONS(8433), 1, + anon_sym_AMP, + STATE(4373), 1, + aux_sym_query_expression_repeat1, + STATE(4706), 1, + aux_sym_sequence_expression_repeat1, + [11782] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(6323), 1, anon_sym_COMMA, + ACTIONS(8433), 1, + anon_sym_AMP, + ACTIONS(8435), 1, anon_sym_RPAREN, - sym_identifier, - [11759] = 4, + STATE(4579), 1, + aux_sym_query_expression_repeat1, + STATE(4720), 1, + aux_sym_sequence_expression_repeat1, + [11801] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8373), 1, - anon_sym_COLON, - ACTIONS(8375), 1, + ACTIONS(8437), 1, anon_sym_EQ, - ACTIONS(8275), 3, - sym_tag_linefeed, - anon_sym_LBRACE, + STATE(4642), 1, + sym__initializer, + ACTIONS(5126), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [11816] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8260), 1, + anon_sym_EQ, + ACTIONS(5218), 4, + sym__parameter_separator, + anon_sym_COMMA, + anon_sym_RPAREN, sym_identifier, - [11774] = 5, + [11829] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8439), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8379), 1, + ACTIONS(8441), 1, anon_sym_BQUOTE, - ACTIONS(8381), 1, + ACTIONS(8443), 1, sym__template_chars, - STATE(4376), 2, + STATE(4398), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [11791] = 3, + [11846] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8383), 1, - anon_sym_EQ, - ACTIONS(5214), 4, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2146), 1, + anon_sym_DQUOTE, + ACTIONS(2148), 1, + anon_sym_SQUOTE, + ACTIONS(8445), 1, sym_identifier, - [11804] = 3, + STATE(4862), 2, + sym_component_attribute, + sym_string, + [11863] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8387), 1, - sym_private_property_identifier, - ACTIONS(8385), 4, + ACTIONS(8360), 1, + sym_array_return_suffix, + ACTIONS(8447), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [11817] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8391), 1, - anon_sym_EQ, - STATE(4652), 1, - sym__initializer, - ACTIONS(8389), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [11832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2314), 2, - sym_unescaped_double_string_fragment, - sym_hash_empty, - ACTIONS(2312), 3, - anon_sym_DQUOTE, - anon_sym_DQUOTE_DQUOTE, - anon_sym_POUND, - [11845] = 5, + ACTIONS(8449), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [11878] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8439), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8393), 1, + ACTIONS(8451), 1, anon_sym_BQUOTE, - ACTIONS(8395), 1, + ACTIONS(8453), 1, sym__template_chars, - STATE(4359), 2, + STATE(4410), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [11862] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8397), 1, - anon_sym_RPAREN, - ACTIONS(8399), 1, - anon_sym_AMP, - STATE(4536), 1, - aux_sym_query_expression_repeat1, - STATE(4601), 1, - aux_sym_sequence_expression_repeat1, - [11881] = 4, + [11895] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8401), 1, + ACTIONS(7707), 1, + anon_sym_LBRACK, + ACTIONS(8455), 1, sym_identifier, - ACTIONS(6123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(4389), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [11896] = 6, + STATE(5075), 1, + sym_nested_identifier, + STATE(5291), 2, + sym_array_pattern, + sym__destructuring_pattern, + [11912] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8399), 1, + ACTIONS(8433), 1, anon_sym_AMP, - ACTIONS(8403), 1, + ACTIONS(8457), 1, anon_sym_RPAREN, - STATE(4344), 1, + STATE(4412), 1, aux_sym_query_expression_repeat1, - STATE(4750), 1, + STATE(4767), 1, aux_sym_sequence_expression_repeat1, - [11915] = 6, + [11931] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8399), 1, + ACTIONS(8433), 1, anon_sym_AMP, - ACTIONS(8405), 1, + ACTIONS(8459), 1, anon_sym_RPAREN, - STATE(4337), 1, + STATE(4384), 1, aux_sym_query_expression_repeat1, - STATE(4656), 1, + STATE(4667), 1, aux_sym_sequence_expression_repeat1, - [11934] = 4, + [11950] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8305), 1, - sym_array_return_suffix, - ACTIONS(8407), 1, + ACTIONS(8463), 1, + sym_private_property_identifier, + ACTIONS(8461), 4, sym_identifier, - ACTIONS(8409), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [11949] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8391), 1, - anon_sym_EQ, - STATE(4670), 1, - sym__initializer, - ACTIONS(8411), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [11964] = 6, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [11963] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8399), 1, + ACTIONS(8433), 1, anon_sym_AMP, - ACTIONS(8413), 1, + ACTIONS(8465), 1, anon_sym_RPAREN, - STATE(4390), 1, + STATE(4579), 1, aux_sym_query_expression_repeat1, - STATE(4754), 1, + STATE(4670), 1, aux_sym_sequence_expression_repeat1, - [11983] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8377), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8381), 1, - sym__template_chars, - ACTIONS(8415), 1, - anon_sym_BQUOTE, - STATE(4376), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [12000] = 2, + [11982] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5230), 5, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(8467), 1, sym_identifier, - [12011] = 5, + ACTIONS(8358), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(4385), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [11997] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(8319), 1, + ACTIONS(8470), 1, sym_identifier, - ACTIONS(8417), 1, + ACTIONS(8472), 1, + anon_sym_LPAREN, + ACTIONS(8474), 1, anon_sym_DQUOTE, - ACTIONS(8419), 1, + ACTIONS(8476), 1, anon_sym_SQUOTE, - STATE(4472), 2, - sym_component_attribute, - sym_string, - [12028] = 4, + STATE(4764), 1, + sym_parenthesized_expression, + [12016] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(5089), 1, sym_identifier, - STATE(4449), 1, + STATE(4538), 1, sym__plain_declarator, - ACTIONS(5083), 3, + ACTIONS(5091), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - [12043] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8399), 1, - anon_sym_AMP, - ACTIONS(8421), 1, - anon_sym_RPAREN, - STATE(4536), 1, - aux_sym_query_expression_repeat1, - STATE(4662), 1, - aux_sym_sequence_expression_repeat1, - [12062] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8399), 1, - anon_sym_AMP, - ACTIONS(8423), 1, - anon_sym_RPAREN, - STATE(4339), 1, - aux_sym_query_expression_repeat1, - STATE(4646), 1, - aux_sym_sequence_expression_repeat1, - [12081] = 6, - ACTIONS(129), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8399), 1, - anon_sym_AMP, - ACTIONS(8425), 1, - anon_sym_RPAREN, - STATE(4536), 1, - aux_sym_query_expression_repeat1, - STATE(4655), 1, - aux_sym_sequence_expression_repeat1, - [12100] = 6, + [12031] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(7701), 5, + sym__parameter_separator, anon_sym_COMMA, - ACTIONS(8399), 1, - anon_sym_AMP, - ACTIONS(8427), 1, anon_sym_RPAREN, - STATE(4341), 1, - aux_sym_query_expression_repeat1, - STATE(4664), 1, - aux_sym_sequence_expression_repeat1, - [12119] = 6, + anon_sym_EQ, + sym_identifier, + [12042] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8399), 1, - anon_sym_AMP, - ACTIONS(8429), 1, - anon_sym_RPAREN, - STATE(4536), 1, - aux_sym_query_expression_repeat1, - STATE(4667), 1, - aux_sym_sequence_expression_repeat1, - [12138] = 5, + ACTIONS(8480), 1, + sym_private_property_identifier, + ACTIONS(8478), 4, + sym_identifier, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [12055] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8482), 1, sym_identifier, - ACTIONS(8431), 1, - anon_sym_DQUOTE, - ACTIONS(8433), 1, - anon_sym_SQUOTE, - STATE(4777), 2, - sym_component_attribute, - sym_string, - [12155] = 4, + ACTIONS(6274), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(4385), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [12070] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5610), 1, + ACTIONS(8486), 1, anon_sym_EQ, - ACTIONS(5608), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(6627), 2, + STATE(4750), 1, + sym__initializer, + ACTIONS(8484), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [12170] = 6, + anon_sym_SEMI, + [12085] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8399), 1, + ACTIONS(8433), 1, anon_sym_AMP, - ACTIONS(8435), 1, + ACTIONS(8488), 1, anon_sym_RPAREN, - STATE(4536), 1, + STATE(4579), 1, aux_sym_query_expression_repeat1, - STATE(4765), 1, + STATE(4732), 1, aux_sym_sequence_expression_repeat1, - [12189] = 5, + [12104] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8439), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8381), 1, - sym__template_chars, - ACTIONS(8437), 1, + ACTIONS(8490), 1, anon_sym_BQUOTE, + ACTIONS(8492), 1, + sym__template_chars, STATE(4376), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [12206] = 2, + [12121] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(7655), 5, - sym__parameter_separator, + ACTIONS(6323), 1, anon_sym_COMMA, + ACTIONS(8433), 1, + anon_sym_AMP, + ACTIONS(8494), 1, anon_sym_RPAREN, - anon_sym_EQ, - sym_identifier, - [12217] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8377), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8439), 1, - anon_sym_BQUOTE, - ACTIONS(8441), 1, - sym__template_chars, - STATE(4351), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [12234] = 5, + STATE(4579), 1, + aux_sym_query_expression_repeat1, + STATE(4701), 1, + aux_sym_sequence_expression_repeat1, + [12140] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8256), 1, + ACTIONS(8350), 1, anon_sym_LBRACE, - ACTIONS(8443), 1, + ACTIONS(8496), 1, sym_identifier, - ACTIONS(8446), 1, + ACTIONS(8499), 1, sym_tag_linefeed, - STATE(4348), 2, + STATE(4395), 2, sym_component_attribute, aux_sym_component_repeat1, - [12251] = 4, + [12157] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(5089), 1, sym_identifier, - STATE(4682), 1, + STATE(4478), 1, sym__plain_declarator, - ACTIONS(5083), 3, + ACTIONS(5091), 3, anon_sym_Default, anon_sym_default, anon_sym_DEFAULT, - [12266] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7651), 1, - anon_sym_LBRACK, - ACTIONS(8449), 1, - sym_identifier, - STATE(4866), 1, - sym_nested_identifier, - STATE(5160), 2, - sym_array_pattern, - sym__destructuring_pattern, - [12283] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8377), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8381), 1, - sym__template_chars, - ACTIONS(8451), 1, - anon_sym_BQUOTE, - STATE(4376), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [12300] = 3, + [12172] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6702), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5608), 3, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(5624), 2, anon_sym_LPAREN, anon_sym_COLON, - anon_sym_EQ, - [12313] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8288), 1, - sym_array_return_suffix, - ACTIONS(8453), 1, - sym_identifier, - ACTIONS(8455), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [12328] = 5, + ACTIONS(6719), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [12187] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8457), 1, + ACTIONS(8505), 1, anon_sym_BQUOTE, - ACTIONS(8459), 1, + ACTIONS(8507), 1, sym__template_chars, - STATE(4364), 2, + STATE(4398), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [12345] = 5, + [12204] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, - anon_sym_LBRACK, - ACTIONS(8461), 1, + ACTIONS(8315), 1, + sym_tag_linefeed, + ACTIONS(8510), 1, sym_identifier, - STATE(4867), 1, - sym_nested_identifier, - STATE(5259), 2, - sym_array_pattern, - sym__destructuring_pattern, - [12362] = 5, + STATE(5314), 1, + sym_path, + STATE(4200), 2, + sym_component_attribute, + aux_sym_component_repeat1, + [12221] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8439), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8381), 1, + ACTIONS(8443), 1, sym__template_chars, - ACTIONS(8463), 1, + ACTIONS(8512), 1, anon_sym_BQUOTE, - STATE(4376), 2, + STATE(4398), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [12379] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8401), 1, - sym_identifier, - ACTIONS(5991), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(4389), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [12394] = 3, + [12238] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8467), 1, + ACTIONS(8516), 1, sym_private_property_identifier, - ACTIONS(8465), 4, + ACTIONS(8514), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [12407] = 5, + [12251] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8486), 1, + anon_sym_EQ, + STATE(4821), 1, + sym__initializer, + ACTIONS(8518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [12266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2510), 2, + sym_unescaped_double_string_fragment, + sym_hash_empty, + ACTIONS(2508), 3, + anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE, + anon_sym_POUND, + [12279] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(6323), 1, + anon_sym_COMMA, + ACTIONS(8433), 1, + anon_sym_AMP, + ACTIONS(8520), 1, + anon_sym_RPAREN, + STATE(4392), 1, + aux_sym_query_expression_repeat1, + STATE(4609), 1, + aux_sym_sequence_expression_repeat1, + [12298] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8439), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8381), 1, - sym__template_chars, - ACTIONS(8469), 1, + ACTIONS(8522), 1, anon_sym_BQUOTE, - STATE(4376), 2, + ACTIONS(8524), 1, + sym__template_chars, + STATE(4434), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [12424] = 5, + [12315] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(2150), 1, - anon_sym_DQUOTE, - ACTIONS(2152), 1, - anon_sym_SQUOTE, - ACTIONS(8471), 1, - sym_identifier, - STATE(4963), 2, - sym_component_attribute, - sym_string, - [12441] = 4, + ACTIONS(8439), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8443), 1, + sym__template_chars, + ACTIONS(8526), 1, + anon_sym_BQUOTE, + STATE(4398), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [12332] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(5081), 1, - sym_identifier, - STATE(4456), 1, - sym__plain_declarator, - ACTIONS(5083), 3, - anon_sym_Default, - anon_sym_default, - anon_sym_DEFAULT, - [12456] = 5, + ACTIONS(6323), 1, + anon_sym_COMMA, + ACTIONS(8433), 1, + anon_sym_AMP, + ACTIONS(8528), 1, + anon_sym_RPAREN, + STATE(4408), 1, + aux_sym_query_expression_repeat1, + STATE(4739), 1, + aux_sym_sequence_expression_repeat1, + [12351] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, - anon_sym_LBRACK, - ACTIONS(8473), 1, - sym_identifier, - STATE(4907), 1, - sym_nested_identifier, - STATE(5060), 2, - sym_array_pattern, - sym__destructuring_pattern, - [12473] = 5, + ACTIONS(6323), 1, + anon_sym_COMMA, + ACTIONS(8433), 1, + anon_sym_AMP, + ACTIONS(8530), 1, + anon_sym_RPAREN, + STATE(4579), 1, + aux_sym_query_expression_repeat1, + STATE(4765), 1, + aux_sym_sequence_expression_repeat1, + [12370] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8439), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8475), 1, + ACTIONS(8532), 1, anon_sym_BQUOTE, - ACTIONS(8477), 1, + ACTIONS(8534), 1, sym__template_chars, - STATE(4345), 2, + STATE(4445), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [12490] = 5, + [12387] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8439), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8381), 1, + ACTIONS(8443), 1, sym__template_chars, - ACTIONS(8479), 1, + ACTIONS(8536), 1, anon_sym_BQUOTE, - STATE(4376), 2, + STATE(4398), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [12507] = 3, + [12404] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8538), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_With, + anon_sym_with, + anon_sym_WITH, + [12415] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(6323), 1, + anon_sym_COMMA, + ACTIONS(8433), 1, + anon_sym_AMP, + ACTIONS(8540), 1, + anon_sym_RPAREN, + STATE(4579), 1, + aux_sym_query_expression_repeat1, + STATE(4770), 1, + aux_sym_sequence_expression_repeat1, + [12434] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8385), 1, + sym_array_return_suffix, + ACTIONS(8542), 1, + sym_identifier, + ACTIONS(8544), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [12449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 2, + ACTIONS(2510), 2, sym_unescaped_single_string_fragment, sym_hash_empty, - ACTIONS(2312), 3, + ACTIONS(2508), 3, anon_sym_SQUOTE, anon_sym_SQUOTE_SQUOTE, anon_sym_POUND, - [12520] = 4, + [12462] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(8216), 1, sym_identifier, - STATE(4462), 1, - sym__plain_declarator, - ACTIONS(5083), 3, - anon_sym_Default, - anon_sym_default, - anon_sym_DEFAULT, - [12535] = 3, + ACTIONS(8546), 1, + anon_sym_DQUOTE, + ACTIONS(8548), 1, + anon_sym_SQUOTE, + STATE(4754), 2, + sym_component_attribute, + sym_string, + [12479] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8483), 1, + ACTIONS(8552), 1, sym_private_property_identifier, - ACTIONS(8481), 4, + ACTIONS(8550), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [12548] = 4, + [12492] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8401), 1, + ACTIONS(8482), 1, sym_identifier, - ACTIONS(6673), 2, + ACTIONS(6127), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(4389), 2, + STATE(4385), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [12563] = 2, + [12507] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8439), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8443), 1, + sym__template_chars, + ACTIONS(8554), 1, + anon_sym_BQUOTE, + STATE(4398), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [12524] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7647), 5, + ACTIONS(8556), 1, + anon_sym_EQ, + ACTIONS(5230), 4, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, sym_identifier, - [12574] = 3, + [12537] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8487), 1, + ACTIONS(8561), 1, sym_private_property_identifier, - ACTIONS(8485), 4, + ACTIONS(8559), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [12587] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8401), 1, - sym_identifier, - ACTIONS(5895), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(4389), 2, - sym_parameter_attribute, - aux_sym_throw_statement_repeat1, - [12602] = 6, + [12550] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(7703), 5, + sym__parameter_separator, anon_sym_COMMA, - ACTIONS(8399), 1, - anon_sym_AMP, - ACTIONS(8489), 1, anon_sym_RPAREN, - STATE(4326), 1, - aux_sym_query_expression_repeat1, - STATE(4600), 1, - aux_sym_sequence_expression_repeat1, - [12621] = 3, + anon_sym_EQ, + sym_identifier, + [12561] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8493), 1, - sym_private_property_identifier, - ACTIONS(8491), 4, + ACTIONS(8419), 1, + sym_array_return_suffix, + ACTIONS(8563), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [12634] = 5, + ACTIONS(8565), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [12576] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8495), 1, - anon_sym_BQUOTE, - ACTIONS(8497), 1, - sym__template_chars, - STATE(4320), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [12651] = 4, + ACTIONS(6705), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5624), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [12589] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(8421), 1, + sym_array_return_suffix, + ACTIONS(8567), 1, sym_identifier, - STATE(4401), 1, - sym__plain_declarator, - ACTIONS(5083), 3, - anon_sym_Default, - anon_sym_default, - anon_sym_DEFAULT, - [12666] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8499), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8502), 1, - anon_sym_BQUOTE, - ACTIONS(8504), 1, - sym__template_chars, - STATE(4376), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [12683] = 5, + ACTIONS(8569), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [12604] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8507), 1, - anon_sym_BQUOTE, - ACTIONS(8509), 1, - sym__template_chars, - STATE(4356), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [12700] = 3, + ACTIONS(7707), 1, + anon_sym_LBRACK, + ACTIONS(8571), 1, + sym_identifier, + STATE(5042), 1, + sym_nested_identifier, + STATE(5220), 2, + sym_array_pattern, + sym__destructuring_pattern, + [12621] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8513), 1, - sym_private_property_identifier, - ACTIONS(8511), 4, + ACTIONS(7707), 1, + anon_sym_LBRACK, + ACTIONS(8573), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [12713] = 3, + STATE(5046), 1, + sym_nested_identifier, + STATE(5224), 2, + sym_array_pattern, + sym__destructuring_pattern, + [12638] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8515), 1, + ACTIONS(8575), 1, anon_sym_EQ, - ACTIONS(5230), 4, + ACTIONS(5218), 4, sym__parameter_separator, anon_sym_COMMA, anon_sym_RPAREN, sym_identifier, - [12726] = 3, + [12651] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8520), 1, - sym_private_property_identifier, - ACTIONS(8518), 4, + ACTIONS(8482), 1, sym_identifier, - anon_sym_New, - anon_sym_new, - anon_sym_NEW, - [12739] = 4, + ACTIONS(6028), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(4385), 2, + sym_parameter_attribute, + aux_sym_throw_statement_repeat1, + [12666] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8401), 1, + ACTIONS(8482), 1, sym_identifier, - ACTIONS(6371), 2, + ACTIONS(6105), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(4389), 2, + STATE(4385), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [12754] = 4, + [12681] = 6, + ACTIONS(129), 1, + sym_comment, + ACTIONS(6323), 1, + anon_sym_COMMA, + ACTIONS(8433), 1, + anon_sym_AMP, + ACTIONS(8577), 1, + anon_sym_RPAREN, + STATE(4440), 1, + aux_sym_query_expression_repeat1, + STATE(4794), 1, + aux_sym_sequence_expression_repeat1, + [12700] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7707), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(4896), 1, + sym_nested_identifier, + STATE(5126), 2, + sym_array_pattern, + sym__destructuring_pattern, + [12717] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5089), 1, + sym_identifier, + STATE(4763), 1, + sym__plain_declarator, + ACTIONS(5091), 3, + anon_sym_Default, + anon_sym_default, + anon_sym_DEFAULT, + [12732] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5089), 1, + sym_identifier, + STATE(4457), 1, + sym__plain_declarator, + ACTIONS(5091), 3, + anon_sym_Default, + anon_sym_default, + anon_sym_DEFAULT, + [12747] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8361), 1, + ACTIONS(8439), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8443), 1, + sym__template_chars, + ACTIONS(8581), 1, + anon_sym_BQUOTE, + STATE(4398), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [12764] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8423), 1, sym_array_return_suffix, - ACTIONS(8522), 1, + ACTIONS(8583), 1, sym_identifier, - ACTIONS(8524), 3, + ACTIONS(8585), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [12769] = 4, + [12779] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8363), 1, + ACTIONS(8425), 1, sym_array_return_suffix, - ACTIONS(8526), 1, + ACTIONS(8587), 1, sym_identifier, - ACTIONS(8528), 3, + ACTIONS(8589), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [12784] = 5, + [12794] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8323), 1, - sym_tag_linefeed, - ACTIONS(8530), 1, + ACTIONS(5230), 5, + sym__parameter_separator, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, sym_identifier, - STATE(5295), 1, - sym_path, - STATE(4316), 2, - sym_component_attribute, - aux_sym_component_repeat1, - [12801] = 5, + [12805] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(8532), 1, + ACTIONS(8591), 1, sym_identifier, - STATE(5038), 1, + STATE(4982), 1, sym_nested_identifier, - STATE(5164), 2, + STATE(5338), 2, sym_array_pattern, sym__destructuring_pattern, - [12818] = 5, + [12822] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7707), 1, anon_sym_LBRACK, - ACTIONS(8534), 1, + ACTIONS(8593), 1, sym_identifier, - STATE(4779), 1, + STATE(4985), 1, sym_nested_identifier, - STATE(5205), 2, + STATE(5346), 2, sym_array_pattern, sym__destructuring_pattern, - [12835] = 6, + [12839] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(8536), 1, - sym_identifier, - ACTIONS(8538), 1, - anon_sym_LPAREN, - ACTIONS(8540), 1, - anon_sym_DQUOTE, - ACTIONS(8542), 1, - anon_sym_SQUOTE, - STATE(4738), 1, - sym_parenthesized_expression, - [12854] = 4, + ACTIONS(6323), 1, + anon_sym_COMMA, + ACTIONS(8433), 1, + anon_sym_AMP, + ACTIONS(8595), 1, + anon_sym_RPAREN, + STATE(4579), 1, + aux_sym_query_expression_repeat1, + STATE(4771), 1, + aux_sym_sequence_expression_repeat1, + [12858] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8544), 1, + ACTIONS(8597), 1, + anon_sym_COLON, + ACTIONS(8599), 1, anon_sym_EQ, - STATE(4578), 1, - sym__initializer, - ACTIONS(5120), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [12869] = 4, + ACTIONS(8297), 3, + sym_tag_linefeed, + anon_sym_LBRACE, + sym_identifier, + [12873] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8546), 1, + ACTIONS(8482), 1, sym_identifier, - ACTIONS(8280), 2, + ACTIONS(6669), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(4389), 2, + STATE(4385), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [12884] = 6, + [12888] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(8601), 1, + anon_sym_EQ, + ACTIONS(5230), 4, + sym__parameter_separator, anon_sym_COMMA, - ACTIONS(8399), 1, - anon_sym_AMP, - ACTIONS(8549), 1, anon_sym_RPAREN, - STATE(4536), 1, - aux_sym_query_expression_repeat1, - STATE(4573), 1, - aux_sym_sequence_expression_repeat1, - [12903] = 4, + sym_identifier, + [12901] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8401), 1, + ACTIONS(8606), 1, + sym_private_property_identifier, + ACTIONS(8604), 4, sym_identifier, - ACTIONS(6364), 2, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [12914] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8439), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8443), 1, + sym__template_chars, + ACTIONS(8608), 1, + anon_sym_BQUOTE, + STATE(4398), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [12931] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8482), 1, + sym_identifier, + ACTIONS(6799), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(4389), 2, + STATE(4385), 2, sym_parameter_attribute, aux_sym_throw_statement_repeat1, - [12918] = 6, + [12946] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8399), 1, - anon_sym_AMP, - ACTIONS(8551), 1, - anon_sym_RPAREN, - STATE(4395), 1, - aux_sym_query_expression_repeat1, - STATE(4759), 1, - aux_sym_sequence_expression_repeat1, - [12937] = 3, + ACTIONS(8439), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8610), 1, + anon_sym_BQUOTE, + ACTIONS(8612), 1, + sym__template_chars, + STATE(4406), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [12963] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8439), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8614), 1, + anon_sym_BQUOTE, + ACTIONS(8616), 1, + sym__template_chars, + STATE(4418), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [12980] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8555), 1, + ACTIONS(8620), 1, sym_private_property_identifier, - ACTIONS(8553), 4, + ACTIONS(8618), 4, sym_identifier, anon_sym_New, anon_sym_new, anon_sym_NEW, - [12950] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8557), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_With, - anon_sym_with, - anon_sym_WITH, - [12961] = 6, + [12993] = 6, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8399), 1, + ACTIONS(8433), 1, anon_sym_AMP, - ACTIONS(8559), 1, + ACTIONS(8622), 1, anon_sym_RPAREN, - STATE(4536), 1, + STATE(4394), 1, aux_sym_query_expression_repeat1, - STATE(4764), 1, + STATE(4674), 1, aux_sym_sequence_expression_repeat1, - [12980] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8365), 1, - sym_array_return_suffix, - ACTIONS(8561), 1, - sym_identifier, - ACTIONS(8563), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [12995] = 4, + [13012] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8303), 1, - sym_array_return_suffix, - ACTIONS(8565), 1, + ACTIONS(8626), 1, + sym_private_property_identifier, + ACTIONS(8624), 4, sym_identifier, - ACTIONS(8567), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [13010] = 5, + anon_sym_New, + anon_sym_new, + anon_sym_NEW, + [13025] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7651), 1, - anon_sym_LBRACK, - ACTIONS(8569), 1, + ACTIONS(5089), 1, sym_identifier, - STATE(4904), 1, - sym_nested_identifier, - STATE(5311), 2, - sym_array_pattern, - sym__destructuring_pattern, - [13027] = 5, + STATE(4552), 1, + sym__plain_declarator, + ACTIONS(5091), 3, + anon_sym_Default, + anon_sym_default, + anon_sym_DEFAULT, + [13040] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(8439), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8571), 1, + ACTIONS(8628), 1, anon_sym_BQUOTE, - ACTIONS(8573), 1, + ACTIONS(8630), 1, sym__template_chars, - STATE(4333), 2, + STATE(4400), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [13044] = 3, + [13057] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8575), 1, - anon_sym_EQ, - ACTIONS(5230), 4, + ACTIONS(1989), 1, sym__parameter_separator, - anon_sym_COMMA, + ACTIONS(2035), 1, anon_sym_RPAREN, - sym_identifier, - [13057] = 5, + ACTIONS(2037), 1, + anon_sym_COMMA, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + [13073] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - ACTIONS(8580), 1, + ACTIONS(8634), 1, anon_sym_SEMI, - ACTIONS(8582), 1, + ACTIONS(8636), 1, sym__automatic_semicolon, - STATE(4427), 1, + STATE(4582), 1, aux_sym_variable_declaration_repeat2, - [13073] = 5, + [13089] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8584), 1, - sym_identifier, - ACTIONS(8586), 1, + ACTIONS(7812), 1, anon_sym_EQ, - STATE(1219), 1, + ACTIONS(8214), 1, + sym_identifier, + STATE(1263), 1, sym_formal_parameters, - [13089] = 5, + [13105] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - ACTIONS(8588), 1, + ACTIONS(8638), 1, anon_sym_SEMI, - ACTIONS(8590), 1, + ACTIONS(8640), 1, sym__automatic_semicolon, - STATE(4488), 1, + STATE(4506), 1, aux_sym_variable_declaration_repeat2, - [13105] = 5, + [13121] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8592), 1, - sym_identifier, - ACTIONS(8594), 1, - anon_sym_EQ, - STATE(1230), 1, - sym_formal_parameters, - [13121] = 4, + ACTIONS(8632), 1, + anon_sym_COMMA, + ACTIONS(8642), 1, + anon_sym_SEMI, + ACTIONS(8644), 1, + sym__automatic_semicolon, + STATE(4582), 1, + aux_sym_variable_declaration_repeat2, + [13137] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5608), 1, - anon_sym_COLON, - ACTIONS(5610), 1, - anon_sym_EQ, - ACTIONS(8596), 2, + ACTIONS(2117), 1, + anon_sym_RPAREN, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(8646), 2, + sym__parameter_separator, anon_sym_COMMA, - anon_sym_RBRACE, - [13135] = 5, + [13151] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8598), 1, - anon_sym_EQ, - STATE(1249), 1, - sym_formal_parameters, - [13151] = 3, + ACTIONS(8649), 1, + anon_sym_LBRACE, + STATE(4955), 1, + sym_statement_block, + ACTIONS(8651), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [13165] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8575), 1, - anon_sym_EQ, - ACTIONS(5230), 3, + ACTIONS(2230), 4, + sym__parameter_separator, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [13163] = 5, + anon_sym_RPAREN, + sym_identifier, + [13175] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8600), 1, + ACTIONS(3358), 1, + anon_sym_COMMA, + ACTIONS(8653), 1, anon_sym_EQ, - STATE(1249), 1, - sym_formal_parameters, - [13179] = 5, + ACTIONS(8655), 1, + anon_sym_RBRACK, + STATE(4679), 1, + aux_sym_array_pattern_repeat1, + [13191] = 5, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8602), 1, + ACTIONS(8657), 1, anon_sym_RBRACE, - STATE(4614), 1, + STATE(4636), 1, aux_sym_object_pattern_repeat1, - STATE(4615), 1, + STATE(4717), 1, aux_sym_object_repeat1, - [13195] = 5, + [13207] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, - anon_sym_COMMA, - ACTIONS(8604), 1, - anon_sym_SEMI, - ACTIONS(8606), 1, - sym__automatic_semicolon, - STATE(4488), 1, - aux_sym_variable_declaration_repeat2, - [13211] = 2, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8659), 1, + sym_identifier, + ACTIONS(8661), 1, + anon_sym_EQ, + STATE(1263), 1, + sym_formal_parameters, + [13223] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(5230), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8663), 1, + sym_identifier, + ACTIONS(8665), 1, anon_sym_EQ, - anon_sym_RBRACK, - [13221] = 4, + STATE(1252), 1, + sym_formal_parameters, + [13239] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8667), 1, sym_identifier, - ACTIONS(8317), 1, - anon_sym_RPAREN, - STATE(4741), 2, - sym__tag_call_argument, - sym_tag_call_attribute, - [13235] = 5, + ACTIONS(8669), 1, + anon_sym_EQ, + STATE(1282), 1, + sym_formal_parameters, + [13255] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8385), 1, + sym_array_return_suffix, + ACTIONS(7642), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [13267] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(8214), 1, sym_identifier, - ACTIONS(8608), 1, + ACTIONS(8671), 1, anon_sym_EQ, - STATE(1249), 1, + STATE(1263), 1, sym_formal_parameters, - [13251] = 5, + [13283] = 5, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, - anon_sym_COMMA, - ACTIONS(8610), 1, - anon_sym_SEMI, - ACTIONS(8612), 1, - sym__automatic_semicolon, - STATE(4488), 1, - aux_sym_variable_declaration_repeat2, - [13267] = 4, + ACTIONS(8673), 1, + anon_sym_RBRACE, + STATE(4760), 1, + aux_sym_object_pattern_repeat1, + STATE(4778), 1, + aux_sym_object_repeat1, + [13299] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4519), 1, + STATE(4491), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8616), 2, + ACTIONS(8677), 2, sym__automatic_semicolon, anon_sym_SEMI, - [13281] = 5, + [13313] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8618), 1, - sym_identifier, - ACTIONS(8620), 1, - anon_sym_EQ, - STATE(1262), 1, - sym_formal_parameters, - [13297] = 2, + ACTIONS(1959), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_AMP, + [13323] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8256), 4, + ACTIONS(8675), 1, + anon_sym_COMMA, + STATE(4491), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8679), 2, sym__automatic_semicolon, - sym_tag_linefeed, anon_sym_SEMI, - sym_identifier, - [13307] = 5, + [13337] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8584), 1, - sym_identifier, - ACTIONS(8622), 1, - anon_sym_EQ, - STATE(1219), 1, - sym_formal_parameters, - [13323] = 5, + ACTIONS(8632), 1, + anon_sym_COMMA, + ACTIONS(8681), 1, + anon_sym_SEMI, + ACTIONS(8683), 1, + sym__automatic_semicolon, + STATE(4582), 1, + aux_sym_variable_declaration_repeat2, + [13353] = 5, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(7693), 1, - anon_sym_EQ, - ACTIONS(8160), 1, - sym_identifier, - STATE(1249), 1, - sym_formal_parameters, - [13339] = 5, + ACTIONS(8685), 1, + anon_sym_RBRACE, + STATE(4705), 1, + aux_sym_object_pattern_repeat1, + STATE(4717), 1, + aux_sym_object_repeat1, + [13369] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2093), 1, - anon_sym_RPAREN, - ACTIONS(8624), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - [13355] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8592), 1, - sym_identifier, - ACTIONS(8626), 1, - anon_sym_EQ, - STATE(1230), 1, - sym_formal_parameters, - [13371] = 5, + ACTIONS(8687), 1, + anon_sym_SEMI, + ACTIONS(8689), 1, + sym__automatic_semicolon, + STATE(4582), 1, + aux_sym_variable_declaration_repeat2, + [13385] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - ACTIONS(8630), 1, - anon_sym_COLON, ACTIONS(8632), 1, - anon_sym_EQ, - STATE(4840), 1, - sym_formal_parameters, - [13387] = 5, + anon_sym_COMMA, + ACTIONS(8691), 1, + anon_sym_SEMI, + ACTIONS(8693), 1, + sym__automatic_semicolon, + STATE(4473), 1, + aux_sym_variable_declaration_repeat2, + [13401] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_COMMA, - ACTIONS(8634), 1, - anon_sym_EQ, - ACTIONS(8636), 1, - anon_sym_RBRACK, - STATE(4735), 1, - aux_sym_array_pattern_repeat1, - [13403] = 5, - ACTIONS(117), 1, + ACTIONS(8675), 1, anon_sym_COMMA, + STATE(4493), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8695), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [13415] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8638), 1, - anon_sym_RBRACE, - STATE(4733), 1, - aux_sym_object_pattern_repeat1, - STATE(4734), 1, - aux_sym_object_repeat1, - [13419] = 2, + ACTIONS(8632), 1, + anon_sym_COMMA, + ACTIONS(8697), 1, + anon_sym_SEMI, + ACTIONS(8699), 1, + sym__automatic_semicolon, + STATE(4455), 1, + aux_sym_variable_declaration_repeat2, + [13431] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8640), 4, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8214), 1, sym_identifier, - [13429] = 4, + ACTIONS(8701), 1, + anon_sym_EQ, + STATE(1263), 1, + sym_formal_parameters, + [13447] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8642), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [13443] = 5, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8214), 1, + sym_identifier, + ACTIONS(8703), 1, + anon_sym_EQ, + STATE(1263), 1, + sym_formal_parameters, + [13463] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - ACTIONS(8644), 1, + ACTIONS(8705), 1, anon_sym_SEMI, - ACTIONS(8646), 1, + ACTIONS(8707), 1, sym__automatic_semicolon, - STATE(4488), 1, + STATE(4543), 1, aux_sym_variable_declaration_repeat2, - [13459] = 5, + [13479] = 5, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8648), 1, + ACTIONS(8709), 1, anon_sym_RBRACE, - STATE(4733), 1, - aux_sym_object_pattern_repeat1, - STATE(4734), 1, + STATE(4613), 1, aux_sym_object_repeat1, - [13475] = 5, + STATE(4705), 1, + aux_sym_object_pattern_repeat1, + [13495] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(8214), 1, sym_identifier, - ACTIONS(8650), 1, + ACTIONS(8262), 1, anon_sym_EQ, - STATE(1249), 1, + STATE(1263), 1, sym_formal_parameters, - [13491] = 4, + [13511] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8616), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [13505] = 4, + ACTIONS(8335), 1, + sym_identifier, + ACTIONS(8711), 1, + anon_sym_RPAREN, + STATE(4622), 2, + sym__tag_call_argument, + sym_tag_call_attribute, + [13525] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(2121), 1, - anon_sym_RPAREN, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(8652), 2, - sym__parameter_separator, + ACTIONS(8713), 1, + sym_identifier, + ACTIONS(8715), 1, + anon_sym_DQUOTE, + ACTIONS(8717), 1, + anon_sym_SQUOTE, + STATE(2136), 1, + sym_string, + [13541] = 5, + ACTIONS(117), 1, anon_sym_COMMA, - [13519] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_COMMA, - ACTIONS(8634), 1, - anon_sym_EQ, - ACTIONS(8655), 1, - anon_sym_RBRACK, - STATE(4757), 1, - aux_sym_array_pattern_repeat1, - [13535] = 4, + ACTIONS(8719), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_pattern_repeat1, + STATE(4756), 1, + aux_sym_object_repeat1, + [13557] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4426), 1, + STATE(4470), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8657), 2, + ACTIONS(8721), 2, sym__automatic_semicolon, anon_sym_SEMI, - [13549] = 5, + [13571] = 5, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8659), 1, + ACTIONS(8723), 1, anon_sym_RBRACE, - STATE(4728), 1, + STATE(4705), 1, aux_sym_object_pattern_repeat1, - STATE(4729), 1, + STATE(4756), 1, aux_sym_object_repeat1, - [13565] = 5, + [13587] = 5, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8661), 1, + ACTIONS(8725), 1, anon_sym_RBRACE, - STATE(4728), 1, + STATE(4663), 1, aux_sym_object_pattern_repeat1, - STATE(4734), 1, + STATE(4665), 1, aux_sym_object_repeat1, - [13581] = 4, + [13603] = 5, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(4783), 1, - sym_statement_block, - ACTIONS(8665), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [13595] = 2, + ACTIONS(8727), 1, + anon_sym_RBRACE, + STATE(4663), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + [13619] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2009), 4, + ACTIONS(8729), 1, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_AMP, - [13605] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(2302), 4, + STATE(4491), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8732), 2, sym__automatic_semicolon, - sym_tag_linefeed, anon_sym_SEMI, - sym_identifier, - [13615] = 4, + [13633] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2061), 1, + anon_sym_RPAREN, + ACTIONS(2063), 1, anon_sym_COMMA, - STATE(4490), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8667), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [13629] = 4, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + [13649] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4516), 1, + STATE(4491), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8667), 2, + ACTIONS(8721), 2, sym__automatic_semicolon, anon_sym_SEMI, - [13643] = 5, + [13663] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2011), 1, + ACTIONS(2053), 1, anon_sym_COMMA, - ACTIONS(2013), 1, + ACTIONS(2055), 1, anon_sym_RPAREN, - STATE(4431), 1, + STATE(4459), 1, aux_sym_formal_parameters_repeat1, - [13659] = 5, + [13679] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym_identifier, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(1243), 1, - sym_formal_parameters, - [13675] = 5, + ACTIONS(7747), 1, + anon_sym_STAR, + ACTIONS(7749), 1, + anon_sym_LBRACE, + STATE(5149), 2, + sym_namespace_import, + sym_named_imports, + [13693] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2023), 1, anon_sym_COMMA, - ACTIONS(8673), 1, - anon_sym_SEMI, - ACTIONS(8675), 1, - sym__automatic_semicolon, - STATE(4488), 1, - aux_sym_variable_declaration_repeat2, - [13691] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym_identifier, - ACTIONS(8677), 1, - anon_sym_EQ, - STATE(1243), 1, - sym_formal_parameters, - [13707] = 5, + ACTIONS(2025), 1, + anon_sym_RPAREN, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + [13709] = 5, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8679), 1, + ACTIONS(8734), 1, anon_sym_RBRACE, - STATE(4564), 1, - aux_sym_object_repeat1, - STATE(4728), 1, + STATE(4760), 1, aux_sym_object_pattern_repeat1, - [13723] = 5, + STATE(4778), 1, + aux_sym_object_repeat1, + [13725] = 5, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8162), 1, - anon_sym_EQ, - ACTIONS(8618), 1, - sym_identifier, - STATE(1262), 1, - sym_formal_parameters, - [13739] = 5, + ACTIONS(8736), 1, + anon_sym_RBRACE, + STATE(4705), 1, + aux_sym_object_pattern_repeat1, + STATE(4782), 1, + aux_sym_object_repeat1, + [13741] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(8214), 1, sym_identifier, - ACTIONS(8681), 1, + ACTIONS(8738), 1, anon_sym_EQ, - STATE(1249), 1, + STATE(1263), 1, sym_formal_parameters, - [13755] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2061), 1, - anon_sym_RPAREN, - ACTIONS(8193), 1, - anon_sym_COMMA, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - [13771] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8578), 1, - anon_sym_COMMA, - ACTIONS(8683), 1, - anon_sym_SEMI, - ACTIONS(8685), 1, - sym__automatic_semicolon, - STATE(4410), 1, - aux_sym_variable_declaration_repeat2, - [13787] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym_COMMA, - STATE(4505), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(8267), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [13801] = 5, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8687), 1, - anon_sym_RBRACE, - STATE(4563), 1, - aux_sym_object_pattern_repeat1, - STATE(4641), 1, - aux_sym_object_repeat1, - [13817] = 5, + [13757] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(8634), 1, + ACTIONS(8653), 1, anon_sym_EQ, - ACTIONS(8689), 1, + ACTIONS(8740), 1, anon_sym_RBRACK, - STATE(4643), 1, + STATE(4682), 1, aux_sym_array_pattern_repeat1, - [13833] = 4, + [13773] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(5000), 1, - sym_statement_block, - ACTIONS(8665), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [13847] = 5, - ACTIONS(117), 1, + ACTIONS(2238), 4, + sym__parameter_separator, anon_sym_COMMA, + anon_sym_RPAREN, + sym_identifier, + [13783] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8691), 1, - anon_sym_RBRACE, - STATE(4675), 1, - aux_sym_object_pattern_repeat1, - STATE(4677), 1, - aux_sym_object_repeat1, - [13863] = 5, - ACTIONS(117), 1, - anon_sym_COMMA, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8214), 1, + sym_identifier, + ACTIONS(8742), 1, + anon_sym_EQ, + STATE(1263), 1, + sym_formal_parameters, + [13799] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8693), 1, - anon_sym_RBRACE, - STATE(4641), 1, - aux_sym_object_repeat1, - STATE(4728), 1, - aux_sym_object_pattern_repeat1, - [13879] = 5, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8663), 1, + sym_identifier, + ACTIONS(8744), 1, + anon_sym_EQ, + STATE(1252), 1, + sym_formal_parameters, + [13815] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - ACTIONS(8695), 1, - anon_sym_SEMI, - ACTIONS(8697), 1, + STATE(4491), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8746), 2, sym__automatic_semicolon, - STATE(4414), 1, - aux_sym_variable_declaration_repeat2, - [13895] = 5, + anon_sym_SEMI, + [13829] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(8214), 1, sym_identifier, - ACTIONS(8162), 1, + ACTIONS(8748), 1, anon_sym_EQ, - STATE(1249), 1, + STATE(1263), 1, sym_formal_parameters, - [13911] = 5, + [13845] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - ACTIONS(8699), 1, + ACTIONS(8750), 1, anon_sym_SEMI, - ACTIONS(8701), 1, + ACTIONS(8752), 1, sym__automatic_semicolon, - STATE(4488), 1, + STATE(4582), 1, aux_sym_variable_declaration_repeat2, - [13927] = 4, + [13861] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(5829), 4, + sym__parameter_separator, anon_sym_COMMA, - STATE(4440), 1, + anon_sym_RPAREN, + sym_identifier, + [13871] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8675), 1, + anon_sym_COMMA, + STATE(4472), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8703), 2, + ACTIONS(8754), 2, sym__automatic_semicolon, anon_sym_SEMI, - [13941] = 4, + [13885] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4482), 1, + STATE(4550), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8705), 2, + ACTIONS(8756), 2, sym__automatic_semicolon, anon_sym_SEMI, - [13955] = 5, + [13899] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8162), 1, - anon_sym_EQ, - ACTIONS(8707), 1, + ACTIONS(8663), 1, sym_identifier, - STATE(1211), 1, + ACTIONS(8758), 1, + anon_sym_EQ, + STATE(1252), 1, sym_formal_parameters, - [13971] = 5, + [13915] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, - anon_sym_COMMA, - ACTIONS(8709), 1, + ACTIONS(8649), 1, + anon_sym_LBRACE, + STATE(4868), 1, + sym_statement_block, + ACTIONS(8651), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(8711), 1, + [13929] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8760), 1, + sym_identifier, + ACTIONS(8762), 1, + anon_sym_EQ, + STATE(1242), 1, + sym_formal_parameters, + [13945] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2230), 4, sym__automatic_semicolon, - STATE(4492), 1, - aux_sym_variable_declaration_repeat2, - [13987] = 5, + sym_tag_linefeed, + anon_sym_SEMI, + sym_identifier, + [13955] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(6272), 1, anon_sym_COMMA, - ACTIONS(8713), 1, - anon_sym_SEMI, - ACTIONS(8715), 1, + STATE(4534), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(8317), 2, sym__automatic_semicolon, - STATE(4488), 1, - aux_sym_variable_declaration_repeat2, - [14003] = 5, + anon_sym_SEMI, + [13969] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2073), 1, - anon_sym_COMMA, - ACTIONS(2075), 1, + ACTIONS(2065), 1, anon_sym_RPAREN, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - [14019] = 5, - ACTIONS(117), 1, + ACTIONS(8038), 1, anon_sym_COMMA, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + [13985] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8717), 1, - anon_sym_RBRACE, - STATE(4614), 1, - aux_sym_object_pattern_repeat1, - STATE(4615), 1, - aux_sym_object_repeat1, - [14035] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8162), 1, - anon_sym_EQ, - ACTIONS(8669), 1, + ACTIONS(8667), 1, sym_identifier, - STATE(1243), 1, + ACTIONS(8764), 1, + anon_sym_EQ, + STATE(1282), 1, sym_formal_parameters, - [14051] = 5, + [14001] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - ACTIONS(8719), 1, + ACTIONS(8766), 1, anon_sym_SEMI, - ACTIONS(8721), 1, + ACTIONS(8768), 1, sym__automatic_semicolon, - STATE(4458), 1, + STATE(4553), 1, aux_sym_variable_declaration_repeat2, - [14067] = 5, + [14017] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2085), 1, - anon_sym_RPAREN, - ACTIONS(8187), 1, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8770), 1, + sym_identifier, + ACTIONS(8772), 1, + anon_sym_EQ, + STATE(1231), 1, + sym_formal_parameters, + [14033] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - [14083] = 5, + STATE(4491), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8754), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [14047] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2238), 4, + sym__automatic_semicolon, + sym_tag_linefeed, + anon_sym_SEMI, + sym_identifier, + [14057] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(1959), 1, + ACTIONS(8774), 4, + sym__parameter_separator, anon_sym_COMMA, - ACTIONS(1961), 1, anon_sym_RPAREN, - ACTIONS(1979), 1, - sym__parameter_separator, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - [14099] = 5, + sym_identifier, + [14067] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8162), 1, - anon_sym_EQ, - ACTIONS(8584), 1, - sym_identifier, - STATE(1219), 1, - sym_formal_parameters, - [14115] = 4, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2059), 1, + anon_sym_RPAREN, + ACTIONS(8776), 1, + anon_sym_COMMA, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + [14083] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8335), 1, sym_identifier, - ACTIONS(8723), 1, + ACTIONS(8345), 1, anon_sym_RPAREN, - STATE(4741), 2, + STATE(4622), 2, sym__tag_call_argument, sym_tag_call_attribute, - [14129] = 2, + [14097] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8649), 1, + anon_sym_LBRACE, + STATE(5011), 1, + sym_statement_block, + ACTIONS(8651), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [14111] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8725), 4, + ACTIONS(8350), 4, sym__automatic_semicolon, sym_tag_linefeed, anon_sym_SEMI, sym_identifier, - [14139] = 5, + [14121] = 5, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8778), 1, + anon_sym_RBRACE, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(4705), 1, + aux_sym_object_pattern_repeat1, + [14137] = 5, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8780), 1, + anon_sym_RBRACE, + STATE(4613), 1, + aux_sym_object_repeat1, + STATE(4814), 1, + aux_sym_object_pattern_repeat1, + [14153] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2043), 1, + ACTIONS(2067), 1, anon_sym_RPAREN, ACTIONS(8227), 1, anon_sym_COMMA, - STATE(4431), 1, + STATE(4459), 1, aux_sym_formal_parameters_repeat1, - [14155] = 3, + [14169] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8601), 1, anon_sym_EQ, - ACTIONS(5214), 3, + ACTIONS(5230), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [14167] = 5, + [14181] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8162), 1, + ACTIONS(3358), 1, + anon_sym_COMMA, + ACTIONS(8653), 1, anon_sym_EQ, - ACTIONS(8727), 1, + ACTIONS(8782), 1, + anon_sym_RBRACK, + STATE(4740), 1, + aux_sym_array_pattern_repeat1, + [14197] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5230), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_RBRACK, + [14207] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8335), 1, sym_identifier, - STATE(1224), 1, - sym_formal_parameters, - [14183] = 5, + ACTIONS(8784), 1, + anon_sym_RPAREN, + STATE(4622), 2, + sym__tag_call_argument, + sym_tag_call_attribute, + [14221] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8669), 1, - sym_identifier, - ACTIONS(8729), 1, + ACTIONS(8262), 1, anon_sym_EQ, - STATE(1243), 1, + ACTIONS(8760), 1, + sym_identifier, + STATE(1242), 1, sym_formal_parameters, - [14199] = 4, + [14237] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8786), 1, anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8705), 2, + STATE(4534), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(6092), 2, sym__automatic_semicolon, anon_sym_SEMI, - [14213] = 5, + [14251] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8162), 1, - anon_sym_EQ, - ACTIONS(8592), 1, + ACTIONS(8214), 1, sym_identifier, - STATE(1230), 1, + ACTIONS(8789), 1, + anon_sym_EQ, + STATE(1263), 1, sym_formal_parameters, - [14229] = 4, + [14267] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_COMMA, + ACTIONS(1971), 1, + anon_sym_RPAREN, + ACTIONS(1989), 1, + sym__parameter_separator, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + [14283] = 5, ACTIONS(129), 1, sym_comment, + ACTIONS(7810), 1, + anon_sym_LPAREN, ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(5039), 1, - sym_statement_block, - ACTIONS(8665), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [14243] = 4, + sym_identifier, + ACTIONS(8791), 1, + anon_sym_EQ, + STATE(1252), 1, + sym_formal_parameters, + [14299] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - STATE(4477), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8731), 2, - sym__automatic_semicolon, + ACTIONS(8793), 1, anon_sym_SEMI, - [14257] = 2, + ACTIONS(8795), 1, + sym__automatic_semicolon, + STATE(4475), 1, + aux_sym_variable_declaration_repeat2, + [14315] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2302), 4, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, - sym_identifier, - [14267] = 4, + ACTIONS(8649), 1, + anon_sym_LBRACE, + STATE(4837), 1, + sym_statement_block, + ACTIONS(8651), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [14329] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8260), 1, + anon_sym_EQ, + ACTIONS(5218), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [14341] = 5, + ACTIONS(117), 1, anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8733), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [14281] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7677), 1, - anon_sym_STAR, - ACTIONS(7679), 1, - anon_sym_LBRACE, - STATE(5093), 2, - sym_namespace_import, - sym_named_imports, - [14295] = 5, + ACTIONS(8797), 1, + anon_sym_RBRACE, + STATE(4705), 1, + aux_sym_object_pattern_repeat1, + STATE(4782), 1, + aux_sym_object_repeat1, + [14357] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8735), 1, + ACTIONS(8016), 1, anon_sym_EQ, - STATE(1249), 1, + ACTIONS(8663), 1, + sym_identifier, + STATE(1252), 1, sym_formal_parameters, - [14311] = 5, + [14373] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8632), 1, + anon_sym_COMMA, + ACTIONS(8799), 1, + anon_sym_SEMI, + ACTIONS(8801), 1, + sym__automatic_semicolon, + STATE(4582), 1, + aux_sym_variable_declaration_repeat2, + [14389] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2055), 1, + ACTIONS(2069), 1, anon_sym_RPAREN, - ACTIONS(2057), 1, + ACTIONS(8803), 1, anon_sym_COMMA, - STATE(4431), 1, + STATE(4459), 1, aux_sym_formal_parameters_repeat1, - [14327] = 2, + [14405] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(5776), 4, - sym__parameter_separator, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8805), 1, sym_identifier, - [14337] = 2, + STATE(1232), 1, + sym_formal_parameters, + [14421] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2280), 4, - sym__automatic_semicolon, - sym_tag_linefeed, - anon_sym_SEMI, + ACTIONS(8807), 1, sym_identifier, - [14347] = 4, + ACTIONS(8809), 1, + anon_sym_LBRACK, + STATE(4109), 2, + sym_array_pattern, + sym__destructuring_pattern, + [14435] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8737), 1, + ACTIONS(5624), 1, + anon_sym_COLON, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(8811), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [14449] = 5, + ACTIONS(117), 1, anon_sym_COMMA, - STATE(4488), 1, - aux_sym_variable_declaration_repeat2, - ACTIONS(8740), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [14361] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2063), 1, - anon_sym_RPAREN, - ACTIONS(8742), 1, + ACTIONS(8813), 1, + anon_sym_RBRACE, + STATE(4705), 1, + aux_sym_object_pattern_repeat1, + STATE(4782), 1, + aux_sym_object_repeat1, + [14465] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - [14377] = 4, + STATE(4573), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8815), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [14479] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4516), 1, + STATE(4491), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8744), 2, + ACTIONS(8815), 2, sym__automatic_semicolon, anon_sym_SEMI, - [14391] = 4, + [14493] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8667), 1, sym_identifier, - ACTIONS(8746), 1, - anon_sym_RPAREN, - STATE(4741), 2, - sym__tag_call_argument, - sym_tag_call_attribute, - [14405] = 5, + STATE(1282), 1, + sym_formal_parameters, + [14509] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8817), 1, anon_sym_SEMI, - ACTIONS(8750), 1, + ACTIONS(8819), 1, sym__automatic_semicolon, - STATE(4488), 1, + STATE(4576), 1, aux_sym_variable_declaration_repeat2, - [14421] = 5, + [14525] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2059), 1, - anon_sym_RPAREN, - ACTIONS(7896), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - [14437] = 5, + ACTIONS(8821), 1, + anon_sym_SEMI, + ACTIONS(8823), 1, + sym__automatic_semicolon, + STATE(4582), 1, + aux_sym_variable_declaration_repeat2, + [14541] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8598), 1, + ACTIONS(8262), 1, anon_sym_EQ, - ACTIONS(8752), 1, + ACTIONS(8825), 1, sym_identifier, - STATE(1249), 1, + STATE(1224), 1, sym_formal_parameters, - [14453] = 5, + [14557] = 5, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8754), 1, + ACTIONS(8827), 1, anon_sym_RBRACE, - STATE(4564), 1, - aux_sym_object_repeat1, - STATE(4590), 1, + STATE(4776), 1, aux_sym_object_pattern_repeat1, - [14469] = 5, + STATE(4777), 1, + aux_sym_object_repeat1, + [14573] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, - sym__parameter_separator, - ACTIONS(2083), 1, - anon_sym_RPAREN, - ACTIONS(8142), 1, - anon_sym_COMMA, - STATE(4431), 1, - aux_sym_formal_parameters_repeat1, - [14485] = 5, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8663), 1, + sym_identifier, + STATE(1252), 1, + sym_formal_parameters, + [14589] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(7940), 1, + ACTIONS(8262), 1, anon_sym_EQ, - ACTIONS(8669), 1, + ACTIONS(8770), 1, sym_identifier, - STATE(1243), 1, + STATE(1231), 1, sym_formal_parameters, - [14501] = 3, + [14605] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(2221), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2223), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14513] = 4, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8661), 1, + anon_sym_EQ, + ACTIONS(8805), 1, + sym_identifier, + STATE(1232), 1, + sym_formal_parameters, + [14621] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(4909), 1, - sym_statement_block, - ACTIONS(8665), 2, + ACTIONS(8360), 1, + sym_array_return_suffix, + ACTIONS(7638), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [14633] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8675), 1, + anon_sym_COMMA, + STATE(4567), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8829), 2, sym__automatic_semicolon, anon_sym_SEMI, - [14527] = 3, + [14647] = 5, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8383), 1, - anon_sym_EQ, - ACTIONS(5214), 3, - anon_sym_COMMA, + ACTIONS(8831), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - [14539] = 5, + STATE(4705), 1, + aux_sym_object_pattern_repeat1, + STATE(4777), 1, + aux_sym_object_repeat1, + [14663] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2049), 1, - anon_sym_COMMA, - ACTIONS(2051), 1, + ACTIONS(2099), 1, anon_sym_RPAREN, - STATE(4431), 1, + ACTIONS(8278), 1, + anon_sym_COMMA, + STATE(4459), 1, aux_sym_formal_parameters_repeat1, - [14555] = 5, + [14679] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(8214), 1, sym_identifier, - ACTIONS(8756), 1, + ACTIONS(8833), 1, anon_sym_EQ, - STATE(1249), 1, + STATE(1263), 1, sym_formal_parameters, - [14571] = 5, - ACTIONS(117), 1, - anon_sym_COMMA, + [14695] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8758), 1, - anon_sym_RBRACE, - STATE(4629), 1, - aux_sym_object_pattern_repeat1, - STATE(4630), 1, - aux_sym_object_repeat1, - [14587] = 4, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(1993), 1, + anon_sym_RPAREN, + ACTIONS(2005), 1, + anon_sym_COMMA, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + [14711] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8760), 1, - anon_sym_COLON, - ACTIONS(8762), 1, - anon_sym_EQ, - ACTIONS(8275), 2, - anon_sym_COMMA, + ACTIONS(1989), 1, + sym__parameter_separator, + ACTIONS(2077), 1, anon_sym_RPAREN, - [14601] = 4, + ACTIONS(7958), 1, + anon_sym_COMMA, + STATE(4459), 1, + aux_sym_formal_parameters_repeat1, + [14727] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8764), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4505), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(6005), 2, + STATE(4504), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8835), 2, sym__automatic_semicolon, anon_sym_SEMI, - [14615] = 5, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8767), 1, - anon_sym_RBRACE, - STATE(4677), 1, - aux_sym_object_repeat1, - STATE(4728), 1, - aux_sym_object_pattern_repeat1, - [14631] = 2, + [14741] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2280), 4, - sym__parameter_separator, + ACTIONS(8675), 1, anon_sym_COMMA, - anon_sym_RPAREN, - sym_identifier, - [14641] = 4, + STATE(4491), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8835), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [14755] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8769), 1, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8661), 1, + anon_sym_EQ, + ACTIONS(8837), 1, sym_identifier, - ACTIONS(8771), 1, - anon_sym_LBRACK, - STATE(4061), 2, - sym_array_pattern, - sym__destructuring_pattern, - [14655] = 5, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8773), 1, - anon_sym_RBRACE, - STATE(4728), 1, - aux_sym_object_pattern_repeat1, - STATE(4729), 1, - aux_sym_object_repeat1, - [14671] = 3, + STATE(1263), 1, + sym_formal_parameters, + [14771] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8305), 1, - sym_array_return_suffix, - ACTIONS(7573), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [14683] = 3, + ACTIONS(2213), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2215), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [14783] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8515), 1, + ACTIONS(8575), 1, anon_sym_EQ, - ACTIONS(5230), 3, + ACTIONS(5218), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [14695] = 5, + [14795] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8675), 1, + anon_sym_COMMA, + STATE(4519), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8839), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [14809] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8618), 1, + ACTIONS(8214), 1, sym_identifier, - ACTIONS(8775), 1, + ACTIONS(8661), 1, anon_sym_EQ, - STATE(1262), 1, + STATE(1263), 1, sym_formal_parameters, - [14711] = 5, + [14825] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - ACTIONS(8777), 1, - anon_sym_SEMI, - ACTIONS(8779), 1, + STATE(4491), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8841), 2, sym__automatic_semicolon, - STATE(4463), 1, - aux_sym_variable_declaration_repeat2, - [14727] = 4, + anon_sym_SEMI, + [14839] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8663), 1, + sym_identifier, + ACTIONS(8843), 1, + anon_sym_EQ, + STATE(1252), 1, + sym_formal_parameters, + [14855] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8556), 1, + anon_sym_EQ, + ACTIONS(5230), 3, anon_sym_COMMA, - STATE(4522), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8781), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [14741] = 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + [14867] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8632), 1, anon_sym_COMMA, - ACTIONS(8783), 1, + ACTIONS(8845), 1, anon_sym_SEMI, - ACTIONS(8785), 1, + ACTIONS(8847), 1, sym__automatic_semicolon, - STATE(4443), 1, + STATE(4582), 1, aux_sym_variable_declaration_repeat2, - [14757] = 4, + [14883] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8214), 1, + sym_identifier, + ACTIONS(8849), 1, + anon_sym_EQ, + STATE(1263), 1, + sym_formal_parameters, + [14899] = 5, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, + anon_sym_LPAREN, + ACTIONS(8853), 1, + anon_sym_COLON, + ACTIONS(8855), 1, + anon_sym_EQ, + STATE(5082), 1, + sym_formal_parameters, + [14915] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8787), 1, + ACTIONS(8859), 1, + anon_sym_AMP, + STATE(4579), 1, + aux_sym_query_expression_repeat1, + ACTIONS(8857), 2, anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8790), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [14771] = 5, + anon_sym_RPAREN, + [14929] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2079), 1, + ACTIONS(2009), 1, anon_sym_RPAREN, - ACTIONS(2081), 1, + ACTIONS(8160), 1, anon_sym_COMMA, - STATE(4431), 1, + STATE(4459), 1, aux_sym_formal_parameters_repeat1, - [14787] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8578), 1, - anon_sym_COMMA, - ACTIONS(8792), 1, - anon_sym_SEMI, - ACTIONS(8794), 1, - sym__automatic_semicolon, - STATE(4403), 1, - aux_sym_variable_declaration_repeat2, - [14803] = 4, + [14945] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, - anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8796), 2, + ACTIONS(8862), 4, sym__automatic_semicolon, + sym_tag_linefeed, anon_sym_SEMI, - [14817] = 5, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8798), 1, - anon_sym_RBRACE, - STATE(4630), 1, - aux_sym_object_repeat1, - STATE(4728), 1, - aux_sym_object_pattern_repeat1, - [14833] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8598), 1, - anon_sym_EQ, - ACTIONS(8800), 1, sym_identifier, - STATE(1249), 1, - sym_formal_parameters, - [14849] = 4, + [14955] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8864), 1, anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8657), 2, + STATE(4582), 1, + aux_sym_variable_declaration_repeat2, + ACTIONS(8867), 2, sym__automatic_semicolon, anon_sym_SEMI, - [14863] = 4, + [14969] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8335), 1, sym_identifier, - ACTIONS(8313), 1, + ACTIONS(8364), 1, anon_sym_RPAREN, - STATE(4741), 2, + STATE(4622), 2, sym__tag_call_argument, sym_tag_call_attribute, - [14877] = 5, + [14983] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8650), 1, - anon_sym_EQ, - ACTIONS(8727), 1, - sym_identifier, - STATE(1224), 1, - sym_formal_parameters, - [14893] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2087), 1, + ACTIONS(2011), 1, anon_sym_RPAREN, - ACTIONS(8802), 1, + ACTIONS(8274), 1, anon_sym_COMMA, - STATE(4431), 1, + STATE(4459), 1, aux_sym_formal_parameters_repeat1, - [14909] = 5, + [14999] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8598), 1, - anon_sym_EQ, - ACTIONS(8804), 1, + ACTIONS(8770), 1, sym_identifier, - STATE(1249), 1, + ACTIONS(8869), 1, + anon_sym_EQ, + STATE(1231), 1, sym_formal_parameters, - [14925] = 5, + [15015] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8806), 1, + ACTIONS(8661), 1, anon_sym_EQ, - STATE(1249), 1, + ACTIONS(8871), 1, + sym_identifier, + STATE(1263), 1, sym_formal_parameters, - [14941] = 5, + [15031] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8760), 1, sym_identifier, - ACTIONS(8810), 1, - anon_sym_DQUOTE, - ACTIONS(8812), 1, - anon_sym_SQUOTE, - STATE(2083), 1, - sym_string, - [14957] = 5, + ACTIONS(8873), 1, + anon_sym_EQ, + STATE(1242), 1, + sym_formal_parameters, + [15047] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(8851), 1, anon_sym_LPAREN, - ACTIONS(8632), 1, + ACTIONS(8855), 1, anon_sym_EQ, - ACTIONS(8814), 1, + ACTIONS(8875), 1, anon_sym_COLON, - STATE(4840), 1, + STATE(5082), 1, sym_formal_parameters, - [14973] = 5, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8816), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_repeat1, - STATE(4728), 1, - aux_sym_object_pattern_repeat1, - [14989] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8614), 1, - anon_sym_COMMA, - STATE(4430), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8818), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [15003] = 5, + [15063] = 5, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(8877), 1, anon_sym_RBRACE, - STATE(4728), 1, + STATE(4705), 1, aux_sym_object_pattern_repeat1, - STATE(4729), 1, + STATE(4778), 1, aux_sym_object_repeat1, - [15019] = 5, + [15079] = 5, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8822), 1, + ACTIONS(8879), 1, anon_sym_RBRACE, - STATE(4563), 1, + STATE(4612), 1, aux_sym_object_pattern_repeat1, - STATE(4641), 1, + STATE(4756), 1, aux_sym_object_repeat1, - [15035] = 3, + [15095] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(8288), 1, - sym_array_return_suffix, - ACTIONS(7580), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [15047] = 5, + ACTIONS(8632), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, + anon_sym_SEMI, + ACTIONS(8883), 1, + sym__automatic_semicolon, + STATE(4458), 1, + aux_sym_variable_declaration_repeat2, + [15111] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8598), 1, + ACTIONS(8885), 1, + anon_sym_COLON, + ACTIONS(8887), 1, anon_sym_EQ, - ACTIONS(8707), 1, - sym_identifier, - STATE(1211), 1, - sym_formal_parameters, - [15063] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8826), 1, - anon_sym_AMP, - STATE(4536), 1, - aux_sym_query_expression_repeat1, - ACTIONS(8824), 2, + ACTIONS(8297), 2, anon_sym_COMMA, anon_sym_RPAREN, - [15077] = 3, + [15125] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8361), 1, + ACTIONS(8419), 1, sym_array_return_suffix, - ACTIONS(7582), 3, + ACTIONS(7629), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [15089] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8829), 1, - anon_sym_EQ, - STATE(1249), 1, - sym_formal_parameters, - [15105] = 3, + [15137] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8363), 1, + ACTIONS(8421), 1, sym_array_return_suffix, - ACTIONS(7584), 3, + ACTIONS(7640), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [15117] = 5, + [15149] = 5, ACTIONS(129), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1989), 1, sym__parameter_separator, - ACTIONS(2029), 1, + ACTIONS(2013), 1, anon_sym_RPAREN, - ACTIONS(7936), 1, + ACTIONS(8889), 1, anon_sym_COMMA, - STATE(4431), 1, + STATE(4459), 1, aux_sym_formal_parameters_repeat1, - [15133] = 5, + [15165] = 5, + ACTIONS(117), 1, + anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym_identifier, - ACTIONS(8831), 1, - anon_sym_EQ, - STATE(1243), 1, - sym_formal_parameters, - [15149] = 3, + ACTIONS(8891), 1, + anon_sym_RBRACE, + STATE(4636), 1, + aux_sym_object_pattern_repeat1, + STATE(4717), 1, + aux_sym_object_repeat1, + [15181] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(8423), 1, sym_array_return_suffix, - ACTIONS(7588), 3, + ACTIONS(7627), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [15161] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym_identifier, - ACTIONS(8833), 1, - anon_sym_EQ, - STATE(1243), 1, - sym_formal_parameters, - [15177] = 5, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8835), 1, - anon_sym_EQ, - STATE(1249), 1, - sym_formal_parameters, [15193] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8303), 1, + ACTIONS(8425), 1, sym_array_return_suffix, - ACTIONS(7586), 3, + ACTIONS(7631), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, [15205] = 5, - ACTIONS(117), 1, - anon_sym_COMMA, ACTIONS(129), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(7810), 1, + anon_sym_LPAREN, + ACTIONS(8742), 1, + anon_sym_EQ, + ACTIONS(8825), 1, + sym_identifier, + STATE(1224), 1, + sym_formal_parameters, + [15221] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8893), 1, + anon_sym_COMMA, + ACTIONS(8895), 1, anon_sym_RBRACE, - STATE(4675), 1, + STATE(4662), 1, aux_sym_object_pattern_repeat1, - STATE(4677), 1, - aux_sym_object_repeat1, - [15221] = 2, + [15234] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8839), 3, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [15230] = 2, + ACTIONS(8897), 1, + anon_sym_COMMA, + ACTIONS(8900), 1, + anon_sym_RPAREN, + STATE(4601), 1, + aux_sym_component_repeat2, + [15247] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8841), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [15239] = 2, + ACTIONS(6848), 1, + anon_sym_COMMA, + ACTIONS(8902), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [15260] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5157), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15248] = 4, + ACTIONS(8904), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP, + [15269] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(6092), 1, + anon_sym_COLON, + ACTIONS(8906), 1, anon_sym_COMMA, - ACTIONS(8845), 1, - anon_sym_RBRACE, - STATE(4675), 1, - aux_sym_object_pattern_repeat1, - [15261] = 2, + STATE(4604), 1, + aux_sym_sequence_expression_repeat1, + [15282] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7766), 3, - sym__automatic_semicolon, + ACTIONS(8909), 1, anon_sym_COMMA, - anon_sym_SEMI, - [15270] = 2, + ACTIONS(8911), 1, + anon_sym_RPAREN, + STATE(4820), 1, + aux_sym_component_repeat2, + [15295] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8790), 3, - sym__automatic_semicolon, + ACTIONS(5484), 1, anon_sym_COMMA, - anon_sym_SEMI, - [15279] = 4, + ACTIONS(8913), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [15308] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - ACTIONS(8849), 1, - anon_sym_LPAREN, - STATE(3909), 1, - sym_statement_block, - [15292] = 2, + ACTIONS(8893), 1, + anon_sym_COMMA, + ACTIONS(8915), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [15321] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [15301] = 4, + [15330] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8176), 1, - anon_sym_RBRACE, - ACTIONS(8851), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - STATE(4683), 1, - aux_sym_named_imports_repeat1, - [15314] = 2, + ACTIONS(8488), 1, + anon_sym_RPAREN, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [15343] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7766), 3, - sym__automatic_semicolon, + ACTIONS(8893), 1, anon_sym_COMMA, - anon_sym_SEMI, - [15323] = 2, + ACTIONS(8917), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [15356] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7766), 3, - sym__automatic_semicolon, + ACTIONS(1744), 1, anon_sym_COMMA, - anon_sym_SEMI, - [15332] = 4, + ACTIONS(6970), 1, + anon_sym_RPAREN, + STATE(4745), 1, + aux_sym_arguments_repeat1, + [15369] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8853), 1, + ACTIONS(8919), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [15382] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5484), 1, + anon_sym_COMMA, + ACTIONS(8921), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [15345] = 2, + [15395] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7638), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [15404] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8923), 3, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [15413] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7766), 3, + ACTIONS(7834), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [15354] = 4, + [15422] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(8855), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [15367] = 2, + ACTIONS(6888), 1, + anon_sym_RPAREN, + STATE(4650), 1, + aux_sym_arguments_repeat1, + [15435] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2302), 3, - sym_tag_linefeed, - anon_sym_LBRACE, + ACTIONS(8445), 1, sym_identifier, - [15376] = 4, + ACTIONS(8925), 1, + anon_sym_RPAREN, + STATE(4605), 1, + sym_component_attribute, + [15448] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, - anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [15389] = 4, + ACTIONS(5151), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [15457] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8857), 1, + ACTIONS(8927), 1, anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [15402] = 4, + STATE(4828), 1, + aux_sym_object_repeat1, + [15470] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(8859), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [15415] = 4, + ACTIONS(8929), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [15483] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(8333), 3, + anon_sym_COMMA, + anon_sym_RPAREN, sym_identifier, - ACTIONS(7730), 1, - anon_sym_DOT, - STATE(4649), 1, - aux_sym_path_repeat1, - [15428] = 4, + [15492] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(2238), 3, + sym_tag_linefeed, + anon_sym_LBRACE, + sym_identifier, + [15501] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8933), 1, + anon_sym_as, + ACTIONS(8931), 2, anon_sym_COMMA, - ACTIONS(8861), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [15441] = 4, + anon_sym_RBRACE, + [15512] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(6952), 1, + ACTIONS(7008), 1, anon_sym_RPAREN, - STATE(4584), 1, + STATE(4659), 1, aux_sym_arguments_repeat1, - [15454] = 4, + [15525] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(6952), 1, + ACTIONS(6970), 1, anon_sym_RPAREN, - STATE(4672), 1, + STATE(4678), 1, aux_sym_arguments_repeat1, - [15467] = 4, + [15538] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(8935), 1, anon_sym_COMMA, - ACTIONS(8863), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [15480] = 4, + ACTIONS(8937), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_named_imports_repeat1, + [15551] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8471), 1, + ACTIONS(8445), 1, sym_identifier, - ACTIONS(8865), 1, + ACTIONS(8939), 1, anon_sym_RPAREN, - STATE(4582), 1, + STATE(4640), 1, sym_component_attribute, - [15493] = 2, + [15564] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8867), 3, + ACTIONS(8941), 3, anon_sym_While, anon_sym_while, anon_sym_WHILE, - [15502] = 2, + [15573] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8869), 3, + ACTIONS(8893), 1, + anon_sym_COMMA, + ACTIONS(8943), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [15586] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8945), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [15511] = 4, + [15595] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(7820), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8871), 1, - anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [15524] = 4, + anon_sym_SEMI, + [15604] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8873), 1, + ACTIONS(8947), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4778), 1, aux_sym_object_repeat1, - [15537] = 4, + [15617] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(8875), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [15550] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8877), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [15559] = 2, + ACTIONS(7008), 1, + anon_sym_RPAREN, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [15630] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7804), 3, - sym__automatic_semicolon, + ACTIONS(1744), 1, anon_sym_COMMA, - anon_sym_SEMI, - [15568] = 2, + ACTIONS(6888), 1, + anon_sym_RPAREN, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [15643] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7804), 3, - sym__automatic_semicolon, + ACTIONS(8893), 1, anon_sym_COMMA, - anon_sym_SEMI, - [15577] = 3, + ACTIONS(8949), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [15656] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8350), 3, + sym_tag_linefeed, + anon_sym_LBRACE, sym_identifier, - STATE(4204), 2, - sym__tag_call_argument, - sym_tag_call_attribute, - [15588] = 4, + [15665] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(8951), 1, anon_sym_COMMA, - ACTIONS(8879), 1, + ACTIONS(8954), 1, anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [15601] = 4, + STATE(4638), 1, + aux_sym_named_imports_repeat1, + [15678] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8471), 1, + ACTIONS(8445), 1, sym_identifier, - ACTIONS(8881), 1, + ACTIONS(8956), 1, anon_sym_RPAREN, - STATE(4593), 1, + STATE(4644), 1, sym_component_attribute, - [15614] = 4, + [15691] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8881), 1, - anon_sym_RPAREN, - ACTIONS(8883), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - STATE(4594), 1, + ACTIONS(8956), 1, + anon_sym_RPAREN, + STATE(4645), 1, aux_sym_component_repeat2, - [15627] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8843), 1, - anon_sym_COMMA, - ACTIONS(8845), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [15640] = 4, + [15704] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(8885), 1, + ACTIONS(6942), 1, anon_sym_RPAREN, - STATE(4672), 1, + STATE(4780), 1, aux_sym_arguments_repeat1, - [15653] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7681), 1, - anon_sym_DQUOTE, - ACTIONS(7683), 1, - anon_sym_SQUOTE, - STATE(4624), 1, - sym_string, - [15666] = 2, + [15717] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8887), 3, + ACTIONS(7834), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP, - [15675] = 2, + anon_sym_SEMI, + [15726] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5137), 3, + ACTIONS(5155), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DASH_GT, - [15684] = 4, + [15735] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(8889), 1, - anon_sym_RBRACE, - STATE(4629), 1, - aux_sym_object_pattern_repeat1, - [15697] = 4, + ACTIONS(8958), 1, + anon_sym_RPAREN, + STATE(4649), 1, + aux_sym_component_repeat2, + [15748] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(8891), 1, - anon_sym_RBRACE, - STATE(4630), 1, - aux_sym_object_repeat1, - [15710] = 4, + ACTIONS(8958), 1, + anon_sym_RPAREN, + STATE(4601), 1, + aux_sym_component_repeat2, + [15761] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, - anon_sym_COMMA, - ACTIONS(8893), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [15723] = 4, + ACTIONS(5184), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [15770] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, - anon_sym_COMMA, - ACTIONS(8891), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [15736] = 4, + ACTIONS(8960), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [15779] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8889), 1, + ACTIONS(8962), 1, anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [15749] = 4, + STATE(4828), 1, + aux_sym_object_repeat1, + [15792] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(8895), 1, + ACTIONS(8964), 1, anon_sym_RPAREN, - STATE(4597), 1, + STATE(4601), 1, aux_sym_component_repeat2, - [15762] = 4, + [15805] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(8895), 1, + ACTIONS(8966), 1, anon_sym_RPAREN, - STATE(4645), 1, - aux_sym_component_repeat2, - [15775] = 4, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [15818] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_COMMA, - ACTIONS(8897), 1, - anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [15788] = 4, + ACTIONS(8335), 1, + sym_identifier, + STATE(4221), 2, + sym__tag_call_argument, + sym_tag_call_attribute, + [15829] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8899), 1, + ACTIONS(8947), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [15801] = 4, + [15842] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(8901), 1, - anon_sym_RPAREN, - STATE(4645), 1, - aux_sym_component_repeat2, - [15814] = 4, + ACTIONS(8782), 1, + anon_sym_RBRACK, + STATE(4740), 1, + aux_sym_array_pattern_repeat1, + [15855] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(6906), 1, - anon_sym_RBRACK, - STATE(4632), 1, - aux_sym_array_repeat1, - [15827] = 4, + ACTIONS(8968), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [15868] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(6906), 1, + ACTIONS(6972), 1, anon_sym_RBRACK, - STATE(4650), 1, + STATE(4696), 1, aux_sym_array_repeat1, - [15840] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8397), 1, - anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [15853] = 4, + [15881] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8903), 1, - anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [15866] = 4, + ACTIONS(8970), 1, + anon_sym_LBRACE, + ACTIONS(8972), 1, + anon_sym_LPAREN, + STATE(488), 1, + sym_statement_block, + [15894] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(8905), 1, + ACTIONS(6972), 1, anon_sym_RBRACK, - STATE(4650), 1, + STATE(4746), 1, aux_sym_array_repeat1, - [15879] = 4, + [15907] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(8879), 1, - anon_sym_RBRACE, - STATE(4677), 1, - aux_sym_object_repeat1, - [15892] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5161), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15901] = 4, + ACTIONS(8782), 1, + anon_sym_RBRACK, + STATE(4806), 1, + aux_sym_array_pattern_repeat1, + [15920] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(7004), 1, + ACTIONS(8974), 1, anon_sym_RPAREN, - STATE(4623), 1, + STATE(4678), 1, aux_sym_arguments_repeat1, - [15914] = 4, + [15933] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym_DQUOTE, - ACTIONS(8909), 1, - anon_sym_SQUOTE, - STATE(4486), 1, - sym_string, - [15927] = 4, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [15942] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(7004), 1, + ACTIONS(6998), 1, anon_sym_RPAREN, - STATE(4672), 1, + STATE(4678), 1, aux_sym_arguments_repeat1, - [15940] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8471), 1, - sym_identifier, - ACTIONS(8911), 1, - anon_sym_RPAREN, - STATE(4746), 1, - sym_component_attribute, - [15953] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8913), 1, - sym_identifier, - STATE(3841), 1, - sym_decorator_member_expression, - STATE(3846), 1, - sym_decorator_call_expression, - [15966] = 4, + [15955] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - ACTIONS(8915), 1, + ACTIONS(8979), 1, anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [15979] = 4, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [15968] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8917), 1, + ACTIONS(8981), 1, anon_sym_RBRACE, - STATE(4641), 1, - aux_sym_object_repeat1, - [15992] = 4, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [15981] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8919), 1, + ACTIONS(8983), 1, anon_sym_RBRACE, - STATE(4688), 1, + STATE(4612), 1, aux_sym_object_pattern_repeat1, - [16005] = 4, + [15994] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8917), 1, + ACTIONS(8985), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [16018] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8843), 1, - anon_sym_COMMA, - ACTIONS(8921), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [16031] = 4, + [16007] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, - anon_sym_COMMA, - ACTIONS(8923), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [16044] = 2, + ACTIONS(8445), 1, + sym_identifier, + ACTIONS(8987), 1, + anon_sym_RPAREN, + STATE(4702), 1, + sym_component_attribute, + [16020] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7766), 3, - sym__automatic_semicolon, + ACTIONS(6323), 1, anon_sym_COMMA, - anon_sym_SEMI, - [16053] = 4, + ACTIONS(8465), 1, + anon_sym_RPAREN, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [16033] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(8925), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [16066] = 4, + ACTIONS(8987), 1, + anon_sym_RPAREN, + STATE(4704), 1, + aux_sym_component_repeat2, + [16046] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8927), 1, + ACTIONS(8989), 1, anon_sym_RBRACE, - STATE(4688), 1, + STATE(4814), 1, aux_sym_object_pattern_repeat1, - [16079] = 4, + [16059] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_RBRACK, - STATE(4735), 1, - aux_sym_array_pattern_repeat1, - [16092] = 4, + ACTIONS(8991), 1, + anon_sym_RPAREN, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [16072] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8655), 1, - anon_sym_RBRACK, - STATE(4757), 1, - aux_sym_array_pattern_repeat1, - [16105] = 2, + ACTIONS(8993), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [16085] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2314), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [16114] = 2, + ACTIONS(7642), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [16094] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8929), 3, + ACTIONS(5484), 1, anon_sym_COMMA, - anon_sym_RPAREN, - sym_identifier, - [16123] = 4, + ACTIONS(8995), 1, + anon_sym_RBRACE, + STATE(4613), 1, + aux_sym_object_repeat1, + [16107] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8931), 1, + ACTIONS(8494), 1, anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [16136] = 2, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [16120] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5776), 3, + ACTIONS(8997), 1, + sym_identifier, + ACTIONS(8999), 2, sym__automatic_semicolon, anon_sym_SEMI, - sym_identifier, - [16145] = 4, + [16131] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8933), 1, - anon_sym_LBRACE, - ACTIONS(8935), 1, - anon_sym_LPAREN, - STATE(494), 1, - sym_statement_block, - [16158] = 3, + ACTIONS(9001), 1, + sym_identifier, + ACTIONS(9003), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [16142] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2221), 1, - anon_sym_LBRACE, - ACTIONS(2223), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [16169] = 4, + ACTIONS(1744), 1, + anon_sym_COMMA, + ACTIONS(6858), 1, + anon_sym_RPAREN, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [16155] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(7136), 1, + anon_sym_RPAREN, + ACTIONS(9005), 1, anon_sym_COMMA, - ACTIONS(8937), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [16182] = 4, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [16168] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(8939), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [16195] = 4, + ACTIONS(9008), 1, + anon_sym_RBRACK, + STATE(4806), 1, + aux_sym_array_pattern_repeat1, + [16181] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(8941), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [16208] = 4, + ACTIONS(9010), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [16194] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8943), 1, + ACTIONS(9012), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4815), 1, aux_sym_object_repeat1, - [16221] = 4, + [16207] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(8945), 1, - anon_sym_RBRACE, - STATE(4614), 1, - aux_sym_object_pattern_repeat1, - [16234] = 4, + ACTIONS(9014), 1, + anon_sym_RBRACK, + STATE(4806), 1, + aux_sym_array_pattern_repeat1, + [16220] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(6890), 1, anon_sym_COMMA, - ACTIONS(8947), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [16247] = 4, + ACTIONS(8317), 1, + anon_sym_COLON, + STATE(4604), 1, + aux_sym_sequence_expression_repeat1, + [16233] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(6836), 1, + ACTIONS(9016), 1, anon_sym_RPAREN, - STATE(4663), 1, + STATE(4678), 1, aux_sym_arguments_repeat1, - [16260] = 4, + [16246] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(8949), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_repeat1, - [16273] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8951), 3, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [16282] = 4, + ACTIONS(9018), 1, + anon_sym_RPAREN, + STATE(4748), 1, + aux_sym_arguments_repeat1, + [16259] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(7020), 1, - anon_sym_RBRACK, - STATE(4569), 1, - aux_sym_array_repeat1, - [16295] = 4, + ACTIONS(9020), 1, + anon_sym_RPAREN, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [16272] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(6836), 1, + ACTIONS(9018), 1, anon_sym_RPAREN, - STATE(4672), 1, + STATE(4678), 1, aux_sym_arguments_repeat1, - [16308] = 4, + [16285] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8953), 1, + ACTIONS(9022), 1, anon_sym_RBRACE, - STATE(4728), 1, + STATE(4662), 1, aux_sym_object_pattern_repeat1, - [16321] = 4, + [16298] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8955), 1, - anon_sym_RPAREN, - STATE(4645), 1, - aux_sym_component_repeat2, - [16334] = 4, + ACTIONS(9024), 1, + anon_sym_RBRACE, + STATE(4636), 1, + aux_sym_object_pattern_repeat1, + [16311] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8335), 1, + sym_identifier, + STATE(4263), 2, + sym__tag_call_argument, + sym_tag_call_attribute, + [16322] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5178), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [16331] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9026), 1, + sym_identifier, + STATE(3894), 1, + sym_decorator_member_expression, + STATE(3900), 1, + sym_decorator_call_expression, + [16344] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8957), 1, + ACTIONS(8995), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [16347] = 4, + [16357] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(1744), 1, + anon_sym_COMMA, + ACTIONS(6942), 1, + anon_sym_RPAREN, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [16370] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(9028), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4717), 1, aux_sym_object_repeat1, - [16360] = 4, + [16383] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(8961), 1, + ACTIONS(9030), 1, anon_sym_RBRACK, - STATE(4650), 1, + STATE(4746), 1, aux_sym_array_repeat1, - [16373] = 4, + [16396] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8963), 1, - anon_sym_RBRACK, - STATE(4685), 1, - aux_sym_array_pattern_repeat1, - [16386] = 4, + ACTIONS(8983), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [16409] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5068), 1, + sym_identifier, + ACTIONS(9032), 1, + anon_sym_DOT, + STATE(4698), 1, + aux_sym_path_repeat1, + [16422] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8965), 1, - anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [16399] = 4, + ACTIONS(9012), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [16435] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8967), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8970), 1, - anon_sym_RPAREN, - STATE(4645), 1, - aux_sym_component_repeat2, - [16412] = 4, + ACTIONS(9028), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [16448] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8425), 1, + ACTIONS(9035), 1, anon_sym_RPAREN, - STATE(4184), 1, + STATE(4256), 1, aux_sym_sequence_expression_repeat1, - [16425] = 4, + [16461] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(7016), 1, + ACTIONS(9037), 1, anon_sym_RPAREN, - STATE(4654), 1, - aux_sym_arguments_repeat1, - [16438] = 4, + STATE(4710), 1, + aux_sym_component_repeat2, + [16474] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7751), 1, + anon_sym_DQUOTE, + ACTIONS(7753), 1, + anon_sym_SQUOTE, + STATE(4708), 1, + sym_string, + [16487] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(7016), 1, + ACTIONS(9037), 1, anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [16451] = 4, + STATE(4601), 1, + aux_sym_component_repeat2, + [16500] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5041), 1, - sym_identifier, - ACTIONS(8972), 1, - anon_sym_DOT, - STATE(4649), 1, - aux_sym_path_repeat1, - [16464] = 4, + ACTIONS(8893), 1, + anon_sym_COMMA, + ACTIONS(9039), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [16513] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7149), 1, - anon_sym_RBRACK, - ACTIONS(8975), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - STATE(4650), 1, - aux_sym_array_repeat1, - [16477] = 4, + ACTIONS(8435), 1, + anon_sym_RPAREN, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [16526] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8978), 1, - anon_sym_RPAREN, - STATE(4717), 1, - aux_sym_arguments_repeat1, - [16490] = 2, + ACTIONS(9024), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [16539] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8980), 3, + ACTIONS(5829), 3, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [16499] = 4, + sym_identifier, + [16548] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(8978), 1, - anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [16512] = 4, + ACTIONS(6954), 1, + anon_sym_RBRACK, + STATE(4621), 1, + aux_sym_array_repeat1, + [16561] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(8982), 1, + ACTIONS(9041), 1, anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [16525] = 4, + STATE(4601), 1, + aux_sym_component_repeat2, + [16574] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8984), 1, - anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [16538] = 4, + ACTIONS(9043), 1, + anon_sym_LBRACE, + ACTIONS(9045), 1, + anon_sym_LPAREN, + STATE(423), 1, + sym_statement_block, + [16587] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(8421), 1, - anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [16551] = 4, + ACTIONS(2213), 1, + anon_sym_LBRACE, + ACTIONS(2215), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [16598] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8986), 1, + ACTIONS(9047), 1, anon_sym_RBRACE, - STATE(4729), 1, + STATE(4756), 1, aux_sym_object_repeat1, - [16564] = 4, + [16611] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(7012), 1, + ACTIONS(6954), 1, anon_sym_RBRACK, - STATE(4756), 1, + STATE(4746), 1, aux_sym_array_repeat1, - [16577] = 4, + [16624] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8988), 1, - anon_sym_RPAREN, - STATE(4645), 1, - aux_sym_component_repeat2, - [16590] = 4, + ACTIONS(9049), 1, + anon_sym_RBRACE, + STATE(4705), 1, + aux_sym_object_pattern_repeat1, + [16637] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8949), 1, + ACTIONS(9047), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [16603] = 3, + [16650] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8990), 1, - sym_identifier, - ACTIONS(8992), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [16614] = 4, + ACTIONS(5484), 1, + anon_sym_COMMA, + ACTIONS(9051), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [16663] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8994), 1, - anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [16627] = 4, + ACTIONS(8989), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [16676] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8996), 1, - anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [16640] = 4, + ACTIONS(9053), 1, + anon_sym_RBRACE, + STATE(4782), 1, + aux_sym_object_repeat1, + [16689] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(8429), 1, + ACTIONS(9055), 1, anon_sym_RPAREN, - STATE(4184), 1, + STATE(4256), 1, aux_sym_sequence_expression_repeat1, - [16653] = 2, + [16702] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2298), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [16662] = 4, + ACTIONS(5196), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [16711] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8945), 1, + ACTIONS(9057), 1, anon_sym_RBRACE, - STATE(4688), 1, + STATE(4663), 1, aux_sym_object_pattern_repeat1, - [16675] = 4, + [16724] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(9059), 3, anon_sym_COMMA, - ACTIONS(8998), 1, anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [16688] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9000), 1, sym_identifier, - ACTIONS(9002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [16699] = 3, + [16733] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9004), 1, - sym_identifier, - ACTIONS(9006), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [16710] = 2, + ACTIONS(9061), 3, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [16742] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9008), 3, + ACTIONS(9063), 1, + sym_identifier, + ACTIONS(9065), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [16719] = 4, + [16753] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(7012), 1, + ACTIONS(6850), 1, anon_sym_RBRACK, - STATE(4650), 1, + STATE(4823), 1, aux_sym_array_repeat1, - [16732] = 4, + [16766] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7147), 1, - anon_sym_RPAREN, - ACTIONS(9010), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [16745] = 3, + ACTIONS(9067), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [16779] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(9013), 1, - sym_identifier, - ACTIONS(9015), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [16756] = 4, + ACTIONS(6848), 1, + anon_sym_COMMA, + ACTIONS(7080), 1, + anon_sym_RBRACK, + STATE(4784), 1, + aux_sym_array_repeat1, + [16792] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(8655), 1, + ACTIONS(6850), 1, anon_sym_RBRACK, - STATE(4685), 1, - aux_sym_array_pattern_repeat1, - [16769] = 4, + STATE(4746), 1, + aux_sym_array_repeat1, + [16805] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, - anon_sym_COMMA, - ACTIONS(9017), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [16782] = 2, + ACTIONS(2276), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [16814] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2223), 3, + ACTIONS(5145), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DASH_GT, - [16791] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5476), 1, - anon_sym_COMMA, - ACTIONS(9019), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [16804] = 4, + [16823] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(7020), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [16817] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(5176), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [16826] = 4, + ACTIONS(9069), 1, + anon_sym_RPAREN, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [16836] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8471), 1, + ACTIONS(8445), 1, sym_identifier, - ACTIONS(9021), 1, + ACTIONS(9071), 1, anon_sym_RPAREN, - STATE(4726), 1, + STATE(4775), 1, sym_component_attribute, - [16839] = 4, + [16849] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(9023), 1, - anon_sym_LBRACE, - ACTIONS(9025), 1, - anon_sym_LPAREN, - STATE(424), 1, - sym_statement_block, - [16852] = 2, + ACTIONS(8893), 1, + anon_sym_COMMA, + ACTIONS(9057), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [16862] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9027), 3, + ACTIONS(7834), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [16861] = 4, + [16871] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(9029), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(9032), 1, - anon_sym_RBRACE, - STATE(4683), 1, - aux_sym_named_imports_repeat1, - [16874] = 4, + ACTIONS(7080), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [16884] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_RBRACK, - STATE(4685), 1, - aux_sym_array_pattern_repeat1, - [16887] = 4, + ACTIONS(2510), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [16893] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9034), 1, + ACTIONS(8653), 1, + anon_sym_EQ, + ACTIONS(9073), 2, anon_sym_COMMA, - ACTIONS(9037), 1, anon_sym_RBRACK, - STATE(4685), 1, - aux_sym_array_pattern_repeat1, - [16900] = 4, + [16904] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(6920), 1, + ACTIONS(8530), 1, anon_sym_RPAREN, - STATE(4692), 1, - aux_sym_arguments_repeat1, - [16913] = 4, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [16917] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(9039), 1, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(9042), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [16926] = 4, + ACTIONS(9075), 1, + anon_sym_RBRACK, + STATE(4806), 1, + aux_sym_array_pattern_repeat1, + [16930] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9044), 1, - anon_sym_COMMA, - ACTIONS(9047), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(9077), 3, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, [16939] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5190), 3, + ACTIONS(2215), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DASH_GT, - [16948] = 4, + [16948] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8335), 1, + sym_identifier, + STATE(4622), 2, + sym__tag_call_argument, + sym_tag_call_attribute, + [16959] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2506), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [16968] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(6920), 1, + ACTIONS(9079), 1, anon_sym_RPAREN, - STATE(4672), 1, + STATE(4678), 1, aux_sym_arguments_repeat1, - [16961] = 4, + [16981] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(7134), 1, + anon_sym_RBRACK, + ACTIONS(9081), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + STATE(4746), 1, + aux_sym_array_repeat1, + [16994] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(3358), 1, + anon_sym_COMMA, + ACTIONS(8740), 1, anon_sym_RBRACK, - STATE(4643), 1, + STATE(4682), 1, aux_sym_array_pattern_repeat1, - [16974] = 4, + [17007] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(9049), 1, + ACTIONS(9084), 1, anon_sym_RPAREN, - STATE(4672), 1, + STATE(4678), 1, aux_sym_arguments_repeat1, - [16987] = 4, + [17020] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_RBRACK, - STATE(4642), 1, - aux_sym_array_repeat1, - [17000] = 4, + ACTIONS(8993), 1, + anon_sym_RBRACE, + STATE(4760), 1, + aux_sym_object_pattern_repeat1, + [17033] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(9086), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [17013] = 4, + anon_sym_SEMI, + [17042] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(7086), 1, anon_sym_RBRACK, - STATE(4685), 1, - aux_sym_array_pattern_repeat1, - [17026] = 4, + STATE(4680), 1, + aux_sym_array_repeat1, + [17055] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, - anon_sym_COMMA, - ACTIONS(9051), 1, - anon_sym_RBRACE, - STATE(4733), 1, - aux_sym_object_pattern_repeat1, - [17039] = 4, + ACTIONS(9088), 1, + sym_identifier, + ACTIONS(9090), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [17066] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(9053), 1, + ACTIONS(9092), 1, anon_sym_RBRACE, - STATE(4734), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [17052] = 2, + [17079] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8256), 3, + ACTIONS(8862), 3, sym_tag_linefeed, anon_sym_LBRACE, sym_identifier, - [17061] = 4, + [17088] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(6972), 1, - anon_sym_RPAREN, - STATE(4644), 1, - aux_sym_arguments_repeat1, - [17074] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8471), 1, - sym_identifier, - ACTIONS(9055), 1, - anon_sym_RPAREN, - STATE(4707), 1, - sym_component_attribute, - [17087] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9057), 3, - anon_sym_While, - anon_sym_while, - anon_sym_WHILE, - [17096] = 4, + ACTIONS(7086), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [17101] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(9053), 1, + ACTIONS(9094), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [17109] = 3, + [17114] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(3358), 1, + anon_sym_COMMA, + ACTIONS(8740), 1, + anon_sym_RBRACK, + STATE(4806), 1, + aux_sym_array_pattern_repeat1, + [17127] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9096), 1, sym_identifier, - STATE(4240), 2, - sym__tag_call_argument, - sym_tag_call_attribute, - [17120] = 4, + ACTIONS(9098), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [17138] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(9051), 1, + ACTIONS(9100), 1, anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [17133] = 4, + STATE(4828), 1, + aux_sym_object_repeat1, + [17151] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(9059), 1, + ACTIONS(9102), 1, anon_sym_RBRACE, - STATE(4590), 1, + STATE(4662), 1, aux_sym_object_pattern_repeat1, - [17146] = 4, + [17164] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8471), 1, + ACTIONS(9104), 1, sym_identifier, - ACTIONS(9061), 1, - anon_sym_RPAREN, - STATE(4708), 1, - sym_component_attribute, - [17159] = 4, + ACTIONS(9106), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [17175] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(9061), 1, + ACTIONS(9108), 1, anon_sym_RPAREN, - STATE(4709), 1, - aux_sym_component_repeat2, - [17172] = 4, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [17188] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(9110), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [17197] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8857), 3, anon_sym_COMMA, - ACTIONS(9063), 1, anon_sym_RPAREN, - STATE(4711), 1, - aux_sym_component_repeat2, - [17185] = 4, + anon_sym_AMP, + [17206] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(9063), 1, + ACTIONS(9112), 1, anon_sym_RPAREN, - STATE(4645), 1, - aux_sym_component_repeat2, - [17198] = 4, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [17219] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(9065), 1, - anon_sym_RBRACE, - STATE(4596), 1, - aux_sym_object_repeat1, - [17211] = 4, + ACTIONS(6978), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [17232] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(9067), 1, + ACTIONS(8540), 1, anon_sym_RPAREN, - STATE(4645), 1, - aux_sym_component_repeat2, - [17224] = 3, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [17245] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8634), 1, - anon_sym_EQ, - ACTIONS(9069), 2, + ACTIONS(1744), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [17235] = 4, + ACTIONS(6996), 1, + anon_sym_RPAREN, + STATE(4786), 1, + aux_sym_arguments_repeat1, + [17258] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_COMMA, - ACTIONS(7032), 1, - anon_sym_RBRACK, - STATE(4736), 1, - aux_sym_array_repeat1, - [17248] = 4, + ACTIONS(5141), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [17267] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(7032), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [17261] = 3, + ACTIONS(9114), 1, + anon_sym_RPAREN, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [17280] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(9073), 1, - anon_sym_as, - ACTIONS(9071), 2, + ACTIONS(6323), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [17272] = 4, + ACTIONS(9116), 1, + anon_sym_RPAREN, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [17293] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6956), 1, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(8267), 1, - anon_sym_COLON, - STATE(4742), 1, - aux_sym_sequence_expression_repeat1, - [17285] = 4, + ACTIONS(8655), 1, + anon_sym_RBRACK, + STATE(4679), 1, + aux_sym_array_pattern_repeat1, + [17306] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(9075), 1, + ACTIONS(6996), 1, anon_sym_RPAREN, - STATE(4672), 1, + STATE(4678), 1, aux_sym_arguments_repeat1, - [17298] = 4, + [17319] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(9077), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(9079), 1, + ACTIONS(9118), 1, anon_sym_RBRACE, - STATE(4555), 1, - aux_sym_named_imports_repeat1, - [17311] = 2, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [17332] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(9081), 3, - sym__template_chars, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - [17320] = 3, + ACTIONS(8909), 1, + anon_sym_COMMA, + ACTIONS(8925), 1, + anon_sym_RPAREN, + STATE(4817), 1, + aux_sym_component_repeat2, + [17345] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8634), 1, - anon_sym_EQ, - ACTIONS(9037), 2, + ACTIONS(8893), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [17331] = 4, + ACTIONS(9120), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [17358] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(9065), 1, + ACTIONS(9122), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [17344] = 4, + [17371] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(9083), 1, + ACTIONS(9124), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [17357] = 2, + [17384] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2280), 3, - sym_tag_linefeed, - anon_sym_LBRACE, - sym_identifier, - [17366] = 4, + ACTIONS(1744), 1, + anon_sym_COMMA, + ACTIONS(6976), 1, + anon_sym_RPAREN, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [17397] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(9059), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [17379] = 4, + ACTIONS(9126), 1, + anon_sym_RPAREN, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [17410] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8653), 1, + anon_sym_EQ, + ACTIONS(9128), 2, anon_sym_COMMA, - ACTIONS(9085), 1, anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [17392] = 4, + [17421] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8988), 1, - anon_sym_RPAREN, - STATE(4639), 1, - aux_sym_component_repeat2, - [17405] = 2, + ACTIONS(9130), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [17434] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5165), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [17414] = 4, + ACTIONS(6848), 1, + anon_sym_COMMA, + ACTIONS(7046), 1, + anon_sym_RBRACK, + STATE(4602), 1, + aux_sym_array_repeat1, + [17447] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(9087), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [17427] = 4, + ACTIONS(9132), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [17460] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, - anon_sym_COMMA, - ACTIONS(9089), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [17440] = 4, + ACTIONS(9134), 3, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [17469] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(9091), 1, - anon_sym_RBRACE, - STATE(4687), 1, - aux_sym_object_repeat1, - [17453] = 4, + ACTIONS(9136), 1, + anon_sym_RPAREN, + STATE(4678), 1, + aux_sym_arguments_repeat1, + [17482] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(9093), 1, + ACTIONS(9138), 1, anon_sym_RBRACE, - STATE(4688), 1, + STATE(4776), 1, aux_sym_object_pattern_repeat1, - [17466] = 3, + [17495] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8297), 1, - sym_identifier, - STATE(4741), 2, - sym__tag_call_argument, - sym_tag_call_attribute, - [17477] = 4, + ACTIONS(6848), 1, + anon_sym_COMMA, + ACTIONS(6978), 1, + anon_sym_RBRACK, + STATE(4801), 1, + aux_sym_array_repeat1, + [17508] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(7820), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9095), 1, - anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [17490] = 4, + anon_sym_SEMI, + [17517] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(9097), 1, + ACTIONS(9053), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [17503] = 4, + [17530] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5058), 1, + sym_identifier, + ACTIONS(7766), 1, + anon_sym_DOT, + STATE(4698), 1, + aux_sym_path_repeat1, + [17543] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(8240), 1, + anon_sym_RBRACE, + ACTIONS(9140), 1, anon_sym_COMMA, - ACTIONS(9099), 1, - anon_sym_RBRACK, - STATE(4685), 1, - aux_sym_array_pattern_repeat1, - [17516] = 4, + STATE(4638), 1, + aux_sym_named_imports_repeat1, + [17556] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(8732), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9101), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [17529] = 4, + anon_sym_SEMI, + [17565] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - ACTIONS(6866), 1, + ACTIONS(8595), 1, anon_sym_RPAREN, - STATE(4758), 1, - aux_sym_arguments_repeat1, - [17542] = 2, + STATE(4256), 1, + aux_sym_sequence_expression_repeat1, + [17578] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8824), 3, + ACTIONS(8893), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP, - [17551] = 4, + ACTIONS(9049), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [17591] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(6866), 1, - anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [17564] = 2, + ACTIONS(9142), 1, + anon_sym_RBRACE, + STATE(4777), 1, + aux_sym_object_repeat1, + [17604] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9103), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - [17573] = 2, + [17613] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8355), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2230), 3, + sym_tag_linefeed, + anon_sym_LBRACE, sym_identifier, - [17582] = 4, + [17622] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6005), 1, - anon_sym_COLON, - ACTIONS(9105), 1, + ACTIONS(9144), 1, + anon_sym_LBRACE, + ACTIONS(9146), 1, + anon_sym_LPAREN, + STATE(3960), 1, + sym_statement_block, + [17635] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5484), 1, anon_sym_COMMA, - STATE(4742), 1, - aux_sym_sequence_expression_repeat1, - [17595] = 4, + ACTIONS(9142), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [17648] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(6848), 1, + anon_sym_COMMA, + ACTIONS(9148), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [17661] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(7681), 1, + ACTIONS(7751), 1, anon_sym_DQUOTE, - ACTIONS(7683), 1, + ACTIONS(7753), 1, anon_sym_SQUOTE, - STATE(4394), 1, + STATE(4411), 1, sym_string, - [17608] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9108), 1, - sym_identifier, - ACTIONS(9110), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [17619] = 2, + [17674] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7573), 3, + ACTIONS(7629), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [17628] = 4, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8883), 1, - anon_sym_COMMA, - ACTIONS(9021), 1, - anon_sym_RPAREN, - STATE(4659), 1, - aux_sym_component_repeat2, - [17641] = 4, + [17683] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(9112), 1, + ACTIONS(9138), 1, anon_sym_RBRACE, - STATE(4563), 1, + STATE(4662), 1, aux_sym_object_pattern_repeat1, - [17654] = 4, + [17696] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(6848), 1, anon_sym_COMMA, - ACTIONS(9114), 1, - anon_sym_RBRACE, - STATE(4564), 1, - aux_sym_object_repeat1, - [17667] = 4, + ACTIONS(7046), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [17709] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_COMMA, - ACTIONS(6862), 1, + ACTIONS(9073), 1, anon_sym_RBRACK, - STATE(4602), 1, - aux_sym_array_repeat1, - [17680] = 4, + ACTIONS(9150), 1, + anon_sym_COMMA, + STATE(4806), 1, + aux_sym_array_pattern_repeat1, + [17722] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9153), 1, + anon_sym_DQUOTE, + ACTIONS(9155), 1, + anon_sym_SQUOTE, + STATE(4507), 1, + sym_string, + [17735] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(8435), 1, + ACTIONS(6998), 1, anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [17693] = 4, + STATE(4762), 1, + aux_sym_arguments_repeat1, + [17748] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(9114), 1, + ACTIONS(9157), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [17706] = 4, + [17761] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(7640), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [17770] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9159), 3, + anon_sym_While, + anon_sym_while, + anon_sym_WHILE, + [17779] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(9112), 1, + ACTIONS(9161), 1, anon_sym_RBRACE, - STATE(4688), 1, + STATE(4662), 1, aux_sym_object_pattern_repeat1, - [17719] = 4, + [17792] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_COMMA, - ACTIONS(6862), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [17732] = 4, + ACTIONS(9163), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [17801] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - ACTIONS(8549), 1, - anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [17745] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9116), 1, - sym_identifier, - ACTIONS(9118), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [17756] = 4, + ACTIONS(9165), 1, + anon_sym_RBRACE, + STATE(4662), 1, + aux_sym_object_pattern_repeat1, + [17814] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(9120), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [17769] = 4, + ACTIONS(9167), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [17827] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(9122), 1, + ACTIONS(8655), 1, anon_sym_RBRACK, - STATE(4685), 1, + STATE(4806), 1, aux_sym_array_pattern_repeat1, - [17782] = 4, + [17840] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(9124), 1, + ACTIONS(8911), 1, anon_sym_RPAREN, - STATE(4672), 1, - aux_sym_arguments_repeat1, - [17795] = 4, + STATE(4601), 1, + aux_sym_component_repeat2, + [17853] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9169), 3, + sym__template_chars, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + [17862] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7627), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [17871] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(8559), 1, + ACTIONS(9171), 1, anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [17808] = 4, + STATE(4601), 1, + aux_sym_component_repeat2, + [17884] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(9173), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7030), 1, - anon_sym_RPAREN, - STATE(4595), 1, - aux_sym_arguments_repeat1, - [17821] = 4, + anon_sym_SEMI, + [17893] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5476), 1, + ACTIONS(5484), 1, anon_sym_COMMA, - ACTIONS(8986), 1, + ACTIONS(9175), 1, anon_sym_RBRACE, - STATE(4687), 1, + STATE(4828), 1, aux_sym_object_repeat1, - [17834] = 2, + [17906] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(5145), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [17843] = 4, + ACTIONS(6848), 1, + anon_sym_COMMA, + ACTIONS(9177), 1, + anon_sym_RBRACK, + STATE(4746), 1, + aux_sym_array_repeat1, + [17919] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(7030), 1, + ACTIONS(6858), 1, anon_sym_RPAREN, - STATE(4672), 1, + STATE(4684), 1, aux_sym_arguments_repeat1, - [17856] = 4, + [17932] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, + ACTIONS(1744), 1, anon_sym_COMMA, - ACTIONS(9126), 1, + ACTIONS(6976), 1, anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [17869] = 4, + STATE(4686), 1, + aux_sym_arguments_repeat1, + [17945] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_COMMA, - ACTIONS(9128), 1, + ACTIONS(7631), 3, + anon_sym_Function, + anon_sym_function, + anon_sym_FUNCTION, + [17954] = 4, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8445), 1, + sym_identifier, + ACTIONS(9179), 1, anon_sym_RPAREN, - STATE(4184), 1, - aux_sym_sequence_expression_repeat1, - [17882] = 4, + STATE(4668), 1, + sym_component_attribute, + [17967] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(9181), 1, anon_sym_COMMA, - ACTIONS(6966), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, - [17895] = 2, + ACTIONS(9184), 1, + anon_sym_RBRACE, + STATE(4828), 1, + aux_sym_object_repeat1, + [17980] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7580), 3, + ACTIONS(9186), 3, anon_sym_Function, anon_sym_function, anon_sym_FUNCTION, - [17904] = 2, + [17989] = 4, ACTIONS(129), 1, sym_comment, - ACTIONS(2334), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [17913] = 2, + ACTIONS(5484), 1, + anon_sym_COMMA, + ACTIONS(9067), 1, + anon_sym_RBRACE, + STATE(4665), 1, + aux_sym_object_repeat1, + [18002] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7582), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [17922] = 4, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(4883), 1, + sym_formal_parameters, + [18012] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(9188), 2, anon_sym_COMMA, - ACTIONS(6966), 1, - anon_sym_RBRACK, - STATE(4650), 1, - aux_sym_array_repeat1, - [17935] = 4, + anon_sym_RBRACE, + [18020] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(5073), 1, + sym_formal_parameters, + [18030] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9190), 1, + anon_sym_LPAREN, + STATE(242), 1, + sym__for_header, + [18040] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(4923), 1, + sym_statement_block, + [18050] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9192), 2, anon_sym_COMMA, - ACTIONS(8953), 1, anon_sym_RBRACE, - STATE(4688), 1, - aux_sym_object_pattern_repeat1, - [17948] = 2, + [18058] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7584), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [17957] = 2, + ACTIONS(9194), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [18066] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9130), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [17966] = 2, + ACTIONS(9196), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [18074] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9132), 3, + ACTIONS(6534), 2, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_SEMI, - [17975] = 2, + [18082] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7588), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [17984] = 2, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(5081), 1, + sym_statement_block, + [18092] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7586), 3, - anon_sym_Function, - anon_sym_function, - anon_sym_FUNCTION, - [17993] = 2, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(4928), 1, + sym_statement_block, + [18102] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8725), 3, - sym_tag_linefeed, - anon_sym_LBRACE, - sym_identifier, - [18002] = 3, + ACTIONS(9198), 1, + anon_sym_LPAREN, + STATE(243), 1, + sym_parenthesized_expression, + [18112] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(4780), 1, + STATE(4934), 1, sym_statement_block, - [18012] = 3, + [18122] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9134), 1, - anon_sym_RPAREN, - [18022] = 2, + ACTIONS(9198), 1, + anon_sym_LPAREN, + STATE(244), 1, + sym_parenthesized_expression, + [18132] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9136), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [18030] = 2, + ACTIONS(9200), 1, + anon_sym_LPAREN, + STATE(974), 1, + sym_formal_parameters, + [18142] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9138), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [18038] = 2, + ACTIONS(7810), 1, + anon_sym_LPAREN, + STATE(1223), 1, + sym_formal_parameters, + [18152] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [18046] = 2, + ACTIONS(9202), 1, + anon_sym_LPAREN, + STATE(232), 1, + sym__for_header, + [18162] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(5086), 1, + sym_statement_block, + [18172] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9142), 2, + ACTIONS(6636), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18054] = 2, + [18180] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9144), 2, - anon_sym_COLON, - anon_sym_EQ, - [18062] = 3, + ACTIONS(9188), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18188] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9146), 1, - anon_sym_SEMI, - ACTIONS(9148), 1, + ACTIONS(9204), 2, sym__automatic_semicolon, - [18072] = 2, + anon_sym_SEMI, + [18196] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9150), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [18080] = 2, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(4936), 1, + sym_statement_block, + [18206] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, - anon_sym_COMMA, + ACTIONS(9206), 1, anon_sym_RBRACE, - [18088] = 3, + ACTIONS(9208), 1, + sym_java_class_content, + [18216] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(3912), 1, + STATE(4938), 1, sym_statement_block, - [18098] = 3, + [18226] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(3913), 1, + STATE(4946), 1, sym_statement_block, - [18108] = 2, + [18236] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9152), 2, - sym__automatic_semicolon, + ACTIONS(9210), 1, anon_sym_SEMI, - [18116] = 3, + ACTIONS(9212), 1, + sym__automatic_semicolon, + [18246] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(4909), 1, - sym_statement_block, - [18126] = 3, + ACTIONS(9214), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [18254] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9154), 1, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(210), 1, - sym_parenthesized_expression, - [18136] = 3, + STATE(5087), 1, + sym_formal_parameters, + [18264] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(4892), 1, + STATE(4836), 1, sym_statement_block, - [18146] = 3, + [18274] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(5088), 1, + sym_formal_parameters, + [18284] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9156), 1, + ACTIONS(9188), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(9158), 1, - sym_java_class_content, - [18156] = 2, + [18292] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8862), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [18300] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5550), 2, + anon_sym_RPAREN, + anon_sym_EQ, + [18308] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9160), 2, + ACTIONS(9216), 2, anon_sym_EQ_GT, anon_sym_DASH_GT, - [18164] = 2, + [18316] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9218), 1, + anon_sym_from, + STATE(4300), 1, + sym__from_clause, + [18326] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9220), 1, + anon_sym_RBRACE, + ACTIONS(9222), 1, + sym_java_class_content, + [18336] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(4903), 1, + sym_formal_parameters, + [18346] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6791), 2, + ACTIONS(9224), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18172] = 2, + [18354] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [18180] = 3, + ACTIONS(9226), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [18362] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5087), 1, + ACTIONS(9228), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [18370] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2566), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [18378] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(5093), 1, + sym_formal_parameters, + [18388] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(5095), 1, anon_sym_LBRACE, - STATE(624), 1, + STATE(4272), 1, sym_component_body, - [18190] = 3, + [18398] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9162), 1, - anon_sym_LPAREN, - STATE(801), 1, - sym_parenthesized_expression, - [18200] = 3, + ACTIONS(8970), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_statement_block, + [18408] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9184), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18416] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7743), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9230), 1, + anon_sym_RPAREN, + [18426] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9164), 1, + ACTIONS(9232), 1, anon_sym_LPAREN, - STATE(561), 1, - sym_parenthesized_expression, - [18210] = 3, + STATE(257), 1, + sym__for_header, + [18436] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(9234), 1, anon_sym_LPAREN, - STATE(4925), 1, - sym_formal_parameters, - [18220] = 3, + STATE(4037), 1, + sym_parenthesized_expression, + [18446] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(3910), 1, + STATE(5094), 1, sym_statement_block, - [18230] = 3, + [18456] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(9198), 1, anon_sym_LPAREN, - STATE(4926), 1, - sym_formal_parameters, - [18240] = 3, + STATE(258), 1, + sym_parenthesized_expression, + [18466] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9198), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym_parenthesized_expression, + [18476] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(4929), 1, + STATE(5095), 1, sym_statement_block, - [18250] = 3, + [18486] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4930), 1, - sym_formal_parameters, - [18260] = 3, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(5098), 1, + sym_statement_block, + [18496] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(4935), 1, + STATE(5103), 1, sym_formal_parameters, - [18270] = 2, + [18506] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9166), 2, + ACTIONS(6618), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18278] = 3, + [18514] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(9236), 1, + anon_sym_SEMI, + ACTIONS(9238), 1, + sym__automatic_semicolon, + [18524] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9240), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [18532] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(4936), 1, + STATE(5105), 1, sym_formal_parameters, - [18288] = 3, + [18542] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(964), 1, + STATE(5106), 1, sym_formal_parameters, - [18298] = 3, + [18552] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4937), 1, - sym_statement_block, - [18308] = 2, + ACTIONS(9242), 2, + anon_sym_COLON, + anon_sym_EQ, + [18560] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [18316] = 2, + ACTIONS(7735), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9230), 1, + anon_sym_RPAREN, + [18570] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [18324] = 3, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(4832), 1, + sym_statement_block, + [18580] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(9244), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [18588] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(4941), 1, + STATE(4835), 1, sym_formal_parameters, - [18334] = 3, + [18598] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9170), 1, - anon_sym_LBRACE, - STATE(4172), 1, - sym_switch_body, - [18344] = 3, + ACTIONS(7743), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9246), 1, + anon_sym_RPAREN, + [18608] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(7735), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9246), 1, + anon_sym_RPAREN, + [18618] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(4943), 1, + STATE(4841), 1, sym_formal_parameters, - [18354] = 3, + [18628] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9172), 1, - anon_sym_from, - STATE(4293), 1, - sym__from_clause, - [18364] = 3, + ACTIONS(9248), 2, + anon_sym_STAR, + sym_identifier, + [18636] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9172), 1, - anon_sym_from, - STATE(4186), 1, - sym__from_clause, - [18374] = 2, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(4843), 1, + sym_formal_parameters, + [18646] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9174), 2, + ACTIONS(9250), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18382] = 3, + [18654] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4944), 1, - sym_formal_parameters, - [18392] = 2, + ACTIONS(9252), 1, + anon_sym_LBRACE, + STATE(5017), 1, + sym_object, + [18664] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [18400] = 3, + ACTIONS(9254), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [18672] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(4952), 1, + STATE(4850), 1, sym_statement_block, - [18410] = 3, + [18682] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(975), 1, + STATE(988), 1, sym_formal_parameters, - [18420] = 2, + [18692] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [18428] = 2, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(4852), 1, + sym_formal_parameters, + [18702] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, + ACTIONS(9256), 2, anon_sym_COMMA, anon_sym_RBRACE, - [18436] = 2, + [18710] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(4854), 1, + sym_formal_parameters, + [18720] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, + ACTIONS(9256), 2, anon_sym_COMMA, anon_sym_RBRACE, - [18444] = 3, + [18728] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(4897), 1, + STATE(4855), 1, sym_formal_parameters, - [18454] = 3, + [18738] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18746] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9176), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(630), 1, + STATE(4861), 1, sym_statement_block, - [18464] = 3, + [18756] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8632), 1, - anon_sym_EQ, - ACTIONS(9178), 1, - anon_sym_COLON, - [18474] = 2, + ACTIONS(9258), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18764] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, - anon_sym_COMMA, + ACTIONS(9260), 1, anon_sym_RBRACE, - [18482] = 2, + ACTIONS(9262), 1, + sym_java_class_content, + [18774] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6673), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [18490] = 2, + ACTIONS(9264), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [18782] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9180), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [18498] = 2, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(4285), 1, + sym_statement_block, + [18792] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9182), 2, + ACTIONS(9256), 2, anon_sym_COMMA, anon_sym_RBRACE, - [18506] = 3, + [18800] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8538), 1, - anon_sym_LPAREN, - STATE(4865), 1, - sym_parenthesized_expression, - [18516] = 2, + ACTIONS(9256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18808] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9184), 2, + ACTIONS(9266), 2, anon_sym_COMMA, anon_sym_RBRACE, - [18524] = 2, + [18816] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9032), 2, - anon_sym_COMMA, + ACTIONS(9268), 1, anon_sym_RBRACE, - [18532] = 2, + ACTIONS(9270), 1, + sym_java_class_content, + [18826] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5536), 2, - anon_sym_RPAREN, - anon_sym_EQ, - [18540] = 2, + ACTIONS(9256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18834] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2436), 2, + ACTIONS(9272), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18548] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9154), 1, - anon_sym_LPAREN, - STATE(257), 1, - sym_parenthesized_expression, - [18558] = 2, + [18842] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9186), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [18566] = 3, + ACTIONS(9274), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18850] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4987), 1, - sym_statement_block, - [18576] = 2, + ACTIONS(9256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18858] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2444), 2, + ACTIONS(6778), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18584] = 2, + [18866] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9188), 2, + ACTIONS(9277), 2, anon_sym_EQ_GT, anon_sym_DASH_GT, - [18592] = 3, + [18874] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9190), 1, + ACTIONS(9279), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(9192), 1, + [18882] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9281), 2, sym__automatic_semicolon, - [18602] = 2, + anon_sym_SEMI, + [18890] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9042), 2, + ACTIONS(9256), 2, anon_sym_COMMA, anon_sym_RBRACE, - [18610] = 3, + [18898] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9194), 1, - anon_sym_RBRACE, - ACTIONS(9196), 1, - sym_java_class_content, - [18620] = 2, + ACTIONS(9283), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [18906] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9198), 2, + ACTIONS(9285), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18628] = 3, + [18914] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9154), 1, - anon_sym_LPAREN, - STATE(275), 1, - sym_parenthesized_expression, - [18638] = 2, + ACTIONS(2558), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [18922] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(2250), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [18930] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9047), 2, + ACTIONS(8954), 2, anon_sym_COMMA, anon_sym_RBRACE, - [18646] = 2, + [18938] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6131), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [18654] = 2, + ACTIONS(9256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18946] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6371), 2, + ACTIONS(6127), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18662] = 3, + [18954] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9200), 1, - anon_sym_RPAREN, - [18672] = 2, + ACTIONS(9256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18962] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2440), 2, + ACTIONS(9287), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18680] = 3, + [18970] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7699), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9202), 1, - anon_sym_RPAREN, - [18690] = 3, + ACTIONS(9256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [18978] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9204), 1, - anon_sym_SEMI, - ACTIONS(9206), 1, - sym__automatic_semicolon, - [18700] = 2, + ACTIONS(9073), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [18986] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9208), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [18708] = 3, + ACTIONS(9289), 1, + anon_sym_RBRACE, + ACTIONS(9291), 1, + sym_java_class_content, + [18996] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9210), 1, - anon_sym_DQUOTE, - ACTIONS(9212), 1, - anon_sym_SQUOTE, - [18718] = 2, + ACTIONS(8445), 1, + sym_identifier, + STATE(5068), 1, + sym_component_attribute, + [19006] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(6239), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [18726] = 2, + ACTIONS(5027), 1, + anon_sym_LBRACE, + STATE(823), 1, + sym_statement_block, + [19016] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9214), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [18734] = 2, + ACTIONS(6667), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19024] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7147), 2, + ACTIONS(7134), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [18742] = 3, + anon_sym_RBRACK, + [19032] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5019), 1, + ACTIONS(9293), 1, anon_sym_LBRACE, - STATE(835), 1, - sym_statement_block, - [18752] = 2, + STATE(727), 1, + sym_switch_body, + [19042] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9216), 2, + ACTIONS(9256), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [19050] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(6669), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18760] = 2, + [19058] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9218), 2, + ACTIONS(9295), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18768] = 2, + [19066] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6123), 2, + ACTIONS(2530), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18776] = 3, + [19074] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8538), 1, + ACTIONS(8472), 1, anon_sym_LPAREN, - STATE(4971), 1, + STATE(4945), 1, sym_parenthesized_expression, - [18786] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9220), 1, - anon_sym_LBRACE, - STATE(813), 1, - sym_switch_body, - [18796] = 3, + [19084] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9202), 1, - anon_sym_RPAREN, - [18806] = 3, + ACTIONS(9297), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [19092] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9222), 1, - anon_sym_RPAREN, - [18816] = 2, + ACTIONS(9299), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19100] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9037), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [18824] = 2, + ACTIONS(9301), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19108] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9224), 2, + ACTIONS(9303), 2, anon_sym_EQ_GT, anon_sym_DASH_GT, - [18832] = 3, + [19116] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4821), 1, - sym_formal_parameters, - [18842] = 3, + ACTIONS(9305), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19124] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9226), 1, + ACTIONS(9198), 1, anon_sym_LPAREN, - STATE(267), 1, - sym__for_header, - [18852] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(4783), 1, - sym_statement_block, - [18862] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4834), 1, - sym_statement_block, - [18872] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7699), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9200), 1, - anon_sym_RPAREN, - [18882] = 3, + STATE(223), 1, + sym_parenthesized_expression, + [19134] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8933), 1, + ACTIONS(8649), 1, anon_sym_LBRACE, - STATE(552), 1, + STATE(5011), 1, sym_statement_block, - [18892] = 2, + [19144] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6700), 2, + ACTIONS(9307), 2, sym__automatic_semicolon, anon_sym_SEMI, - [18900] = 3, + [19152] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8472), 1, + anon_sym_LPAREN, + STATE(5059), 1, + sym_parenthesized_expression, + [19162] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(959), 1, + STATE(969), 1, sym_formal_parameters, - [18910] = 2, + [19172] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5041), 2, - anon_sym_DOT, - sym_identifier, - [18918] = 3, + ACTIONS(5095), 1, + anon_sym_LBRACE, + STATE(4289), 1, + sym_component_body, + [19182] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9172), 1, + ACTIONS(9218), 1, anon_sym_from, - STATE(4159), 1, + STATE(4336), 1, sym__from_clause, - [18928] = 2, + [19192] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9228), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [18936] = 3, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(919), 1, + sym_switch_body, + [19202] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_SEMI, - ACTIONS(9232), 1, - sym__automatic_semicolon, - [18946] = 2, + ACTIONS(9198), 1, + anon_sym_LPAREN, + STATE(208), 1, + sym_parenthesized_expression, + [19212] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9234), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [18954] = 3, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(856), 1, + sym_component_body, + [19222] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9311), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [19230] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - STATE(1264), 1, + STATE(1245), 1, sym_formal_parameters, - [18964] = 3, + [19240] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(962), 1, + STATE(963), 1, sym_formal_parameters, - [18974] = 3, + [19250] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, + ACTIONS(8649), 1, anon_sym_LBRACE, - STATE(4913), 1, + STATE(5049), 1, sym_statement_block, - [18984] = 2, + [19260] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9236), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [18992] = 3, + ACTIONS(9313), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19268] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(8649), 1, anon_sym_LBRACE, - STATE(4221), 1, + STATE(4937), 1, sym_statement_block, - [19002] = 2, + [19278] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9239), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19010] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(980), 1, + STATE(978), 1, sym_formal_parameters, - [19020] = 3, + [19288] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(5041), 1, - sym_statement_block, - [19030] = 3, + ACTIONS(9315), 1, + anon_sym_SEMI, + ACTIONS(9317), 1, + sym__automatic_semicolon, + [19298] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(982), 1, + STATE(979), 1, sym_formal_parameters, - [19040] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9241), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19048] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9243), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [19056] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9069), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19064] = 3, + [19308] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, - anon_sym_LPAREN, - STATE(995), 1, - sym_formal_parameters, - [19074] = 3, + ACTIONS(9319), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19316] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(985), 1, + STATE(982), 1, sym_formal_parameters, - [19084] = 3, + [19326] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4882), 1, - sym_statement_block, - [19094] = 3, + ACTIONS(9321), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [19334] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(8649), 1, anon_sym_LBRACE, - STATE(4888), 1, + STATE(4868), 1, sym_statement_block, - [19104] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4890), 1, - sym_formal_parameters, - [19114] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4912), 1, - sym_formal_parameters, - [19124] = 3, + [19344] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(7743), 1, aux_sym_nested_identifier_token1, - ACTIONS(9245), 1, + ACTIONS(9323), 1, anon_sym_RPAREN, - [19134] = 3, + [19354] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, + ACTIONS(7735), 1, aux_sym_nested_identifier_token1, - ACTIONS(9245), 1, + ACTIONS(9323), 1, anon_sym_RPAREN, - [19144] = 3, + [19364] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(7743), 1, aux_sym_nested_identifier_token1, - ACTIONS(9247), 1, + ACTIONS(9325), 1, anon_sym_RPAREN, - [19154] = 3, + [19374] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, + ACTIONS(7735), 1, aux_sym_nested_identifier_token1, - ACTIONS(9247), 1, + ACTIONS(9325), 1, anon_sym_RPAREN, - [19164] = 3, + [19384] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(987), 1, + STATE(984), 1, sym_formal_parameters, - [19174] = 3, + [19394] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(7743), 1, aux_sym_nested_identifier_token1, - ACTIONS(9249), 1, + ACTIONS(9327), 1, anon_sym_RPAREN, - [19184] = 3, + [19404] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, + ACTIONS(7735), 1, aux_sym_nested_identifier_token1, - ACTIONS(9249), 1, + ACTIONS(9327), 1, anon_sym_RPAREN, - [19194] = 3, + [19414] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(4914), 1, + STATE(970), 1, sym_formal_parameters, - [19204] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9251), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [19212] = 3, + [19424] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9253), 1, - anon_sym_SEMI, - ACTIONS(9255), 1, - sym__automatic_semicolon, - [19222] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9257), 1, - anon_sym_LPAREN, - STATE(227), 1, - sym__for_header, - [19232] = 3, + ACTIONS(9329), 1, + anon_sym_DQUOTE, + ACTIONS(9331), 1, + anon_sym_SQUOTE, + [19434] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(5045), 1, - sym_statement_block, - [19242] = 2, + ACTIONS(9218), 1, + anon_sym_from, + STATE(4210), 1, + sym__from_clause, + [19444] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9259), 2, + ACTIONS(6717), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19250] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4782), 1, - sym_statement_block, - [19260] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9239), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19268] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9239), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19276] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4915), 1, - sym_statement_block, - [19286] = 2, + [19452] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9239), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19294] = 3, + ACTIONS(9333), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19460] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4916), 1, - sym_statement_block, - [19304] = 3, + ACTIONS(9335), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [19468] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, - anon_sym_LPAREN, - STATE(1260), 1, - sym_formal_parameters, - [19314] = 3, + ACTIONS(8216), 1, + sym_identifier, + STATE(4637), 1, + sym_component_attribute, + [19478] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9154), 1, + ACTIONS(9198), 1, anon_sym_LPAREN, - STATE(272), 1, + STATE(237), 1, sym_parenthesized_expression, - [19324] = 3, + [19488] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(5095), 1, anon_sym_LBRACE, - STATE(4787), 1, - sym_statement_block, - [19334] = 3, + STATE(4309), 1, + sym_component_body, + [19498] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(5000), 1, - sym_statement_block, - [19344] = 3, + ACTIONS(9337), 1, + anon_sym_SEMI, + ACTIONS(9339), 1, + sym__automatic_semicolon, + [19508] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5087), 1, - anon_sym_LBRACE, - STATE(637), 1, - sym_component_body, - [19354] = 3, + ACTIONS(9341), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19516] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4797), 1, - sym_statement_block, - [19364] = 3, + ACTIONS(8311), 1, + sym_identifier, + STATE(4525), 1, + sym_component_attribute, + [19526] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(8649), 1, anon_sym_LBRACE, - STATE(4811), 1, + STATE(4837), 1, sym_statement_block, - [19374] = 3, + [19536] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9172), 1, - anon_sym_from, - STATE(4317), 1, - sym__from_clause, - [19384] = 3, + ACTIONS(9343), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19544] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, - anon_sym_LPAREN, - STATE(963), 1, - sym_formal_parameters, - [19394] = 2, + ACTIONS(9218), 1, + anon_sym_from, + STATE(4203), 1, + sym__from_clause, + [19554] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9239), 2, + ACTIONS(7136), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [19402] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4812), 1, - sym_statement_block, - [19412] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(4972), 1, - sym_statement_block, - [19422] = 3, + anon_sym_RPAREN, + [19562] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(1214), 1, + STATE(4840), 1, sym_formal_parameters, - [19432] = 2, + [19572] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5991), 2, + ACTIONS(9345), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19440] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7699), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9134), 1, - anon_sym_RPAREN, - [19450] = 3, + [19580] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4820), 1, - sym_statement_block, - [19460] = 3, + ACTIONS(7810), 1, + anon_sym_LPAREN, + STATE(1261), 1, + sym_formal_parameters, + [19590] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(8649), 1, anon_sym_LBRACE, - STATE(4823), 1, + STATE(4975), 1, sym_statement_block, - [19470] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9239), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19478] = 3, + [19600] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9261), 1, - anon_sym_RBRACE, - ACTIONS(9263), 1, - sym_java_class_content, - [19488] = 3, + ACTIONS(6794), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19608] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8538), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - STATE(4814), 1, - sym_parenthesized_expression, - [19498] = 2, + STATE(1239), 1, + sym_formal_parameters, + [19618] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9265), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [19506] = 3, + ACTIONS(9200), 1, + anon_sym_LPAREN, + STATE(971), 1, + sym_formal_parameters, + [19628] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(8649), 1, anon_sym_LBRACE, - STATE(4824), 1, + STATE(4952), 1, sym_statement_block, - [19516] = 3, + [19638] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(1081), 1, + ACTIONS(9347), 1, anon_sym_SEMI, - ACTIONS(5500), 1, + ACTIONS(9349), 1, sym__automatic_semicolon, - [19526] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4825), 1, - sym_statement_block, - [19536] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4829), 1, - sym_statement_block, - [19546] = 3, + [19648] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9267), 1, - anon_sym_SEMI, - ACTIONS(9269), 1, + ACTIONS(9351), 2, sym__automatic_semicolon, - [19556] = 2, + anon_sym_SEMI, + [19656] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2023), 2, + ACTIONS(9353), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19564] = 3, + [19664] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(840), 1, + STATE(589), 1, sym_component_body, - [19574] = 3, + [19674] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(1221), 1, + STATE(994), 1, sym_formal_parameters, - [19584] = 3, + [19684] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, - anon_sym_LBRACE, - STATE(4988), 1, - sym_statement_block, - [19594] = 2, + ACTIONS(9355), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_parenthesized_expression, + [19694] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6355), 2, + ACTIONS(9357), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19602] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9271), 1, - anon_sym_RBRACE, - ACTIONS(9273), 1, - sym_java_class_content, - [19612] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9239), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19620] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8319), 1, - sym_identifier, - STATE(4417), 1, - sym_component_attribute, - [19630] = 3, + [19702] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, - anon_sym_LPAREN, - STATE(977), 1, - sym_formal_parameters, - [19640] = 3, + ACTIONS(9359), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19710] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5092), 1, + ACTIONS(5095), 1, anon_sym_LBRACE, - STATE(4254), 1, + STATE(4323), 1, sym_component_body, - [19650] = 3, + [19720] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - STATE(1226), 1, + STATE(1218), 1, sym_formal_parameters, - [19660] = 3, + [19730] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9275), 1, - anon_sym_SEMI, - ACTIONS(9277), 1, - sym__automatic_semicolon, - [19670] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9279), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [19678] = 2, + ACTIONS(9043), 1, + anon_sym_LBRACE, + STATE(424), 1, + sym_statement_block, + [19740] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9281), 2, + ACTIONS(9361), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19686] = 2, + [19748] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5895), 2, + ACTIONS(1955), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19694] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9283), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [19702] = 2, + [19756] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9285), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [19710] = 2, + ACTIONS(9200), 1, + anon_sym_LPAREN, + STATE(992), 1, + sym_formal_parameters, + [19766] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8725), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [19718] = 3, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(3962), 1, + sym_statement_block, + [19776] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9287), 1, + ACTIONS(9363), 1, anon_sym_RBRACE, - ACTIONS(9289), 1, + ACTIONS(9365), 1, sym_java_class_content, - [19728] = 3, + [19786] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7810), 1, anon_sym_LPAREN, - STATE(1232), 1, + STATE(1226), 1, sym_formal_parameters, - [19738] = 2, + [19796] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9291), 2, - sym__automatic_semicolon, + ACTIONS(9367), 1, anon_sym_SEMI, - [19746] = 2, + ACTIONS(9369), 1, + sym__automatic_semicolon, + [19806] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9293), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [19754] = 3, + ACTIONS(9371), 1, + anon_sym_LBRACE, + STATE(593), 1, + sym_statement_block, + [19816] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4793), 1, - sym_formal_parameters, - [19764] = 3, + ACTIONS(8855), 1, + anon_sym_EQ, + ACTIONS(9373), 1, + anon_sym_COLON, + [19826] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(973), 1, + STATE(995), 1, sym_formal_parameters, - [19774] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9295), 2, - anon_sym_STAR, - sym_identifier, - [19782] = 3, + [19836] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9297), 1, - anon_sym_LBRACE, - STATE(615), 1, - sym_switch_body, - [19792] = 2, + ACTIONS(7810), 1, + anon_sym_LPAREN, + STATE(1234), 1, + sym_formal_parameters, + [19846] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9299), 2, + ACTIONS(6028), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19800] = 3, + [19854] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(822), 1, - sym_component_body, - [19810] = 3, + STATE(3963), 1, + sym_statement_block, + [19864] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9301), 1, - anon_sym_LBRACE, - STATE(4818), 1, - sym_object, - [19820] = 3, + ACTIONS(2394), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [19872] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(4873), 1, + STATE(998), 1, sym_formal_parameters, - [19830] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9303), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [19838] = 3, + [19882] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5087), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(648), 1, - sym_component_body, - [19848] = 2, + STATE(3964), 1, + sym_statement_block, + [19892] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2474), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19856] = 2, + [19900] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9305), 2, - sym__automatic_semicolon, + ACTIONS(1083), 1, anon_sym_SEMI, - [19864] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9307), 2, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [19872] = 3, + ACTIONS(5508), 1, + sym__automatic_semicolon, + [19910] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(7743), 1, aux_sym_nested_identifier_token1, - ACTIONS(9222), 1, + ACTIONS(9375), 1, anon_sym_RPAREN, - [19882] = 3, + [19920] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, - anon_sym_LBRACE, - STATE(852), 1, - sym_component_body, - [19892] = 3, + ACTIONS(7735), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9375), 1, + anon_sym_RPAREN, + [19930] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9154), 1, - anon_sym_LPAREN, - STATE(259), 1, - sym_parenthesized_expression, - [19902] = 3, + ACTIONS(7743), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9377), 1, + anon_sym_RPAREN, + [19940] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, - anon_sym_LBRACE, - STATE(4918), 1, - sym_statement_block, - [19912] = 3, + ACTIONS(7735), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9377), 1, + anon_sym_RPAREN, + [19950] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(9198), 1, anon_sym_LPAREN, - STATE(4922), 1, - sym_formal_parameters, - [19922] = 3, + STATE(272), 1, + sym_parenthesized_expression, + [19960] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(967), 1, + STATE(1000), 1, sym_formal_parameters, - [19932] = 2, + [19970] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9309), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [19940] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9311), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [19948] = 3, + ACTIONS(7743), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9379), 1, + anon_sym_RPAREN, + [19980] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4804), 1, - sym_formal_parameters, - [19958] = 2, + ACTIONS(7735), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9379), 1, + anon_sym_RPAREN, + [19990] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9313), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [19966] = 2, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(3965), 1, + sym_statement_block, + [20000] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6522), 2, + ACTIONS(6274), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19974] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4898), 1, - sym_formal_parameters, - [19984] = 2, + [20008] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6357), 2, + ACTIONS(9381), 2, sym__automatic_semicolon, anon_sym_SEMI, - [19992] = 2, + [20016] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9315), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20000] = 3, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(913), 1, + sym_component_body, + [20026] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9317), 1, - anon_sym_RBRACE, - ACTIONS(9319), 1, - sym_java_class_content, - [20010] = 2, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(829), 1, + sym_component_body, + [20036] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8970), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [20018] = 2, + ACTIONS(8649), 1, + anon_sym_LBRACE, + STATE(4955), 1, + sym_statement_block, + [20046] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9321), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20026] = 3, + ACTIONS(9383), 2, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [20054] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(4810), 1, + STATE(4911), 1, sym_formal_parameters, - [20036] = 3, + [20064] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5087), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym_component_body, - [20046] = 2, + ACTIONS(8979), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [20072] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9323), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20054] = 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(597), 1, + sym_component_body, + [20082] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9325), 2, + ACTIONS(6783), 2, sym__automatic_semicolon, anon_sym_SEMI, - [20062] = 2, + [20090] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9385), 2, sym__automatic_semicolon, anon_sym_SEMI, - [20070] = 3, + [20098] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, - anon_sym_LPAREN, - STATE(989), 1, - sym_formal_parameters, - [20080] = 2, + ACTIONS(9387), 1, + anon_sym_LBRACE, + STATE(4240), 1, + sym_switch_body, + [20108] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9329), 2, + ACTIONS(6105), 2, sym__automatic_semicolon, anon_sym_SEMI, - [20088] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8933), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_statement_block, - [20098] = 2, + [20116] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9331), 2, + ACTIONS(6799), 2, sym__automatic_semicolon, anon_sym_SEMI, - [20106] = 3, + [20124] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5073), 1, - anon_sym_LBRACE, - STATE(862), 1, - sym_component_body, - [20116] = 3, + ACTIONS(9389), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [20132] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(9198), 1, anon_sym_LPAREN, - STATE(1250), 1, - sym_formal_parameters, - [20126] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8933), 1, - anon_sym_LBRACE, - STATE(515), 1, - sym_statement_block, - [20136] = 2, + STATE(260), 1, + sym_parenthesized_expression, + [20142] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9333), 2, - sym__automatic_semicolon, + ACTIONS(9391), 1, anon_sym_SEMI, - [20144] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9335), 1, - anon_sym_LPAREN, - STATE(211), 1, - sym__for_header, - [20154] = 3, + ACTIONS(9393), 1, + sym__automatic_semicolon, + [20152] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(4917), 1, + STATE(972), 1, sym_formal_parameters, - [20164] = 3, + [20162] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9023), 1, + ACTIONS(8970), 1, anon_sym_LBRACE, - STATE(428), 1, + STATE(550), 1, sym_statement_block, - [20174] = 2, + [20172] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(6364), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20182] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8156), 1, - sym_identifier, - STATE(4698), 1, - sym_component_attribute, - [20192] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9168), 1, - anon_sym_LPAREN, - STATE(978), 1, - sym_formal_parameters, - [20202] = 3, + ACTIONS(7743), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9395), 1, + anon_sym_RPAREN, + [20182] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(8900), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [20190] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(957), 1, + STATE(967), 1, sym_formal_parameters, - [20212] = 2, + [20200] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2276), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20220] = 3, + ACTIONS(5068), 2, + anon_sym_DOT, + sym_identifier, + [20208] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, - anon_sym_LPAREN, - STATE(993), 1, - sym_formal_parameters, - [20230] = 3, + ACTIONS(8970), 1, + anon_sym_LBRACE, + STATE(554), 1, + sym_statement_block, + [20218] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9337), 1, + ACTIONS(9128), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(9339), 1, - sym_java_class_content, - [20240] = 3, + [20226] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8663), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(5039), 1, + STATE(4912), 1, sym_statement_block, - [20250] = 3, + [20236] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(606), 1, + sym_component_body, + [20246] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(7735), 1, + aux_sym_nested_identifier_token1, + ACTIONS(9395), 1, + anon_sym_RPAREN, + [20256] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9397), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [20264] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(4919), 1, + STATE(4848), 1, sym_formal_parameters, - [20260] = 3, + [20274] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5092), 1, + ACTIONS(8970), 1, anon_sym_LBRACE, - STATE(4237), 1, - sym_component_body, - [20270] = 3, + STATE(553), 1, + sym_statement_block, + [20284] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9023), 1, + ACTIONS(9043), 1, anon_sym_LBRACE, - STATE(430), 1, + STATE(439), 1, sym_statement_block, - [20280] = 3, + [20294] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9023), 1, + ACTIONS(9043), 1, anon_sym_LBRACE, - STATE(431), 1, + STATE(420), 1, sym_statement_block, - [20290] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(8628), 1, - anon_sym_LPAREN, - STATE(4984), 1, - sym_formal_parameters, - [20300] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(7699), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9341), 1, - anon_sym_RPAREN, - [20310] = 2, + [20304] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(2576), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20318] = 3, + ACTIONS(9399), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [20312] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9341), 1, - anon_sym_RPAREN, - [20328] = 3, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(5076), 1, + sym_statement_block, + [20322] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7699), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9343), 1, - anon_sym_RPAREN, - [20338] = 2, + ACTIONS(8472), 1, + anon_sym_LPAREN, + STATE(4963), 1, + sym_parenthesized_expression, + [20332] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9345), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20346] = 3, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(613), 1, + sym_component_body, + [20342] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9347), 1, - anon_sym_DQUOTE, - ACTIONS(9349), 1, - anon_sym_SQUOTE, - [20356] = 3, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(4879), 1, + sym_formal_parameters, + [20352] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8471), 1, - sym_identifier, - STATE(4996), 1, - sym_component_attribute, - [20366] = 3, + ACTIONS(9188), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [20360] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5092), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(4263), 1, - sym_component_body, - [20376] = 3, + STATE(4906), 1, + sym_statement_block, + [20370] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9023), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(432), 1, + STATE(4908), 1, sym_statement_block, - [20386] = 3, + [20380] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9154), 1, - anon_sym_LPAREN, - STATE(212), 1, - sym_parenthesized_expression, - [20396] = 3, + ACTIONS(9401), 1, + anon_sym_RBRACE, + ACTIONS(9403), 1, + sym_java_class_content, + [20390] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9154), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_parenthesized_expression, - [20406] = 3, + ACTIONS(9405), 1, + anon_sym_DQUOTE, + ACTIONS(9407), 1, + anon_sym_SQUOTE, + [20400] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7703), 1, - aux_sym_nested_identifier_token1, - ACTIONS(9343), 1, - anon_sym_RPAREN, - [20416] = 2, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(4882), 1, + sym_formal_parameters, + [20410] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9351), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20424] = 2, + ACTIONS(9409), 1, + anon_sym_DQUOTE, + ACTIONS(9411), 1, + anon_sym_SQUOTE, + [20420] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9353), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [20432] = 2, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(4910), 1, + sym_statement_block, + [20430] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, + ACTIONS(9188), 2, anon_sym_COMMA, anon_sym_RBRACE, - [20440] = 3, + [20438] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9154), 1, - anon_sym_LPAREN, - STATE(228), 1, - sym_parenthesized_expression, - [20450] = 2, + ACTIONS(9188), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [20446] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(7149), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [20458] = 2, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(835), 1, + sym_component_body, + [20456] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9355), 2, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(9043), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_statement_block, [20466] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9140), 2, + ACTIONS(9188), 2, anon_sym_COMMA, anon_sym_RBRACE, - [20474] = 3, + [20474] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9357), 1, + ACTIONS(9413), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [20482] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9415), 1, anon_sym_DQUOTE, - ACTIONS(9359), 1, + ACTIONS(9417), 1, anon_sym_SQUOTE, - [20484] = 3, + [20492] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8933), 1, - anon_sym_LBRACE, - STATE(467), 1, - sym_statement_block, - [20494] = 3, + ACTIONS(9200), 1, + anon_sym_LPAREN, + STATE(990), 1, + sym_formal_parameters, + [20502] = 3, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9419), 1, + anon_sym_LPAREN, + STATE(798), 1, + sym_parenthesized_expression, + [20512] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(5092), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(4200), 1, - sym_component_body, - [20504] = 2, + STATE(4916), 1, + sym_statement_block, + [20522] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6744), 2, + ACTIONS(9421), 2, sym__automatic_semicolon, anon_sym_SEMI, - [20512] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9154), 1, - anon_sym_LPAREN, - STATE(229), 1, - sym_parenthesized_expression, - [20522] = 3, + [20530] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9144), 1, anon_sym_LBRACE, - STATE(3907), 1, + STATE(4917), 1, sym_statement_block, - [20532] = 3, + [20540] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9361), 1, - anon_sym_LPAREN, - STATE(4010), 1, - sym_parenthesized_expression, - [20542] = 3, + ACTIONS(9144), 1, + anon_sym_LBRACE, + STATE(4920), 1, + sym_statement_block, + [20550] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9168), 1, + ACTIONS(8851), 1, anon_sym_LPAREN, - STATE(971), 1, + STATE(4892), 1, sym_formal_parameters, - [20552] = 3, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9363), 1, - anon_sym_DQUOTE, - ACTIONS(9365), 1, - anon_sym_SQUOTE, - [20562] = 3, + [20560] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9367), 1, + ACTIONS(9423), 1, anon_sym_DQUOTE, - ACTIONS(9369), 1, + ACTIONS(9425), 1, anon_sym_SQUOTE, - [20572] = 3, + [20570] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9371), 1, + ACTIONS(9427), 1, anon_sym_DQUOTE, - ACTIONS(9373), 1, + ACTIONS(9429), 1, anon_sym_SQUOTE, - [20582] = 3, + [20580] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9375), 1, + ACTIONS(9431), 1, anon_sym_DQUOTE, - ACTIONS(9377), 1, + ACTIONS(9433), 1, anon_sym_SQUOTE, - [20592] = 2, + [20590] = 3, ACTIONS(129), 1, sym_comment, - ACTIONS(9379), 2, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(8851), 1, + anon_sym_LPAREN, + STATE(4859), 1, + sym_formal_parameters, [20600] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 1, - anon_sym_RPAREN, + ACTIONS(9435), 1, + anon_sym_SLASH2, [20607] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9249), 1, - anon_sym_RPAREN, + ACTIONS(9437), 1, + anon_sym_RBRACE, [20614] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9381), 1, - sym_identifier, + ACTIONS(9439), 1, + anon_sym_EQ, [20621] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9383), 1, - anon_sym_DQUOTE, + ACTIONS(9441), 1, + sym_regex_pattern, [20628] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9385), 1, - anon_sym_DQUOTE, + ACTIONS(9443), 1, + sym_identifier, [20635] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9387), 1, - anon_sym_EQ, + ACTIONS(7026), 1, + anon_sym_RPAREN, [20642] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9389), 1, - anon_sym_SLASH2, + ACTIONS(6964), 1, + anon_sym_RPAREN, [20649] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9391), 1, - sym_regex_pattern, + ACTIONS(9445), 1, + anon_sym_RPAREN, [20656] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9393), 1, - anon_sym_SLASH2, + ACTIONS(6968), 1, + anon_sym_RPAREN, [20663] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9395), 1, - anon_sym_as, + ACTIONS(9447), 1, + anon_sym_EQ, [20670] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7000), 1, - anon_sym_SEMI, + ACTIONS(9449), 1, + anon_sym_RPAREN, [20677] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9385), 1, - anon_sym_SQUOTE, + ACTIONS(6030), 1, + anon_sym_RBRACK, [20684] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9383), 1, - anon_sym_SQUOTE, + ACTIONS(6862), 1, + anon_sym_RPAREN, [20691] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9397), 1, - anon_sym_DQUOTE, + ACTIONS(9451), 1, + anon_sym_RBRACK, [20698] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9397), 1, - anon_sym_SQUOTE, + ACTIONS(9246), 1, + anon_sym_RPAREN, [20705] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6047), 1, - anon_sym_RBRACK, + ACTIONS(6990), 1, + anon_sym_RPAREN, [20712] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6940), 1, - anon_sym_RBRACE, + ACTIONS(9453), 1, + sym_identifier, [20719] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9399), 1, - sym_regex_pattern, + ACTIONS(6024), 1, + anon_sym_RBRACK, [20726] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9401), 1, - anon_sym_RPAREN, + ACTIONS(9455), 1, + sym_identifier, [20733] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6988), 1, + ACTIONS(9457), 1, anon_sym_RPAREN, [20740] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9403), 1, - anon_sym_COLON, + ACTIONS(6946), 1, + anon_sym_RPAREN, [20747] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6964), 1, - anon_sym_RPAREN, + ACTIONS(9459), 1, + sym_identifier, [20754] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_SLASH2, + ACTIONS(9461), 1, + anon_sym_RBRACK, [20761] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9407), 1, - anon_sym_EQ, + ACTIONS(9463), 1, + anon_sym_RBRACK, [20768] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7060), 1, - anon_sym_RPAREN, + ACTIONS(9465), 1, + sym_identifier, [20775] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9409), 1, - sym_identifier, + ACTIONS(9467), 1, + anon_sym_RPAREN, [20782] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9411), 1, - sym_identifier, + ACTIONS(9469), 1, + anon_sym_EQ, [20789] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9413), 1, - anon_sym_RPAREN, + ACTIONS(9471), 1, + anon_sym_RBRACK, [20796] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6798), 1, - anon_sym_SEMI, + ACTIONS(9473), 1, + anon_sym_EQ, [20803] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9415), 1, - anon_sym_SLASH2, + ACTIONS(9475), 1, + anon_sym_DQUOTE, [20810] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9417), 1, - anon_sym_EQ, + ACTIONS(9475), 1, + anon_sym_SQUOTE, [20817] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6060), 1, + ACTIONS(6135), 1, anon_sym_RBRACK, [20824] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9419), 1, - sym_cfml_template_content, + ACTIONS(9477), 1, + anon_sym_EQ, [20831] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_RPAREN, + ACTIONS(9479), 1, + sym_identifier, [20838] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9423), 1, - anon_sym_from, + ACTIONS(9481), 1, + anon_sym_RPAREN, [20845] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9425), 1, + ACTIONS(9483), 1, anon_sym_RPAREN, [20852] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9427), 1, - sym_identifier, + ACTIONS(9485), 1, + anon_sym_SLASH2, [20859] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9429), 1, + ACTIONS(9487), 1, anon_sym_from, [20866] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9431), 1, - anon_sym_RPAREN, + ACTIONS(9489), 1, + anon_sym_EQ, [20873] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_RPAREN, + ACTIONS(9491), 1, + anon_sym_SLASH2, [20880] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(6998), 1, - anon_sym_SEMI, + ACTIONS(9493), 1, + sym_regex_pattern, [20887] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9433), 1, - anon_sym_RPAREN, + ACTIONS(9495), 1, + sym_cfml_template_content, [20894] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9435), 1, - anon_sym_DQUOTE, + ACTIONS(6992), 1, + anon_sym_RPAREN, [20901] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9435), 1, - anon_sym_SQUOTE, + ACTIONS(6038), 1, + anon_sym_RBRACK, [20908] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9437), 1, - anon_sym_RPAREN, + ACTIONS(9497), 1, + anon_sym_EQ, [20915] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9439), 1, - anon_sym_RBRACE, + ACTIONS(5868), 1, + anon_sym_RBRACK, [20922] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9441), 1, - sym_identifier, + ACTIONS(6139), 1, + anon_sym_RBRACK, [20929] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9443), 1, + ACTIONS(9499), 1, anon_sym_RPAREN, [20936] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9445), 1, - anon_sym_EQ, + ACTIONS(9501), 1, + anon_sym_RPAREN, [20943] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5937), 1, - anon_sym_RBRACK, + ACTIONS(9503), 1, + anon_sym_RPAREN, [20950] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5608), 1, - anon_sym_LPAREN, + ACTIONS(8923), 1, + anon_sym_LBRACE, [20957] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9447), 1, - anon_sym_RBRACK, + ACTIONS(8937), 1, + anon_sym_RBRACE, [20964] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9449), 1, + ACTIONS(6974), 1, anon_sym_RPAREN, [20971] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7697), 1, - anon_sym_RPAREN, + ACTIONS(9505), 1, + anon_sym_EQ, [20978] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9451), 1, - sym_regex_pattern, + ACTIONS(9507), 1, + anon_sym_DQUOTE, [20985] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9453), 1, - anon_sym_from, + ACTIONS(9507), 1, + anon_sym_SQUOTE, [20992] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9455), 1, + ACTIONS(9509), 1, anon_sym_RPAREN, [20999] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9457), 1, + ACTIONS(9511), 1, anon_sym_RPAREN, [21006] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9459), 1, - anon_sym_EQ, + ACTIONS(6986), 1, + anon_sym_RPAREN, [21013] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7018), 1, - anon_sym_RPAREN, + ACTIONS(9513), 1, + anon_sym_DQUOTE, [21020] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9461), 1, - anon_sym_RPAREN, + ACTIONS(9515), 1, + sym_regex_pattern, [21027] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9463), 1, - sym_identifier, + ACTIONS(9517), 1, + anon_sym_EQ, [21034] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5939), 1, - anon_sym_RBRACK, + ACTIONS(9519), 1, + anon_sym_EQ, [21041] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9465), 1, - sym_query_text, + ACTIONS(9521), 1, + anon_sym_from, [21048] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9467), 1, + ACTIONS(9523), 1, anon_sym_RPAREN, [21055] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9469), 1, - anon_sym_RPAREN, + ACTIONS(9134), 1, + anon_sym_LBRACE, [21062] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9103), 1, - anon_sym_LBRACE, + ACTIONS(9525), 1, + sym_query_text, [21069] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9471), 1, - anon_sym_RPAREN, + ACTIONS(9527), 1, + sym_regex_pattern, [21076] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9473), 1, + ACTIONS(9529), 1, anon_sym_DQUOTE, [21083] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9473), 1, + ACTIONS(9529), 1, anon_sym_SQUOTE, [21090] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9475), 1, - sym_identifier, + ACTIONS(7072), 1, + anon_sym_RPAREN, [21097] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6001), 1, + ACTIONS(6103), 1, anon_sym_RBRACK, [21104] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9477), 1, - anon_sym_RPAREN, + ACTIONS(9531), 1, + sym_query_text, [21111] = 2, - ACTIONS(129), 1, - sym_comment, - ACTIONS(9479), 1, - anon_sym_as, - [21118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9481), 1, + ACTIONS(9533), 1, sym_regex_pattern, - [21125] = 2, + [21118] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9483), 1, + ACTIONS(9535), 1, anon_sym_EQ, + [21125] = 2, + ACTIONS(129), 1, + sym_comment, + ACTIONS(9537), 1, + sym_cfml_template_content, [21132] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_EQ, + ACTIONS(9539), 1, + anon_sym_DQUOTE, [21139] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6003), 1, - anon_sym_RBRACK, + ACTIONS(9539), 1, + anon_sym_SQUOTE, [21146] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9485), 1, - sym_identifier, + ACTIONS(7060), 1, + anon_sym_RPAREN, [21153] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9487), 1, - anon_sym_EQ, + ACTIONS(9541), 1, + anon_sym_as, [21160] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9489), 1, - sym_identifier, + ACTIONS(6137), 1, + anon_sym_RBRACK, [21167] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6870), 1, - anon_sym_RPAREN, + ACTIONS(9543), 1, + anon_sym_DQUOTE, [21174] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9491), 1, - anon_sym_DQUOTE, + ACTIONS(9543), 1, + anon_sym_SQUOTE, [21181] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9491), 1, - anon_sym_SQUOTE, + ACTIONS(9545), 1, + anon_sym_RPAREN, [21188] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(5999), 1, - anon_sym_RBRACK, + ACTIONS(9513), 1, + anon_sym_SQUOTE, [21195] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(5935), 1, - anon_sym_RBRACK, + ACTIONS(9547), 1, + sym_regex_pattern, [21202] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_COLON, + ACTIONS(7725), 1, + anon_sym_from, [21209] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9495), 1, - sym_regex_pattern, + ACTIONS(6886), 1, + anon_sym_SEMI, [21216] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9497), 1, + ACTIONS(7000), 1, anon_sym_RPAREN, [21223] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9499), 1, - sym_identifier, + ACTIONS(9549), 1, + anon_sym_RBRACE, [21230] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9501), 1, - anon_sym_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(9551), 1, + anon_sym_EQ, [21237] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9503), 1, + ACTIONS(5916), 1, anon_sym_RBRACK, [21244] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9341), 1, - anon_sym_RPAREN, + ACTIONS(9553), 1, + anon_sym_RBRACE, [21251] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9505), 1, - sym_identifier, + ACTIONS(7104), 1, + anon_sym_RBRACE, [21258] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9507), 1, - anon_sym_EQ, + ACTIONS(5624), 1, + anon_sym_LPAREN, [21265] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9509), 1, - anon_sym_DQUOTE, + ACTIONS(6856), 1, + anon_sym_RPAREN, [21272] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9509), 1, - anon_sym_SQUOTE, + ACTIONS(6898), 1, + anon_sym_SEMI, [21279] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6018), 1, - anon_sym_RBRACK, + ACTIONS(9555), 1, + sym_identifier, [21286] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9511), 1, + ACTIONS(9557), 1, anon_sym_RPAREN, [21293] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9513), 1, - sym_regex_pattern, + ACTIONS(9559), 1, + anon_sym_RPAREN, [21300] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9515), 1, - anon_sym_RBRACE, + ACTIONS(7780), 1, + anon_sym_RPAREN, [21307] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9202), 1, - anon_sym_RPAREN, + ACTIONS(9561), 1, + sym_regex_pattern, [21314] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9517), 1, - ts_builtin_sym_end, + ACTIONS(9563), 1, + anon_sym_EQ, [21321] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9519), 1, - anon_sym_RPAREN, + ACTIONS(5918), 1, + anon_sym_RBRACK, [21328] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9521), 1, - anon_sym_EQ, + ACTIONS(9375), 1, + anon_sym_RPAREN, [21335] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9343), 1, - anon_sym_RPAREN, + ACTIONS(9565), 1, + anon_sym_RBRACK, [21342] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6043), 1, - anon_sym_RBRACK, + ACTIONS(9567), 1, + sym_identifier, [21349] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 1, - anon_sym_EQ, + ACTIONS(9569), 1, + anon_sym_SLASH2, [21356] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6844), 1, + ACTIONS(9377), 1, anon_sym_RPAREN, [21363] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6878), 1, - anon_sym_RPAREN, + ACTIONS(9571), 1, + sym_cfml_template_content, [21370] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6902), 1, + ACTIONS(7054), 1, anon_sym_RPAREN, [21377] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9525), 1, - anon_sym_EQ, + ACTIONS(9573), 1, + anon_sym_RBRACE, [21384] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9527), 1, + ACTIONS(9379), 1, anon_sym_RPAREN, [21391] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9529), 1, - anon_sym_RPAREN, + ACTIONS(9575), 1, + anon_sym_EQ, [21398] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(9577), 1, anon_sym_RPAREN, [21405] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9531), 1, - anon_sym_RPAREN, + ACTIONS(9579), 1, + sym_identifier, [21412] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9533), 1, - anon_sym_EQ, + ACTIONS(9581), 1, + anon_sym_RPAREN, [21419] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6880), 1, + ACTIONS(7792), 1, anon_sym_RPAREN, [21426] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9535), 1, + ACTIONS(9583), 1, anon_sym_EQ, [21433] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6072), 1, - anon_sym_RBRACK, + ACTIONS(9585), 1, + anon_sym_RPAREN, [21440] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8630), 1, - anon_sym_COLON, + ACTIONS(9587), 1, + anon_sym_RPAREN, [21447] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9537), 1, - anon_sym_RBRACK, + ACTIONS(9589), 1, + sym_identifier, [21454] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9539), 1, - anon_sym_RBRACE, + ACTIONS(9591), 1, + anon_sym_as, [21461] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9541), 1, - sym_identifier, + ACTIONS(6994), 1, + anon_sym_RPAREN, [21468] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6027), 1, - anon_sym_RBRACK, + ACTIONS(9593), 1, + anon_sym_BQUOTE_BQUOTE_BQUOTE, [21475] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7010), 1, - anon_sym_RPAREN, + ACTIONS(9595), 1, + anon_sym_EQ, [21482] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9543), 1, - anon_sym_EQ, + ACTIONS(9597), 1, + sym_identifier, [21489] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9545), 1, - anon_sym_EQ, + ACTIONS(6980), 1, + anon_sym_SEMI, [21496] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9547), 1, - sym_cfml_template_content, + ACTIONS(9599), 1, + sym_identifier, [21503] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6800), 1, - anon_sym_RPAREN, + ACTIONS(9601), 1, + sym_query_text, [21510] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9549), 1, - anon_sym_RBRACK, + ACTIONS(9603), 1, + sym_query_text, [21517] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(6988), 1, + anon_sym_RPAREN, [21524] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9553), 1, - anon_sym_RBRACE, + ACTIONS(7050), 1, + anon_sym_SEMI, [21531] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9555), 1, - anon_sym_EQ, + ACTIONS(9605), 1, + sym_identifier, [21538] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9557), 1, - sym_identifier, + ACTIONS(9607), 1, + anon_sym_EQ, [21545] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6912), 1, + ACTIONS(7094), 1, anon_sym_RPAREN, [21552] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9559), 1, - sym_identifier, + ACTIONS(9609), 1, + anon_sym_RPAREN, [21559] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9561), 1, - anon_sym_RPAREN, + ACTIONS(9611), 1, + sym_identifier, [21566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9563), 1, + ACTIONS(9613), 1, anon_sym_SLASH2, [21573] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9565), 1, - anon_sym_from, + ACTIONS(9615), 1, + anon_sym_EQ, [21580] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9567), 1, - anon_sym_from, + ACTIONS(9617), 1, + anon_sym_RPAREN, [21587] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9569), 1, - sym_identifier, + ACTIONS(9619), 1, + sym_query_text, [21594] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9571), 1, - sym_query_text, + ACTIONS(9621), 1, + sym_identifier, [21601] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9573), 1, - sym_query_text, + ACTIONS(9623), 1, + anon_sym_SLASH2, [21608] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9575), 1, - sym_regex_pattern, + ACTIONS(9625), 1, + sym_identifier, [21615] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7034), 1, - anon_sym_SEMI, + ACTIONS(9627), 1, + anon_sym_EQ, [21622] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9134), 1, - anon_sym_RPAREN, + ACTIONS(9629), 1, + sym_query_text, [21629] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9577), 1, + ACTIONS(9631), 1, anon_sym_RPAREN, [21636] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6876), 1, - anon_sym_SEMI, + ACTIONS(9633), 1, + anon_sym_RBRACE, [21643] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9579), 1, - sym_cfml_template_content, + ACTIONS(9635), 1, + sym_identifier, [21650] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9581), 1, + ACTIONS(9637), 1, sym_identifier, [21657] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9583), 1, - anon_sym_EQ, + ACTIONS(9639), 1, + sym_regex_pattern, [21664] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9585), 1, - sym_identifier, + ACTIONS(9077), 1, + anon_sym_LBRACE, [21671] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6872), 1, + ACTIONS(9641), 1, anon_sym_RPAREN, [21678] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9587), 1, - sym_identifier, + ACTIONS(9643), 1, + anon_sym_EQ, [21685] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9589), 1, - sym_query_text, + ACTIONS(9645), 1, + anon_sym_RBRACK, [21692] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_LBRACE, + ACTIONS(6143), 1, + anon_sym_RBRACK, [21699] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9591), 1, - sym_identifier, + ACTIONS(9647), 1, + anon_sym_EQ, [21706] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(7709), 1, - anon_sym_from, + ACTIONS(9649), 1, + anon_sym_SLASH2, [21713] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9593), 1, - anon_sym_EQ, + ACTIONS(6145), 1, + anon_sym_RBRACK, [21720] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9595), 1, - sym_query_text, + ACTIONS(9651), 1, + anon_sym_EQ, [21727] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9597), 1, - anon_sym_EQ, + ACTIONS(6121), 1, + anon_sym_RBRACK, [21734] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9079), 1, - anon_sym_RBRACE, + ACTIONS(6982), 1, + anon_sym_RPAREN, [21741] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6960), 1, - anon_sym_RPAREN, + ACTIONS(9653), 1, + anon_sym_RBRACK, [21748] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6842), 1, - anon_sym_RPAREN, + ACTIONS(9655), 1, + anon_sym_RBRACE, [21755] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9599), 1, - anon_sym_RBRACK, + ACTIONS(9657), 1, + anon_sym_RPAREN, [21762] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9601), 1, - anon_sym_RPAREN, + ACTIONS(9659), 1, + ts_builtin_sym_end, [21769] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9603), 1, - anon_sym_EQ, + ACTIONS(9661), 1, + anon_sym_DQUOTE, [21776] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9605), 1, + ACTIONS(6894), 1, anon_sym_RPAREN, [21783] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8951), 1, - anon_sym_LBRACE, + ACTIONS(9661), 1, + anon_sym_SQUOTE, [21790] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(9663), 1, anon_sym_RPAREN, [21797] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9607), 1, - anon_sym_RPAREN, + ACTIONS(9665), 1, + anon_sym_COLON, [21804] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9609), 1, + ACTIONS(7024), 1, anon_sym_RPAREN, [21811] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9611), 1, - anon_sym_EQ, + ACTIONS(9667), 1, + anon_sym_RPAREN, [21818] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6029), 1, + ACTIONS(6097), 1, anon_sym_RBRACK, [21825] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9613), 1, - anon_sym_EQ, + ACTIONS(6123), 1, + anon_sym_RBRACK, [21832] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7042), 1, + ACTIONS(9669), 1, anon_sym_RPAREN, [21839] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9615), 1, - sym_regex_pattern, + ACTIONS(6952), 1, + anon_sym_SEMI, [21846] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6031), 1, - anon_sym_RBRACK, + ACTIONS(7096), 1, + anon_sym_SEMI, [21853] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6056), 1, - anon_sym_RBRACK, + ACTIONS(9395), 1, + anon_sym_RPAREN, [21860] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9617), 1, - anon_sym_EQ, + ACTIONS(6125), 1, + anon_sym_RBRACK, [21867] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9619), 1, + ACTIONS(7014), 1, anon_sym_RPAREN, [21874] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9621), 1, - anon_sym_RBRACK, + ACTIONS(9671), 1, + anon_sym_from, [21881] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9623), 1, + ACTIONS(9673), 1, anon_sym_RPAREN, [21888] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6950), 1, + ACTIONS(9675), 1, anon_sym_RPAREN, [21895] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6020), 1, - anon_sym_RBRACK, + ACTIONS(9677), 1, + anon_sym_EQ, [21902] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9625), 1, - sym_query_text, + ACTIONS(9679), 1, + anon_sym_EQ, [21909] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9627), 1, - anon_sym_SLASH2, + ACTIONS(9681), 1, + sym_identifier, [21916] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9629), 1, - anon_sym_from, + ACTIONS(9683), 1, + sym_identifier, [21923] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9631), 1, - sym_identifier, + ACTIONS(9685), 1, + anon_sym_RPAREN, [21930] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9200), 1, - anon_sym_RPAREN, + ACTIONS(9687), 1, + sym_identifier, [21937] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9633), 1, - anon_sym_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(9689), 1, + sym_query_text, [21944] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9635), 1, - sym_identifier, + ACTIONS(9691), 1, + sym_query_text, [21951] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7050), 1, + ACTIONS(9693), 1, anon_sym_RPAREN, [21958] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6882), 1, - anon_sym_RPAREN, + ACTIONS(7082), 1, + anon_sym_SEMI, [21965] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9637), 1, - sym_identifier, + ACTIONS(9695), 1, + anon_sym_RPAREN, [21972] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9639), 1, - sym_query_text, + ACTIONS(6860), 1, + anon_sym_RPAREN, [21979] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9641), 1, - sym_query_text, + ACTIONS(9697), 1, + sym_identifier, [21986] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6022), 1, - anon_sym_RBRACK, + ACTIONS(9699), 1, + anon_sym_RPAREN, [21993] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7052), 1, - anon_sym_SEMI, + ACTIONS(9701), 1, + sym_identifier, [22000] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9222), 1, - anon_sym_RPAREN, + ACTIONS(6958), 1, + anon_sym_SEMI, [22007] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9643), 1, - anon_sym_EQ, + ACTIONS(9703), 1, + sym_identifier, [22014] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9645), 1, + ACTIONS(9705), 1, sym_identifier, [22021] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9647), 1, + ACTIONS(9707), 1, anon_sym_RPAREN, [22028] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9649), 1, + ACTIONS(6837), 1, anon_sym_RPAREN, [22035] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6944), 1, - anon_sym_RPAREN, + ACTIONS(8575), 1, + anon_sym_EQ, [22042] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9651), 1, - sym_identifier, + ACTIONS(9709), 1, + sym_query_text, [22049] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6888), 1, - anon_sym_RPAREN, + ACTIONS(9711), 1, + sym_query_text, [22056] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9653), 1, + ACTIONS(7038), 1, anon_sym_RPAREN, [22063] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9655), 1, - anon_sym_RBRACE, + ACTIONS(9713), 1, + sym_query_text, [22070] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9657), 1, + ACTIONS(9715), 1, sym_query_text, [22077] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9659), 1, + ACTIONS(9717), 1, sym_query_text, [22084] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9661), 1, - anon_sym_EQ, + ACTIONS(9719), 1, + sym_query_text, [22091] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9663), 1, + ACTIONS(9721), 1, sym_query_text, [22098] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9665), 1, + ACTIONS(9723), 1, sym_query_text, [22105] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9667), 1, - sym_query_text, + ACTIONS(9725), 1, + anon_sym_from, [22112] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9669), 1, - sym_query_text, + ACTIONS(7733), 1, + anon_sym_RPAREN, [22119] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9671), 1, - sym_query_text, + ACTIONS(6157), 1, + anon_sym_RBRACK, [22126] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9673), 1, - sym_query_text, + ACTIONS(6090), 1, + anon_sym_RBRACK, [22133] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6916), 1, - anon_sym_RPAREN, + ACTIONS(9727), 1, + anon_sym_from, [22140] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9675), 1, - anon_sym_SLASH2, + ACTIONS(9323), 1, + anon_sym_RPAREN, [22147] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7002), 1, - anon_sym_RPAREN, + ACTIONS(9729), 1, + sym_identifier, [22154] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9677), 1, - anon_sym_RPAREN, + ACTIONS(9731), 1, + sym_identifier, [22161] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9679), 1, + ACTIONS(7092), 1, anon_sym_RPAREN, [22168] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9681), 1, - anon_sym_RPAREN, + ACTIONS(9733), 1, + anon_sym_EQ, [22175] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9683), 1, - anon_sym_RPAREN, + ACTIONS(9735), 1, + anon_sym_BQUOTE_BQUOTE_BQUOTE, [22182] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9685), 1, - anon_sym_DQUOTE, + ACTIONS(9325), 1, + anon_sym_RPAREN, [22189] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9685), 1, - anon_sym_SQUOTE, + ACTIONS(9737), 1, + anon_sym_RPAREN, [22196] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6045), 1, - anon_sym_RBRACK, + ACTIONS(9230), 1, + anon_sym_RPAREN, [22203] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(8383), 1, - anon_sym_EQ, + ACTIONS(7016), 1, + anon_sym_RPAREN, [22210] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9687), 1, - sym_identifier, + ACTIONS(9739), 1, + anon_sym_RPAREN, [22217] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_SEMI, + ACTIONS(7040), 1, + anon_sym_RPAREN, [22224] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6070), 1, - anon_sym_RBRACK, + ACTIONS(9741), 1, + anon_sym_RBRACE, [22231] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9689), 1, - anon_sym_RBRACK, + ACTIONS(8853), 1, + anon_sym_COLON, [22238] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9691), 1, - sym_identifier, + ACTIONS(9327), 1, + anon_sym_RPAREN, [22245] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6058), 1, - anon_sym_RBRACK, + ACTIONS(9743), 1, + anon_sym_RPAREN, [22252] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9693), 1, + ACTIONS(9745), 1, sym_identifier, [22259] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9695), 1, - anon_sym_RPAREN, + ACTIONS(6099), 1, + anon_sym_RBRACK, [22266] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9697), 1, + ACTIONS(9747), 1, anon_sym_RPAREN, [22273] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6978), 1, - anon_sym_SEMI, + ACTIONS(9749), 1, + anon_sym_RPAREN, [22280] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9699), 1, - anon_sym_EQ, + ACTIONS(6852), 1, + anon_sym_RPAREN, [22287] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9701), 1, - anon_sym_RPAREN, + ACTIONS(6012), 1, + anon_sym_RBRACK, [22294] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9703), 1, - sym_identifier, + ACTIONS(9751), 1, + anon_sym_DQUOTE, [22301] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9705), 1, + ACTIONS(9753), 1, anon_sym_RPAREN, [22308] = 2, - ACTIONS(3), 1, + ACTIONS(129), 1, sym_comment, - ACTIONS(9707), 1, - anon_sym_SLASH2, + ACTIONS(9755), 1, + anon_sym_from, [22315] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7744), 1, - anon_sym_RPAREN, + ACTIONS(6026), 1, + anon_sym_RBRACK, [22322] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6918), 1, - anon_sym_SEMI, + ACTIONS(9757), 1, + anon_sym_EQ, [22329] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(7040), 1, - anon_sym_RPAREN, + ACTIONS(9751), 1, + anon_sym_SQUOTE, [22336] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9245), 1, - anon_sym_RPAREN, + ACTIONS(8260), 1, + anon_sym_EQ, [22343] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6996), 1, + ACTIONS(7062), 1, anon_sym_RPAREN, [22350] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6980), 1, - anon_sym_RPAREN, + ACTIONS(6864), 1, + anon_sym_SEMI, [22357] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(6125), 1, - anon_sym_RBRACK, + ACTIONS(9759), 1, + anon_sym_COLON, [22364] = 2, - ACTIONS(129), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9247), 1, - anon_sym_RPAREN, + ACTIONS(9761), 1, + anon_sym_SLASH2, [22371] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9709), 1, + ACTIONS(9763), 1, anon_sym_RPAREN, [22378] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_RBRACE, + ACTIONS(9765), 1, + anon_sym_BQUOTE_BQUOTE_BQUOTE, [22385] = 2, ACTIONS(129), 1, sym_comment, - ACTIONS(9713), 1, - anon_sym_RBRACE, + ACTIONS(9767), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3821)] = 0, - [SMALL_STATE(3822)] = 89, - [SMALL_STATE(3823)] = 182, - [SMALL_STATE(3824)] = 271, - [SMALL_STATE(3825)] = 360, - [SMALL_STATE(3826)] = 449, - [SMALL_STATE(3827)] = 538, - [SMALL_STATE(3828)] = 627, - [SMALL_STATE(3829)] = 718, - [SMALL_STATE(3830)] = 807, - [SMALL_STATE(3831)] = 896, - [SMALL_STATE(3832)] = 985, - [SMALL_STATE(3833)] = 1074, - [SMALL_STATE(3834)] = 1163, - [SMALL_STATE(3835)] = 1249, - [SMALL_STATE(3836)] = 1335, - [SMALL_STATE(3837)] = 1421, - [SMALL_STATE(3838)] = 1507, - [SMALL_STATE(3839)] = 1593, - [SMALL_STATE(3840)] = 1679, - [SMALL_STATE(3841)] = 1765, - [SMALL_STATE(3842)] = 1840, - [SMALL_STATE(3843)] = 1908, - [SMALL_STATE(3844)] = 1982, - [SMALL_STATE(3845)] = 2049, - [SMALL_STATE(3846)] = 2116, - [SMALL_STATE(3847)] = 2182, - [SMALL_STATE(3848)] = 2248, - [SMALL_STATE(3849)] = 2314, - [SMALL_STATE(3850)] = 2380, - [SMALL_STATE(3851)] = 2432, - [SMALL_STATE(3852)] = 2484, - [SMALL_STATE(3853)] = 2536, - [SMALL_STATE(3854)] = 2588, - [SMALL_STATE(3855)] = 2640, - [SMALL_STATE(3856)] = 2692, - [SMALL_STATE(3857)] = 2737, - [SMALL_STATE(3858)] = 2774, - [SMALL_STATE(3859)] = 2811, - [SMALL_STATE(3860)] = 2848, - [SMALL_STATE(3861)] = 2885, - [SMALL_STATE(3862)] = 2924, - [SMALL_STATE(3863)] = 2963, - [SMALL_STATE(3864)] = 3002, - [SMALL_STATE(3865)] = 3034, - [SMALL_STATE(3866)] = 3070, - [SMALL_STATE(3867)] = 3106, - [SMALL_STATE(3868)] = 3142, - [SMALL_STATE(3869)] = 3178, - [SMALL_STATE(3870)] = 3214, - [SMALL_STATE(3871)] = 3250, - [SMALL_STATE(3872)] = 3286, - [SMALL_STATE(3873)] = 3322, - [SMALL_STATE(3874)] = 3358, - [SMALL_STATE(3875)] = 3394, - [SMALL_STATE(3876)] = 3424, - [SMALL_STATE(3877)] = 3445, - [SMALL_STATE(3878)] = 3466, - [SMALL_STATE(3879)] = 3487, - [SMALL_STATE(3880)] = 3508, - [SMALL_STATE(3881)] = 3529, - [SMALL_STATE(3882)] = 3550, - [SMALL_STATE(3883)] = 3581, - [SMALL_STATE(3884)] = 3602, - [SMALL_STATE(3885)] = 3623, - [SMALL_STATE(3886)] = 3644, - [SMALL_STATE(3887)] = 3665, - [SMALL_STATE(3888)] = 3696, - [SMALL_STATE(3889)] = 3717, - [SMALL_STATE(3890)] = 3738, - [SMALL_STATE(3891)] = 3759, - [SMALL_STATE(3892)] = 3782, - [SMALL_STATE(3893)] = 3803, - [SMALL_STATE(3894)] = 3824, - [SMALL_STATE(3895)] = 3845, - [SMALL_STATE(3896)] = 3866, - [SMALL_STATE(3897)] = 3887, - [SMALL_STATE(3898)] = 3908, - [SMALL_STATE(3899)] = 3929, - [SMALL_STATE(3900)] = 3950, - [SMALL_STATE(3901)] = 3971, - [SMALL_STATE(3902)] = 3992, - [SMALL_STATE(3903)] = 4013, - [SMALL_STATE(3904)] = 4036, - [SMALL_STATE(3905)] = 4062, - [SMALL_STATE(3906)] = 4082, - [SMALL_STATE(3907)] = 4102, - [SMALL_STATE(3908)] = 4120, - [SMALL_STATE(3909)] = 4138, - [SMALL_STATE(3910)] = 4156, - [SMALL_STATE(3911)] = 4174, - [SMALL_STATE(3912)] = 4192, - [SMALL_STATE(3913)] = 4210, - [SMALL_STATE(3914)] = 4228, - [SMALL_STATE(3915)] = 4245, - [SMALL_STATE(3916)] = 4276, - [SMALL_STATE(3917)] = 4295, - [SMALL_STATE(3918)] = 4312, - [SMALL_STATE(3919)] = 4343, - [SMALL_STATE(3920)] = 4366, - [SMALL_STATE(3921)] = 4397, - [SMALL_STATE(3922)] = 4416, - [SMALL_STATE(3923)] = 4438, - [SMALL_STATE(3924)] = 4460, - [SMALL_STATE(3925)] = 4490, - [SMALL_STATE(3926)] = 4512, - [SMALL_STATE(3927)] = 4534, - [SMALL_STATE(3928)] = 4558, - [SMALL_STATE(3929)] = 4586, - [SMALL_STATE(3930)] = 4614, - [SMALL_STATE(3931)] = 4642, - [SMALL_STATE(3932)] = 4670, - [SMALL_STATE(3933)] = 4692, - [SMALL_STATE(3934)] = 4720, - [SMALL_STATE(3935)] = 4748, - [SMALL_STATE(3936)] = 4778, - [SMALL_STATE(3937)] = 4806, - [SMALL_STATE(3938)] = 4834, - [SMALL_STATE(3939)] = 4856, - [SMALL_STATE(3940)] = 4886, - [SMALL_STATE(3941)] = 4902, - [SMALL_STATE(3942)] = 4924, - [SMALL_STATE(3943)] = 4952, - [SMALL_STATE(3944)] = 4982, - [SMALL_STATE(3945)] = 5010, - [SMALL_STATE(3946)] = 5040, - [SMALL_STATE(3947)] = 5056, - [SMALL_STATE(3948)] = 5083, - [SMALL_STATE(3949)] = 5110, - [SMALL_STATE(3950)] = 5137, - [SMALL_STATE(3951)] = 5164, - [SMALL_STATE(3952)] = 5191, - [SMALL_STATE(3953)] = 5218, - [SMALL_STATE(3954)] = 5245, - [SMALL_STATE(3955)] = 5267, - [SMALL_STATE(3956)] = 5289, - [SMALL_STATE(3957)] = 5311, - [SMALL_STATE(3958)] = 5333, - [SMALL_STATE(3959)] = 5359, - [SMALL_STATE(3960)] = 5381, - [SMALL_STATE(3961)] = 5403, - [SMALL_STATE(3962)] = 5425, - [SMALL_STATE(3963)] = 5451, - [SMALL_STATE(3964)] = 5473, - [SMALL_STATE(3965)] = 5499, - [SMALL_STATE(3966)] = 5521, - [SMALL_STATE(3967)] = 5543, - [SMALL_STATE(3968)] = 5565, - [SMALL_STATE(3969)] = 5587, - [SMALL_STATE(3970)] = 5609, - [SMALL_STATE(3971)] = 5635, - [SMALL_STATE(3972)] = 5657, - [SMALL_STATE(3973)] = 5671, - [SMALL_STATE(3974)] = 5693, - [SMALL_STATE(3975)] = 5715, - [SMALL_STATE(3976)] = 5737, - [SMALL_STATE(3977)] = 5763, - [SMALL_STATE(3978)] = 5785, - [SMALL_STATE(3979)] = 5811, - [SMALL_STATE(3980)] = 5835, - [SMALL_STATE(3981)] = 5861, - [SMALL_STATE(3982)] = 5883, - [SMALL_STATE(3983)] = 5905, - [SMALL_STATE(3984)] = 5931, - [SMALL_STATE(3985)] = 5953, - [SMALL_STATE(3986)] = 5975, - [SMALL_STATE(3987)] = 5997, - [SMALL_STATE(3988)] = 6019, - [SMALL_STATE(3989)] = 6045, - [SMALL_STATE(3990)] = 6059, - [SMALL_STATE(3991)] = 6081, - [SMALL_STATE(3992)] = 6103, - [SMALL_STATE(3993)] = 6125, - [SMALL_STATE(3994)] = 6147, - [SMALL_STATE(3995)] = 6169, - [SMALL_STATE(3996)] = 6191, - [SMALL_STATE(3997)] = 6215, - [SMALL_STATE(3998)] = 6237, - [SMALL_STATE(3999)] = 6259, - [SMALL_STATE(4000)] = 6281, - [SMALL_STATE(4001)] = 6303, - [SMALL_STATE(4002)] = 6325, - [SMALL_STATE(4003)] = 6347, - [SMALL_STATE(4004)] = 6369, - [SMALL_STATE(4005)] = 6391, - [SMALL_STATE(4006)] = 6415, - [SMALL_STATE(4007)] = 6437, - [SMALL_STATE(4008)] = 6459, - [SMALL_STATE(4009)] = 6481, - [SMALL_STATE(4010)] = 6503, - [SMALL_STATE(4011)] = 6519, - [SMALL_STATE(4012)] = 6541, - [SMALL_STATE(4013)] = 6563, - [SMALL_STATE(4014)] = 6585, - [SMALL_STATE(4015)] = 6607, - [SMALL_STATE(4016)] = 6629, - [SMALL_STATE(4017)] = 6655, - [SMALL_STATE(4018)] = 6677, - [SMALL_STATE(4019)] = 6699, - [SMALL_STATE(4020)] = 6721, - [SMALL_STATE(4021)] = 6743, - [SMALL_STATE(4022)] = 6757, - [SMALL_STATE(4023)] = 6779, - [SMALL_STATE(4024)] = 6801, - [SMALL_STATE(4025)] = 6823, - [SMALL_STATE(4026)] = 6845, - [SMALL_STATE(4027)] = 6867, - [SMALL_STATE(4028)] = 6889, - [SMALL_STATE(4029)] = 6913, - [SMALL_STATE(4030)] = 6935, - [SMALL_STATE(4031)] = 6957, - [SMALL_STATE(4032)] = 6979, - [SMALL_STATE(4033)] = 7001, - [SMALL_STATE(4034)] = 7023, - [SMALL_STATE(4035)] = 7045, - [SMALL_STATE(4036)] = 7067, - [SMALL_STATE(4037)] = 7089, - [SMALL_STATE(4038)] = 7111, - [SMALL_STATE(4039)] = 7133, - [SMALL_STATE(4040)] = 7155, - [SMALL_STATE(4041)] = 7177, - [SMALL_STATE(4042)] = 7199, - [SMALL_STATE(4043)] = 7225, - [SMALL_STATE(4044)] = 7247, - [SMALL_STATE(4045)] = 7269, - [SMALL_STATE(4046)] = 7291, - [SMALL_STATE(4047)] = 7313, - [SMALL_STATE(4048)] = 7339, - [SMALL_STATE(4049)] = 7365, - [SMALL_STATE(4050)] = 7387, - [SMALL_STATE(4051)] = 7403, - [SMALL_STATE(4052)] = 7425, - [SMALL_STATE(4053)] = 7447, - [SMALL_STATE(4054)] = 7462, - [SMALL_STATE(4055)] = 7485, - [SMALL_STATE(4056)] = 7508, - [SMALL_STATE(4057)] = 7531, - [SMALL_STATE(4058)] = 7554, - [SMALL_STATE(4059)] = 7577, - [SMALL_STATE(4060)] = 7598, - [SMALL_STATE(4061)] = 7613, - [SMALL_STATE(4062)] = 7628, - [SMALL_STATE(4063)] = 7651, - [SMALL_STATE(4064)] = 7674, - [SMALL_STATE(4065)] = 7697, - [SMALL_STATE(4066)] = 7720, - [SMALL_STATE(4067)] = 7735, - [SMALL_STATE(4068)] = 7758, - [SMALL_STATE(4069)] = 7781, - [SMALL_STATE(4070)] = 7804, - [SMALL_STATE(4071)] = 7823, - [SMALL_STATE(4072)] = 7840, - [SMALL_STATE(4073)] = 7863, - [SMALL_STATE(4074)] = 7886, - [SMALL_STATE(4075)] = 7909, - [SMALL_STATE(4076)] = 7932, - [SMALL_STATE(4077)] = 7949, - [SMALL_STATE(4078)] = 7972, - [SMALL_STATE(4079)] = 7995, - [SMALL_STATE(4080)] = 8018, - [SMALL_STATE(4081)] = 8041, - [SMALL_STATE(4082)] = 8064, - [SMALL_STATE(4083)] = 8087, - [SMALL_STATE(4084)] = 8110, - [SMALL_STATE(4085)] = 8133, - [SMALL_STATE(4086)] = 8156, - [SMALL_STATE(4087)] = 8179, - [SMALL_STATE(4088)] = 8202, - [SMALL_STATE(4089)] = 8225, - [SMALL_STATE(4090)] = 8246, - [SMALL_STATE(4091)] = 8269, - [SMALL_STATE(4092)] = 8292, - [SMALL_STATE(4093)] = 8315, - [SMALL_STATE(4094)] = 8338, - [SMALL_STATE(4095)] = 8351, - [SMALL_STATE(4096)] = 8374, - [SMALL_STATE(4097)] = 8397, - [SMALL_STATE(4098)] = 8420, - [SMALL_STATE(4099)] = 8443, - [SMALL_STATE(4100)] = 8466, - [SMALL_STATE(4101)] = 8489, - [SMALL_STATE(4102)] = 8512, - [SMALL_STATE(4103)] = 8533, - [SMALL_STATE(4104)] = 8556, - [SMALL_STATE(4105)] = 8575, - [SMALL_STATE(4106)] = 8598, - [SMALL_STATE(4107)] = 8621, - [SMALL_STATE(4108)] = 8642, - [SMALL_STATE(4109)] = 8665, - [SMALL_STATE(4110)] = 8688, - [SMALL_STATE(4111)] = 8703, - [SMALL_STATE(4112)] = 8718, - [SMALL_STATE(4113)] = 8733, - [SMALL_STATE(4114)] = 8756, - [SMALL_STATE(4115)] = 8771, - [SMALL_STATE(4116)] = 8786, - [SMALL_STATE(4117)] = 8809, - [SMALL_STATE(4118)] = 8830, - [SMALL_STATE(4119)] = 8845, - [SMALL_STATE(4120)] = 8860, - [SMALL_STATE(4121)] = 8875, - [SMALL_STATE(4122)] = 8890, - [SMALL_STATE(4123)] = 8905, - [SMALL_STATE(4124)] = 8920, - [SMALL_STATE(4125)] = 8939, - [SMALL_STATE(4126)] = 8954, - [SMALL_STATE(4127)] = 8977, - [SMALL_STATE(4128)] = 9000, - [SMALL_STATE(4129)] = 9019, - [SMALL_STATE(4130)] = 9042, - [SMALL_STATE(4131)] = 9065, - [SMALL_STATE(4132)] = 9082, - [SMALL_STATE(4133)] = 9103, - [SMALL_STATE(4134)] = 9124, - [SMALL_STATE(4135)] = 9139, - [SMALL_STATE(4136)] = 9162, - [SMALL_STATE(4137)] = 9177, - [SMALL_STATE(4138)] = 9200, - [SMALL_STATE(4139)] = 9216, - [SMALL_STATE(4140)] = 9232, - [SMALL_STATE(4141)] = 9248, - [SMALL_STATE(4142)] = 9264, - [SMALL_STATE(4143)] = 9276, - [SMALL_STATE(4144)] = 9288, - [SMALL_STATE(4145)] = 9300, - [SMALL_STATE(4146)] = 9316, - [SMALL_STATE(4147)] = 9332, - [SMALL_STATE(4148)] = 9344, - [SMALL_STATE(4149)] = 9356, - [SMALL_STATE(4150)] = 9372, - [SMALL_STATE(4151)] = 9388, - [SMALL_STATE(4152)] = 9400, - [SMALL_STATE(4153)] = 9418, - [SMALL_STATE(4154)] = 9430, - [SMALL_STATE(4155)] = 9442, - [SMALL_STATE(4156)] = 9454, - [SMALL_STATE(4157)] = 9466, - [SMALL_STATE(4158)] = 9486, - [SMALL_STATE(4159)] = 9498, - [SMALL_STATE(4160)] = 9516, - [SMALL_STATE(4161)] = 9532, - [SMALL_STATE(4162)] = 9552, - [SMALL_STATE(4163)] = 9568, - [SMALL_STATE(4164)] = 9588, - [SMALL_STATE(4165)] = 9604, - [SMALL_STATE(4166)] = 9620, - [SMALL_STATE(4167)] = 9636, - [SMALL_STATE(4168)] = 9648, - [SMALL_STATE(4169)] = 9664, - [SMALL_STATE(4170)] = 9676, - [SMALL_STATE(4171)] = 9688, - [SMALL_STATE(4172)] = 9700, - [SMALL_STATE(4173)] = 9712, - [SMALL_STATE(4174)] = 9724, - [SMALL_STATE(4175)] = 9744, - [SMALL_STATE(4176)] = 9760, - [SMALL_STATE(4177)] = 9772, - [SMALL_STATE(4178)] = 9784, - [SMALL_STATE(4179)] = 9796, - [SMALL_STATE(4180)] = 9808, - [SMALL_STATE(4181)] = 9824, - [SMALL_STATE(4182)] = 9840, - [SMALL_STATE(4183)] = 9860, - [SMALL_STATE(4184)] = 9878, - [SMALL_STATE(4185)] = 9894, - [SMALL_STATE(4186)] = 9906, - [SMALL_STATE(4187)] = 9924, - [SMALL_STATE(4188)] = 9944, - [SMALL_STATE(4189)] = 9964, - [SMALL_STATE(4190)] = 9976, - [SMALL_STATE(4191)] = 9988, - [SMALL_STATE(4192)] = 10000, - [SMALL_STATE(4193)] = 10012, - [SMALL_STATE(4194)] = 10024, - [SMALL_STATE(4195)] = 10036, - [SMALL_STATE(4196)] = 10052, - [SMALL_STATE(4197)] = 10064, - [SMALL_STATE(4198)] = 10076, - [SMALL_STATE(4199)] = 10088, - [SMALL_STATE(4200)] = 10100, - [SMALL_STATE(4201)] = 10112, - [SMALL_STATE(4202)] = 10124, - [SMALL_STATE(4203)] = 10136, - [SMALL_STATE(4204)] = 10148, - [SMALL_STATE(4205)] = 10166, - [SMALL_STATE(4206)] = 10178, - [SMALL_STATE(4207)] = 10190, - [SMALL_STATE(4208)] = 10202, - [SMALL_STATE(4209)] = 10214, - [SMALL_STATE(4210)] = 10226, - [SMALL_STATE(4211)] = 10238, - [SMALL_STATE(4212)] = 10258, - [SMALL_STATE(4213)] = 10276, - [SMALL_STATE(4214)] = 10288, - [SMALL_STATE(4215)] = 10300, - [SMALL_STATE(4216)] = 10316, - [SMALL_STATE(4217)] = 10328, - [SMALL_STATE(4218)] = 10346, - [SMALL_STATE(4219)] = 10362, - [SMALL_STATE(4220)] = 10374, - [SMALL_STATE(4221)] = 10386, - [SMALL_STATE(4222)] = 10398, - [SMALL_STATE(4223)] = 10410, - [SMALL_STATE(4224)] = 10426, - [SMALL_STATE(4225)] = 10442, - [SMALL_STATE(4226)] = 10454, - [SMALL_STATE(4227)] = 10466, - [SMALL_STATE(4228)] = 10478, - [SMALL_STATE(4229)] = 10490, - [SMALL_STATE(4230)] = 10508, - [SMALL_STATE(4231)] = 10526, - [SMALL_STATE(4232)] = 10544, - [SMALL_STATE(4233)] = 10562, - [SMALL_STATE(4234)] = 10574, - [SMALL_STATE(4235)] = 10594, - [SMALL_STATE(4236)] = 10606, - [SMALL_STATE(4237)] = 10618, - [SMALL_STATE(4238)] = 10630, - [SMALL_STATE(4239)] = 10642, - [SMALL_STATE(4240)] = 10654, - [SMALL_STATE(4241)] = 10672, - [SMALL_STATE(4242)] = 10692, - [SMALL_STATE(4243)] = 10704, - [SMALL_STATE(4244)] = 10716, - [SMALL_STATE(4245)] = 10728, - [SMALL_STATE(4246)] = 10740, - [SMALL_STATE(4247)] = 10752, - [SMALL_STATE(4248)] = 10764, - [SMALL_STATE(4249)] = 10776, - [SMALL_STATE(4250)] = 10790, - [SMALL_STATE(4251)] = 10806, - [SMALL_STATE(4252)] = 10818, - [SMALL_STATE(4253)] = 10830, - [SMALL_STATE(4254)] = 10848, - [SMALL_STATE(4255)] = 10860, - [SMALL_STATE(4256)] = 10872, - [SMALL_STATE(4257)] = 10884, - [SMALL_STATE(4258)] = 10896, - [SMALL_STATE(4259)] = 10908, - [SMALL_STATE(4260)] = 10920, - [SMALL_STATE(4261)] = 10932, - [SMALL_STATE(4262)] = 10944, - [SMALL_STATE(4263)] = 10956, - [SMALL_STATE(4264)] = 10968, - [SMALL_STATE(4265)] = 10984, - [SMALL_STATE(4266)] = 10998, - [SMALL_STATE(4267)] = 11010, - [SMALL_STATE(4268)] = 11022, - [SMALL_STATE(4269)] = 11034, - [SMALL_STATE(4270)] = 11046, - [SMALL_STATE(4271)] = 11058, - [SMALL_STATE(4272)] = 11070, - [SMALL_STATE(4273)] = 11082, - [SMALL_STATE(4274)] = 11098, - [SMALL_STATE(4275)] = 11110, - [SMALL_STATE(4276)] = 11122, - [SMALL_STATE(4277)] = 11134, - [SMALL_STATE(4278)] = 11146, - [SMALL_STATE(4279)] = 11158, - [SMALL_STATE(4280)] = 11170, - [SMALL_STATE(4281)] = 11186, - [SMALL_STATE(4282)] = 11202, - [SMALL_STATE(4283)] = 11214, - [SMALL_STATE(4284)] = 11226, - [SMALL_STATE(4285)] = 11238, - [SMALL_STATE(4286)] = 11254, - [SMALL_STATE(4287)] = 11270, - [SMALL_STATE(4288)] = 11286, - [SMALL_STATE(4289)] = 11302, - [SMALL_STATE(4290)] = 11314, - [SMALL_STATE(4291)] = 11326, - [SMALL_STATE(4292)] = 11346, - [SMALL_STATE(4293)] = 11358, - [SMALL_STATE(4294)] = 11376, - [SMALL_STATE(4295)] = 11396, - [SMALL_STATE(4296)] = 11414, - [SMALL_STATE(4297)] = 11430, - [SMALL_STATE(4298)] = 11446, - [SMALL_STATE(4299)] = 11466, - [SMALL_STATE(4300)] = 11478, - [SMALL_STATE(4301)] = 11490, - [SMALL_STATE(4302)] = 11502, - [SMALL_STATE(4303)] = 11514, - [SMALL_STATE(4304)] = 11526, - [SMALL_STATE(4305)] = 11538, - [SMALL_STATE(4306)] = 11556, - [SMALL_STATE(4307)] = 11568, - [SMALL_STATE(4308)] = 11584, - [SMALL_STATE(4309)] = 11600, - [SMALL_STATE(4310)] = 11612, - [SMALL_STATE(4311)] = 11624, - [SMALL_STATE(4312)] = 11636, - [SMALL_STATE(4313)] = 11654, - [SMALL_STATE(4314)] = 11672, - [SMALL_STATE(4315)] = 11692, - [SMALL_STATE(4316)] = 11710, - [SMALL_STATE(4317)] = 11728, - [SMALL_STATE(4318)] = 11746, - [SMALL_STATE(4319)] = 11759, - [SMALL_STATE(4320)] = 11774, - [SMALL_STATE(4321)] = 11791, - [SMALL_STATE(4322)] = 11804, - [SMALL_STATE(4323)] = 11817, - [SMALL_STATE(4324)] = 11832, - [SMALL_STATE(4325)] = 11845, - [SMALL_STATE(4326)] = 11862, - [SMALL_STATE(4327)] = 11881, - [SMALL_STATE(4328)] = 11896, - [SMALL_STATE(4329)] = 11915, - [SMALL_STATE(4330)] = 11934, - [SMALL_STATE(4331)] = 11949, - [SMALL_STATE(4332)] = 11964, - [SMALL_STATE(4333)] = 11983, - [SMALL_STATE(4334)] = 12000, - [SMALL_STATE(4335)] = 12011, - [SMALL_STATE(4336)] = 12028, - [SMALL_STATE(4337)] = 12043, - [SMALL_STATE(4338)] = 12062, - [SMALL_STATE(4339)] = 12081, - [SMALL_STATE(4340)] = 12100, - [SMALL_STATE(4341)] = 12119, - [SMALL_STATE(4342)] = 12138, - [SMALL_STATE(4343)] = 12155, - [SMALL_STATE(4344)] = 12170, - [SMALL_STATE(4345)] = 12189, - [SMALL_STATE(4346)] = 12206, - [SMALL_STATE(4347)] = 12217, - [SMALL_STATE(4348)] = 12234, - [SMALL_STATE(4349)] = 12251, - [SMALL_STATE(4350)] = 12266, - [SMALL_STATE(4351)] = 12283, - [SMALL_STATE(4352)] = 12300, - [SMALL_STATE(4353)] = 12313, - [SMALL_STATE(4354)] = 12328, - [SMALL_STATE(4355)] = 12345, - [SMALL_STATE(4356)] = 12362, - [SMALL_STATE(4357)] = 12379, - [SMALL_STATE(4358)] = 12394, - [SMALL_STATE(4359)] = 12407, - [SMALL_STATE(4360)] = 12424, - [SMALL_STATE(4361)] = 12441, - [SMALL_STATE(4362)] = 12456, - [SMALL_STATE(4363)] = 12473, - [SMALL_STATE(4364)] = 12490, - [SMALL_STATE(4365)] = 12507, - [SMALL_STATE(4366)] = 12520, - [SMALL_STATE(4367)] = 12535, - [SMALL_STATE(4368)] = 12548, - [SMALL_STATE(4369)] = 12563, - [SMALL_STATE(4370)] = 12574, - [SMALL_STATE(4371)] = 12587, - [SMALL_STATE(4372)] = 12602, - [SMALL_STATE(4373)] = 12621, - [SMALL_STATE(4374)] = 12634, - [SMALL_STATE(4375)] = 12651, - [SMALL_STATE(4376)] = 12666, - [SMALL_STATE(4377)] = 12683, - [SMALL_STATE(4378)] = 12700, - [SMALL_STATE(4379)] = 12713, - [SMALL_STATE(4380)] = 12726, - [SMALL_STATE(4381)] = 12739, - [SMALL_STATE(4382)] = 12754, - [SMALL_STATE(4383)] = 12769, - [SMALL_STATE(4384)] = 12784, - [SMALL_STATE(4385)] = 12801, - [SMALL_STATE(4386)] = 12818, - [SMALL_STATE(4387)] = 12835, - [SMALL_STATE(4388)] = 12854, - [SMALL_STATE(4389)] = 12869, - [SMALL_STATE(4390)] = 12884, - [SMALL_STATE(4391)] = 12903, - [SMALL_STATE(4392)] = 12918, - [SMALL_STATE(4393)] = 12937, - [SMALL_STATE(4394)] = 12950, - [SMALL_STATE(4395)] = 12961, - [SMALL_STATE(4396)] = 12980, - [SMALL_STATE(4397)] = 12995, - [SMALL_STATE(4398)] = 13010, - [SMALL_STATE(4399)] = 13027, - [SMALL_STATE(4400)] = 13044, - [SMALL_STATE(4401)] = 13057, - [SMALL_STATE(4402)] = 13073, - [SMALL_STATE(4403)] = 13089, - [SMALL_STATE(4404)] = 13105, - [SMALL_STATE(4405)] = 13121, - [SMALL_STATE(4406)] = 13135, - [SMALL_STATE(4407)] = 13151, - [SMALL_STATE(4408)] = 13163, - [SMALL_STATE(4409)] = 13179, - [SMALL_STATE(4410)] = 13195, - [SMALL_STATE(4411)] = 13211, - [SMALL_STATE(4412)] = 13221, - [SMALL_STATE(4413)] = 13235, - [SMALL_STATE(4414)] = 13251, - [SMALL_STATE(4415)] = 13267, - [SMALL_STATE(4416)] = 13281, - [SMALL_STATE(4417)] = 13297, - [SMALL_STATE(4418)] = 13307, - [SMALL_STATE(4419)] = 13323, - [SMALL_STATE(4420)] = 13339, - [SMALL_STATE(4421)] = 13355, - [SMALL_STATE(4422)] = 13371, - [SMALL_STATE(4423)] = 13387, - [SMALL_STATE(4424)] = 13403, - [SMALL_STATE(4425)] = 13419, - [SMALL_STATE(4426)] = 13429, - [SMALL_STATE(4427)] = 13443, - [SMALL_STATE(4428)] = 13459, - [SMALL_STATE(4429)] = 13475, - [SMALL_STATE(4430)] = 13491, - [SMALL_STATE(4431)] = 13505, - [SMALL_STATE(4432)] = 13519, - [SMALL_STATE(4433)] = 13535, - [SMALL_STATE(4434)] = 13549, - [SMALL_STATE(4435)] = 13565, - [SMALL_STATE(4436)] = 13581, - [SMALL_STATE(4437)] = 13595, - [SMALL_STATE(4438)] = 13605, - [SMALL_STATE(4439)] = 13615, - [SMALL_STATE(4440)] = 13629, - [SMALL_STATE(4441)] = 13643, - [SMALL_STATE(4442)] = 13659, - [SMALL_STATE(4443)] = 13675, - [SMALL_STATE(4444)] = 13691, - [SMALL_STATE(4445)] = 13707, - [SMALL_STATE(4446)] = 13723, - [SMALL_STATE(4447)] = 13739, - [SMALL_STATE(4448)] = 13755, - [SMALL_STATE(4449)] = 13771, - [SMALL_STATE(4450)] = 13787, - [SMALL_STATE(4451)] = 13801, - [SMALL_STATE(4452)] = 13817, - [SMALL_STATE(4453)] = 13833, - [SMALL_STATE(4454)] = 13847, - [SMALL_STATE(4455)] = 13863, - [SMALL_STATE(4456)] = 13879, - [SMALL_STATE(4457)] = 13895, - [SMALL_STATE(4458)] = 13911, - [SMALL_STATE(4459)] = 13927, - [SMALL_STATE(4460)] = 13941, - [SMALL_STATE(4461)] = 13955, - [SMALL_STATE(4462)] = 13971, - [SMALL_STATE(4463)] = 13987, - [SMALL_STATE(4464)] = 14003, - [SMALL_STATE(4465)] = 14019, - [SMALL_STATE(4466)] = 14035, - [SMALL_STATE(4467)] = 14051, - [SMALL_STATE(4468)] = 14067, - [SMALL_STATE(4469)] = 14083, - [SMALL_STATE(4470)] = 14099, - [SMALL_STATE(4471)] = 14115, - [SMALL_STATE(4472)] = 14129, - [SMALL_STATE(4473)] = 14139, - [SMALL_STATE(4474)] = 14155, - [SMALL_STATE(4475)] = 14167, - [SMALL_STATE(4476)] = 14183, - [SMALL_STATE(4477)] = 14199, - [SMALL_STATE(4478)] = 14213, - [SMALL_STATE(4479)] = 14229, - [SMALL_STATE(4480)] = 14243, - [SMALL_STATE(4481)] = 14257, - [SMALL_STATE(4482)] = 14267, - [SMALL_STATE(4483)] = 14281, - [SMALL_STATE(4484)] = 14295, - [SMALL_STATE(4485)] = 14311, - [SMALL_STATE(4486)] = 14327, - [SMALL_STATE(4487)] = 14337, - [SMALL_STATE(4488)] = 14347, - [SMALL_STATE(4489)] = 14361, - [SMALL_STATE(4490)] = 14377, - [SMALL_STATE(4491)] = 14391, - [SMALL_STATE(4492)] = 14405, - [SMALL_STATE(4493)] = 14421, - [SMALL_STATE(4494)] = 14437, - [SMALL_STATE(4495)] = 14453, - [SMALL_STATE(4496)] = 14469, - [SMALL_STATE(4497)] = 14485, - [SMALL_STATE(4498)] = 14501, - [SMALL_STATE(4499)] = 14513, - [SMALL_STATE(4500)] = 14527, - [SMALL_STATE(4501)] = 14539, - [SMALL_STATE(4502)] = 14555, - [SMALL_STATE(4503)] = 14571, - [SMALL_STATE(4504)] = 14587, - [SMALL_STATE(4505)] = 14601, - [SMALL_STATE(4506)] = 14615, - [SMALL_STATE(4507)] = 14631, - [SMALL_STATE(4508)] = 14641, - [SMALL_STATE(4509)] = 14655, - [SMALL_STATE(4510)] = 14671, - [SMALL_STATE(4511)] = 14683, - [SMALL_STATE(4512)] = 14695, - [SMALL_STATE(4513)] = 14711, - [SMALL_STATE(4514)] = 14727, - [SMALL_STATE(4515)] = 14741, - [SMALL_STATE(4516)] = 14757, - [SMALL_STATE(4517)] = 14771, - [SMALL_STATE(4518)] = 14787, - [SMALL_STATE(4519)] = 14803, - [SMALL_STATE(4520)] = 14817, - [SMALL_STATE(4521)] = 14833, - [SMALL_STATE(4522)] = 14849, - [SMALL_STATE(4523)] = 14863, - [SMALL_STATE(4524)] = 14877, - [SMALL_STATE(4525)] = 14893, - [SMALL_STATE(4526)] = 14909, - [SMALL_STATE(4527)] = 14925, - [SMALL_STATE(4528)] = 14941, - [SMALL_STATE(4529)] = 14957, - [SMALL_STATE(4530)] = 14973, - [SMALL_STATE(4531)] = 14989, - [SMALL_STATE(4532)] = 15003, - [SMALL_STATE(4533)] = 15019, - [SMALL_STATE(4534)] = 15035, - [SMALL_STATE(4535)] = 15047, - [SMALL_STATE(4536)] = 15063, - [SMALL_STATE(4537)] = 15077, - [SMALL_STATE(4538)] = 15089, - [SMALL_STATE(4539)] = 15105, - [SMALL_STATE(4540)] = 15117, - [SMALL_STATE(4541)] = 15133, - [SMALL_STATE(4542)] = 15149, - [SMALL_STATE(4543)] = 15161, - [SMALL_STATE(4544)] = 15177, - [SMALL_STATE(4545)] = 15193, - [SMALL_STATE(4546)] = 15205, - [SMALL_STATE(4547)] = 15221, - [SMALL_STATE(4548)] = 15230, - [SMALL_STATE(4549)] = 15239, - [SMALL_STATE(4550)] = 15248, - [SMALL_STATE(4551)] = 15261, - [SMALL_STATE(4552)] = 15270, - [SMALL_STATE(4553)] = 15279, - [SMALL_STATE(4554)] = 15292, - [SMALL_STATE(4555)] = 15301, - [SMALL_STATE(4556)] = 15314, - [SMALL_STATE(4557)] = 15323, - [SMALL_STATE(4558)] = 15332, - [SMALL_STATE(4559)] = 15345, - [SMALL_STATE(4560)] = 15354, - [SMALL_STATE(4561)] = 15367, - [SMALL_STATE(4562)] = 15376, - [SMALL_STATE(4563)] = 15389, - [SMALL_STATE(4564)] = 15402, - [SMALL_STATE(4565)] = 15415, - [SMALL_STATE(4566)] = 15428, - [SMALL_STATE(4567)] = 15441, - [SMALL_STATE(4568)] = 15454, - [SMALL_STATE(4569)] = 15467, - [SMALL_STATE(4570)] = 15480, - [SMALL_STATE(4571)] = 15493, - [SMALL_STATE(4572)] = 15502, - [SMALL_STATE(4573)] = 15511, - [SMALL_STATE(4574)] = 15524, - [SMALL_STATE(4575)] = 15537, - [SMALL_STATE(4576)] = 15550, - [SMALL_STATE(4577)] = 15559, - [SMALL_STATE(4578)] = 15568, - [SMALL_STATE(4579)] = 15577, - [SMALL_STATE(4580)] = 15588, - [SMALL_STATE(4581)] = 15601, - [SMALL_STATE(4582)] = 15614, - [SMALL_STATE(4583)] = 15627, - [SMALL_STATE(4584)] = 15640, - [SMALL_STATE(4585)] = 15653, - [SMALL_STATE(4586)] = 15666, - [SMALL_STATE(4587)] = 15675, - [SMALL_STATE(4588)] = 15684, - [SMALL_STATE(4589)] = 15697, - [SMALL_STATE(4590)] = 15710, - [SMALL_STATE(4591)] = 15723, - [SMALL_STATE(4592)] = 15736, - [SMALL_STATE(4593)] = 15749, - [SMALL_STATE(4594)] = 15762, - [SMALL_STATE(4595)] = 15775, - [SMALL_STATE(4596)] = 15788, - [SMALL_STATE(4597)] = 15801, - [SMALL_STATE(4598)] = 15814, - [SMALL_STATE(4599)] = 15827, - [SMALL_STATE(4600)] = 15840, - [SMALL_STATE(4601)] = 15853, - [SMALL_STATE(4602)] = 15866, - [SMALL_STATE(4603)] = 15879, - [SMALL_STATE(4604)] = 15892, - [SMALL_STATE(4605)] = 15901, - [SMALL_STATE(4606)] = 15914, - [SMALL_STATE(4607)] = 15927, - [SMALL_STATE(4608)] = 15940, - [SMALL_STATE(4609)] = 15953, - [SMALL_STATE(4610)] = 15966, - [SMALL_STATE(4611)] = 15979, - [SMALL_STATE(4612)] = 15992, - [SMALL_STATE(4613)] = 16005, - [SMALL_STATE(4614)] = 16018, - [SMALL_STATE(4615)] = 16031, - [SMALL_STATE(4616)] = 16044, - [SMALL_STATE(4617)] = 16053, - [SMALL_STATE(4618)] = 16066, - [SMALL_STATE(4619)] = 16079, - [SMALL_STATE(4620)] = 16092, - [SMALL_STATE(4621)] = 16105, - [SMALL_STATE(4622)] = 16114, - [SMALL_STATE(4623)] = 16123, - [SMALL_STATE(4624)] = 16136, - [SMALL_STATE(4625)] = 16145, - [SMALL_STATE(4626)] = 16158, - [SMALL_STATE(4627)] = 16169, - [SMALL_STATE(4628)] = 16182, - [SMALL_STATE(4629)] = 16195, - [SMALL_STATE(4630)] = 16208, - [SMALL_STATE(4631)] = 16221, - [SMALL_STATE(4632)] = 16234, - [SMALL_STATE(4633)] = 16247, - [SMALL_STATE(4634)] = 16260, - [SMALL_STATE(4635)] = 16273, - [SMALL_STATE(4636)] = 16282, - [SMALL_STATE(4637)] = 16295, - [SMALL_STATE(4638)] = 16308, - [SMALL_STATE(4639)] = 16321, - [SMALL_STATE(4640)] = 16334, - [SMALL_STATE(4641)] = 16347, - [SMALL_STATE(4642)] = 16360, - [SMALL_STATE(4643)] = 16373, - [SMALL_STATE(4644)] = 16386, - [SMALL_STATE(4645)] = 16399, - [SMALL_STATE(4646)] = 16412, - [SMALL_STATE(4647)] = 16425, - [SMALL_STATE(4648)] = 16438, - [SMALL_STATE(4649)] = 16451, - [SMALL_STATE(4650)] = 16464, - [SMALL_STATE(4651)] = 16477, - [SMALL_STATE(4652)] = 16490, - [SMALL_STATE(4653)] = 16499, - [SMALL_STATE(4654)] = 16512, - [SMALL_STATE(4655)] = 16525, - [SMALL_STATE(4656)] = 16538, - [SMALL_STATE(4657)] = 16551, - [SMALL_STATE(4658)] = 16564, - [SMALL_STATE(4659)] = 16577, - [SMALL_STATE(4660)] = 16590, - [SMALL_STATE(4661)] = 16603, - [SMALL_STATE(4662)] = 16614, - [SMALL_STATE(4663)] = 16627, - [SMALL_STATE(4664)] = 16640, - [SMALL_STATE(4665)] = 16653, - [SMALL_STATE(4666)] = 16662, - [SMALL_STATE(4667)] = 16675, - [SMALL_STATE(4668)] = 16688, - [SMALL_STATE(4669)] = 16699, - [SMALL_STATE(4670)] = 16710, - [SMALL_STATE(4671)] = 16719, - [SMALL_STATE(4672)] = 16732, - [SMALL_STATE(4673)] = 16745, - [SMALL_STATE(4674)] = 16756, - [SMALL_STATE(4675)] = 16769, - [SMALL_STATE(4676)] = 16782, - [SMALL_STATE(4677)] = 16791, - [SMALL_STATE(4678)] = 16804, - [SMALL_STATE(4679)] = 16817, - [SMALL_STATE(4680)] = 16826, - [SMALL_STATE(4681)] = 16839, - [SMALL_STATE(4682)] = 16852, - [SMALL_STATE(4683)] = 16861, - [SMALL_STATE(4684)] = 16874, - [SMALL_STATE(4685)] = 16887, - [SMALL_STATE(4686)] = 16900, - [SMALL_STATE(4687)] = 16913, - [SMALL_STATE(4688)] = 16926, - [SMALL_STATE(4689)] = 16939, - [SMALL_STATE(4690)] = 16948, - [SMALL_STATE(4691)] = 16961, - [SMALL_STATE(4692)] = 16974, - [SMALL_STATE(4693)] = 16987, - [SMALL_STATE(4694)] = 17000, - [SMALL_STATE(4695)] = 17013, - [SMALL_STATE(4696)] = 17026, - [SMALL_STATE(4697)] = 17039, - [SMALL_STATE(4698)] = 17052, - [SMALL_STATE(4699)] = 17061, - [SMALL_STATE(4700)] = 17074, - [SMALL_STATE(4701)] = 17087, - [SMALL_STATE(4702)] = 17096, - [SMALL_STATE(4703)] = 17109, - [SMALL_STATE(4704)] = 17120, - [SMALL_STATE(4705)] = 17133, - [SMALL_STATE(4706)] = 17146, - [SMALL_STATE(4707)] = 17159, - [SMALL_STATE(4708)] = 17172, - [SMALL_STATE(4709)] = 17185, - [SMALL_STATE(4710)] = 17198, - [SMALL_STATE(4711)] = 17211, - [SMALL_STATE(4712)] = 17224, - [SMALL_STATE(4713)] = 17235, - [SMALL_STATE(4714)] = 17248, - [SMALL_STATE(4715)] = 17261, - [SMALL_STATE(4716)] = 17272, - [SMALL_STATE(4717)] = 17285, - [SMALL_STATE(4718)] = 17298, - [SMALL_STATE(4719)] = 17311, - [SMALL_STATE(4720)] = 17320, - [SMALL_STATE(4721)] = 17331, - [SMALL_STATE(4722)] = 17344, - [SMALL_STATE(4723)] = 17357, - [SMALL_STATE(4724)] = 17366, - [SMALL_STATE(4725)] = 17379, - [SMALL_STATE(4726)] = 17392, - [SMALL_STATE(4727)] = 17405, - [SMALL_STATE(4728)] = 17414, - [SMALL_STATE(4729)] = 17427, - [SMALL_STATE(4730)] = 17440, - [SMALL_STATE(4731)] = 17453, - [SMALL_STATE(4732)] = 17466, - [SMALL_STATE(4733)] = 17477, - [SMALL_STATE(4734)] = 17490, - [SMALL_STATE(4735)] = 17503, - [SMALL_STATE(4736)] = 17516, - [SMALL_STATE(4737)] = 17529, - [SMALL_STATE(4738)] = 17542, - [SMALL_STATE(4739)] = 17551, - [SMALL_STATE(4740)] = 17564, - [SMALL_STATE(4741)] = 17573, - [SMALL_STATE(4742)] = 17582, - [SMALL_STATE(4743)] = 17595, - [SMALL_STATE(4744)] = 17608, - [SMALL_STATE(4745)] = 17619, - [SMALL_STATE(4746)] = 17628, - [SMALL_STATE(4747)] = 17641, - [SMALL_STATE(4748)] = 17654, - [SMALL_STATE(4749)] = 17667, - [SMALL_STATE(4750)] = 17680, - [SMALL_STATE(4751)] = 17693, - [SMALL_STATE(4752)] = 17706, - [SMALL_STATE(4753)] = 17719, - [SMALL_STATE(4754)] = 17732, - [SMALL_STATE(4755)] = 17745, - [SMALL_STATE(4756)] = 17756, - [SMALL_STATE(4757)] = 17769, - [SMALL_STATE(4758)] = 17782, - [SMALL_STATE(4759)] = 17795, - [SMALL_STATE(4760)] = 17808, - [SMALL_STATE(4761)] = 17821, - [SMALL_STATE(4762)] = 17834, - [SMALL_STATE(4763)] = 17843, - [SMALL_STATE(4764)] = 17856, - [SMALL_STATE(4765)] = 17869, - [SMALL_STATE(4766)] = 17882, - [SMALL_STATE(4767)] = 17895, - [SMALL_STATE(4768)] = 17904, - [SMALL_STATE(4769)] = 17913, - [SMALL_STATE(4770)] = 17922, - [SMALL_STATE(4771)] = 17935, - [SMALL_STATE(4772)] = 17948, - [SMALL_STATE(4773)] = 17957, - [SMALL_STATE(4774)] = 17966, - [SMALL_STATE(4775)] = 17975, - [SMALL_STATE(4776)] = 17984, - [SMALL_STATE(4777)] = 17993, - [SMALL_STATE(4778)] = 18002, - [SMALL_STATE(4779)] = 18012, - [SMALL_STATE(4780)] = 18022, - [SMALL_STATE(4781)] = 18030, - [SMALL_STATE(4782)] = 18038, - [SMALL_STATE(4783)] = 18046, - [SMALL_STATE(4784)] = 18054, - [SMALL_STATE(4785)] = 18062, - [SMALL_STATE(4786)] = 18072, - [SMALL_STATE(4787)] = 18080, - [SMALL_STATE(4788)] = 18088, - [SMALL_STATE(4789)] = 18098, - [SMALL_STATE(4790)] = 18108, - [SMALL_STATE(4791)] = 18116, - [SMALL_STATE(4792)] = 18126, - [SMALL_STATE(4793)] = 18136, - [SMALL_STATE(4794)] = 18146, - [SMALL_STATE(4795)] = 18156, - [SMALL_STATE(4796)] = 18164, - [SMALL_STATE(4797)] = 18172, - [SMALL_STATE(4798)] = 18180, - [SMALL_STATE(4799)] = 18190, - [SMALL_STATE(4800)] = 18200, - [SMALL_STATE(4801)] = 18210, - [SMALL_STATE(4802)] = 18220, - [SMALL_STATE(4803)] = 18230, - [SMALL_STATE(4804)] = 18240, - [SMALL_STATE(4805)] = 18250, - [SMALL_STATE(4806)] = 18260, - [SMALL_STATE(4807)] = 18270, - [SMALL_STATE(4808)] = 18278, - [SMALL_STATE(4809)] = 18288, - [SMALL_STATE(4810)] = 18298, - [SMALL_STATE(4811)] = 18308, - [SMALL_STATE(4812)] = 18316, - [SMALL_STATE(4813)] = 18324, - [SMALL_STATE(4814)] = 18334, - [SMALL_STATE(4815)] = 18344, - [SMALL_STATE(4816)] = 18354, - [SMALL_STATE(4817)] = 18364, - [SMALL_STATE(4818)] = 18374, - [SMALL_STATE(4819)] = 18382, - [SMALL_STATE(4820)] = 18392, - [SMALL_STATE(4821)] = 18400, - [SMALL_STATE(4822)] = 18410, - [SMALL_STATE(4823)] = 18420, - [SMALL_STATE(4824)] = 18428, - [SMALL_STATE(4825)] = 18436, - [SMALL_STATE(4826)] = 18444, - [SMALL_STATE(4827)] = 18454, - [SMALL_STATE(4828)] = 18464, - [SMALL_STATE(4829)] = 18474, - [SMALL_STATE(4830)] = 18482, - [SMALL_STATE(4831)] = 18490, - [SMALL_STATE(4832)] = 18498, - [SMALL_STATE(4833)] = 18506, - [SMALL_STATE(4834)] = 18516, - [SMALL_STATE(4835)] = 18524, - [SMALL_STATE(4836)] = 18532, - [SMALL_STATE(4837)] = 18540, - [SMALL_STATE(4838)] = 18548, - [SMALL_STATE(4839)] = 18558, - [SMALL_STATE(4840)] = 18566, - [SMALL_STATE(4841)] = 18576, - [SMALL_STATE(4842)] = 18584, - [SMALL_STATE(4843)] = 18592, - [SMALL_STATE(4844)] = 18602, - [SMALL_STATE(4845)] = 18610, - [SMALL_STATE(4846)] = 18620, - [SMALL_STATE(4847)] = 18628, - [SMALL_STATE(4848)] = 18638, - [SMALL_STATE(4849)] = 18646, - [SMALL_STATE(4850)] = 18654, - [SMALL_STATE(4851)] = 18662, - [SMALL_STATE(4852)] = 18672, - [SMALL_STATE(4853)] = 18680, - [SMALL_STATE(4854)] = 18690, - [SMALL_STATE(4855)] = 18700, - [SMALL_STATE(4856)] = 18708, - [SMALL_STATE(4857)] = 18718, - [SMALL_STATE(4858)] = 18726, - [SMALL_STATE(4859)] = 18734, - [SMALL_STATE(4860)] = 18742, - [SMALL_STATE(4861)] = 18752, - [SMALL_STATE(4862)] = 18760, - [SMALL_STATE(4863)] = 18768, - [SMALL_STATE(4864)] = 18776, - [SMALL_STATE(4865)] = 18786, - [SMALL_STATE(4866)] = 18796, - [SMALL_STATE(4867)] = 18806, - [SMALL_STATE(4868)] = 18816, - [SMALL_STATE(4869)] = 18824, - [SMALL_STATE(4870)] = 18832, - [SMALL_STATE(4871)] = 18842, - [SMALL_STATE(4872)] = 18852, - [SMALL_STATE(4873)] = 18862, - [SMALL_STATE(4874)] = 18872, - [SMALL_STATE(4875)] = 18882, - [SMALL_STATE(4876)] = 18892, - [SMALL_STATE(4877)] = 18900, - [SMALL_STATE(4878)] = 18910, - [SMALL_STATE(4879)] = 18918, - [SMALL_STATE(4880)] = 18928, - [SMALL_STATE(4881)] = 18936, - [SMALL_STATE(4882)] = 18946, - [SMALL_STATE(4883)] = 18954, - [SMALL_STATE(4884)] = 18964, - [SMALL_STATE(4885)] = 18974, - [SMALL_STATE(4886)] = 18984, - [SMALL_STATE(4887)] = 18992, - [SMALL_STATE(4888)] = 19002, - [SMALL_STATE(4889)] = 19010, - [SMALL_STATE(4890)] = 19020, - [SMALL_STATE(4891)] = 19030, - [SMALL_STATE(4892)] = 19040, - [SMALL_STATE(4893)] = 19048, - [SMALL_STATE(4894)] = 19056, - [SMALL_STATE(4895)] = 19064, - [SMALL_STATE(4896)] = 19074, - [SMALL_STATE(4897)] = 19084, - [SMALL_STATE(4898)] = 19094, - [SMALL_STATE(4899)] = 19104, - [SMALL_STATE(4900)] = 19114, - [SMALL_STATE(4901)] = 19124, - [SMALL_STATE(4902)] = 19134, - [SMALL_STATE(4903)] = 19144, - [SMALL_STATE(4904)] = 19154, - [SMALL_STATE(4905)] = 19164, - [SMALL_STATE(4906)] = 19174, - [SMALL_STATE(4907)] = 19184, - [SMALL_STATE(4908)] = 19194, - [SMALL_STATE(4909)] = 19204, - [SMALL_STATE(4910)] = 19212, - [SMALL_STATE(4911)] = 19222, - [SMALL_STATE(4912)] = 19232, - [SMALL_STATE(4913)] = 19242, - [SMALL_STATE(4914)] = 19250, - [SMALL_STATE(4915)] = 19260, - [SMALL_STATE(4916)] = 19268, - [SMALL_STATE(4917)] = 19276, - [SMALL_STATE(4918)] = 19286, - [SMALL_STATE(4919)] = 19294, - [SMALL_STATE(4920)] = 19304, - [SMALL_STATE(4921)] = 19314, - [SMALL_STATE(4922)] = 19324, - [SMALL_STATE(4923)] = 19334, - [SMALL_STATE(4924)] = 19344, - [SMALL_STATE(4925)] = 19354, - [SMALL_STATE(4926)] = 19364, - [SMALL_STATE(4927)] = 19374, - [SMALL_STATE(4928)] = 19384, - [SMALL_STATE(4929)] = 19394, - [SMALL_STATE(4930)] = 19402, - [SMALL_STATE(4931)] = 19412, - [SMALL_STATE(4932)] = 19422, - [SMALL_STATE(4933)] = 19432, - [SMALL_STATE(4934)] = 19440, - [SMALL_STATE(4935)] = 19450, - [SMALL_STATE(4936)] = 19460, - [SMALL_STATE(4937)] = 19470, - [SMALL_STATE(4938)] = 19478, - [SMALL_STATE(4939)] = 19488, - [SMALL_STATE(4940)] = 19498, - [SMALL_STATE(4941)] = 19506, - [SMALL_STATE(4942)] = 19516, - [SMALL_STATE(4943)] = 19526, - [SMALL_STATE(4944)] = 19536, - [SMALL_STATE(4945)] = 19546, - [SMALL_STATE(4946)] = 19556, - [SMALL_STATE(4947)] = 19564, - [SMALL_STATE(4948)] = 19574, - [SMALL_STATE(4949)] = 19584, - [SMALL_STATE(4950)] = 19594, - [SMALL_STATE(4951)] = 19602, - [SMALL_STATE(4952)] = 19612, - [SMALL_STATE(4953)] = 19620, - [SMALL_STATE(4954)] = 19630, - [SMALL_STATE(4955)] = 19640, - [SMALL_STATE(4956)] = 19650, - [SMALL_STATE(4957)] = 19660, - [SMALL_STATE(4958)] = 19670, - [SMALL_STATE(4959)] = 19678, - [SMALL_STATE(4960)] = 19686, - [SMALL_STATE(4961)] = 19694, - [SMALL_STATE(4962)] = 19702, - [SMALL_STATE(4963)] = 19710, - [SMALL_STATE(4964)] = 19718, - [SMALL_STATE(4965)] = 19728, - [SMALL_STATE(4966)] = 19738, - [SMALL_STATE(4967)] = 19746, - [SMALL_STATE(4968)] = 19754, - [SMALL_STATE(4969)] = 19764, - [SMALL_STATE(4970)] = 19774, - [SMALL_STATE(4971)] = 19782, - [SMALL_STATE(4972)] = 19792, - [SMALL_STATE(4973)] = 19800, - [SMALL_STATE(4974)] = 19810, - [SMALL_STATE(4975)] = 19820, - [SMALL_STATE(4976)] = 19830, - [SMALL_STATE(4977)] = 19838, - [SMALL_STATE(4978)] = 19848, - [SMALL_STATE(4979)] = 19856, - [SMALL_STATE(4980)] = 19864, - [SMALL_STATE(4981)] = 19872, - [SMALL_STATE(4982)] = 19882, - [SMALL_STATE(4983)] = 19892, - [SMALL_STATE(4984)] = 19902, - [SMALL_STATE(4985)] = 19912, - [SMALL_STATE(4986)] = 19922, - [SMALL_STATE(4987)] = 19932, - [SMALL_STATE(4988)] = 19940, - [SMALL_STATE(4989)] = 19948, - [SMALL_STATE(4990)] = 19958, - [SMALL_STATE(4991)] = 19966, - [SMALL_STATE(4992)] = 19974, - [SMALL_STATE(4993)] = 19984, - [SMALL_STATE(4994)] = 19992, - [SMALL_STATE(4995)] = 20000, - [SMALL_STATE(4996)] = 20010, - [SMALL_STATE(4997)] = 20018, - [SMALL_STATE(4998)] = 20026, - [SMALL_STATE(4999)] = 20036, - [SMALL_STATE(5000)] = 20046, - [SMALL_STATE(5001)] = 20054, - [SMALL_STATE(5002)] = 20062, - [SMALL_STATE(5003)] = 20070, - [SMALL_STATE(5004)] = 20080, - [SMALL_STATE(5005)] = 20088, - [SMALL_STATE(5006)] = 20098, - [SMALL_STATE(5007)] = 20106, - [SMALL_STATE(5008)] = 20116, - [SMALL_STATE(5009)] = 20126, - [SMALL_STATE(5010)] = 20136, - [SMALL_STATE(5011)] = 20144, - [SMALL_STATE(5012)] = 20154, - [SMALL_STATE(5013)] = 20164, - [SMALL_STATE(5014)] = 20174, - [SMALL_STATE(5015)] = 20182, - [SMALL_STATE(5016)] = 20192, - [SMALL_STATE(5017)] = 20202, - [SMALL_STATE(5018)] = 20212, - [SMALL_STATE(5019)] = 20220, - [SMALL_STATE(5020)] = 20230, - [SMALL_STATE(5021)] = 20240, - [SMALL_STATE(5022)] = 20250, - [SMALL_STATE(5023)] = 20260, - [SMALL_STATE(5024)] = 20270, - [SMALL_STATE(5025)] = 20280, - [SMALL_STATE(5026)] = 20290, - [SMALL_STATE(5027)] = 20300, - [SMALL_STATE(5028)] = 20310, - [SMALL_STATE(5029)] = 20318, - [SMALL_STATE(5030)] = 20328, - [SMALL_STATE(5031)] = 20338, - [SMALL_STATE(5032)] = 20346, - [SMALL_STATE(5033)] = 20356, - [SMALL_STATE(5034)] = 20366, - [SMALL_STATE(5035)] = 20376, - [SMALL_STATE(5036)] = 20386, - [SMALL_STATE(5037)] = 20396, - [SMALL_STATE(5038)] = 20406, - [SMALL_STATE(5039)] = 20416, - [SMALL_STATE(5040)] = 20424, - [SMALL_STATE(5041)] = 20432, - [SMALL_STATE(5042)] = 20440, - [SMALL_STATE(5043)] = 20450, - [SMALL_STATE(5044)] = 20458, - [SMALL_STATE(5045)] = 20466, - [SMALL_STATE(5046)] = 20474, - [SMALL_STATE(5047)] = 20484, - [SMALL_STATE(5048)] = 20494, - [SMALL_STATE(5049)] = 20504, - [SMALL_STATE(5050)] = 20512, - [SMALL_STATE(5051)] = 20522, - [SMALL_STATE(5052)] = 20532, - [SMALL_STATE(5053)] = 20542, - [SMALL_STATE(5054)] = 20552, - [SMALL_STATE(5055)] = 20562, - [SMALL_STATE(5056)] = 20572, - [SMALL_STATE(5057)] = 20582, - [SMALL_STATE(5058)] = 20592, - [SMALL_STATE(5059)] = 20600, - [SMALL_STATE(5060)] = 20607, - [SMALL_STATE(5061)] = 20614, - [SMALL_STATE(5062)] = 20621, - [SMALL_STATE(5063)] = 20628, - [SMALL_STATE(5064)] = 20635, - [SMALL_STATE(5065)] = 20642, - [SMALL_STATE(5066)] = 20649, - [SMALL_STATE(5067)] = 20656, - [SMALL_STATE(5068)] = 20663, - [SMALL_STATE(5069)] = 20670, - [SMALL_STATE(5070)] = 20677, - [SMALL_STATE(5071)] = 20684, - [SMALL_STATE(5072)] = 20691, - [SMALL_STATE(5073)] = 20698, - [SMALL_STATE(5074)] = 20705, - [SMALL_STATE(5075)] = 20712, - [SMALL_STATE(5076)] = 20719, - [SMALL_STATE(5077)] = 20726, - [SMALL_STATE(5078)] = 20733, - [SMALL_STATE(5079)] = 20740, - [SMALL_STATE(5080)] = 20747, - [SMALL_STATE(5081)] = 20754, - [SMALL_STATE(5082)] = 20761, - [SMALL_STATE(5083)] = 20768, - [SMALL_STATE(5084)] = 20775, - [SMALL_STATE(5085)] = 20782, - [SMALL_STATE(5086)] = 20789, - [SMALL_STATE(5087)] = 20796, - [SMALL_STATE(5088)] = 20803, - [SMALL_STATE(5089)] = 20810, - [SMALL_STATE(5090)] = 20817, - [SMALL_STATE(5091)] = 20824, - [SMALL_STATE(5092)] = 20831, - [SMALL_STATE(5093)] = 20838, - [SMALL_STATE(5094)] = 20845, - [SMALL_STATE(5095)] = 20852, - [SMALL_STATE(5096)] = 20859, - [SMALL_STATE(5097)] = 20866, - [SMALL_STATE(5098)] = 20873, - [SMALL_STATE(5099)] = 20880, - [SMALL_STATE(5100)] = 20887, - [SMALL_STATE(5101)] = 20894, - [SMALL_STATE(5102)] = 20901, - [SMALL_STATE(5103)] = 20908, - [SMALL_STATE(5104)] = 20915, - [SMALL_STATE(5105)] = 20922, - [SMALL_STATE(5106)] = 20929, - [SMALL_STATE(5107)] = 20936, - [SMALL_STATE(5108)] = 20943, - [SMALL_STATE(5109)] = 20950, - [SMALL_STATE(5110)] = 20957, - [SMALL_STATE(5111)] = 20964, - [SMALL_STATE(5112)] = 20971, - [SMALL_STATE(5113)] = 20978, - [SMALL_STATE(5114)] = 20985, - [SMALL_STATE(5115)] = 20992, - [SMALL_STATE(5116)] = 20999, - [SMALL_STATE(5117)] = 21006, - [SMALL_STATE(5118)] = 21013, - [SMALL_STATE(5119)] = 21020, - [SMALL_STATE(5120)] = 21027, - [SMALL_STATE(5121)] = 21034, - [SMALL_STATE(5122)] = 21041, - [SMALL_STATE(5123)] = 21048, - [SMALL_STATE(5124)] = 21055, - [SMALL_STATE(5125)] = 21062, - [SMALL_STATE(5126)] = 21069, - [SMALL_STATE(5127)] = 21076, - [SMALL_STATE(5128)] = 21083, - [SMALL_STATE(5129)] = 21090, - [SMALL_STATE(5130)] = 21097, - [SMALL_STATE(5131)] = 21104, - [SMALL_STATE(5132)] = 21111, - [SMALL_STATE(5133)] = 21118, - [SMALL_STATE(5134)] = 21125, - [SMALL_STATE(5135)] = 21132, - [SMALL_STATE(5136)] = 21139, - [SMALL_STATE(5137)] = 21146, - [SMALL_STATE(5138)] = 21153, - [SMALL_STATE(5139)] = 21160, - [SMALL_STATE(5140)] = 21167, - [SMALL_STATE(5141)] = 21174, - [SMALL_STATE(5142)] = 21181, - [SMALL_STATE(5143)] = 21188, - [SMALL_STATE(5144)] = 21195, - [SMALL_STATE(5145)] = 21202, - [SMALL_STATE(5146)] = 21209, - [SMALL_STATE(5147)] = 21216, - [SMALL_STATE(5148)] = 21223, - [SMALL_STATE(5149)] = 21230, - [SMALL_STATE(5150)] = 21237, - [SMALL_STATE(5151)] = 21244, - [SMALL_STATE(5152)] = 21251, - [SMALL_STATE(5153)] = 21258, - [SMALL_STATE(5154)] = 21265, - [SMALL_STATE(5155)] = 21272, - [SMALL_STATE(5156)] = 21279, - [SMALL_STATE(5157)] = 21286, - [SMALL_STATE(5158)] = 21293, - [SMALL_STATE(5159)] = 21300, - [SMALL_STATE(5160)] = 21307, - [SMALL_STATE(5161)] = 21314, - [SMALL_STATE(5162)] = 21321, - [SMALL_STATE(5163)] = 21328, - [SMALL_STATE(5164)] = 21335, - [SMALL_STATE(5165)] = 21342, - [SMALL_STATE(5166)] = 21349, - [SMALL_STATE(5167)] = 21356, - [SMALL_STATE(5168)] = 21363, - [SMALL_STATE(5169)] = 21370, - [SMALL_STATE(5170)] = 21377, - [SMALL_STATE(5171)] = 21384, - [SMALL_STATE(5172)] = 21391, - [SMALL_STATE(5173)] = 21398, - [SMALL_STATE(5174)] = 21405, - [SMALL_STATE(5175)] = 21412, - [SMALL_STATE(5176)] = 21419, - [SMALL_STATE(5177)] = 21426, - [SMALL_STATE(5178)] = 21433, - [SMALL_STATE(5179)] = 21440, - [SMALL_STATE(5180)] = 21447, - [SMALL_STATE(5181)] = 21454, - [SMALL_STATE(5182)] = 21461, - [SMALL_STATE(5183)] = 21468, - [SMALL_STATE(5184)] = 21475, - [SMALL_STATE(5185)] = 21482, - [SMALL_STATE(5186)] = 21489, - [SMALL_STATE(5187)] = 21496, - [SMALL_STATE(5188)] = 21503, - [SMALL_STATE(5189)] = 21510, - [SMALL_STATE(5190)] = 21517, - [SMALL_STATE(5191)] = 21524, - [SMALL_STATE(5192)] = 21531, - [SMALL_STATE(5193)] = 21538, - [SMALL_STATE(5194)] = 21545, - [SMALL_STATE(5195)] = 21552, - [SMALL_STATE(5196)] = 21559, - [SMALL_STATE(5197)] = 21566, - [SMALL_STATE(5198)] = 21573, - [SMALL_STATE(5199)] = 21580, - [SMALL_STATE(5200)] = 21587, - [SMALL_STATE(5201)] = 21594, - [SMALL_STATE(5202)] = 21601, - [SMALL_STATE(5203)] = 21608, - [SMALL_STATE(5204)] = 21615, - [SMALL_STATE(5205)] = 21622, - [SMALL_STATE(5206)] = 21629, - [SMALL_STATE(5207)] = 21636, - [SMALL_STATE(5208)] = 21643, - [SMALL_STATE(5209)] = 21650, - [SMALL_STATE(5210)] = 21657, - [SMALL_STATE(5211)] = 21664, - [SMALL_STATE(5212)] = 21671, - [SMALL_STATE(5213)] = 21678, - [SMALL_STATE(5214)] = 21685, - [SMALL_STATE(5215)] = 21692, - [SMALL_STATE(5216)] = 21699, - [SMALL_STATE(5217)] = 21706, - [SMALL_STATE(5218)] = 21713, - [SMALL_STATE(5219)] = 21720, - [SMALL_STATE(5220)] = 21727, - [SMALL_STATE(5221)] = 21734, - [SMALL_STATE(5222)] = 21741, - [SMALL_STATE(5223)] = 21748, - [SMALL_STATE(5224)] = 21755, - [SMALL_STATE(5225)] = 21762, - [SMALL_STATE(5226)] = 21769, - [SMALL_STATE(5227)] = 21776, - [SMALL_STATE(5228)] = 21783, - [SMALL_STATE(5229)] = 21790, - [SMALL_STATE(5230)] = 21797, - [SMALL_STATE(5231)] = 21804, - [SMALL_STATE(5232)] = 21811, - [SMALL_STATE(5233)] = 21818, - [SMALL_STATE(5234)] = 21825, - [SMALL_STATE(5235)] = 21832, - [SMALL_STATE(5236)] = 21839, - [SMALL_STATE(5237)] = 21846, - [SMALL_STATE(5238)] = 21853, - [SMALL_STATE(5239)] = 21860, - [SMALL_STATE(5240)] = 21867, - [SMALL_STATE(5241)] = 21874, - [SMALL_STATE(5242)] = 21881, - [SMALL_STATE(5243)] = 21888, - [SMALL_STATE(5244)] = 21895, - [SMALL_STATE(5245)] = 21902, - [SMALL_STATE(5246)] = 21909, - [SMALL_STATE(5247)] = 21916, - [SMALL_STATE(5248)] = 21923, - [SMALL_STATE(5249)] = 21930, - [SMALL_STATE(5250)] = 21937, - [SMALL_STATE(5251)] = 21944, - [SMALL_STATE(5252)] = 21951, - [SMALL_STATE(5253)] = 21958, - [SMALL_STATE(5254)] = 21965, - [SMALL_STATE(5255)] = 21972, - [SMALL_STATE(5256)] = 21979, - [SMALL_STATE(5257)] = 21986, - [SMALL_STATE(5258)] = 21993, - [SMALL_STATE(5259)] = 22000, - [SMALL_STATE(5260)] = 22007, - [SMALL_STATE(5261)] = 22014, - [SMALL_STATE(5262)] = 22021, - [SMALL_STATE(5263)] = 22028, - [SMALL_STATE(5264)] = 22035, - [SMALL_STATE(5265)] = 22042, - [SMALL_STATE(5266)] = 22049, - [SMALL_STATE(5267)] = 22056, - [SMALL_STATE(5268)] = 22063, - [SMALL_STATE(5269)] = 22070, - [SMALL_STATE(5270)] = 22077, - [SMALL_STATE(5271)] = 22084, - [SMALL_STATE(5272)] = 22091, - [SMALL_STATE(5273)] = 22098, - [SMALL_STATE(5274)] = 22105, - [SMALL_STATE(5275)] = 22112, - [SMALL_STATE(5276)] = 22119, - [SMALL_STATE(5277)] = 22126, - [SMALL_STATE(5278)] = 22133, - [SMALL_STATE(5279)] = 22140, - [SMALL_STATE(5280)] = 22147, - [SMALL_STATE(5281)] = 22154, - [SMALL_STATE(5282)] = 22161, - [SMALL_STATE(5283)] = 22168, - [SMALL_STATE(5284)] = 22175, - [SMALL_STATE(5285)] = 22182, - [SMALL_STATE(5286)] = 22189, - [SMALL_STATE(5287)] = 22196, - [SMALL_STATE(5288)] = 22203, - [SMALL_STATE(5289)] = 22210, - [SMALL_STATE(5290)] = 22217, - [SMALL_STATE(5291)] = 22224, - [SMALL_STATE(5292)] = 22231, - [SMALL_STATE(5293)] = 22238, - [SMALL_STATE(5294)] = 22245, - [SMALL_STATE(5295)] = 22252, - [SMALL_STATE(5296)] = 22259, - [SMALL_STATE(5297)] = 22266, - [SMALL_STATE(5298)] = 22273, - [SMALL_STATE(5299)] = 22280, - [SMALL_STATE(5300)] = 22287, - [SMALL_STATE(5301)] = 22294, - [SMALL_STATE(5302)] = 22301, - [SMALL_STATE(5303)] = 22308, - [SMALL_STATE(5304)] = 22315, - [SMALL_STATE(5305)] = 22322, - [SMALL_STATE(5306)] = 22329, - [SMALL_STATE(5307)] = 22336, - [SMALL_STATE(5308)] = 22343, - [SMALL_STATE(5309)] = 22350, - [SMALL_STATE(5310)] = 22357, - [SMALL_STATE(5311)] = 22364, - [SMALL_STATE(5312)] = 22371, - [SMALL_STATE(5313)] = 22378, - [SMALL_STATE(5314)] = 22385, + [SMALL_STATE(3874)] = 0, + [SMALL_STATE(3875)] = 89, + [SMALL_STATE(3876)] = 178, + [SMALL_STATE(3877)] = 267, + [SMALL_STATE(3878)] = 356, + [SMALL_STATE(3879)] = 445, + [SMALL_STATE(3880)] = 538, + [SMALL_STATE(3881)] = 629, + [SMALL_STATE(3882)] = 718, + [SMALL_STATE(3883)] = 807, + [SMALL_STATE(3884)] = 896, + [SMALL_STATE(3885)] = 985, + [SMALL_STATE(3886)] = 1074, + [SMALL_STATE(3887)] = 1163, + [SMALL_STATE(3888)] = 1249, + [SMALL_STATE(3889)] = 1335, + [SMALL_STATE(3890)] = 1421, + [SMALL_STATE(3891)] = 1507, + [SMALL_STATE(3892)] = 1593, + [SMALL_STATE(3893)] = 1679, + [SMALL_STATE(3894)] = 1765, + [SMALL_STATE(3895)] = 1840, + [SMALL_STATE(3896)] = 1914, + [SMALL_STATE(3897)] = 1982, + [SMALL_STATE(3898)] = 2049, + [SMALL_STATE(3899)] = 2116, + [SMALL_STATE(3900)] = 2182, + [SMALL_STATE(3901)] = 2248, + [SMALL_STATE(3902)] = 2314, + [SMALL_STATE(3903)] = 2380, + [SMALL_STATE(3904)] = 2432, + [SMALL_STATE(3905)] = 2484, + [SMALL_STATE(3906)] = 2536, + [SMALL_STATE(3907)] = 2588, + [SMALL_STATE(3908)] = 2640, + [SMALL_STATE(3909)] = 2692, + [SMALL_STATE(3910)] = 2737, + [SMALL_STATE(3911)] = 2774, + [SMALL_STATE(3912)] = 2811, + [SMALL_STATE(3913)] = 2850, + [SMALL_STATE(3914)] = 2887, + [SMALL_STATE(3915)] = 2926, + [SMALL_STATE(3916)] = 2963, + [SMALL_STATE(3917)] = 3002, + [SMALL_STATE(3918)] = 3034, + [SMALL_STATE(3919)] = 3070, + [SMALL_STATE(3920)] = 3106, + [SMALL_STATE(3921)] = 3142, + [SMALL_STATE(3922)] = 3178, + [SMALL_STATE(3923)] = 3214, + [SMALL_STATE(3924)] = 3250, + [SMALL_STATE(3925)] = 3286, + [SMALL_STATE(3926)] = 3322, + [SMALL_STATE(3927)] = 3358, + [SMALL_STATE(3928)] = 3394, + [SMALL_STATE(3929)] = 3424, + [SMALL_STATE(3930)] = 3445, + [SMALL_STATE(3931)] = 3466, + [SMALL_STATE(3932)] = 3497, + [SMALL_STATE(3933)] = 3518, + [SMALL_STATE(3934)] = 3539, + [SMALL_STATE(3935)] = 3562, + [SMALL_STATE(3936)] = 3583, + [SMALL_STATE(3937)] = 3604, + [SMALL_STATE(3938)] = 3625, + [SMALL_STATE(3939)] = 3646, + [SMALL_STATE(3940)] = 3667, + [SMALL_STATE(3941)] = 3698, + [SMALL_STATE(3942)] = 3719, + [SMALL_STATE(3943)] = 3740, + [SMALL_STATE(3944)] = 3761, + [SMALL_STATE(3945)] = 3782, + [SMALL_STATE(3946)] = 3803, + [SMALL_STATE(3947)] = 3824, + [SMALL_STATE(3948)] = 3845, + [SMALL_STATE(3949)] = 3868, + [SMALL_STATE(3950)] = 3889, + [SMALL_STATE(3951)] = 3910, + [SMALL_STATE(3952)] = 3931, + [SMALL_STATE(3953)] = 3952, + [SMALL_STATE(3954)] = 3973, + [SMALL_STATE(3955)] = 3994, + [SMALL_STATE(3956)] = 4015, + [SMALL_STATE(3957)] = 4036, + [SMALL_STATE(3958)] = 4056, + [SMALL_STATE(3959)] = 4076, + [SMALL_STATE(3960)] = 4102, + [SMALL_STATE(3961)] = 4120, + [SMALL_STATE(3962)] = 4138, + [SMALL_STATE(3963)] = 4156, + [SMALL_STATE(3964)] = 4174, + [SMALL_STATE(3965)] = 4192, + [SMALL_STATE(3966)] = 4210, + [SMALL_STATE(3967)] = 4228, + [SMALL_STATE(3968)] = 4245, + [SMALL_STATE(3969)] = 4264, + [SMALL_STATE(3970)] = 4281, + [SMALL_STATE(3971)] = 4300, + [SMALL_STATE(3972)] = 4331, + [SMALL_STATE(3973)] = 4362, + [SMALL_STATE(3974)] = 4385, + [SMALL_STATE(3975)] = 4416, + [SMALL_STATE(3976)] = 4444, + [SMALL_STATE(3977)] = 4472, + [SMALL_STATE(3978)] = 4500, + [SMALL_STATE(3979)] = 4528, + [SMALL_STATE(3980)] = 4556, + [SMALL_STATE(3981)] = 4586, + [SMALL_STATE(3982)] = 4608, + [SMALL_STATE(3983)] = 4638, + [SMALL_STATE(3984)] = 4654, + [SMALL_STATE(3985)] = 4682, + [SMALL_STATE(3986)] = 4704, + [SMALL_STATE(3987)] = 4732, + [SMALL_STATE(3988)] = 4760, + [SMALL_STATE(3989)] = 4788, + [SMALL_STATE(3990)] = 4810, + [SMALL_STATE(3991)] = 4832, + [SMALL_STATE(3992)] = 4860, + [SMALL_STATE(3993)] = 4882, + [SMALL_STATE(3994)] = 4912, + [SMALL_STATE(3995)] = 4934, + [SMALL_STATE(3996)] = 4958, + [SMALL_STATE(3997)] = 4988, + [SMALL_STATE(3998)] = 5004, + [SMALL_STATE(3999)] = 5026, + [SMALL_STATE(4000)] = 5056, + [SMALL_STATE(4001)] = 5083, + [SMALL_STATE(4002)] = 5110, + [SMALL_STATE(4003)] = 5137, + [SMALL_STATE(4004)] = 5164, + [SMALL_STATE(4005)] = 5191, + [SMALL_STATE(4006)] = 5218, + [SMALL_STATE(4007)] = 5245, + [SMALL_STATE(4008)] = 5267, + [SMALL_STATE(4009)] = 5289, + [SMALL_STATE(4010)] = 5311, + [SMALL_STATE(4011)] = 5333, + [SMALL_STATE(4012)] = 5355, + [SMALL_STATE(4013)] = 5377, + [SMALL_STATE(4014)] = 5399, + [SMALL_STATE(4015)] = 5425, + [SMALL_STATE(4016)] = 5447, + [SMALL_STATE(4017)] = 5473, + [SMALL_STATE(4018)] = 5499, + [SMALL_STATE(4019)] = 5521, + [SMALL_STATE(4020)] = 5543, + [SMALL_STATE(4021)] = 5569, + [SMALL_STATE(4022)] = 5591, + [SMALL_STATE(4023)] = 5613, + [SMALL_STATE(4024)] = 5627, + [SMALL_STATE(4025)] = 5649, + [SMALL_STATE(4026)] = 5675, + [SMALL_STATE(4027)] = 5701, + [SMALL_STATE(4028)] = 5723, + [SMALL_STATE(4029)] = 5745, + [SMALL_STATE(4030)] = 5767, + [SMALL_STATE(4031)] = 5789, + [SMALL_STATE(4032)] = 5811, + [SMALL_STATE(4033)] = 5833, + [SMALL_STATE(4034)] = 5855, + [SMALL_STATE(4035)] = 5879, + [SMALL_STATE(4036)] = 5901, + [SMALL_STATE(4037)] = 5923, + [SMALL_STATE(4038)] = 5939, + [SMALL_STATE(4039)] = 5961, + [SMALL_STATE(4040)] = 5983, + [SMALL_STATE(4041)] = 6009, + [SMALL_STATE(4042)] = 6035, + [SMALL_STATE(4043)] = 6057, + [SMALL_STATE(4044)] = 6079, + [SMALL_STATE(4045)] = 6101, + [SMALL_STATE(4046)] = 6127, + [SMALL_STATE(4047)] = 6149, + [SMALL_STATE(4048)] = 6171, + [SMALL_STATE(4049)] = 6193, + [SMALL_STATE(4050)] = 6215, + [SMALL_STATE(4051)] = 6237, + [SMALL_STATE(4052)] = 6259, + [SMALL_STATE(4053)] = 6281, + [SMALL_STATE(4054)] = 6303, + [SMALL_STATE(4055)] = 6325, + [SMALL_STATE(4056)] = 6347, + [SMALL_STATE(4057)] = 6369, + [SMALL_STATE(4058)] = 6391, + [SMALL_STATE(4059)] = 6413, + [SMALL_STATE(4060)] = 6427, + [SMALL_STATE(4061)] = 6449, + [SMALL_STATE(4062)] = 6471, + [SMALL_STATE(4063)] = 6493, + [SMALL_STATE(4064)] = 6515, + [SMALL_STATE(4065)] = 6537, + [SMALL_STATE(4066)] = 6559, + [SMALL_STATE(4067)] = 6581, + [SMALL_STATE(4068)] = 6603, + [SMALL_STATE(4069)] = 6625, + [SMALL_STATE(4070)] = 6651, + [SMALL_STATE(4071)] = 6673, + [SMALL_STATE(4072)] = 6695, + [SMALL_STATE(4073)] = 6717, + [SMALL_STATE(4074)] = 6739, + [SMALL_STATE(4075)] = 6761, + [SMALL_STATE(4076)] = 6785, + [SMALL_STATE(4077)] = 6807, + [SMALL_STATE(4078)] = 6829, + [SMALL_STATE(4079)] = 6855, + [SMALL_STATE(4080)] = 6877, + [SMALL_STATE(4081)] = 6899, + [SMALL_STATE(4082)] = 6913, + [SMALL_STATE(4083)] = 6935, + [SMALL_STATE(4084)] = 6959, + [SMALL_STATE(4085)] = 6985, + [SMALL_STATE(4086)] = 7007, + [SMALL_STATE(4087)] = 7029, + [SMALL_STATE(4088)] = 7051, + [SMALL_STATE(4089)] = 7073, + [SMALL_STATE(4090)] = 7095, + [SMALL_STATE(4091)] = 7117, + [SMALL_STATE(4092)] = 7143, + [SMALL_STATE(4093)] = 7165, + [SMALL_STATE(4094)] = 7189, + [SMALL_STATE(4095)] = 7211, + [SMALL_STATE(4096)] = 7233, + [SMALL_STATE(4097)] = 7255, + [SMALL_STATE(4098)] = 7277, + [SMALL_STATE(4099)] = 7299, + [SMALL_STATE(4100)] = 7321, + [SMALL_STATE(4101)] = 7343, + [SMALL_STATE(4102)] = 7359, + [SMALL_STATE(4103)] = 7381, + [SMALL_STATE(4104)] = 7403, + [SMALL_STATE(4105)] = 7425, + [SMALL_STATE(4106)] = 7447, + [SMALL_STATE(4107)] = 7462, + [SMALL_STATE(4108)] = 7477, + [SMALL_STATE(4109)] = 7500, + [SMALL_STATE(4110)] = 7515, + [SMALL_STATE(4111)] = 7538, + [SMALL_STATE(4112)] = 7551, + [SMALL_STATE(4113)] = 7574, + [SMALL_STATE(4114)] = 7597, + [SMALL_STATE(4115)] = 7618, + [SMALL_STATE(4116)] = 7641, + [SMALL_STATE(4117)] = 7664, + [SMALL_STATE(4118)] = 7687, + [SMALL_STATE(4119)] = 7710, + [SMALL_STATE(4120)] = 7729, + [SMALL_STATE(4121)] = 7752, + [SMALL_STATE(4122)] = 7775, + [SMALL_STATE(4123)] = 7798, + [SMALL_STATE(4124)] = 7821, + [SMALL_STATE(4125)] = 7844, + [SMALL_STATE(4126)] = 7867, + [SMALL_STATE(4127)] = 7890, + [SMALL_STATE(4128)] = 7911, + [SMALL_STATE(4129)] = 7934, + [SMALL_STATE(4130)] = 7949, + [SMALL_STATE(4131)] = 7964, + [SMALL_STATE(4132)] = 7987, + [SMALL_STATE(4133)] = 8010, + [SMALL_STATE(4134)] = 8033, + [SMALL_STATE(4135)] = 8056, + [SMALL_STATE(4136)] = 8079, + [SMALL_STATE(4137)] = 8102, + [SMALL_STATE(4138)] = 8123, + [SMALL_STATE(4139)] = 8146, + [SMALL_STATE(4140)] = 8161, + [SMALL_STATE(4141)] = 8184, + [SMALL_STATE(4142)] = 8199, + [SMALL_STATE(4143)] = 8218, + [SMALL_STATE(4144)] = 8233, + [SMALL_STATE(4145)] = 8248, + [SMALL_STATE(4146)] = 8271, + [SMALL_STATE(4147)] = 8294, + [SMALL_STATE(4148)] = 8309, + [SMALL_STATE(4149)] = 8326, + [SMALL_STATE(4150)] = 8341, + [SMALL_STATE(4151)] = 8364, + [SMALL_STATE(4152)] = 8379, + [SMALL_STATE(4153)] = 8402, + [SMALL_STATE(4154)] = 8425, + [SMALL_STATE(4155)] = 8440, + [SMALL_STATE(4156)] = 8461, + [SMALL_STATE(4157)] = 8482, + [SMALL_STATE(4158)] = 8505, + [SMALL_STATE(4159)] = 8528, + [SMALL_STATE(4160)] = 8545, + [SMALL_STATE(4161)] = 8568, + [SMALL_STATE(4162)] = 8589, + [SMALL_STATE(4163)] = 8604, + [SMALL_STATE(4164)] = 8627, + [SMALL_STATE(4165)] = 8650, + [SMALL_STATE(4166)] = 8673, + [SMALL_STATE(4167)] = 8696, + [SMALL_STATE(4168)] = 8711, + [SMALL_STATE(4169)] = 8734, + [SMALL_STATE(4170)] = 8757, + [SMALL_STATE(4171)] = 8776, + [SMALL_STATE(4172)] = 8799, + [SMALL_STATE(4173)] = 8814, + [SMALL_STATE(4174)] = 8837, + [SMALL_STATE(4175)] = 8860, + [SMALL_STATE(4176)] = 8883, + [SMALL_STATE(4177)] = 8902, + [SMALL_STATE(4178)] = 8925, + [SMALL_STATE(4179)] = 8948, + [SMALL_STATE(4180)] = 8971, + [SMALL_STATE(4181)] = 8988, + [SMALL_STATE(4182)] = 9009, + [SMALL_STATE(4183)] = 9032, + [SMALL_STATE(4184)] = 9047, + [SMALL_STATE(4185)] = 9070, + [SMALL_STATE(4186)] = 9093, + [SMALL_STATE(4187)] = 9116, + [SMALL_STATE(4188)] = 9131, + [SMALL_STATE(4189)] = 9154, + [SMALL_STATE(4190)] = 9177, + [SMALL_STATE(4191)] = 9200, + [SMALL_STATE(4192)] = 9212, + [SMALL_STATE(4193)] = 9228, + [SMALL_STATE(4194)] = 9244, + [SMALL_STATE(4195)] = 9260, + [SMALL_STATE(4196)] = 9276, + [SMALL_STATE(4197)] = 9292, + [SMALL_STATE(4198)] = 9308, + [SMALL_STATE(4199)] = 9324, + [SMALL_STATE(4200)] = 9344, + [SMALL_STATE(4201)] = 9362, + [SMALL_STATE(4202)] = 9382, + [SMALL_STATE(4203)] = 9398, + [SMALL_STATE(4204)] = 9416, + [SMALL_STATE(4205)] = 9428, + [SMALL_STATE(4206)] = 9440, + [SMALL_STATE(4207)] = 9460, + [SMALL_STATE(4208)] = 9480, + [SMALL_STATE(4209)] = 9496, + [SMALL_STATE(4210)] = 9512, + [SMALL_STATE(4211)] = 9530, + [SMALL_STATE(4212)] = 9550, + [SMALL_STATE(4213)] = 9562, + [SMALL_STATE(4214)] = 9574, + [SMALL_STATE(4215)] = 9594, + [SMALL_STATE(4216)] = 9612, + [SMALL_STATE(4217)] = 9628, + [SMALL_STATE(4218)] = 9640, + [SMALL_STATE(4219)] = 9652, + [SMALL_STATE(4220)] = 9664, + [SMALL_STATE(4221)] = 9676, + [SMALL_STATE(4222)] = 9694, + [SMALL_STATE(4223)] = 9706, + [SMALL_STATE(4224)] = 9722, + [SMALL_STATE(4225)] = 9740, + [SMALL_STATE(4226)] = 9752, + [SMALL_STATE(4227)] = 9770, + [SMALL_STATE(4228)] = 9782, + [SMALL_STATE(4229)] = 9794, + [SMALL_STATE(4230)] = 9806, + [SMALL_STATE(4231)] = 9824, + [SMALL_STATE(4232)] = 9836, + [SMALL_STATE(4233)] = 9848, + [SMALL_STATE(4234)] = 9860, + [SMALL_STATE(4235)] = 9872, + [SMALL_STATE(4236)] = 9888, + [SMALL_STATE(4237)] = 9900, + [SMALL_STATE(4238)] = 9912, + [SMALL_STATE(4239)] = 9924, + [SMALL_STATE(4240)] = 9938, + [SMALL_STATE(4241)] = 9950, + [SMALL_STATE(4242)] = 9962, + [SMALL_STATE(4243)] = 9974, + [SMALL_STATE(4244)] = 9992, + [SMALL_STATE(4245)] = 10004, + [SMALL_STATE(4246)] = 10016, + [SMALL_STATE(4247)] = 10028, + [SMALL_STATE(4248)] = 10040, + [SMALL_STATE(4249)] = 10052, + [SMALL_STATE(4250)] = 10064, + [SMALL_STATE(4251)] = 10076, + [SMALL_STATE(4252)] = 10094, + [SMALL_STATE(4253)] = 10110, + [SMALL_STATE(4254)] = 10126, + [SMALL_STATE(4255)] = 10138, + [SMALL_STATE(4256)] = 10150, + [SMALL_STATE(4257)] = 10166, + [SMALL_STATE(4258)] = 10184, + [SMALL_STATE(4259)] = 10202, + [SMALL_STATE(4260)] = 10214, + [SMALL_STATE(4261)] = 10234, + [SMALL_STATE(4262)] = 10246, + [SMALL_STATE(4263)] = 10258, + [SMALL_STATE(4264)] = 10276, + [SMALL_STATE(4265)] = 10294, + [SMALL_STATE(4266)] = 10306, + [SMALL_STATE(4267)] = 10322, + [SMALL_STATE(4268)] = 10334, + [SMALL_STATE(4269)] = 10348, + [SMALL_STATE(4270)] = 10360, + [SMALL_STATE(4271)] = 10372, + [SMALL_STATE(4272)] = 10388, + [SMALL_STATE(4273)] = 10400, + [SMALL_STATE(4274)] = 10412, + [SMALL_STATE(4275)] = 10424, + [SMALL_STATE(4276)] = 10440, + [SMALL_STATE(4277)] = 10452, + [SMALL_STATE(4278)] = 10464, + [SMALL_STATE(4279)] = 10484, + [SMALL_STATE(4280)] = 10496, + [SMALL_STATE(4281)] = 10508, + [SMALL_STATE(4282)] = 10520, + [SMALL_STATE(4283)] = 10532, + [SMALL_STATE(4284)] = 10544, + [SMALL_STATE(4285)] = 10556, + [SMALL_STATE(4286)] = 10568, + [SMALL_STATE(4287)] = 10580, + [SMALL_STATE(4288)] = 10592, + [SMALL_STATE(4289)] = 10604, + [SMALL_STATE(4290)] = 10616, + [SMALL_STATE(4291)] = 10628, + [SMALL_STATE(4292)] = 10640, + [SMALL_STATE(4293)] = 10652, + [SMALL_STATE(4294)] = 10664, + [SMALL_STATE(4295)] = 10680, + [SMALL_STATE(4296)] = 10692, + [SMALL_STATE(4297)] = 10704, + [SMALL_STATE(4298)] = 10716, + [SMALL_STATE(4299)] = 10728, + [SMALL_STATE(4300)] = 10748, + [SMALL_STATE(4301)] = 10766, + [SMALL_STATE(4302)] = 10782, + [SMALL_STATE(4303)] = 10798, + [SMALL_STATE(4304)] = 10810, + [SMALL_STATE(4305)] = 10826, + [SMALL_STATE(4306)] = 10842, + [SMALL_STATE(4307)] = 10854, + [SMALL_STATE(4308)] = 10866, + [SMALL_STATE(4309)] = 10878, + [SMALL_STATE(4310)] = 10890, + [SMALL_STATE(4311)] = 10902, + [SMALL_STATE(4312)] = 10914, + [SMALL_STATE(4313)] = 10926, + [SMALL_STATE(4314)] = 10942, + [SMALL_STATE(4315)] = 10958, + [SMALL_STATE(4316)] = 10974, + [SMALL_STATE(4317)] = 10986, + [SMALL_STATE(4318)] = 10998, + [SMALL_STATE(4319)] = 11010, + [SMALL_STATE(4320)] = 11022, + [SMALL_STATE(4321)] = 11034, + [SMALL_STATE(4322)] = 11054, + [SMALL_STATE(4323)] = 11070, + [SMALL_STATE(4324)] = 11082, + [SMALL_STATE(4325)] = 11094, + [SMALL_STATE(4326)] = 11106, + [SMALL_STATE(4327)] = 11124, + [SMALL_STATE(4328)] = 11136, + [SMALL_STATE(4329)] = 11148, + [SMALL_STATE(4330)] = 11160, + [SMALL_STATE(4331)] = 11172, + [SMALL_STATE(4332)] = 11184, + [SMALL_STATE(4333)] = 11196, + [SMALL_STATE(4334)] = 11216, + [SMALL_STATE(4335)] = 11228, + [SMALL_STATE(4336)] = 11240, + [SMALL_STATE(4337)] = 11258, + [SMALL_STATE(4338)] = 11270, + [SMALL_STATE(4339)] = 11290, + [SMALL_STATE(4340)] = 11302, + [SMALL_STATE(4341)] = 11322, + [SMALL_STATE(4342)] = 11334, + [SMALL_STATE(4343)] = 11346, + [SMALL_STATE(4344)] = 11366, + [SMALL_STATE(4345)] = 11378, + [SMALL_STATE(4346)] = 11390, + [SMALL_STATE(4347)] = 11402, + [SMALL_STATE(4348)] = 11414, + [SMALL_STATE(4349)] = 11426, + [SMALL_STATE(4350)] = 11438, + [SMALL_STATE(4351)] = 11450, + [SMALL_STATE(4352)] = 11462, + [SMALL_STATE(4353)] = 11474, + [SMALL_STATE(4354)] = 11490, + [SMALL_STATE(4355)] = 11506, + [SMALL_STATE(4356)] = 11522, + [SMALL_STATE(4357)] = 11538, + [SMALL_STATE(4358)] = 11554, + [SMALL_STATE(4359)] = 11570, + [SMALL_STATE(4360)] = 11586, + [SMALL_STATE(4361)] = 11598, + [SMALL_STATE(4362)] = 11610, + [SMALL_STATE(4363)] = 11628, + [SMALL_STATE(4364)] = 11640, + [SMALL_STATE(4365)] = 11652, + [SMALL_STATE(4366)] = 11670, + [SMALL_STATE(4367)] = 11682, + [SMALL_STATE(4368)] = 11700, + [SMALL_STATE(4369)] = 11712, + [SMALL_STATE(4370)] = 11730, + [SMALL_STATE(4371)] = 11746, + [SMALL_STATE(4372)] = 11763, + [SMALL_STATE(4373)] = 11782, + [SMALL_STATE(4374)] = 11801, + [SMALL_STATE(4375)] = 11816, + [SMALL_STATE(4376)] = 11829, + [SMALL_STATE(4377)] = 11846, + [SMALL_STATE(4378)] = 11863, + [SMALL_STATE(4379)] = 11878, + [SMALL_STATE(4380)] = 11895, + [SMALL_STATE(4381)] = 11912, + [SMALL_STATE(4382)] = 11931, + [SMALL_STATE(4383)] = 11950, + [SMALL_STATE(4384)] = 11963, + [SMALL_STATE(4385)] = 11982, + [SMALL_STATE(4386)] = 11997, + [SMALL_STATE(4387)] = 12016, + [SMALL_STATE(4388)] = 12031, + [SMALL_STATE(4389)] = 12042, + [SMALL_STATE(4390)] = 12055, + [SMALL_STATE(4391)] = 12070, + [SMALL_STATE(4392)] = 12085, + [SMALL_STATE(4393)] = 12104, + [SMALL_STATE(4394)] = 12121, + [SMALL_STATE(4395)] = 12140, + [SMALL_STATE(4396)] = 12157, + [SMALL_STATE(4397)] = 12172, + [SMALL_STATE(4398)] = 12187, + [SMALL_STATE(4399)] = 12204, + [SMALL_STATE(4400)] = 12221, + [SMALL_STATE(4401)] = 12238, + [SMALL_STATE(4402)] = 12251, + [SMALL_STATE(4403)] = 12266, + [SMALL_STATE(4404)] = 12279, + [SMALL_STATE(4405)] = 12298, + [SMALL_STATE(4406)] = 12315, + [SMALL_STATE(4407)] = 12332, + [SMALL_STATE(4408)] = 12351, + [SMALL_STATE(4409)] = 12370, + [SMALL_STATE(4410)] = 12387, + [SMALL_STATE(4411)] = 12404, + [SMALL_STATE(4412)] = 12415, + [SMALL_STATE(4413)] = 12434, + [SMALL_STATE(4414)] = 12449, + [SMALL_STATE(4415)] = 12462, + [SMALL_STATE(4416)] = 12479, + [SMALL_STATE(4417)] = 12492, + [SMALL_STATE(4418)] = 12507, + [SMALL_STATE(4419)] = 12524, + [SMALL_STATE(4420)] = 12537, + [SMALL_STATE(4421)] = 12550, + [SMALL_STATE(4422)] = 12561, + [SMALL_STATE(4423)] = 12576, + [SMALL_STATE(4424)] = 12589, + [SMALL_STATE(4425)] = 12604, + [SMALL_STATE(4426)] = 12621, + [SMALL_STATE(4427)] = 12638, + [SMALL_STATE(4428)] = 12651, + [SMALL_STATE(4429)] = 12666, + [SMALL_STATE(4430)] = 12681, + [SMALL_STATE(4431)] = 12700, + [SMALL_STATE(4432)] = 12717, + [SMALL_STATE(4433)] = 12732, + [SMALL_STATE(4434)] = 12747, + [SMALL_STATE(4435)] = 12764, + [SMALL_STATE(4436)] = 12779, + [SMALL_STATE(4437)] = 12794, + [SMALL_STATE(4438)] = 12805, + [SMALL_STATE(4439)] = 12822, + [SMALL_STATE(4440)] = 12839, + [SMALL_STATE(4441)] = 12858, + [SMALL_STATE(4442)] = 12873, + [SMALL_STATE(4443)] = 12888, + [SMALL_STATE(4444)] = 12901, + [SMALL_STATE(4445)] = 12914, + [SMALL_STATE(4446)] = 12931, + [SMALL_STATE(4447)] = 12946, + [SMALL_STATE(4448)] = 12963, + [SMALL_STATE(4449)] = 12980, + [SMALL_STATE(4450)] = 12993, + [SMALL_STATE(4451)] = 13012, + [SMALL_STATE(4452)] = 13025, + [SMALL_STATE(4453)] = 13040, + [SMALL_STATE(4454)] = 13057, + [SMALL_STATE(4455)] = 13073, + [SMALL_STATE(4456)] = 13089, + [SMALL_STATE(4457)] = 13105, + [SMALL_STATE(4458)] = 13121, + [SMALL_STATE(4459)] = 13137, + [SMALL_STATE(4460)] = 13151, + [SMALL_STATE(4461)] = 13165, + [SMALL_STATE(4462)] = 13175, + [SMALL_STATE(4463)] = 13191, + [SMALL_STATE(4464)] = 13207, + [SMALL_STATE(4465)] = 13223, + [SMALL_STATE(4466)] = 13239, + [SMALL_STATE(4467)] = 13255, + [SMALL_STATE(4468)] = 13267, + [SMALL_STATE(4469)] = 13283, + [SMALL_STATE(4470)] = 13299, + [SMALL_STATE(4471)] = 13313, + [SMALL_STATE(4472)] = 13323, + [SMALL_STATE(4473)] = 13337, + [SMALL_STATE(4474)] = 13353, + [SMALL_STATE(4475)] = 13369, + [SMALL_STATE(4476)] = 13385, + [SMALL_STATE(4477)] = 13401, + [SMALL_STATE(4478)] = 13415, + [SMALL_STATE(4479)] = 13431, + [SMALL_STATE(4480)] = 13447, + [SMALL_STATE(4481)] = 13463, + [SMALL_STATE(4482)] = 13479, + [SMALL_STATE(4483)] = 13495, + [SMALL_STATE(4484)] = 13511, + [SMALL_STATE(4485)] = 13525, + [SMALL_STATE(4486)] = 13541, + [SMALL_STATE(4487)] = 13557, + [SMALL_STATE(4488)] = 13571, + [SMALL_STATE(4489)] = 13587, + [SMALL_STATE(4490)] = 13603, + [SMALL_STATE(4491)] = 13619, + [SMALL_STATE(4492)] = 13633, + [SMALL_STATE(4493)] = 13649, + [SMALL_STATE(4494)] = 13663, + [SMALL_STATE(4495)] = 13679, + [SMALL_STATE(4496)] = 13693, + [SMALL_STATE(4497)] = 13709, + [SMALL_STATE(4498)] = 13725, + [SMALL_STATE(4499)] = 13741, + [SMALL_STATE(4500)] = 13757, + [SMALL_STATE(4501)] = 13773, + [SMALL_STATE(4502)] = 13783, + [SMALL_STATE(4503)] = 13799, + [SMALL_STATE(4504)] = 13815, + [SMALL_STATE(4505)] = 13829, + [SMALL_STATE(4506)] = 13845, + [SMALL_STATE(4507)] = 13861, + [SMALL_STATE(4508)] = 13871, + [SMALL_STATE(4509)] = 13885, + [SMALL_STATE(4510)] = 13899, + [SMALL_STATE(4511)] = 13915, + [SMALL_STATE(4512)] = 13929, + [SMALL_STATE(4513)] = 13945, + [SMALL_STATE(4514)] = 13955, + [SMALL_STATE(4515)] = 13969, + [SMALL_STATE(4516)] = 13985, + [SMALL_STATE(4517)] = 14001, + [SMALL_STATE(4518)] = 14017, + [SMALL_STATE(4519)] = 14033, + [SMALL_STATE(4520)] = 14047, + [SMALL_STATE(4521)] = 14057, + [SMALL_STATE(4522)] = 14067, + [SMALL_STATE(4523)] = 14083, + [SMALL_STATE(4524)] = 14097, + [SMALL_STATE(4525)] = 14111, + [SMALL_STATE(4526)] = 14121, + [SMALL_STATE(4527)] = 14137, + [SMALL_STATE(4528)] = 14153, + [SMALL_STATE(4529)] = 14169, + [SMALL_STATE(4530)] = 14181, + [SMALL_STATE(4531)] = 14197, + [SMALL_STATE(4532)] = 14207, + [SMALL_STATE(4533)] = 14221, + [SMALL_STATE(4534)] = 14237, + [SMALL_STATE(4535)] = 14251, + [SMALL_STATE(4536)] = 14267, + [SMALL_STATE(4537)] = 14283, + [SMALL_STATE(4538)] = 14299, + [SMALL_STATE(4539)] = 14315, + [SMALL_STATE(4540)] = 14329, + [SMALL_STATE(4541)] = 14341, + [SMALL_STATE(4542)] = 14357, + [SMALL_STATE(4543)] = 14373, + [SMALL_STATE(4544)] = 14389, + [SMALL_STATE(4545)] = 14405, + [SMALL_STATE(4546)] = 14421, + [SMALL_STATE(4547)] = 14435, + [SMALL_STATE(4548)] = 14449, + [SMALL_STATE(4549)] = 14465, + [SMALL_STATE(4550)] = 14479, + [SMALL_STATE(4551)] = 14493, + [SMALL_STATE(4552)] = 14509, + [SMALL_STATE(4553)] = 14525, + [SMALL_STATE(4554)] = 14541, + [SMALL_STATE(4555)] = 14557, + [SMALL_STATE(4556)] = 14573, + [SMALL_STATE(4557)] = 14589, + [SMALL_STATE(4558)] = 14605, + [SMALL_STATE(4559)] = 14621, + [SMALL_STATE(4560)] = 14633, + [SMALL_STATE(4561)] = 14647, + [SMALL_STATE(4562)] = 14663, + [SMALL_STATE(4563)] = 14679, + [SMALL_STATE(4564)] = 14695, + [SMALL_STATE(4565)] = 14711, + [SMALL_STATE(4566)] = 14727, + [SMALL_STATE(4567)] = 14741, + [SMALL_STATE(4568)] = 14755, + [SMALL_STATE(4569)] = 14771, + [SMALL_STATE(4570)] = 14783, + [SMALL_STATE(4571)] = 14795, + [SMALL_STATE(4572)] = 14809, + [SMALL_STATE(4573)] = 14825, + [SMALL_STATE(4574)] = 14839, + [SMALL_STATE(4575)] = 14855, + [SMALL_STATE(4576)] = 14867, + [SMALL_STATE(4577)] = 14883, + [SMALL_STATE(4578)] = 14899, + [SMALL_STATE(4579)] = 14915, + [SMALL_STATE(4580)] = 14929, + [SMALL_STATE(4581)] = 14945, + [SMALL_STATE(4582)] = 14955, + [SMALL_STATE(4583)] = 14969, + [SMALL_STATE(4584)] = 14983, + [SMALL_STATE(4585)] = 14999, + [SMALL_STATE(4586)] = 15015, + [SMALL_STATE(4587)] = 15031, + [SMALL_STATE(4588)] = 15047, + [SMALL_STATE(4589)] = 15063, + [SMALL_STATE(4590)] = 15079, + [SMALL_STATE(4591)] = 15095, + [SMALL_STATE(4592)] = 15111, + [SMALL_STATE(4593)] = 15125, + [SMALL_STATE(4594)] = 15137, + [SMALL_STATE(4595)] = 15149, + [SMALL_STATE(4596)] = 15165, + [SMALL_STATE(4597)] = 15181, + [SMALL_STATE(4598)] = 15193, + [SMALL_STATE(4599)] = 15205, + [SMALL_STATE(4600)] = 15221, + [SMALL_STATE(4601)] = 15234, + [SMALL_STATE(4602)] = 15247, + [SMALL_STATE(4603)] = 15260, + [SMALL_STATE(4604)] = 15269, + [SMALL_STATE(4605)] = 15282, + [SMALL_STATE(4606)] = 15295, + [SMALL_STATE(4607)] = 15308, + [SMALL_STATE(4608)] = 15321, + [SMALL_STATE(4609)] = 15330, + [SMALL_STATE(4610)] = 15343, + [SMALL_STATE(4611)] = 15356, + [SMALL_STATE(4612)] = 15369, + [SMALL_STATE(4613)] = 15382, + [SMALL_STATE(4614)] = 15395, + [SMALL_STATE(4615)] = 15404, + [SMALL_STATE(4616)] = 15413, + [SMALL_STATE(4617)] = 15422, + [SMALL_STATE(4618)] = 15435, + [SMALL_STATE(4619)] = 15448, + [SMALL_STATE(4620)] = 15457, + [SMALL_STATE(4621)] = 15470, + [SMALL_STATE(4622)] = 15483, + [SMALL_STATE(4623)] = 15492, + [SMALL_STATE(4624)] = 15501, + [SMALL_STATE(4625)] = 15512, + [SMALL_STATE(4626)] = 15525, + [SMALL_STATE(4627)] = 15538, + [SMALL_STATE(4628)] = 15551, + [SMALL_STATE(4629)] = 15564, + [SMALL_STATE(4630)] = 15573, + [SMALL_STATE(4631)] = 15586, + [SMALL_STATE(4632)] = 15595, + [SMALL_STATE(4633)] = 15604, + [SMALL_STATE(4634)] = 15617, + [SMALL_STATE(4635)] = 15630, + [SMALL_STATE(4636)] = 15643, + [SMALL_STATE(4637)] = 15656, + [SMALL_STATE(4638)] = 15665, + [SMALL_STATE(4639)] = 15678, + [SMALL_STATE(4640)] = 15691, + [SMALL_STATE(4641)] = 15704, + [SMALL_STATE(4642)] = 15717, + [SMALL_STATE(4643)] = 15726, + [SMALL_STATE(4644)] = 15735, + [SMALL_STATE(4645)] = 15748, + [SMALL_STATE(4646)] = 15761, + [SMALL_STATE(4647)] = 15770, + [SMALL_STATE(4648)] = 15779, + [SMALL_STATE(4649)] = 15792, + [SMALL_STATE(4650)] = 15805, + [SMALL_STATE(4651)] = 15818, + [SMALL_STATE(4652)] = 15829, + [SMALL_STATE(4653)] = 15842, + [SMALL_STATE(4654)] = 15855, + [SMALL_STATE(4655)] = 15868, + [SMALL_STATE(4656)] = 15881, + [SMALL_STATE(4657)] = 15894, + [SMALL_STATE(4658)] = 15907, + [SMALL_STATE(4659)] = 15920, + [SMALL_STATE(4660)] = 15933, + [SMALL_STATE(4661)] = 15942, + [SMALL_STATE(4662)] = 15955, + [SMALL_STATE(4663)] = 15968, + [SMALL_STATE(4664)] = 15981, + [SMALL_STATE(4665)] = 15994, + [SMALL_STATE(4666)] = 16007, + [SMALL_STATE(4667)] = 16020, + [SMALL_STATE(4668)] = 16033, + [SMALL_STATE(4669)] = 16046, + [SMALL_STATE(4670)] = 16059, + [SMALL_STATE(4671)] = 16072, + [SMALL_STATE(4672)] = 16085, + [SMALL_STATE(4673)] = 16094, + [SMALL_STATE(4674)] = 16107, + [SMALL_STATE(4675)] = 16120, + [SMALL_STATE(4676)] = 16131, + [SMALL_STATE(4677)] = 16142, + [SMALL_STATE(4678)] = 16155, + [SMALL_STATE(4679)] = 16168, + [SMALL_STATE(4680)] = 16181, + [SMALL_STATE(4681)] = 16194, + [SMALL_STATE(4682)] = 16207, + [SMALL_STATE(4683)] = 16220, + [SMALL_STATE(4684)] = 16233, + [SMALL_STATE(4685)] = 16246, + [SMALL_STATE(4686)] = 16259, + [SMALL_STATE(4687)] = 16272, + [SMALL_STATE(4688)] = 16285, + [SMALL_STATE(4689)] = 16298, + [SMALL_STATE(4690)] = 16311, + [SMALL_STATE(4691)] = 16322, + [SMALL_STATE(4692)] = 16331, + [SMALL_STATE(4693)] = 16344, + [SMALL_STATE(4694)] = 16357, + [SMALL_STATE(4695)] = 16370, + [SMALL_STATE(4696)] = 16383, + [SMALL_STATE(4697)] = 16396, + [SMALL_STATE(4698)] = 16409, + [SMALL_STATE(4699)] = 16422, + [SMALL_STATE(4700)] = 16435, + [SMALL_STATE(4701)] = 16448, + [SMALL_STATE(4702)] = 16461, + [SMALL_STATE(4703)] = 16474, + [SMALL_STATE(4704)] = 16487, + [SMALL_STATE(4705)] = 16500, + [SMALL_STATE(4706)] = 16513, + [SMALL_STATE(4707)] = 16526, + [SMALL_STATE(4708)] = 16539, + [SMALL_STATE(4709)] = 16548, + [SMALL_STATE(4710)] = 16561, + [SMALL_STATE(4711)] = 16574, + [SMALL_STATE(4712)] = 16587, + [SMALL_STATE(4713)] = 16598, + [SMALL_STATE(4714)] = 16611, + [SMALL_STATE(4715)] = 16624, + [SMALL_STATE(4716)] = 16637, + [SMALL_STATE(4717)] = 16650, + [SMALL_STATE(4718)] = 16663, + [SMALL_STATE(4719)] = 16676, + [SMALL_STATE(4720)] = 16689, + [SMALL_STATE(4721)] = 16702, + [SMALL_STATE(4722)] = 16711, + [SMALL_STATE(4723)] = 16724, + [SMALL_STATE(4724)] = 16733, + [SMALL_STATE(4725)] = 16742, + [SMALL_STATE(4726)] = 16753, + [SMALL_STATE(4727)] = 16766, + [SMALL_STATE(4728)] = 16779, + [SMALL_STATE(4729)] = 16792, + [SMALL_STATE(4730)] = 16805, + [SMALL_STATE(4731)] = 16814, + [SMALL_STATE(4732)] = 16823, + [SMALL_STATE(4733)] = 16836, + [SMALL_STATE(4734)] = 16849, + [SMALL_STATE(4735)] = 16862, + [SMALL_STATE(4736)] = 16871, + [SMALL_STATE(4737)] = 16884, + [SMALL_STATE(4738)] = 16893, + [SMALL_STATE(4739)] = 16904, + [SMALL_STATE(4740)] = 16917, + [SMALL_STATE(4741)] = 16930, + [SMALL_STATE(4742)] = 16939, + [SMALL_STATE(4743)] = 16948, + [SMALL_STATE(4744)] = 16959, + [SMALL_STATE(4745)] = 16968, + [SMALL_STATE(4746)] = 16981, + [SMALL_STATE(4747)] = 16994, + [SMALL_STATE(4748)] = 17007, + [SMALL_STATE(4749)] = 17020, + [SMALL_STATE(4750)] = 17033, + [SMALL_STATE(4751)] = 17042, + [SMALL_STATE(4752)] = 17055, + [SMALL_STATE(4753)] = 17066, + [SMALL_STATE(4754)] = 17079, + [SMALL_STATE(4755)] = 17088, + [SMALL_STATE(4756)] = 17101, + [SMALL_STATE(4757)] = 17114, + [SMALL_STATE(4758)] = 17127, + [SMALL_STATE(4759)] = 17138, + [SMALL_STATE(4760)] = 17151, + [SMALL_STATE(4761)] = 17164, + [SMALL_STATE(4762)] = 17175, + [SMALL_STATE(4763)] = 17188, + [SMALL_STATE(4764)] = 17197, + [SMALL_STATE(4765)] = 17206, + [SMALL_STATE(4766)] = 17219, + [SMALL_STATE(4767)] = 17232, + [SMALL_STATE(4768)] = 17245, + [SMALL_STATE(4769)] = 17258, + [SMALL_STATE(4770)] = 17267, + [SMALL_STATE(4771)] = 17280, + [SMALL_STATE(4772)] = 17293, + [SMALL_STATE(4773)] = 17306, + [SMALL_STATE(4774)] = 17319, + [SMALL_STATE(4775)] = 17332, + [SMALL_STATE(4776)] = 17345, + [SMALL_STATE(4777)] = 17358, + [SMALL_STATE(4778)] = 17371, + [SMALL_STATE(4779)] = 17384, + [SMALL_STATE(4780)] = 17397, + [SMALL_STATE(4781)] = 17410, + [SMALL_STATE(4782)] = 17421, + [SMALL_STATE(4783)] = 17434, + [SMALL_STATE(4784)] = 17447, + [SMALL_STATE(4785)] = 17460, + [SMALL_STATE(4786)] = 17469, + [SMALL_STATE(4787)] = 17482, + [SMALL_STATE(4788)] = 17495, + [SMALL_STATE(4789)] = 17508, + [SMALL_STATE(4790)] = 17517, + [SMALL_STATE(4791)] = 17530, + [SMALL_STATE(4792)] = 17543, + [SMALL_STATE(4793)] = 17556, + [SMALL_STATE(4794)] = 17565, + [SMALL_STATE(4795)] = 17578, + [SMALL_STATE(4796)] = 17591, + [SMALL_STATE(4797)] = 17604, + [SMALL_STATE(4798)] = 17613, + [SMALL_STATE(4799)] = 17622, + [SMALL_STATE(4800)] = 17635, + [SMALL_STATE(4801)] = 17648, + [SMALL_STATE(4802)] = 17661, + [SMALL_STATE(4803)] = 17674, + [SMALL_STATE(4804)] = 17683, + [SMALL_STATE(4805)] = 17696, + [SMALL_STATE(4806)] = 17709, + [SMALL_STATE(4807)] = 17722, + [SMALL_STATE(4808)] = 17735, + [SMALL_STATE(4809)] = 17748, + [SMALL_STATE(4810)] = 17761, + [SMALL_STATE(4811)] = 17770, + [SMALL_STATE(4812)] = 17779, + [SMALL_STATE(4813)] = 17792, + [SMALL_STATE(4814)] = 17801, + [SMALL_STATE(4815)] = 17814, + [SMALL_STATE(4816)] = 17827, + [SMALL_STATE(4817)] = 17840, + [SMALL_STATE(4818)] = 17853, + [SMALL_STATE(4819)] = 17862, + [SMALL_STATE(4820)] = 17871, + [SMALL_STATE(4821)] = 17884, + [SMALL_STATE(4822)] = 17893, + [SMALL_STATE(4823)] = 17906, + [SMALL_STATE(4824)] = 17919, + [SMALL_STATE(4825)] = 17932, + [SMALL_STATE(4826)] = 17945, + [SMALL_STATE(4827)] = 17954, + [SMALL_STATE(4828)] = 17967, + [SMALL_STATE(4829)] = 17980, + [SMALL_STATE(4830)] = 17989, + [SMALL_STATE(4831)] = 18002, + [SMALL_STATE(4832)] = 18012, + [SMALL_STATE(4833)] = 18020, + [SMALL_STATE(4834)] = 18030, + [SMALL_STATE(4835)] = 18040, + [SMALL_STATE(4836)] = 18050, + [SMALL_STATE(4837)] = 18058, + [SMALL_STATE(4838)] = 18066, + [SMALL_STATE(4839)] = 18074, + [SMALL_STATE(4840)] = 18082, + [SMALL_STATE(4841)] = 18092, + [SMALL_STATE(4842)] = 18102, + [SMALL_STATE(4843)] = 18112, + [SMALL_STATE(4844)] = 18122, + [SMALL_STATE(4845)] = 18132, + [SMALL_STATE(4846)] = 18142, + [SMALL_STATE(4847)] = 18152, + [SMALL_STATE(4848)] = 18162, + [SMALL_STATE(4849)] = 18172, + [SMALL_STATE(4850)] = 18180, + [SMALL_STATE(4851)] = 18188, + [SMALL_STATE(4852)] = 18196, + [SMALL_STATE(4853)] = 18206, + [SMALL_STATE(4854)] = 18216, + [SMALL_STATE(4855)] = 18226, + [SMALL_STATE(4856)] = 18236, + [SMALL_STATE(4857)] = 18246, + [SMALL_STATE(4858)] = 18254, + [SMALL_STATE(4859)] = 18264, + [SMALL_STATE(4860)] = 18274, + [SMALL_STATE(4861)] = 18284, + [SMALL_STATE(4862)] = 18292, + [SMALL_STATE(4863)] = 18300, + [SMALL_STATE(4864)] = 18308, + [SMALL_STATE(4865)] = 18316, + [SMALL_STATE(4866)] = 18326, + [SMALL_STATE(4867)] = 18336, + [SMALL_STATE(4868)] = 18346, + [SMALL_STATE(4869)] = 18354, + [SMALL_STATE(4870)] = 18362, + [SMALL_STATE(4871)] = 18370, + [SMALL_STATE(4872)] = 18378, + [SMALL_STATE(4873)] = 18388, + [SMALL_STATE(4874)] = 18398, + [SMALL_STATE(4875)] = 18408, + [SMALL_STATE(4876)] = 18416, + [SMALL_STATE(4877)] = 18426, + [SMALL_STATE(4878)] = 18436, + [SMALL_STATE(4879)] = 18446, + [SMALL_STATE(4880)] = 18456, + [SMALL_STATE(4881)] = 18466, + [SMALL_STATE(4882)] = 18476, + [SMALL_STATE(4883)] = 18486, + [SMALL_STATE(4884)] = 18496, + [SMALL_STATE(4885)] = 18506, + [SMALL_STATE(4886)] = 18514, + [SMALL_STATE(4887)] = 18524, + [SMALL_STATE(4888)] = 18532, + [SMALL_STATE(4889)] = 18542, + [SMALL_STATE(4890)] = 18552, + [SMALL_STATE(4891)] = 18560, + [SMALL_STATE(4892)] = 18570, + [SMALL_STATE(4893)] = 18580, + [SMALL_STATE(4894)] = 18588, + [SMALL_STATE(4895)] = 18598, + [SMALL_STATE(4896)] = 18608, + [SMALL_STATE(4897)] = 18618, + [SMALL_STATE(4898)] = 18628, + [SMALL_STATE(4899)] = 18636, + [SMALL_STATE(4900)] = 18646, + [SMALL_STATE(4901)] = 18654, + [SMALL_STATE(4902)] = 18664, + [SMALL_STATE(4903)] = 18672, + [SMALL_STATE(4904)] = 18682, + [SMALL_STATE(4905)] = 18692, + [SMALL_STATE(4906)] = 18702, + [SMALL_STATE(4907)] = 18710, + [SMALL_STATE(4908)] = 18720, + [SMALL_STATE(4909)] = 18728, + [SMALL_STATE(4910)] = 18738, + [SMALL_STATE(4911)] = 18746, + [SMALL_STATE(4912)] = 18756, + [SMALL_STATE(4913)] = 18764, + [SMALL_STATE(4914)] = 18774, + [SMALL_STATE(4915)] = 18782, + [SMALL_STATE(4916)] = 18792, + [SMALL_STATE(4917)] = 18800, + [SMALL_STATE(4918)] = 18808, + [SMALL_STATE(4919)] = 18816, + [SMALL_STATE(4920)] = 18826, + [SMALL_STATE(4921)] = 18834, + [SMALL_STATE(4922)] = 18842, + [SMALL_STATE(4923)] = 18850, + [SMALL_STATE(4924)] = 18858, + [SMALL_STATE(4925)] = 18866, + [SMALL_STATE(4926)] = 18874, + [SMALL_STATE(4927)] = 18882, + [SMALL_STATE(4928)] = 18890, + [SMALL_STATE(4929)] = 18898, + [SMALL_STATE(4930)] = 18906, + [SMALL_STATE(4931)] = 18914, + [SMALL_STATE(4932)] = 18922, + [SMALL_STATE(4933)] = 18930, + [SMALL_STATE(4934)] = 18938, + [SMALL_STATE(4935)] = 18946, + [SMALL_STATE(4936)] = 18954, + [SMALL_STATE(4937)] = 18962, + [SMALL_STATE(4938)] = 18970, + [SMALL_STATE(4939)] = 18978, + [SMALL_STATE(4940)] = 18986, + [SMALL_STATE(4941)] = 18996, + [SMALL_STATE(4942)] = 19006, + [SMALL_STATE(4943)] = 19016, + [SMALL_STATE(4944)] = 19024, + [SMALL_STATE(4945)] = 19032, + [SMALL_STATE(4946)] = 19042, + [SMALL_STATE(4947)] = 19050, + [SMALL_STATE(4948)] = 19058, + [SMALL_STATE(4949)] = 19066, + [SMALL_STATE(4950)] = 19074, + [SMALL_STATE(4951)] = 19084, + [SMALL_STATE(4952)] = 19092, + [SMALL_STATE(4953)] = 19100, + [SMALL_STATE(4954)] = 19108, + [SMALL_STATE(4955)] = 19116, + [SMALL_STATE(4956)] = 19124, + [SMALL_STATE(4957)] = 19134, + [SMALL_STATE(4958)] = 19144, + [SMALL_STATE(4959)] = 19152, + [SMALL_STATE(4960)] = 19162, + [SMALL_STATE(4961)] = 19172, + [SMALL_STATE(4962)] = 19182, + [SMALL_STATE(4963)] = 19192, + [SMALL_STATE(4964)] = 19202, + [SMALL_STATE(4965)] = 19212, + [SMALL_STATE(4966)] = 19222, + [SMALL_STATE(4967)] = 19230, + [SMALL_STATE(4968)] = 19240, + [SMALL_STATE(4969)] = 19250, + [SMALL_STATE(4970)] = 19260, + [SMALL_STATE(4971)] = 19268, + [SMALL_STATE(4972)] = 19278, + [SMALL_STATE(4973)] = 19288, + [SMALL_STATE(4974)] = 19298, + [SMALL_STATE(4975)] = 19308, + [SMALL_STATE(4976)] = 19316, + [SMALL_STATE(4977)] = 19326, + [SMALL_STATE(4978)] = 19334, + [SMALL_STATE(4979)] = 19344, + [SMALL_STATE(4980)] = 19354, + [SMALL_STATE(4981)] = 19364, + [SMALL_STATE(4982)] = 19374, + [SMALL_STATE(4983)] = 19384, + [SMALL_STATE(4984)] = 19394, + [SMALL_STATE(4985)] = 19404, + [SMALL_STATE(4986)] = 19414, + [SMALL_STATE(4987)] = 19424, + [SMALL_STATE(4988)] = 19434, + [SMALL_STATE(4989)] = 19444, + [SMALL_STATE(4990)] = 19452, + [SMALL_STATE(4991)] = 19460, + [SMALL_STATE(4992)] = 19468, + [SMALL_STATE(4993)] = 19478, + [SMALL_STATE(4994)] = 19488, + [SMALL_STATE(4995)] = 19498, + [SMALL_STATE(4996)] = 19508, + [SMALL_STATE(4997)] = 19516, + [SMALL_STATE(4998)] = 19526, + [SMALL_STATE(4999)] = 19536, + [SMALL_STATE(5000)] = 19544, + [SMALL_STATE(5001)] = 19554, + [SMALL_STATE(5002)] = 19562, + [SMALL_STATE(5003)] = 19572, + [SMALL_STATE(5004)] = 19580, + [SMALL_STATE(5005)] = 19590, + [SMALL_STATE(5006)] = 19600, + [SMALL_STATE(5007)] = 19608, + [SMALL_STATE(5008)] = 19618, + [SMALL_STATE(5009)] = 19628, + [SMALL_STATE(5010)] = 19638, + [SMALL_STATE(5011)] = 19648, + [SMALL_STATE(5012)] = 19656, + [SMALL_STATE(5013)] = 19664, + [SMALL_STATE(5014)] = 19674, + [SMALL_STATE(5015)] = 19684, + [SMALL_STATE(5016)] = 19694, + [SMALL_STATE(5017)] = 19702, + [SMALL_STATE(5018)] = 19710, + [SMALL_STATE(5019)] = 19720, + [SMALL_STATE(5020)] = 19730, + [SMALL_STATE(5021)] = 19740, + [SMALL_STATE(5022)] = 19748, + [SMALL_STATE(5023)] = 19756, + [SMALL_STATE(5024)] = 19766, + [SMALL_STATE(5025)] = 19776, + [SMALL_STATE(5026)] = 19786, + [SMALL_STATE(5027)] = 19796, + [SMALL_STATE(5028)] = 19806, + [SMALL_STATE(5029)] = 19816, + [SMALL_STATE(5030)] = 19826, + [SMALL_STATE(5031)] = 19836, + [SMALL_STATE(5032)] = 19846, + [SMALL_STATE(5033)] = 19854, + [SMALL_STATE(5034)] = 19864, + [SMALL_STATE(5035)] = 19872, + [SMALL_STATE(5036)] = 19882, + [SMALL_STATE(5037)] = 19892, + [SMALL_STATE(5038)] = 19900, + [SMALL_STATE(5039)] = 19910, + [SMALL_STATE(5040)] = 19920, + [SMALL_STATE(5041)] = 19930, + [SMALL_STATE(5042)] = 19940, + [SMALL_STATE(5043)] = 19950, + [SMALL_STATE(5044)] = 19960, + [SMALL_STATE(5045)] = 19970, + [SMALL_STATE(5046)] = 19980, + [SMALL_STATE(5047)] = 19990, + [SMALL_STATE(5048)] = 20000, + [SMALL_STATE(5049)] = 20008, + [SMALL_STATE(5050)] = 20016, + [SMALL_STATE(5051)] = 20026, + [SMALL_STATE(5052)] = 20036, + [SMALL_STATE(5053)] = 20046, + [SMALL_STATE(5054)] = 20054, + [SMALL_STATE(5055)] = 20064, + [SMALL_STATE(5056)] = 20072, + [SMALL_STATE(5057)] = 20082, + [SMALL_STATE(5058)] = 20090, + [SMALL_STATE(5059)] = 20098, + [SMALL_STATE(5060)] = 20108, + [SMALL_STATE(5061)] = 20116, + [SMALL_STATE(5062)] = 20124, + [SMALL_STATE(5063)] = 20132, + [SMALL_STATE(5064)] = 20142, + [SMALL_STATE(5065)] = 20152, + [SMALL_STATE(5066)] = 20162, + [SMALL_STATE(5067)] = 20172, + [SMALL_STATE(5068)] = 20182, + [SMALL_STATE(5069)] = 20190, + [SMALL_STATE(5070)] = 20200, + [SMALL_STATE(5071)] = 20208, + [SMALL_STATE(5072)] = 20218, + [SMALL_STATE(5073)] = 20226, + [SMALL_STATE(5074)] = 20236, + [SMALL_STATE(5075)] = 20246, + [SMALL_STATE(5076)] = 20256, + [SMALL_STATE(5077)] = 20264, + [SMALL_STATE(5078)] = 20274, + [SMALL_STATE(5079)] = 20284, + [SMALL_STATE(5080)] = 20294, + [SMALL_STATE(5081)] = 20304, + [SMALL_STATE(5082)] = 20312, + [SMALL_STATE(5083)] = 20322, + [SMALL_STATE(5084)] = 20332, + [SMALL_STATE(5085)] = 20342, + [SMALL_STATE(5086)] = 20352, + [SMALL_STATE(5087)] = 20360, + [SMALL_STATE(5088)] = 20370, + [SMALL_STATE(5089)] = 20380, + [SMALL_STATE(5090)] = 20390, + [SMALL_STATE(5091)] = 20400, + [SMALL_STATE(5092)] = 20410, + [SMALL_STATE(5093)] = 20420, + [SMALL_STATE(5094)] = 20430, + [SMALL_STATE(5095)] = 20438, + [SMALL_STATE(5096)] = 20446, + [SMALL_STATE(5097)] = 20456, + [SMALL_STATE(5098)] = 20466, + [SMALL_STATE(5099)] = 20474, + [SMALL_STATE(5100)] = 20482, + [SMALL_STATE(5101)] = 20492, + [SMALL_STATE(5102)] = 20502, + [SMALL_STATE(5103)] = 20512, + [SMALL_STATE(5104)] = 20522, + [SMALL_STATE(5105)] = 20530, + [SMALL_STATE(5106)] = 20540, + [SMALL_STATE(5107)] = 20550, + [SMALL_STATE(5108)] = 20560, + [SMALL_STATE(5109)] = 20570, + [SMALL_STATE(5110)] = 20580, + [SMALL_STATE(5111)] = 20590, + [SMALL_STATE(5112)] = 20600, + [SMALL_STATE(5113)] = 20607, + [SMALL_STATE(5114)] = 20614, + [SMALL_STATE(5115)] = 20621, + [SMALL_STATE(5116)] = 20628, + [SMALL_STATE(5117)] = 20635, + [SMALL_STATE(5118)] = 20642, + [SMALL_STATE(5119)] = 20649, + [SMALL_STATE(5120)] = 20656, + [SMALL_STATE(5121)] = 20663, + [SMALL_STATE(5122)] = 20670, + [SMALL_STATE(5123)] = 20677, + [SMALL_STATE(5124)] = 20684, + [SMALL_STATE(5125)] = 20691, + [SMALL_STATE(5126)] = 20698, + [SMALL_STATE(5127)] = 20705, + [SMALL_STATE(5128)] = 20712, + [SMALL_STATE(5129)] = 20719, + [SMALL_STATE(5130)] = 20726, + [SMALL_STATE(5131)] = 20733, + [SMALL_STATE(5132)] = 20740, + [SMALL_STATE(5133)] = 20747, + [SMALL_STATE(5134)] = 20754, + [SMALL_STATE(5135)] = 20761, + [SMALL_STATE(5136)] = 20768, + [SMALL_STATE(5137)] = 20775, + [SMALL_STATE(5138)] = 20782, + [SMALL_STATE(5139)] = 20789, + [SMALL_STATE(5140)] = 20796, + [SMALL_STATE(5141)] = 20803, + [SMALL_STATE(5142)] = 20810, + [SMALL_STATE(5143)] = 20817, + [SMALL_STATE(5144)] = 20824, + [SMALL_STATE(5145)] = 20831, + [SMALL_STATE(5146)] = 20838, + [SMALL_STATE(5147)] = 20845, + [SMALL_STATE(5148)] = 20852, + [SMALL_STATE(5149)] = 20859, + [SMALL_STATE(5150)] = 20866, + [SMALL_STATE(5151)] = 20873, + [SMALL_STATE(5152)] = 20880, + [SMALL_STATE(5153)] = 20887, + [SMALL_STATE(5154)] = 20894, + [SMALL_STATE(5155)] = 20901, + [SMALL_STATE(5156)] = 20908, + [SMALL_STATE(5157)] = 20915, + [SMALL_STATE(5158)] = 20922, + [SMALL_STATE(5159)] = 20929, + [SMALL_STATE(5160)] = 20936, + [SMALL_STATE(5161)] = 20943, + [SMALL_STATE(5162)] = 20950, + [SMALL_STATE(5163)] = 20957, + [SMALL_STATE(5164)] = 20964, + [SMALL_STATE(5165)] = 20971, + [SMALL_STATE(5166)] = 20978, + [SMALL_STATE(5167)] = 20985, + [SMALL_STATE(5168)] = 20992, + [SMALL_STATE(5169)] = 20999, + [SMALL_STATE(5170)] = 21006, + [SMALL_STATE(5171)] = 21013, + [SMALL_STATE(5172)] = 21020, + [SMALL_STATE(5173)] = 21027, + [SMALL_STATE(5174)] = 21034, + [SMALL_STATE(5175)] = 21041, + [SMALL_STATE(5176)] = 21048, + [SMALL_STATE(5177)] = 21055, + [SMALL_STATE(5178)] = 21062, + [SMALL_STATE(5179)] = 21069, + [SMALL_STATE(5180)] = 21076, + [SMALL_STATE(5181)] = 21083, + [SMALL_STATE(5182)] = 21090, + [SMALL_STATE(5183)] = 21097, + [SMALL_STATE(5184)] = 21104, + [SMALL_STATE(5185)] = 21111, + [SMALL_STATE(5186)] = 21118, + [SMALL_STATE(5187)] = 21125, + [SMALL_STATE(5188)] = 21132, + [SMALL_STATE(5189)] = 21139, + [SMALL_STATE(5190)] = 21146, + [SMALL_STATE(5191)] = 21153, + [SMALL_STATE(5192)] = 21160, + [SMALL_STATE(5193)] = 21167, + [SMALL_STATE(5194)] = 21174, + [SMALL_STATE(5195)] = 21181, + [SMALL_STATE(5196)] = 21188, + [SMALL_STATE(5197)] = 21195, + [SMALL_STATE(5198)] = 21202, + [SMALL_STATE(5199)] = 21209, + [SMALL_STATE(5200)] = 21216, + [SMALL_STATE(5201)] = 21223, + [SMALL_STATE(5202)] = 21230, + [SMALL_STATE(5203)] = 21237, + [SMALL_STATE(5204)] = 21244, + [SMALL_STATE(5205)] = 21251, + [SMALL_STATE(5206)] = 21258, + [SMALL_STATE(5207)] = 21265, + [SMALL_STATE(5208)] = 21272, + [SMALL_STATE(5209)] = 21279, + [SMALL_STATE(5210)] = 21286, + [SMALL_STATE(5211)] = 21293, + [SMALL_STATE(5212)] = 21300, + [SMALL_STATE(5213)] = 21307, + [SMALL_STATE(5214)] = 21314, + [SMALL_STATE(5215)] = 21321, + [SMALL_STATE(5216)] = 21328, + [SMALL_STATE(5217)] = 21335, + [SMALL_STATE(5218)] = 21342, + [SMALL_STATE(5219)] = 21349, + [SMALL_STATE(5220)] = 21356, + [SMALL_STATE(5221)] = 21363, + [SMALL_STATE(5222)] = 21370, + [SMALL_STATE(5223)] = 21377, + [SMALL_STATE(5224)] = 21384, + [SMALL_STATE(5225)] = 21391, + [SMALL_STATE(5226)] = 21398, + [SMALL_STATE(5227)] = 21405, + [SMALL_STATE(5228)] = 21412, + [SMALL_STATE(5229)] = 21419, + [SMALL_STATE(5230)] = 21426, + [SMALL_STATE(5231)] = 21433, + [SMALL_STATE(5232)] = 21440, + [SMALL_STATE(5233)] = 21447, + [SMALL_STATE(5234)] = 21454, + [SMALL_STATE(5235)] = 21461, + [SMALL_STATE(5236)] = 21468, + [SMALL_STATE(5237)] = 21475, + [SMALL_STATE(5238)] = 21482, + [SMALL_STATE(5239)] = 21489, + [SMALL_STATE(5240)] = 21496, + [SMALL_STATE(5241)] = 21503, + [SMALL_STATE(5242)] = 21510, + [SMALL_STATE(5243)] = 21517, + [SMALL_STATE(5244)] = 21524, + [SMALL_STATE(5245)] = 21531, + [SMALL_STATE(5246)] = 21538, + [SMALL_STATE(5247)] = 21545, + [SMALL_STATE(5248)] = 21552, + [SMALL_STATE(5249)] = 21559, + [SMALL_STATE(5250)] = 21566, + [SMALL_STATE(5251)] = 21573, + [SMALL_STATE(5252)] = 21580, + [SMALL_STATE(5253)] = 21587, + [SMALL_STATE(5254)] = 21594, + [SMALL_STATE(5255)] = 21601, + [SMALL_STATE(5256)] = 21608, + [SMALL_STATE(5257)] = 21615, + [SMALL_STATE(5258)] = 21622, + [SMALL_STATE(5259)] = 21629, + [SMALL_STATE(5260)] = 21636, + [SMALL_STATE(5261)] = 21643, + [SMALL_STATE(5262)] = 21650, + [SMALL_STATE(5263)] = 21657, + [SMALL_STATE(5264)] = 21664, + [SMALL_STATE(5265)] = 21671, + [SMALL_STATE(5266)] = 21678, + [SMALL_STATE(5267)] = 21685, + [SMALL_STATE(5268)] = 21692, + [SMALL_STATE(5269)] = 21699, + [SMALL_STATE(5270)] = 21706, + [SMALL_STATE(5271)] = 21713, + [SMALL_STATE(5272)] = 21720, + [SMALL_STATE(5273)] = 21727, + [SMALL_STATE(5274)] = 21734, + [SMALL_STATE(5275)] = 21741, + [SMALL_STATE(5276)] = 21748, + [SMALL_STATE(5277)] = 21755, + [SMALL_STATE(5278)] = 21762, + [SMALL_STATE(5279)] = 21769, + [SMALL_STATE(5280)] = 21776, + [SMALL_STATE(5281)] = 21783, + [SMALL_STATE(5282)] = 21790, + [SMALL_STATE(5283)] = 21797, + [SMALL_STATE(5284)] = 21804, + [SMALL_STATE(5285)] = 21811, + [SMALL_STATE(5286)] = 21818, + [SMALL_STATE(5287)] = 21825, + [SMALL_STATE(5288)] = 21832, + [SMALL_STATE(5289)] = 21839, + [SMALL_STATE(5290)] = 21846, + [SMALL_STATE(5291)] = 21853, + [SMALL_STATE(5292)] = 21860, + [SMALL_STATE(5293)] = 21867, + [SMALL_STATE(5294)] = 21874, + [SMALL_STATE(5295)] = 21881, + [SMALL_STATE(5296)] = 21888, + [SMALL_STATE(5297)] = 21895, + [SMALL_STATE(5298)] = 21902, + [SMALL_STATE(5299)] = 21909, + [SMALL_STATE(5300)] = 21916, + [SMALL_STATE(5301)] = 21923, + [SMALL_STATE(5302)] = 21930, + [SMALL_STATE(5303)] = 21937, + [SMALL_STATE(5304)] = 21944, + [SMALL_STATE(5305)] = 21951, + [SMALL_STATE(5306)] = 21958, + [SMALL_STATE(5307)] = 21965, + [SMALL_STATE(5308)] = 21972, + [SMALL_STATE(5309)] = 21979, + [SMALL_STATE(5310)] = 21986, + [SMALL_STATE(5311)] = 21993, + [SMALL_STATE(5312)] = 22000, + [SMALL_STATE(5313)] = 22007, + [SMALL_STATE(5314)] = 22014, + [SMALL_STATE(5315)] = 22021, + [SMALL_STATE(5316)] = 22028, + [SMALL_STATE(5317)] = 22035, + [SMALL_STATE(5318)] = 22042, + [SMALL_STATE(5319)] = 22049, + [SMALL_STATE(5320)] = 22056, + [SMALL_STATE(5321)] = 22063, + [SMALL_STATE(5322)] = 22070, + [SMALL_STATE(5323)] = 22077, + [SMALL_STATE(5324)] = 22084, + [SMALL_STATE(5325)] = 22091, + [SMALL_STATE(5326)] = 22098, + [SMALL_STATE(5327)] = 22105, + [SMALL_STATE(5328)] = 22112, + [SMALL_STATE(5329)] = 22119, + [SMALL_STATE(5330)] = 22126, + [SMALL_STATE(5331)] = 22133, + [SMALL_STATE(5332)] = 22140, + [SMALL_STATE(5333)] = 22147, + [SMALL_STATE(5334)] = 22154, + [SMALL_STATE(5335)] = 22161, + [SMALL_STATE(5336)] = 22168, + [SMALL_STATE(5337)] = 22175, + [SMALL_STATE(5338)] = 22182, + [SMALL_STATE(5339)] = 22189, + [SMALL_STATE(5340)] = 22196, + [SMALL_STATE(5341)] = 22203, + [SMALL_STATE(5342)] = 22210, + [SMALL_STATE(5343)] = 22217, + [SMALL_STATE(5344)] = 22224, + [SMALL_STATE(5345)] = 22231, + [SMALL_STATE(5346)] = 22238, + [SMALL_STATE(5347)] = 22245, + [SMALL_STATE(5348)] = 22252, + [SMALL_STATE(5349)] = 22259, + [SMALL_STATE(5350)] = 22266, + [SMALL_STATE(5351)] = 22273, + [SMALL_STATE(5352)] = 22280, + [SMALL_STATE(5353)] = 22287, + [SMALL_STATE(5354)] = 22294, + [SMALL_STATE(5355)] = 22301, + [SMALL_STATE(5356)] = 22308, + [SMALL_STATE(5357)] = 22315, + [SMALL_STATE(5358)] = 22322, + [SMALL_STATE(5359)] = 22329, + [SMALL_STATE(5360)] = 22336, + [SMALL_STATE(5361)] = 22343, + [SMALL_STATE(5362)] = 22350, + [SMALL_STATE(5363)] = 22357, + [SMALL_STATE(5364)] = 22364, + [SMALL_STATE(5365)] = 22371, + [SMALL_STATE(5366)] = 22378, + [SMALL_STATE(5367)] = 22385, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -482014,4550 +487783,4574 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(2177), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(2226), [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [412] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), SHIFT(325), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(230), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(1642), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(922), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(2156), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [412] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), SHIFT(328), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(214), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(1784), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(926), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(2224), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2247), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5066), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1884), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2281), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5213), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1918), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4457), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5137), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4483), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5209), [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [513] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 3), SHIFT(293), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(1683), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(920), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [513] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 3), SHIFT(292), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(1815), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(924), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(2247), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5066), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1884), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(325), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(293), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(920), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(2281), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5213), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1918), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(328), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(292), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(924), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(27), [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2178), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(926), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5236), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3998), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2419), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2419), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2502), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2523), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2527), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2416), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1432), - [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2181), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4363), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5187), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4668), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(940), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5263), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4027), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2554), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4409), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5153), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4752), [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2033), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4661), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4792), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3924), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4034), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4993), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4833), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5083), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4838), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5063), [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5020), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5120), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 71), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 71), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 22), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 22), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 123), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 123), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [810] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), SHIFT(296), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(920), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1327), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2178), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(926), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5236), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3998), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2419), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2419), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2502), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2523), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2527), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2416), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1432), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2181), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4363), - [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5187), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4668), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2033), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4661), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4792), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3924), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4384), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4833), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4838), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), - [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5020), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5120), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 9), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(299), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1315), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(296), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(295), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(305), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(2360), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(1430), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2360), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2399), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(306), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2357), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2247), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4034), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3995), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2565), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2451), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2567), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2570), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2571), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2410), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2409), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1772), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2426), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2361), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4377), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2107), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4457), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(252), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4964), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5152), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(297), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(52), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(3), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(328), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(856), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2178), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(926), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(114), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2247), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5236), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2247), - [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1682), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(3954), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(3998), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2419), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2419), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2502), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2523), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2525), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2527), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2416), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2442), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1432), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2783), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2181), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4363), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5187), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1996), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4668), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2033), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4661), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2173), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(260), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(48), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4871), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(3979), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4792), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(3924), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(121), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4108), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(135), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2007), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1179), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1994), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4833), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1151), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1180), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4838), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4847), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(916), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5020), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5120), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 17), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(1807), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 17), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(302), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(301), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(304), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(325), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(920), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(303), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(298), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 73), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 73), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 73), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 73), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(300), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2097), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 87), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 87), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(920), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2247), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(5066), - [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1884), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5139), - [1838] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 0), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter_type, 1, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 0), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1478), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter_type, 1, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(1310), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1324), - [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1809), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 1), - [1872] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 1), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 0), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 0), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 1), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [1888] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 1), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 1), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 1), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 1), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5032), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 1, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 1, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5054), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 98), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 98), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 99), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 99), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 84), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 84), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), REDUCE(sym_arguments, 3, 0, 0), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), REDUCE(sym_arguments, 3, 0, 0), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 50), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 50), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 51), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 51), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 52), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 52), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 53), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 53), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 54), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 54), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 55), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 55), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 4, 0, 0), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5056), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(5109), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3839), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1534), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 45), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 45), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 5), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 5), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), SHIFT_REPEAT(4681), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 5), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 5), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 124), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 124), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 135), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 135), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 136), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 136), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 7, 0, 141), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 7, 0, 141), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 43), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 43), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), SHIFT_REPEAT(4625), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_assignment_expression, 3, 0, 20), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_assignment_expression, 3, 0, 20), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 1, 77), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 1, 77), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_listener_expression, 3, -1, 57), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_listener_expression, 3, -1, 57), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_assignment_expression, 3, 0, 27), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_assignment_expression, 3, 0, 27), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undefined, 1, 0, 0), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undefined, 1, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 26), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 26), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 56), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 56), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 21), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 21), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_expression, 3, 0, 0), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_expression, 3, 0, 0), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_body, 2, 0, 0), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 2, 0, 0), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 6, 0, 0), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 6, 0, 0), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 7, 0, 0), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 7, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 8, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 8, 0, 0), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_body, 3, 0, 0), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 3, 0, 0), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 15), REDUCE(sym_object_pattern, 3, 0, 16), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 15), REDUCE(sym_object_pattern, 3, 0, 16), - [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), REDUCE(sym_object_pattern, 3, 0, 0), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), REDUCE(sym_object_pattern, 3, 0, 0), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 28), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 28), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 68), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 68), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 48), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3, 0, 48), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 49), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 49), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 15), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 15), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 1, 0, 0), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 1, 0, 0), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_tag_statement_repeat1, 1, 0, 0), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_tag_statement_repeat1, 1, 0, 0), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 49), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 49), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 58), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 58), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 95), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 95), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 20), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 20), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 27), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 63), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 63), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this, 1, 0, 0), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this, 1, 0, 0), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super, 1, 0, 0), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super, 1, 0, 0), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1, 0, 0), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1, 0, 0), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1, 0, 0), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1, 0, 0), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_java_class_block, 2, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_java_class_block, 2, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_type, 2, 0, 2), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_type, 2, 0, 2), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 7), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 7), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 1, 11), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 1, 11), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 7), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 7), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_java_class_block, 3, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_java_class_block, 3, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 0), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ordered_struct, 3, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_struct, 3, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 36), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 36), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 39), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 39), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 22), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 22), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 93), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 93), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 15), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 15), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 4, 0, 16), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 16), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 4, 0, 0), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 11), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 11), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declaration_repeat3, 1, 0, 0), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declaration_repeat3, 1, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 1, 0, 6), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 1, 0, 6), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 70), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 70), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 93), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 93), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 102), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 102), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 103), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 103), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 37), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 37), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 109), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 109), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 113), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 113), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 116), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 116), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 127), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 127), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 128), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 128), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 138), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 138), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 139), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 139), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 142), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 142), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 143), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 143), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 114), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 114), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 2, 0, 5), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 2, 0, 5), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 2, 0, 5), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 2, 0, 5), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, -1, 67), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, -1, 67), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 76), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 76), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, -1, 78), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, -1, 78), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_statement, 2, 0, 14), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_call_statement, 2, 0, 14), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 19), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 19), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 3, 0, 22), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 3, 0, 22), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 3, 0, 23), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 3, 0, 23), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 3, 0, 24), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 3, 0, 24), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cfml_template, 3, 0, 0), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cfml_template, 3, 0, 0), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 3, 0, 22), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 3, 0, 22), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 32), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 32), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 32), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 32), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 35), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 35), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 3, 0, 0), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 3, 0, 0), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, 0, 65), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, 0, 65), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 42), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 42), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 1, 0), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 1, 0), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, -1, 41), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, -1, 41), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 44), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 44), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 46), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 46), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 47), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 47), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 4, 0, 62), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 4, 0, 62), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 4, 0, 68), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 4, 0, 68), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 72), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 72), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 75), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 75), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 5), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 5), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 80), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 80), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, 0, 66), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, 0, 66), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colon_assignment_statement, 4, 0, 27), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_assignment_statement, 4, 0, 27), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 5, 0, 91), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 5, 0, 91), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 70), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 70), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 73), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 73), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 72), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 72), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 101), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 101), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 87), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 87), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 6, 0, 104), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 6, 0, 104), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 93), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 93), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 102), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 102), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 101), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 101), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 103), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 103), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 7, 0, 117), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 7, 0, 117), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 120), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 120), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 121), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 121), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, -1, 78), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, -1, 78), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 122), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 122), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 109), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 109), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 113), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 113), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 114), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 114), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 116), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 116), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 115), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 115), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 132), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 132), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 133), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 133), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 134), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 134), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 137), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 137), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 127), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 127), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 128), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 128), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 140), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 140), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 138), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 138), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 137), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 137), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 139), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 139), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 142), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 142), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11, 0, 143), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11, 0, 143), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 5, 0, 88), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 5, 0, 88), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 5, 0, 89), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 5, 0, 89), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 5, 0, 90), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 5, 0, 90), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, 0, 64), - [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, 0, 64), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 0), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, 0, 67), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, 0, 67), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 3, 0, 29), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 3, 0, 29), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 3, 0, 30), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 3, 0, 30), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 3, -1, 31), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 3, -1, 31), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 38), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 38), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, -1, 41), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, -1, 41), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 76), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 76), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 38), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 38), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 115), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 115), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 1, 0, 0), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 1, 0, 0), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2, 0, 0), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2, 0, 0), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 1, 105), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 1, 105), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 1, 92), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 1, 92), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 0), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 1, 92), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 1, 92), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 1, 105), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 1, 105), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 1, 0, 0), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(320), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2399), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(325), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2369), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(920), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2247), - [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(5066), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2247), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(1884), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(4034), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(3995), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2565), - [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2565), - [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2451), - [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2567), - [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2570), - [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2571), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2410), - [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2409), - [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(1772), - [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2426), - [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2356), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(4377), - [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(4406), - [3606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(236), - [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(1286), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(4964), - [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(5152), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), REDUCE(sym_program, 2, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 131), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 131), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 130), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 130), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 106), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 106), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 107), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 107), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 118), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 118), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 119), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 119), - [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2374), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2399), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(325), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), - [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2369), - [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(920), - [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2247), - [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(5066), - [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2247), - [3734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(1884), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(4034), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(3995), - [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2565), - [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2565), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2451), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2567), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2570), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2571), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2410), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2409), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(1772), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2426), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2356), - [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(4377), - [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(4406), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(236), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(1541), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(4964), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(5152), - [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 129), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 129), - [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2374), - [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2399), - [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), - [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5066), - [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4034), - [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), - [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), - [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2451), - [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), - [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2570), - [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2571), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2410), - [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), - [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), - [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(236), - [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), - [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5152), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 1, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 2, 0, 83), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), - [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2399), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2364), - [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [4192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5066), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4034), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), - [4207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), - [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), - [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2451), - [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), - [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2570), - [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2571), - [4225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2410), - [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), - [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), - [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), - [4237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2366), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), - [4243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4429), - [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), - [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5152), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 97), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 3, 0, 82), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 2, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 3, 0, 83), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4323), - [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4331), - [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4336), - [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4366), - [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4375), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), - [5038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5139), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), - [5043] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 1), SHIFT(5008), - [5047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 0), SHIFT(342), - [5050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(1430), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(1807), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__formal_parameter_repeat1, 2, 0, 0), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__formal_parameter_repeat1, 2, 0, 0), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__formal_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type, 1, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), SHIFT(4608), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4706), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4581), - [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4700), - [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4680), - [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4570), - [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4608), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(956), - [5114] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), SHIFT(4856), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 10), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [5124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1314), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5025), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5238), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 123), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 123), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 71), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 71), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 22), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 22), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [802] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), SHIFT(302), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(924), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1315), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(940), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5263), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4027), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2554), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4409), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5153), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4752), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4847), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4034), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4993), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4399), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5083), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5063), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5025), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5238), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 9), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(296), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1330), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(300), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(302), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(301), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2397), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2423), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(297), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2396), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2281), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4038), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4039), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2588), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2590), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2569), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2596), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2593), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2439), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2440), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1817), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2469), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2398), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4453), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2126), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4483), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(221), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5089), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5334), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(2397), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(1605), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(1846), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 17), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 17), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(299), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(298), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(50), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(27), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(327), + [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(833), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2176), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(940), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(117), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2281), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5263), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2281), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1439), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4044), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4027), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2447), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2447), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2599), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2517), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2583), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2554), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2450), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2461), + [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1608), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(3016), + [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2193), + [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4409), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5153), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2024), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4752), + [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2061), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4761), + [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2168), + [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(227), + [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(47), + [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4847), + [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4034), + [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4993), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(3996), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(123), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4175), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(131), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2035), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1179), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(2022), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5083), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1180), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(1386), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(4964), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5063), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(916), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5025), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(5238), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(303), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(306), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(328), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(924), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(305), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(294), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(295), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2112), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 73), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 73), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 73), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 73), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 87), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 87), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(924), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2281), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(5213), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1918), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5348), + [1834] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 0), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter_type, 1, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 0), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1607), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter_type, 1, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(1314), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1414), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 1), + [1865] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 1), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 0), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 0), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 1), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1847), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [1884] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 1), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 1), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 1), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_parameter_type, 1, 0, 1), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5108), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 1, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 1, 0, 0), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5090), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), REDUCE(sym_arguments, 3, 0, 0), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), REDUCE(sym_arguments, 3, 0, 0), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 53), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 53), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 54), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 54), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 55), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 55), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 84), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 84), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 98), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 98), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 99), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 99), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 50), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 50), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 51), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 51), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 52), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 52), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 4, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5110), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(5206), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3888), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1699), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 5), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 5), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 45), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 45), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), SHIFT_REPEAT(4711), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 136), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 136), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 5), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 5), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 7, 0, 141), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 7, 0, 141), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 43), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 43), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 124), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 124), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 135), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 135), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), SHIFT_REPEAT(4656), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 22), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 22), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 1, 77), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 1, 77), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 68), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 68), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 56), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 56), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_listener_expression, 3, -1, 57), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_listener_expression, 3, -1, 57), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_body, 2, 0, 0), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 2, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 39), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 39), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_function_listener_expression, 3, -1, 57), + [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_function_listener_expression, 3, -1, 57), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_body, 3, 0, 0), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_body, 3, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_assignment_expression, 3, 0, 20), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_assignment_expression, 3, 0, 20), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_assignment_expression, 3, 0, 27), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_assignment_expression, 3, 0, 27), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undefined, 1, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undefined, 1, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 1, 11), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 1, 11), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 26), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 26), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 58), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 58), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 93), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 93), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 15), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 15), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 1, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 1, 0, 0), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_tag_statement_repeat1, 1, 0, 0), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_tag_statement_repeat1, 1, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 20), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 20), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 63), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 63), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 27), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 6, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 6, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), + [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), + [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 4, 0, 16), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 16), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 15), REDUCE(sym_object_pattern, 3, 0, 16), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 15), REDUCE(sym_object_pattern, 3, 0, 16), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), REDUCE(sym_object_pattern, 3, 0, 0), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), REDUCE(sym_object_pattern, 3, 0, 0), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 7, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 7, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 8, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 8, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 21), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 21), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 28), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 28), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 48), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3, 0, 48), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 49), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 49), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this, 1, 0, 0), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this, 1, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super, 1, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super, 1, 0, 0), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1, 0, 0), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_expression, 3, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_expression, 3, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_java_class_block, 2, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_java_class_block, 2, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_type, 2, 0, 2), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_type, 2, 0, 2), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 7), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 7), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 7), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 7), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_java_class_block, 3, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_java_class_block, 3, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ordered_struct, 3, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_struct, 3, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 15), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 15), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 49), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 49), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 36), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 36), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 95), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 95), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declaration_repeat3, 1, 0, 0), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declaration_repeat3, 1, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 1, 0, 6), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 1, 0, 6), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 11), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 11), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 114), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 114), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 116), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 116), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 113), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 113), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 93), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 93), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 109), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 109), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 127), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 127), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 128), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 128), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 37), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 37), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 102), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 102), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 103), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 103), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 138), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 138), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 139), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 139), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 142), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 142), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 143), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 143), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 70), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 70), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, -1, 41), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, -1, 41), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 46), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 46), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 47), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 47), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 4, 0, 62), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 4, 0, 62), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 4, 0, 68), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 4, 0, 68), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 72), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 72), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 75), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 75), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 5), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 5), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 80), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 80), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colon_assignment_statement, 4, 0, 27), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_assignment_statement, 4, 0, 27), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 5, 0, 91), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 5, 0, 91), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 70), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 70), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 73), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 73), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 72), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 72), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 101), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 101), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 87), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 87), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 6, 0, 104), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 6, 0, 104), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 93), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 93), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 102), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 102), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 101), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 101), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 103), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 103), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 115), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 115), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 7, 0, 117), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 7, 0, 117), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 120), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 120), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 121), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 121), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 122), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 122), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 109), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 109), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 113), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 113), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 114), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 114), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 116), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 116), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 115), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 115), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 132), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 132), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 133), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 133), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 134), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 134), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 137), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 137), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 127), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 127), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 128), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 128), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 140), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 140), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 138), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 138), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 137), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 137), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 139), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 139), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 142), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 142), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11, 0, 143), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11, 0, 143), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 1, 0), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 1, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 3, 0, 29), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 3, 0, 29), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 3, 0, 30), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 3, 0, 30), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 3, -1, 31), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 3, -1, 31), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 38), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 38), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, 0, 64), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, 0, 64), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, 0, 65), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, 0, 65), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, 0, 66), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, 0, 66), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, 0, 67), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, 0, 67), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 4, -1, 67), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 4, -1, 67), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 38), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 38), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 76), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 76), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, -1, 78), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, -1, 78), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, -1, 41), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, -1, 41), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 5, 0, 88), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 5, 0, 88), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 5, 0, 89), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 5, 0, 89), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_statement, 5, 0, 90), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_statement, 5, 0, 90), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 0), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 76), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 76), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 44), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 44), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, -1, 78), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, -1, 78), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 2, 0, 5), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 2, 0, 5), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 2, 0, 5), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 2, 0, 5), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_statement, 2, 0, 14), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_call_statement, 2, 0, 14), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 19), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 19), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 3, 0, 22), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 3, 0, 22), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 3, 0, 23), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 3, 0, 23), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tag, 3, 0, 24), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_tag, 3, 0, 24), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cfml_template, 3, 0, 0), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cfml_template, 3, 0, 0), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component, 3, 0, 22), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component, 3, 0, 22), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 32), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 32), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 32), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 32), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 35), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 35), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 3, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 3, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 42), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 42), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 1, 0, 0), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 1, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2, 0, 0), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 1, 92), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 1, 92), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 1, 105), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 1, 105), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 1, 105), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 1, 105), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 1, 92), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 1, 92), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 1, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(322), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2423), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(328), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2395), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(924), + [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2281), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(5213), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2281), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(1918), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(4038), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(4039), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2588), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2588), + [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2590), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2569), + [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2596), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2593), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2439), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2440), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(1817), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2469), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(2386), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(4453), + [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(4572), + [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(219), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(1300), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(5089), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat3, 2, 0, 0), SHIFT_REPEAT(5334), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), REDUCE(sym_program, 2, 0, 0), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 131), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 131), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 130), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 130), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 118), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 118), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 119), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 119), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2399), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2423), + [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(328), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), + [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2395), + [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(924), + [3709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2281), + [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(5213), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2281), + [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(1918), + [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(4038), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(4039), + [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2588), + [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2588), + [3733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2590), + [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2569), + [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2596), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2593), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2439), + [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2440), + [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(1817), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2469), + [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(2386), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(4453), + [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(4572), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(219), + [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(1586), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(5089), + [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_tag_repeat1, 2, 0, 25), SHIFT_REPEAT(5334), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 129), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 129), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2399), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5213), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4038), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4039), + [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2588), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2588), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2590), + [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2569), + [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), + [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2440), + [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), + [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2386), + [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4453), + [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4572), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5089), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 106), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 106), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 107), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 107), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 1, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 2, 0, 83), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 2, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2389), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [4340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5213), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [4346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4038), + [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4039), + [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2588), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2588), + [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2590), + [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2569), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [4370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [4373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), + [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2440), + [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), + [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4453), + [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4502), + [4394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5089), + [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 97), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 3, 0, 82), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 3, 0, 83), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4402), + [5032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4391), + [5035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4396), + [5038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4433), + [5041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_access_type, 1, 0, 0), SHIFT(4387), + [5044] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_parameter_type, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 1), SHIFT(4846), + [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_type, 1, 0, 0), SHIFT(365), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(1605), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(1846), + [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [5065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5348), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__formal_parameter_repeat1, 2, 0, 0), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__formal_parameter_repeat1, 2, 0, 0), + [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__formal_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(2043), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_type, 1, 0, 0), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5083] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), SHIFT(4733), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4827), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4639), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4628), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4666), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4618), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4733), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(962), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 10), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [5130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1290), [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 8, 0, 0), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 8, 0, 0), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_annotation, 3, 0, 69), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_annotation, 3, 0, 69), - [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 9, 0, 0), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 9, 0, 0), - [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 6, 0, 0), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, 0, 0), - [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4856), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 3, 0, 0), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 3, 0, 0), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 7, 0, 0), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 7, 0, 0), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [5198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1328), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [5211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 17), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5135] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 3), SHIFT(5092), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 8, 0, 0), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 8, 0, 0), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 7, 0, 0), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 7, 0, 0), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tag_statement_repeat1, 3, 0, 0), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_statement_repeat1, 3, 0, 0), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5092), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 9, 0, 0), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 9, 0, 0), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 6, 0, 0), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, 0, 0), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_annotation, 3, 0, 69), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_annotation, 3, 0, 69), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1366), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 17), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1578), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5046), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5057), - [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_call_value, 1, 0, 0), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_call_value, 1, 0, 0), - [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5055), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [5275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 1, 0, 0), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 1, 0, 0), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [5538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), SHIFT(943), - [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(860), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 3), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(1427), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [5643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(966), - [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2259), - [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(594), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_attribute, 3, -2, 0), - [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter_attribute, 3, -2, 0), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(340), - [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2756), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 71), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5713] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 71), REDUCE(sym_assignment_expression, 3, 0, 20), SHIFT(1591), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5721] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 71), REDUCE(sym_assignment_expression, 3, 0, 27), SHIFT(1591), - [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2338), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(390), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2270), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2272), - [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2377), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [5760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2347), - [5763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2273), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_attribute, 3, -2, 0), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2876), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2116), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), SHIFT(1437), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(442), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2435), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2126), - [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2569), - [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2683), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2339), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3845), - [5825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2129), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [5830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2111), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4173), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(812), - [5948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(510), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(582), - [5996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(616), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(814), - [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(691), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(422), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [6051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4171), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3908), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1045), - [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1116), - [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(264), - [6178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1119), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1048), - [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1122), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1125), - [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1167), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1128), - [6244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2257), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1131), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [6290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1134), - [6293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1137), - [6296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(269), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1153), - [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4719), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [6349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1170), - [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1051), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [6361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(337), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1054), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1057), - [6376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1235), - [6379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1060), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2118), - [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_pattern, 3, 0, 27), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 27), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2317), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1063), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(794), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 59), REDUCE(sym_assignment_expression, 3, 0, 20), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 59), - [6529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4021), - [6532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1066), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1069), - [6540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1072), - [6543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(393), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(233), - [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2269), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(559), - [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(218), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(238), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(239), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(241), - [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1075), - [6624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(221), - [6627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 15), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 16), - [6630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(222), - [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1042), - [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1183), - [6639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_attribute, 3, 0, 0), - [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_attribute, 3, 0, 0), - [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(224), - [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1078), - [6649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1229), - [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1252), - [6655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1629), - [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(261), - [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1081), - [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 59), REDUCE(sym_assignment_expression, 3, 0, 27), - [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1084), - [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1027), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [6675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 27), REDUCE(sym_assignment_expression, 3, 0, 27), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 27), - [6680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1087), - [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1090), - [6688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1093), - [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1140), - [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1141), - [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1096), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 15), - [6704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1099), - [6707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1102), - [6710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4437), - [6713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1171), - [6716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(249), - [6719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1217), - [6722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1030), - [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1108), - [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 60), - [6730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1033), - [6733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(72), - [6736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1036), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1155), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1110), - [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1269), - [6752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1274), - [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1453), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1913), - [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2044), - [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1159), - [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1189), - [6776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1113), - [6779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1039), - [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1150), - [6785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1172), - [6788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1152), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [6793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1163), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [7100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1565), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 2, 0, 82), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [7149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cf_pair, 3, 0, 60), - [7157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 3, 0, 97), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1910), - [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 111), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 126), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 3, 0, 96), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 110), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 50), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 50), - [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 18), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 18), - [7499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 18), SHIFT_REPEAT(4609), - [7502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 1, 0, 4), - [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 1, 0, 4), - [7506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 8), - [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 8), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), - [7552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3858), - [7555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3857), - [7558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 1, 0, 13), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [7562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5137), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [7575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(3875), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat2, 2, 0, 0), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), SHIFT_REPEAT(4553), - [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(4005), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(940), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(4953), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), - [7757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5079), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 33), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 34), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [7952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(3982), - [7955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(3982), - [7958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1938), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [8031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(4166), - [8034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(953), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [8109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), - [8114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), - [8117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 50), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 50), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [8172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 125), - [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 125), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [8180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_path_repeat1, 2, 0, 0), SHIFT_REPEAT(4970), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_path_repeat1, 2, 0, 0), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(4680), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [8208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(5008), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 5, 0, 0), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 2, 0, 0), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [8253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), SHIFT_REPEAT(4166), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), - [8258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), SHIFT_REPEAT(4953), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 6, 0, 0), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), - [8277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5271), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_statement_repeat1, 2, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [8290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_call_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), - [8352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_call_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(4732), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_call_arguments_repeat1, 2, 0, 0), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_declarator, 1, 0, 10), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_declarator, 1, 0, 9), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [8443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), SHIFT_REPEAT(4319), - [8446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), SHIFT_REPEAT(5015), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [8499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), - [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [8504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4376), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [8515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1809), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5138), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 38), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [8575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1478), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 16), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operator_shaped_name, 1, 0, 0), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [8652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_call, 2, 0, 8), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_attribute, 3, 0, 69), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(4349), - [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [8764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [8787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_expression_repeat1, 2, 0, 0), - [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4387), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_expression_repeat1, 4, 0, 0), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_attribute, 3, 0, 27), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_arguments, 4, 0, 0), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat2, 2, 0, 0), SHIFT_REPEAT(5033), - [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_repeat2, 2, 0, 0), - [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5084), - [8975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(960), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_declarator, 2, 0, 34), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_declarator, 2, 0, 33), - [9010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(966), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 79), - [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4188), - [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [9034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [9039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2415), - [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [9047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 60), - [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 10), - [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_arguments, 5, 0, 0), - [9105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [9132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_arguments, 6, 0, 0), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [9140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 112), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [9174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 94), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 85), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 87), - [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [9239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 100), - [9241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 73), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [9309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 61), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9517] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [9629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1760), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4987), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [5250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5100), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [5259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5109), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_call_value, 1, 0, 0), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_call_value, 1, 0, 0), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 1, 0, 0), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 1, 0, 0), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), SHIFT(959), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(870), + [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 3), + [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(1509), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(966), + [5664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2753), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2149), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(448), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2462), + [5728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2406), + [5731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2129), + [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3115), + [5737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_attribute, 3, -2, 0), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter_attribute, 3, -2, 0), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2264), + [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(692), + [5758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(329), + [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2682), + [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2294), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(389), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2241), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2232), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2325), + [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2242), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2106), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2614), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), SHIFT(1435), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 71), + [5819] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 71), REDUCE(sym_assignment_expression, 3, 0, 20), SHIFT(1661), + [5823] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 71), REDUCE(sym_assignment_expression, 3, 0, 27), SHIFT(1661), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_attribute, 3, -2, 0), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2159), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2382), + [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3897), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3961), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(427), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4238), + [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4241), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [6040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(918), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(920), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(636), + [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(480), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(726), + [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(704), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1946), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(344), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_pattern, 3, 0, 27), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 27), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2323), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1181), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [6267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4818), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2146), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1065), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [6404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1036), + [6407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(248), + [6410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1068), + [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1276), + [6416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1283), + [6419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(238), + [6422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(251), + [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(252), + [6428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(234), + [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(254), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(235), + [6475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1159), + [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1160), + [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1690), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(228), + [6531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1243), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(75), + [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1075), + [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1105), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2376), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1110), + [6595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1115), + [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1071), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1121), + [6606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1125), + [6609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1128), + [6612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1051), + [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1131), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1136), + [6623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1079), + [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_attribute, 3, 0, 0), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_attribute, 3, 0, 0), + [6630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1140), + [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1144), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1167), + [6641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1147), + [6644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1151), + [6647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1164), + [6650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 59), REDUCE(sym_assignment_expression, 3, 0, 20), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 59), + [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1176), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1082), + [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1173), + [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1102), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [6671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(811), + [6674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1156), + [6677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1166), + [6680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 59), REDUCE(sym_assignment_expression, 3, 0, 27), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4471), + [6688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1032), + [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1250), + [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 27), REDUCE(sym_assignment_expression, 3, 0, 27), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 27), + [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1262), + [6702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1538), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 15), + [6707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1073), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2066), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 60), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 15), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 16), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1945), + [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(4081), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [6736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1275), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1053), + [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1089), + [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(399), + [6752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1049), + [6755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1085), + [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1096), + [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(264), + [6764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1101), + [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1108), + [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1112), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(267), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(268), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [6785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1133), + [6788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1178), + [6791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(270), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1171), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [6801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1034), + [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1039), + [6807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2303), + [6810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1088), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1042), + [6818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1045), + [6821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(582), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [6826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1200), + [6829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1058), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1062), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1691), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 2, 0, 82), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 3, 0, 97), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cf_pair, 3, 0, 60), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [7207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [7225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1940), + [7228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1941), + [7231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1641), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 3, 0, 96), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 110), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 111), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 126), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [7428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1642), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [7537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [7545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 18), + [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 18), + [7549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 2, 0, 18), SHIFT_REPEAT(4692), + [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 50), + [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 50), + [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 1, 0, 4), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_definition_repeat1, 1, 0, 4), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 8), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 8), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), + [7606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), + [7609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3910), + [7612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 1, 0, 13), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5209), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(3928), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat2, 2, 0, 0), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [7698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 81), SHIFT_REPEAT(4799), + [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), + [7760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5283), + [7763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(4075), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(948), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(4997), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 33), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 34), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [7984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4030), + [7987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4030), + [7990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4033), + [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4033), + [8011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1961), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(4193), + [8131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), SHIFT(952), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 5, 0, 0), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [8224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(4618), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [8233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(4846), + [8236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 50), + [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 50), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 2, 0, 0), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 125), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 125), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_path_repeat1, 2, 0, 0), SHIFT_REPEAT(4898), + [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_path_repeat1, 2, 0, 0), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_attribute, 1, 0, 0), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [8327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_call_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(4890), + [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_call_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(4743), + [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_call_arguments_repeat1, 2, 0, 0), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [8347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), SHIFT_REPEAT(4193), + [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), + [8352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), SHIFT_REPEAT(4997), + [8355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5358), + [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_statement_repeat1, 2, 0, 0), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [8372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [8387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 6, 0, 0), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5140), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_declarator, 1, 0, 9), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [8496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), SHIFT_REPEAT(4441), + [8499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat1, 2, 0, 0), SHIFT_REPEAT(4992), + [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4398), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_declarator, 1, 0, 10), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 38), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [8556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1847), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(1607), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [8646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_call, 2, 0, 8), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [8729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operator_shaped_name, 1, 0, 0), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [8786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 16), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_expression_repeat1, 2, 0, 0), + [8859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4386), + [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_attribute, 3, 0, 69), + [8864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(4432), + [8867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_repeat2, 2, 0, 0), SHIFT_REPEAT(4941), + [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_repeat2, 2, 0, 0), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_expression_repeat1, 4, 0, 0), + [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_arguments, 5, 0, 0), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 10), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4278), + [8954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [8976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), + [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [9032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5262), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_attribute, 3, 0, 27), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_arguments, 6, 0, 0), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [9081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(968), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_declarator, 2, 0, 33), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 79), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 60), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_call_arguments, 4, 0, 0), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [9150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [9169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_declarator, 2, 0, 34), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [9181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2446), + [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [9188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 100), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [9192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 73), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 112), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 85), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 94), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [9359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [9397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 61), + [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 87), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [9487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [9659] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [9725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), }; enum ts_external_scanner_symbol_identifiers { diff --git a/cfscript/test/corpus/cfscript.txt b/cfscript/test/corpus/cfscript.txt index a793c097..0bd2e249 100644 --- a/cfscript/test/corpus/cfscript.txt +++ b/cfscript/test/corpus/cfscript.txt @@ -3793,6 +3793,89 @@ msSQL.class: "net.sourceforge.jtds.jdbc.Driver"; (string (string_fragment)))) +=================================== +function listener on a new target (#98) +=================================== + +threadName = new Query():function( result, error ) { thread.result = result; }; +dotted = new org.lucee.cfml.Query():callback; +listener = Query():function( r, e ) { x = r; }; +tern = cond ? new Foo() : other; +bare = cond ? new() : other; + +--- + +(program + (expression_statement + (assignment_expression + (identifier) + (function_listener_expression + (new_expression + (identifier) + (arguments)) + (function_expression + (formal_parameters + (parameter_type + (identifier)) + (parameter_type + (identifier))) + (statement_block + (expression_statement + (assignment_expression + (member_expression + (identifier) + (property_identifier)) + (identifier)))))))) + (expression_statement + (assignment_expression + (identifier) + (function_listener_expression + (new_expression + (member_expression + (member_expression + (member_expression + (identifier) + (property_identifier)) + (property_identifier)) + (property_identifier)) + (arguments)) + (identifier)))) + (expression_statement + (assignment_expression + (identifier) + (function_listener_expression + (call_expression + (identifier) + (arguments)) + (function_expression + (formal_parameters + (parameter_type + (identifier)) + (parameter_type + (identifier))) + (statement_block + (expression_statement + (assignment_expression + (identifier) + (identifier)))))))) + (expression_statement + (assignment_expression + (identifier) + (ternary_expression + (identifier) + (new_expression + (identifier) + (arguments)) + (identifier)))) + (expression_statement + (assignment_expression + (identifier) + (ternary_expression + (identifier) + (new_expression + (arguments)) + (identifier))))) + =================================== new requires its arguments (#98) =================================== diff --git a/docs/FAILING-PATTERNS.md b/docs/FAILING-PATTERNS.md index 18ffe66d..ee326ee7 100644 --- a/docs/FAILING-PATTERNS.md +++ b/docs/FAILING-PATTERNS.md @@ -93,7 +93,7 @@ obvious grep: `ServerService.cfc`, `LargeMethod.cfc` and Preside's ordinary CFML — a first pass at re-deriving this table counted them here incorrectly. -## Genuine gaps — 178 nodes, 28 files +## Genuine gaps — 176 nodes, 27 files **Re-verified at `b60470f` only in part, and it matters which.** The two largest rows were re-counted exactly against a fresh scan and are unchanged: CSS in @@ -129,7 +129,6 @@ is naming a witness and not a construct. | 48 | 10 | Dynamic tag name with a static prefix or namespace | ``, `` | `prefixed_dynamic_tag.cfm` | | 30 | 1 | Dotted key in a struct literal — **tractable, rejected on cost** | `var objects = { obj_a.meta = { … }, obj_b.meta = { … } };` | — | | 19 | 13 | Dynamic tag opened and closed in different blocks | `#t()#`, the open tag being in an earlier `` | — | -| 2 | 1 | Function-listener callback on a `new` **target** — tractable, rejected on cost | `var t = new Query():function( result, error ) { … };` | `function_listener_new.cfc` | | 4 | 1 | Subscript index holding more than one pair | `animals = $[ Aardwolf: "…", aardvark: "…" ];` | `subscript_multiple_pairs.cfc` | | 4 | 2 | A start tag whose `>` sits inside a `` branch — **tractable one way, rejected: the fix breaks the spelling that works** | `⏎ href="a">⏎⏎ href="b">⏎` | — | @@ -525,9 +524,14 @@ done twice. ### Parked, with the reasons already recorded -- [#98](https://github.com/cfmleditor/tree-sitter-cfml/issues/98) — the `new.foo` - half shipped; the residual listener target measures **+14 states** on today's - base and is blocked by the `? new X() :` collision, not by table size. +- [#98](https://github.com/cfmleditor/tree-sitter-cfml/issues/98) — **no longer + parked: shipped.** The `? new X() :` collision was real and was not about + table size; it was resolved by giving the `new` target its own arm below + `'ternary'` plus the conflict the generator asks for. **+53 states**, corpus + 640 → 638. The lesson worth carrying: the `+591` this issue was parked on was + measured before `new_expression`'s arguments became required, and the same + widening measured **+14** afterwards. A cost taken before a related change is + not evidence about after it. - [#75](https://github.com/cfmleditor/tree-sitter-cfml/issues/75) — implemented, measured at 2× the table, reverted. - [#119](https://github.com/cfmleditor/tree-sitter-cfml/issues/119) — the fix and diff --git a/docs/TODO.md b/docs/TODO.md index 5c0d0f32..d581d760 100644 --- a/docs/TODO.md +++ b/docs/TODO.md @@ -118,6 +118,14 @@ after a statement, PR #120) and [#114](https://github.com/cfmleditor/tree-sitter-cfml/issues/114) (a `<` opening a run of template text, PR #121). +### [#98](https://github.com/cfmleditor/tree-sitter-cfml/issues/98) — fixed, PR pending + +A `new` expression as a function-listener target, through a second rule arm +below `'ternary'` plus one declared conflict. +53 states, corpus 640 → 638, zero +changed trees, benchmarked inside the noise floor. The parked `+591` had expired: +it predated `new_expression`'s arguments becoming required, after which the same +widening measured +14. + ### [#115](https://github.com/cfmleditor/tree-sitter-cfml/issues/115) — PR #122, open An unquoted struct as a tag attribute value. **Fixed, not parked:** `{}` joins the diff --git a/test/probes/expected.json b/test/probes/expected.json index bad8217c..37bcca97 100644 --- a/test/probes/expected.json +++ b/test/probes/expected.json @@ -34,7 +34,7 @@ "cfscript/final_member_declaration.cfc": "pass", "cfscript/for_in_reserved_name.cfc": "pass", "cfscript/for_in_var_dotted.cfc": "pass", - "cfscript/function_listener_new.cfc": "fail", + "cfscript/function_listener_new.cfc": "pass", "cfscript/function_listener.cfc": "pass", "cfscript/function_named_instanceof.cfc": "pass", "cfscript/keyword_shaped_param_types.cfc": "pass",